browser/components/places/content/moveBookmarks.xul

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 <?xml version="1.0"?>
     3 <!-- This Source Code Form is subject to the terms of the Mozilla Public
     4    - License, v. 2.0. If a copy of the MPL was not distributed with this
     5    - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
     7 <?xml-stylesheet href="chrome://global/skin/"?>
     8 <?xml-stylesheet href="chrome://browser/skin/places/places.css"?>
     9 <?xml-stylesheet href="chrome://browser/content/places/places.css"?>
    11 <?xul-overlay href="chrome://browser/content/places/placesOverlay.xul"?>
    13 <!DOCTYPE window [
    14   <!ENTITY % moveBookmarksDTD SYSTEM "chrome://browser/locale/places/moveBookmarks.dtd">
    15   %moveBookmarksDTD;
    16 ]>
    18 <dialog id="moveBookmarkDialog"
    19         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
    20         ondialogaccept="return gMoveBookmarksDialog.onOK(event);"
    21         title="&window.title;"
    22         onload="gMoveBookmarksDialog.init();"
    23         style="&window.style;"
    24         screenX="24"
    25         screenY="24"
    26         persist="screenX screenY width height">
    28   <script type="application/javascript"
    29           src="chrome://browser/content/places/moveBookmarks.js"/>
    31   <hbox flex="1">
    32     <label id="movetolabel" value="&moveTo.label;" control="foldersTree"/>
    33     <hbox flex="1">
    34       <tree id="foldersTree"
    35             class="placesTree"
    36             flex="1"
    37             type="places"
    38             seltype="single"
    39             hidecolumnpicker="true">
    40         <treecols>
    41           <treecol id="title" flex="1" primary="true" hideheader="true"/>
    42         </treecols>
    43         <treechildren id="placesListChildren" view="placesList" flex="1"/>
    44       </tree>
    45       <vbox>
    46         <button id="newFolderButton"
    47                 label="&newFolderButton.label;"
    48                 accesskey="&newFolderButton.accesskey;"
    49                 oncommand="gMoveBookmarksDialog.newFolder();"/>
    50       </vbox>
    51     </hbox>
    52   </hbox>
    53 </dialog>

mercurial