[Checkins] SVN: zope3docs/ Fix quotes.

Christian Theune ct at gocept.com
Thu Feb 19 12:28:27 EST 2009


Log message for revision 96783:
  Fix quotes.
  

Changed:
  _U  zope3docs/
  U   zope3docs/source/codingstyle/zcml-style.rst

-=-

Property changes on: zope3docs
___________________________________________________________________
Modified: bzr:revision-info
   - timestamp: 2009-02-19 14:34:02.355999947 +0100
committer: Christian Theune <ct at gocept.com>
properties: 
	branch-nick: zope3docs.bzr

   + timestamp: 2009-02-19 14:34:10.486000061 +0100
committer: Christian Theune <ct at gocept.com>
properties: 
	branch-nick: zope3docs.bzr

Modified: bzr:file-ids
   - source/codingstyle/index.rst	96696 at 62d5b8a3-27da-0310-9561-8e5933582275:zope3docs:source%2Fcodingstyle%2Findex.rst

   + source/codingstyle/zcml-style.rst	96696 at 62d5b8a3-27da-0310-9561-8e5933582275:zope3docs:source%2Fcodingstyle%2Fzcml-style.rst

Modified: bzr:revision-id:v3-single-zope3docs
   - 16 ct at gocept.com-20090219095131-k60befy2nrfx9q99
17 ct at gocept.com-20090219101837-g1g0cg0op0o8a104
18 ct at gocept.com-20090219104745-nh3531xbm8hsd2v9
19 ct at gocept.com-20090219105006-0mre3cx94v8awk9m
20 ct at gocept.com-20090219105021-qywg1ei5q6a21223
21 ct at gocept.com-20090219105034-je5udw7hy1r7xel5
22 ct at gocept.com-20090219133402-h5djqf2t1nfow9k3

   + 16 ct at gocept.com-20090219095131-k60befy2nrfx9q99
17 ct at gocept.com-20090219101837-g1g0cg0op0o8a104
18 ct at gocept.com-20090219104745-nh3531xbm8hsd2v9
19 ct at gocept.com-20090219105006-0mre3cx94v8awk9m
20 ct at gocept.com-20090219105021-qywg1ei5q6a21223
21 ct at gocept.com-20090219105034-je5udw7hy1r7xel5
22 ct at gocept.com-20090219133402-h5djqf2t1nfow9k3
23 ct at gocept.com-20090219133410-1vdvhnc62v0ix14u


Modified: zope3docs/source/codingstyle/zcml-style.rst
===================================================================
--- zope3docs/source/codingstyle/zcml-style.rst	2009-02-19 17:28:24 UTC (rev 96782)
+++ zope3docs/source/codingstyle/zcml-style.rst	2009-02-19 17:28:27 UTC (rev 96783)
@@ -54,7 +54,7 @@
 sections with comments and indent the sections relative to the comments.
 For example::
 
-    <configure xmlns='http://namespaces.zope.org/zope'>
+    <configure xmlns="http://namespaces.zope.org/zope">
 
       <!-- Configuration registries -->
 
@@ -206,10 +206,10 @@
 Example two, could be better::
 
     <configure
-       xmlns='http://namespaces.zope.org/zope'
-       xmlns:security='http://namespaces.zope.org/security'
-       xmlns:zmi='http://namespaces.zope.org/zmi'
-       xmlns:browser='http://namespaces.zope.org/browser'
+       xmlns="http://namespaces.zope.org/zope"
+       xmlns:security="http://namespaces.zope.org/security"
+       xmlns:zmi="http://namespaces.zope.org/zmi"
+       xmlns:browser="http://namespaces.zope.org/browser"
        >
 
     <!-- Standard configuration directives -->
@@ -363,9 +363,9 @@
 Example three reformatted::
 
     <configure
-        xmlns='http://namespaces.zope.org/zope'
-        xmlns:zmi='http://namespaces.zope.org/zmi'
-        xmlns:browser='http://namespaces.zope.org/browser'
+        xmlns="http://namespaces.zope.org/zope"
+        xmlns:zmi="http://namespaces.zope.org/zmi"
+        xmlns:browser="http://namespaces.zope.org/browser"
         >
 
       <browser:defaultView 
@@ -412,9 +412,9 @@
 so we don't need so much vertical whitespace::
 
     <configure
-        xmlns='http://namespaces.zope.org/zope'
-        xmlns:zmi='http://namespaces.zope.org/zmi'
-        xmlns:browser='http://namespaces.zope.org/browser'
+        xmlns="http://namespaces.zope.org/zope"
+        xmlns:zmi="http://namespaces.zope.org/zmi"
+        xmlns:browser="http://namespaces.zope.org/browser"
         >
 
       <browser:defaultView 



More information about the Checkins mailing list