mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 09:57:32 +09:00
Issue #1258 - Part 1: Import mailnews, ldap, and mork from comm-esr52.9.1
This commit is contained in:
parent
23e0d82436
commit
e400f4130a
1564 changed files with 510348 additions and 0 deletions
91
mailnews/base/content/virtualFolderListDialog.xul
Normal file
91
mailnews/base/content/virtualFolderListDialog.xul
Normal file
|
|
@ -0,0 +1,91 @@
|
|||
<?xml version="1.0"?>
|
||||
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
||||
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
- file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
-->
|
||||
|
||||
<?xml-stylesheet href="chrome://messenger/skin/virtualFolderListDialog.css" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window SYSTEM "chrome://messenger/locale/virtualFolderListDialog.dtd">
|
||||
|
||||
<dialog id="searchFolderWindow"
|
||||
xmlns:NC="http://home.netscape.com/NC-rdf#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||||
title="&virtualFolderListTitle.title;"
|
||||
style="width: 27em; height: 25em;"
|
||||
persist="width height screenX screenY"
|
||||
onload="onLoad();"
|
||||
onunload="onUnLoad();"
|
||||
ondialogaccept="return onOK();"
|
||||
ondialogcancel="return onCancel();">
|
||||
|
||||
<script type="application/javascript" src="chrome://messenger/content/virtualFolderListDialog.js"/>
|
||||
|
||||
<label control="folderPickerTree">&virtualFolderDesc.label;</label>
|
||||
|
||||
<tree id="folderPickerTree"
|
||||
treelines="true"
|
||||
flex="1"
|
||||
hidecolumnpicker="true"
|
||||
seltype="multiple"
|
||||
disableKeyNavigation="true"
|
||||
datasources="rdf:msgaccountmanager rdf:mailnewsfolders"
|
||||
ref="msgaccounts:/"
|
||||
flags="dont-build-content"
|
||||
onkeypress="onSelectFolderTreeKeyPress(event);"
|
||||
onclick="selectFolderTreeOnClick(event);">
|
||||
<template>
|
||||
<rule>
|
||||
<conditions>
|
||||
<content uri="?container"/>
|
||||
<member container="?container" child="?member"/>
|
||||
<triple subject="?member"
|
||||
predicate="http://home.netscape.com/NC-rdf#Virtual"
|
||||
object="false"/>
|
||||
<triple subject="?member"
|
||||
predicate="http://home.netscape.com/NC-rdf#IsDeferred"
|
||||
object="false"/>
|
||||
</conditions>
|
||||
|
||||
<bindings>
|
||||
<binding subject="?member"
|
||||
predicate="http://home.netscape.com/NC-rdf#FolderTreeName"
|
||||
object="?folderTreeName"/>
|
||||
<binding subject="?member"
|
||||
predicate="http://home.netscape.com/NC-rdf#FolderTreeName?sort=true"
|
||||
object="?folderTreeNameSort"/>
|
||||
<binding subject="?member"
|
||||
predicate="http://home.netscape.com/NC-rdf#ServerType"
|
||||
object="?serverType"/>
|
||||
<binding subject="?member"
|
||||
predicate="http://home.netscape.com/NC-rdf#SpecialFolder"
|
||||
object="?specialFolder"/>
|
||||
<binding subject="?member"
|
||||
predicate="http://home.netscape.com/NC-rdf#HasUnreadMessages"
|
||||
object="?hasUnreadMessages"/>
|
||||
<binding subject="?member"
|
||||
predicate="http://home.netscape.com/NC-rdf#InVFEditSearchScope"
|
||||
object="?inVFEditSearchScope"/>
|
||||
</bindings>
|
||||
|
||||
<action>
|
||||
<treechildren>
|
||||
<treeitem uri="?member">
|
||||
<treerow>
|
||||
<treecell label="?folderTreeName" properties="ServerType-?ServerType specialFolder-?specialFolder hasUnreadMessages-?hasUnreadMessages"/>
|
||||
<treecell properties="inVFEditSearchScope-?inVFEditSearchScope"/>/>
|
||||
</treerow>
|
||||
</treeitem>
|
||||
</treechildren>
|
||||
</action>
|
||||
</rule>
|
||||
</template>
|
||||
|
||||
<treecols>
|
||||
<treecol id="folderNameCol" sort="?folderTreeNameSort" sortActive="true" sortDirection="ascending"
|
||||
flex="10" primary="true" hideheader="true" crop="center"/>
|
||||
<treecol id="selectedColumn" hideheader="true" flex="1"/>
|
||||
</treecols>
|
||||
</tree>
|
||||
</dialog>
|
||||
Loading…
Add table
Add a link
Reference in a new issue