Changeset 155 for cleverbox/trunk
- Timestamp:
- 08/10/07 17:32:57 (5 years ago)
- Location:
- cleverbox/trunk/cleverbox
- Files:
-
- 3 added
- 1 modified
-
scripts/admin.py (modified) (2 diffs)
-
upgrades (added)
-
upgrades/__init__.py (added)
-
upgrades/upgrades.py (added)
Legend:
- Unmodified
- Added
- Removed
-
cleverbox/trunk/cleverbox/scripts/admin.py
r149 r155 21 21 } 22 22 23 _version = ' trunk'23 _version = '0.4.dev' 24 24 25 25 class CleverboxAdmin(cmd.Cmd): … … 51 51 self.envname = envname 52 52 self.prompt = "Cleverbox [%s] > " % self.envname 53 54 # Check if environment needs an upgrade 55 # - open VERSION 56 # - compare with self._version 57 # - if VERSION < self._version : 58 # - call upgrade script corresponding to self._upg (?) 59 # - VERSION > self._version : EXCEPT 60 # - else : continue 61 62 53 63 if env is not None: 54 64 self.__env = env
