[Checkins] SVN: grokui.introspector/trunk/src/grokui/introspector/README.txt Update tests.

Uli Fouquet uli at gnufix.de
Sun Aug 17 21:21:20 EDT 2008


Log message for revision 89948:
  Update tests.

Changed:
  U   grokui.introspector/trunk/src/grokui/introspector/README.txt

-=-
Modified: grokui.introspector/trunk/src/grokui/introspector/README.txt
===================================================================
--- grokui.introspector/trunk/src/grokui/introspector/README.txt	2008-08-18 01:12:40 UTC (rev 89947)
+++ grokui.introspector/trunk/src/grokui/introspector/README.txt	2008-08-18 01:21:19 UTC (rev 89948)
@@ -115,3 +115,35 @@
 
   >>> browser.open('http://localhost/++inspect++/index.html')
 
+
+Browsing content (ZODB items, etc.)
+===================================
+
+The content browser assists in giving us an overview over the
+available content items. The overview page is where we can start::
+
+  >>> browser.getLink(
+  ... "Browse the content"
+  ... ).click()
+  >>> print browser.contents
+  <html>
+  ...
+  <h1>...Content Introspector</h1>
+  ...
+
+From here we can start browsing the ZODB::
+
+  >>> link = browser.getLink("ZODB root")
+  >>> link.click()
+
+All content introspection is done by simply watching an item via the
+`inspect` view. So, to examine the ZODB root, we enter::
+
+  >>> link.url
+  'http://localhost/@@inspect'
+
+To learn more about the content introspector, see `content.txt`.
+
+We get back to introspector home page::
+
+  >>> browser.open('http://localhost/++inspect++/index.html')



More information about the Checkins mailing list