[Checkins] SVN: bluebream/trunk/ Add disquss comment

Baiju M baiju.m.mail at gmail.com
Sat Jan 9 06:36:38 EST 2010


Log message for revision 107916:
  Add disquss comment
  

Changed:
  _U  bluebream/trunk/
  U   bluebream/trunk/docs/source/gettingstarted.rst
  U   bluebream/trunk/docs/source/introduction.rst
  U   bluebream/trunk/docs/source/tutorial.rst

-=-

Property changes on: bluebream/trunk
___________________________________________________________________
Modified: svn:ignore
   - build
develop-eggs
dist
eggs
bin
parts
.installed.cfg
Sphinx_PyPI_upload*.egg

   + build
develop-eggs
dist
eggs
bin
parts
.installed.cfg
.mr.developer.cfg
Sphinx_PyPI_upload*.egg


Modified: bluebream/trunk/docs/source/gettingstarted.rst
===================================================================
--- bluebream/trunk/docs/source/gettingstarted.rst	2010-01-09 10:44:12 UTC (rev 107915)
+++ bluebream/trunk/docs/source/gettingstarted.rst	2010-01-09 11:36:37 UTC (rev 107916)
@@ -228,10 +228,37 @@
 Hello World
 -----------
 
-To create a page which displays "Hello World", first create a view
-file named ``myhello.py`` at ``src/mynamespace/main/myhello.py``
+To create a page which displays "Hello World", you need to create a
+view and then register it using ``browser:page`` ZCML directive.  Add
+a Python file named ``myhello.py`` at
+``src/mynamespace/main/myhello.py``::
 
+  $ touch src/mynamespace/main/myhello.py
+
+You can define your browser view inside this module.  All browser
+views should implement
+``zope.publisher.interfaces.browser.IBrowserView`` interface.
+
+The content of this file could be like this::
+
+  from zope.publisher.browser import BrowserView
+
+  class HelloView(BrowserView):
+
+      def __call__(self):
+          return "Hello"
+
 Conclusion
 ----------
 
-This chapter introdued BlueBream
+This chapter exaplained about getting started with application
+development using BlueBream.
+
+.. raw:: html
+
+  <div id="disqus_thread"></div><script type="text/javascript"
+  src="http://disqus.com/forums/bluebream/embed.js"></script><noscript><a
+  href="http://disqus.com/forums/bluebream/?url=ref">View the
+  discussion thread.</a></noscript><a href="http://disqus.com"
+  class="dsq-brlink">blog comments powered by <span
+  class="logo-disqus">Disqus</span></a>

Modified: bluebream/trunk/docs/source/introduction.rst
===================================================================
--- bluebream/trunk/docs/source/introduction.rst	2010-01-09 10:44:12 UTC (rev 107915)
+++ bluebream/trunk/docs/source/introduction.rst	2010-01-09 11:36:37 UTC (rev 107916)
@@ -69,3 +69,12 @@
 also widely used.
 
 Very recently Zope 3 project is renamed to BlueBream.
+
+.. raw:: html
+
+  <div id="disqus_thread"></div><script type="text/javascript"
+  src="http://disqus.com/forums/bluebream/embed.js"></script><noscript><a
+  href="http://disqus.com/forums/bluebream/?url=ref">View the
+  discussion thread.</a></noscript><a href="http://disqus.com"
+  class="dsq-brlink">blog comments powered by <span
+  class="logo-disqus">Disqus</span></a>

Modified: bluebream/trunk/docs/source/tutorial.rst
===================================================================
--- bluebream/trunk/docs/source/tutorial.rst	2010-01-09 10:44:12 UTC (rev 107915)
+++ bluebream/trunk/docs/source/tutorial.rst	2010-01-09 11:36:37 UTC (rev 107916)
@@ -4,6 +4,8 @@
 Introduction
 ------------
 
+The `Getting Started <gettingstarted.html>`_ chapater also 
+
 Starting new project
 --------------------
 
@@ -18,3 +20,13 @@
 
 Conclusion
 ----------
+
+.. raw:: html
+
+  <div id="disqus_thread"></div><script type="text/javascript"
+  src="http://disqus.com/forums/bluebream/embed.js"></script><noscript><a
+  href="http://disqus.com/forums/bluebream/?url=ref">View the
+  discussion thread.</a></noscript><a href="http://disqus.com"
+  class="dsq-brlink">blog comments powered by <span
+  class="logo-disqus">Disqus</span></a>
+



More information about the checkins mailing list