Commit Graph

75380 Commits

Author SHA1 Message Date
beard%netscape.com
d8aa1d2111 Support for hooking up MRJ to browser networking stack. (not part of build yet) 2001-01-25 02:34:17 +00:00
javi%netscape.com
ba74b722f9 Missed this file during my last check-in. 2001-01-25 01:21:27 +00:00
javi%netscape.com
63804c6677 Add Entropy collector support and the ability to load the root certificates
PKCS11 module
2001-01-25 01:14:23 +00:00
dave%intrec.com
fd9e89629d Fix for part 2 of bug 31456: changes the way checksetup.pl handles the localconfig file internally to guarantee proper detection of any variables defined in localconfig (even empty arrays, which it couldn't detect before, in case someone adds one to localcofig at some point) 2001-01-24 23:27:13 +00:00
dave%intrec.com
ae5aeaa50f Fix for bug 30694: adds title attributes to bug links with bug status and description. Patch by jake@acutex.net 2001-01-24 22:24:06 +00:00
dave%intrec.com
051b1fbde9 Fix for bug 65598: check for minimum versions of some of the Perl modules Bugzilla needs. Also check for minimum version of MySQL server on the other end. 2001-01-24 20:31:45 +00:00
dmose%mozilla.org
4c96f21aae patch from bug 17464 to give user some control over what sorts of bug mail get sent to an account. Original patch by al_raetz@yahoo.com and lots of additional hacking by me; r=donm@bluemartini.com 2001-01-24 20:26:24 +00:00
jj%netscape.com
f68ba7d54c backing out an 'if ($flat)' test case which breaks the Mac packaging. 2001-01-24 19:39:53 +00:00
javi%netscape.com
54390f112c Add an entry for the name of the loadable root certs PKCS#11 module. 2001-01-24 19:28:11 +00:00
ccarlen%netscape.com
2cd6eb70a5 NOT PART OF THE BUILD - Changed caller of nsISingleSignon. 2001-01-24 15:51:51 +00:00
ccarlen%netscape.com
39deeb268f Part of bug 35559 - dynamic profile switching. r=morse, sr=alecf 2001-01-24 15:51:00 +00:00
nboyd%atg.com
665f459571 Move Invoker out as a top-level class so that it doesn't get javadoc'd
with FunctionObject (it must be public).
2001-01-24 15:49:21 +00:00
bienvenu%netscape.com
c2aed3d6f8 add offline imap operation support, NOT YET PART OF BUILD 2001-01-24 15:47:56 +00:00
Peter.VanderBeken%pandora.be
ca18afb32e Fixing build bustage on Mac. 2001-01-24 15:45:41 +00:00
nboyd%atg.com
6ddf348d98 Alternative fix for problem in the following email:
Subject:
        minor Rhino bug
   Date:
        Tue, 23 Jan 2001 13:14:51 -0800
   From:
        dave russo <d-russo@ti.com>
     To:
        nboyd@atg.com
    CC:
        d-russo@ti.com




Norris,

While using the new Rhino debugger (from the latest tip) I started to get "No
Context associated with current Thread" exceptions when expanding host objects
in the "Context:" debugger window.

In looking at the code, I discovered that NativeObject.toString seems to assume
that Context.getContext() may return null.  In fact, getContext() always returns
a non-null context or throws an exception.

I changed NativeObject.toString to never throw an exception (see below) and this
eliminated the problem I was seeing (of course).

It would be nice to incorporate this in a future Rhino tip or, if this change is
inappropriate, any guidance would be appreciated.  Thanks in advance.

I changed NativeObject.toString to:

    public String toString() {
        try {
            Context cx = Context.getContext();
            return jsFunction_toString(cx, this, null, null);
        }
        catch (Exception e) {
            return "[object " + getClassName() + "]";
        }
    }

from:

   public String toString() {
        Context cx = Context.getContext();
        if (cx != null)
            return jsFunction_toString(cx, this, null, null);
        else
            return "[object " + getClassName() + "]";
    }
2001-01-24 15:16:37 +00:00
sspitzer%netscape.com
36ccf5c4b9 performance fix for mailnews for. (especially us-ascii users)
skip a lot of expensive code if we don't need to do the conversion.
this will help sorting, scrolling and message display.
there is more work to do on this code for non us-ascii users.
sr=bienvenu
2001-01-24 15:10:08 +00:00
brade%netscape.com
ee79b12867 always absolutize urls in html copy encoder (doing the right thing is covered in bug #32768) 2001-01-24 14:59:57 +00:00
axel%pike.org
ed4ef8883e not part of build, code by peterv, r=me, bugs bugs 65977 & 65978, xslt function lib, + windows bustage 2001-01-24 14:48:48 +00:00
axel%pike.org
3742cbc44f not part of build, code by peterv, r=me, bugs 65977 & 65978, xslt function lib, + windows bustage 2001-01-24 14:44:05 +00:00
neeti%netscape.com
37aa2fa15a fix for bug 44153 - Redirect.xul needs to be removed, r=darin, sr=mscott 2001-01-24 14:04:02 +00:00
Peter.VanderBeken%pandora.be
3381cbb072 Keep LDAP xpcom component compiling after nsIChannel::AsyncWrite interface revision. Not part of the build. 2001-01-24 13:49:55 +00:00
ben%netscape.com
861dde5546 Fix for bug 65108, incorrect positioning of menupopups when menulist/menu as child of
deck page. r=pinkerton@netscape.com, a=hyatt@netscape.com
2001-01-24 08:38:09 +00:00
mscott%netscape.com
0f825d9326 Bug #3700 --> move canRunURLButBusy back inside the if statement
sr=bienvenu
2001-01-24 06:58:07 +00:00
blakeross%telocity.com
009ca07c53 Fix 21515: context menu should have filename after `Save Image...'. patch by doron (doronr@naboonline.com). r=blake sr=alecf 2001-01-24 05:50:35 +00:00
wtc%netscape.com
752be879db Bugzilla bug #66286: link libnss3.so with -R '$ORIGIN' on Solaris so that
it searches for libfreebl_*.so in the same directory where it resides.
As a result, libnss3.so, not libnspr4.so, must be the one calling dlopen,
so libnss3.so can't call PR_LoadLibraryWithFlags.
Modified files: lib/freebl/loader.c, lib/nss/config.mk
2001-01-24 05:26:19 +00:00
cls%seawood.org
1ac4399c71 Fix problem of duplicate entry in DIRS that was breaking distclean. Bug #64521 2001-01-24 04:40:08 +00:00
nelsonb%netscape.com
ad184460a8 Always detect failure of RNG_RNGInit(), which on Solaris and HPUX systems
typically signifies a failure to load the freebl DSO.  Fixes 66229.
r & a = wtc
2001-01-24 04:20:10 +00:00
cls%seawood.org
a72d6e9220 Skip AC_PATH_PROG* checks for win32. r=bryner 2001-01-24 04:08:09 +00:00
javi%netscape.com
deab01007d Don't build cmd directory for mozilla builds. 2001-01-24 03:45:53 +00:00
blakeross%telocity.com
59808e579f Fix 64969: can't drag urls out of message pane or window. r=timeless sr=bienvenu 2001-01-24 03:31:55 +00:00
dave%intrec.com
c9b78f3af8 Fix for bug 31295: use checkbox for votes if only one vote allowed. Also eliminate displaying products with no votes. Patch by Stephan Niemz <st.n@gmx.net> 2001-01-24 02:41:41 +00:00
mkaply%us.ibm.com
ef06713556 r=mkaply, a=blizzard
Remove hardcoded font for DBCS and button
2001-01-24 02:22:06 +00:00
blakeross%telocity.com
ba7e8f62dc Fix 66212: some accessibility/tab order/focus stuff. r=timeless sr=alecf 2001-01-24 02:12:26 +00:00
dave%intrec.com
9f0fd03b44 Fix for bug 45784: URL field truncated at quote marks. Patch by
jake@acutex.net
2001-01-24 01:54:42 +00:00
mkaply%us.ibm.com
8789f6dcf3 r=mkaply, a=blizzard
256 color and print cleanup
2001-01-24 01:49:40 +00:00
dr%netscape.com
1dbdc070e6 fix for 65897 (fixes annoying warning in nsIStyleSet.h) r=saari, sr=waterson 2001-01-24 01:36:03 +00:00
darin%netscape.com
d52027c46e update 2001-01-24 01:33:40 +00:00
darin%netscape.com
ceed3115a3 Ported to WIN32 2001-01-24 01:18:23 +00:00
mkaply%us.ibm.com
8172380790 OS/2 TB Breakage
Need cast, and mkdir to PR_MkDir
2001-01-24 01:12:07 +00:00
mkaply%us.ibm.com
7b5309f180 No bug
r=jkobal, a=blizzard
Remove XP_OS2 codepath so Templates and Unsent Messages work
2001-01-24 00:50:14 +00:00
nhotta%netscape.com
c7f1894b6d Check in for yokoyama, fixing Macintosh bustage. 2001-01-24 00:33:28 +00:00
dbaron%fas.harvard.edu
3b84cb26a3 Change case of #include since filenames are case sensitive on some platforms. 2001-01-23 23:52:37 +00:00
darin%netscape.com
2669eddc1f Fixes speedracer SunOS/Sparc bustage. 2001-01-23 23:40:50 +00:00
dmose%mozilla.org
8209205ab0 fix bug 66238: buggy datasources could indirectly cause the delegates list for a resource to be corrupted. added sanity-checking. r=waterson@netscape.com, sr=alecf@netscape.com 2001-01-23 23:10:53 +00:00
darin%netscape.com
a3a3960c43 Bug 62566. Left out a change to makefile.win. 2001-01-23 22:57:30 +00:00
timeless%mac.com
a94020c762 fix bug 62703 Mail Compose: Need mnemonics for "Attachments" and "Subject"
patch by hwaara@chello.se, r=timeless, sr=alecf
2001-01-23 22:48:46 +00:00
mscott%netscape.com
5af7d75623 clean up some rv error code handling
sr=sspitzer
2001-01-23 22:35:54 +00:00
yokoyama%netscape.com
5b4bb14a66 Fix for 22921; nsIModule code. /sr=ftang 2001-01-23 22:33:22 +00:00
dbaron%fas.harvard.edu
af3077a8d4 Add dbm to REQUIRES to fix MOZ_TRACK_MODULE_DEPS bustage. 2001-01-23 22:30:05 +00:00
av%netscape.com
742e999c4d Part of the 61388 fix. Adding mechanism for refreshing plugin list and reloading the page to DOM, sr=vidur, a=r=jst. 2001-01-23 22:29:41 +00:00