Changeset 1418
- Timestamp:
- 10/07/05 06:31:04 (3 years ago)
- Files:
-
- trunk/ChangeLog (modified) (1 diff)
- trunk/dabo/__version__.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r1417 r1418 1 1 See the Subversion log for all the details. 2 2 3 Dabo-0.4.2 (2005-10-07) (Revision 14 ??):3 Dabo-0.4.2 (2005-10-07) (Revision 1418): 4 4 Added PrimaryBizobj property to dForm, which can replace calls to getPrimaryBizobj(). 5 5 trunk/dabo/__version__.py
r1232 r1418 2 2 import dabo 3 3 4 # If dabo is a subversion working copy, we'll try to get the current 5 # revision using the svnversion command against that working copy. 6 # Else, we'll get the revision as saved in _daborevs, which is an 7 # external svn repository updated by a svn post-commit hook on the 8 # server. 4 _version = "0.4.2" 5 6 # If dabo is a subversion working copy, we'll try to get the current revision 7 # using the svnversion command against that working copy. Otherwise, we'll get 8 # the revision as saved in _daborevs, which is an external svn repository 9 # updated by a svn post-commit hook on the server. 9 10 daboPath = dabo.__path__[0] 10 11 _revision = None … … 23 24 _revision = _revs["dabo"] 24 25 25 version = {"version": "0.4.1",26 version = {"version": _version, 26 27 "revision": _revision} 27 28
