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

87531 Коммитов

Автор SHA1 Сообщение Дата
av%netscape.com abaa745b20 Bug 97488 -- sample code to reflect new approach to scripting, not part of the build, patch by jband and av, r=av 2001-08-31 23:00:11 +00:00
yokoyama%netscape.com 7abc189caf Bug 40469:
Using proper UTF8toUCS2 converter
r/sr=vidur; /a=asa
2001-08-31 22:56:50 +00:00
sspitzer%netscape.com a5267dbbfe 97487 - breaking up the mail css files, r=mscott, sr=sspitzer, a=asa 2001-08-31 22:50:54 +00:00
varada%netscape.com d2851aee6c fix for regression 95041-new to field for compose window;r=prass;sr=sspitzer;a=asa 2001-08-31 22:48:10 +00:00
ftang%netscape.com abca1ab11b fix bug 56863. r=blizzard sr=jst a=asa
make about:plugins localizable.
2001-08-31 22:47:53 +00:00
blizzard%redhat.com 8bbce1ac46 Bug #95940. Make sure that the embed reload flags are in sync for the widget and the nsIWebNavigation interfaces in a backwards compatible way. r=valeski,sr=shaver, a=asa 2001-08-31 22:47:02 +00:00
ftang%netscape.com 1dfc120636 fix 56863. r=blizzard sr=jst. add plugins.properties to the jar.mn 2001-08-31 22:46:28 +00:00
ftang%netscape.com 52e1de8490 fix bug 56863. add plugins.properties to the list. r=blizzard sr=jst 2001-08-31 22:44:17 +00:00
ftang%netscape.com eb20615f9c fix bug 56863. r=blizzard sr=jst
not part of the build yet, won't break the tree
2001-08-31 22:43:11 +00:00
sspitzer%netscape.com 3d47d80545 removing dead editor files. these moved under mac and win a while ago. r/sr=hewitt 2001-08-31 22:40:29 +00:00
hewitt%netscape.com 5058795b24 97487 - breaking up the mail css files, r=mscott, sr=sspitzer, a=asa 2001-08-31 22:37:44 +00:00
nicolson%netscape.com 20e3a44736 copyright notice. 2001-08-31 22:35:58 +00:00
hewitt%netscape.com 0935ba55d3 97487 - splitting up mail css files, r=mscott, sr=sspitzer, a=asa 2001-08-31 22:34:50 +00:00
sspitzer%netscape.com f69831b1c0 breaking apart EditorToolbars.css into 3 files for performance reasons.
r=manske, sr=hewitt, a=asa #97487
2001-08-31 22:27:06 +00:00
hewitt%netscape.com ed03239baa 97487 - splitting up mail css files, r=mscott, sr=sspitzer, a=asa 2001-08-31 22:20:37 +00:00
sspitzer%netscape.com 9d249e0f9c breaking apart EditorToolbars.css into 3 files for performance reasons.
r=manske, sr=hewitt, a=asa #97487
2001-08-31 22:09:38 +00:00
sspitzer%netscape.com 066344d6b6 breaking apart EditorToolbars.css into 3 files for performance reasons.
r=manske, sr=hewitt, a=asa #97487
2001-08-31 22:04:19 +00:00
jband%netscape.com 328493fcca fix bug 97555. Need to get the correct value of staep into the iterator object when we fail during enumeration init. r=jst sr=brendan a=asa 2001-08-31 21:48:18 +00:00
waterson%netscape.com becc569cc0 Bug 97828. Be sure to create the static component loader before putting it into mLoaderData array. r=dp, sr=jband/sfraser, a=asa 2001-08-31 21:45:58 +00:00
myk%mozilla.org dbd90ba1be Fix for bug 97764: Fixes errant sending of mail on attachment changes to users who do not want to receive mail about their own changes.
Patch by Jake <jake@acutex.net>.
r=myk@mozilla.org; no second review needed.
2001-08-31 21:40:33 +00:00
cmanske%netscape.com 9f5f49e9a5 Fixed getting fileBaseName and fileExtension parts of nsIOService::ExtactUrlPart(), b=97679, r=dougt, sr=darin, a=bizzard for drivers 2001-08-31 21:37:30 +00:00
sgehani%netscape.com 2cccf602c5 Show "homepage override URL" once every time milestone changes even for
existing profiles.

b=97220; r=jag,dveditz; sr=mscott; a=blizzard
2001-08-31 21:34:52 +00:00
brendan%mozilla.org 9e20cb060c 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 8568638f7c 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 f0f8d755b4 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 6eb9617d48 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 06dabe5907 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 13730be4a0 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 0be0db8ee9 tooltip text update, a=asa, b=96030, r=hewitt 2001-08-31 20:41:12 +00:00
evaughan%netscape.com 6ed7436f49 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 49bc44df80 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 a750f52b07 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 3a0465ae86 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 77e18d6b81 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 c9ea0f44cf bug# 97770 fixing tree orange due to crash on unload 2001-08-31 17:45:51 +00:00
zach%zachlipton.com 23212ed017 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 274d2320fa security & privacy help content updates per b=85925, a=asa, r=oeschger 2001-08-31 12:17:32 +00:00
axel%pike.org 54146e0a87 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 1e20411277 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 fc6181609b Back to jrgm server, cowtools not ready yet. r=jrgm 2001-08-31 06:50:15 +00:00
pschwartau%netscape.com 4dd88ab2c3 Corrected testcase so it will work in Rhino as well as SpiderMonkey. 2001-08-31 06:10:13 +00:00
justdave%syndicomm.com 4c94f5c6c3 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 19a5a3e365 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 06026982f0 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 5b59398348 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 41268ed110 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 f728f3273a 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 897fbc85f5 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 34ed0df3d8 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 d8d01abd1a Backing out unapproved checkin for bug 97227. a=brendan,blizzard 2001-08-31 03:45:20 +00:00