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

115113 Коммитов

Автор SHA1 Сообщение Дата
justdave%syndicomm.com 695b26c770 Bug 193286: Field validation errors had the wrong page title
r= gerv, a= justdave
2003-02-15 08:03:51 +00:00
jake%bugzilla.org d97c6a548f Add a little page telling people where the win32 instructions went (NOTE: This file is not generated by Bugzilla-Guide.sgml). 2003-02-15 06:12:28 +00:00
wtc%netscape.com 43ac537225 Bug 193055: the "cat ${file} | while read ...do ... done" construct does
not work under MKS Korn shell on Windows XP.  Replaced it by the equivalent
construct "while read ... do ... done < ${file}".
2003-02-15 04:48:13 +00:00
mkaply%us.ibm.com fdb4a6ca04 OS/2 only packaging bustage - Mistake with checkin for 106161 causing installing over old Os/2 builds to fail 2003-02-15 02:23:39 +00:00
relyea%netscape.com b13bd23954 Bug 167756. Address Nelson's review comments. remove socket specific latency
in favor of a slot specific latency test (already done by pk11wrap code).
2003-02-15 01:21:25 +00:00
relyea%netscape.com ff5dbf2eed bug193367: Don't blindly copy all the certs from a given S/MIME message into the db. 2003-02-15 00:23:04 +00:00
jake%bugzilla.org 180093b685 <edition/> is not included by default in ldp.dsl so putting version information into the <title/> tag.
This has the added benifit that the version will appear at the top of each .html (and the top of each page on the .pdf version generated by tldp.org).
2003-02-15 00:05:55 +00:00
igor%mir2.org c0bc03b5bf Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=191276 :
The reason for the bug was that omj/optimizer/Optimizer.java when optimizing code for this[name] (see GETELEM switch, line 665) assumed a number context for GETELEM index node unconditionally which is wrong.

The fix uses number context only if [] argument is known for sure to be a number.
2003-02-14 23:56:34 +00:00
igor%mir2.org 41b3e5345d Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=192288 :
The bug was caused by a double call to Codegen.addNumberConstant, the first
time correctly from Codegen.visitLiteral and the second time wrongfully from
the loop in emitConstantDudeInitializers where loop index should be used
instead of calling addNumberConstant. As addNumberConstant would return the
same index for same numbers, the bug surfaces only with NaN as
addNumberConstant does not recognizes already added NaN. The bug also visible
only with optimization set to 1 or higher since only then constant folding can
produce NaN literal.

The fix removes the second call to addNumberConstant and uses
ScriptRuntime.NaNobj for NaNs.
2003-02-14 23:53:32 +00:00
igor%mir2.org 23e626144d Make ScriptRuntime.NaN, ScriptRuntime.NaNobj and ScriptRuntime.negativeZero static final again as now a workaround for MS JVM uses Double.longBitsToDouble to get the necessary values. 2003-02-14 23:51:28 +00:00
igor%mir2.org fa68d2fa82 I made Context.codeBug public so optimizer can use it. 2003-02-14 23:47:11 +00:00
igor%mir2.org 7f8725b63d Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=192105 :
The reason for the bug is that emitDirectConstructor generates code to call
setPrototype twice instead of setPrototype/setParentScope pair during new JS
object construction. The fix replaces that setup by a single call to
BaseFunction.createObject which is used by Interpreter as well.
2003-02-14 22:38:49 +00:00
pschwartau%netscape.com c0b15587c8 Removing skip since bug 191633 has been fixed. 2003-02-14 22:37:21 +00:00
igor%mir2.org 448e323877 Optimization: In OptFunctionNode.getDirectCallParameterSignature use static strings for common cases of 0, 1 and 2 direct parameters. 2003-02-14 22:36:58 +00:00
jkeiser%netscape.com ea491eb824 Make mousey events targeted properly at textnodes (bug 185889, bug 103055), fix client-side image maps (bug 110072), r=saari@netscape.com, sr=bryner@netscape.com, a=dbaron@dbaron.org 2003-02-14 21:43:06 +00:00
mikep%oeone.com 0921b456eb Removing incorrect comments. 2003-02-14 21:40:25 +00:00
mikep%oeone.com 81465269b9 Fixing bug 193388. Calendar was editing the global event object, which edited the event's actual time, and changed it even when pressing cancel in edit. 2003-02-14 21:39:28 +00:00
sonja.mirtitsch%sun.com bf0426a4ab bug 193394, change to check returncode of modutil after switching to
fips mode, r=wtc
2003-02-14 21:30:45 +00:00
mostafah%oeone.com 49d5b2f7a8 Better way to addref 2003-02-14 21:14:42 +00:00
mostafah%oeone.com 5c286de98e Windows needs stdlib.h too. 2003-02-14 21:03:09 +00:00
igor%mir2.org 9245b512bf Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=191633 :
Replace tail recursion in TokenStream.getToken by a loop.
2003-02-14 20:20:46 +00:00
igor%mir2.org 13732c460e Mostly cosmetics: use consistent layout for case statements and add additional {} block around main code in TokenStream.getToken() so the following patch to fix http://bugzilla.mozilla.org/show_bug.cgi?id=191633 will be small. 2003-02-14 20:19:07 +00:00
mostafah%oeone.com e54739121d Fixed Bug Don't use std::* in mozilla 2003-02-14 18:05:46 +00:00
igor%mir2.org edac1d4aee Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=191668 :
Integration of LineBuffer into TokenStream code which now uses a special buffer for unreading of several chars to follow SM more closely. In this way there is no problem with a possible backtracking of 3 chars on failed attempt to match <!-- at the last minus.

TokenStream is also modified to accept a string with a source directly which avoids the need to construct intermediate StringReader in Context and allows to remove DebugReader class which is replaced by a simple function to read all Reader data into string.
2003-02-14 17:09:19 +00:00
igor%mir2.org cd30738141 Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=192226 :
Codegen.visitRegularCall should not try to apply the simple call optimization
when firstArgDone is true indicating directly called function. The patch also
replaces generation of code to call new Object[0] by loading the
ScripRuntime.emptyArgs field.
2003-02-14 16:55:40 +00:00
igor%mir2.org ed08275994 Use x instanceof Type checks in place of x.getClass() = TypeClass as instanceof is significantly faster then calling getClass. 2003-02-14 16:53:14 +00:00
blizzard%redhat.com 656eca1e1c Bug #185160. Crashes due to uninitialized drawing area. Patch from robin.lu@sun.com. Cleaned up by me. Not part of the default build. 2003-02-14 15:11:42 +00:00
mostafah%oeone.com 8caa75e69d Added missing Addref 2003-02-14 15:11:00 +00:00
brade%netscape.com 2c5b734cac add comments, remove warnings, cancel mLoadBlankDocTimer to prevent crash, disable animation of images (bugs 191392, 192976, 191166) r=smfr, kin, brade; a=asa (mLoadBlankDocTimer portion originally submitted by cmanske@netscape.com) 2003-02-14 14:56:32 +00:00
mikep%oeone.com 318f665c38 More localization fixes, changing dialog box side for localCalDialog and making localCalDialog and serverDialog persist their width and height. 2003-02-14 14:33:13 +00:00
blizzard%redhat.com 7842e85063 Bug #192718. mozilla-xremote-client links against xpcom when it doesn't need to (round 2.) r/a=dbaron 2003-02-14 13:17:50 +00:00
neil%parkwaycc.co.uk 16015d3292 Bug 192299 Editing a page when browsing a named anchor should strip off anchor name from url r=brade sr=sfraser a=asa 2003-02-14 11:56:49 +00:00
neil%parkwaycc.co.uk 6136c59eb6 Bug 185790 Impossible to remove JavaScript Events in Composer r=brade sr=sfraser a=asa 2003-02-14 11:42:10 +00:00
bbaetz%acm.org 21cadf4331 Bug 192531 - Bugzilla not properly closing DB statement handles
Change code to work arround a perl < 5.8 leak when localising the tied
statement attributes. Also, clear the sql statestack compat stuff so that
the handles are really dead by the time we disconnect

r,a=justdave
2003-02-14 10:37:43 +00:00
neil%parkwaycc.co.uk 1b19156a4e Bug 82547 patch allows Composer to catch mouse events on some form elements r=glazman sr=kin a=asa 2003-02-14 09:59:51 +00:00
aaronl%netscape.com c76fd928f5 Bug 191413. Little text changes to keynav pref panel. r=jatin, sr=oeschger, a=dbaron 2003-02-14 07:52:00 +00:00
aaronl%netscape.com 666010cc13 Bug 189775. First keypress cancels currently playing sound. r=neil, sr=alecf, a=dbaron 2003-02-14 07:50:09 +00:00
aaronl%netscape.com 6d84cd4786 Bug 189193. With find as you type, don't search text docs for links. r=kyle, sr=henry jia, a=dbaron. Bug 190555. Weird find as you type behavior in framed pages. r=caillon, sr=jst, a=dbaron 2003-02-14 07:47:40 +00:00
wtc%netscape.com 74b8cae5f0 There should be no token after #endif. 2003-02-14 05:32:35 +00:00
jst%netscape.com 128d89851d Fixing bug 189494. Making window.frames replaceable. r=fabian@guisset.org, sr=peterv@netscape.com, a=asa@mozilla.org 2003-02-14 01:59:52 +00:00
sicking%bigfoot.com d915628044 Bug 174713: Make XPath on HTML documents behave consistently and HTML-ish. This makes the XPath-functions name() and local-name() return upper-case names and makes nametests case-insensitive.
r=peterv sr=jst a=asa
2003-02-14 00:59:40 +00:00
ccarlen%netscape.com 67201ac107 Bug 193078 - cookies file loses entries if you switch to a new profile and then quit. r=mvl@exedo.nl/sr=darin/a=asa 2003-02-14 00:32:57 +00:00
shliang%netscape.com c9c71ba4f0 121998 no secondary highlight color for treerows in aqua/mac classic theme. r=sgehani, sr=jag, a=asa 2003-02-13 23:10:18 +00:00
shliang%netscape.com 89a3c12c27 142148 fix sort widget in sidebar addressbook. r=cavin, sr=sspitzer, a=asa 2003-02-13 23:08:10 +00:00
shliang%netscape.com e49692b42d hook up help for popup blocking pref panel. r=danm, sr=jag, a=dbaron 2003-02-13 23:04:42 +00:00
aaronl%netscape.com 924503d747 Bug 166504. Crash when closing down with accessibility running because of late object release from third party apps. r=jgaunt, sr=jst, a=dbaron 2003-02-13 22:56:18 +00:00
darin%netscape.com 03f838a435 fixes bug 189965 "ANY connection error treated as TCP RST, resulting in "the document contains no data" [was: Yahoo - The connection was refused when attempting to contact rd.yahoo.com]" r=wtc sr=bz a=dbaron 2003-02-13 21:33:58 +00:00
blizzard%redhat.com d0bb1d97f1 Bug #193061. Install the ssl libs into the system dir. Not part of the default build. 2003-02-13 21:10:36 +00:00
pkw%us.ibm.com a434b75dfd Bug 163744 - Error message displayed in terminal during startup from
command-line on machines which do no have the GNU md5sum program.
r=bryner@netscape.com, a=asa@mozilla.org
2003-02-13 20:30:52 +00:00
seawood%netscape.com f6923c6c32 Avoid packaging symlinks in the sdk on *x builds.
Bug #192828 r=leaf a=asa
2003-02-13 20:25:42 +00:00