Changeset 260 for cleverbox/branches
- Timestamp:
- 02/23/08 12:51:34 (4 years ago)
- Location:
- cleverbox/branches/0.4
- Files:
-
- 7 modified
- 1 moved
-
cleverbox/__init__.py (modified) (1 diff)
-
cleverbox/scripts/__init__.py (modified) (1 diff)
-
cleverbox/scripts/admin.py (modified) (1 diff)
-
cleverbox/upgrades/__init__.py (modified) (1 diff)
-
cleverbox/upgrades/upgrades.py (modified) (1 diff)
-
docs/COPYING (moved) (moved from cleverbox/branches/0.4/docs/INSTALL)
-
scripts/cleverbox-admin (modified) (1 diff)
-
setup.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cleverbox/branches/0.4/cleverbox/__init__.py
r44 r260 1 1 # -*- coding: utf-8 -*- 2 3 # This file is part of the "Cleverbox" program. 4 # 5 # Cleverbox is free software: you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation, either version 3 of the License, or 8 # (at your option) any later version. 9 # 10 # Cleverbox is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with Cleverbox. If not, see <http://www.gnu.org/licenses/>. 17 # 18 # Copyright 2008, Tristan Rivoallan -
cleverbox/branches/0.4/cleverbox/scripts/__init__.py
r52 r260 1 # This file is part of the "Cleverbox" program. 2 # 3 # Cleverbox is free software: you can redistribute it and/or modify 4 # it under the terms of the GNU General Public License as published by 5 # the Free Software Foundation, either version 3 of the License, or 6 # (at your option) any later version. 7 # 8 # Cleverbox is distributed in the hope that it will be useful, 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 # GNU General Public License for more details. 12 # 13 # You should have received a copy of the GNU General Public License 14 # along with Cleverbox. If not, see <http://www.gnu.org/licenses/>. 15 # 16 # Copyright 2008, Tristan Rivoallan -
cleverbox/branches/0.4/cleverbox/scripts/admin.py
r207 r260 1 1 # -*- coding: utf-8 -*- 2 3 # This file is part of the "Cleverbox" program. 4 # 5 # Cleverbox is free software: you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation, either version 3 of the License, or 8 # (at your option) any later version. 9 # 10 # Cleverbox is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with Cleverbox. If not, see <http://www.gnu.org/licenses/>. 17 # 18 # Copyright 2008, Tristan Rivoallan 2 19 3 20 import shutil -
cleverbox/branches/0.4/cleverbox/upgrades/__init__.py
r155 r260 1 # This file is part of the "Cleverbox" program. 2 # 3 # Cleverbox is free software: you can redistribute it and/or modify 4 # it under the terms of the GNU General Public License as published by 5 # the Free Software Foundation, either version 3 of the License, or 6 # (at your option) any later version. 7 # 8 # Cleverbox is distributed in the hope that it will be useful, 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 # GNU General Public License for more details. 12 # 13 # You should have received a copy of the GNU General Public License 14 # along with Cleverbox. If not, see <http://www.gnu.org/licenses/>. 15 # 16 # Copyright 2008, Tristan Rivoallan -
cleverbox/branches/0.4/cleverbox/upgrades/upgrades.py
r157 r260 1 # This file is part of the "Cleverbox" program. 2 # 3 # Cleverbox is free software: you can redistribute it and/or modify 4 # it under the terms of the GNU General Public License as published by 5 # the Free Software Foundation, either version 3 of the License, or 6 # (at your option) any later version. 7 # 8 # Cleverbox is distributed in the hope that it will be useful, 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 # GNU General Public License for more details. 12 # 13 # You should have received a copy of the GNU General Public License 14 # along with Cleverbox. If not, see <http://www.gnu.org/licenses/>. 15 # 16 # Copyright 2008, Tristan Rivoallan 17 1 18 from pkg_resources import parse_version 2 3 19 4 20 def do_upgrade_1(envname, env_version): -
cleverbox/branches/0.4/scripts/cleverbox-admin
r216 r260 1 1 #!/usr/bin/env python2.4 2 3 # This file is part of the "Cleverbox" program. 4 # 5 # Cleverbox is free software: you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation, either version 3 of the License, or 8 # (at your option) any later version. 9 # 10 # Cleverbox is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with Cleverbox. If not, see <http://www.gnu.org/licenses/>. 17 # 18 # Copyright 2008, Tristan Rivoallan 2 19 3 20 import sys -
cleverbox/branches/0.4/setup.py
r241 r260 1 1 #!/usr/bin/env python 2 3 # This file is part of the "Cleverbox" program. 4 # 5 # Cleverbox is free software: you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation, either version 3 of the License, or 8 # (at your option) any later version. 9 # 10 # Cleverbox is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with Cleverbox. If not, see <http://www.gnu.org/licenses/>. 17 # 18 # Copyright 2008, Tristan Rivoallan 2 19 3 20 from glob import glob … … 8 25 # Project identity 9 26 name='Cleverbox', 10 version='0.4. 1',27 version='0.4.2dev', 11 28 description='Script for automating multiple trac instances deployment and maintenance.', 12 29 long_description='The Cleverbox sits on top of [http://trac.edgewall.org Trac] and [http://subversion.tigris.org Subversion]. It provides an interactive shell for deploying and maintaining instances of both projects.', … … 24 41 25 42 # Dependencies 26 install_requires=['setuptools>=0.6b1' ]43 install_requires=['setuptools>=0.6b1', 'trac>=0.10.3'] 27 44 )
