[Checkins] SVN: megrok.genshi/trunk/ Preparing the first release.

Lennart Regebro regebro at gmail.com
Mon Nov 12 13:24:53 EST 2007


Log message for revision 81774:
  Preparing the first release.
  

Changed:
  _U  megrok.genshi/trunk/
  A   megrok.genshi/trunk/CHANGES.txt
  U   megrok.genshi/trunk/EXTERNALS.txt
  A   megrok.genshi/trunk/README.txt
  U   megrok.genshi/trunk/setup.py
  U   megrok.genshi/trunk/src/megrok/genshi/__init__.py
  U   megrok.genshi/trunk/src/megrok/genshi/tests/__init__.py
  U   megrok.genshi/trunk/src/megrok/genshi/tests/test_genshitemplate.py

-=-

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

   + grok svn+ssh://regebro@svn.zope.org/repos/main/grok/trunk


Added: megrok.genshi/trunk/CHANGES.txt
===================================================================
--- megrok.genshi/trunk/CHANGES.txt	                        (rev 0)
+++ megrok.genshi/trunk/CHANGES.txt	2007-11-12 18:24:53 UTC (rev 81774)
@@ -0,0 +1,6 @@
+CHANGES
+=======
+
+Version 0.9
+-----------
+- Initial release


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

Modified: megrok.genshi/trunk/EXTERNALS.txt
===================================================================
--- megrok.genshi/trunk/EXTERNALS.txt	2007-11-12 18:20:36 UTC (rev 81773)
+++ megrok.genshi/trunk/EXTERNALS.txt	2007-11-12 18:24:53 UTC (rev 81774)
@@ -1 +1 @@
-grok svn+ssh://regebro@svn.zope.org/repos/main/grok/branches/regebro-guido-templates
\ No newline at end of file
+grok svn+ssh://regebro@svn.zope.org/repos/main/grok/trunk

Added: megrok.genshi/trunk/README.txt
===================================================================
--- megrok.genshi/trunk/README.txt	                        (rev 0)
+++ megrok.genshi/trunk/README.txt	2007-11-12 18:24:53 UTC (rev 81774)
@@ -0,0 +1,17 @@
+megrok.genshi
+=============
+
+megrok.genshi makes it possible to use Genshi templates in Grok.
+
+Installation
+------------
+
+I don't really know yet, because I'm just trying out how to make eggs and
+install the stuff.
+
+
+Authors
+-------
+
+Lennart Regebro (regebro at gmail.com)
+Guido Wesdorp


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

Modified: megrok.genshi/trunk/setup.py
===================================================================
--- megrok.genshi/trunk/setup.py	2007-11-12 18:20:36 UTC (rev 81773)
+++ megrok.genshi/trunk/setup.py	2007-11-12 18:24:53 UTC (rev 81774)
@@ -2,18 +2,22 @@
 
 version = '0.9'
 
+long_description = (open('README.txt').read() +
+                    '\n\n' +
+                    open('CHANGES.txt').read())
+
 setup(name='megrok.genshi',
       version=version,
       description="Genshi integration in Grok",
-      long_description="""\
-Support for using the Genshi templating language in the Grok web application
-framework. See http://genshi.edgewall.org/ and http://grok.zope.org/
-""",
+      long_description=long_description,
       # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
       classifiers=['Development Status :: 3 - Alpha',
-                   'Framework :: Zope3',
+                   'Environment :: Web Environment',
+                   'Intended Audience :: Developers',
                    'License :: OSI Approved :: Zope Public License',
+                   'Programming Language :: Python',
                    'Operating System :: OS Independent',
+                   'Topic :: Internet :: WWW/HTTP',
                    ], 
       keywords="grok genshi",
       author="Lennart Regebro, Guido Wesdorp",

Modified: megrok.genshi/trunk/src/megrok/genshi/__init__.py
===================================================================
--- megrok.genshi/trunk/src/megrok/genshi/__init__.py	2007-11-12 18:20:36 UTC (rev 81773)
+++ megrok.genshi/trunk/src/megrok/genshi/__init__.py	2007-11-12 18:24:53 UTC (rev 81774)
@@ -1 +1,13 @@
-
+##############################################################################
+#
+# Copyright (c) 2006-2007 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################

Modified: megrok.genshi/trunk/src/megrok/genshi/tests/__init__.py
===================================================================
--- megrok.genshi/trunk/src/megrok/genshi/tests/__init__.py	2007-11-12 18:20:36 UTC (rev 81773)
+++ megrok.genshi/trunk/src/megrok/genshi/tests/__init__.py	2007-11-12 18:24:53 UTC (rev 81774)
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2006-2007 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+# $Id$ $Rev$ $Author$ $Date$
 import os.path
 import megrok.genshi
 from zope.app.testing.functional import ZCMLLayer

Modified: megrok.genshi/trunk/src/megrok/genshi/tests/test_genshitemplate.py
===================================================================
--- megrok.genshi/trunk/src/megrok/genshi/tests/test_genshitemplate.py	2007-11-12 18:20:36 UTC (rev 81773)
+++ megrok.genshi/trunk/src/megrok/genshi/tests/test_genshitemplate.py	2007-11-12 18:24:53 UTC (rev 81774)
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2006-2007 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+
 import grok
 import re
 import unittest



More information about the Checkins mailing list