[Checkins] SVN: megrok.genshi/trunk/ Starting the project.

Lennart Regebro regebro at gmail.com
Wed Oct 3 12:39:14 EDT 2007


Log message for revision 80555:
  Starting the project.
  

Changed:
  _U  megrok.genshi/trunk/
  A   megrok.genshi/trunk/EXTERNALS.txt
  A   megrok.genshi/trunk/buildout.cfg
  A   megrok.genshi/trunk/setup.py

-=-

Property changes on: megrok.genshi/trunk
___________________________________________________________________
Name: svn:externals
   + grok svn+ssh://regebro@svn.zope.org/repos/main/grok/branches/regebro-guido-templates


Added: megrok.genshi/trunk/EXTERNALS.txt
===================================================================
--- megrok.genshi/trunk/EXTERNALS.txt	                        (rev 0)
+++ megrok.genshi/trunk/EXTERNALS.txt	2007-10-03 16:39:13 UTC (rev 80555)
@@ -0,0 +1 @@
+grok svn+ssh://regebro@svn.zope.org/repos/main/grok/branches/regebro-guido-templates
\ No newline at end of file


Property changes on: megrok.genshi/trunk/EXTERNALS.txt
___________________________________________________________________
Name: svn:keywords
   + Id

Added: megrok.genshi/trunk/buildout.cfg
===================================================================
--- megrok.genshi/trunk/buildout.cfg	                        (rev 0)
+++ megrok.genshi/trunk/buildout.cfg	2007-10-03 16:39:13 UTC (rev 80555)
@@ -0,0 +1,58 @@
+[buildout]
+develop = . grok
+parts = app data zopectl test
+find-links = http://download.zope.org/distribution/
+newest = false
+
+[data]
+recipe = zc.recipe.filestorage
+
+[app]
+recipe = zc.zope3recipes>=0.5.3:application
+eggs = megrok.genshi
+site.zcml = <include package="megrok.genshi" />
+            <include package="zope.app.twisted" />
+
+            <configure i18n_domain="megrok.genshi">
+              <unauthenticatedPrincipal id="zope.anybody"
+                                        title="Unauthenticated User" />
+              <unauthenticatedGroup id="zope.Anybody"
+                                    title="Unauthenticated Users" />
+              <authenticatedGroup id="zope.Authenticated"
+                                title="Authenticated Users" />
+              <everybodyGroup id="zope.Everybody"
+                              title="All Users" />
+              <principal id="zope.manager"
+                         title="Manager"
+                         login="grok"
+                         password_manager="Plain Text"
+                         password="grok"
+                         />
+
+              <!-- Replace the following directive if you don't want
+                   public access -->
+              <grant permission="zope.View"
+                     principal="zope.Anybody" />
+              <grant permission="zope.app.dublincore.view"
+                     principal="zope.Anybody" />
+
+              <role id="zope.Manager" title="Site Manager" />
+              <role id="zope.Member" title="Site Member" />
+              <grantAll role="zope.Manager" />
+              <grant role="zope.Manager"
+                     principal="zope.manager" />
+           </configure>
+
+[data]
+recipe = zc.recipe.filestorage
+
+# this section named so that the start/stop script is called bin/zopectl
+[zopectl]
+recipe = zc.zope3recipes:instance
+application = app
+zope.conf = ${data:zconfig}
+
+[test]
+recipe = zc.recipe.testrunner
+eggs = megrok.genshi
+defaults = ['--tests-pattern', '^f?tests$', '-v']

Added: megrok.genshi/trunk/setup.py
===================================================================
--- megrok.genshi/trunk/setup.py	                        (rev 0)
+++ megrok.genshi/trunk/setup.py	2007-10-03 16:39:13 UTC (rev 80555)
@@ -0,0 +1,28 @@
+from setuptools import setup, find_packages
+
+version = '0.0'
+
+setup(name='AnimalTree',
+      version=version,
+      description="",
+      long_description="""\
+""",
+      # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
+      classifiers=[], 
+      keywords="",
+      author="",
+      author_email="",
+      url="",
+      license="",
+      package_dir={'': 'src'},
+      packages=find_packages('src'),
+      include_package_data=True,
+      zip_safe=False,
+      install_requires=['setuptools',
+                        'grok',
+                        # Add extra requirements here
+                        ],
+      entry_points="""
+      # Add entry points here
+      """,
+      )


Property changes on: megrok.genshi/trunk/setup.py
___________________________________________________________________
Name: svn:keywords
   + Id



More information about the Checkins mailing list