save.xml
Summary
A "Save As" dialog for Mozile.
Version: 0.7
Author: James A. Overton
<?xml version="1.0" encoding="UTF-8"?>
<!--
-->
<xul:vbox id="MozileSaveInterface" class="mozileInterface"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:html="http://www.w3.org/1999/xhtml"
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<div class="header">
<xul:label value="Mozile Saving" />
</div>
<xul:groupbox>
<xul:hbox width="100%" align="center">
<xul:label class="wide" value="Save Options:"/>
<select id="mozileSavePresetList" style="width: 200px" onchange="mozile.getSaveInterface().restore()">
<option value="default">Page Default</option>
<option value="custom">Custom</option>
</select>
</xul:hbox>
</xul:groupbox>
<xul:groupbox>
<xul:hbox width="100%" align="center">
<xul:label class="wide" value="Save Method:"/>
<select id="mozileSaveMethodList" style="width: 200px" onchange="mozile.getSaveInterface().changed()">
</select>
</xul:hbox>
<xul:hbox id="mozileSaveURLBox" align="center" collapsed="true">
<xul:label class="wide" value="Save to URL:" control="mozileSaveToURL"/>
<input type="text" id="mozileSaveToURL" onchange="mozile.getSaveInterface().changed()" style="width: 200px" />
<!-- type="autocomplete" autocompletesearch="history" -->
</xul:hbox>
</xul:groupbox>
<xul:groupbox>
<xul:hbox width="100%" align="center">
<xul:label class="wide" value="Save Content:"/>
<select id="mozileSaveContentList" style="width: 200px" onchange="mozile.getSaveInterface().changed()">
<option value="document">Entire Document</option>
<option value="editor">Current Editable Area</option>
</select>
</xul:hbox>
<xul:hbox width="100%" align="center">
<xul:label class="wide" value="Save Format:"/>
<select id="mozileSaveFormatList" style="width: 200px" onchange="mozile.getSaveInterface().changed()">
<option value="HTML">HTML</option>
<option value="XHTML">XHTML</option>
<option value="XML">XML</option>
</select>
</xul:hbox>
</xul:groupbox>
<div class="buttons">
<xul:button label="Cancel" oncommand="mozile.getSaveInterface().hide()"/>
<xul:button label="Save" oncommand="mozile.getSaveInterface().done()" />
</div>
</xul:vbox>
Documentation generated by
JSDoc on Wed Mar 15 11:59:24 2006