remove scripts
authorPeng Wu <alexepico@gmail.com>
Wed, 6 Jun 2012 02:32:53 +0000 (10:32 +0800)
committerPeng Wu <alexepico@gmail.com>
Wed, 6 Jun 2012 02:32:53 +0000 (10:32 +0800)
scripts/addheader.py [deleted file]
scripts/header [deleted file]

diff --git a/scripts/addheader.py b/scripts/addheader.py
deleted file mode 100644 (file)
index 09e628e..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/env python
-import sys
-
-def add_header(name, header):
-    with file(name) as fin:
-        lines = fin.readlines()
-    with file(name, "w") as fout:
-        for l in header:
-            print >> fout, l,
-        if lines[0].startswith("/*") and lines[0].endswith("*/\n"):
-            pass
-        else:
-            print >> fout, lines[0],
-        for l in lines[1:]:
-            print >> fout, l,
-
-def main():
-    with file("header") as f:
-        header = f.readlines()
-    for name in sys.argv[1:]:
-        add_header(name, header)
-
-if __name__ == "__main__":
-    main()
diff --git a/scripts/header b/scripts/header
deleted file mode 100644 (file)
index 4148767..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-/* vim:set et ts=4 sts=4:
- *
- * ibus-pinyin - The Chinese PinYin engine for IBus
- *
- * Copyright (c) 2008-2010 Peng Huang <shawn.p.huang@gmail.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
- * any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- */