head 1.6; access; symbols pkgsrc-2013Q2:1.6.0.10 pkgsrc-2013Q2-base:1.6 pkgsrc-2012Q4:1.6.0.8 pkgsrc-2012Q4-base:1.6 pkgsrc-2011Q4:1.6.0.6 pkgsrc-2011Q4-base:1.6 pkgsrc-2011Q2:1.6.0.4 pkgsrc-2011Q2-base:1.6 pkgsrc-2009Q4:1.6.0.2 pkgsrc-2009Q4-base:1.6 pkgsrc-2009Q3:1.5.0.18 pkgsrc-2009Q3-base:1.5 pkgsrc-2009Q2:1.5.0.16 pkgsrc-2009Q2-base:1.5 pkgsrc-2009Q1:1.5.0.14 pkgsrc-2009Q1-base:1.5 pkgsrc-2008Q4:1.5.0.12 pkgsrc-2008Q4-base:1.5 pkgsrc-2008Q3:1.5.0.10 pkgsrc-2008Q3-base:1.5 cube-native-xorg:1.5.0.8 cube-native-xorg-base:1.5 pkgsrc-2008Q2:1.5.0.6 pkgsrc-2008Q2-base:1.5 cwrapper:1.5.0.4 pkgsrc-2008Q1:1.5.0.2 pkgsrc-2008Q1-base:1.5 pkgsrc-2007Q4:1.4.0.4 pkgsrc-2007Q4-base:1.4 pkgsrc-2007Q3:1.4.0.2 pkgsrc-2007Q3-base:1.4 pkgsrc-2007Q2:1.3.0.2 pkgsrc-2007Q2-base:1.3 pkgsrc-2007Q1:1.2.0.6 pkgsrc-2007Q1-base:1.2 pkgsrc-2006Q4:1.2.0.4 pkgsrc-2006Q4-base:1.2 pkgsrc-2006Q3:1.2.0.2 pkgsrc-2006Q3-base:1.2 pkgsrc-2006Q2:1.1.1.1.0.2 pkgsrc-2006Q2-base:1.1.1.1 pkgsrc-base:1.1.1.1 TNF:1.1.1; locks; strict; comment @# @; 1.6 date 2009.11.29.00.40.46; author tnn; state dead; branches; next 1.5; 1.5 date 2008.03.30.15.02.41; author ghen; state Exp; branches; next 1.4; 1.4 date 2007.07.26.08.50.17; author ghen; state Exp; branches; next 1.3; 1.3 date 2007.05.31.12.29.38; author ghen; state Exp; branches 1.3.2.1; next 1.2; 1.2 date 2006.07.31.11.58.04; author ghen; state Exp; branches 1.2.6.1; next 1.1; 1.1 date 2006.03.30.19.15.51; author ghen; state Exp; branches 1.1.1.1; next ; 1.3.2.1 date 2007.09.03.23.48.57; author salo; state Exp; branches; next ; 1.2.6.1 date 2007.06.14.00.18.39; author salo; state Exp; branches; next ; 1.1.1.1 date 2006.03.30.19.15.51; author ghen; state Exp; branches 1.1.1.1.2.1; next ; 1.1.1.1.2.1 date 2006.08.01.13.43.56; author salo; state Exp; branches; next ; desc @@ 1.6 log @Update to seamonkey-2.0, from pkgsrc-wip. Hijack maintainership. Many, many changes; the biggest being that it's based on firefox 3.5. For an exhaustive list of changes, see: http://www.seamonkey-project.org/releases/seamonkey2.0/changes @ text @$NetBSD: patch-cn,v 1.5 2008/03/30 15:02:41 ghen Exp $ --- extensions/transformiix/source/xpath/XFormsFunctionCall.cpp.orig 2008-03-13 20:10:21.000000000 +0100 +++ extensions/transformiix/source/xpath/XFormsFunctionCall.cpp @@@@ -108,7 +108,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont res = (res/i); } else { - res = Double::NaN; + res = Double::NaN(); } return aContext->recycler()->getNumberResult(res, aResult); } @@@@ -163,7 +163,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont NS_ENSURE_SUCCESS(rv, rv); PRInt32 result = 0; - double res = Double::NaN; + double res = Double::NaN(); nsresult rv = xformsService->GetDaysFromDateTime(date, &result); if (NS_SUCCEEDED(rv)) { res = result; @@@@ -215,7 +215,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont NS_ENSURE_SUCCESS(rv, rv); PRInt32 index = 0; - double res = Double::NaN; + double res = Double::NaN(); rv = xformsService->GetRepeatIndexById(mNode, indexId, &index); NS_ENSURE_SUCCESS(rv, rv); @@@@ -348,7 +348,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont getter_AddRefs(nodes)); NS_ENSURE_SUCCESS(rv, rv); - double res = Double::NaN; + double res = Double::NaN(); PRInt32 i; for (i = 0; i < nodes->size(); ++i) { double test; @@@@ -356,7 +356,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont txXPathNodeUtils::appendNodeValue(nodes->get(i), resultStr); test = Double::toDouble(resultStr); if (Double::isNaN(test)) { - res = Double::NaN; + res = Double::NaN(); break; } if (test > res || i == 0) { @@@@ -376,7 +376,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont getter_AddRefs(nodes)); NS_ENSURE_SUCCESS(rv, rv); - double res = Double::NaN; + double res = Double::NaN(); PRInt32 i; for (i = 0; i < nodes->size(); ++i) { double test; @@@@ -384,7 +384,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont txXPathNodeUtils::appendNodeValue(nodes->get(i), resultStr); test = Double::toDouble(resultStr); if (Double::isNaN(test)) { - res = Double::NaN; + res = Double::NaN(); break; } if ((test < res) || (i==0)) { @@@@ -407,7 +407,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont NS_ENSURE_SUCCESS(rv, rv); PRInt32 result = 0; - double res = Double::NaN; + double res = Double::NaN(); nsresult rv = xformsService->GetMonths(duration, &result); if (NS_SUCCEEDED(rv)) { res = result; @@@@ -527,7 +527,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont // up the chain return rv; } - res = Double::NaN; + res = Double::NaN(); } return aContext->recycler()->getNumberResult(res, aResult); @@@@ -552,7 +552,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont // up the chain return rv; } - res = Double::NaN; + res = Double::NaN(); } return aContext->recycler()->getNumberResult(res, aResult); @@@@ -634,7 +634,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont // If the result is too large (ERANGE), we consider the result to be kNaN. result = pow(base, exponent); if (errno == EDOM || errno == ERANGE) { - result = Double::NaN; + result = Double::NaN(); } return aContext->recycler()->getNumberResult(result, aResult); @ 1.5 log @Update seamonkey, seamonkey-bin and seamonkey-gtk1 to Seamonkey 1.1.9. Security fixes in this version: MFSA 2008-19 XUL popup spoofing variant (cross-tab popups) MFSA 2008-18 Java socket connection to any local port via LiveConnect MFSA 2008-17 Privacy issue with SSL Client Authentication MFSA 2008-16 HTTP Referrer spoofing with malformed URLs MFSA 2008-15 Crashes with evidence of memory corruption (rv:1.8.1.13) MFSA 2008-14 JavaScript privilege escalation and arbitrary code execution For more info, see http://www.seamonkey-project.org/releases/seamonkey1.1.9/ @ text @d1 1 a1 1 $NetBSD$ @ 1.4 log @Update seamonkey, seamonkey-bin and seamonkey-gtk1 to Seamonkey 1.1.3. Security fixes in this version: MFSA 2007-25 XPCNativeWrapper pollution MFSA 2007-24 Unauthorized access to wyciwyg:// documents MFSA 2007-23 Remote code execution by launching Firefox from Internet Explorer MFSA 2007-22 File type confusion due to %00 in name MFSA 2007-21 Privilege escalation using an event handler attached to an element not in the document MFSA 2007-20 Frame spoofing while window is loading MFSA 2007-19 XSS using addEventListener and setTimeout MFSA 2007-18 Crashes with evidence of memory corruption For more info, see http://www.mozilla.org/projects/seamonkey/releases/seamonkey1.1.3/ @ text @d1 1 a1 1 $NetBSD: patch-cn,v 1.3 2007/05/31 12:29:38 ghen Exp $ d3 1 a3 1 --- extensions/transformiix/source/xpath/XFormsFunctionCall.cpp.orig 2007-05-03 03:37:36.000000000 +0200 d5 1 a5 1 @@@@ -104,7 +104,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d14 1 a14 1 @@@@ -159,7 +159,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d23 1 a23 1 @@@@ -211,7 +211,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d32 1 a32 1 @@@@ -344,7 +344,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d41 1 a41 1 @@@@ -352,7 +352,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d50 1 a50 1 @@@@ -372,7 +372,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d59 1 a59 1 @@@@ -380,7 +380,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d68 1 a68 1 @@@@ -403,7 +403,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d77 1 a77 1 @@@@ -479,7 +479,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d86 1 a86 1 @@@@ -504,7 +504,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d95 9 @ 1.3 log @Update seamonkey, seamonkey-bin and seamonkey-gtk1 to Seamonkey 1.1.2. Security fixes in this version: MFSA 2007-17 XUL Popup Spoofing MFSA 2007-16 XSS using addEventListener MFSA 2007-15 Security Vulnerability in APOP Authentication MFSA 2007-14 Path Abuse in Cookies MFSA 2007-12 Crashes with evidence of memory corruption For the complete changelog, see http://www.mozilla.org/projects/seamonkey/releases/seamonkey1.1.2/changelog.html @ text @d1 1 a1 1 $NetBSD$ d29 1 a29 1 rv = xformsService->GetRepeatIndexById(mResolverNode, indexId, &index); @ 1.3.2.1 log @Pullup ticket 2176 - requested by ghen security update for seamonkey Revisions pulled up: - pkgsrc/www/seamonkey/Makefile-seamonkey.common 1.11, 1.12 - pkgsrc/www/seamonkey/PLIST 1.13 - pkgsrc/www/seamonkey/distinfo 1.23, 1.24 - pkgsrc/www/seamonkey-gtk1/PLIST 1.8 - pkgsrc/www/seamonkey/patches/patch-cn 1.4 - pkgsrc/www/seamonkey-bin/Makefile 1.14, 1.16 - pkgsrc/www/seamonkey-bin/distinfo 1.12, 1.13 Module Name: pkgsrc Committed By: ghen Date: Thu Jul 26 08:50:17 UTC 2007 Modified Files: pkgsrc/www/seamonkey: Makefile-seamonkey.common PLIST distinfo pkgsrc/www/seamonkey-bin: Makefile distinfo pkgsrc/www/seamonkey-gtk1: PLIST pkgsrc/www/seamonkey/patches: patch-cn Log Message: Update seamonkey, seamonkey-bin and seamonkey-gtk1 to Seamonkey 1.1.3. Security fixes in this version: MFSA 2007-25 XPCNativeWrapper pollution MFSA 2007-24 Unauthorized access to wyciwyg:// documents MFSA 2007-23 Remote code execution by launching Firefox from Internet Explorer MFSA 2007-22 File type confusion due to %00 in name MFSA 2007-21 Privilege escalation using an event handler attached to an element not in the document MFSA 2007-20 Frame spoofing while window is loading MFSA 2007-19 XSS using addEventListener and setTimeout MFSA 2007-18 Crashes with evidence of memory corruption For more info, see http://www.mozilla.org/projects/seamonkey/releases/seamonkey1.1.3/ --- Module Name: pkgsrc Committed By: ghen Date: Fri Aug 10 09:23:23 UTC 2007 Modified Files: pkgsrc/www/seamonkey: Makefile-seamonkey.common distinfo pkgsrc/www/seamonkey-bin: Makefile distinfo Log Message: Update seamonkey, seamonkey-bin and seamonkey-gtk1 to Seamonkey 1.1.4. Security fixes in this version: MFSA 2007-27 Unescaped URIs passed to external programs MFSA 2007-26 Privilege escalation through chrome-loaded about:blank windows For more info, see http://www.mozilla.org/projects/seamonkey/releases/seamonkey1.1.4/ @ text @d1 1 a1 1 $NetBSD: patch-cn,v 1.4 2007/07/26 08:50:17 ghen Exp $ d29 1 a29 1 rv = xformsService->GetRepeatIndexById(mNode, indexId, &index); @ 1.2 log @Update the Seamonkey packages to 1.0.3. Changes: * Improved stability * Several security fixes (see below) * A bug was introduced in SeaMonkey 1.0.2 that sometimes caused the URL bar to stop working properly when switching tabs. This has been fixed. (Bug 332874) * If you have more bookmarks on your personal toolbar than there is space for, the ">>" overflow icon will now display more reliably (Bug 338803) * If you choose to update SeaMonkey when it notifies you that an update is available, the update page will load in a more useful browser window (with navigation buttons and toolbars) (Bug 334903) Security fixes: MFSA 2006-56 chrome: scheme loading remote content MFSA 2006-55 Crashes with evidence of memory corruption (rv:1.8.0.5) MFSA 2006-54 XSS with XPCNativeWrapper(window).Function(...) MFSA 2006-53 UniversalBrowserRead privilege escalation MFSA 2006-52 PAC privilege escalation using Function.prototype.call MFSA 2006-51 Privilege escalation using named-functions and redefined "new Object()" MFSA 2006-50 JavaScript engine vulnerabilities MFSA 2006-49 Heap buffer overwrite on malformed VCard MFSA 2006-48 JavaScript new Function race condition MFSA 2006-47 Native DOM methods can be hijacked across domains MFSA 2006-46 Memory corruption with simultaneous events MFSA 2006-45 Javascript navigator Object Vulnerability MFSA 2006-44 Code execution through deleted frame reference For a detailed ChangeLog, see: http://www.mozilla.org/projects/seamonkey/releases/seamonkey1.0.3/changelog.html @ text @d3 1 a3 1 --- extensions/transformiix/source/xpath/XFormsFunctionCall.cpp.orig 2006-06-13 22:58:31.000000000 +0200 d23 1 a23 1 @@@@ -222,7 +222,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d29 1 a29 1 rv = xformsService->GetRepeatIndex(repeatEle, &index); d32 1 a32 1 @@@@ -354,7 +354,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d41 1 a41 1 @@@@ -362,7 +362,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d50 1 a50 1 @@@@ -382,7 +382,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d59 1 a59 1 @@@@ -390,7 +390,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d68 1 a68 1 @@@@ -413,7 +413,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d77 1 a77 1 @@@@ -489,7 +489,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d86 1 a86 1 @@@@ -514,7 +514,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont @ 1.2.6.1 log @Pullup ticket 2108 - requested by ghen security update for seamonkey Revisions pulled up: - pkgsrc/www/seamonkey/Makefile 1.22 - pkgsrc/www/seamonkey/Makefile-seamonkey.common 1.10 - pkgsrc/www/seamonkey/PLIST 1.12 - pkgsrc/www/seamonkey/distinfo 1.21, 1.22 - pkgsrc/www/seamonkey/patches/patch-ab 1.7 - pkgsrc/www/seamonkey/patches/patch-cn 1.3 - pkgsrc/www/seamonkey-gtk1/Makefile 1.15 - pkgsrc/www/seamonkey-gtk1/PLIST 1.7 - pkgsrc/www/seamonkey-bin/Makefile 1.13 - pkgsrc/www/seamonkey-bin/distinfo 1.11 Module Name: pkgsrc Committed By: rillig Date: Sun Apr 15 12:17:06 UTC 2007 Modified Files: pkgsrc/www/seamonkey: distinfo pkgsrc/www/seamonkey/patches: patch-ab Log Message: Fixed the build on Solaris. The same fix is already in patch-ab from www/firefox. --- Module Name: pkgsrc Committed By: ghen Date: Thu May 31 12:29:39 UTC 2007 Modified Files: pkgsrc/www/seamonkey: Makefile Makefile-seamonkey.common PLIST distinfo pkgsrc/www/seamonkey-bin: Makefile distinfo pkgsrc/www/seamonkey-gtk1: Makefile PLIST pkgsrc/www/seamonkey/patches: patch-cn Log Message: Update seamonkey, seamonkey-bin and seamonkey-gtk1 to Seamonkey 1.1.2. Security fixes in this version: MFSA 2007-17 XUL Popup Spoofing MFSA 2007-16 XSS using addEventListener MFSA 2007-15 Security Vulnerability in APOP Authentication MFSA 2007-14 Path Abuse in Cookies MFSA 2007-12 Crashes with evidence of memory corruption For the complete changelog, see http://www.mozilla.org/projects/seamonkey/releases/seamonkey1.1.2/changelog.html @ text @d1 1 a1 1 $NetBSD: patch-cn,v 1.3 2007/05/31 12:29:38 ghen Exp $ d3 1 a3 1 --- extensions/transformiix/source/xpath/XFormsFunctionCall.cpp.orig 2007-05-03 03:37:36.000000000 +0200 d23 1 a23 1 @@@@ -211,7 +211,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d29 1 a29 1 rv = xformsService->GetRepeatIndexById(mResolverNode, indexId, &index); d32 1 a32 1 @@@@ -344,7 +344,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d41 1 a41 1 @@@@ -352,7 +352,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d50 1 a50 1 @@@@ -372,7 +372,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d59 1 a59 1 @@@@ -380,7 +380,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d68 1 a68 1 @@@@ -403,7 +403,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d77 1 a77 1 @@@@ -479,7 +479,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d86 1 a86 1 @@@@ -504,7 +504,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont @ 1.1 log @Initial revision @ text @d3 1 a3 1 --- extensions/transformiix/source/xpath/XFormsFunctionCall.cpp.orig 2005-08-04 23:15:37.000000000 +0200 d23 10 a32 1 @@@@ -345,7 +345,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d41 1 a41 1 @@@@ -353,7 +353,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d50 1 a50 1 @@@@ -373,7 +373,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d59 1 a59 1 @@@@ -381,7 +381,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d68 1 a68 1 @@@@ -404,7 +404,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d77 1 a77 1 @@@@ -480,7 +480,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d86 1 a86 1 @@@@ -505,7 +505,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont @ 1.1.1.1 log @Import Mozilla Seamonkey 1.0 from pkgsrc-wip (gtk2 version). Seamonkey is the community-driven continuation of the Mozilla Suite, which is no longer maintained by Mozilla. @ text @@ 1.1.1.1.2.1 log @Pullup ticket 1766 - requested by ghen security update for seamonkey Revisions pulled up: - pkgsrc/www/seamonkey/Makefile 1.6 - pkgsrc/www/seamonkey/distinfo 1.7, 1.8 - pkgsrc/www/seamonkey/patches/patch-cn 1.2 - pkgsrc/www/seamonkey/patches/patch-dw 1.1 - pkgsrc/www/seamonkey-bin/Makefile 1.4 - pkgsrc/www/seamonkey-bin/distinfo 1.4 - pkgsrc/www/seamonkey-gtk1/Makefile 1.5 Module Name: pkgsrc Committed By: christos Date: Mon Jul 10 13:17:13 UTC 2006 Modified Files: pkgsrc/www/seamonkey: distinfo Added Files: pkgsrc/www/seamonkey/patches: patch-dw Log Message: Make this compile under gcc-4 --- Module Name: pkgsrc Committed By: ghen Date: Mon Jul 31 11:58:04 UTC 2006 Modified Files: pkgsrc/www/seamonkey: Makefile distinfo pkgsrc/www/seamonkey-bin: Makefile distinfo pkgsrc/www/seamonkey-gtk1: Makefile pkgsrc/www/seamonkey/patches: patch-cn Log Message: Update the Seamonkey packages to 1.0.3. Changes: * Improved stability * Several security fixes (see below) * A bug was introduced in SeaMonkey 1.0.2 that sometimes caused the URL bar to stop working properly when switching tabs. This has been fixed. (Bug 332874) * If you have more bookmarks on your personal toolbar than there is space for, the ">>" overflow icon will now display more reliably (Bug 338803) * If you choose to update SeaMonkey when it notifies you that an update is available, the update page will load in a more useful browser window (with navigation buttons and toolbars) (Bug 334903) Security fixes: MFSA 2006-56 chrome: scheme loading remote content MFSA 2006-55 Crashes with evidence of memory corruption (rv:1.8.0.5) MFSA 2006-54 XSS with XPCNativeWrapper(window).Function(...) MFSA 2006-53 UniversalBrowserRead privilege escalation MFSA 2006-52 PAC privilege escalation using Function.prototype.call MFSA 2006-51 Privilege escalation using named-functions and redefined "new Object()" MFSA 2006-50 JavaScript engine vulnerabilities MFSA 2006-49 Heap buffer overwrite on malformed VCard MFSA 2006-48 JavaScript new Function race condition MFSA 2006-47 Native DOM methods can be hijacked across domains MFSA 2006-46 Memory corruption with simultaneous events MFSA 2006-45 Javascript navigator Object Vulnerability MFSA 2006-44 Code execution through deleted frame reference For a detailed ChangeLog, see: http://www.mozilla.org/projects/seamonkey/releases/seamonkey1.0.3/changelog.html @ text @d1 1 a1 1 $NetBSD: patch-cn,v 1.2 2006/07/31 11:58:04 ghen Exp $ d3 1 a3 1 --- extensions/transformiix/source/xpath/XFormsFunctionCall.cpp.orig 2006-06-13 22:58:31.000000000 +0200 d23 1 a23 10 @@@@ -222,7 +222,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont NS_ENSURE_SUCCESS(rv, rv); PRInt32 index = 0; - double res = Double::NaN; + double res = Double::NaN(); rv = xformsService->GetRepeatIndex(repeatEle, &index); NS_ENSURE_SUCCESS(rv, rv); @@@@ -354,7 +354,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d32 1 a32 1 @@@@ -362,7 +362,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d41 1 a41 1 @@@@ -382,7 +382,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d50 1 a50 1 @@@@ -390,7 +390,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d59 1 a59 1 @@@@ -413,7 +413,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d68 1 a68 1 @@@@ -489,7 +489,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont d77 1 a77 1 @@@@ -514,7 +514,7 @@@@ XFormsFunctionCall::evaluate(txIEvalCont @