[Checkins] SVN: grok/trunk/grokwiki/src/grokwiki/wiki.py Use CodeView instead of View.

Uli Fouquet uli at gnufix.de
Fri Aug 21 11:45:30 EDT 2009


Log message for revision 103069:
  Use CodeView instead of View.
  

Changed:
  U   grok/trunk/grokwiki/src/grokwiki/wiki.py

-=-
Modified: grok/trunk/grokwiki/src/grokwiki/wiki.py
===================================================================
--- grok/trunk/grokwiki/src/grokwiki/wiki.py	2009-08-21 15:44:09 UTC (rev 103068)
+++ grok/trunk/grokwiki/src/grokwiki/wiki.py	2009-08-21 15:45:29 UTC (rev 103069)
@@ -20,11 +20,11 @@
 class Wiki(grok.Application, grok.Container):
     """This is Grok's sample wiki application."""
 
-class Index(grok.View):
+class Index(grok.CodeView):
     def render(self):
         self.redirect(self.url('home'))
 
-class Hello(grok.View):
+class Hello(grok.CodeView):
     grok.baseclass()
     
     def render(self):



More information about the Checkins mailing list