diff --git a/cybertools/wiki/README.txt b/cybertools/wiki/README.txt index 730c7bf..ebe8e8c 100644 --- a/cybertools/wiki/README.txt +++ b/cybertools/wiki/README.txt @@ -2,8 +2,6 @@ Yet Another WikiWiki Framework ============================== - ($Id$) - >>> from zope import component >>> from zope.publisher.browser import TestRequest @@ -33,7 +31,7 @@ We format the content of the start page using the restructured text format. The parser for restructured text and a corresponding HTML writer are the default plugins used, so we can already render the page as HTML. - >>> print startPage.render(TestRequest()) + >>> print(startPage.render(TestRequest()))

Welcome to the Demo Wiki

Links to existing pages @@ -50,7 +48,7 @@ We now create another page that contains a link to the start page. ... `Back to the Start Page `_ ... ''' - >>> print aboutPage.render(TestRequest()) + >>> print(aboutPage.render(TestRequest()))

Information about the Demo Wiki

This is the cybertools demo wiki.

>> aboutPage.text += ''' ... `More... `_ ... ''' - >>> print aboutPage.render(TestRequest()) + >>> print(aboutPage.render(TestRequest()))

Information about the Demo Wiki

This is the cybertools demo wiki.

>> len(links) 2 - >>> print aboutPage.render(TestRequest()) + >>> print(aboutPage.render(TestRequest()))

...

?More...

@@ -110,7 +108,7 @@ Links with fragments (anchor references) and parameters ... - `More content `_ ... ''' - >>> print referencePage.render(TestRequest()) + >>> print(referencePage.render(TestRequest()))

References