Changeset 260

Show
Ignore:
Timestamp:
02/23/08 12:51:34 (6 months ago)
Author:
trivoallan
Message:

cleverbox :

  • Added licence information to all project's file. Fixes #28
  • Fixed version number in O.4's setup.py
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cleverbox/branches/0.4/cleverbox/__init__.py

    r44 r260  
    11# -*- 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  
    11# -*- 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 
    219 
    320import 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 
    118from pkg_resources import parse_version 
    2  
    319 
    420def do_upgrade_1(envname, env_version): 
  • cleverbox/branches/0.4/scripts/cleverbox-admin

    r216 r260  
    11#!/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 
    219 
    320import sys 
  • cleverbox/branches/0.4/setup.py

    r241 r260  
    11#!/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 
    219 
    320from glob import glob 
     
    825    # Project identity 
    926    name='Cleverbox', 
    10     version='0.4.1', 
     27    version='0.4.2dev', 
    1128    description='Script for automating multiple trac instances deployment and maintenance.', 
    1229    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.', 
     
    2441     
    2542    # Dependencies 
    26     install_requires=['setuptools>=0.6b1'
     43    install_requires=['setuptools>=0.6b1', 'trac>=0.10.3'
    2744) 
  • cleverbox/trunk/cleverbox/__init__.py

    r210 r260  
    11# -*- 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 
     19 
    220version = '0.5dev' 
  • cleverbox/trunk/cleverbox/log.py

    r211 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 
    118import logging, sys 
    219from cleverbox.utils import termcolors, styles 
  • cleverbox/trunk/cleverbox/model/__init__.py

    r222 r260  
    11# -*- 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 
     19 
    220version = '0.5dev' 
    321 
  • cleverbox/trunk/cleverbox/model/client.py

    r222 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 
    118""" 
    219This module regroups all the logic for manipulating client data in a given environment. 
  • cleverbox/trunk/cleverbox/model/environment.py

    r220 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 
    118import logging, os, shutil, stat 
    219import ConfigParser 
  • cleverbox/trunk/cleverbox/model/project.py

    r222 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 
    118""" 
    219This module regroups all logic used to manipulate project data in a given environment. 
  • cleverbox/trunk/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/trunk/cleverbox/scripts/admin.py

    r219 r260  
    11# -*- 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 
    219 
    320import cmd, logging, os, shlex, sys, traceback 
  • cleverbox/trunk/cleverbox/tests/__init__.py

    r211 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 
    118import unittest 
    219from cleverbox.tests import client_test, project_test, environment_test, upgrade_test 
  • cleverbox/trunk/cleverbox/tests/client_test.py

    r211 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 
    118import unittest 
    219 
  • cleverbox/trunk/cleverbox/tests/environment_test.py

    r211 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 
    118import grp, logging, os, pwd, shutil, stat, tempfile, unittest 
    219from cleverbox.model.environment import Environment 
  • cleverbox/trunk/cleverbox/tests/project_test.py

    r213 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 
    118import unittest 
    219 
  • cleverbox/trunk/cleverbox/tests/upgrade_test.py

    r209 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 
    118import unittest 
    219 
  • cleverbox/trunk/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/trunk/cleverbox/upgrades/upgrades.py

    r210 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 
    118from pkg_resources import parse_version 
    219 
  • cleverbox/trunk/cleverbox/utils/__init__.py

    r177 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/trunk/cleverbox/utils/filesystem.py

    r196 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 
    118""" 
    219This module regroups miscelaneous filesystem related functions. 
  • cleverbox/trunk/cleverbox/utils/inputcollector.py

    r213 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 
    118def collect(input_specs): 
    219     
  • cleverbox/trunk/cleverbox/utils/styles.py

    r193 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 
    118import sys 
    219from cleverbox.utils import termcolors 
  • cleverbox/trunk/cleverbox/utils/termcolors.py

    r177 r260  
     1# Copyright (c) 2005, the Lawrence Journal-World 
     2# All rights reserved. 
     3#  
     4# Redistribution and use in source and binary forms, with or without modification, 
     5# are permitted provided that the following conditions are met: 
     6#  
     7#     1. Redistributions of source code must retain the above copyright notice,  
     8#        this list of conditions and the following disclaimer. 
     9#      
     10#     2. Redistributions in binary form must reproduce the above copyright  
     11#        notice, this list of conditions and the following disclaimer in the 
     12#        documentation and/or other materials provided with the distribution. 
     13#  
     14#     3. Neither the name of Django nor the names of its contributors may be used 
     15#        to endorse or promote products derived from this software without 
     16#        specific prior written permission. 
     17#  
     18# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
     19# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
     20# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
     21# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR 
     22# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 
     23# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 
     24# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 
     25# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
     26# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 
     27# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
     28 
    129""" 
    230termcolors.py 
  • cleverbox/trunk/docs/INSTALL

    r247 r260  
    2121python setup.py install 
    2222}}} 
     23 * Enable the `dav_fs` and `dav_svn` apache modules 
     24 
     25== Initialisation == 
    2326 * Create the directory that will hold apache configuration and cleverobx preferences : 
    2427{{{ 
    2528mkdir /etc/cleverbox 
    2629}}} 
    27  
    28 == Initialisation == 
    2930 * Initialize environment : 
    3031{{{ 
  • cleverbox/trunk/scripts/cleverbox-admin

    r91 r260  
    11#!/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 
    218 
    319import sys 
  • cleverbox/trunk/setup.py

    r243 r260  
    11#!/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/>. 
    217 
    318"""Cleverbox : Script for automating multiple trac instances deployment and maintenance.