[CMF-checkins] CVS: CMF/CMFDecor/skins/zpt_content - document_edit_form.pt:1.8 folder_edit_form.pt:1.5 full_metadata_edit_form.pt:1.3 metadata_edit_form.pt:1.6 newsitem_edit_form.pt:1.4

Andrew Sawyers andrew@zope.com
Mon, 26 Nov 2001 15:13:07 -0500


Update of /cvs-repository/CMF/CMFDecor/skins/zpt_content
In directory cvs.zope.org:/tmp/cvs-serv9817/zpt_content

Modified Files:
	document_edit_form.pt folder_edit_form.pt 
	full_metadata_edit_form.pt metadata_edit_form.pt 
	newsitem_edit_form.pt 
Log Message:

*Added wrap="soft" to all remaining textarea form elements --
Tracker Issue 336


=== CMF/CMFDecor/skins/zpt_content/document_edit_form.pt 1.7 => 1.8 ===
   <th class="TextField"> Edit </th>
   <td class="TextField">
-   <textarea name="text:text" rows="20" cols="80"
+   <textarea name="text:text" rows="20" cols="80" wrap="soft"
                     tal:content="here/EditableBody"></textarea>
   </td>
  </tr>


=== CMF/CMFDecor/skins/zpt_content/folder_edit_form.pt 1.4 => 1.5 ===
   <td colspan="3">
    <textarea name="description:text" rows="5"
-             cols="65"
+             cols="65" wrap="soft"
 			 tal:content="here/description">
    </textarea>
   </td>


=== CMF/CMFDecor/skins/zpt_content/full_metadata_edit_form.pt 1.2 => 1.3 ===
   <td colspan="3">
    <textarea name="description:text" rows="5"
-             cols="65"
+             cols="65" wrap="soft"
 			 tal:content="here/Description"></textarea>
   </td>
  </tr>
@@ -46,7 +46,7 @@
   <th align="right"> Subject </th>
   <td>
    <textarea name="subject:lines" rows="3"
-               cols="20"
+               cols="20" wrap="soft"
 			   tal:define="lines here/subjectsList"><span tal:repeat="line lines" tal:replace="line"></span></textarea>
  <br> 
    <select name="subject:list" multiple>
@@ -61,7 +61,7 @@
   <th align="right"> Contributors </th>
   <td>
    <textarea name="contributors:lines" rows="5"
-             cols="30"
+             cols="30" wrap="soft"
 			 tal:define="items here/Contributors"
 			 tal:repeat="item items"
 			 tal:content="item"></textarea>


=== CMF/CMFDecor/skins/zpt_content/metadata_edit_form.pt 1.5 => 1.6 ===
   <td colspan="3">
    <textarea name="description:text" rows="5"
-             cols="65"
+             cols="65" wrap="soft"
 			 tal:content="here/Description"></textarea>
   </td>
 
@@ -60,7 +60,7 @@
        <th align="right"> Subject </th>
   <td tal:define="subj_lines python: modules['string'].join(
                                          here.subjectsList(), '\n' )">
-     <textarea name="subject:lines" rows="3" cols="20"
+     <textarea name="subject:lines" rows="3" cols="20" wrap="soft"
 	           tal:content="subj_lines"></textarea>
  <br> 
    <select name="subject:list" multiple>


=== CMF/CMFDecor/skins/zpt_content/newsitem_edit_form.pt 1.3 => 1.4 ===
   <th class="TextField"> Lead-in </th>
   <td class="TextField">
-   <textarea name="description:text" rows="10"
+   <textarea name="description:text" rows="10" wrap="soft"  
              cols="65" tal:content="here/description"></textarea>
   </td>
  </tr>
@@ -31,7 +31,8 @@
   <th class="TextField"> Body
   </th>
   <td class="TextField">
-   <textarea name="text:text" rows="20" cols="65" tal:content="here/EditableBody"></textarea>
+   <textarea name="text:text" rows="20" cols="65" wrap="soft"
+             tal:content="here/EditableBody"></textarea>
   </td>
  </tr>
  <tr>