Changeset 388
- Timestamp:
- 09/02/08 01:43:17 (4 months ago)
- Files:
-
- trunk/MANIFEST.in (modified) (1 diff)
- trunk/bin/domainmodel-sdist-maker (modified) (1 diff)
- trunk/setup.py (modified) (1 diff)
- trunk/src/dm/__init__.py (modified) (1 diff)
- trunk/src/dm/bin (added)
- trunk/src/dm/bin/__init__.py (added)
- trunk/src/dm/bin/domainmodel-admin (moved) (moved from trunk/bin/domainmodel-admin)
- trunk/src/dm/bin/domainmodel-test (moved) (moved from trunk/bin/domainmodel-test)
- trunk/src/dm/django/media (added)
- trunk/src/dm/django/media/images (added)
- trunk/src/dm/django/templates/__init__.py (added)
- trunk/src/dm/django/templates/index.html (added)
- trunk/src/dm/etc/__init__.py (added)
- trunk/src/dm/etc/domainmodel.conf.new (modified) (3 diffs)
- trunk/src/dm/layer (added)
- trunk/src/dm/layer/__init__.py (added)
- trunk/src/dm/layer/language (added)
- trunk/src/dm/layer/language/__init__.py (added)
- trunk/src/dm/layer/mechanisms (added)
- trunk/src/dm/layer/subdomains (added)
- trunk/src/dm/layer/subdomains/__init__.py (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/MANIFEST.in
r235 r388 5 5 include INSTALL 6 6 include README 7 recursive-include src *8 7 recursive-include bin * 9 8 recursive-include etc * 9 recursive-include src * trunk/bin/domainmodel-sdist-maker
r346 r388 1 1 #!/usr/bin/env python 2 2 import os 3 4 # Increase version number. 5 6 # Build and upload provide scripts for new version. 7 8 # Make list of changes. 9 10 # Pass developer tests. 11 12 # Commit changes. 13 14 # Update changes. 15 16 # Pass developer tests. 17 18 # Pass integration tests. 19 20 # Create distribution. 3 21 os.system("rm -fv `find . -name '*.pyc'`") 4 22 os.system("rm -fv MANIFEST") 5 23 os.system("python setup.py sdist") 6 24 25 # Copy distribution to download location. 7 26 import sys 8 27 sys.path.append('./src') 9 28 from dm import __version__ 10 cmd = "scp dist/domainmodel-%s.tar.gz iris:awf/system/domains/AppropriateSoftwareFoundation.org/provide/docs" % __version__29 cmd = "scp dist/domainmodel-%s.tar.gz appropriatesoftware.net:awf/system/domains/AppropriateSoftwareFoundation.org/provide/docs" % __version__ 11 30 print cmd 12 31 os.system(cmd) 13 32 14 os.system("vi ./src/dm/__init__.py")15 33 34 # Further manual steps. 35 print "Test distribution with foundation system tests." 36 print "Update domainmodel website to state and point to new release." 37 print "Update cheeseshop." 38 print "Post notices (where?)." 39 print "Increase version number." 40 41 trunk/setup.py
r357 r388 42 42 'Operating System :: OS Independent', 43 43 'Programming Language :: Python', 44 'Topic :: Software Development :: Libraries :: Python Modules'], 44 'Topic :: Software Development :: Libraries :: Python Modules', 45 ], 45 46 ) 46 47 trunk/src/dm/__init__.py
r365 r388 1 1 """Package version, increase immediately after acceptance of release.""" 2 2 3 __version__ = '0.3 .17'3 __version__ = '0.3' 4 4 trunk/src/dm/etc/domainmodel.conf.new
r386 r388 28 28 # images_dir: 29 29 # * directory for domain model object images 30 images_dir = /path/to/domainmodel /var/images30 images_dir = /path/to/domainmodel 31 31 32 32 [logging] … … 55 55 # name: 56 56 # * database name 57 name = domainmodel 57 name = domainmodeldbname 58 58 59 59 # user: 60 60 # * database user name 61 user = domainmodel 61 user = domainmodeldbuser 62 62 63 63 # password: 64 64 # * database user password 65 password = pass65 password = domainmodeldbpassword 66 66 67 67 # An (sqlobject) database uri 68 68 # * if defined the uri will be used in making database connection instead 69 69 # the information provided above 70 # * use this option if you wish to connect to a database such as sqlite 70 # * use this option if you wish to connect to a database such as sqlite 71 # Todo: De-kforge-ify. 71 72 # uri = postgres://kforgetest:pass@localhost/kforgetest 72 73 … … 109 110 # templates_dir: 110 111 # * Django templates to use for web interface 111 # NB: for tests to work this must be set to point to the kforge templates112 templates_dir = /path/to/ kforge/templates/kui112 # NB: for tests to work this must be set to point to the templates dir 113 templates_dir = /path/to/domainmodel/templates 113 114 114 115 # secret_key:
