redo some of the skinnability work I had checked in (reverted in cvs merge?); add checkbox for Akkana (saving output)
git-svn-id: svn://10.0.0.236/trunk@67718 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
dae7015bb1
commit
6ba4b06a20
@ -34,7 +34,7 @@
|
||||
|
||||
<script language="JavaScript">
|
||||
<![CDATA[
|
||||
_elementIDs = ["maintainTableStructure", "tableDeleteKey"];
|
||||
_elementIDs = ["maintainTableStructure", "tableDeleteKey", "preserveFormatting"];
|
||||
]]>
|
||||
</script>
|
||||
|
||||
@ -43,66 +43,122 @@
|
||||
<titledbox orient="vertical" autostretch="never">
|
||||
<title><text value="&tableEditing.label;"/></title>
|
||||
|
||||
<checkbox id="maintainTableStructure" value="&maintainTableStructure.label;" accesskey="&maintainStructure.accesskey;"
|
||||
pref="true" preftype="bool" prefstring="editor.maintain_table_structure"
|
||||
prefattribute="checked"/>
|
||||
<checkbox
|
||||
value = "&maintainTableStructure.label;"
|
||||
id = "maintainTableStructure"
|
||||
accesskey = "&maintainStructure.accesskey;"
|
||||
pref = "true"
|
||||
preftype = "bool"
|
||||
prefstring= "editor.table.maintain_structure"
|
||||
prefattribute="checked"
|
||||
/>
|
||||
|
||||
<separator/>
|
||||
|
||||
<box autostretch="never" valign="top">
|
||||
<text class="label" value="&pressingTheDeleteKey.label;" for="tableDeleteKey" />
|
||||
<radiogroup id="tableDeleteKey" orient="vertical" autostretch="never"
|
||||
pref="true" preftype="int" prefstring="editor.table_delete_key"
|
||||
prefattribute="data">
|
||||
<text class="label"
|
||||
value="&pressingTheDeleteKey.label;"
|
||||
for="tableDeleteKey"
|
||||
/>
|
||||
<radiogroup orient="vertical" autostretch="never"
|
||||
id = "tableDeleteKey"
|
||||
pref = "true"
|
||||
preftype = "int"
|
||||
prefstring="editor.table.delete_key"
|
||||
prefattribute="data">
|
||||
<radio data="0" value="&deleteCell.label;" accesskey="&deleteCell.accesskey;"/>
|
||||
<radio data="1" value="&deleteContent.label;" accesskey="&deleteContent.accesskey;" />
|
||||
</radiogroup>
|
||||
</box>
|
||||
|
||||
</titledbox>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- Take out Auto-Save; not supported at this time
|
||||
<titledbox orient="vertical">
|
||||
<html:div>
|
||||
<html:input name="autosave" type="checkbox" id="pref:0:int:editor.auto_save" />
|
||||
<html:label for="pref:0:int:editor.auto_save" accesskey="a" tabindex="0">
|
||||
&AutoSaveCheck.label;
|
||||
</html:label>
|
||||
<html:input name="time" type="text" size="3" value="5" id="pref:5:int:editor.auto_save_delay" />
|
||||
<html:label for="pref:5:int:editor.auto_save_delay">
|
||||
&minText;
|
||||
</html:label>
|
||||
</html:div>
|
||||
<titledbox orient="vertical">
|
||||
<title><text value="&saving;"/></title>
|
||||
<box align="horizontal" valign="middle">
|
||||
<checkbox
|
||||
pref = "true"
|
||||
preftype = "bool"
|
||||
prefstring = "editor.auto_save"
|
||||
value = "&AutoSaveCheck;"
|
||||
name = "autosave"
|
||||
/>
|
||||
<textfield
|
||||
name="time"
|
||||
type="text"
|
||||
size="3"
|
||||
value="5"
|
||||
pref="true"
|
||||
preftype="int"
|
||||
prefindex="5"
|
||||
prefstring="editor.auto_save_delay"
|
||||
/>
|
||||
<text value="&minText;" />
|
||||
</box>
|
||||
</titledbox>
|
||||
-->
|
||||
|
||||
<titledbox orient="vertical">
|
||||
<title><text value="&savingFiles.title;"/></title>
|
||||
<box align="horizontal" valign="middle">
|
||||
<checkbox
|
||||
value = "&preserveExistingFormatting;"
|
||||
id = "preserveFormatting"
|
||||
pref = "true"
|
||||
preftype = "bool"
|
||||
prefstring = "editor.prettyprint_html"
|
||||
prefattribute="checked"
|
||||
/>
|
||||
</box>
|
||||
</titledbox>
|
||||
|
||||
<!-- External Editors are not supported at this time
|
||||
<titledbox orient="vertical">
|
||||
<title><text value="&exterLegend.label;"/></title>
|
||||
<html:input name="htmlSourceEditorCheckbox" type="checkbox" id="pref:0:int:editor.use_html_editor" />
|
||||
<html:div>
|
||||
&htmlSource;
|
||||
</html:div>
|
||||
<html:div>
|
||||
<html:input name="&chooseButton.label;" type="text" id="pref:string:editor.html_editor" />
|
||||
<titledbutton class="dialog push" name="" value="&chooseButton.label;" />
|
||||
</html:div>
|
||||
<html:input name="htmlImageEditorCheckbox" type="checkbox" id="pref:0:int:editor.use_image_editor" />
|
||||
<html:div>
|
||||
&img;
|
||||
</html:div>
|
||||
<html:div>
|
||||
<html:input name="chooseButton.label" type="text" id="pref:string:editor.image_editor" />
|
||||
<titledbutton class="dialog push" name="" value="&chooseButton.label;" />
|
||||
</html:div>
|
||||
<box>
|
||||
<checkbox
|
||||
name = "htmlSourceEditorCheckbox"
|
||||
value = "&htmlSource;"
|
||||
pref = "true"
|
||||
preftype = "int"
|
||||
prefindex = "0"
|
||||
prefstring = "editor.use_html_editor"
|
||||
/>
|
||||
<textfield
|
||||
name = "&chooseButton.label;"
|
||||
pref = "true"
|
||||
preftype = "string"
|
||||
prefstring = "editor.html_editor"
|
||||
/>
|
||||
<button
|
||||
class = "dialog"
|
||||
name = ""
|
||||
value = "&chooseButton.label;"
|
||||
/>
|
||||
</box>
|
||||
|
||||
</titledbox>
|
||||
<box>
|
||||
<checkbox
|
||||
name = "htmlImageEditorCheckbox"
|
||||
value = "&imageeditor;"
|
||||
pref = "true"
|
||||
preftype = "int"
|
||||
prefindex = "0"
|
||||
prefstring ="editor.use_image_editor"
|
||||
/>
|
||||
|
||||
<textfield
|
||||
name="chooseButton.label"
|
||||
pref = "true"
|
||||
preftype = "string"
|
||||
prefstring = "editor.image_editor"
|
||||
/>
|
||||
<button class="dialog" value="&chooseButton.label;" />
|
||||
</box>
|
||||
|
||||
</titledbox>
|
||||
-->
|
||||
|
||||
|
||||
|
||||
</window>
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user