summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2012-06-06 10:32:53 +0800
committerPeng Wu <alexepico@gmail.com>2012-06-06 10:32:53 +0800
commit4d8398255acc7556bb45c34cd2cb77dbe6d2ae3e (patch)
treeee24a98d8eb6c5b3567effea81b90f7d467e6362 /scripts
parent928a7cce363dee8b42452bc0cf99c6070c6d4626 (diff)
downloadibus-libpinyin-4d8398255acc7556bb45c34cd2cb77dbe6d2ae3e.tar.gz
ibus-libpinyin-4d8398255acc7556bb45c34cd2cb77dbe6d2ae3e.tar.xz
ibus-libpinyin-4d8398255acc7556bb45c34cd2cb77dbe6d2ae3e.zip
remove scripts
Diffstat (limited to 'scripts')
-rw-r--r--scripts/addheader.py24
-rw-r--r--scripts/header20
2 files changed, 0 insertions, 44 deletions
diff --git a/scripts/addheader.py b/scripts/addheader.py
deleted file mode 100644
index 09e628e..0000000
--- a/scripts/addheader.py
+++ /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
index 4148767..0000000
--- a/scripts/header
+++ /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.
- */