Commit Graph

57015 Commits

Author SHA1 Message Date
scc%netscape.com
acb13c54fe Had to add another signature of |AppendWithConversion| 2000-04-01 00:24:32 +00:00
rickg%netscape.com
3a0273649f removed unused includes; fixed addref bug; r=karnaze 2000-04-01 00:23:24 +00:00
mscott%netscape.com
c89735a246 Add mailnews.headers.showUserAgent pref which is a hidden pref we can use to show
the user agent string in the message pane.
2000-04-01 00:20:17 +00:00
nisheeth%netscape.com
e9badbf920 r=troy. Fix for bug 33422. The display style is set to block level for document element frames. The style was defaulting to inline for cases where an XML document did not set a block level display style on the root element. 2000-04-01 00:18:21 +00:00
cmanske%netscape.com
308a5f2143 Improved pavlov's changes to open location dialog. r=pavlov 2000-04-01 00:16:39 +00:00
valeski%netscape.com
8d9f80d627 ditching old string api in preperation for new string stuff 2000-04-01 00:14:31 +00:00
nisheeth%netscape.com
971495476f r=troy. Fix for bugs 8131, 13325.
- We no longer display alternate content for broken images inside image
- We only display the image loading icon during the initial load of an image not if its src attribute is changed via the DOM.
- In AttributeChanged(), se don't call ContentChanged() on the document to reflow the image frame but call the parent frame's ReflowDirtyChild() method instead.
2000-04-01 00:13:51 +00:00
rpallath%eng.sun.com
cb69af2c93 Removing DOMAccessorImpl as it is no longer valid. 2000-04-01 00:07:02 +00:00
harishd%netscape.com
d355779849 Fix for 29048, 28085 - MLKs..
r=nisheeth
2000-04-01 00:05:44 +00:00
akkana%netscape.com
005bd8588b 28598: Do dom linebreak conversion on the string before inserting it in the editor. 2000-04-01 00:04:46 +00:00
rpallath%eng.sun.com
a9b57a5ba1 Added DOMAccessor.java (insted of DOMAccessorImpl)
Added redirect.html
2000-04-01 00:04:15 +00:00
robodan%netscape.com
41f4a8b425 make default build mode be "release" 2000-03-31 23:50:41 +00:00
evaughan%netscape.com
52a7762610 Uninitialized memory fix.
-r scc
2000-03-31 22:41:18 +00:00
wtc%netscape.com
2e24f230da Bugzilla bug #34048: set the fragment names of the DLLs. Thanks to
Simon Fraser <sfraser@netscape.com> for the patch.
2000-03-31 22:21:07 +00:00
beard%netscape.com
83960e5b66 fix for bug #34094: turned on USE_TLS_FOR_TOOLKIT, so only 1 per thread will be used, changed nsAppShell::Create(int* argc, char ** argv) to use NS_GetCurrentToolkit(). This is a total blocker for Mac. r=sfraser 2000-03-31 21:43:34 +00:00
relyea%netscape.com
6836d54003 Remove modutil until we can fix a build problem. 2000-03-31 20:59:58 +00:00
relyea%netscape.com
5ff98f3f5a Adjust jzlib.h acquired for zlib.h to it builds in the .jar file.
Add define in manistet to make it work.
2000-03-31 20:56:10 +00:00
relyea%netscape.com
aee558bb8c Source doesn't setup DIST, it sets up SOURCE! 2000-03-31 20:53:47 +00:00
relyea%netscape.com
a86f4bbdb8 remove an incorrectly checked in file 2000-03-31 20:50:44 +00:00
relyea%netscape.com
477a06c7b1 Create the Security link correctly. 2000-03-31 20:48:55 +00:00
varada%netscape.com
2d4f930492 fix for bug #34089 - customizations werent makeing it in because there were spaces in the directory name - fixed it by appending the quotes before and after the directory name 2000-03-31 20:47:46 +00:00
valeski%netscape.com
5d44d8e64d 33935. r=dougt. I built on all three platforms. I smoketested win and linux, but mac is hanging after profile mgr so I can't verify it. When the CSS loader would try and load a non-existant local css file, we would crash. Now we post the OnComplete() callback asynchronously to the event queue so the CSS loader isn't entered recursively, and life is good again 2000-03-31 20:39:16 +00:00
relyea%netscape.com
9fd7059a19 Initial NSS Open Source checkin 2000-03-31 20:13:40 +00:00
sdv%sparc.spb.su
814dcc76c5 removed org/mozilla/dom/tests from JDIR 2000-03-31 19:22:48 +00:00
robodan%netscape.com
da2999b631 split off old ChangeLog stuff 2000-03-31 19:20:09 +00:00
relyea%netscape.com
8c4b7edd1d Initial NSS Open Source Checkin 2000-03-31 19:16:26 +00:00
robodan%netscape.com
c7560e3856 Added <includeOnce file> 2000-03-31 19:16:09 +00:00
relyea%netscape.com
3302748a42 Initial NSS Open source checkin 2000-03-31 19:14:40 +00:00
waterson%netscape.com
d29d5f9d44 Bug 34061. Fix uninitialized memory problems when called from nsXULDocument::AddSubtreeToDocument(). 2000-03-31 19:01:56 +00:00
relyea%netscape.com
c52dab758c Initial checkin of the NSS build environment for the open source release 2000-03-31 18:56:07 +00:00
edburns%acm.org
98536e5bea Thanks to Andi Eades, and Steffen Grarup for finding and fixing this.
Basically, we were storing a local jobject ref and using it on
 another thread without calling NewGlobalRef.

The fix is below:

cvs diff WindowControlImpl.cpp NativeEventThread.cpp (in directory D:\Projects\mozilla\java\webclient\src_moz\)
Index: WindowControlImpl.cpp
===================================================================
RCS file: /cvsroot/mozilla/java/webclient/src_moz/WindowControlImpl.cpp,v
retrieving revision 1.5
diff -r1.5 WindowControlImpl.cpp
131c131,134
<     initContext->nativeEventThread = nsnull;
---
>     if (nsnull != initContext->nativeEventThread) {
>         ::util_DeleteGlobalRef(env, initContext->nativeEventThread);
>         initContext->nativeEventThread = nsnull;
>     }
Index: NativeEventThread.cpp
===================================================================
RCS file: /cvsroot/mozilla/java/webclient/src_moz/NativeEventThread.cpp,v
retrieving revision 1.7
diff -r1.7 NativeEventThread.cpp
213c213,215
<         initContext->nativeEventThread = obj; // VERY IMPORTANT!!
---
>         initContext->nativeEventThread =
>             ::util_NewGlobalRef(env, obj); // VERY IMPORTANT!!
>

*****CVS exited normally with code 1*****
2000-03-31 17:09:00 +00:00
rods%netscape.com
16297cc967 backing out my changes because of XUL 2000-03-31 15:50:56 +00:00
rods%netscape.com
fed23843df checkbox and radio now use content-box instead of border-box this makes it
more intuitive to add and resize the borders.
b=32102
2000-03-31 15:43:06 +00:00
morse%netscape.com
e9e2380bbb add log-out ability to password manager 2000-03-31 15:41:04 +00:00
jefft%netscape.com
558cf5d1f1 fixed bug 13710 - compact folder for pop3; r=scottip 2000-03-31 15:28:28 +00:00
brade%netscape.com
22da87f7fd add strings for localization of Edit Frame and Edit Frameset 2000-03-31 15:16:47 +00:00
brade%netscape.com
c9409f4f03 add entities for localization of "recent files" 2000-03-31 15:15:19 +00:00
brade%netscape.com
148db8fc49 add doctype to new editor pages 2000-03-31 13:59:14 +00:00
pavlov%netscape.com
1428510268 update some comments 2000-03-31 13:49:15 +00:00
pavlov%netscape.com
c3de885804 use weak refs for the rollup widget instead of doing it the way i was before which was suboptimal 2000-03-31 13:44:44 +00:00
pavlov%netscape.com
8220f002ed fix a circular reference problem 2000-03-31 12:48:41 +00:00
cls%seawood.org
bf81ae3827 Another DLL_SUFFIX change hidden by not clobbering. 2000-03-31 12:05:29 +00:00
cls%seawood.org
f2d454c004 Oops, missed a DLL_SUFFIX that didn't show up in a depend build. 2000-03-31 12:00:41 +00:00
mccabe%netscape.com
bd22a269de Error reporting mechanisms for nsDocShell (xul js and content js) and mosJSComponentLoader (JS components) now pipe error objects to the JavaScript console. 2000-03-31 11:19:51 +00:00
cls%seawood.org
adf25840d6 Please use PR_TRUE & PR_FALSE. Not all C++ compilers support the keywords true & false. 2000-03-31 11:09:28 +00:00
mccabe%netscape.com
817398ee13 Point to the JS Console page from the UI; from tasksOverlay, for now.
Tweak js console javascript, with many added notes

add 'categories I know about so far' to nsIScriptError.idl, as some attempt at documentation.
2000-03-31 10:51:13 +00:00
cls%seawood.org
d22c963309 Moved setting of platform specific DLL_SUFFIX to configure.
Removed old unused WINNT ifdefs from rules.mk.
2000-03-31 10:49:39 +00:00
rickg%netscape.com
e43487c306 fixed silly string usage error 2000-03-31 10:45:55 +00:00
cls%seawood.org
c01f9092ab Slightly munged the os/2 patch. Add else clause before something unknown breaks. 2000-03-31 10:38:58 +00:00
pavlov%netscape.com
c53ec6b0f5 quiet down the unix filepicker 2000-03-31 10:37:12 +00:00