[Checkins] SVN: grok/branches/ulif-introspector/src/grok/admin/introspector/README.txt Add tests for links to overview pages.

Uli Fouquet uli at gnufix.de
Tue Jul 1 20:07:59 EDT 2008


Log message for revision 87914:
  Add tests for links to overview pages.

Changed:
  U   grok/branches/ulif-introspector/src/grok/admin/introspector/README.txt

-=-
Modified: grok/branches/ulif-introspector/src/grok/admin/introspector/README.txt
===================================================================
--- grok/branches/ulif-introspector/src/grok/admin/introspector/README.txt	2008-07-01 23:50:11 UTC (rev 87913)
+++ grok/branches/ulif-introspector/src/grok/admin/introspector/README.txt	2008-07-02 00:07:58 UTC (rev 87914)
@@ -50,3 +50,56 @@
 
 Note the `++skin++introspector` marker in the URL.
 
+The overview page provides three main sections to start browsing: 
+
+- the registries
+
+- code
+
+- ZODB
+
+Browsing the registries
+=======================
+
+We can browse the registries by clicking on the provided link::
+
+  >>> browser.getLink(
+  ...  "Browse the registries (utilitites, adapters, etc.)").click()
+  >>> print browser.contents
+  <!DOCTYPE html...
+  <h1>Registries</h1>
+  ...
+
+We get back to introspector home page::
+
+  >>> browser.open('http://localhost/++skin++introspector/')
+
+
+Browsing code (classes, packages, etc.)
+=======================================
+
+  >>> browser.getLink(
+  ... "Browse classes, packages and other filesystem based information"
+  ... ).click()
+  >>> print browser.contents
+  <!DOCTYPE html...
+  <h1>Code</h1>
+  ...
+
+We get back to introspector home page::
+
+  >>> browser.open('http://localhost/++skin++introspector/')
+
+
+Browsing the ZODB
+=================
+
+  >>> browser.getLink("Browse the ZODB").click()
+  >>> print browser.contents
+  <!DOCTYPE html...
+  <h1>ZODB browser</h1>
+  ...
+
+We get back to introspector home page::
+
+  >>> browser.open('http://localhost/++skin++introspector/')



More information about the Checkins mailing list