[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/apidoc/codemodule/browser/introspector.txt apply slightly different fix to functional test "bug"; and what kind of an

Benji York benji at zope.com
Sat Dec 3 21:24:40 EST 2005


Log message for revision 40522:
  apply slightly different fix to functional test "bug"; and what kind of an
  editor that doesn't end files with a newline? :)
  

Changed:
  U   Zope3/trunk/src/zope/app/apidoc/codemodule/browser/introspector.txt

-=-
Modified: Zope3/trunk/src/zope/app/apidoc/codemodule/browser/introspector.txt
===================================================================
--- Zope3/trunk/src/zope/app/apidoc/codemodule/browser/introspector.txt	2005-12-03 23:06:12 UTC (rev 40521)
+++ Zope3/trunk/src/zope/app/apidoc/codemodule/browser/introspector.txt	2005-12-04 02:24:39 UTC (rev 40522)
@@ -134,8 +134,8 @@
 they are provided in a aseparate section. To see anything useful, we have to
 add an object to the folder first:
 
-    >>> link = 'http://localhost/@@+/action.html?type_name=zope.app.file.File'
-    >>> browser.getLink(url=link).click()
+    >>> import re
+    >>> browser.getLink(re.compile('^File$')).click()
     >>> import cStringIO
     >>> browser.getControl('Data').value = cStringIO.StringIO('content')
     >>> browser.getControl(name='add_input_name').value = 'file.txt'
@@ -217,4 +217,4 @@
     ...
 
 That's it! The introspector view has a lot more potential, but that's for
-someone else to do.
\ No newline at end of file
+someone else to do.



More information about the Zope3-Checkins mailing list