brendan%mozilla.org
71041a5d9d
- Move left-associative binary tree flattening from the post-order position
...
in js_FoldConstants where it was added (suboptimally: it worked, but it ran
so late that js_FoldConstants recursion was not reduced, only js_EmitTree
recursion), to NewBinary, where it avoids JSParseNode allocations up front
and reduces recursion in all parse-tree walking.
- This change enables js_FoldConstants to see a very long concatenation of
string literals as a PN_LIST node, so it can quickly concatenate without
running afoul of O(n^2) problems inherent in js_ConcatStrings applied to
two atomized strings (the old way of folding string concatenations, still
used for any pairwise string literal concatenation).
- Further optimize the first change for the second by having NewBinary set a
new pn_strcat flag (overlaying the pn_extra field) of the PN_LIST arm of
the JSParseNode.pn_u union, whenever it sees at least one string literal in
a concatenation that might be folded (whose operands might all be constants
of string or number type).
- Notes:
- only string and number constants are folded (not boolean or null
constants);
- only all-constant left-associated binary expression chains are folded,
so 2 * foo * 3 is not folded using commutativity of * over numbers, nor
is "hi" + " there" + foo folded to "hi there" + foo.
- gcc3.2 -O and objdump -x say I added 708 bytes of instructions with this
change. I tried to keep it down to what was necessary for common script;
I don't think JS needs an optimizing-compiler-strength constant folder,
and I don't think this 1K bloat is too high a price to pay for this fix.
But I'll certainly work on reducing footprint elsewhere, if I can.
- Bug 174341, r=shaver.
2003-02-27 23:04:46 +00:00
jkeiser%netscape.com
f9119b08cb
Make click+hold right-click menu work again on Mac (bug 193799), r=bryner/saari, sr=jst
2003-02-27 22:59:08 +00:00
cavin%netscape.com
47ad5ffffc
Fix for 183111. Added nsIExternalProtocolHandler interface and method handlerExists in netwerk/bae/public to be used by mozTXTToHTMLConv. Also treated 0xA0 as space in mozTXTToHTMLConv. r=darin, sr=sspitzer.
2003-02-27 22:46:42 +00:00
burnus%gmx.de
4bff0b94d6
180692 - enter_bug shows keywords option even if keywords are disabled
...
Fix broken tree.
r,a=justdave
2003-02-27 22:45:02 +00:00
harishd%netscape.com
9985e2bb3e
Make sure to resolve place-holder-array-type. b=192141, r=rayw@netscape.com, sr=vidur@netscape.com.
...
The target namespace on <schema> should be applied to <element> if and only if <element> is qualified. b=192972. r=rayw@netscape.com , sr=jst@netscape.com .
Fixed a few warnings.
*** NOT PART OF THE BUILD ***
2003-02-27 22:36:42 +00:00
bryner%netscape.com
2219499eda
For limiting exported symbols on OS X, use -exported_symbols_list instead of nmedit, if it's available. Also, don't run nmedit for debug builds. Bug 195186, r=cls.
2003-02-27 22:32:05 +00:00
lpham%netscape.com
4099b84091
update to Mozilla 1.4a bugzilla #194078 r=ycalonje, sr=granrose, a=blanket
2003-02-27 22:27:31 +00:00
harishd%netscape.com
46a6b1cf15
Do not open head context if <script> is in the body context. b=194329, r=heikki, sr=jst
2003-02-27 22:26:00 +00:00
sspitzer%netscape.com
4fbe71dec9
moving the palm readme, for robinf. r=ssu
2003-02-27 22:19:56 +00:00
rogerl%netscape.com
b73b9b73c0
Linux build clean-up.
2003-02-27 22:03:13 +00:00
pschwartau%netscape.com
241d155290
Get JS standalone building with Makefile.ref on Mac OSX (195134, r=cls). Not part of browser build.
2003-02-27 21:52:13 +00:00
burnus%gmx.de
c03ce5f67f
Bug 180692 - enter_bug shows keywords option even if keywords are disabled
...
r=bbaetz, a=justdave
2003-02-27 21:13:30 +00:00
chanial%noos.fr
9c3b9e0612
Bug 192447: correctly disable the Advanced button when js is disabled.
...
original patch by norority.
2003-02-27 18:53:51 +00:00
rogerl%netscape.com
407f5b970f
Multiple ECMA fixes.
2003-02-27 18:37:07 +00:00
chanial%noos.fr
7946afa5b2
making extension creator's life easier by reusing Mozilla's id for the browser <hbox> and by adding a <vbox id="appcontent"> enclosing the content.
2003-02-27 17:17:00 +00:00
sspitzer%netscape.com
02042d1a41
fix for bug #195085 .
...
"stale" account manager prefs can lead to problems with the compose window
and view navigation. thanks to smaug@jippii.fi for find the bug, and doing the fix.
r/sr=sspitzer
2003-02-27 15:58:15 +00:00
sspitzer%netscape.com
ceb96f1a3a
fix for bug #191891 . hang when typing in the in the junk log (or filter log) window.
...
don't allow type ahead find in these "browser" windows.
r=aaronl, sr=bienvenu
2003-02-27 15:22:22 +00:00
cbiesinger%web.de
23e0302b1f
urg, fix typo
2003-02-27 15:09:39 +00:00
pkw%us.ibm.com
9e86402a9f
Bug 193376 - Account Manager uses random value for ISP's domain if not set.
...
r/sr=sspitzer@netscape.com
2003-02-27 15:01:03 +00:00
kin%netscape.com
54e564e2a5
Fix for bug 191762 (dragged image doesn't land where it's dropped)
...
editor/libeditor/base/nsSelectionState.cpp
- Reworked the logic in SelAdjJoinNodes() to avoid adding aOldLeftNodeLength twice to the calculated offset when the start/end node is the parent.
editor/libeditor/html/nsHTMLDataTransfer.cpp
editor/libeditor/text/nsPlaintextDataTransfer.cpp
- Modified the InsertFromDrop() to use an nsAutoTrackDOMPoint, instead of relying on range gravity, to calculate the correct insert position after deleting the current selection.
r=jfrancis@netscape.com sr=sfraser@netscape.com
2003-02-27 14:53:03 +00:00
wtc%netscape.com
d31cd6e89d
Bug 195196: fixed a typo.
2003-02-27 14:49:30 +00:00
brade%netscape.com
191c65b718
allow editors to edit documents which contain iframes (bug 193902, r=cmanske, sr=smfr)
2003-02-27 14:06:29 +00:00
cbiesinger%web.de
b12a4c4241
97324 r=peterl/jst sr=jst/bz nsContentDLF.cpp should not use a static list of image types; also: 192023 Make DocLoaderFactories a service
2003-02-27 13:51:55 +00:00
andreas.otte%debitel.net
7bea6bdccb
fix bug 193477 [URL: colon ":" in URI is escaped in request (not scheme or port delimiter)] no longer escape the colon when it is part of the filename in urls, but force it's escape in links when building dir/index listings, r=bbaetz@acm.org, sr=darin@netscape.com
2003-02-27 13:15:19 +00:00
bbaetz%acm.org
97a27562cb
Bug 195137 - Keywords are not sent in new bug mail
...
r,a=justdave
2003-02-27 12:51:58 +00:00
andreas.otte%debitel.net
869bb24c30
fix bug 191638 [index/html: files|dirs with "%" need to be properly encoded] force escape of % as part of filenames to %25 to not be damaged by unescape, r=bbaetz@acm.org, sr=darin@netscape.com
2003-02-27 10:55:01 +00:00
kyle.yuan%sun.com
19e835f23a
Bug 166319 support getCharacterExtents for nsIAccessibleText
...
r=kyle.yuan, sr=henry.jia
Patch by simford.dong@sun.com
2003-02-27 10:07:58 +00:00
neil%parkwaycc.co.uk
9575d10cc6
Bug 192013 Command updating far too slow r=brade r=cavin sr=sspitzer
2003-02-27 09:41:40 +00:00
seawood%netscape.com
5f17543f54
Make gmake shut up about enter/leaving directories for the version test when building from client.mk. Bug #194670
2003-02-27 06:37:08 +00:00
chanial%noos.fr
6af74cd604
bug 192447: Cannot disable JavaScript with new UI
...
original idea by noririty.
2003-02-27 06:06:37 +00:00
seawood%netscape.com
505acdf961
Not so automated update
2003-02-27 04:46:21 +00:00
wtc%netscape.com
9f136c7673
Removed obsolete PR_CLIENT_BUILD and PR_CLIENT_BUILD_UNIX make variables.
2003-02-27 04:13:19 +00:00
wtc%netscape.com
9e3cd5ab84
Removed unused file module.df.
2003-02-27 03:29:42 +00:00
mkaply%us.ibm.com
5340bc50bc
IRIX bustage
2003-02-27 03:21:25 +00:00
alecf%netscape.com
4c7a87ec6f
fix assertions from bug 190020, sr=bz, r=dmose
2003-02-27 03:05:43 +00:00
seawood%netscape.com
0f8ec4866b
Make NO_DIST_INSTALL really not touch $(DIST)/.
...
Bug #190581 r=bryner
2003-02-27 02:53:46 +00:00
seawood%netscape.com
dac0e97a9e
Use builtin MAKE_VERSION variable instead of --version output to check GNU make version since the syntax of --version changed between minor releases.
...
Bug #194670 r=bryner
2003-02-27 02:49:11 +00:00
seawood%netscape.com
a3cec745da
Force in-tree zlib to be built using -fPIC.
...
Re-order linking of mozilla-bin & viewer so that TK_LIBS, which bring in an implicit dependency upon the system zlib on Darwin, is linked in after the in-tree version of zlib.
Bug #194662 r=pavlov
2003-02-27 02:21:59 +00:00
aaronl%netscape.com
3d10d6c7cf
Bug 192211. Clean up accessible menu events. r=kyle, sr=bryner
2003-02-27 02:08:06 +00:00
aaronl%netscape.com
743f5bf616
Bug 193803. Expose iframes correctly in accessibility apis, fix iframe events. r=kyle, sr=henry
2003-02-27 02:04:43 +00:00
smontagu%netscape.com
1cf695921f
Remove unused file. Bug 178951, r=ftang, sr=roc+moz.
2003-02-27 02:00:35 +00:00
aaronl%netscape.com
c1e0b59d22
Bug 193797. Accessibility cleanup and fixes for <select>. r=kyle, sr=henry
2003-02-27 01:51:13 +00:00
smontagu%netscape.com
1cd0516fd2
Whitespace change to note that the previous checkin was for bug 188759.
2003-02-27 01:51:04 +00:00
peterlubczynski%netscape.com
487d0c2bf5
Adding masks for gcc3 and Mach-O builds for NPAPI variables that pass interface pointers, bug 182117 r=beard,cls sr=sfraser
2003-02-27 01:47:53 +00:00
smontagu%netscape.com
d86ee253ff
Ensure that the buffer offset in nsTextTransformer::GetNextWord is correctly positioned after transforming ligatures. Bug 1888759, r/sr=rbs.
2003-02-27 01:47:44 +00:00
wtc%netscape.com
1a34534b8e
Bug 191948: a better implementation of PR_GetLibraryFilePathname for 32-bit
...
HP-UX.
2003-02-27 01:46:36 +00:00
brendan%mozilla.org
287257cbff
Checking in heap-sort speedup from Igor Bukanov <igor@icesoft.no> (bug 181828, r=me).
2003-02-27 01:43:44 +00:00
depstein%netscape.com
ad45550bcb
Stronger error checking for nsIChannel and nsIHttpChannel tests. Not part of the build.
2003-02-27 01:39:35 +00:00
jst%netscape.com
725c515f9a
Fixing bug 182700. Make 'Copy Image Location' work for <input type=image> elements. r=timeless@myrealbox.com, sr=peterv@netscape.com
2003-02-27 01:38:20 +00:00
nelsonb%netscape.com
42fae25f24
Add support for Elliptic Curve Cryptography. Bug 195135.
...
Modified Files:
cmd/lib/SECerrs.h cmd/selfserv/selfserv.c
cmd/tstclnt/tstclnt.c lib/cryptohi/keyhi.h
lib/cryptohi/keythi.h lib/cryptohi/seckey.c
lib/cryptohi/secvfy.c lib/freebl/Makefile lib/freebl/blapi.h
lib/freebl/blapit.h lib/freebl/ldvector.c lib/freebl/loader.c
lib/freebl/loader.h lib/freebl/manifest.mn lib/nss/nss.def
lib/pk11wrap/pk11skey.c lib/pk11wrap/pk11slot.c
lib/softoken/lowkeyti.h lib/softoken/manifest.mn
lib/softoken/pkcs11.c lib/softoken/pkcs11c.c
lib/softoken/pkcs11t.h lib/ssl/ssl3con.c lib/ssl/ssl3prot.h
lib/ssl/sslcon.c lib/ssl/sslenum.c lib/ssl/sslimpl.h
lib/ssl/sslinfo.c lib/ssl/sslproto.h lib/ssl/sslsecur.c
lib/ssl/sslsock.c lib/ssl/sslt.h lib/util/secerr.h
lib/util/secoid.c lib/util/secoidt.h
Added Files:
lib/freebl/GFp_ecl.c lib/freebl/GFp_ecl.h lib/freebl/ec.c
lib/freebl/ec.h lib/softoken/ecdecode.c
2003-02-27 01:31:38 +00:00