[Checkins] SVN: bluebream/website/ bit cleanup

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


Log message for revision 108859:
  bit cleanup
  

Changed:
  U   bluebream/website/docs/v1.0/tutorial1.rst
  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/tutorial1.rst
===================================================================
--- bluebream/website/docs/v1.0/tutorial1.rst	2010-02-07 04:06:30 UTC (rev 108858)
+++ bluebream/website/docs/v1.0/tutorial1.rst	2010-02-07 04:19:57 UTC (rev 108859)
@@ -733,17 +733,17 @@
   from zope.schema import Text
 
   class ICollector(IContainer):
-      """The main application container."""
+      """The main application container"""
 
       name = TextLine(
           title=u"Name",
-          description=u"Name of application.",
+          description=u"Name of application container",
           default=u"",
           required=True)
 
       description = Text(
           title=u"Description",
-          description=u"The name of application container.",
+          description=u"Description of application container",
           default=u"",
           required=False)
 

Modified: bluebream/website/docs/v1.0/tutorial2.rst
===================================================================
--- bluebream/website/docs/v1.0/tutorial2.rst	2010-02-07 04:06:30 UTC (rev 108858)
+++ bluebream/website/docs/v1.0/tutorial2.rst	2010-02-07 04:19:57 UTC (rev 108859)
@@ -19,15 +19,14 @@
 
 - Create content components
 - Change the look and feel
-- Using catalog to search
+- Use catalog to search
 
-Adding tickets and comments
----------------------------
+Adding tickets
+--------------
 
-In this section, you will learn about adding tickets and comments to
-collector.
+In this section, you will learn about adding tickets to collector.
 
-::
+Update the ::
 
   class ITicket(Interface):
      """Ticket - the main content object"""

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 04:06:30 UTC (rev 108858)
+++ bluebream/website/examples/v1.0/tut/stage4/src/tc/main/interfaces.py	2010-02-07 04:19:57 UTC (rev 108859)
@@ -8,13 +8,13 @@
 
     name = TextLine(
         title=u"Name",
-        description=u"Name of application.",
+        description=u"Name of application container",
         default=u"",
         required=True)
 
     description = Text(
         title=u"Description",
-        description=u"The name of application container.",
+        description=u"Description of application container",
         default=u"",
         required=False)
 
@@ -22,8 +22,14 @@
 class ITicket(Interface):
     """Ticket - the main content object"""
 
-    name = TextLine(
-        title=u"Name",
-        description=u"Name of application.",
+    number = TextLine(
+        title=u"Number",
+        description=u"Ticket number",
         default=u"",
         required=True)
+
+    summary = TextLine(
+        title=u"Summary",
+        description=u"Ticket summary",
+        default=u"",
+        required=True)



More information about the checkins mailing list