[Checkins] SVN: z3ext.layoutform/tags/1.1.1/ tag for release 1.1.1

Nikolay Kim fafhrd at datacom.kz
Mon Aug 4 17:02:10 EDT 2008


Log message for revision 89355:
  tag for release 1.1.1

Changed:
  A   z3ext.layoutform/tags/1.1.1/
  D   z3ext.layoutform/tags/1.1.1/CHANGES.txt
  A   z3ext.layoutform/tags/1.1.1/CHANGES.txt
  U   z3ext.layoutform/tags/1.1.1/setup.py
  D   z3ext.layoutform/tags/1.1.1/src/z3ext/layoutform/browser/form.pt
  A   z3ext.layoutform/tags/1.1.1/src/z3ext/layoutform/browser/form.pt
  D   z3ext.layoutform/tags/1.1.1/src/z3ext/layoutform/browser/formadd.pt
  A   z3ext.layoutform/tags/1.1.1/src/z3ext/layoutform/browser/formadd.pt

-=-
Copied: z3ext.layoutform/tags/1.1.1 (from rev 89162, z3ext.layoutform/trunk)

Deleted: z3ext.layoutform/tags/1.1.1/CHANGES.txt
===================================================================
--- z3ext.layoutform/trunk/CHANGES.txt	2008-08-01 16:28:54 UTC (rev 89162)
+++ z3ext.layoutform/tags/1.1.1/CHANGES.txt	2008-08-04 21:02:10 UTC (rev 89355)
@@ -1,38 +0,0 @@
-=======
-CHANGES
-=======
-
-1.1.0 (2008-07-22)
-------------------
-
-- Remove cancel button from edit form
-
-
-1.0.1 (2008-06-02)
-------------------
-
-- Redirect to nextURL after success 'apply'
-
-
-1.0.0 (2008-05-13)
-------------------
-
-- Use `includeDependencies` instead `autoinclude`
-
-
-0.2.0 (2008-??-??)
-------------------
-
-- Use z3c.autoinclude
-
-
-0.1.1 (2008-01-22)
-------------------
-
-- Fixed missing import in add.py
-
-
-0.1 (2008-01-19)
-----------------
-
-- Initial release

Copied: z3ext.layoutform/tags/1.1.1/CHANGES.txt (from rev 89354, z3ext.layoutform/trunk/CHANGES.txt)
===================================================================
--- z3ext.layoutform/tags/1.1.1/CHANGES.txt	                        (rev 0)
+++ z3ext.layoutform/tags/1.1.1/CHANGES.txt	2008-08-04 21:02:10 UTC (rev 89355)
@@ -0,0 +1,44 @@
+=======
+CHANGES
+=======
+
+1.1.1 (2008-08-05)
+------------------
+
+- Fixed wrong `for` in label tag
+
+
+1.1.0 (2008-07-22)
+------------------
+
+- Remove cancel button from edit form
+
+
+1.0.1 (2008-06-02)
+------------------
+
+- Redirect to nextURL after success 'apply'
+
+
+1.0.0 (2008-05-13)
+------------------
+
+- Use `includeDependencies` instead `autoinclude`
+
+
+0.2.0 (2008-??-??)
+------------------
+
+- Use z3c.autoinclude
+
+
+0.1.1 (2008-01-22)
+------------------
+
+- Fixed missing import in add.py
+
+
+0.1 (2008-01-19)
+----------------
+
+- Initial release

Modified: z3ext.layoutform/tags/1.1.1/setup.py
===================================================================
--- z3ext.layoutform/trunk/setup.py	2008-08-01 16:28:54 UTC (rev 89162)
+++ z3ext.layoutform/tags/1.1.1/setup.py	2008-08-04 21:02:10 UTC (rev 89355)
@@ -21,7 +21,7 @@
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-version='1.1.1dev'
+version='1.1.1'
 
 
 setup(name='z3ext.layoutform',

Deleted: z3ext.layoutform/tags/1.1.1/src/z3ext/layoutform/browser/form.pt
===================================================================
--- z3ext.layoutform/trunk/src/z3ext/layoutform/browser/form.pt	2008-08-01 16:28:54 UTC (rev 89162)
+++ z3ext.layoutform/tags/1.1.1/src/z3ext/layoutform/browser/form.pt	2008-08-04 21:02:10 UTC (rev 89355)
@@ -1,71 +0,0 @@
-<div class="z-form z-form-standard">
-  <form action="." method="post" enctype="multipart/form-data" 
-	tal:attributes="method view/method;
-			enctype view/enctype;
-			acceptCharset view/acceptCharset;
-			accept view/accept;
-			action view/action;
-			name view/name;
-			id view/id"
-	metal:define-macro="form">
-
-    <div metal:define-slot="viewspace">
-      <metal:block define-macro="header">
-	<metal:block define-slot="header">
-	  <h1 i18n:translate=""
-	      tal:condition="view/label|nothing"
-	      tal:content="view/label|nothing"
-	      metal:define-slot="heading">Do something</h1>
-	  <div class="z-form-description" 
-	       tal:condition="view/description|nothing"
-	       tal:content="view/description|nothing"></div>
-	</metal:block>
-      </metal:block>
-
-      <div metal:define-slot="extra-info" tal:replace="nothing"></div>
-
-      <div metal:define-slot="main">
-	<div class="z-form-fieldset">
-	  <metal:block define-macro="widget-rows">
-	    <metal:block metal:define-slot="extra-top" />
-
-	    <tal:block tal:repeat="widget view/widgets/values">
-	      <div class="z-form-field" metal:define-macro="widget-row"
-		   tal:define="error widget/error|nothing"
-		   tal:attributes="class python:error and 'z-form-field error' or 'z-form-field'">
-		<label for="field.name" title="The widget's hint"
-		       tal:attributes="for widget/name;
-				       title widget/field/description"
-		       tal:content="widget/label">The Label</label>
-
-		<span class="z-form-fieldRequired" tal:condition="widget/required">&nbsp;</span>
-
-		<div tal:condition="error" tal:replace="structure error/render">
-		  The Error
-		</div>
-		<div class="z-form-help" tal:content="structure widget/field/description"></div>
-		<div tal:content="structure widget/render">
-		  <input type="text" style="width:100%"/>
-		</div>
-	      </div>
-	    </tal:block>
-	    <metal:block metal:define-slot="extra-bottom" />
-	  </metal:block>
-	</div>
-      </div>
-      <metal:block define-slot="above-buttons"></metal:block>
-    </div>
-
-    <metal:block define-slot="buttons">
-      <div class="z-form-controls" metal:define-macro="buttons">
-	<hr />
-	<span tal:condition="view/actions/values"
-	      metal:define-slot="bottom_buttons">
-	  <input tal:repeat="action view/actions/values"
-		 tal:replace="structure action/render" />
-	</span>
-	<metal:block define-slot="bottom-buttons"/>
-      </div>
-    </metal:block>
-  </form>
-</div>

Copied: z3ext.layoutform/tags/1.1.1/src/z3ext/layoutform/browser/form.pt (from rev 89354, z3ext.layoutform/trunk/src/z3ext/layoutform/browser/form.pt)
===================================================================
--- z3ext.layoutform/tags/1.1.1/src/z3ext/layoutform/browser/form.pt	                        (rev 0)
+++ z3ext.layoutform/tags/1.1.1/src/z3ext/layoutform/browser/form.pt	2008-08-04 21:02:10 UTC (rev 89355)
@@ -0,0 +1,71 @@
+<div class="z-form z-form-standard">
+  <form action="." method="post" enctype="multipart/form-data" 
+	tal:attributes="method view/method;
+			enctype view/enctype;
+			acceptCharset view/acceptCharset;
+			accept view/accept;
+			action view/action;
+			name view/name;
+			id view/id"
+	metal:define-macro="form">
+
+    <div metal:define-slot="viewspace">
+      <metal:block define-macro="header">
+	<metal:block define-slot="header">
+	  <h1 i18n:translate=""
+	      tal:condition="view/label|nothing"
+	      tal:content="view/label|nothing"
+	      metal:define-slot="heading">Do something</h1>
+	  <div class="z-form-description" 
+	       tal:condition="view/description|nothing"
+	       tal:content="view/description|nothing"></div>
+	</metal:block>
+      </metal:block>
+
+      <div metal:define-slot="extra-info" tal:replace="nothing"></div>
+
+      <div metal:define-slot="main">
+	<div class="z-form-fieldset">
+	  <metal:block define-macro="widget-rows">
+	    <metal:block metal:define-slot="extra-top" />
+
+	    <tal:block tal:repeat="widget view/widgets/values">
+	      <div class="z-form-field" metal:define-macro="widget-row"
+		   tal:define="error widget/error|nothing"
+		   tal:attributes="class python:error and 'z-form-field error' or 'z-form-field'">
+		<label for="widget.id" title="The widget's hint"
+		       tal:attributes="for widget/id;
+				       title widget/field/description"
+		       tal:content="widget/label">The Label</label>
+
+		<span class="z-form-fieldRequired" tal:condition="widget/required">&nbsp;</span>
+
+		<div tal:condition="error" tal:replace="structure error/render">
+		  The Error
+		</div>
+		<div class="z-form-help" tal:content="structure widget/field/description"></div>
+		<div tal:content="structure widget/render">
+		  <input type="text" style="width:100%"/>
+		</div>
+	      </div>
+	    </tal:block>
+	    <metal:block metal:define-slot="extra-bottom" />
+	  </metal:block>
+	</div>
+      </div>
+      <metal:block define-slot="above-buttons"></metal:block>
+    </div>
+
+    <metal:block define-slot="buttons">
+      <div class="z-form-controls" metal:define-macro="buttons">
+	<hr />
+	<span tal:condition="view/actions/values"
+	      metal:define-slot="bottom_buttons">
+	  <input tal:repeat="action view/actions/values"
+		 tal:replace="structure action/render" />
+	</span>
+	<metal:block define-slot="bottom-buttons"/>
+      </div>
+    </metal:block>
+  </form>
+</div>

Deleted: z3ext.layoutform/tags/1.1.1/src/z3ext/layoutform/browser/formadd.pt
===================================================================
--- z3ext.layoutform/trunk/src/z3ext/layoutform/browser/formadd.pt	2008-08-01 16:28:54 UTC (rev 89162)
+++ z3ext.layoutform/tags/1.1.1/src/z3ext/layoutform/browser/formadd.pt	2008-08-04 21:02:10 UTC (rev 89355)
@@ -1,25 +0,0 @@
-<div class="z-form z-form-add" i18n:domain="z3ext">
-  <metal:block metal:use-macro="macro:form">
-    <metal:block metal:fill-slot="buttons">
-      <div class="z-form-controls" metal:define-macro="buttons">
-	<hr />
-	<div class="z-form-field" tal:condition="view/nameAllowed|nothing">
-	  <label i18n:translate="">Content short name</label>
-	  <div class="z-form-help" i18n:translate="">
-	    Should not contain spaces, underscores or mixed case. 
-	    Short Name is part of the item's web address.
-	  </div>
-	  <div>
-	    <input type="text" name="add_input_name"
-		   tal:attributes="value request/add_input_name | nothing" />
-	  </div>
-	</div>
-
-	<span tal:condition="view/actions/values">
-	  <input tal:repeat="action view/actions/values"
-		 tal:replace="structure action/render" />
-	</span>
-      </div>
-    </metal:block>
-  </metal:block>
-</div>

Copied: z3ext.layoutform/tags/1.1.1/src/z3ext/layoutform/browser/formadd.pt (from rev 89354, z3ext.layoutform/trunk/src/z3ext/layoutform/browser/formadd.pt)
===================================================================
--- z3ext.layoutform/tags/1.1.1/src/z3ext/layoutform/browser/formadd.pt	                        (rev 0)
+++ z3ext.layoutform/tags/1.1.1/src/z3ext/layoutform/browser/formadd.pt	2008-08-04 21:02:10 UTC (rev 89355)
@@ -0,0 +1,25 @@
+<div class="z-form z-form-add" i18n:domain="z3ext">
+  <metal:block metal:use-macro="macro:form">
+    <metal:block metal:fill-slot="buttons">
+      <div class="z-form-controls" metal:define-macro="buttons">
+	<hr />
+	<div class="z-form-field" tal:condition="view/nameAllowed|nothing">
+	  <label i18n:translate="" for="add_input_name">Content short name</label>
+	  <div class="z-form-help" i18n:translate="">
+	    Should not contain spaces, underscores or mixed case. 
+	    Short Name is part of the item's web address.
+	  </div>
+	  <div>
+	    <input type="text" name="add_input_name"
+		   tal:attributes="value request/add_input_name | nothing" />
+	  </div>
+	</div>
+
+	<span tal:condition="view/actions/values">
+	  <input tal:repeat="action view/actions/values"
+		 tal:replace="structure action/render" />
+	</span>
+      </div>
+    </metal:block>
+  </metal:block>
+</div>



More information about the Checkins mailing list