Граф коммитов

44861 Коммитов

Автор SHA1 Сообщение Дата
pavlov%netscape.com 98699dcf00 fix build problems on linux r=hyatt 1999-10-24 09:20:49 +00:00
warren%netscape.com da05e3e465 Fixed logic for XPCOM_MEM_LOG_CLASSES case. 1999-10-24 09:13:52 +00:00
hyatt%netscape.com 349882aa0a chrome registry can now be dynamically built from RDF fragments t=pavlov 1999-10-24 09:00:41 +00:00
hyatt%netscape.com c86abd3ea2 making chrome registry not be a single uber datasource anymore r=pavlov 1999-10-24 07:27:12 +00:00
rpotts%netscape.com 387c490df3 Backing out the fix for bug #15560. This fixes the editor regression - bug #16937 1999-10-24 07:26:54 +00:00
pavlov%netscape.com 6335c82daa rename PrefsWindow.xul so that it can be better friends with the chrome registry r=hyatt 1999-10-24 07:16:45 +00:00
pavlov%netscape.com aeae350d2e rename to be happy with the chrome registry r=hyatt 1999-10-24 07:07:04 +00:00
pavlov%netscape.com 32af1500f1 renaming file to be consistant with chrome registry 1999-10-24 07:00:53 +00:00
hyatt%netscape.com 3b9d1d73f8 make registry work without needing an rdf datasource r=pavlov 1999-10-24 06:59:30 +00:00
hyatt%netscape.com 16aaa7ce49 renaming skin.css to global.css r=pavlov 1999-10-24 06:58:38 +00:00
dp%netscape.com 94d79e100e bug#16742 Fixing delete on nsISupports. Thanks for patch from <heikki@citec.fi> Plus using IMPL_ and DECL_ macros and removing operating on refcnt directly. r=dp 1999-10-24 04:41:17 +00:00
beard%netscape.com fafa4cc750 changed GC_abort() to call ExitToShell() rather than abort(). bug=15906 1999-10-24 03:26:10 +00:00
rods%netscape.com 04f7a46e8f Simple changed from COLOR_DESKTOP to COLOR_APPWORKSPACE for appworkspace enum
for css 2 color setting
fixes bug 16853,r=none
1999-10-24 03:03:38 +00:00
beard%netscape.com 4ca7a2c08b removed obsolete access paths. r=sfraser 1999-10-24 02:45:17 +00:00
varada%netscape.com 7a6b2a493d fix to bug #16981 changed Text field to editbox so that value can be enterred 1999-10-24 02:23:44 +00:00
varada%netscape.com 0c75be1b21 fix to bug#16973 - nci file editor field is made dynamic text - can be changed only using file browsing 1999-10-24 02:18:17 +00:00
varada%netscape.com 3d78b72fd7 fix for bug #7850 - have to call function depend on the Next button on the ini file 1999-10-24 02:04:37 +00:00
ssu%netscape.com 70666ce4ac fixes bugs #15394, #15603, part of #15644, and #15487. r=sgehani. The
xpinstall fileops functions have been updated to perform error detection
as much as it can prior to executing the command.
1999-10-24 01:07:45 +00:00
mscott%netscape.com 04c81869f1 Bug #16927 add GetMessageUrlFromUri to nsIMsgMessageService
r=sspitzer
1999-10-23 23:39:57 +00:00
mscott%netscape.com 2bed8b10d1 Bug #16927 implement GetMessageUrlFromUri
r=sspitzer
1999-10-23 23:39:28 +00:00
troy%netscape.com dac6d1119c Changed nsTextFrame to be derived from nsFrame instead of nsSplittableFrame.
nsTextFrame now has only a next-in-flow pointer and no prev-in-flow pointer.
Subclass nsContinuingTextFrame is used for continuing text frames; it has a
prev-in-flow pointer. This saves 4 bytes
1999-10-23 23:19:14 +00:00
troy%netscape.com ce952b6207 Space reductions for nsTableRowFrame. Changed mInitializedChildren to be a
frame state bit, and changed mMinRowSpan and mRowIndex to be packed into
one 32-bit field. Total savings of 8 bytes per row frame
1999-10-23 23:08:30 +00:00
dp%netscape.com 0733ace331 bug#16742 Fixing delete on nsISupports. Thanks for patch from
<heikki@citec.fi> r=dp
1999-10-23 17:34:55 +00:00
dp%netscape.com 781776f1f8 bug#16742 Fixing delete on nsISupports. Thanks for patch from <heikki@citec.fi> Plus using IMPL_ and DECL_ macros and removing operating on refcnt directly. r=dp 1999-10-23 17:33:29 +00:00
duncan%be.com 2c1bedc3a6 Make profile manager build under BeOS.
r=sspitzer
1999-10-23 17:13:55 +00:00
beard%netscape.com 82b8b6926d never consider code offsets greater than the offset of the instruction, which ensures that the returned file offset is always correct. bug=15906 1999-10-23 15:57:31 +00:00
tbogard%aol.net 19a62eadbc Framed out nsWebBrowser implementation. Basically just added all the interface functions. Code now has a place to live. 1999-10-23 07:56:27 +00:00
tbogard%aol.net 2e241077a6 Added some includes of the interfaces that make up nsCWebBrowser 1999-10-23 07:55:39 +00:00
tbogard%aol.net c8d7e14890 Just changed some comments and function ordering. 1999-10-23 07:51:45 +00:00
jband%netscape.com a2bf64ef64 r=mccabe
Primarily fixes to properly handle nsIXPCSecurityManager vetos of
xpconnect activities.

- The code was not propagating security manager vetos of native wrapping up
through xpconnect internals. So, xpconnect was erroneously masking the
security exception with its own 'failed to convert param' exception.
This effects the signatures of nsXPCWrappedNative::GetNewOrUsedWrapper
and nsXPCWrappedJSClass::GetNewOrUsedClass.

- This propagation also helps with the problem that sometimes interfaces
are not set as [scriptable] and we did not make that clear as the source
of xpconnect's failure to convert a param in calling a method. Now this
specific class of exceptions is indicated in the JS exception object when
this happens.

- Added an explicit call to js_ForceGC on shutdown of xpcshell to aid in
avoiding 'false positives' in leak detection

- Return JS_FALSE rather than JS_TRUE when an exception is thrown in
xpcjsid to make the jsengine notices the exception.

- Move #includes that others added in xpcmodule.cpp to xpcprivate.h in
order to maintain the include conventions of this module.

- Avoid throwing an exception if it represents a security manager veto
and the security manager set an exception already.

- Replace uses of nsCOMTypeInfo<> added by scc with NS_GET_IID macros.

- Fixed a methodname misspelling because reviewers care about stuff
like that :)
1999-10-23 07:20:04 +00:00
tbogard%aol.net e58ac9ffbc Just added support for an NS_IMPL_ISUPPORTS6. 1999-10-23 06:55:45 +00:00
dp%netscape.com 563fe84567 bug# 16742 Fixing delete on nsISupports Thanks for patch from <heikki@citec.fi>. r=dp 1999-10-23 06:15:31 +00:00
dp%netscape.com 143a674875 bug#16742 Fixing delete on nsISupports. Thanks for patch from
<heikki@citec.fi> Plus using IMPL_ and DECL_ macros and removing
operating on refcnt directly. r=dp
1999-10-23 05:45:41 +00:00
dp%netscape.com e1ac244dcc bug#16762 Removing delete on a nsISupports. Thanks to
<heikki@citec.fi> Plus changes to use DECL_ and IMPL_ macros and not
hand define mrefcnt. r=dp
1999-10-23 05:31:46 +00:00
ducarroz%netscape.com e3ea261556 Bug 14258, implement Send Page, R=alecf 1999-10-23 04:51:40 +00:00
dougt%netscape.com 08030792d4 Modification based on design review.
(THIS IS NOT PART OF THE BUILD YET)
1999-10-23 04:51:35 +00:00
ducarroz%netscape.com 5db19c6ffc Bug 14258, implement Send Page. R=alecf 1999-10-23 04:50:20 +00:00
varada%netscape.com 9a7e4da75a fix for bug #10806 1999-10-23 03:41:41 +00:00
varada%netscape.com cd372fff17 fix for bug #5987 1999-10-23 03:30:43 +00:00
warren%netscape.com f7bb01fae9 Fixed warnings. 1999-10-23 03:16:27 +00:00
warren%netscape.com c1533c064c Extended docs to talk about new env vars, and how to read bloat logs. 1999-10-23 03:16:23 +00:00
warren%netscape.com 39ddb330f1 Cleaned up nsTraceRefcnt environment variables. r=kipp,beard 1999-10-23 03:16:19 +00:00
troy%netscape.com 882fb6588b Changed Run() to give priority to system messages when pumping
messsages. These are the same changes that I made to viewer's message
pump on 9/13/99
1999-10-23 03:09:30 +00:00
rickg%netscape.com cb13f11556 fixed infinite-loop bug 17045 by conditioning control loop. r=buster 1999-10-23 03:06:19 +00:00
troy%netscape.com eeb0bee550 Changed Clear() to check for a shared node arena 1999-10-23 03:04:21 +00:00
troy%netscape.com 5f516fdefb Removed a comment 1999-10-23 02:27:07 +00:00
nisheeth%netscape.com 2b68bfc6a2 r=troy. Siblings of frames get traversed iteratively during capturing/restoring of state. Earlier they were traversed recursively which was causing the call stack to grow too large. 1999-10-23 01:43:49 +00:00
slamm%netscape.com 1f43c92e4f Add bloat processing. Cleanup tacky code. 1999-10-23 01:43:28 +00:00
slamm%netscape.com b3d4dc0a25 Take out debug statement. 1999-10-23 01:35:40 +00:00
beard%netscape.com 3c0deccbe9 added line hiliting in -blame mode. 1999-10-23 01:33:42 +00:00