Changeset 1268

Show
Ignore:
Timestamp:
04/17/08 16:51:24 (8 months ago)
Author:
sgillies
Message:

Profile structure test passes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • pleiades.vocabulary/trunk/pleiades.vocabulary.egg-info/PKG-INFO

    r1265 r1268  
    11Metadata-Version: 1.0 
    22Name: pleiades.vocabulary 
    3 Version: 0.1dev 
     3Version: 0.1dev-r1267 
    44Summary: UNKNOWN 
    55Home-page: http://atlantides.org/trac/pleiades/wiki/pleiades.vocabulary 
  • pleiades.vocabulary/trunk/pleiades.vocabulary.egg-info/SOURCES.txt

    r1265 r1268  
    22setup.cfg 
    33setup.py 
     4docs/HISTORY.txt 
     5docs/INSTALL.txt 
     6docs/LICENSE.GPL 
     7docs/LICENSE.txt 
    48pleiades/__init__.py 
    59pleiades.vocabulary.egg-info/PKG-INFO 
     
    913pleiades.vocabulary.egg-info/namespace_packages.txt 
    1014pleiades.vocabulary.egg-info/not-zip-safe 
     15pleiades.vocabulary.egg-info/paster_plugins.txt 
    1116pleiades.vocabulary.egg-info/requires.txt 
    1217pleiades.vocabulary.egg-info/top_level.txt 
    1318pleiades/vocabulary/__init__.py 
    14 pleiades/vocabulary/tests.py 
     19pleiades/vocabulary/configure.zcml 
     20pleiades/vocabulary/setuphandlers.py 
     21pleiades/vocabulary/profiles/default/pleiades.vocabulary_various.txt 
     22pleiades/vocabulary/profiles/default/skins.xml 
     23pleiades/vocabulary/profiles/default/structure/.objects 
     24pleiades/vocabulary/skins/pleiades_vocabulary_custom_templates/thesauri_index.pt 
     25pleiades/vocabulary/skins/pleiades_vocabulary_custom_templates/thesauri_macros.pt 
     26pleiades/vocabulary/skins/pleiades_vocabulary_custom_templates/thesaurus_macros.pt 
     27pleiades/vocabulary/skins/pleiades_vocabulary_custom_templates/thesaurus_view.pt 
     28pleiades/vocabulary/tests/__init__.py 
     29pleiades/vocabulary/tests/base.py 
     30pleiades/vocabulary/tests/test_setup.py 
  • pleiades.vocabulary/trunk/pleiades/vocabulary/__init__.py

    r1265 r1268  
     1# 
     2 
     3def 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,Folder 
     1vocabulary,Folder 
  • pleiades.vocabulary/trunk/pleiades/vocabulary/tests/base.py

    r1267 r1268  
    3838ptc.setupPloneSite(products=['ATVocabularyManager', 'PleiadesEntity', 'pleiades.vocabulary']) 
    3939 
    40 class PleiadesVocabukaryTestCase(ptc.PloneTestCase): 
     40class PleiadesVocabularyTestCase(ptc.PloneTestCase): 
    4141    """We use this base class for all the tests in this package. If necessary, 
    4242    we can put common utility or setup code in here.