[Checkins] SVN: bluebream/website/ define the goal of chapter

Baiju M baiju.m.mail at gmail.com
Sat Feb 6 23:06:31 EST 2010


Log message for revision 108858:
  define the goal of chapter
  

Changed:
  U   bluebream/website/docs/v1.0/tutorial2.rst
  U   bluebream/website/examples/v1.0/tut/stage4/src/tc/main/interfaces.py

-=-
Modified: bluebream/website/docs/v1.0/tutorial2.rst
===================================================================
--- bluebream/website/docs/v1.0/tutorial2.rst	2010-02-07 03:10:41 UTC (rev 108857)
+++ bluebream/website/docs/v1.0/tutorial2.rst	2010-02-07 04:06:30 UTC (rev 108858)
@@ -17,18 +17,33 @@
 functionalities.  If you complete this chapter, you should be able
 to:
 
+- Create content components
+- Change the look and feel
+- Using catalog to search
+
 Adding tickets and comments
 ---------------------------
 
 In this section, you will learn about adding tickets and comments to
 collector.
 
-Searching tickets
------------------
+::
 
+  class ITicket(Interface):
+     """Ticket - the main content object"""
+
+      name = TextLine(
+          title=u"Name",
+          description=u"Name of application.",
+          default=u"",
+          required=True)
+
 Change the look and feel
 ------------------------
 
+Searching tickets
+-----------------
+
 .. raw:: html
 
   <div id="disqus_thread"></div><script type="text/javascript"

Modified: bluebream/website/examples/v1.0/tut/stage4/src/tc/main/interfaces.py
===================================================================
--- bluebream/website/examples/v1.0/tut/stage4/src/tc/main/interfaces.py	2010-02-07 03:10:41 UTC (rev 108857)
+++ bluebream/website/examples/v1.0/tut/stage4/src/tc/main/interfaces.py	2010-02-07 04:06:30 UTC (rev 108858)
@@ -4,7 +4,7 @@
 from zope.schema import Text
 
 class ICollector(IContainer):
-    """The main application container."""
+    """The main application container"""
 
     name = TextLine(
         title=u"Name",
@@ -20,7 +20,7 @@
 
 
 class ITicket(Interface):
-    """ """
+    """Ticket - the main content object"""
 
     name = TextLine(
         title=u"Name",



More information about the checkins mailing list