[Checkins] SVN: megrok.z3ctable/trunk/src/megrok/z3ctable/ Fixed typo

Vincent Fretin vincent.fretin at gmail.com
Fri Jul 2 08:37:03 EDT 2010


Log message for revision 114105:
  Fixed typo

Changed:
  U   megrok.z3ctable/trunk/src/megrok/z3ctable/README.txt
  U   megrok.z3ctable/trunk/src/megrok/z3ctable/components.py
  U   megrok.z3ctable/trunk/src/megrok/z3ctable/meta.py
  U   megrok.z3ctable/trunk/src/megrok/z3ctable/tests/implicit.py
  U   megrok.z3ctable/trunk/src/megrok/z3ctable/tests/views.py
  U   megrok.z3ctable/trunk/src/megrok/z3ctable/tests/views_templates/tw.pt

-=-
Modified: megrok.z3ctable/trunk/src/megrok/z3ctable/README.txt
===================================================================
--- megrok.z3ctable/trunk/src/megrok/z3ctable/README.txt	2010-07-02 12:04:53 UTC (rev 114104)
+++ megrok.z3ctable/trunk/src/megrok/z3ctable/README.txt	2010-07-02 12:37:03 UTC (rev 114105)
@@ -15,10 +15,10 @@
   - Value
 
 Beyond a simple wrapping, megrok.z3cform brings you new convenient
-ways to create pages displaying a table :
+ways to create pages displaying a table:
 
-  - TableView : a simple browser view displaying a table.
-  - TablePage : a table browser view included in a layout
+  - TableView: a simple browser view displaying a table.
+  - TablePage: a table browser view included in a layout
     (see megrok.layout)
 
 For more information and more detailed examples please look in the
@@ -103,7 +103,7 @@
 
 There is currently no output this is because the table itself contains
 no logic. The data is displayed by components called "Column". A
-Column is a multi adapter, adapting the view, the request and the
+Column is a multi adapter, adapting the context, the request and the
 table. It permits a very flexible handling of the tables and the data
 representations. Let's define a simple Column::
 

Modified: megrok.z3ctable/trunk/src/megrok/z3ctable/components.py
===================================================================
--- megrok.z3ctable/trunk/src/megrok/z3ctable/components.py	2010-07-02 12:04:53 UTC (rev 114104)
+++ megrok.z3ctable/trunk/src/megrok/z3ctable/components.py	2010-07-02 12:37:03 UTC (rev 114105)
@@ -101,7 +101,7 @@
     @property
     def values(self):
         return NotImplementedError(
-            """Your class must override the `Values` method.""")
+            """Your class must override the `values` method.""")
 
 
 __all__ = ('Table', 'TableView', 'TablePage',

Modified: megrok.z3ctable/trunk/src/megrok/z3ctable/meta.py
===================================================================
--- megrok.z3ctable/trunk/src/megrok/z3ctable/meta.py	2010-07-02 12:04:53 UTC (rev 114104)
+++ megrok.z3ctable/trunk/src/megrok/z3ctable/meta.py	2010-07-02 12:37:03 UTC (rev 114105)
@@ -14,7 +14,7 @@
 
 class TableGrokker(martian.GlobalGrokker):
     """Grokker dedicated to find the table within a module.
-    This allows to set implicit relationships bewteen a table and a column.
+    This allows to set implicit relationships between a table and a column.
     """
     martian.priority(991)
 

Modified: megrok.z3ctable/trunk/src/megrok/z3ctable/tests/implicit.py
===================================================================
--- megrok.z3ctable/trunk/src/megrok/z3ctable/tests/implicit.py	2010-07-02 12:04:53 UTC (rev 114104)
+++ megrok.z3ctable/trunk/src/megrok/z3ctable/tests/implicit.py	2010-07-02 12:37:03 UTC (rev 114105)
@@ -2,7 +2,7 @@
 Implicit is sometimes readable
 ==============================
 
-In this exemple, we are going to demonstrate the implicit link between a table 
+In this example, we are going to demonstrate the implicit link between a table 
 and a column, using auto resolving directives. Instead of directly declaring
 the context and the table used to fetch a column, we resolve them by looking
 into the module. Here, the column will automatically be register for the table

Modified: megrok.z3ctable/trunk/src/megrok/z3ctable/tests/views.py
===================================================================
--- megrok.z3ctable/trunk/src/megrok/z3ctable/tests/views.py	2010-07-02 12:04:53 UTC (rev 114104)
+++ megrok.z3ctable/trunk/src/megrok/z3ctable/tests/views.py	2010-07-02 12:37:03 UTC (rev 114105)
@@ -48,7 +48,7 @@
   >>> print tvwt()
   <html>
    <body>
-    <h1> This is my nice Table renderd in a Templage</h1>
+    <h1>This is my nice Table rendered in a template</h1>
     <table>
     <thead>
       <tr>
@@ -70,7 +70,7 @@
    </body>
   </html>
 
-table renderd in a layout with an template
+table rendered in a layout with a template
 
   >>> tpil = getMultiAdapter((cont, TestRequest()), name=u'tablepageinlayout')
   >>> print tpil()
@@ -105,7 +105,7 @@
   </html>
 
 
-table renderd in a layout with an render method
+table rendered in a layout with an render method
 
   >>> twr = getMultiAdapter((cont, TestRequest()), name=u'tablewithrender')
   >>> print twr()

Modified: megrok.z3ctable/trunk/src/megrok/z3ctable/tests/views_templates/tw.pt
===================================================================
--- megrok.z3ctable/trunk/src/megrok/z3ctable/tests/views_templates/tw.pt	2010-07-02 12:04:53 UTC (rev 114104)
+++ megrok.z3ctable/trunk/src/megrok/z3ctable/tests/views_templates/tw.pt	2010-07-02 12:37:03 UTC (rev 114105)
@@ -1,6 +1,6 @@
 <html>
  <body>
-  <h1> This is my nice Table renderd in a Templage</h1>
+  <h1>This is my nice Table rendered in a template</h1>
 
   <div tal:replace="structure view/renderTable"/>
  </body>



More information about the checkins mailing list