[Checkins] SVN: z3c.securitytool/trunk/s Version bump, and updating some comments

Daniel Blackburn blackburnd at gmail.com
Tue Jun 10 21:11:12 EDT 2008


Log message for revision 87301:
  Version bump, and updating some comments

Changed:
  U   z3c.securitytool/trunk/setup.py
  U   z3c.securitytool/trunk/src/z3c/securitytool/securitytool.py

-=-
Modified: z3c.securitytool/trunk/setup.py
===================================================================
--- z3c.securitytool/trunk/setup.py	2008-06-11 01:10:28 UTC (rev 87300)
+++ z3c.securitytool/trunk/setup.py	2008-06-11 01:11:12 UTC (rev 87301)
@@ -23,26 +23,25 @@
     text = open(os.path.join(os.path.dirname(__file__), *rnames)).read()
     return xml.sax.saxutils.escape(text)
 
-chapters = read('./src/z3c/securitytool/README.txt')
+readmeText = read('./src/z3c/securitytool/README.txt')
 
 setup (
     name='z3c.securitytool',
-    version='0.3.6b',
-    author = "Daniel Blackburn, Martin Hefler, Markus Kemmerl, Stephan Richter, Randy Crafton",
-    author_email = "zope3-dev at zope.org",
+    version='0.4.0',
+    author = "Daniel Blackburn, Stephan Richter, Randy Crafton",
+    author_email = "zope-dev at zope.org",
     description = "A security audit tool and demo for Zope3 views",
     long_description=(
         read('README.txt')
         + '\n\n'
-        + '\n' + chapters
-
+        + '\n' + readmeText
         + '\n\n' +
         read('CHANGES.txt')
         ),
     license = "ZPL 2.1",
     keywords = "zope3 securitytool security",
     classifiers = [
-        'Development Status :: 3 - Alpha',
+        'Development Status :: 4 - Beta',
         'Environment :: Web Environment',
         'Intended Audience :: Developers',
         'License :: OSI Approved :: Zope Public License',

Modified: z3c.securitytool/trunk/src/z3c/securitytool/securitytool.py
===================================================================
--- z3c.securitytool/trunk/src/z3c/securitytool/securitytool.py	2008-06-11 01:10:28 UTC (rev 87300)
+++ z3c.securitytool/trunk/src/z3c/securitytool/securitytool.py	2008-06-11 01:11:12 UTC (rev 87301)
@@ -617,9 +617,10 @@
 
         result.append((getattr(ob, '__name__', '(no name)'), data))
         ob = getattr(ob, '__parent__', None)
+
         # This is just to create an internal unique name for the object
-        # using the name and depth of the object.
-
+        # using the name and depth of the object. Im not sure but a
+        # linkedlist may be a better approach.
         if data.has_key('parentList'):
             data['uid'] = data['parentList'][0]+"_" + \
                                 str(len(data['parentList']))



More information about the Checkins mailing list