зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1234012 - Remove {localstore,mimeTypes}.rdf, user{Chrome,Content}-example.css. r=bsmedberg
These files have not been used since Firefox 4.0 because they were in the omnijar while the code trying to copy them were expecting them outside the omnijar. Fast forward a few years, and new profiles are now expected to be empty so these files are just dead weight.
This commit is contained in:
Родитель
f56dcc705e
Коммит
469d638e14
|
@ -29,9 +29,6 @@
|
|||
@RESPATH@/@PREF_DIR@/b2g-l10n.js
|
||||
@RESPATH@/searchplugins/*
|
||||
@RESPATH@/defaults/profile/bookmarks.html
|
||||
@RESPATH@/defaults/profile/localstore.rdf
|
||||
@RESPATH@/defaults/profile/mimeTypes.rdf
|
||||
@RESPATH@/defaults/profile/chrome/*
|
||||
#ifdef MOZ_UPDATER
|
||||
@RESPATH@/update.locale
|
||||
@RESPATH@/updater.ini
|
||||
|
@ -768,7 +765,6 @@
|
|||
@RESPATH@/@PREF_DIR@/channel-prefs.js
|
||||
@RESPATH@/greprefs.js
|
||||
@RESPATH@/defaults/autoconfig/prefcalls.js
|
||||
@RESPATH@/defaults/profile/prefs.js
|
||||
|
||||
; Services (gre) prefs
|
||||
#ifdef MOZ_SERVICES_SYNC
|
||||
|
|
|
@ -46,9 +46,6 @@
|
|||
@RESPATH@/browser/chrome/@AB_CD@.manifest
|
||||
@RESPATH@/chrome/@AB_CD@@JAREXT@
|
||||
@RESPATH@/chrome/@AB_CD@.manifest
|
||||
@RESPATH@/browser/defaults/profile/chrome/*
|
||||
@RESPATH@/browser/defaults/profile/localstore.rdf
|
||||
@RESPATH@/browser/defaults/profile/mimeTypes.rdf
|
||||
@RESPATH@/dictionaries/*
|
||||
@RESPATH@/hyphenation/*
|
||||
@RESPATH@/browser/@PREF_DIR@/firefox-l10n.js
|
||||
|
@ -704,7 +701,6 @@
|
|||
@RESPATH@/browser/@PREF_DIR@/firefox-branding.js
|
||||
@RESPATH@/greprefs.js
|
||||
@RESPATH@/defaults/autoconfig/prefcalls.js
|
||||
@RESPATH@/browser/defaults/profile/prefs.js
|
||||
@RESPATH@/browser/defaults/permissions
|
||||
|
||||
; Warning: changing the path to channel-prefs.js can cause bugs (Bug 756325)
|
||||
|
|
|
@ -94,21 +94,8 @@ $(STAGEDIST): $(DIST)/branding
|
|||
$(DIST)/branding:
|
||||
$(NSINSTALL) -D $@
|
||||
|
||||
PROFILE_FILES = \
|
||||
localstore.rdf \
|
||||
mimeTypes.rdf \
|
||||
$(NULL)
|
||||
|
||||
PROFILE_CHROME = userChrome-example.css userContent-example.css
|
||||
|
||||
DEFINES += -DBOOKMARKS_INCLUDE_DIR=$(dir $(call MERGE_FILE,profile/bookmarks.inc))
|
||||
|
||||
libs:: $(addprefix generic/profile/,$(PROFILE_FILES))
|
||||
$(SYSINSTALL) $(IFLAGS1) $^ $(FINAL_TARGET)/defaults/profile
|
||||
|
||||
libs:: $(call MERGE_FILES,$(addprefix profile/chrome/,$(PROFILE_CHROME)))
|
||||
$(SYSINSTALL) $(IFLAGS1) $^ $(FINAL_TARGET)/defaults/profile/chrome
|
||||
|
||||
libs-%:
|
||||
$(NSINSTALL) -D $(DIST)/install
|
||||
@$(MAKE) -C ../../toolkit/locales libs-$* XPI_ROOT_APPID='$(XPI_ROOT_APPID)'
|
||||
|
|
|
@ -1,50 +0,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/. */
|
||||
|
||||
/*
|
||||
* Edit this file and copy it as userChrome.css into your
|
||||
* profile-directory/chrome/
|
||||
*/
|
||||
|
||||
/*
|
||||
* This file can be used to customize the look of Mozilla's user interface
|
||||
* You should consider using !important on rules which you want to
|
||||
* override default settings.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Do not remove the @namespace line -- it's required for correct functioning
|
||||
*/
|
||||
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
|
||||
|
||||
|
||||
/*
|
||||
* Some possible accessibility enhancements:
|
||||
*/
|
||||
/*
|
||||
* Make all the default font sizes 20 pt:
|
||||
*
|
||||
* * {
|
||||
* font-size: 20pt !important
|
||||
* }
|
||||
*/
|
||||
/*
|
||||
* Make menu items in particular 15 pt instead of the default size:
|
||||
*
|
||||
* menupopup > * {
|
||||
* font-size: 15pt !important
|
||||
* }
|
||||
*/
|
||||
/*
|
||||
* Give the Location (URL) Bar a fixed-width font
|
||||
*
|
||||
* #urlbar {
|
||||
* font-family: monospace !important;
|
||||
* }
|
||||
*/
|
||||
|
||||
/*
|
||||
* For more examples see http://www.mozilla.org/unix/customizing.html
|
||||
*/
|
||||
|
|
@ -1,32 +0,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/. */
|
||||
|
||||
/*
|
||||
* Edit this file and copy it as userContent.css into your
|
||||
* profile-directory/chrome/
|
||||
*/
|
||||
|
||||
/*
|
||||
* This file can be used to apply a style to all web pages you view
|
||||
* Rules without !important are overruled by author rules if the
|
||||
* author sets any. Rules with !important overrule author rules.
|
||||
*/
|
||||
|
||||
/*
|
||||
* example: give all tables a 2px border
|
||||
*
|
||||
* table { border: 2px solid; }
|
||||
*/
|
||||
|
||||
/*
|
||||
* example: turn off "marquee" element
|
||||
*
|
||||
* marquee { -moz-binding: none; }
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
* For more examples see http://www.mozilla.org/unix/customizing.html
|
||||
*/
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
<?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/. -->
|
||||
|
||||
<RDF:RDF
|
||||
xmlns:NC="http://home.netscape.com/NC-rdf#"
|
||||
xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
</RDF:RDF>
|
|
@ -1,17 +0,0 @@
|
|||
<?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/. -->
|
||||
|
||||
|
||||
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:NC="http://home.netscape.com/NC-rdf#"
|
||||
xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
|
||||
<Description about="urn:mimetypes">
|
||||
<NC:MIME-types>
|
||||
<Seq about="urn:mimetypes:root">
|
||||
</Seq>
|
||||
</NC:MIME-types>
|
||||
</Description>
|
||||
</RDF>
|
|
@ -20,9 +20,6 @@
|
|||
@BINPATH@/@PREF_DIR@/mobile-l10n.js
|
||||
@BINPATH@/searchplugins/*
|
||||
@BINPATH@/defaults/profile/bookmarks.html
|
||||
@BINPATH@/defaults/profile/localstore.rdf
|
||||
@BINPATH@/defaults/profile/mimeTypes.rdf
|
||||
@BINPATH@/defaults/profile/chrome/*
|
||||
#ifdef MOZ_UPDATER
|
||||
@BINPATH@/update.locale
|
||||
@BINPATH@/updater.ini
|
||||
|
@ -506,7 +503,6 @@
|
|||
@BINPATH@/ua-update.json
|
||||
@BINPATH@/greprefs.js
|
||||
@BINPATH@/defaults/autoconfig/prefcalls.js
|
||||
@BINPATH@/defaults/profile/prefs.js
|
||||
|
||||
; [Layout Engine Resources]
|
||||
; Style Sheets, Graphics and other Resources used by the layout engine.
|
||||
|
|
|
@ -4,8 +4,6 @@
|
|||
# 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/.
|
||||
|
||||
DIRS += ['profile']
|
||||
|
||||
GeckoProgram('xulrunner')
|
||||
|
||||
SOURCES += [
|
||||
|
|
|
@ -1,14 +0,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/.
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
FILES := \
|
||||
localstore.rdf \
|
||||
$(NULL)
|
||||
|
||||
libs:: $(FILES)
|
||||
$(INSTALL) $^ $(DIST)/bin/defaults/profile
|
||||
$(INSTALL) $^ $(DIST)/bin/defaults/profile/US
|
|
@ -1,17 +0,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/.
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
FILES := \
|
||||
userContent-example.css \
|
||||
userChrome-example.css \
|
||||
$(NULL)
|
||||
|
||||
FILES := $(addprefix $(srcdir)/, $(FILES))
|
||||
|
||||
libs::
|
||||
$(INSTALL) $(FILES) $(DIST)/bin/defaults/profile/chrome
|
||||
$(INSTALL) $(FILES) $(DIST)/bin/defaults/profile/US/chrome
|
|
@ -1,6 +0,0 @@
|
|||
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
||||
# vim: set filetype=python:
|
||||
# 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/.
|
||||
|
|
@ -1,58 +0,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/. */
|
||||
|
||||
/*
|
||||
* Edit this file and copy it as userChrome.css into your
|
||||
* profile-directory/chrome/
|
||||
*/
|
||||
|
||||
/*
|
||||
* This file can be used to customize the look of Mozilla's user interface
|
||||
* You should consider using !important on rules which you want to
|
||||
* override default settings.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Do not remove the @namespace line -- it's required for correct functioning
|
||||
*/
|
||||
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
|
||||
|
||||
|
||||
/*
|
||||
* Some possible accessibility enhancements:
|
||||
*/
|
||||
/*
|
||||
* Make all the default font sizes 20 pt:
|
||||
*
|
||||
* * {
|
||||
* font-size: 20pt !important
|
||||
* }
|
||||
*/
|
||||
/*
|
||||
* Make menu items in particular 15 pt instead of the default size:
|
||||
*
|
||||
* menupopup > * {
|
||||
* font-size: 15pt !important
|
||||
* }
|
||||
*/
|
||||
/*
|
||||
* Give the Location (URL) Bar a fixed-width font
|
||||
*
|
||||
* #urlbar {
|
||||
* font-family: monospace !important;
|
||||
* }
|
||||
*/
|
||||
|
||||
/*
|
||||
* Eliminate the throbber and its annoying movement:
|
||||
*
|
||||
* #throbber-box {
|
||||
* display: none !important;
|
||||
* }
|
||||
*/
|
||||
|
||||
/*
|
||||
* For more examples see http://www.mozilla.org/unix/customizing.html
|
||||
*/
|
||||
|
|
@ -1,32 +0,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/. */
|
||||
|
||||
/*
|
||||
* Edit this file and copy it as userContent.css into your
|
||||
* profile-directory/chrome/
|
||||
*/
|
||||
|
||||
/*
|
||||
* This file can be used to apply a style to all web pages you view
|
||||
* Rules without !important are overruled by author rules if the
|
||||
* author sets any. Rules with !important overrule author rules.
|
||||
*/
|
||||
|
||||
/*
|
||||
* example: give all tables a 2px border
|
||||
*
|
||||
* table { border: 2px solid; }
|
||||
*/
|
||||
|
||||
/*
|
||||
* example: turn off "marquee" element
|
||||
*
|
||||
* marquee { -moz-binding: none; }
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
* For more examples see http://www.mozilla.org/unix/customizing.html
|
||||
*/
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
<?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/. -->
|
||||
|
||||
<RDF:RDF
|
||||
xmlns:NC="http://home.netscape.com/NC-rdf#"
|
||||
xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
</RDF:RDF>
|
|
@ -1,7 +0,0 @@
|
|||
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
||||
# vim: set filetype=python:
|
||||
# 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/.
|
||||
|
||||
DIRS += ['chrome']
|
Загрузка…
Ссылка в новой задаче