зеркало из https://github.com/mozilla/pjs.git
*** empty log message ***
This commit is contained in:
Родитель
af184aff13
Коммит
2c4f369358
|
@ -43,3 +43,39 @@ VPATH = @srcdir@
|
|||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
#
|
||||
# The contents of this file are subject to the Netscape 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/NPL/
|
||||
#
|
||||
# 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 mozilla.org code.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape
|
||||
# Communications Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1998 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
#
|
||||
|
||||
DEPTH = ../..
|
||||
topsrcdir = @top_srcdir@
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
include $(topsrcdir)/config/config.mk
|
||||
|
||||
PREF_JS_EXPORTS = \
|
||||
$(srcdir)/init/all.js \
|
||||
$(NULL)
|
||||
|
||||
GARBAGE += $(addprefix $(DIST)/bin/defaults/pref/, all.js)
|
||||
|
||||
|
|
|
@ -704,7 +704,7 @@ Contributor(s):
|
|||
|
||||
<toolbar class="toolbar-primary chromeclass-toolbar" id="nav-bar"
|
||||
fullscreentoolbar="true"
|
||||
defaultset="back-button,forward-button,reload-button,stop-buttonurlbar-container,throbber-box"
|
||||
defaultset="back-button,forward-button,reload-button,stop-button,urlbar-container,throbber-box"
|
||||
context="toolbar-context-menu">
|
||||
<toolbarpalette>
|
||||
<toolbarbutton id="back-button" type="menu-button" class="toolbarbutton-1"
|
||||
|
|
|
@ -1,115 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<!--
|
||||
The contents of this file are subject to the Netscape 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/NPL/
|
||||
|
||||
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 Mozilla Communicator client code, released
|
||||
March 31, 1998.
|
||||
|
||||
The Initial Developer of the Original Code is Netscape
|
||||
Communications Corporation. Portions created by Netscape are
|
||||
Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
||||
Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
Diego Biurrun <diego@biurrun.de>
|
||||
- added disk cache folder choice
|
||||
-->
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % prefCacheDTD SYSTEM "chrome://communicator/locale/pref/pref-cache.dtd" >
|
||||
%prefCacheDTD;
|
||||
]>
|
||||
|
||||
<page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||||
onload="parent.initPanel('chrome://communicator/content/pref/pref-cache.xul');"
|
||||
headertitle="&lHeader;">
|
||||
|
||||
<script type="application/x-javascript">
|
||||
<![CDATA[
|
||||
var _elementIDs = ["browserCacheMemoryCache", "browserCacheDiskCache", "browserCacheCheckDocFrequency"];
|
||||
]]>
|
||||
</script>
|
||||
|
||||
<stringbundle id="bundle_prefutilities"
|
||||
src="chrome://communicator/locale/pref/prefutilities.properties"/>
|
||||
<script type="application/x-javascript" src="chrome://communicator/content/pref/pref-cache.js"/>
|
||||
|
||||
<groupbox>
|
||||
<caption label="&cacheTitle.label;"/>
|
||||
|
||||
<description>&cachePara;</description>
|
||||
|
||||
<separator class="thin"/>
|
||||
|
||||
<grid>
|
||||
<columns>
|
||||
<column/>
|
||||
<column flex="1"/>
|
||||
<column/>
|
||||
</columns>
|
||||
|
||||
<rows>
|
||||
<row align="center">
|
||||
<label value="&memCache.label;" accesskey="&memCache.accesskey;" control="browserCacheMemoryCache"/>
|
||||
<hbox align="center">
|
||||
<textbox id="browserCacheMemoryCache" size="8" preftype="int"
|
||||
prefstring="browser.cache.memory.capacity"/>
|
||||
<label value="&kbytes;"/>
|
||||
</hbox>
|
||||
<button label="&clearMemCache.label;" accesskey="&clearMemCache.accesskey;"
|
||||
oncommand="prefClearMemCache();"
|
||||
id="clearMemCache"
|
||||
prefstring="pref.advanced.cache.disable_button.clear_memory"/>
|
||||
</row>
|
||||
<row align="center">
|
||||
<label value="&diskCache.label;" accesskey="&diskCache.accesskey;" control="browserCacheDiskCache"/>
|
||||
<hbox align="center">
|
||||
<textbox id="browserCacheDiskCache" size="8" preftype="int"
|
||||
prefstring="browser.cache.disk.capacity" prefattribute="value"/>
|
||||
<label value="&kbytes;"/>
|
||||
</hbox>
|
||||
<button label="&clearDiskCache.label;" accesskey="&clearDiskCache.accesskey;"
|
||||
oncommand="prefClearDiskCache();"
|
||||
id="clearDiskCache"
|
||||
prefstring="pref.advanced.cache.disable_button.clear_disk"/>
|
||||
</row>
|
||||
<row align="center">
|
||||
<label value="&diskCacheFolder.label;"/>
|
||||
<hbox align="center">
|
||||
<textbox id="browserCacheDiskCacheFolder" readonly="true"/>
|
||||
</hbox>
|
||||
<button label="&chooseDiskCacheFolder.label;" accesskey="&chooseDiskCacheFolder.accesskey;"
|
||||
oncommand="prefCacheSelectFolder();" id="chooseDiskCacheFolder"/>
|
||||
</row>
|
||||
|
||||
<description>&diskCacheFolderExplanation;</description>
|
||||
|
||||
</rows>
|
||||
</grid>
|
||||
|
||||
<separator class="thin"/>
|
||||
|
||||
<description>&docCache;</description>
|
||||
<vbox align="start" class="indent">
|
||||
<radiogroup id="browserCacheCheckDocFrequency"
|
||||
prefstring="browser.cache.check_doc_frequency">
|
||||
<radio value="1" label="&everyTimeRadio.label;" accesskey="&everyTimeRadio.accesskey;"/>
|
||||
<radio value="3" label="&autoRadio.label;" accesskey="&autoRadio.accesskey;"/>
|
||||
<radio value="0" label="&oncePsessionRadio.label;" accesskey="&oncePsessionRadio.accesskey;"/>
|
||||
<radio value="2" label="&neverRadio.label;" accesskey="&neverRadio.accesskey;"/>
|
||||
</radiogroup>
|
||||
</vbox>
|
||||
|
||||
</groupbox>
|
||||
</page>
|
|
@ -59,7 +59,7 @@ var gPrefutilitiesBundle;
|
|||
// manual data retrieval function for PrefWindow
|
||||
function GetFields()
|
||||
{
|
||||
var dataObject = parent.hPrefWindow.wsm.dataManager.pageData["chrome://communicator/content/pref/pref-fonts.xul"];
|
||||
var dataObject = parent.hPrefWindow.wsm.dataManager.pageData["chrome://browser/content/pref/pref-fonts.xul"];
|
||||
|
||||
// store data for language independent widgets
|
||||
var lists = ["selectLangs", "proportionalFont"];
|
||||
|
@ -280,11 +280,11 @@ function saveFontPrefs()
|
|||
if( top.hPrefWindow.wsm.contentArea.saveState )
|
||||
{
|
||||
saveState();
|
||||
parent.hPrefWindow.wsm.dataManager.pageData["chrome://communicator/content/pref/pref-fonts.xul"] = GetFields();
|
||||
parent.hPrefWindow.wsm.dataManager.pageData["chrome://browser/content/pref/pref-fonts.xul"] = GetFields();
|
||||
}
|
||||
|
||||
// saving font prefs
|
||||
var dataObject = parent.hPrefWindow.wsm.dataManager.pageData["chrome://communicator/content/pref/pref-fonts.xul"];
|
||||
var dataObject = parent.hPrefWindow.wsm.dataManager.pageData["chrome://browser/content/pref/pref-fonts.xul"];
|
||||
var pref = parent.hPrefWindow.pref;
|
||||
for( var language in dataObject.languageData )
|
||||
{
|
||||
|
@ -525,7 +525,7 @@ function changeScreenResolution()
|
|||
{
|
||||
// If the user selects "Other..." we bring up the calibrate screen dialog
|
||||
var rv = { newdpi : 0 };
|
||||
var calscreen = window.openDialog("chrome://communicator/content/pref/pref-calibrate-screen.xul",
|
||||
var calscreen = window.openDialog("chrome://browser/content/pref/pref-calibrate-screen.xul",
|
||||
"_blank",
|
||||
"modal,chrome,centerscreen,resizable=no,titlebar",
|
||||
rv);
|
||||
|
|
|
@ -158,28 +158,6 @@
|
|||
</menulist>
|
||||
<spacer/>
|
||||
</row>
|
||||
<row align="center">
|
||||
<hbox align="center" pack="end">
|
||||
<label value="&cursive.label;"
|
||||
accesskey="&cursive.accesskey;"
|
||||
control="cursive"/>
|
||||
</hbox>
|
||||
<menulist id="cursive">
|
||||
<menupopup/>
|
||||
</menulist>
|
||||
<spacer/>
|
||||
</row>
|
||||
<row align="center">
|
||||
<hbox align="center" pack="end">
|
||||
<label value="&fantasy.label;"
|
||||
accesskey="&fantasy.accesskey;"
|
||||
control="fantasy"/>
|
||||
</hbox>
|
||||
<menulist id="fantasy">
|
||||
<menupopup/>
|
||||
</menulist>
|
||||
<spacer/>
|
||||
</row>
|
||||
<row align="center">
|
||||
<hbox align="center" pack="end">
|
||||
<label value="&monospace.label;"
|
||||
|
|
Загрузка…
Ссылка в новой задаче