Commit Graph

74942 Commits

Author SHA1 Message Date
blakeross%telocity.com
9c504971f1 Fix 60633: JS strict warnings in fieldMapImport.js. patch by Mark Olson. r=timeless sr=mscott 2001-01-16 20:32:38 +00:00
nboyd%atg.com
08a188c69b Subject:
[Fwd: My Mistake in ScriptRuntime method]]]
   Date:
        Tue, 16 Jan 2001 15:48:26 +0100
   From:
        Igor Bukanov <igor@icesoft.no>
     To:
        Norris Boyd <nboyd@atg.com>




Hi, Norris!

With my previous patch to fix in
org/mozilla/javascript/ScriptRuntime.java Integer.MIN_VALUE as index
problem I also added a bug to the unrelated code: I tried to minimize
object creation and unfortunately that untested "optimization" slippet
into my patch as well.

I replaced the lines 290, 291 in toNumber(String s) method from

String sub = s.substring(start, end+1);
if (sub.equals("Infinity"))

to

if (s.regionMatches(start, "Infinity", 0, 8))

But that should be
if (start + 7 == end && s.regionMatches(start, "Infinity", 0, 8))

Sory for troubles, Igor





290c290
<             if (s.regionMatches(start, "Infinity", 0, 8))
---
>             if (start + 7 == end && s.regionMatches(start, "Infinity", 0, 8))
2001-01-16 20:20:36 +00:00
racham%netscape.com
86b8efd7cb Fixing bug 60652. Fixing a js warning. Patch by Mark Olson. r=timeless, sr=mscott 2001-01-16 19:54:21 +00:00
pavlov%netscape.com
bf7a55b81f move the defines outside the ifdefs 2001-01-16 19:31:24 +00:00
nboyd%atg.com
b3d6830b8b Expand tutorial. 2001-01-16 15:24:23 +00:00
timeless%mac.com
e9da351526 fix bug 60666 javascript strict warnings in pref-search.js
+ agressive cleanup. patch from maolson@earthlink.net r=timeless a=ben
2001-01-16 06:52:07 +00:00
blakeross%telocity.com
f0ad64231e Fix 60657: JS strict warnings in preftree.xul. r=timeless a=ben 2001-01-16 03:57:04 +00:00
timeless%mac.com
1f9d8fd7d1 fux byg 64593 javascript strict warnings in nsTreeUtils.js
patch by maolson@earthlink.net r=timeless a=ben
2001-01-16 03:36:20 +00:00
blakeross%telocity.com
027e4d6dd3 Fix 65025: scrollbars in Mac Classic are wrong color. patch by lordpixel. r=blake sr=blizzard 2001-01-16 01:39:44 +00:00
blakeross%telocity.com
c72ba88ee8 Fix 65025: scrollbars in Mac Classic are wrong color. patch by lordpixel. r=blake sr=blizzard 2001-01-16 01:27:20 +00:00
mkaply%us.ibm.com
dca31efd5c r=mkaply, a=blizzard
Bring OS/2 helpers up to current level
2001-01-16 00:09:58 +00:00
colin%theblakes.com
86d4d4a62f Make sure we set the length in the case of a clipboard copy failure.
b=65070 r=pavlov r=blizzard
2001-01-15 23:52:08 +00:00
mkaply%us.ibm.com
a0c7c6814f r=cls
Missing makefiles in allmakefiles.sh and themes/makefiles
2001-01-15 23:48:51 +00:00
axel%pike.org
7e7bcc475c make client.mk get modules.mk changes on the first run, r=cls@seawood.org 2001-01-15 15:29:10 +00:00
mkaply%us.ibm.com
3efe8144c4 r=cls
SHORT_LIBNAME not needed here anymore - gkplugin is 8 chars - fixes OS/2 fullscreen plugins
2001-01-15 15:09:32 +00:00
pierre%netscape.com
1adf408be1 Initializes a menuHandle to nil before sending it in an event. I don't have a bug report for that. I don't even remember what it is for. This fix has been sitting for months in my tree. 2001-01-15 14:26:30 +00:00
koehler%mythrium.com
5ed565360d Bug 9863. That's a patch I forgot in the last one. Again just BeOS stuff. 2001-01-15 03:39:10 +00:00
koehler%mythrium.com
1cb87c4af8 Removing unused files under BeOS. Part of Bug 9863.
BeOS only code.
2001-01-14 18:22:18 +00:00
timeless%mac.com
441998fa74 fix bug 64919 "Install PSM" should be removed from the Debug menu
patch from simmo@mailandnews.com r=timeless a=ben
2001-01-14 08:56:54 +00:00
disttsc%bart.nl
ed1cd1d6be Fix default page loaded at start-up for the case where the browser was started with command line parameters. bug=64526, r=timeless, a=ben 2001-01-14 07:37:11 +00:00
timeless%mac.com
df98a7b6d7 J:\DOCUMENT\Josh\LOCALS~1\Temp\1\4 2001-01-14 07:14:25 +00:00
pavlov%netscape.com
d06021ca43 ifdef undef ... endif 2001-01-14 06:13:17 +00:00
pavlov%netscape.com
442f4c8422 !@E!@#!@# 2001-01-14 05:31:26 +00:00
pavlov%netscape.com
959c93b903 use gdk to draw decoded images to the root window :-) 2001-01-14 02:48:58 +00:00
cls%seawood.org
9d67f27bdd Add support for the zip package format.
Use zip/unzip to copy the files on BeOS as tar & cp do not appear to preserve BeOS' special file attributes.
Added *.stub (BeOS) to the strip exclusion list.
Set STRIP_FLAGS to -g for BeOS.
2001-01-14 01:43:08 +00:00
nboyd%atg.com
4d54695ee1 Fix 64788 Make method invocation 10x faster with following code.... 2001-01-14 01:19:58 +00:00
pavlov%netscape.com
0a981f36f2 use memcpy for the data 2001-01-14 01:08:01 +00:00
disttsc%bart.nl
0992dc7dae Fix c++ comment in c file 2001-01-14 00:58:06 +00:00
dcone%netscape.com
05b735c271 The locking and unlocking controls some optimization of the image.. like the DIB. r=kmmclusk sr=buster 2001-01-13 22:26:18 +00:00
dbaron%fas.harvard.edu
10345e7670 Add file for morse with correct case: bug 52523, sorting for cookie-manager and password-manager, r=saari@netscape.com, sr=brendan@netscape.com 2001-01-13 18:49:35 +00:00
morse%netscape.com
3b1bc8701e bug 52523, sorting for cookie-manager and password-manager, r=saari@netscape.com, sr=brendan@netscape.com 2001-01-13 17:39:40 +00:00
bienvenu%netscape.com
aaf3888a41 add offline msg display r=sspitzer, sr=,mscott 41751 2001-01-13 15:31:30 +00:00
bienvenu%netscape.com
d4501f4b46 add offline msg display r=sspitzer, sr=,mscott 41751, finish support for memory cache 2001-01-13 15:29:51 +00:00
bienvenu%netscape.com
de30bd017a fix right click save on image, offline msg r=sspitzer,sr=mscott 2001-01-13 15:27:46 +00:00
cls%seawood.org
6989669119 Preliminary implementation of nsClipBoard for BeOS. Text/unicode copy-n-paste work but html needs some work.
Thanks to Takashi Toyoshima <toyoshim@be-in.org> for the patch.
Bug #65100 r=cls
2001-01-13 07:56:36 +00:00
dprice%netscape.com
1deb763795 busted linux, backing out. 2001-01-13 07:24:24 +00:00
dprice%netscape.com
3feac174eb BUG 63013 changes to the makefile to enable string factoring tests run on windows.
Changes return code of test program on failure.  Added all-tests:: rule to makefile
2001-01-13 07:06:03 +00:00
dprice%netscape.com
423dade490 BUG 63013 Removes the STAND_ALONE_STRING_TESTS flag, sr=scc 2001-01-13 07:03:35 +00:00
disttsc%bart.nl
879801f0ef Fix bug 64412: security warning dialogs must be dismissed twice. r=pollman, a=ben 2001-01-13 06:42:16 +00:00
cls%seawood.org
79ff2227f2 Make sure that we initialize the netPostive variables used in association with imported bookmarks. Marking importing bookmarks work on BeOS.
Thanks to Takashi Toyoshima <toyoshim@be-in.org> for the patch.
Bug #65185. r=cls
2001-01-13 05:28:12 +00:00
bryner%uiuc.edu
d82ae9d79f Only build the xpcom sample component if ENABLE_TESTS is set (or only if DISABLE_TESTS isn't set, on windows). sr=cls. 2001-01-13 05:26:02 +00:00
cls%seawood.org
99abd536a1 Make sure to use netPositive variables instead of IE ones.
Thanks to Takashi Toyoshima <toyohim@be-in.org> for the patch.
Bug #65131 r=cls
2001-01-13 04:59:43 +00:00
disttsc%bart.nl
0091d9e20f Fix minor goof, patch by John Morisson <jrgm@netscape.com>, r=me, a=ben 2001-01-13 03:54:46 +00:00
pavlov%netscape.com
b2cad21092 renaming nsIImage to nsIImage2 for now... 2001-01-13 02:59:24 +00:00
nelsonb%netscape.com
edc48f136d Send SSL 3.x alert records when a version mismatch occurs.
Use the other party's version number to decide which alert to send.
Bug 65142.  R&A: relyea.
2001-01-13 02:32:39 +00:00
nelsonb%netscape.com
14c87961d5 Add implementation of SSL_RSA_WITH_RC4_128_SHA SSL3 cipher suite,
which is not enabled by default.  Bug 59795.
2001-01-13 02:05:15 +00:00
nelsonb%netscape.com
d5ae266115 Remove all vestiges of old pre-NSS socks client implementation from NSS.
Bug 51471.
2001-01-13 01:52:59 +00:00
jst%netscape.com
045cc1a30d Fixing bug 58285. The various scroll methods on the window object need to flush pending layout notifications so that the presentation is up-to-date when the scolling is done. r=heikki@netscape.com, r=pollmann@netscape.com, sr=vidur@netscape.com 2001-01-13 01:51:45 +00:00
danm%netscape.com
c30ab11584 fix position and zoom state persistence for bm-find.xul and history.xul. bug 65262 (32148) r=ben,mscott,pchen 2001-01-13 01:25:42 +00:00
sspitzer%netscape.com
3f93bd4a9a fix for #65019. fix provided by hwaara@chello.se. r=sspitzer, sr=bienvenu 2001-01-13 01:18:40 +00:00