[Checkins] SVN: z3c.profiler/trunk/ Fix up some things.

Stephan Richter srichter at cosmos.phy.tufts.edu
Fri Jan 25 01:25:51 EST 2008


Log message for revision 83230:
  Fix up some things.
  

Changed:
  U   z3c.profiler/trunk/CHANGES.txt
  U   z3c.profiler/trunk/setup.py
  U   z3c.profiler/trunk/src/z3c/profiler/README.txt
  U   z3c.profiler/trunk/src/z3c/profiler/ftesting.zcml

-=-
Modified: z3c.profiler/trunk/CHANGES.txt
===================================================================
--- z3c.profiler/trunk/CHANGES.txt	2008-01-25 06:08:52 UTC (rev 83229)
+++ z3c.profiler/trunk/CHANGES.txt	2008-01-25 06:25:51 UTC (rev 83230)
@@ -2,13 +2,15 @@
 CHANGES
 =======
 
-0.5.1dev (unreleased)
----------------------
+0.5.1 (2008-01-24)
+------------------
 
-- ...
+- Bug: Fixed meta-data.
 
+- Bug: Fixed deprecation warning about the Zope Security Policy.
 
-0.5.0 (2007-01-21)
+
+0.5.0 (2008-01-21)
 ------------------
 
 - Initial Release

Modified: z3c.profiler/trunk/setup.py
===================================================================
--- z3c.profiler/trunk/setup.py	2008-01-25 06:08:52 UTC (rev 83229)
+++ z3c.profiler/trunk/setup.py	2008-01-25 06:25:51 UTC (rev 83230)
@@ -23,13 +23,18 @@
 
 setup (
     name='z3c.profiler',
-    version='0.5.1dev',
+    version='0.5.1',
     author = "Stephan Richter, Roger Ineichen and the Zope Community",
-    author_email = "zope3-dev at zope.org",
+    author_email = "zope-dev at zope.org",
     description = "Profiler skin for Zope3",
     long_description=(
         read('README.txt')
         + '\n\n' +
+        'Detailed Documentation\n'
+        '**********************'
+        + '\n\n' +
+        read('src', 'z3c', 'profiler', 'README.txt')
+        + '\n\n' +
         read('CHANGES.txt')
         ),
     license = "ZPL 2.1",
@@ -44,7 +49,7 @@
         'Operating System :: OS Independent',
         'Topic :: Internet :: WWW/HTTP',
         'Framework :: Zope3'],
-    url = 'http://cheeseshop.python.org/pypi/z3c.profiler',
+    url = 'http://pypi.python.org/pypi/z3c.profiler',
     packages = find_packages('src'),
     include_package_data = True,
     package_dir = {'':'src'},
@@ -85,4 +90,4 @@
         'z3c.layer.pagelet',
         ],
     zip_safe = False,
-)
\ No newline at end of file
+)

Modified: z3c.profiler/trunk/src/z3c/profiler/README.txt
===================================================================
--- z3c.profiler/trunk/src/z3c/profiler/README.txt	2008-01-25 06:08:52 UTC (rev 83229)
+++ z3c.profiler/trunk/src/z3c/profiler/README.txt	2008-01-25 06:25:51 UTC (rev 83230)
@@ -1,8 +1,8 @@
-======
-README
-======
+==================
+Web-based Profiler
+==================
 
-This package offers a profiler including a skin. This profiler allows you to 
+This package offers a profiler including a skin. This profiler allows you to
 profile views on a existing Zope3 application.
 
 Let's access the profiler start page:
@@ -18,7 +18,7 @@
   >>> 'Show Profile' in user.contents
   True
 
-Now we can go to the help.html page which get profiled. Let's use another 
+Now we can go to the ``help.html`` page which get profiled. Let's use another
 browser for this.
 
   >>> newBrowser = ExtendedTestBrowser()
@@ -26,11 +26,11 @@
   >>> newBrowser.url
   'http://localhost/++skin++Profiler/help.html'
 
-After calling the help.html page, we can go to the doProfile page and show the 
-profile by clicking on the ``Show Profile`` button:
+After calling the ``help.html`` page, we can go to the ``doProfile`` page and
+show the profile by clicking on the ``Show Profile`` button:
 
   >>> user.getControl('Show Profile').click()
 
-If we whould not call this form within this test, we whould see the profile 
-data table. But we do not see the profile data table. Probably the testrunner 
+If we whould not call this form within this test, we whould see the profile
+data table. But we do not see the profile data table. Probably the testrunner
 conflicts with the monkey call.

Modified: z3c.profiler/trunk/src/z3c/profiler/ftesting.zcml
===================================================================
--- z3c.profiler/trunk/src/z3c/profiler/ftesting.zcml	2008-01-25 06:08:52 UTC (rev 83229)
+++ z3c.profiler/trunk/src/z3c/profiler/ftesting.zcml	2008-01-25 06:25:51 UTC (rev 83230)
@@ -5,9 +5,8 @@
 
   <include file="setup.zcml" />
 
-
   <securityPolicy
-      component="zope.app.securitypolicy.zopepolicy.ZopeSecurityPolicy"
+      component="zope.securitypolicy.zopepolicy.ZopeSecurityPolicy"
       />
 
   <role id="zope.Manager" title="Manager" />



More information about the Checkins mailing list