[Pysvnmanager-svn] SF.net SVN: pysvnmanager:[50] trunk
Status: Alpha
Brought to you by:
jiangx
From: <ji...@us...> - 2008-08-29 07:25:01
|
Revision: 50 http://pysvnmanager.svn.sourceforge.net/pysvnmanager/?rev=50&view=rev Author: jiangx Date: 2008-08-29 07:25:05 +0000 (Fri, 29 Aug 2008) Log Message: ----------- add copyright header Modified Paths: -------------- trunk/pysvnmanager/controllers/authz.py trunk/pysvnmanager/controllers/check.py trunk/pysvnmanager/controllers/error.py trunk/pysvnmanager/controllers/logs.py trunk/pysvnmanager/controllers/repos.py trunk/pysvnmanager/controllers/role.py trunk/pysvnmanager/controllers/security.py trunk/pysvnmanager/controllers/template.py trunk/pysvnmanager/hooks/init/__init__.py trunk/pysvnmanager/hooks/plugins/AllowRevpropChange.py trunk/pysvnmanager/hooks/plugins/BugtrackMantis.py trunk/pysvnmanager/hooks/plugins/CapCheckMergeInfo.py trunk/pysvnmanager/hooks/plugins/CaseInsensitive.py trunk/pysvnmanager/hooks/plugins/CommitLogCheck.py trunk/pysvnmanager/hooks/plugins/EmailNotify.py trunk/pysvnmanager/hooks/plugins/EolStyleCheck.py trunk/pysvnmanager/hooks/plugins/ReadonlySvnMirror.py trunk/pysvnmanager/hooks/plugins/__init__.py trunk/pysvnmanager/lib/app_globals.py trunk/pysvnmanager/lib/base.py trunk/pysvnmanager/lib/helpers.py trunk/pysvnmanager/model/hooks.py trunk/pysvnmanager/model/rcsbackup.py trunk/pysvnmanager/model/repos.py trunk/pysvnmanager/model/rest.py trunk/pysvnmanager/model/svnauthz.py trunk/pysvnmanager/tests/__init__.py trunk/pysvnmanager/tests/functional/test_authz.py trunk/pysvnmanager/tests/functional/test_check.py trunk/pysvnmanager/tests/functional/test_login.py trunk/pysvnmanager/tests/functional/test_logs.py trunk/pysvnmanager/tests/functional/test_repos.py trunk/pysvnmanager/tests/functional/test_role.py trunk/pysvnmanager/tests/test_models.py trunk/pysvnmanager/tests/test_rcs_backup.py trunk/pysvnmanager/tests/test_repos.py trunk/pysvnmanager/websetup.py trunk/setup.py Modified: trunk/pysvnmanager/controllers/authz.py =================================================================== --- trunk/pysvnmanager/controllers/authz.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/controllers/authz.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,4 +1,21 @@ # -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. + import logging from pysvnmanager.lib.base import * Modified: trunk/pysvnmanager/controllers/check.py =================================================================== --- trunk/pysvnmanager/controllers/check.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/controllers/check.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,4 +1,21 @@ # -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. + import logging from pysvnmanager.lib.base import * Modified: trunk/pysvnmanager/controllers/error.py =================================================================== --- trunk/pysvnmanager/controllers/error.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/controllers/error.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,3 +1,21 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. + import cgi import os.path Modified: trunk/pysvnmanager/controllers/logs.py =================================================================== --- trunk/pysvnmanager/controllers/logs.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/controllers/logs.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,3 +1,21 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. + import logging from pysvnmanager.lib.base import * Modified: trunk/pysvnmanager/controllers/repos.py =================================================================== --- trunk/pysvnmanager/controllers/repos.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/controllers/repos.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,4 +1,21 @@ # -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. + import logging from pysvnmanager.lib.base import * Modified: trunk/pysvnmanager/controllers/role.py =================================================================== --- trunk/pysvnmanager/controllers/role.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/controllers/role.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,4 +1,21 @@ # -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. + import logging from pysvnmanager.lib.base import * Modified: trunk/pysvnmanager/controllers/security.py =================================================================== --- trunk/pysvnmanager/controllers/security.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/controllers/security.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,3 +1,21 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. + import logging from pysvnmanager.lib.base import * Modified: trunk/pysvnmanager/controllers/template.py =================================================================== --- trunk/pysvnmanager/controllers/template.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/controllers/template.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,3 +1,21 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. + from pysvnmanager.lib.base import * class TemplateController(BaseController): Modified: trunk/pysvnmanager/hooks/init/__init__.py =================================================================== --- trunk/pysvnmanager/hooks/init/__init__.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/hooks/init/__init__.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,5 +1,21 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. import os Modified: trunk/pysvnmanager/hooks/plugins/AllowRevpropChange.py =================================================================== --- trunk/pysvnmanager/hooks/plugins/AllowRevpropChange.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/hooks/plugins/AllowRevpropChange.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,5 +1,21 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. from pysvnmanager.hooks.plugins import * from pysvnmanager.hooks.plugins import _ Modified: trunk/pysvnmanager/hooks/plugins/BugtrackMantis.py =================================================================== --- trunk/pysvnmanager/hooks/plugins/BugtrackMantis.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/hooks/plugins/BugtrackMantis.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,5 +1,21 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. from pysvnmanager.hooks.plugins import * from pysvnmanager.hooks.plugins import _ Modified: trunk/pysvnmanager/hooks/plugins/CapCheckMergeInfo.py =================================================================== --- trunk/pysvnmanager/hooks/plugins/CapCheckMergeInfo.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/hooks/plugins/CapCheckMergeInfo.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,5 +1,21 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. from pysvnmanager.hooks.plugins import * from pysvnmanager.hooks.plugins import _ Modified: trunk/pysvnmanager/hooks/plugins/CaseInsensitive.py =================================================================== --- trunk/pysvnmanager/hooks/plugins/CaseInsensitive.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/hooks/plugins/CaseInsensitive.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,5 +1,21 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. from pysvnmanager.hooks.plugins import * from pysvnmanager.hooks.plugins import _ Modified: trunk/pysvnmanager/hooks/plugins/CommitLogCheck.py =================================================================== --- trunk/pysvnmanager/hooks/plugins/CommitLogCheck.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/hooks/plugins/CommitLogCheck.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,5 +1,21 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. from pysvnmanager.hooks.plugins import * from pysvnmanager.hooks.plugins import _ Modified: trunk/pysvnmanager/hooks/plugins/EmailNotify.py =================================================================== --- trunk/pysvnmanager/hooks/plugins/EmailNotify.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/hooks/plugins/EmailNotify.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,5 +1,21 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. from pysvnmanager.hooks.plugins import * from pysvnmanager.hooks.plugins import _ Modified: trunk/pysvnmanager/hooks/plugins/EolStyleCheck.py =================================================================== --- trunk/pysvnmanager/hooks/plugins/EolStyleCheck.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/hooks/plugins/EolStyleCheck.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,5 +1,21 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. from pysvnmanager.hooks.plugins import * from pysvnmanager.hooks.plugins import _ Modified: trunk/pysvnmanager/hooks/plugins/ReadonlySvnMirror.py =================================================================== --- trunk/pysvnmanager/hooks/plugins/ReadonlySvnMirror.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/hooks/plugins/ReadonlySvnMirror.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,5 +1,21 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. from pysvnmanager.hooks.plugins import * from pysvnmanager.hooks.plugins import _ Modified: trunk/pysvnmanager/hooks/plugins/__init__.py =================================================================== --- trunk/pysvnmanager/hooks/plugins/__init__.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/hooks/plugins/__init__.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,4 +1,20 @@ # -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. import ConfigParser import os Modified: trunk/pysvnmanager/lib/app_globals.py =================================================================== --- trunk/pysvnmanager/lib/app_globals.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/lib/app_globals.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,3 +1,20 @@ +# -*- coding: utf-8 -*- +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. + """The application's Globals object""" from pylons import config Modified: trunk/pysvnmanager/lib/base.py =================================================================== --- trunk/pysvnmanager/lib/base.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/lib/base.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,3 +1,20 @@ +# -*- coding: utf-8 -*- +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. + """The base Controller API Provides the BaseController class for subclassing, and other objects Modified: trunk/pysvnmanager/lib/helpers.py =================================================================== --- trunk/pysvnmanager/lib/helpers.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/lib/helpers.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,3 +1,20 @@ +# -*- coding: utf-8 -*- +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. + """Helper functions Consists of functions to typically be used within templates, but also Modified: trunk/pysvnmanager/model/hooks.py =================================================================== --- trunk/pysvnmanager/model/hooks.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/model/hooks.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,5 +1,21 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. """Subversion repos hooks plugin. Modified: trunk/pysvnmanager/model/rcsbackup.py =================================================================== --- trunk/pysvnmanager/model/rcsbackup.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/model/rcsbackup.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,5 +1,21 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. from __future__ import division Modified: trunk/pysvnmanager/model/repos.py =================================================================== --- trunk/pysvnmanager/model/repos.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/model/repos.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,5 +1,21 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. """Subversion repos management. Modified: trunk/pysvnmanager/model/rest.py =================================================================== --- trunk/pysvnmanager/model/rest.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/model/rest.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,5 +1,21 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. from docutils import core from docutils.writers.html4css1 import Writer,HTMLTranslator Modified: trunk/pysvnmanager/model/svnauthz.py =================================================================== --- trunk/pysvnmanager/model/svnauthz.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/model/svnauthz.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,5 +1,21 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. """Subversion authz config file management. Modified: trunk/pysvnmanager/tests/__init__.py =================================================================== --- trunk/pysvnmanager/tests/__init__.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/tests/__init__.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,3 +1,20 @@ +# -*- coding: utf-8 -*- +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. + """Pylons application test package When the test runner finds and executes tests within this directory, Modified: trunk/pysvnmanager/tests/functional/test_authz.py =================================================================== --- trunk/pysvnmanager/tests/functional/test_authz.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/tests/functional/test_authz.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,4 +1,20 @@ ## -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. from pysvnmanager.tests import * from pysvnmanager.controllers import authz Modified: trunk/pysvnmanager/tests/functional/test_check.py =================================================================== --- trunk/pysvnmanager/tests/functional/test_check.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/tests/functional/test_check.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,4 +1,20 @@ ## -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. from pysvnmanager.tests import * from pysvnmanager.controllers import check Modified: trunk/pysvnmanager/tests/functional/test_login.py =================================================================== --- trunk/pysvnmanager/tests/functional/test_login.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/tests/functional/test_login.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,4 +1,20 @@ ## -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. from pysvnmanager.tests import * from pylons import config Modified: trunk/pysvnmanager/tests/functional/test_logs.py =================================================================== --- trunk/pysvnmanager/tests/functional/test_logs.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/tests/functional/test_logs.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,3 +1,20 @@ +# -*- coding: utf-8 -*- +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. + from pysvnmanager.tests import * class TestLogsController(TestController): Modified: trunk/pysvnmanager/tests/functional/test_repos.py =================================================================== --- trunk/pysvnmanager/tests/functional/test_repos.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/tests/functional/test_repos.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,4 +1,20 @@ ## -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. from pysvnmanager.tests import * Modified: trunk/pysvnmanager/tests/functional/test_role.py =================================================================== --- trunk/pysvnmanager/tests/functional/test_role.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/tests/functional/test_role.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,4 +1,20 @@ ## -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. from pysvnmanager.tests import * from pysvnmanager.controllers import role Modified: trunk/pysvnmanager/tests/test_models.py =================================================================== --- trunk/pysvnmanager/tests/test_models.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/tests/test_models.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,5 +1,21 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. import os import sys Modified: trunk/pysvnmanager/tests/test_rcs_backup.py =================================================================== --- trunk/pysvnmanager/tests/test_rcs_backup.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/tests/test_rcs_backup.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,5 +1,21 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. import os import sys Modified: trunk/pysvnmanager/tests/test_repos.py =================================================================== --- trunk/pysvnmanager/tests/test_repos.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/tests/test_repos.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,5 +1,21 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. import os import sys Modified: trunk/pysvnmanager/websetup.py =================================================================== --- trunk/pysvnmanager/websetup.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/pysvnmanager/websetup.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,3 +1,21 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. + """Setup the pySvnManager application""" import logging Modified: trunk/setup.py =================================================================== --- trunk/setup.py 2008-08-29 02:48:06 UTC (rev 49) +++ trunk/setup.py 2008-08-29 07:25:05 UTC (rev 50) @@ -1,3 +1,21 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2008 OpenSourceXpress Ltd. (http://www.ossxp.com) +# Author: Jiang Xin +# Contact: http://www.ossxp.com +# http://www.worldhello.net +# http://moinmo.in/JiangXin +# +# 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 of the License, 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. + try: from setuptools import setup, find_packages except ImportError: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |