From 995f428bf6c3170027dd5f9ea9f17e8fa4bdfac8 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 18 Jan 2013 00:06:08 -0800 Subject: Fri Jan 18 00:06:07 PST 2013 --- ...Make-the-Reset-Firefox-feature-more-gener.patch | 281 ++++++++++++++++++ ~emulatorman/iceweasel-libre/PKGBUILD | 196 ++++++++++++ ~emulatorman/iceweasel-libre/bug677092.patch | 330 +++++++++++++++++++++ .../iceweasel-libre/iceweasel-install-dir.patch | 31 ++ ~emulatorman/iceweasel-libre/iceweasel.desktop | 105 +++++++ ~emulatorman/iceweasel-libre/iceweasel.install | 13 + ~emulatorman/iceweasel-libre/libre.patch | 268 +++++++++++++++++ ~emulatorman/iceweasel-libre/mozconfig | 49 +++ ~emulatorman/iceweasel-libre/mozconfig.pgo | 4 + ~emulatorman/iceweasel-libre/replace-urls.txt | 25 ++ ~emulatorman/iceweasel-libre/shared-libs.patch | 12 + ~emulatorman/iceweasel-libre/vendor.js | 18 ++ 12 files changed, 1332 insertions(+) create mode 100644 ~emulatorman/iceweasel-libre/Bug-756390-Make-the-Reset-Firefox-feature-more-gener.patch create mode 100644 ~emulatorman/iceweasel-libre/PKGBUILD create mode 100644 ~emulatorman/iceweasel-libre/bug677092.patch create mode 100644 ~emulatorman/iceweasel-libre/iceweasel-install-dir.patch create mode 100644 ~emulatorman/iceweasel-libre/iceweasel.desktop create mode 100644 ~emulatorman/iceweasel-libre/iceweasel.install create mode 100644 ~emulatorman/iceweasel-libre/libre.patch create mode 100644 ~emulatorman/iceweasel-libre/mozconfig create mode 100644 ~emulatorman/iceweasel-libre/mozconfig.pgo create mode 100644 ~emulatorman/iceweasel-libre/replace-urls.txt create mode 100644 ~emulatorman/iceweasel-libre/shared-libs.patch create mode 100644 ~emulatorman/iceweasel-libre/vendor.js (limited to '~emulatorman/iceweasel-libre') diff --git a/~emulatorman/iceweasel-libre/Bug-756390-Make-the-Reset-Firefox-feature-more-gener.patch b/~emulatorman/iceweasel-libre/Bug-756390-Make-the-Reset-Firefox-feature-more-gener.patch new file mode 100644 index 000000000..69fe5c072 --- /dev/null +++ b/~emulatorman/iceweasel-libre/Bug-756390-Make-the-Reset-Firefox-feature-more-gener.patch @@ -0,0 +1,281 @@ +From: Mike Hommey +Date: Tue, 5 Jun 2012 08:57:06 +0200 +Subject: Bug 756390 - Make the "Reset Firefox" feature more generic + +diff --git a/browser/components/migration/content/migration.js b/browser/components/migration/content/migration.js +index 0e8ccf5..fa46c08 100644 +--- a/browser/components/migration/content/migration.js ++++ b/browser/components/migration/content/migration.js +@@ -249,7 +249,7 @@ var MigrationWizard = { + } + + var brandBundle = document.getElementById("brandBundle"); +- // These strings don't exist when not using official branding. If that's ++ // These strings may not exist when not using official branding. If that's + // the case, just skip this page. + try { + var pageTitle = brandBundle.getString("homePageMigrationPageTitle"); +@@ -281,8 +281,8 @@ var MigrationWizard = { + case "chrome": + source = "sourceNameChrome"; + break; +- case "firefox": +- source = "sourceNameFirefox"; ++ case "self": ++ source = "brand"; + break; + } + +@@ -292,7 +292,12 @@ var MigrationWizard = { + var oldHomePageURL = this._migrator.sourceHomePageURL; + + if (oldHomePageURL && source) { +- var appName = MigrationUtils.getLocalizedString(source); ++ var appName; ++ if (source == "brand") { ++ appName = brandBundle.GetStringFromName("brandFullName"); ++ } else { ++ appName = MigrationUtils.getLocalizedString(source); ++ } + var oldHomePageLabel = + brandBundle.getFormattedString("homePageImport", [appName]); + var oldHomePage = document.getElementById("oldHomePage"); +diff --git a/browser/components/migration/content/migration.xul b/browser/components/migration/content/migration.xul +index f030756..23e37ff 100644 +--- a/browser/components/migration/content/migration.xul ++++ b/browser/components/migration/content/migration.xul +@@ -42,7 +42,7 @@ + #elifdef XP_UNIX + + #endif +- ++