Changeset 16
- Timestamp:
- 03/25/08 01:53:22 (4 years ago)
- Location:
- plone4bio.pscoils/trunk
- Files:
-
- 1 added
- 3 modified
-
plone4bio/pscoils/configure.zcml (modified) (2 diffs)
-
plone4bio/pscoils/interfaces.py (modified) (1 diff)
-
plone4bio/pscoils/tests.py (added)
-
setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
plone4bio.pscoils/trunk/plone4bio/pscoils/configure.zcml
r9 r16 2 2 xmlns="http://namespaces.zope.org/zope" 3 3 xmlns:five="http://namespaces.zope.org/five" 4 xmlns:genericsetup="http://namespaces.zope.org/genericsetup"5 4 i18n_domain="plone4bio"> 6 5 … … 14 13 <include package=".browser" /> 15 14 16 <!-- Register GenericSetup profile used for installation -->17 <genericsetup:registerProfile18 name="default"19 title="Plone4Bio pscoils predictor"20 directory="profiles/default"21 description="Extension profile for plone4bio.pscoils."22 provides="Products.GenericSetup.interfaces.EXTENSION"23 />24 25 15 </configure> -
plone4bio.pscoils/trunk/plone4bio/pscoils/interfaces.py
r9 r16 1 from zope.interface import Interface, Invalid, invariant, implements2 from zope.component.interfaces import IObjectEvent3 4 from zope import schema5 from zope.app.container.constraints import containers, contains6 7 from plone.app.vocabularies.users import UsersSource8 9 from plone4bio.base import Plone4BioMessageFactory as _10 1 from plone4bio.base.interfaces import IGenericPrediction 11 12 2 class IPscoilsPrediction(IGenericPrediction): 13 3 """ """ -
plone4bio.pscoils/trunk/setup.py
r9 r16 7 7 version=version, 8 8 description="plone4bio: pscoils predictor", 9 long_description= """\10 """,9 long_description=open(os.path.join(i"plone4bio", "pscoils", "README.txt").read() + "\n" + 10 open(os.path.join("docs", "HISTORY.txt")).read(), 11 11 # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers 12 12 classifiers=[ 13 "Framework :: Plone", 13 14 "Framework :: Zope2", 14 15 "Framework :: Zope3",
