Changeset 2374 for FCKeditor/trunk
- Timestamp:
- 08/25/08 22:03:17 (5 years ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 5 edited
-
_whatsnew.html (modified) (1 diff)
-
editor/dialog/fck_docprops.html (modified) (1 diff)
-
editor/dialog/fck_select.html (modified) (3 diffs)
-
editor/dialog/fck_table.html (modified) (8 diffs)
-
editor/dialog/fck_tablecell.html (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/_whatsnew.html
r2373 r2374 53 53 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2472">#2472</a>] Splitting a TH 54 54 will create a two TH, not a TH and a TD.</li> 55 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1891">#1891</a>] Removed 56 unnecessary name attributes in dialogs. </li> 55 57 </ul> 56 58 <p> -
FCKeditor/trunk/editor/dialog/fck_docprops.html
r1565 r2374 457 457 <td nowrap="nowrap"> 458 458 <span fcklang="DlgDocDocType">Document Type Heading</span><br /> 459 <select id="selDocType" name="selDocType"onchange="CheckOther( this, 'txtDocType' );">459 <select id="selDocType" onchange="CheckOther( this, 'txtDocType' );"> 460 460 <option value="" selected="selected"></option> 461 461 <option value='<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">'>HTML -
FCKeditor/trunk/editor/dialog/fck_select.html
r1568 r2374 133 133 <td nowrap><span fckLang="DlgSelectSize">Size</span> </td> 134 134 <td nowrap><input id="txtLines" type="text" size="2" value=""> <span fckLang="DlgSelectLines">lines</span></td> 135 <td nowrap align="right"><input id="chkMultiple" name="chkMultiple"type="checkbox"><label for="chkMultiple" fckLang="DlgSelectChkMulti">Allow135 <td nowrap align="right"><input id="chkMultiple" type="checkbox"><label for="chkMultiple" fckLang="DlgSelectChkMulti">Allow 136 136 multiple selections</label></td> 137 137 </tr> … … 144 144 <tr> 145 145 <td width="50%"><span fckLang="DlgSelectOpText">Text</span><br> 146 <input id="txtText" style="WIDTH: 100%" type="text" name="txtText">146 <input id="txtText" style="WIDTH: 100%" type="text"> 147 147 </td> 148 148 <td width="50%"><span fckLang="DlgSelectOpValue">Value</span><br> 149 <input id="txtValue" style="WIDTH: 100%" type="text" name="txtValue">149 <input id="txtValue" style="WIDTH: 100%" type="text"> 150 150 </td> 151 151 <td vAlign="bottom"><input onclick="Add();" type="button" fckLang="DlgSelectBtnAdd" value="Add"></td> … … 154 154 <tr> 155 155 <td rowSpan="2"><select id="cmbText" style="WIDTH: 100%" onchange="GetE('cmbValue').selectedIndex = this.selectedIndex;Select(this);" 156 size="5" name="cmbText"></select>156 size="5"></select> 157 157 </td> 158 158 <td rowSpan="2"><select id="cmbValue" style="WIDTH: 100%" onchange="GetE('cmbText').selectedIndex = this.selectedIndex;Select(this);" 159 size="5" name="cmbValue"></select>159 size="5"></select> 160 160 </td> 161 161 <td vAlign="top" colSpan="2"> -
FCKeditor/trunk/editor/dialog/fck_table.html
r2362 r2374 325 325 <span fcklang="DlgTableRows">Rows</span>:</td> 326 326 <td> 327 <input id="txtRows" type="text" maxlength="3" size="2" value="3" name="txtRows"327 <input id="txtRows" type="text" maxlength="3" size="2" value="3" 328 328 onkeypress="return IsDigit(event);" /></td> 329 329 </tr> … … 332 332 <span fcklang="DlgTableColumns">Columns</span>:</td> 333 333 <td> 334 <input id="txtColumns" type="text" maxlength="2" size="2" value="2" name="txtColumns"334 <input id="txtColumns" type="text" maxlength="2" size="2" value="2" 335 335 onkeypress="return IsDigit(event);" /></td> 336 336 </tr> … … 350 350 <span fcklang="DlgTableBorder">Border size</span>:</td> 351 351 <td> 352 <input id="txtBorder" type="text" maxlength="2" size="2" value="1" name="txtBorder"352 <input id="txtBorder" type="text" maxlength="2" size="2" value="1" 353 353 onkeypress="return IsDigit(event);" /></td> 354 354 </tr> … … 357 357 <span fcklang="DlgTableAlign">Alignment</span>:</td> 358 358 <td> 359 <select id="selAlignment" name="selAlignment">359 <select id="selAlignment"> 360 360 <option fcklang="DlgTableAlignNotSet" value="" selected="selected"><Not set></option> 361 361 <option fcklang="DlgTableAlignLeft" value="left">Left</option> … … 374 374 <span fcklang="DlgTableWidth">Width</span>:</td> 375 375 <td> 376 <input id="txtWidth" type="text" maxlength="4" size="3" value="200" name="txtWidth"377 onkeypress="return IsDigit(event);" /></td> 378 <td> 379 <select id="selWidthType" name="selWidthType">376 <input id="txtWidth" type="text" maxlength="4" size="3" value="200" 377 onkeypress="return IsDigit(event);" /></td> 378 <td> 379 <select id="selWidthType"> 380 380 <option fcklang="DlgTableWidthPx" value="pixels" selected="selected">pixels</option> 381 381 <option fcklang="DlgTableWidthPc" value="percent">percent</option> … … 386 386 <span fcklang="DlgTableHeight">Height</span>:</td> 387 387 <td> 388 <input id="txtHeight" type="text" maxlength="4" size="3" name="txtHeight"onkeypress="return IsDigit(event);" /></td>388 <input id="txtHeight" type="text" maxlength="4" size="3" onkeypress="return IsDigit(event);" /></td> 389 389 <td> 390 390 <span fcklang="DlgTableWidthPx">pixels</span></td> … … 397 397 <span fcklang="DlgTableCellSpace">Cell spacing</span>:</td> 398 398 <td> 399 <input id="txtCellSpacing" type="text" maxlength="2" size="2" value="1" name="txtCellSpacing"399 <input id="txtCellSpacing" type="text" maxlength="2" size="2" value="1" 400 400 onkeypress="return IsDigit(event);" /></td> 401 401 <td> … … 406 406 <span fcklang="DlgTableCellPad">Cell padding</span>:</td> 407 407 <td> 408 <input id="txtCellPadding" type="text" maxlength="2" size="2" value="1" name="txtCellPadding"408 <input id="txtCellPadding" type="text" maxlength="2" size="2" value="1" 409 409 onkeypress="return IsDigit(event);" /></td> 410 410 <td> -
FCKeditor/trunk/editor/dialog/fck_tablecell.html
r2363 r2374 156 156 <td> 157 157 <input onkeypress="return IsDigit(event);" id="txtWidth" type="text" maxlength="4" 158 size="3" name="txtWidth" /> <select id="selWidthType" name="selWidthType">158 size="3" /> <select id="selWidthType"> 159 159 <option fcklang="DlgCellWidthPx" value="pixels" selected="selected">pixels</option> 160 160 <option fcklang="DlgCellWidthPc" value="percent">percent</option> … … 165 165 <span fcklang="DlgCellHeight">Height</span>:</td> 166 166 <td> 167 <input id="txtHeight" type="text" maxlength="4" size="3" name="txtHeight"onkeypress="return IsDigit(event);" /> <span167 <input id="txtHeight" type="text" maxlength="4" size="3" onkeypress="return IsDigit(event);" /> <span 168 168 fcklang="DlgCellWidthPx">pixels</span></td> 169 169 </tr> … … 178 178 <span fcklang="DlgCellWordWrap">Word Wrap</span>:</td> 179 179 <td> 180 <select id="selWordWrap" name="selAlignment">180 <select id="selWordWrap"> 181 181 <option fcklang="DlgCellWordWrapYes" value="true" selected="selected">Yes</option> 182 182 <option fcklang="DlgCellWordWrapNo" value="false">No</option> … … 193 193 <span fcklang="DlgCellHorAlign">Horizontal Alignment</span>:</td> 194 194 <td> 195 <select id="selHAlign" name="selAlignment">195 <select id="selHAlign"> 196 196 <option fcklang="DlgCellHorAlignNotSet" value="" selected><Not set></option> 197 197 <option fcklang="DlgCellHorAlignLeft" value="left">Left</option> … … 204 204 <span fcklang="DlgCellVerAlign">Vertical Alignment</span>:</td> 205 205 <td> 206 <select id="selVAlign" name="selAlignment">206 <select id="selVAlign"> 207 207 <option fcklang="DlgCellVerAlignNotSet" value="" selected><Not set></option> 208 208 <option fcklang="DlgCellVerAlignTop" value="top">Top</option> … … 241 241 242 242 <input onkeypress="return IsDigit(event);" id="txtRowSpan" type="text" maxlength="3" size="2" 243 name="txtRows"></td>243 ></td> 244 244 <td> 245 245 </td> … … 251 251 252 252 <input onkeypress="return IsDigit(event);" id="txtCollSpan" type="text" maxlength="2" 253 size="2" name="txtColumns"></td>253 size="2"></td> 254 254 <td> 255 255 </td> … … 267 267 <span fcklang="DlgCellBackColor">Background Color</span>:</td> 268 268 <td> 269 <input id="txtBackColor" type="text" size="8" name="txtCellSpacing"></td>269 <input id="txtBackColor" type="text" size="8" /></td> 270 270 <td> 271 271 … … 276 276 <span fcklang="DlgCellBorderColor">Border Color</span>:</td> 277 277 <td> 278 <input id="txtBorderColor" type="text" size="8" name="txtCellPadding"/></td>278 <input id="txtBorderColor" type="text" size="8" /></td> 279 279 <td> 280 280
Note: See TracChangeset
for help on using the changeset viewer.
