⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 feed-properties.xul

📁 现在很火的邮件客户端软件thunderbird的源码
💻 XUL
字号:
<?xml version="1.0"?># -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-# ***** BEGIN LICENSE BLOCK *****# Version: MPL 1.1/GPL 2.0/LGPL 2.1## The contents of this file are subject to the Mozilla Public License Version# 1.1 (the "License"); you may not use this file except in compliance with# the License. You may obtain a copy of the License at# http://www.mozilla.org/MPL/## Software distributed under the License is distributed on an "AS IS" basis,# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License# for the specific language governing rights and limitations under the# License.## The Original Code is Thunderbird RSS Feed Properties UI## The Initial Developer of the Original Code is# The Mozilla Foundation.# Portions created by the Initial Developer are Copyright (C) 2005# the Initial Developer. All Rights Reserved.## Contributor(s):#  Scott MacGregor <mscott@mozilla.org>## Alternatively, the contents of this file may be used under the terms of# either the GNU General Public License Version 2 or later (the "GPL"), or# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),# in which case the provisions of the GPL or the LGPL are applicable instead# of those above. If you wish to allow use of your version of this file only# under the terms of either the GPL or the LGPL, and not to allow others to# use your version of this file under the terms of the MPL, indicate your# decision by deleting the provisions above and replace them with the notice# and other provisions required by the GPL or the LGPL. If you do not delete# the provisions above, a recipient may use your version of this file under# the terms of any one of the MPL, the GPL or the LGPL.## ***** END LICENSE BLOCK ******   <?xml-stylesheet href="chrome://messenger/skin/" type="text/css"?><!DOCTYPE dialog SYSTEM "chrome://messenger-newsblog/locale/feed-properties.dtd"><dialog id="feedPropertyDialog"  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"  xmlns:nc="http://home.netscape.com/NC-rdf#"  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"  title="&window.title;"#ifdef XP_MACOSX  style="width: 40em;"#else  style="width: 33em;"#endif  buttons="accept,cancel"  onload="onLoad();"  ondialogaccept="return onOk();">  <script type="application/x-javascript" src="feed-properties.js"/>  <script type="application/x-javascript" src="chrome://messenger/content/widgetglue.js"/>  <script type="application/x-javascript" src="chrome://global/content/globalOverlay.js"/>  <popup id="copyUrlPopup" popupanchor="bottomleft">    <menuitem label="&copyLinkCmd.label;" accesskey="&copyLinkCmd.accesskey;"              oncommand="CopyWebsiteAddress(document.popupNode)"/>  </popup>  <popup id="pasteUrlPopup" popupanchor="bottomleft">    <menuitem label="&pasteLinkCmd.label;" accesskey="&pasteLinkCmd.accesskey;"              oncommand="goDoCommand('cmd_paste')"/>  </popup>  <grid flex="1">    <columns>      <column/>      <column  flex="1"/>    </columns>    <rows>         <row>        <label value="&feedLocation.label;" accesskey="&feedLocation.accesskey;" control="feedLocation"/>        <textbox id="feedLocation"/>      </row>      <row>        <separator class="thin"/>      </row>      <row>        <label value="&feedFolder.label;" accesskey="&feedFolder.accesskey;" control="selectFolder"/>        <menulist id="selectFolder"              containment="http://home.netscape.com/NC-rdf#child"              sortResource="http://home.netscape.com/NC-rdf#FolderTreeName"              sortDirection="ascending"              datasources="rdf:msgaccountmanager rdf:mailnewsfolders"              ref="...">            <menupopup>              <menuitem  id="rssAccountMenuItem"/>              <menuseparator/>            </menupopup>                           <template>                            <!-- cheat and use the CanRename property to make sure we don't list the Trash folder as a possible feed folder -->              <rule nc:CanFileMessages="true" iscontainer="true" isempty="false" nc:CanRename="true">                <menupopup>                  <menu uri="..."                        class="folderMenuItem menu-iconic"                        SpecialFolder="rdf:http://home.netscape.com/NC-rdf#SpecialFolder"                        BiffState="rdf:http://home.netscape.com/NC-rdf#BiffState"                        IsServer="rdf:http://home.netscape.com/NC-rdf#IsServer"                        IsSecure="rdf:http://home.netscape.com/NC-rdf#IsSecure"                        ServerType="rdf:http://home.netscape.com/NC-rdf#ServerType"                        label="rdf:http://home.netscape.com/NC-rdf#Name">			              <menupopup class="menulist-menupopup">                      <menuitem label="&choosethisfolder.label;"                                oncommand="PickedMsgFolder(event.target.parentNode.parentNode,'selectFolder')"/>                      <menuseparator/>                    </menupopup>                  </menu>                </menupopup>              </rule>              <rule nc:CanFileMessages="true" nc:CanRename="true">                <menupopup>                     <menuitem uri="..." value="..."                        class="folderMenuItem menuitem-iconic"                      oncommand="PickedMsgFolder(event.target,'selectFolder')"                      SpecialFolder="rdf:http://home.netscape.com/NC-rdf#SpecialFolder"                      BiffState="rdf:http://home.netscape.com/NC-rdf#BiffState"                      IsServer="rdf:http://home.netscape.com/NC-rdf#IsServer"                      IsSecure="rdf:http://home.netscape.com/NC-rdf#IsSecure"                      ServerType="rdf:http://home.netscape.com/NC-rdf#ServerType"                      label="rdf:http://home.netscape.com/NC-rdf#Name"/>                 </menupopup>              </rule>            </template>        </menulist>      </row>    </rows>  </grid>  <separator class="thin"/>  <checkbox id="quickMode" accesskey="&quickMode.accesskey;" label="&quickMode.label;"/> </dialog>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -