Changeset 1268
- Timestamp:
- 04/17/08 16:51:24 (8 months ago)
- Files:
-
- pleiades.vocabulary/trunk/pleiades.vocabulary.egg-info/PKG-INFO (modified) (1 diff)
- pleiades.vocabulary/trunk/pleiades.vocabulary.egg-info/SOURCES.txt (modified) (2 diffs)
- pleiades.vocabulary/trunk/pleiades/vocabulary/__init__.py (modified) (1 diff)
- pleiades.vocabulary/trunk/pleiades/vocabulary/profiles/default/structure/.objects (modified) (1 diff)
- pleiades.vocabulary/trunk/pleiades/vocabulary/profiles/default/structure/vocabulary (moved) (moved from pleiades.vocabulary/trunk/pleiades/vocabulary/profiles/default/structure/thesaurus)
- pleiades.vocabulary/trunk/pleiades/vocabulary/tests/base.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
pleiades.vocabulary/trunk/pleiades.vocabulary.egg-info/PKG-INFO
r1265 r1268 1 1 Metadata-Version: 1.0 2 2 Name: pleiades.vocabulary 3 Version: 0.1dev 3 Version: 0.1dev-r1267 4 4 Summary: UNKNOWN 5 5 Home-page: http://atlantides.org/trac/pleiades/wiki/pleiades.vocabulary pleiades.vocabulary/trunk/pleiades.vocabulary.egg-info/SOURCES.txt
r1265 r1268 2 2 setup.cfg 3 3 setup.py 4 docs/HISTORY.txt 5 docs/INSTALL.txt 6 docs/LICENSE.GPL 7 docs/LICENSE.txt 4 8 pleiades/__init__.py 5 9 pleiades.vocabulary.egg-info/PKG-INFO … … 9 13 pleiades.vocabulary.egg-info/namespace_packages.txt 10 14 pleiades.vocabulary.egg-info/not-zip-safe 15 pleiades.vocabulary.egg-info/paster_plugins.txt 11 16 pleiades.vocabulary.egg-info/requires.txt 12 17 pleiades.vocabulary.egg-info/top_level.txt 13 18 pleiades/vocabulary/__init__.py 14 pleiades/vocabulary/tests.py 19 pleiades/vocabulary/configure.zcml 20 pleiades/vocabulary/setuphandlers.py 21 pleiades/vocabulary/profiles/default/pleiades.vocabulary_various.txt 22 pleiades/vocabulary/profiles/default/skins.xml 23 pleiades/vocabulary/profiles/default/structure/.objects 24 pleiades/vocabulary/skins/pleiades_vocabulary_custom_templates/thesauri_index.pt 25 pleiades/vocabulary/skins/pleiades_vocabulary_custom_templates/thesauri_macros.pt 26 pleiades/vocabulary/skins/pleiades_vocabulary_custom_templates/thesaurus_macros.pt 27 pleiades/vocabulary/skins/pleiades_vocabulary_custom_templates/thesaurus_view.pt 28 pleiades/vocabulary/tests/__init__.py 29 pleiades/vocabulary/tests/base.py 30 pleiades/vocabulary/tests/test_setup.py pleiades.vocabulary/trunk/pleiades/vocabulary/__init__.py
r1265 r1268 1 # 2 3 def initialize(context): 4 """Intializer called when used as a Zope 2 product.""" pleiades.vocabulary/trunk/pleiades/vocabulary/profiles/default/structure/.objects
r1267 r1268 1 thesaurus,Folder1 vocabulary,Folder pleiades.vocabulary/trunk/pleiades/vocabulary/tests/base.py
r1267 r1268 38 38 ptc.setupPloneSite(products=['ATVocabularyManager', 'PleiadesEntity', 'pleiades.vocabulary']) 39 39 40 class PleiadesVocabu karyTestCase(ptc.PloneTestCase):40 class PleiadesVocabularyTestCase(ptc.PloneTestCase): 41 41 """We use this base class for all the tests in this package. If necessary, 42 42 we can put common utility or setup code in here.
