[Cvsshell-devel] CVS: cvsshell/src app.py,1.3,1.4 basic_cmds.py,1.7,1.8 configurable_app.py,1.2,1.3
Status: Beta
Brought to you by:
stefanheimann
From: Stefan H. <ste...@us...> - 2002-03-07 13:08:52
|
Update of /cvsroot/cvsshell/cvsshell/src In directory usw-pr-cvs1:/tmp/cvs-serv30521/src Modified Files: app.py basic_cmds.py configurable_app.py cvs_shell.py interactive_app.py plugable_app.py utils.py Log Message: Added license header Index: app.py =================================================================== RCS file: /cvsroot/cvsshell/cvsshell/src/app.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** app.py 7 Mar 2002 12:19:37 -0000 1.3 --- app.py 7 Mar 2002 13:08:49 -0000 1.4 *************** *** 1,2 **** --- 1,23 ---- + ############################################################################### + # This file is part of CvsShell + # + # CvsShell 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 of the License, or + # (at your option) any later version. + # + # CvsShell 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 CvsShell; if not, write to the Free Software + # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + # + # Copyright 2002 by Stefan Heimann + # Website: http://cvsshell.sourceforge.net/ + ############################################################################### + import sys, os, traceback, getopt AppError = 'AppError' Index: basic_cmds.py =================================================================== RCS file: /cvsroot/cvsshell/cvsshell/src/basic_cmds.py,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** basic_cmds.py 7 Mar 2002 12:59:28 -0000 1.7 --- basic_cmds.py 7 Mar 2002 13:08:49 -0000 1.8 *************** *** 1,2 **** --- 1,23 ---- + ############################################################################### + # This file is part of CvsShell + # + # CvsShell 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 of the License, or + # (at your option) any later version. + # + # CvsShell 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 CvsShell; if not, write to the Free Software + # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + # + # Copyright 2002 by Stefan Heimann + # Website: http://cvsshell.sourceforge.net/ + ############################################################################### + import os, string, re import utils Index: configurable_app.py =================================================================== RCS file: /cvsroot/cvsshell/cvsshell/src/configurable_app.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** configurable_app.py 7 Mar 2002 10:40:00 -0000 1.2 --- configurable_app.py 7 Mar 2002 13:08:49 -0000 1.3 *************** *** 1,2 **** --- 1,23 ---- + ############################################################################### + # This file is part of CvsShell + # + # CvsShell 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 of the License, or + # (at your option) any later version. + # + # CvsShell 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 CvsShell; if not, write to the Free Software + # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + # + # Copyright 2002 by Stefan Heimann + # Website: http://cvsshell.sourceforge.net/ + ############################################################################### + import os, sys, re, types from app import App Index: cvs_shell.py =================================================================== RCS file: /cvsroot/cvsshell/cvsshell/src/cvs_shell.py,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** cvs_shell.py 7 Mar 2002 12:38:23 -0000 1.6 --- cvs_shell.py 7 Mar 2002 13:08:49 -0000 1.7 *************** *** 1,3 **** ! #!/usr/bin/env python import os, sys, re, types --- 1,22 ---- ! ############################################################################### ! # This file is part of CvsShell ! # ! # CvsShell 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 of the License, or ! # (at your option) any later version. ! # ! # CvsShell 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 CvsShell; if not, write to the Free Software ! # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! # ! # Copyright 2002 by Stefan Heimann ! # Website: http://cvsshell.sourceforge.net/ ! ############################################################################### import os, sys, re, types Index: interactive_app.py =================================================================== RCS file: /cvsroot/cvsshell/cvsshell/src/interactive_app.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** interactive_app.py 7 Mar 2002 10:49:07 -0000 1.2 --- interactive_app.py 7 Mar 2002 13:08:49 -0000 1.3 *************** *** 1,2 **** --- 1,23 ---- + ############################################################################### + # This file is part of CvsShell + # + # CvsShell 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 of the License, or + # (at your option) any later version. + # + # CvsShell 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 CvsShell; if not, write to the Free Software + # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + # + # Copyright 2002 by Stefan Heimann + # Website: http://cvsshell.sourceforge.net/ + ############################################################################### + import os from app import App, AppError Index: plugable_app.py =================================================================== RCS file: /cvsroot/cvsshell/cvsshell/src/plugable_app.py,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** plugable_app.py 7 Mar 2002 00:03:23 -0000 1.1.1.1 --- plugable_app.py 7 Mar 2002 13:08:49 -0000 1.2 *************** *** 1,2 **** --- 1,23 ---- + ############################################################################### + # This file is part of CvsShell + # + # CvsShell 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 of the License, or + # (at your option) any later version. + # + # CvsShell 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 CvsShell; if not, write to the Free Software + # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + # + # Copyright 2002 by Stefan Heimann + # Website: http://cvsshell.sourceforge.net/ + ############################################################################### + import re, types from configurable_app import ConfigurableApp Index: utils.py =================================================================== RCS file: /cvsroot/cvsshell/cvsshell/src/utils.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** utils.py 7 Mar 2002 10:43:12 -0000 1.2 --- utils.py 7 Mar 2002 13:08:49 -0000 1.3 *************** *** 1,2 **** --- 1,23 ---- + ############################################################################### + # This file is part of CvsShell + # + # CvsShell 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 of the License, or + # (at your option) any later version. + # + # CvsShell 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 CvsShell; if not, write to the Free Software + # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + # + # Copyright 2002 by Stefan Heimann + # Website: http://cvsshell.sourceforge.net/ + ############################################################################### + import re |