Hello community, here is the log from the commit of package MozillaFirefox-branding-openSUSE for openSUSE:Factory checked in at 2011-11-10 15:54:48 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/MozillaFirefox-branding-openSUSE (Old) and /work/SRC/openSUSE:Factory/.MozillaFirefox-branding-openSUSE.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "MozillaFirefox-branding-openSUSE", Maintainer is "[email protected]" Changes: -------- --- /work/SRC/openSUSE:Factory/MozillaFirefox-branding-openSUSE/MozillaFirefox-branding-openSUSE.changes 2011-10-21 16:26:39.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.MozillaFirefox-branding-openSUSE.new/MozillaFirefox-branding-openSUSE.changes 2011-11-10 15:54:49.000000000 +0100 @@ -1,0 +2,6 @@ +Tue Nov 8 05:14:02 UTC 2011 - [email protected] + +- update susefox to snapshot 20111108 (1.0.2) + * removed statusbar stuff (fix bnc#707628) + +------------------------------------------------------------------- Old: ---- susefox-20111020.tar.bz2 New: ---- susefox-20111108.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ MozillaFirefox-branding-openSUSE.spec ++++++ --- /var/tmp/diff_new_pack.Tde8iB/_old 2011-11-10 15:54:50.000000000 +0100 +++ /var/tmp/diff_new_pack.Tde8iB/_new 2011-11-10 15:54:50.000000000 +0100 @@ -27,7 +27,7 @@ License: BSD3c(or similar) ; GPLv2+ Summary: openSUSE branding of MozillaFirefox Group: Productivity/Networking/Web/Browsers -Source: susefox-20111020.tar.bz2 +Source: susefox-20111108.tar.bz2 Source1: search-addons.tar.bz2 Source2: bookmarks.html.suse Source3: firefox-suse-default-prefs.js ++++++ susefox-20111020.tar.bz2 -> susefox-20111108.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/susefox/chrome.manifest new/susefox/chrome.manifest --- old/susefox/chrome.manifest 2011-10-20 22:10:53.000000000 +0200 +++ new/susefox/chrome.manifest 2011-11-08 06:13:13.000000000 +0100 @@ -9,5 +9,5 @@ locale susefox it locale/it/ locale susefox pt-BR locale/pt-BR/ locale susefox hu locale/hu/ -overlay chrome://browser/content/browser.xul chrome://susefox/content/altPluginsOverlay.xul +overlay chrome://browser/content/browser.xul chrome://susefox/content/overlay.xul override chrome://mozapps/content/plugins/pluginInstallerWizard.xul chrome://susefox/content/pluginInstallerWizard.xul diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/susefox/content/altPluginsOverlay.js new/susefox/content/altPluginsOverlay.js --- old/susefox/content/altPluginsOverlay.js 2011-10-20 22:10:53.000000000 +0200 +++ new/susefox/content/altPluginsOverlay.js 1970-01-01 01:00:00.000000000 +0100 @@ -1,103 +0,0 @@ -/* ***** 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 ubufox. - * - * The Initial Developer of the Original Code is - * Canonical Ltd. - * Portions created by the Initial Developer are Copyright (C) 2008 - * the Initial Developer. All Rights Reserved. - * - * Contributor(s): - * Doron Rosenberg <[email protected]> - * Alexander Sack <[email protected]> - Canonical Ltd. - * Arzhel Younsi <[email protected]> - * Wolfgang Rosenauer <[email protected]> - * - * 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 ***** */ - -if (!gBrowser) - var gBrowser = null; -var gAltPluginWizard = null; - -altPluginWizard.prototype.pluginUsed = function(pluginElement) { - var pluginsArray = pluginElement.ownerDocument.mimeContent; - if (!pluginsArray) - pluginsArray = {}; - - var pluginInfo = getPluginInfo(pluginElement); - pluginsArray[pluginInfo.mimetype] = pluginInfo; - var thisTab = pluginElement.ownerDocument; - thisTab.mimeContent = pluginsArray; - - if (gBrowser.selectedBrowser.contentDocument != pluginElement.ownerDocument) - return; - - var iconAltPlugins = document.getElementById("iconAltPlugins"); - iconAltPlugins.hidden = false; -} - -altPluginWizard.prototype.tabSelected = function(aEvent) { - if (gBrowser.selectedBrowser.contentDocument.mimeContent) { - var iconAltPlugins = document.getElementById("iconAltPlugins"); - iconAltPlugins.hidden = false; - } else { - var iconAltPlugins = document.getElementById("iconAltPlugins"); - iconAltPlugins.hidden = true; - } -} - -altPluginWizard.prototype.domContentLoaded = function(aEvent) { - var elements = aEvent.target.getElementsByTagName("embed"); - if (elements.length != 0) { - for (let a = 0; a< elements.length; a++) { - gAltPluginWizard.pluginUsed (elements[a]); - } - } else { - var iconAltPlugins = document.getElementById("iconAltPlugins"); - iconAltPlugins.hidden = true; - } -} - -function altPluginWizard() { -} - -function openPluginFinder(contentMimeArray) { - var iconAltPlugins = document.getElementById("iconAltPlugins"); - window.openDialog("chrome://susefox/content/pluginAlternativeOverlay.xul", - "PFSWindow", "chrome,centerscreen,resizable=yes", - {plugins: contentMimeArray, browser: - gBrowser.selectedBrowser, pluginsOnTab: !iconAltPlugins.hidden}); -} - - -window.addEventListener("load", function() { - if (!gBrowser) - gBrowser = document.getElementById("content"); - gAltPluginWizard = new altPluginWizard(); - gBrowser.tabContainer.addEventListener("TabSelect", gAltPluginWizard.tabSelected, false); - gBrowser.addEventListener("DOMContentLoaded", gAltPluginWizard.domContentLoaded, false); - window.removeEventListener("load", arguments.callee, false); -}, false); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/susefox/content/altPluginsOverlay.xul new/susefox/content/altPluginsOverlay.xul --- old/susefox/content/altPluginsOverlay.xul 2011-10-20 22:10:53.000000000 +0200 +++ new/susefox/content/altPluginsOverlay.xul 1970-01-01 01:00:00.000000000 +0100 @@ -1,56 +0,0 @@ -<?xml version="1.0"?> -<!-- ***** 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 ubufox. - - - - The Initial Developer of the Original Code is - - Canonical Ltd. - - Portions created by the Initial Developer are Copyright (C) 2008 - - the Initial Developer. All Rights Reserved. - - - - Contributor(s): - - Alexander Sack <[email protected]> - Canonical Ltd. - - Arzhel Younsi <[email protected]> - - - - 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 ***** --> - -<!DOCTYPE overlay SYSTEM "chrome://susefox/locale/susefox-alt.dtd"> - -<overlay id="altplugins" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> - <script type="application/javascript" src="chrome://susefox/content/altPluginsOverlay.js" /> - <statusbar id="status-bar"> - <statusbarpanel id="iconAltPlugins" - class="statusbarpanel-iconic" - src="chrome://mozapps/skin/plugins/pluginGeneric-16.png" - onclick="openPluginFinder(gBrowser.selectedBrowser.contentDocument.mimeContent);" - hidden="true" /> - </statusbar> - <menupopup id="menu_ToolsPopup"> - <menuitem id="menuAltPlugins" - label="&susefox.altplugin.menuentry;" - oncommand="openPluginFinder(gBrowser.selectedBrowser.contentDocument.mimeContent);"/> - </menupopup> -</overlay> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/susefox/content/overlay.js new/susefox/content/overlay.js --- old/susefox/content/overlay.js 1970-01-01 01:00:00.000000000 +0100 +++ new/susefox/content/overlay.js 2011-11-08 06:13:13.000000000 +0100 @@ -0,0 +1,58 @@ +/* ***** 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 ubufox. + * + * The Initial Developer of the Original Code is + * Canonical Ltd. + * Portions created by the Initial Developer are Copyright (C) 2008 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Doron Rosenberg <[email protected]> + * Alexander Sack <[email protected]> - Canonical Ltd. + * Arzhel Younsi <[email protected]> + * Wolfgang Rosenauer <[email protected]> + * + * 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 ***** */ + +function openPluginFinder() { + let contentMimeArray = {}; + let pluginsOnTab = false; + let elements = gBrowser.selectedBrowser.contentDocument.getElementsByTagName("embed"); + + for (let a = 0; a < elements.length; a++) { + let element = elements[a]; + let pluginInfo = getPluginInfo(element); + contentMimeArray[pluginInfo.mimetype] = pluginInfo; + pluginsOnTab = true; + } + + window.openDialog("chrome://susefox/content/pluginAlternativeOverlay.xul", + "PFSWindow", "chrome,centerscreen,resizable=yes", + {plugins: contentMimeArray, browser: + gBrowser.selectedBrowser, pluginsOnTab: pluginsOnTab}); +} + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/susefox/content/overlay.xul new/susefox/content/overlay.xul --- old/susefox/content/overlay.xul 1970-01-01 01:00:00.000000000 +0100 +++ new/susefox/content/overlay.xul 2011-11-08 06:13:13.000000000 +0100 @@ -0,0 +1,50 @@ +<?xml version="1.0"?> +<!-- ***** 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 ubufox. + - + - The Initial Developer of the Original Code is + - Canonical Ltd. + - Portions created by the Initial Developer are Copyright (C) 2008 + - the Initial Developer. All Rights Reserved. + - + - Contributor(s): + - Alexander Sack <[email protected]> - Canonical Ltd. + - Arzhel Younsi <[email protected]> + - + - 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 ***** --> + +<!DOCTYPE overlay SYSTEM "chrome://susefox/locale/susefox-alt.dtd"> + +<overlay id="altplugins" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> + <script type="application/javascript" src="chrome://susefox/content/overlay.js" /> + + <menupopup id="menu_ToolsPopup"> + <menuitem id="menuAltPlugins" + label="&susefox.altplugin.menuentry;" + oncommand="openPluginFinder();"/> + </menupopup> +</overlay> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/susefox/content/pluginInstallerWizard.js new/susefox/content/pluginInstallerWizard.js --- old/susefox/content/pluginInstallerWizard.js 2011-10-20 22:10:53.000000000 +0200 +++ new/susefox/content/pluginInstallerWizard.js 2011-11-08 06:13:13.000000000 +0100 @@ -857,8 +857,8 @@ // reload plugins so JS detection works immediately try { - var pm = Components.classes["@mozilla.org/plugin/manager;1"] - .getService(Components.interfaces.nsIPluginManager); + var pm = Components.classes["@mozilla.org/plugin/host;1"] + .getService(Components.interfaces.nsIPluginHost); pm.reloadPlugins(false); } catch (e) { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/susefox/install.rdf new/susefox/install.rdf --- old/susefox/install.rdf 2011-10-20 22:10:53.000000000 +0200 +++ new/susefox/install.rdf 2011-11-08 06:13:13.000000000 +0100 @@ -3,7 +3,7 @@ xmlns:em="http://www.mozilla.org/2004/em-rdf#"> <Description about="urn:mozilla:install-manifest"> <em:id>[email protected]</em:id> - <em:version>1.0.1</em:version> + <em:version>1.0.2</em:version> <em:creator>Wolfgang Rosenauer <[email protected]></em:creator> <em:contributor>Ubufox contributors</em:contributor> @@ -110,7 +110,7 @@ <em:targetApplication> <Description> <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id> - <em:minVersion>3.0</em:minVersion> + <em:minVersion>4.0</em:minVersion> <em:maxVersion>9.0.*</em:maxVersion> </Description> </em:targetApplication> -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
