- fix xml parser
- let it run on sparc64 again from martynas venckus
This commit is contained in:
parent
9e10ff3dc7
commit
a6aaaff5a3
@ -1,11 +1,11 @@
|
||||
# $OpenBSD: Makefile,v 1.28 2006/12/27 02:55:24 jolan Exp $
|
||||
# $OpenBSD: Makefile,v 1.29 2006/12/27 16:21:59 jolan Exp $
|
||||
|
||||
ONLY_FOR_ARCHS= alpha amd64 arm i386 powerpc sparc64
|
||||
SHARED_ONLY= Yes
|
||||
|
||||
COMMENT= "small, simple, and powerful web browser for mobile devices"
|
||||
DISTNAME= minimo-20061120
|
||||
PKGNAME= ${DISTNAME}p1
|
||||
PKGNAME= ${DISTNAME}p2
|
||||
SO_VERSION= 4.0
|
||||
# NOTE: Must bump minor version if any shlib's are removed from the
|
||||
# components dir to avoid pkg_add -r issues.
|
||||
|
@ -0,0 +1,29 @@
|
||||
$OpenBSD: patch-extensions_transformiix_source_base_Double_cpp,v 1.4 2006/12/27 16:21:59 jolan Exp $
|
||||
--- extensions/transformiix/source/base/Double.cpp.orig Thu Jun 17 02:12:42 2004
|
||||
+++ extensions/transformiix/source/base/Double.cpp Sat Sep 10 09:47:31 2005
|
||||
@@ -115,17 +115,19 @@ typedef union txdpun {
|
||||
#define TX_DOUBLE_HI32_EXPMASK 0x7ff00000
|
||||
#define TX_DOUBLE_HI32_MANTMASK 0x000fffff
|
||||
|
||||
+#define STRICT_ALIGN __attribute__ ((aligned (8)))
|
||||
+
|
||||
//-- Initialize Double related constants
|
||||
#ifdef IS_BIG_ENDIAN
|
||||
-const PRUint32 nanMask[2] = {TX_DOUBLE_HI32_EXPMASK | TX_DOUBLE_HI32_MANTMASK,
|
||||
+const PRUint32 nanMask[2] STRICT_ALIGN = {TX_DOUBLE_HI32_EXPMASK | TX_DOUBLE_HI32_MANTMASK,
|
||||
0xffffffff};
|
||||
-const PRUint32 infMask[2] = {TX_DOUBLE_HI32_EXPMASK, 0};
|
||||
-const PRUint32 negInfMask[2] = {TX_DOUBLE_HI32_EXPMASK | TX_DOUBLE_HI32_SIGNBIT, 0};
|
||||
+const PRUint32 infMask[2] STRICT_ALIGN = {TX_DOUBLE_HI32_EXPMASK, 0};
|
||||
+const PRUint32 negInfMask[2] STRICT_ALIGN = {TX_DOUBLE_HI32_EXPMASK | TX_DOUBLE_HI32_SIGNBIT, 0};
|
||||
#else
|
||||
-const PRUint32 nanMask[2] = {0xffffffff,
|
||||
+const PRUint32 nanMask[2] STRICT_ALIGN = {0xffffffff,
|
||||
TX_DOUBLE_HI32_EXPMASK | TX_DOUBLE_HI32_MANTMASK};
|
||||
-const PRUint32 infMask[2] = {0, TX_DOUBLE_HI32_EXPMASK};
|
||||
-const PRUint32 negInfMask[2] = {0, TX_DOUBLE_HI32_EXPMASK | TX_DOUBLE_HI32_SIGNBIT};
|
||||
+const PRUint32 infMask[2] STRICT_ALIGN = {0, TX_DOUBLE_HI32_EXPMASK};
|
||||
+const PRUint32 negInfMask[2] STRICT_ALIGN = {0, TX_DOUBLE_HI32_EXPMASK | TX_DOUBLE_HI32_SIGNBIT};
|
||||
#endif
|
||||
|
||||
const double Double::NaN = *((double*)nanMask);
|
@ -1,55 +0,0 @@
|
||||
$OpenBSD: patch-minimo_chrome_content_bindings_keylets_xml,v 1.1 2006/12/04 09:47:54 jolan Exp $
|
||||
--- minimo/chrome/content/bindings/keylets.xml.orig Sat Jun 17 00:18:04 2006
|
||||
+++ minimo/chrome/content/bindings/keylets.xml Thu Nov 23 19:14:44 2006
|
||||
@@ -1,42 +1,6 @@
|
||||
<?xml version="1.0"?> <!-- -*- Mode: HTML -*- -->
|
||||
-
|
||||
-<!-- ***** 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 Mozilla Communicator client code, released
|
||||
- March 31, 1998.
|
||||
-
|
||||
- The Initial Developer of the Original Code is
|
||||
- Netscape Communications Corporation.
|
||||
- Portions created by the Initial Developer are Copyright (C) 1998-2000
|
||||
- the Initial Developer. All Rights Reserved.
|
||||
-
|
||||
- Contributor(s):
|
||||
- Marcio S. Galli, mgalli@geckonnection.com
|
||||
-
|
||||
- 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 ***** -->
|
||||
+<!-- Mozilla Public License -->
|
||||
+<!-- http://lxr.mozilla.org/mozilla1.8/source/minimo/chrome/content/temporary-license.txt -->
|
||||
|
||||
<bindings xmlns="http://www.mozilla.org/xbl"
|
||||
xmlns:xbl="http://www.mozilla.org/xbl"
|
||||
@@ -150,4 +114,4 @@
|
||||
|
||||
</binding>
|
||||
|
||||
-</bindings>
|
||||
\ No newline at end of file
|
||||
+</bindings>
|
@ -1,46 +0,0 @@
|
||||
$OpenBSD: patch-minimo_chrome_content_bindings_keynav_xml,v 1.1 2006/12/04 09:47:54 jolan Exp $
|
||||
--- minimo/chrome/content/bindings/keynav.xml.orig Wed Aug 16 03:02:18 2006
|
||||
+++ minimo/chrome/content/bindings/keynav.xml Thu Nov 23 19:14:56 2006
|
||||
@@ -1,40 +1,6 @@
|
||||
<?xml version="1.0"?> <!-- -*- Mode: HTML -*- -->
|
||||
-<!-- ***** 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 Minimo.
|
||||
- -
|
||||
- - The Initial Developer of the Original Code is
|
||||
- - Marcio S. Galli <mgalli@geckonnection.com>
|
||||
- - Portions created by the Initial Developer are Copyright (C) 2005
|
||||
- - the Initial Developer. All Rights Reserved.
|
||||
- -
|
||||
- - Contributor(s):
|
||||
- - Marcio S. Galli <mgalli@geckonnection.com>
|
||||
- -
|
||||
- - 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 LGPL or the GPL. 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 ***** -->
|
||||
+<!-- Mozilla Public License -->
|
||||
+<!-- http://lxr.mozilla.org/mozilla1.8/source/minimo/chrome/content/temporary-license.txt -->
|
||||
|
||||
<bindings xmlns="http://www.mozilla.org/xbl"
|
||||
xmlns:xbl="http://www.mozilla.org/xbl"
|
@ -1,48 +0,0 @@
|
||||
$OpenBSD: patch-minimo_chrome_content_bindings_preferences_xml,v 1.1 2006/12/04 09:47:54 jolan Exp $
|
||||
--- minimo/chrome/content/bindings/preferences.xml.orig Tue Jan 31 21:01:30 2006
|
||||
+++ minimo/chrome/content/bindings/preferences.xml Thu Nov 23 19:15:37 2006
|
||||
@@ -1,42 +1,6 @@
|
||||
<?xml version="1.0"?> <!-- -*- Mode: HTML -*- -->
|
||||
-
|
||||
-<!-- ***** 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 Mozilla Communicator client code, released
|
||||
- March 31, 1998.
|
||||
-
|
||||
- The Initial Developer of the Original Code is
|
||||
- Netscape Communications Corporation.
|
||||
- Portions created by the Initial Developer are Copyright (C) 1998-2000
|
||||
- the Initial Developer. All Rights Reserved.
|
||||
-
|
||||
- Contributor(s):
|
||||
- Marcio S. Galli, mgalli@geckonnection.com
|
||||
-
|
||||
- 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 ***** -->
|
||||
+<!-- Mozilla Public License -->
|
||||
+<!-- http://lxr.mozilla.org/mozilla1.8/source/minimo/chrome/content/temporary-license.txt -->
|
||||
|
||||
<bindings xmlns="http://www.mozilla.org/xbl"
|
||||
xmlns:xbl="http://www.mozilla.org/xbl"
|
@ -1,46 +0,0 @@
|
||||
$OpenBSD: patch-minimo_chrome_content_bookmarks_bmview_xhtml,v 1.1 2006/12/04 09:47:54 jolan Exp $
|
||||
--- minimo/chrome/content/bookmarks/bmview.xhtml.orig Fri Nov 10 22:04:39 2006
|
||||
+++ minimo/chrome/content/bookmarks/bmview.xhtml Thu Nov 23 19:15:57 2006
|
||||
@@ -1,40 +1,6 @@
|
||||
<?xml version="1.0"?> <!-- -*- Mode: HTML -*- -->
|
||||
-<!-- ***** 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 Minimo.
|
||||
- -
|
||||
- - The Initial Developer of the Original Code is
|
||||
- - Doug Turner <dougt@meer.net>
|
||||
- - Portions created by the Initial Developer are Copyright (C) 2005
|
||||
- - the Initial Developer. All Rights Reserved.
|
||||
- -
|
||||
- - Contributor(s):
|
||||
- - Marcio S. Galli <mgalli@geckonnection.com>
|
||||
- -
|
||||
- - 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 LGPL or the GPL. 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 ***** -->
|
||||
+<!-- Mozilla Public License -->
|
||||
+<!-- http://lxr.mozilla.org/mozilla1.8/source/minimo/chrome/content/temporary-license.txt -->
|
||||
|
||||
<?xml-stylesheet href="chrome://minimo/skin/bookmarks/bookmarks.css" type="text/css"?>
|
||||
<!DOCTYPE bookmarks [
|
@ -1,46 +0,0 @@
|
||||
$OpenBSD: patch-minimo_chrome_content_homebase_bmview_xhtml,v 1.1 2006/12/04 09:47:54 jolan Exp $
|
||||
--- minimo/chrome/content/homebase/bmview.xhtml.orig Fri Nov 10 05:50:17 2006
|
||||
+++ minimo/chrome/content/homebase/bmview.xhtml Thu Nov 23 19:16:11 2006
|
||||
@@ -1,40 +1,6 @@
|
||||
<?xml version="1.0"?> <!-- -*- Mode: HTML -*- -->
|
||||
-<!-- ***** 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 Minimo.
|
||||
- -
|
||||
- - The Initial Developer of the Original Code is
|
||||
- - Doug Turner <dougt@meer.net>
|
||||
- - Portions created by the Initial Developer are Copyright (C) 2005
|
||||
- - the Initial Developer. All Rights Reserved.
|
||||
- -
|
||||
- - Contributor(s):
|
||||
- - Marcio S. Galli <mgalli@geckonnection.com>
|
||||
- -
|
||||
- - 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 LGPL or the GPL. 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 ***** -->
|
||||
+<!-- Mozilla Public License -->
|
||||
+<!-- http://lxr.mozilla.org/mozilla1.8/source/minimo/chrome/content/temporary-license.txt -->
|
||||
|
||||
<?xml-stylesheet href="chrome://minimo/skin/bookmarks/bookmarks.css" type="text/css"?>
|
||||
<!DOCTYPE bookmarks [
|
@ -1,46 +0,0 @@
|
||||
$OpenBSD: patch-minimo_chrome_content_minimo_xul,v 1.1 2006/12/04 09:47:54 jolan Exp $
|
||||
--- minimo/chrome/content/minimo.xul.orig Fri Nov 10 05:57:33 2006
|
||||
+++ minimo/chrome/content/minimo.xul Thu Nov 23 19:08:47 2006
|
||||
@@ -1,40 +1,6 @@
|
||||
<?xml version="1.0"?> <!-- -*- Mode: HTML -*- -->
|
||||
-<!-- ***** 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 Minimo.
|
||||
- -
|
||||
- - The Initial Developer of the Original Code is
|
||||
- - Doug Turner <dougt@meer.net>
|
||||
- - Portions created by the Initial Developer are Copyright (C) 2005
|
||||
- - the Initial Developer. All Rights Reserved.
|
||||
- -
|
||||
- - Contributor(s):
|
||||
- - Marcio S. Galli <mgalli@geckonnection.com>
|
||||
- -
|
||||
- - 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 LGPL or the GPL. 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 ***** -->
|
||||
+<!-- Mozilla Public License -->
|
||||
+<!-- http://lxr.mozilla.org/mozilla1.8/source/minimo/chrome/content/temporary-license.txt -->
|
||||
|
||||
<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
|
||||
<?xml-stylesheet href="chrome://minimo/skin/minimo.css" type="text/css"?>
|
@ -1,47 +0,0 @@
|
||||
$OpenBSD: patch-minimo_chrome_content_moduleview_moduleload_xhtml,v 1.1 2006/12/04 09:47:54 jolan Exp $
|
||||
--- minimo/chrome/content/moduleview/moduleload.xhtml.orig Fri Apr 7 01:17:57 2006
|
||||
+++ minimo/chrome/content/moduleview/moduleload.xhtml Thu Nov 23 19:16:29 2006
|
||||
@@ -1,41 +1,6 @@
|
||||
<?xml version="1.0"?> <!-- -*- Mode: HTML -*- -->
|
||||
-<!-- ***** 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 Mozilla Communicator client code, released
|
||||
- March 31, 1998.
|
||||
-
|
||||
- The Initial Developer of the Original Code is
|
||||
- Netscape Communications Corporation.
|
||||
- Portions created by the Initial Developer are Copyright (C) 1998-2000
|
||||
- the Initial Developer. All Rights Reserved.
|
||||
-
|
||||
- Contributor(s):
|
||||
- Marcio S. Galli, mgalli@geckonnection.com
|
||||
-
|
||||
- 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 ***** -->
|
||||
+<!-- Mozilla Public License -->
|
||||
+<!-- http://lxr.mozilla.org/mozilla1.8/source/minimo/chrome/content/temporary-license.txt -->
|
||||
|
||||
<?xml-stylesheet href="chrome://minimo/skin/rssload/rssload.css" type="text/css"?>
|
||||
<!DOCTYPE rss [
|
@ -1,48 +0,0 @@
|
||||
$OpenBSD: patch-minimo_chrome_content_moduleview_rssblank_xhtml,v 1.1 2006/12/04 09:47:54 jolan Exp $
|
||||
--- minimo/chrome/content/moduleview/rssblank.xhtml.orig Fri Apr 7 01:17:57 2006
|
||||
+++ minimo/chrome/content/moduleview/rssblank.xhtml Thu Nov 23 19:16:44 2006
|
||||
@@ -1,42 +1,6 @@
|
||||
<?xml version="1.0"?> <!-- -*- Mode: HTML -*- -->
|
||||
-
|
||||
-<!-- ***** 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 Mozilla Communicator client code, released
|
||||
- - March 31, 1998.
|
||||
- -
|
||||
- - The Initial Developer of the Original Code is
|
||||
- - Netscape Communications Corporation.
|
||||
- - Portions created by the Initial Developer are Copyright (C) 1998-2000
|
||||
- - the Initial Developer. All Rights Reserved.
|
||||
- -
|
||||
- - Contributor(s):
|
||||
- - Marcio S. Galli, mgalli@geckonnection.com
|
||||
- -
|
||||
- - 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 ***** -->
|
||||
+<!-- Mozilla Public License -->
|
||||
+<!-- http://lxr.mozilla.org/mozilla1.8/source/minimo/chrome/content/temporary-license.txt -->
|
||||
|
||||
<!DOCTYPE html
|
||||
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
@ -1,46 +0,0 @@
|
||||
$OpenBSD: patch-minimo_chrome_content_preferences_pane-advanced_xul,v 1.1 2006/12/04 09:47:54 jolan Exp $
|
||||
--- minimo/chrome/content/preferences/pane-advanced.xul.orig Fri Nov 10 05:38:18 2006
|
||||
+++ minimo/chrome/content/preferences/pane-advanced.xul Thu Nov 23 19:09:02 2006
|
||||
@@ -1,40 +1,6 @@
|
||||
<?xml version="1.0"?> <!-- -*- Mode: HTML -*- -->
|
||||
-<!-- ***** 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 Minimo.
|
||||
- -
|
||||
- - The Initial Developer of the Original Code is
|
||||
- - Marcio S. Galli
|
||||
- - Portions created by the Initial Developer are Copyright (C) 2005
|
||||
- - the Initial Developer. All Rights Reserved.
|
||||
- -
|
||||
- - Contributor(s):
|
||||
- - Marcio S. Galli <mgalli@geckonnection.com>
|
||||
- -
|
||||
- - 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 LGPL or the GPL. 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 ***** -->
|
||||
+<!-- Mozilla Public License -->
|
||||
+<!-- http://lxr.mozilla.org/mozilla1.8/source/minimo/chrome/content/temporary-license.txt -->
|
||||
|
||||
<!DOCTYPE overlay [
|
||||
<!ENTITY % preferencesDTD SYSTEM "chrome://minimo/locale/preferences.dtd">
|
@ -1,46 +0,0 @@
|
||||
$OpenBSD: patch-minimo_chrome_content_preferences_pane-connection_xul,v 1.1 2006/12/04 09:47:54 jolan Exp $
|
||||
--- minimo/chrome/content/preferences/pane-connection.xul.orig Fri Nov 10 05:38:51 2006
|
||||
+++ minimo/chrome/content/preferences/pane-connection.xul Thu Nov 23 19:09:21 2006
|
||||
@@ -1,40 +1,6 @@
|
||||
<?xml version="1.0"?> <!-- -*- Mode: HTML -*- -->
|
||||
-<!-- ***** 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 Minimo.
|
||||
- -
|
||||
- - The Initial Developer of the Original Code is
|
||||
- - Marcio S. Galli
|
||||
- - Portions created by the Initial Developer are Copyright (C) 2005
|
||||
- - the Initial Developer. All Rights Reserved.
|
||||
- -
|
||||
- - Contributor(s):
|
||||
- - Marcio S. Galli <mgalli@geckonnection.com>
|
||||
- -
|
||||
- - 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 LGPL or the GPL. 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 ***** -->
|
||||
+<!-- Mozilla Public License -->
|
||||
+<!-- http://lxr.mozilla.org/mozilla1.8/source/minimo/chrome/content/temporary-license.txt -->
|
||||
|
||||
<!DOCTYPE overlay [
|
||||
<!ENTITY % preferencesDTD SYSTEM "chrome://minimo/locale/preferences.dtd">
|
@ -1,46 +0,0 @@
|
||||
$OpenBSD: patch-minimo_chrome_content_preferences_pane-general_xul,v 1.1 2006/12/04 09:47:54 jolan Exp $
|
||||
--- minimo/chrome/content/preferences/pane-general.xul.orig Fri Nov 10 05:34:45 2006
|
||||
+++ minimo/chrome/content/preferences/pane-general.xul Thu Nov 23 19:09:33 2006
|
||||
@@ -1,40 +1,6 @@
|
||||
<?xml version="1.0"?> <!-- -*- Mode: HTML -*- -->
|
||||
-<!-- ***** 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 Minimo.
|
||||
- -
|
||||
- - The Initial Developer of the Original Code is
|
||||
- - Marcio S. Galli
|
||||
- - Portions created by the Initial Developer are Copyright (C) 2005
|
||||
- - the Initial Developer. All Rights Reserved.
|
||||
- -
|
||||
- - Contributor(s):
|
||||
- - Marcio S. Galli <mgalli@geckonnection.com>
|
||||
- -
|
||||
- - 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 LGPL or the GPL. 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 ***** -->
|
||||
+<!-- Mozilla Public License -->
|
||||
+<!-- http://lxr.mozilla.org/mozilla1.8/source/minimo/chrome/content/temporary-license.txt -->
|
||||
|
||||
<!DOCTYPE overlay [
|
||||
<!ENTITY % preferencesDTD SYSTEM "chrome://minimo/locale/preferences.dtd">
|
@ -1,46 +0,0 @@
|
||||
$OpenBSD: patch-minimo_chrome_content_preferences_pane-okaycancel_xul,v 1.1 2006/12/04 09:47:54 jolan Exp $
|
||||
--- minimo/chrome/content/preferences/pane-okaycancel.xul.orig Fri Nov 10 05:37:39 2006
|
||||
+++ minimo/chrome/content/preferences/pane-okaycancel.xul Thu Nov 23 19:09:48 2006
|
||||
@@ -1,40 +1,6 @@
|
||||
<?xml version="1.0"?> <!-- -*- Mode: HTML -*- -->
|
||||
-<!-- ***** 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 Minimo.
|
||||
- -
|
||||
- - The Initial Developer of the Original Code is
|
||||
- - Marcio S. Galli
|
||||
- - Portions created by the Initial Developer are Copyright (C) 2005
|
||||
- - the Initial Developer. All Rights Reserved.
|
||||
- -
|
||||
- - Contributor(s):
|
||||
- - Marcio S. Galli <mgalli@geckonnection.com>
|
||||
- -
|
||||
- - 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 LGPL or the GPL. 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 ***** -->
|
||||
+<!-- Mozilla Public License -->
|
||||
+<!-- http://lxr.mozilla.org/mozilla1.8/source/minimo/chrome/content/temporary-license.txt -->
|
||||
|
||||
<!DOCTYPE overlay [
|
||||
<!ENTITY % preferencesDTD SYSTEM "chrome://minimo/locale/preferences.dtd">
|
@ -1,46 +0,0 @@
|
||||
$OpenBSD: patch-minimo_chrome_content_preferences_pane-privacy_xul,v 1.1 2006/12/04 09:47:54 jolan Exp $
|
||||
--- minimo/chrome/content/preferences/pane-privacy.xul.orig Fri Nov 10 05:37:20 2006
|
||||
+++ minimo/chrome/content/preferences/pane-privacy.xul Thu Nov 23 19:10:00 2006
|
||||
@@ -1,40 +1,6 @@
|
||||
<?xml version="1.0"?> <!-- -*- Mode: HTML -*- -->
|
||||
-<!-- ***** 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 Minimo.
|
||||
- -
|
||||
- - The Initial Developer of the Original Code is
|
||||
- - Marcio S. Galli
|
||||
- - Portions created by the Initial Developer are Copyright (C) 2005
|
||||
- - the Initial Developer. All Rights Reserved.
|
||||
- -
|
||||
- - Contributor(s):
|
||||
- - Marcio S. Galli <mgalli@geckonnection.com>
|
||||
- -
|
||||
- - 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 LGPL or the GPL. 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 ***** -->
|
||||
+<!-- Mozilla Public License -->
|
||||
+<!-- http://lxr.mozilla.org/mozilla1.8/source/minimo/chrome/content/temporary-license.txt -->
|
||||
|
||||
<!DOCTYPE overlay [
|
||||
<!ENTITY % preferencesDTD SYSTEM "chrome://minimo/locale/preferences.dtd">
|
@ -1,46 +0,0 @@
|
||||
$OpenBSD: patch-minimo_chrome_content_preferences_preferences_xul,v 1.1 2006/12/04 09:47:54 jolan Exp $
|
||||
--- minimo/chrome/content/preferences/preferences.xul.orig Fri Nov 10 05:10:39 2006
|
||||
+++ minimo/chrome/content/preferences/preferences.xul Thu Nov 23 19:10:12 2006
|
||||
@@ -1,40 +1,6 @@
|
||||
<?xml version="1.0"?> <!-- -*- Mode: HTML -*- -->
|
||||
-<!-- ***** 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 Minimo.
|
||||
- -
|
||||
- - The Initial Developer of the Original Code is
|
||||
- - Marcio S. Galli
|
||||
- - Portions created by the Initial Developer are Copyright (C) 2005
|
||||
- - the Initial Developer. All Rights Reserved.
|
||||
- -
|
||||
- - Contributor(s):
|
||||
- - Marcio S. Galli <mgalli@geckonnection.com>
|
||||
- -
|
||||
- - 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 LGPL or the GPL. 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 ***** -->
|
||||
+<!-- Mozilla Public License -->
|
||||
+<!-- http://lxr.mozilla.org/mozilla1.8/source/minimo/chrome/content/temporary-license.txt -->
|
||||
|
||||
<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
|
||||
<?xml-stylesheet href="chrome://minimo/skin/minimo.css" type="text/css"?>
|
@ -1,48 +0,0 @@
|
||||
$OpenBSD: patch-minimo_chrome_content_rssview_rssblank_xhtml,v 1.1 2006/12/04 09:47:54 jolan Exp $
|
||||
--- minimo/chrome/content/rssview/rssblank.xhtml.orig Tue Jan 31 21:02:12 2006
|
||||
+++ minimo/chrome/content/rssview/rssblank.xhtml Thu Nov 23 19:16:55 2006
|
||||
@@ -1,42 +1,6 @@
|
||||
<?xml version="1.0"?> <!-- -*- Mode: HTML -*- -->
|
||||
-
|
||||
-<!-- ***** 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 Mozilla Communicator client code, released
|
||||
- - March 31, 1998.
|
||||
- -
|
||||
- - The Initial Developer of the Original Code is
|
||||
- - Netscape Communications Corporation.
|
||||
- - Portions created by the Initial Developer are Copyright (C) 1998-2000
|
||||
- - the Initial Developer. All Rights Reserved.
|
||||
- -
|
||||
- - Contributor(s):
|
||||
- - Marcio S. Galli, mgalli@geckonnection.com
|
||||
- -
|
||||
- - 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 ***** -->
|
||||
+<!-- Mozilla Public License -->
|
||||
+<!-- http://lxr.mozilla.org/mozilla1.8/source/minimo/chrome/content/temporary-license.txt -->
|
||||
|
||||
<!DOCTYPE html
|
||||
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
@ -1,47 +0,0 @@
|
||||
$OpenBSD: patch-minimo_chrome_content_rssview_rssload_xhtml,v 1.1 2006/12/04 09:47:54 jolan Exp $
|
||||
--- minimo/chrome/content/rssview/rssload.xhtml.orig Tue Jan 31 21:02:12 2006
|
||||
+++ minimo/chrome/content/rssview/rssload.xhtml Thu Nov 23 19:17:10 2006
|
||||
@@ -1,41 +1,6 @@
|
||||
<?xml version="1.0"?> <!-- -*- Mode: HTML -*- -->
|
||||
-<!-- ***** 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 Mozilla Communicator client code, released
|
||||
- March 31, 1998.
|
||||
-
|
||||
- The Initial Developer of the Original Code is
|
||||
- Netscape Communications Corporation.
|
||||
- Portions created by the Initial Developer are Copyright (C) 1998-2000
|
||||
- the Initial Developer. All Rights Reserved.
|
||||
-
|
||||
- Contributor(s):
|
||||
- Marcio S. Galli, mgalli@geckonnection.com
|
||||
-
|
||||
- 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 ***** -->
|
||||
+<!-- Mozilla Public License -->
|
||||
+<!-- http://lxr.mozilla.org/mozilla1.8/source/minimo/chrome/content/temporary-license.txt -->
|
||||
|
||||
<?xml-stylesheet href="chrome://minimo/skin/rssload/rssload.css" type="text/css"?>
|
||||
<!DOCTYPE rss [
|
@ -1,48 +0,0 @@
|
||||
$OpenBSD: patch-minimo_chrome_content_toolbars_toolbar-download_xul,v 1.1 2006/12/04 09:47:54 jolan Exp $
|
||||
--- minimo/chrome/content/toolbars/toolbar-download.xul.orig Thu May 25 22:50:37 2006
|
||||
+++ minimo/chrome/content/toolbars/toolbar-download.xul Thu Nov 23 19:10:29 2006
|
||||
@@ -1,42 +1,6 @@
|
||||
<?xml version="1.0"?> <!-- -*- Mode: HTML -*- -->
|
||||
-
|
||||
-<!-- ***** 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 Mozilla Communicator client code, released
|
||||
- March 31, 1998.
|
||||
-
|
||||
- The Initial Developer of the Original Code is
|
||||
- Netscape Communications Corporation.
|
||||
- Portions created by the Initial Developer are Copyright (C) 1998-2000
|
||||
- the Initial Developer. All Rights Reserved.
|
||||
-
|
||||
- Contributor(s):
|
||||
- Marcio S. Galli, mgalli@geckonnection.com
|
||||
-
|
||||
- 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 ***** -->
|
||||
+<!-- Mozilla Public License -->
|
||||
+<!-- http://lxr.mozilla.org/mozilla1.8/source/minimo/chrome/content/temporary-license.txt -->
|
||||
|
||||
<!DOCTYPE overlay [
|
||||
<!ENTITY % minimoDTD SYSTEM "chrome://minimo/locale/minimo.dtd" >
|
@ -1,46 +0,0 @@
|
||||
$OpenBSD: patch-minimo_chrome_content_toolbars_toolbar-find_xul,v 1.1 2006/12/04 09:47:54 jolan Exp $
|
||||
--- minimo/chrome/content/toolbars/toolbar-find.xul.orig Tue Oct 3 01:37:03 2006
|
||||
+++ minimo/chrome/content/toolbars/toolbar-find.xul Thu Nov 23 19:10:42 2006
|
||||
@@ -1,40 +1,6 @@
|
||||
<?xml version="1.0"?> <!-- -*- Mode: HTML -*- -->
|
||||
-<!-- ***** 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 Minimo.
|
||||
- -
|
||||
- - The Initial Developer of the Original Code is
|
||||
- - Marcio Galli <mgalli@mgalli.com>
|
||||
- - Portions created by the Initial Developer are Copyright (C) 2005
|
||||
- - the Initial Developer. All Rights Reserved.
|
||||
- -
|
||||
- - Contributor(s):
|
||||
- - Marcio S. Galli <mgalli@mgalli.com>
|
||||
- -
|
||||
- - 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 LGPL or the GPL. 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 ***** -->
|
||||
+<!-- Mozilla Public License -->
|
||||
+<!-- http://lxr.mozilla.org/mozilla1.8/source/minimo/chrome/content/temporary-license.txt -->
|
||||
|
||||
<!DOCTYPE overlay [
|
||||
<!ENTITY % minimoDTD SYSTEM "chrome://minimo/locale/minimo.dtd" >
|
@ -1,55 +0,0 @@
|
||||
$OpenBSD: patch-minimo_chrome_content_toolbars_toolbar-general_xul,v 1.1 2006/12/04 09:47:54 jolan Exp $
|
||||
--- minimo/chrome/content/toolbars/toolbar-general.xul.orig Tue Jan 31 21:02:21 2006
|
||||
+++ minimo/chrome/content/toolbars/toolbar-general.xul Thu Nov 23 19:10:58 2006
|
||||
@@ -1,42 +1,6 @@
|
||||
<?xml version="1.0"?> <!-- -*- Mode: HTML -*- -->
|
||||
-
|
||||
-<!-- ***** 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 Mozilla Communicator client code, released
|
||||
- March 31, 1998.
|
||||
-
|
||||
- The Initial Developer of the Original Code is
|
||||
- Netscape Communications Corporation.
|
||||
- Portions created by the Initial Developer are Copyright (C) 1998-2000
|
||||
- the Initial Developer. All Rights Reserved.
|
||||
-
|
||||
- Contributor(s):
|
||||
- Marcio S. Galli, mgalli@geckonnection.com
|
||||
-
|
||||
- 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 ***** -->
|
||||
+<!-- Mozilla Public License -->
|
||||
+<!-- http://lxr.mozilla.org/mozilla1.8/source/minimo/chrome/content/temporary-license.txt -->
|
||||
|
||||
<!DOCTYPE overlay [
|
||||
<!ENTITY % minimoDTD SYSTEM "chrome://minimo/locale/minimo.dtd" >
|
||||
@@ -75,4 +39,4 @@
|
||||
|
||||
</toolbox>
|
||||
|
||||
-</overlay>
|
||||
\ No newline at end of file
|
||||
+</overlay>
|
@ -1,48 +0,0 @@
|
||||
$OpenBSD: patch-minimo_chrome_content_toolbars_toolbar-pan_xul,v 1.1 2006/12/04 09:47:54 jolan Exp $
|
||||
--- minimo/chrome/content/toolbars/toolbar-pan.xul.orig Mon Feb 20 20:42:27 2006
|
||||
+++ minimo/chrome/content/toolbars/toolbar-pan.xul Thu Nov 23 19:11:15 2006
|
||||
@@ -1,42 +1,6 @@
|
||||
<?xml version="1.0"?> <!-- -*- Mode: HTML -*- -->
|
||||
-
|
||||
-<!-- ***** 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 Mozilla Communicator client code, released
|
||||
- March 31, 1998.
|
||||
-
|
||||
- The Initial Developer of the Original Code is
|
||||
- Netscape Communications Corporation.
|
||||
- Portions created by the Initial Developer are Copyright (C) 1998-2000
|
||||
- the Initial Developer. All Rights Reserved.
|
||||
-
|
||||
- Contributor(s):
|
||||
- Marcio S. Galli, mgalli@geckonnection.com
|
||||
-
|
||||
- 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 ***** -->
|
||||
+<!-- Mozilla Public License -->
|
||||
+<!-- http://lxr.mozilla.org/mozilla1.8/source/minimo/chrome/content/temporary-license.txt -->
|
||||
|
||||
<!DOCTYPE overlay [
|
||||
<!ENTITY % minimoDTD SYSTEM "chrome://minimo/locale/minimo.dtd" >
|
@ -1,49 +0,0 @@
|
||||
$OpenBSD: patch-minimo_chrome_content_toolbars_toolbar-rss_xul,v 1.1 2006/12/04 09:47:54 jolan Exp $
|
||||
--- minimo/chrome/content/toolbars/toolbar-rss.xul.orig Tue Jan 31 21:02:21 2006
|
||||
+++ minimo/chrome/content/toolbars/toolbar-rss.xul Thu Nov 23 19:11:28 2006
|
||||
@@ -1,43 +1,6 @@
|
||||
<?xml version="1.0"?> <!-- -*- Mode: HTML -*- -->
|
||||
-
|
||||
-
|
||||
-<!-- ***** 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 Mozilla Communicator client code, released
|
||||
- March 31, 1998.
|
||||
-
|
||||
- The Initial Developer of the Original Code is
|
||||
- Netscape Communications Corporation.
|
||||
- Portions created by the Initial Developer are Copyright (C) 1998-2000
|
||||
- the Initial Developer. All Rights Reserved.
|
||||
-
|
||||
- Contributor(s):
|
||||
- Marcio S. Galli, mgalli@geckonnection.com
|
||||
-
|
||||
- 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 ***** -->
|
||||
+<!-- Mozilla Public License -->
|
||||
+<!-- http://lxr.mozilla.org/mozilla1.8/source/minimo/chrome/content/temporary-license.txt -->
|
||||
|
||||
<!DOCTYPE overlay [
|
||||
<!ENTITY % minimoDTD SYSTEM "chrome://minimo/locale/minimo.dtd" >
|
@ -1,48 +0,0 @@
|
||||
$OpenBSD: patch-minimo_chrome_content_toolbars_toolbar-search_xul,v 1.1 2006/12/04 09:47:54 jolan Exp $
|
||||
--- minimo/chrome/content/toolbars/toolbar-search.xul.orig Tue Jan 31 21:02:21 2006
|
||||
+++ minimo/chrome/content/toolbars/toolbar-search.xul Thu Nov 23 19:11:40 2006
|
||||
@@ -1,42 +1,6 @@
|
||||
<?xml version="1.0"?> <!-- -*- Mode: HTML -*- -->
|
||||
-
|
||||
-<!-- ***** 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 Mozilla Communicator client code, released
|
||||
- March 31, 1998.
|
||||
-
|
||||
- The Initial Developer of the Original Code is
|
||||
- Netscape Communications Corporation.
|
||||
- Portions created by the Initial Developer are Copyright (C) 1998-2000
|
||||
- the Initial Developer. All Rights Reserved.
|
||||
-
|
||||
- Contributor(s):
|
||||
- Marcio S. Galli, mgalli@geckonnection.com
|
||||
-
|
||||
- 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 ***** -->
|
||||
+<!-- Mozilla Public License -->
|
||||
+<!-- http://lxr.mozilla.org/mozilla1.8/source/minimo/chrome/content/temporary-license.txt -->
|
||||
|
||||
<!DOCTYPE overlay [
|
||||
<!ENTITY % minimoDTD SYSTEM "chrome://minimo/locale/minimo.dtd" >
|
19
www/minimo/patches/patch-parser_expat_lib_xmlparse_c
Normal file
19
www/minimo/patches/patch-parser_expat_lib_xmlparse_c
Normal file
@ -0,0 +1,19 @@
|
||||
$OpenBSD: patch-parser_expat_lib_xmlparse_c,v 1.1 2006/12/27 16:21:59 jolan Exp $
|
||||
--- parser/expat/lib/xmlparse.c.orig Sat Nov 11 00:10:16 2006
|
||||
+++ parser/expat/lib/xmlparse.c Tue Dec 26 19:10:19 2006
|
||||
@@ -1477,6 +1477,7 @@ XML_Parse(XML_Parser parser, const char
|
||||
if (errorCode == XML_ERROR_SUSPENDED) {
|
||||
parseEndByteIndex -= parseEndPtr - eventPtr; /* Remove what we haven't read. */
|
||||
parseEndPtr = bufferPtr = eventPtr;
|
||||
+ bufferEnd = (char*)bufferPtr; /* We'll pass in the same data again later. */
|
||||
XmlUpdatePosition(encoding, positionPtr, eventPtr, &position);
|
||||
return XML_STATUS_ERROR;
|
||||
}
|
||||
@@ -1575,6 +1576,7 @@ XML_ParseBuffer(XML_Parser parser, int l
|
||||
else if (errorCode == XML_ERROR_SUSPENDED) {
|
||||
parseEndByteIndex -= parseEndPtr - eventPtr; /* Remove what we haven't read. */
|
||||
parseEndPtr = bufferPtr = eventPtr;
|
||||
+ bufferEnd = (char*)bufferPtr; /* We'll pass in the same data again later. */
|
||||
XmlUpdatePosition(encoding, positionPtr, eventPtr, &position);
|
||||
return XML_STATUS_ERROR;
|
||||
}
|
Loading…
Reference in New Issue
Block a user