From 4d8398255acc7556bb45c34cd2cb77dbe6d2ae3e Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Wed, 6 Jun 2012 10:32:53 +0800 Subject: [PATCH] remove scripts --- scripts/addheader.py | 24 ------------------------ scripts/header | 20 -------------------- 2 files changed, 44 deletions(-) delete mode 100644 scripts/addheader.py delete mode 100644 scripts/header 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 - * - * 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. - */ -- 2.7.4