mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-10 01:40:17 +01:00
128 lines
5.0 KiB
XML
128 lines
5.0 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<?xml-stylesheet href="chrome://global/skin/"?>
|
|
<?xml-stylesheet href="chrome://browser/skin/places/bookmarkProperties.css"?>
|
|
<?xml-stylesheet href="chrome://browser/skin/places/places.css"?>
|
|
<?xml-stylesheet href="chrome://browser/content/places/places.css"?>
|
|
|
|
|
|
<!DOCTYPE window [
|
|
<!ENTITY % propertiesDTD SYSTEM "chrome://browser/locale/places/bookmarkProperties.dtd">
|
|
%propertiesDTD;
|
|
<!ENTITY % placesDTD SYSTEM "chrome://browser/locale/places/places.dtd">
|
|
%placesDTD;
|
|
]>
|
|
|
|
<dialog id="bookmarkproperties" title="&bookmark.property.panel.title;"
|
|
buttons="accept, cancel, extra1"
|
|
buttonlabelextra1="&cmd.delete_bookmark.label;"
|
|
ondialogaccept="BookmarkPropertiesPanel.dialogDone();"
|
|
ondialogextra1="BookmarkPropertiesPanel.dialogDeleteBookmark();"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
onload="BookmarkPropertiesPanel.init(window, window.arguments[0], window.arguments[1], window.arguments[2]);">
|
|
|
|
<stringbundleset id="stringbundleset">
|
|
<stringbundle id="stringBundle"
|
|
src="chrome://browser/locale/places/bookmarkProperties.properties"/>
|
|
</stringbundleset>
|
|
|
|
<script type="application/x-javascript"
|
|
src="chrome://browser/content/places/bookmarkProperties.js"/>
|
|
|
|
<vbox id="placesInfoOptions" flex="1">
|
|
<grid id="placesInfoGrid" flex="1">
|
|
<columns>
|
|
<column flex="1" align="end" />
|
|
<column flex="100" align="start" />
|
|
</columns>
|
|
<rows id="placesInfoRows">
|
|
<row id="titleRow">
|
|
<vbox align="end">
|
|
<hbox align="center" flex="1">
|
|
<label value="&bookmark.property.title;" align="middle"/>
|
|
</hbox>
|
|
</vbox>
|
|
<textbox id="editTitleBox" value=""/>
|
|
</row>
|
|
<row id="locationRow">
|
|
<vbox align="end">
|
|
<hbox align="center" flex="1">
|
|
<label value="&bookmark.property.location;" align="middle"/>
|
|
</hbox>
|
|
</vbox>
|
|
<textbox id="editURLBar" size="10"
|
|
onchange="BookmarkPropertiesPanel.validateChanges()"/>
|
|
</row>
|
|
<row id="livemarkFeedLocationRow">
|
|
<vbox align="end">
|
|
<hbox align="center" flex="1">
|
|
<label value="&livemark.property.feed_uri;" align="middle"/>
|
|
</hbox>
|
|
</vbox>
|
|
<textbox id="editLivemarkFeedLocationBox"
|
|
onchange="BookmarkPropertiesPanel.validateChanges()"/>
|
|
</row>
|
|
<row id="livemarkSiteLocationRow">
|
|
<vbox align="end">
|
|
<hbox align="center" flex="1">
|
|
<label value="&livemark.property.site_uri;" align="middle"/>
|
|
</hbox>
|
|
</vbox>
|
|
<textbox id="editLivemarkSiteLocationBox"
|
|
onchange="BookmarkPropertiesPanel.validateChanges()"/>
|
|
</row>
|
|
<row id="shortcutRow">
|
|
<vbox align="end">
|
|
<hbox align="center" flex="1">
|
|
<label value="&bookmark.property.shortcut;" align="middle"/>
|
|
</hbox>
|
|
</vbox>
|
|
<textbox id="editShortcutBox" value=""/>
|
|
</row>
|
|
<row id="microsummaryRow">
|
|
<vbox align="end">
|
|
<hbox align="center" flex="1">
|
|
<label value="&bookmark.property.microsummary;" align="middle"/>
|
|
</hbox>
|
|
</vbox>
|
|
<menulist id="microsummaryMenuList">
|
|
<menupopup id="microsummaryMenuPopup">
|
|
<menuitem label="&bookmark.property.microsummary.none;"
|
|
selected="true"/>
|
|
</menupopup>
|
|
</menulist>
|
|
</row>
|
|
<row id="folderRow" flex="1" style="min-height: 100px;">
|
|
<vbox align="end">
|
|
<hbox align="start" flex="1">
|
|
<label value="&bookmark.property.parents;"/>
|
|
</hbox>
|
|
</vbox>
|
|
<vbox>
|
|
<tree id="folderTree"
|
|
class="placesTree"
|
|
flex="1"
|
|
type="places"
|
|
place="place:&folder=1&group=3&excludeItems=1"
|
|
hidecolumnpicker="true"
|
|
seltype="multiple"
|
|
onselect="BookmarkPropertiesPanel.validateChanges()">
|
|
<treecols>
|
|
<treecol id="title"
|
|
flex="1"
|
|
primary="true"
|
|
hideheader="true"/>
|
|
</treecols>
|
|
<treechildren id="placesListChildren"
|
|
view="placesList"
|
|
flex="1"/>
|
|
</tree>
|
|
</vbox>
|
|
</row>
|
|
</rows>
|
|
</grid>
|
|
</vbox>
|
|
</dialog>
|
|
|
|
|