[Checkins] SVN: Sandbox/darrylcousins/tfws.website/ Couple of updates before I get started

Darryl Cousins darryl at darrylcousins.net.nz
Sat Feb 9 21:50:39 EST 2008


Log message for revision 83702:
  Couple of updates before I get started

Changed:
  _U  Sandbox/darrylcousins/tfws.website/
  U   Sandbox/darrylcousins/tfws.website/buildout.cfg
  U   Sandbox/darrylcousins/tfws.website/setup.py
  A   Sandbox/darrylcousins/tfws.website/src/tfws/website/ftest-selenium.zcml

-=-

Property changes on: Sandbox/darrylcousins/tfws.website
___________________________________________________________________
Name: svn:externals
   - z3c.authentication svn://svn.zope.org/repos/main/z3c.authentication/trunk
z3c.resource svn://svn.zope.org/repos/main/z3c.resource/trunk
zc.selenium svn://svn.zope.org/repos/main/zc.selenium/trunk
bootstrap svn://svn.zope.org/repos/main/zc.buildout/trunk/bootstrap/

   + z3c.authentication svn://svn.zope.org/repos/main/z3c.authentication/trunk
z3c.resource svn://svn.zope.org/repos/main/z3c.resource/trunk
zc.selenium svn://svn.zope.org/repos/main/zc.selenium/trunk
bootstrap svn://svn.zope.org/repos/main/zc.buildout/trunk/bootstrap/
mars.adapter svn+ssh://darrylcousins@svn.zope.org/repos/main/Sandbox/darrylcousins/mars.adapter
mars.contentprovider svn+ssh://darrylcousins@svn.zope.org/repos/main/Sandbox/darrylcousins/mars.contentprovider
mars.form svn+ssh://darrylcousins@svn.zope.org/repos/main/Sandbox/darrylcousins/mars.form
mars.formdemo svn+ssh://darrylcousins@svn.zope.org/repos/main/Sandbox/darrylcousins/mars.formdemo
mars.layer svn+ssh://darrylcousins@svn.zope.org/repos/main/Sandbox/darrylcousins/mars.layer
mars.macro svn+ssh://darrylcousins@svn.zope.org/repos/main/Sandbox/darrylcousins/mars.macro
mars.resource svn+ssh://darrylcousins@svn.zope.org/repos/main/Sandbox/darrylcousins/mars.resource
mars.template svn+ssh://darrylcousins@svn.zope.org/repos/main/Sandbox/darrylcousins/mars.template
mars.view svn+ssh://darrylcousins@svn.zope.org/repos/main/Sandbox/darrylcousins/mars.view
mars.viewlet svn+ssh://darrylcousins@svn.zope.org/repos/main/Sandbox/darrylcousins/mars.viewlet


Modified: Sandbox/darrylcousins/tfws.website/buildout.cfg
===================================================================
--- Sandbox/darrylcousins/tfws.website/buildout.cfg	2008-02-10 02:44:08 UTC (rev 83701)
+++ Sandbox/darrylcousins/tfws.website/buildout.cfg	2008-02-10 02:50:38 UTC (rev 83702)
@@ -1,21 +1,43 @@
 [buildout]
 develop = . 
+    grok
     z3c.authentication 
     z3c.resource 
     zc.selenium
+    mars.adapter
+    mars.contentprovider
+    mars.form
+#    mars.formdemo
+    mars.layer
+    mars.macro
+    mars.resource
+    mars.template
+    mars.view
+    mars.viewlet
 parts = 
     app 
     test
-extends = http://grok.zope.org/releaseinfo/grok-0.11.1.cfg
+extends = http://download.zope.org/zope3.4/versions-3.4.0c1.cfg
 versions = versions
 
 [versions]
-martian = 0.9.2
+grok = 0.12dev
+martian = 0.9.3
 
 [app]
 recipe = zc.recipe.egg
 eggs = 
     tfws.website
+    mars.adapter
+    mars.contentprovider
+    mars.form
+#    mars.formdemo
+    mars.layer
+    mars.macro
+    mars.resource
+    mars.template
+    mars.view
+    mars.viewlet
     Paste
     PasteScript
     PasteDeploy
@@ -26,7 +48,19 @@
 [test]
 recipe = zc.recipe.testrunner
 eggs = 
+    grok
+    martian
     tfws.website
+    mars.adapter
+    mars.contentprovider
+    mars.form
+#    mars.formdemo
+    mars.layer
+    mars.macro
+    mars.resource
+    mars.template
+    mars.view
+    mars.viewlet
     z3c.authentication
     z3c.resource
     zc.selenium

Modified: Sandbox/darrylcousins/tfws.website/setup.py
===================================================================
--- Sandbox/darrylcousins/tfws.website/setup.py	2008-02-10 02:44:08 UTC (rev 83701)
+++ Sandbox/darrylcousins/tfws.website/setup.py	2008-02-10 02:50:38 UTC (rev 83702)
@@ -1,23 +1,32 @@
+import os
 from setuptools import setup, find_packages
 
-version = '0.0'
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
 setup(name='tfws.website',
-      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,
+    version='0.1',
+    author='Darryl Cousins',
+    author_email='darryl.cousins at tfws.org.nz',
+    url='http://www.tfws.org.nz/mars',
+    description="""\
+This package uses ``martian`` and ``grok`` to build a simple web
+application on the ``zope3`` framework.""",
+    long_description=(
+        read('tfws/website/README.txt') +
+        read('CHANGES.txt')
+        ),
+    classifiers = ['Development Status :: 1 - Planning',
+                    'Intended Audience :: Developers',
+                    'License :: Other/Proprietary License',
+                    'Programming Language :: Python',
+                    'Operating System :: OS Independent',
+                    'Topic :: Software Development :: Build Tools',
+                    'Framework :: Zope3',
+                    ],
+    packages=find_packages(),
+    namespace_packages=['mars'],
+    zip_safe=True,
       install_requires=['setuptools',
                         'lxml',
                         'grok',

Added: Sandbox/darrylcousins/tfws.website/src/tfws/website/ftest-selenium.zcml
===================================================================
--- Sandbox/darrylcousins/tfws.website/src/tfws/website/ftest-selenium.zcml	                        (rev 0)
+++ Sandbox/darrylcousins/tfws.website/src/tfws/website/ftest-selenium.zcml	2008-02-10 02:50:38 UTC (rev 83702)
@@ -0,0 +1,10 @@
+<configure
+   xmlns="http://namespaces.zope.org/zope"
+   i18n_domain="tfws.website"
+   package="tfws.website"
+   >
+
+  <include file="ftesting.zcml" />
+  <include file="selenium.zcml" />
+
+</configure>



More information about the Checkins mailing list