Commit Graph

74967 Commits

Author SHA1 Message Date
blakeross%telocity.com
55f9f54938 Fix 60665: JS strict warnings in pref-search.xul. patch by Mark Olson. r=blake sr=alecf 2001-01-16 23:57:53 +00:00
blakeross%telocity.com
4085bd987d Fix 60667: JS strict warnings in pref-composer.xul. patch by Mark Olson. r=blake sr=alecf 2001-01-16 23:53:27 +00:00
nicolson%netscape.com
7022353f18 remove export controls, and get things to build against NSS 3.1.1 under mozilla. 2001-01-16 23:49:57 +00:00
buster%netscape.com
ac529c9c80 ok, now I think I've got the syntax correct 2001-01-16 23:30:16 +00:00
buster%netscape.com
0244d7d3f8 another try at working out the darn nsCOMPtr comparison for Linux 2001-01-16 23:23:02 +00:00
cmanske%netscape.com
a857fc568d Fix Save enabling in HTML source (b=61996). Part of fix for Composer file menu overlays, b=54584, r=mjudge, sr=smfr 2001-01-16 23:12:22 +00:00
blakeross%telocity.com
223ca8774b Fix 53687: JS strict warnings in profileSelection.js. r=timeless sr=alecf 2001-01-16 23:07:14 +00:00
cmanske%netscape.com
050956738a Part of fix for Composer file menu overlays, b=54584, r=ducarroz, sr=smfr 2001-01-16 23:02:32 +00:00
buster%netscape.com
03e943f0ab stupid friggin' .get() nsCOMPtr incompatibility on linux 2001-01-16 22:54:52 +00:00
rich.burridge%sun.com
bb20fc7276 Fix to allow applet doing POST to an https connection over a proxy to work.
r=pollman@netscape.com
sr=waterson@netscape.com
Bugid #60228
2001-01-16 22:53:39 +00:00
yokoyama%netscape.com
cf33a04493 fixes 58679 Passing Unicode instead. 2001-01-16 22:24:44 +00:00
yokoyama%netscape.com
f59a3b8336 Fixes 58679 and 32056 2001-01-16 22:19:07 +00:00
buster%netscape.com
6a93e50850 bug 56432 ()
the problem was a factorial algorithm for finding primary frames.
fixed by added a hinting mechanism that takes advantage of existing
primary frame cache, greatly reducing the cost for the common case.
r=rods
sr=waterson
2001-01-16 22:10:04 +00:00
morse%netscape.com
e2e4ac628f bug 40122, save-these-values should be prechecked..., r=pnunn@netscape.com, sr=brendan@mozilla.org 2001-01-16 22:05:36 +00:00
cmanske%netscape.com
a5d0bc2b5c Fixed mail overlay for Send Page in Composer. Part of fix for b=54584. r=ducarroz, sr=sfraser 2001-01-16 22:05:15 +00:00
morse%netscape.com
deffcbc76a bug 63493, VCARD_NAME attribute doesn't work, r=matt@netscape.com, sr=hyatt@netscape.com 2001-01-16 22:02:58 +00:00
cmanske%netscape.com
a0a3f20731 Fixing Edit Page bug 65610. r=blake, sr=smfr 2001-01-16 21:57:07 +00:00
jdunn%netscape.com
a9435b2331 Fixing AIX bustage (see SeaMonkey-Ports). FD_ZERO is defined to use bzero, but bzero is
defined in strings.h so am including strings.h

r= dmose@mozilla.org
2001-01-16 21:47:04 +00:00
nicolson%netscape.com
8487361394 remove export controls. 2001-01-16 21:28:32 +00:00
nicolson%netscape.com
e97cf5f08f remove export controls 2001-01-16 21:28:09 +00:00
nicolson%netscape.com
2c533473b6 make JSS buildable. 2001-01-16 21:27:19 +00:00
nicolson%netscape.com
eadf70bda0 make JSS buildable 2001-01-16 21:26:33 +00:00
javi%netscape.com
623041bddc Add Win32 build support for PSM 2.0 2001-01-16 21:16:07 +00:00
dave%intrec.com
27ee8d4837 Fix for bug 32000 (and refixing bug 4928): extra newlines in comments made
with NS4-Mac
2001-01-16 21:09:33 +00:00
dcone%netscape.com
c981d2d0e2 r=dbaron sr=buster. Took out the nsIPrintOptions service registration.. which is not needed. 2001-01-16 21:00:58 +00:00
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