Commit Graph

54886 Commits

Author SHA1 Message Date
tbogard%aol.net
50d8a10c8c Use the docShell APIs for initializing/ creating the docShell/ webshell object. 2000-03-11 00:20:07 +00:00
tbogard%aol.net
67dc75ac74 nsIDocumentLoaderObserver function declarations now use the XPIDL macro. 2000-03-11 00:19:38 +00:00
tbogard%aol.net
9167609e43 Removed dependency on nsBrowserWindow.h 2000-03-11 00:18:20 +00:00
tbogard%aol.net
26eb0883a4 GetContentViewer from DocShell instead of webShell. 2000-03-11 00:17:52 +00:00
tbogard%aol.net
7aa966acf2 Use the docShell APIs to navigate through children of the docShell. 2000-03-11 00:14:50 +00:00
tbogard%aol.net
4464d0aad3 Changed to retrieve the contentViewer from the docShell APIs instead of the webShell's. 2000-03-11 00:13:10 +00:00
tbogard%aol.net
5b6f1f3d6a Removed nsMenuItem.cpp as it is no longer used. 2000-03-11 00:12:08 +00:00
tbogard%aol.net
e6c80aa9de Remove nsMenuItem.cpp as it is no longer needed. 2000-03-11 00:10:50 +00:00
terry%mozilla.org
110d75d308 Sigh. We now need to lock the attachments table, too, just in case a
midair collision happens which needs to generate text which needs to
look at the attachments table.  Sigh.
2000-03-10 22:26:55 +00:00
dmose%mozilla.org
69c76eb434 updated to reflect that only specific versions of GD.pm and Chart will work. 2000-03-10 21:44:42 +00:00
norris%netscape.com
b1bb0c6e43 Make Wrapper an API class. 2000-03-10 20:55:36 +00:00
norris%netscape.com
26943a61bb Add support for testing against the MS VM. 2000-03-10 20:38:57 +00:00
rginda%netscape.com
a17c7ec492 Put the redirect back in. (Doh) 2000-03-10 19:12:53 +00:00
rginda%netscape.com
c66d2fe108 Removing debug output 2000-03-10 19:06:36 +00:00
rginda%netscape.com
f0ce2b2a73 Fix lame syntax error 2000-03-10 18:58:45 +00:00
rginda%netscape.com
0ce1875c14 Modified jsDriver.pl to allow multiple engine arguments, updated readme to tell the world. 2000-03-10 18:54:21 +00:00
rginda%netscape.com
f4d1a0f805 Initial add of Function Expression/Statement tests 2000-03-10 18:31:04 +00:00
terry%mozilla.org
cf8092c7e4 Whoops; left out the "mailto:" part of a mailto link. 2000-03-10 18:26:23 +00:00
terry%mozilla.org
fe49673050 Italicize the "Additional Comments From" stuff, so that you can tell
the difference between new comments and people copying stuff in from
old comments.
2000-03-10 18:01:32 +00:00
terry%mozilla.org
4143031dbc Removed warning. 2000-03-10 17:45:09 +00:00
terry%mozilla.org
773a62e7d8 Never let ", <, or > be matched as part of a URL. 2000-03-10 16:52:37 +00:00
terry%mozilla.org
7b49e812c3 Patch by Joe Robins <jmrobins@tgix.com> -- allow automatic definition
of a group per project, and automatically put new bugs against that
project into that group, thus allowing entire projects to be protected
against viewing by unauthorized users.  This is all optional,
controlled by new parameters.
2000-03-10 16:25:03 +00:00
tomk%mitre.org
8e10327628 Same fix as before, better comment in header. 2000-03-10 12:06:45 +00:00
tomk%mitre.org
52a3003216 Fixed a bug in String::indexOf(const String& data, Int32 offset) where there
was not value being returned.  This class is not part of the regular Mozilla
Build.
2000-03-10 12:02:31 +00:00
scc%netscape.com
7b543c486c Incremental changes. Modified the strategy for nested |nsPromiseConcatenation| objects. Changed the type of the fragment identifier in a fragment. These files are not part of the build. 2000-03-10 07:04:09 +00:00
jevering%netscape.com
f0398a8427 this is valeski in jevering's tree. a=jevering. r=ltabb (nice!), r=vidur. forcing cache bypass for inline JS url loads. this is a workaround, not a final fix 2000-03-10 06:25:13 +00:00
rods%netscape.com
13e98e285d combo needed to set the maxElementSize correctly when reflowing.
b=31072 r=buster a=jar
2000-03-10 04:46:16 +00:00
sford3%swbell.net
7d015dae5f Fixing bug 28079, localization help, r/a=ben@netscape.com 2000-03-10 03:11:56 +00:00
putterman%netscape.com
5dde7f68d3 a=phil. r=alecf. Fix for 31121. You can now delete a message in a local subfolder. 2000-03-10 03:03:04 +00:00
mcafee%netscape.com
a8bb38e511 Added AliveTest variable for tinder-config.pl, fixed MailNewsTest. r=slamm 2000-03-10 02:48:01 +00:00
scc%netscape.com
4d17a62278 Incremental changes, renamed |nsConcatString| to |nsPromiseConcatenation|. Added |nsPromiseSubstring|. Got rid of upper/lower signatures. Added |Assign|. Fixed comparison macros. Added |operator+=| and |operator=|. These files are not part of the build. 2000-03-10 02:30:14 +00:00
mccabe%netscape.com
3f8b45f3f4 Replace some ternary expressions
step += (InLeapYear(t) ? 29 : 28);

with the form

    if (InLeapYear(t))
        step += 29;
    else
        step += 28;

to work around an apparent JRE bug in which the code always returns 28.
2000-03-10 02:05:41 +00:00
jst%netscape.com
4c01b9bde8 Checking in fix for PDT+ bug 17489, now the HTML content sink correctly notifies the document about new content that apper after style/link tags that appear in the document content and not in the document head. r=vidur@netscape.com, a=jevering@netscape.com 2000-03-10 02:00:42 +00:00
rhp%netscape.com
9018c8dbc2 Fix problem with inline display - Bug #: 31238 - r: mscott - a: phil 2000-03-10 01:56:55 +00:00
ben%netscape.com
95ee571b85 ok so I checked in a slightly older version of the files I should have checked in last night.
also including some more slight CSS tweaks. a=jevering, r=german, johng
2000-03-10 01:44:05 +00:00
tajima%eng.sun.com
3ecba57c7d Fix for 17419. a=bobj@netscape.com, r=ftang@netscape.com 2000-03-10 01:30:07 +00:00
dbragg%netscape.com
2e39119016 Fix for bug 30903 a=leger r=dveditz 2000-03-10 01:23:06 +00:00
buster%netscape.com
d8df80eb99 bug 28553
r=troy
a=rickg
2000-03-10 01:10:44 +00:00
beard%netscape.com
3d929551f5 now includes all of the optimizer classes 2000-03-10 01:05:28 +00:00
norris%netscape.com
c567ae6df2 javadoc comment. 2000-03-10 01:03:59 +00:00
beard%netscape.com
789e50b184 imports js.mcp.xml into js-all.mcp 2000-03-10 01:03:58 +00:00
mcafee%netscape.com
2ab398d4b4 Missing arg to mailnewstest call. 2000-03-10 00:56:36 +00:00
pinkerton%netscape.com
8dd96dfa11 fix for 31267. call oncreate handler for the help menu as well. r=don, a=jar. 2000-03-10 00:28:32 +00:00
ben%netscape.com
dd79cc915b darn it, forgot to change the broadcaster with my r=don, a=jevering menu change last night 2000-03-10 00:22:02 +00:00
norris%netscape.com
d121bdcda7 Fix command line 2000-03-09 23:33:06 +00:00
ftang%netscape.com
30cf34d6dd fix 31029. r=waterson, a=bobj. Make the MapEncoding function return "UTF-8" as default so we will create a nsIUnicodeDecoder for the receiving data. 2000-03-09 23:31:19 +00:00
pollmann%netscape.com
796c8b1ff9 Bug 28988: Don't try to submit a form if the window containing it has been destroyed (crash fix) r=waqar, a=rickg 2000-03-09 23:30:57 +00:00
edburns%acm.org
20a7194058 r=ashuk
a=edburns
bug=31253

This change doesn't impact SeaMonkey.

Move the initialization of the nativeWebShell ptr into a superclass.
2000-03-09 23:22:52 +00:00
norris%netscape.com
6b2aea0f90 Add html page for the NervousText applet. 2000-03-09 23:06:54 +00:00
wtc%netscape.com
e9764dcb4f Bugzilla bug #30746: added a new test primblok.c to show that NSPR I/O
functions will hang when the primordial thread calls a native blocking
function.
Added file: primblok.c
Modified files: Makefile, Makefile.in, runtests.ksh
2000-03-09 22:45:42 +00:00