[CMF-checkins] CVS: CMF/CMFDefault/dtml - zmi_editDocument.dtml:1.2
Tres Seaver
tseaver@zope.com
Mon, 1 Apr 2002 17:19:37 -0500
Update of /cvs-repository/CMF/CMFDefault/dtml
In directory cvs.zope.org:/tmp/cvs-serv14667/CMFDefault/dtml
Modified Files:
zmi_editDocument.dtml
Log Message:
- Make 'plain text' option available in ZMI.
=== CMF/CMFDefault/dtml/zmi_editDocument.dtml 1.1 => 1.2 ===
<td>
<input type="radio" name="text_format" value="structured-text"
- <dtml-if "text_format=='structured-text'">checked</dtml-if>
- id="cb_structuredtext" />
+ id="cb_structuredtext"
+ <dtml-if "text_format=='structured-text'">checked</dtml-if> />
<label for="cb_structuredtext">structured-text</label>
<input type="radio" name="text_format" value="html"
- <dtml-if "text_format=='html'">checked</dtml-if>
- id="cb_html" />
+ id="cb_html"
+ <dtml-if "text_format=='html'">checked</dtml-if> />
<label for="cb_html">html</label>
+ <input type="radio" name="text_format" value="plain"
+ id="cb_plain"
+ <dtml-if "text_format=='plain'">checked</dtml-if> />
+ <label for="cb_plain">plain text</label>
</td>
</tr>