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

87727 Коммитов

Автор SHA1 Сообщение Дата
brendan%mozilla.org 43c254feee Fix 97540, r=rginda, sr=jband, a=asa:
- The most significant fix, to keep JSStackFrame.spbase, the operand stack base pointer for an active frame, null except when there is an operand stack allocated and in use by js_Interpret.  Previously, spbase would point after args and local vars (if any), then advance upon allocation of the (possibly discontiguous) operand stack space.  This made for a fatal ambiguity: js_AllocStack, called by XPConnect, could not tell when there was allocated operand stack space above the frame's sp, which needs to be set to a known (JSVAL_VOID) state for exact GC to work.  Now, the GC doesn't have to mark any operand stack space for a frame whose spbase is null, and js_AllocStack doesn't need to void any unused space for such a frame.

- Fixes to reload the JSRuntime's callHook or executeHook after calling or executing, in case the debugger removes the hook.  In which case, it must clean up any dynamic memory held by hookData, but in any event, in which case the engine must not call the post-call or post-execute hook.

- While debugging with rginda, I was horrified to see his trivial testcase function, expressed as a lambda, fail to be invoked using the "inline_call" machinery in js_Interpret (which avoids js_Interpret recursion through js_Invoke for most JS functions).  The problem was a test of fun->flags == 0 conditioning the /* inline_call: */ code.  Since that test was written, at least one JSFUN_* flag (JSFUN_LAMBDA, used only for pretty-printing or accurate decompilation) has been added.  But all along, that test was an over-optimization (testing against 0 without &'ing certain flags), making for an accident waiting to happen -- which did happen.  The relevant flags are JSFUN_HEAVYWEIGHT (set by the compiler when a function calls eval, uses with, or otherwise needs an activation object for its scope; if lightweight, the compiler can see the function's scope and eliminate it via specialized bytecodes) and JSFUN_BOUND_METHOD (for Java method calls, where |this| binds statically to the instance, not dynamically to the calling expression reference's base object, as in JS).
2001-08-31 21:25:26 +00:00
heikki%netscape.com d2851c3c06 Mac project change for bug 93574, nsLoggingSink and nsHTMLNullSink should not be a part of the optimized build. 2001-08-31 21:24:07 +00:00
harishd%netscape.com 3a9db9a4cb 96031 - Made LI's parent model to be flow entity. This would allow inline elements, such as I,B,FONT, etc., to contain LI such that bullets / numbers would also inherit the parent properties.
93574 -  nsLoggingSink and nsHTMLNullSink  should not be a part of the optimized build. Wrapped 'em under MOZ_DEBUG flag.
r=heikki, sr=vidur, a=asa.
2001-08-31 21:22:16 +00:00
loadrunner%betak.net aabc78626d bug 56304, HTML ja signature displays as garbage in the mail body, r=ducarroz, sr=sspitzer, a=asa 2001-08-31 21:06:18 +00:00
mstoltz%netscape.com 30e6769825 Bug 92061 - allow javascript: URLs to be targeted at about:blank windows.
Relaxing too-strict security policy. r=rginda, sr=jst, a=asa
2001-08-31 21:01:10 +00:00
varada%netscape.com 62e25bc0c0 fix for 79053-regression- sendpage and sendlink should use correct identity;r,sr=sspitzer;a=asa; 2001-08-31 20:49:00 +00:00
oeschger%netscape.com 8e3239caa3 tooltip text update, a=asa, b=96030, r=hewitt 2001-08-31 20:41:12 +00:00
evaughan%netscape.com f74ed8d187 b=83805
r=saari
sr=hyatt
a=dbaron

Fixes a divide by 0 bug in the scrollbar.
2001-08-31 20:37:56 +00:00
dcone%netscape.com c6428ad877 b=97461 r=rods sr=attinasi a=chofmann. Look for null device and will exit with error if it is null 2001-08-31 20:15:34 +00:00
waterson%netscape.com 07f0145166 Bug 55086. Be sure to position child views, too! r=dbaron, sr=attinasi, a=blizzard. 2001-08-31 20:14:31 +00:00
mcafee%netscape.com fa95d765b7 Fixing test for BuildTag, we weren't pulling by date in the normal case 2001-08-31 19:36:35 +00:00
peterlubczynski%netscape.com 77c2a61134 Patch to fix incorrect coordinates to first call of SetWindow(), bug 97656 r=av sr=attinasi a=asa 2001-08-31 18:28:04 +00:00
dp%netscape.com 58b3da2562 bug# 97770 fixing tree orange due to crash on unload 2001-08-31 17:45:51 +00:00
zach%zachlipton.com 9b8c05870c Adding runtests.sh and 1.t to start the testing suite. No bug has been
filed on this issue. NOT_PART_OF_BUILD.
2001-08-31 17:41:38 +00:00
cotter%netscape.com 254bffb0ba security & privacy help content updates per b=85925, a=asa, r=oeschger 2001-08-31 12:17:32 +00:00
axel%pike.org d01c24b0aa fix for bug 97581, <xsl:variable name="foo" /> needs to be "", r=peterv, sr=jst, a=dbaron 2001-08-31 08:55:04 +00:00
rpotts%netscape.com e7d8a18ab8 removed default value from FlushPendingEvents(...) boolean argument. This was introduced by the patch for bug #97227 2001-08-31 08:13:16 +00:00
mcafee%netscape.com 617858c15d Back to jrgm server, cowtools not ready yet. r=jrgm 2001-08-31 06:50:15 +00:00
pschwartau%netscape.com f37dffb52a Corrected testcase so it will work in Rhino as well as SpiderMonkey. 2001-08-31 06:10:13 +00:00
justdave%syndicomm.com 81b1f6784d Fix for bug 97721: Bugzilla now requires Perl 5.005 (previous requirement was Perl 5.004). This is due to the use of Template Toolkit for templatizing the pages for easier local customization. The new attachment tracker that was checked in earlier tonight uses the templates. Also included on this patch is a check for AppConfig, which is a prerequisite for Template Toolkit, because the Makefile.PL for Template Toolkit won't run without it, and it doesn't tell CPAN that it has prereqs, which causes confusion if you're installing from CPAN.
Patch by Dave Miller <justdave@syndicomm.com>
r= myk@mozilla.org
2001-08-31 06:08:43 +00:00
justdave%syndicomm.com ba27f45272 Fix for bug 75840: syncshadowdb -syncall now properly shuts down Bugzilla during the sync process so mysql doesn't get overloaded while the tables are locked. This patch also adds some funtionality to the script to allow you to specify an alternate temp directory on the command line, in case you have a large database and need it made to a different filesystem for space reasons.
Patch by Dawn Endico <endico@mozilla.org> and Jake Steenhagen <jake@acutex.net>
r= justdave@syndicomm.com
2001-08-31 05:49:01 +00:00
nelsonb%netscape.com a8fd9268d1 Allow the 5 new DHE cipher suites to be selected with the -c command line
option.  Facilitates testing of bug 95987.
2001-08-31 04:29:45 +00:00
dbaron%fas.harvard.edu be938a64b6 Undoing backout of bug 97227 because valeski and rpotts insist. I guess drivers aren't doing approvals after all. 2001-08-31 04:28:26 +00:00
myk%mozilla.org e13d19a446 Fix for bug 84338: initial implementation of attachment tracker, which lets users flag attachments with statuses.
Patch by Myk Melez <myk@mozilla.org>
r=justdave@syndicomm.com
2001-08-31 04:19:32 +00:00
cmanske%netscape.com 14df94e2a6 Fixed convert to table bugs in Composr, b=82404,82408,82409,96839 r=brade, sr=kin, a=dbaron 2001-08-31 04:09:23 +00:00
mstoltz%netscape.com c6704e1401 Bug 92955 - Option to disable window.open from onLoad/onUnload event
handlers. r=harishd@netscape.com, sr=jst@netscape.com, a=brendan@mozilla.org
2001-08-31 04:06:39 +00:00
myk%mozilla.org 0228e535c8 Fix for bug 84338: initial implementation of attachment tracker, which lets users flag attachments with statuses.
Patch by Myk Melez <myk@mozilla.org>
r=justdave@syndicomm.com
2001-08-31 03:54:37 +00:00
dbaron%fas.harvard.edu 5434e861aa Backing out unapproved checkin for bug 97227. a=brendan,blizzard 2001-08-31 03:45:20 +00:00
mkaply%us.ibm.com 127076b934 #64594
r=mkaply, sr=blizzard, a=asa for drivers
OS/2 only - do the right thing when cancel is pressed in print dialog
2001-08-31 03:12:16 +00:00
kaie%netscape.com ae172dc462 b=94026 r=law sr=hewitt a=dbaron
Changing UI string
2001-08-31 03:10:35 +00:00
mkaply%us.ibm.com a092f888a3 No bug
r=mkaply, sr=blizzard, a=asa for drivers
OS/2 only - don't use bitmap fonts on printers
2001-08-31 03:10:26 +00:00
mkaply%us.ibm.com 73056e6adc #58637
r=mkaply, sr=blizzard, a=asa for drivers
OS/2 only - The best UTF-8/Unicode support we can do
2001-08-31 03:08:10 +00:00
mkaply%us.ibm.com 9e11d1a8f1 #62175
r=mkaply, sr=blizzard, a=asa for drivers
OS/2 only - Code from Javier - more font rewrite - better parsing of names
2001-08-31 03:06:33 +00:00
jst%netscape.com fa57f58228 Fixing bug 82027, problems with accessing window.history[x] from JS. r=mstoltz@netscape.com, sr=jband@netscape.com a=dbaron@fas.harvard.edu 2001-08-31 02:36:45 +00:00
rpotts%netscape.com d6657f6a11 fixed typo from checkin for bug #97227 2001-08-31 02:30:34 +00:00
ddrinan%netscape.com 05a970ea4f Checking in for rangansen. Bug 96646 - hardcoded string. r=ddrinan,sr=hewitt,a=dbaron 2001-08-31 02:30:27 +00:00
ddrinan%netscape.com 51047ce90f Checking in for rangansen. Bug 94179 - password quality meter broken. r=jrgm,sr=hewitt,a=dbaron 2001-08-31 02:25:14 +00:00
ddrinan%netscape.com 04b248b033 Checking in for walk84. Bug 91799 - add align=center to fix layout problem. r=rangansen,sr=hewitt,a=dbaron 2001-08-31 02:15:48 +00:00
ddrinan%netscape.com f7165d9ca3 Check in for rangansen. Bug 91453 - double click on cert container text. r=ddrinan,sr=hewitt,a=dbaron 2001-08-31 02:10:00 +00:00
heikki%netscape.com 441896a2b3 Bug 96459, bug 96307 and Bugscape 8288. Implement readyState and onreadystatechange members to enable progress indicators for download. Make it possible to call send() again in onload without crashing. Send load event only after everything done (was sent too early if XML errors). Make some functions throw error if called at the wrong time (match IE). Make it possible to build SOAP again (patch from peterv, r=heikki). r=harishd, sr=vidur, a=asa. 2001-08-31 00:59:19 +00:00
rpotts%netscape.com 28fa0cd179 fix build bustage from bug #97227 2001-08-31 00:49:30 +00:00
myk%mozilla.org fa5bdf3a03 Fix for bug 26189: "cannot view images with lxr". The image-handling code was running too early and didn't have access to the "raw" URL parameter by which images get displayed.
Patch by Dawn Endico <endico@mozilla.org>
r=myk@mozilla.org
2001-08-31 00:46:09 +00:00
bryner%netscape.com 03d1a24137 Bug 97518 - for fast-update, do a regular checkout of NSS since it's on a static tag. r=cls, a=asa. 2001-08-31 00:36:37 +00:00
relyea%netscape.com cd0c0014e9 Fix solaris build breakage: make functions in pk11pars.h static (at least until I can move them into their own library). 2001-08-31 00:34:55 +00:00
relyea%netscape.com b551f36ebb 1) Add the necessary code so that AddModule functions again.
2) Add code to create secmod.db on the fly again.
3) Fix uninitialized structures so that we can switch to the fips token.

The results of this checkin should allow the fips tests to pass again.
2001-08-31 00:20:47 +00:00
hewitt%netscape.com 30a625ae9a 74886 - need classic and modern icons for news message with attachment, a=dbaron 2001-08-31 00:14:41 +00:00
hewitt%netscape.com 292c232309 83222 - offline:Mac - GUI - offline indicator hidden in message window, r=ben, sr=hyatt, a=dbaron 2001-08-31 00:12:56 +00:00
hewitt%netscape.com 45196eb8a9 88970 - Need icons for newsgroup pane icons for messages which have been downloaded for offline use, r=blake, sr=sspitzer, a=dbaron 2001-08-31 00:08:06 +00:00
mcafee%netscape.com 51ff776c44 switching layout server. r=jrgm 2001-08-30 23:59:47 +00:00
rpotts%netscape.com cd0a674b08 fix build bustage from bug #97227 2001-08-30 23:35:50 +00:00