jdunn%netscape.com
ba919ce346
now fixing nebiros bustage, apparently my previous fix wasn't
...
liked by it.
so what I did was remove 2 instances of "for (int i = <blah>"
and replaced it with "int i; <blah> for (i = <blah>"
2001-09-18 13:13:16 +00:00
cls%seawood.org
e75deb7902
Updating module dependencies list
2001-09-18 12:56:49 +00:00
nboyd%atg.com
edb1708628
Patch from Igor:
...
Currently in the interpreter mode all number literals are stored in
InterpreterData.itsICode as an index to InterpreterData.itsNumberTable
which holds the actual value.
For integers that fit 2 or 4 bytes this is an overkill and the attached
patch stores integers in InterpreterData.itsICode inline after special
TokenStream.INTNUMBER or TokenStream.SHORTNUMBERS tokens.
The changes made benchmarks to run 1.5% faster. It also saves memory
because InterpreterData.itsNumberTable is allocated only for non-integers
that present only in a small number of scripts.
In principle, it may be possible to store all numbers inline as well, but
unfortunately re-assembling of 8 bytes from InterpreterData.itsICode array
into double is rather slow operation and is not worth the hassles.
Regards, Igor
2001-09-18 12:27:23 +00:00
nboyd%atg.com
0a9fd37d39
Patch from Igor:
...
Hi, Norris!
Currently ScriptableObject.put does not check lastAccess cache during its search for
slots. When I added this check (see the attached patch) it speeded up the benchmark
suite by about 1.5% and in particular for setProp_bench.js the win was about 8%.
I think that even on multiprocessor machines it would not introduces any additional
issues like accessing the old value in the processor cache because the put method
accesses existing properties via unsynchronized getSlot, and the check for lastAccess
is on pair with that.
Trgards, Igor
2001-09-18 12:26:10 +00:00
nboyd%atg.com
0ab0e55761
Fix for problem from Felix Meschberger:
...
When handling an Exception the Context tries to get the current script
and line number from the Java Stacktrace. To get the indication of which
entry in the trace might be an ECMA script, the file extension ".js" is
assumed.
For our integration we use the standard extension ".ecma" which collides
with the above assumption. But we don't force this extension, we just
have a convention. We name these files ".ecma" as they are not plain
ECMA but JSP-like ECMA. That is instead of using Java as the programming
language we use ECMA. In this respect they would be ".esp".
2001-09-18 12:24:56 +00:00
jdunn%netscape.com
b781512161
fixing katakai's bustage on cement and myotonic
2001-09-18 11:54:38 +00:00
katakai%japan.sun.com
a6c2d2710d
bug 84380 Need a component that generates thai presentation forms
...
Updates for *extensions*/ctl for prabhat@Sun, r=ftank for check-in
A Incorporate frank's review fixes (08/07)
B Bugfix in TIS620Encoder
C Fix memory corruption
D Makefile changes in pangoLite directory to install pango.modules
2001-09-18 10:14:38 +00:00
stephend%netscape.com
950999845c
Bug 10020. JS function verifyAccounts() should be verifyAccount(null) to reflect parameter passing. r=bhuvan@netscape.com, sr=sspitzer@netscape.com
2001-09-18 06:56:08 +00:00
srilatha%netscape.com
b9534eb89f
Fix for bug # 95122. Implementation of UI for simple MAPI
...
r=rdayal, sr=sspitzer
2001-09-18 06:10:34 +00:00
alecf%netscape.com
2a9cc6a409
add some comments, clean up the generated graphs, etc
2001-09-18 05:46:45 +00:00
jst%netscape.com
7a19537214
Fix bug 99690. Fix crash when external apps try to open mozilla windows. r=bzbarsky@mit.edu, sr=blakeross@telocity.com
2001-09-18 05:32:03 +00:00
dougt%netscape.com
355e996bfb
Adds Double PASV support. r=gagan, sr=darin b92582
2001-09-18 05:21:18 +00:00
bzbarsky%mit.edu
ecb297b104
Fix topcrash bug 99057 (crash @
...
GetExtensionsAndDescriptionFromMimetypesFile). r=dbaron, sr=scc
2001-09-18 03:53:25 +00:00
jst%netscape.com
363deb41a9
Fixing bug 81928. JS errors in XUL files were not always reported. sr=brendan@mozilla.org, r=jband@netscape.com
2001-09-18 03:32:03 +00:00
loadrunner%betak.net
9977c06b0a
bug 99253, Optimization on sort in pref-languages.js, patch by jrgm, r=jbetak, sr=blizzard, alecf
2001-09-18 03:12:03 +00:00
saari%netscape.com
bd2d5a6c8b
adding files to IDL projects for aaronl. Accessiblity stuff, bug 82207
2001-09-18 03:09:19 +00:00
aaronl%netscape.com
534dbf9200
Bug 82207. Beginning XUL MSAA support (checkboxes). r=jgaunt, sr=hyatt
2001-09-18 03:09:01 +00:00
bryner%netscape.com
f36c06d94d
Bug 99192 - don't tab into popups. r=jag, sr=hyatt.
2001-09-18 02:25:07 +00:00
peterlubczynski%netscape.com
dcc39787f3
Fix for full-page plugin printing bug 53349 r=av sr=attinasi
2001-09-18 02:16:52 +00:00
peterlubczynski%netscape.com
113990780d
Implement plugin printing bug 27478 r=av,beard sr=attinasi
2001-09-18 02:11:09 +00:00
nelsonb%netscape.com
54818a7fb9
Use new function SSL_GetChannelInfo(). Bugzilla bug 78959.
...
Also, reduce size of SSL server session cache on disk.
2001-09-18 02:05:08 +00:00
nelsonb%netscape.com
6670493600
Use new function SSL_GetChannelInfo(). Bugzilla bug 78959.
2001-09-18 02:02:05 +00:00
nelsonb%netscape.com
7b1e351c0f
Implement new function SSL_GetChannelInfo(). Bugzilla bug 78959.
2001-09-18 01:59:21 +00:00
rangansen%netscape.com
b4e68ed818
r=ddrinan sr=kin@netscape.com
...
bug# 99719; patch to regression on dialog window
2001-09-18 01:50:28 +00:00
brendan%mozilla.org
0f1ea0775a
Use the maximum of fp->argc and fp->fun->nargs to bound fp->argv (97921, sr=jband&shaver).
2001-09-18 01:47:41 +00:00
sfraser%netscape.com
d3ac57ccf0
Fix bug 86694 -- image tiling slow on Mac. Implement repeated scaling into a temporary GWorld before final blit. sr=scc, r=pavlov.
2001-09-18 01:39:04 +00:00
naving%netscape.com
3f42c8cdab
99168; r/sr=mscott fix nsMsgMailNewsUrl leak on reading imap messages
2001-09-18 00:50:56 +00:00
ddrinan%netscape.com
8d48eedf87
Fix build bustage for rpotts. Removed GetProtocolHandler() method
2001-09-18 00:20:16 +00:00
dbaron%fas.harvard.edu
1c9cca516b
Allow declarations in style attribute to be surrounded by braces in quirks mode. Rename ParseDeclarations to ParseStyleAttribute since that's what it does. b=99554 r=hixie,glazman sr=attinasi
2001-09-17 23:59:30 +00:00
dbaron%fas.harvard.edu
05d405b5d8
Make fixed positioning code check for NS_AUTOOFFSET to fix positioning of auto-sized fixed positioned elements relative to bottom or right. b=98579 r=waterson sr=attinasi
2001-09-17 23:55:58 +00:00
pschwartau%netscape.com
ca03a9307c
Forgot to remove these comment-marks.
2001-09-17 23:55:06 +00:00
pschwartau%netscape.com
ad47005bf0
Skip regression test for bug 100199 until the bug is fixed.
2001-09-17 23:53:12 +00:00
sspitzer%netscape.com
1d312d8961
fix for #99491 . persist mailnews sidebar height by persisting the outliner height.
...
r=varada, sr=mscott
2001-09-17 23:51:07 +00:00
pschwartau%netscape.com
559051bc95
Initial add. Regression test for bug 100199.
2001-09-17 23:49:25 +00:00
sdagley%netscape.com
dd82595cc5
Fix #99556 . Account for change in Mac epoch time as of MSL 6. r=wtc/sfraser
2001-09-17 23:42:12 +00:00
hewitt%netscape.com
e8b9173831
99102 - update skin versions in all contents.rdf, r=hyatt, sr=blake
2001-09-17 23:40:50 +00:00
leif%netscape.com
c2e9958440
Fix for bug 82412: Preresolve DNS before calling into LDAP C-SDk. SR=bienvenu@netscape.com, r=dmose@netscape.com, patch=leif@netscape.com.
2001-09-17 23:35:03 +00:00
naving%netscape.com
ba578dc1aa
99150 r/sr=sspitzer. Make minor changes to return value and freeing memory.
2001-09-17 23:31:28 +00:00
rpotts%netscape.com
0340c21f74
bug #70223 (r=valeski@netscape.com, sr=mscott@netscape.com). Remove nsIURIContentListener::GetProtocol() since it is unused.
2001-09-17 23:22:00 +00:00
attinasi%netscape.com
7dc0067e3f
Fixing erroneous addition to previously reviewed and approved patch: b=97619 r=bernd sr=waterson
2001-09-17 23:13:57 +00:00
stephend%netscape.com
86a461f095
Bug 91751. In the Search window of mail/news, 'Search' should appear the default button. Patch by Bradley Hart <bhart00@yahoo.com> r=hwaara@chello.se/jglick@netscape.com, sr=sspitzer@netscape.com
2001-09-17 23:05:58 +00:00
sicking%bigfoot.com
521f46f929
Make the XPath engine handle CDATA sections as text-nodes.
...
b=92786 r=peterv, pike sr=jst
Mixed small fixes and comments.
b=99792 r=peterv sr=jst
2001-09-17 23:02:57 +00:00
jst%netscape.com
f1514ed510
Duh! (typo in the fix for bug 95840).
2001-09-17 22:58:06 +00:00
mcgreer%netscape.com
585877b23a
add suggestion about new NSSSession type; crypto context question
2001-09-17 22:14:55 +00:00
aaronl%netscape.com
90c3eb2eb2
Part of checkin for 82207 (XUL MSAA support). Fixing accidentally lowercased names. r=jgaunt, sr=hyatt
2001-09-17 21:51:20 +00:00
naving%netscape.com
01d68fe1f6
99473 r/sr=mscott. fix a specific pop3 message downloading problems on linux.
2001-09-17 21:50:26 +00:00
wtc%netscape.com
79711afc33
lla bug 98371: specify the NSPR and DBM include directories using
...
MOZILLA_INCLUDES instead of SOURCE_MDHEADERS_DIR.
2001-09-17 20:55:25 +00:00
gordon%netscape.com
943fb82c2e
Fix bug 97620 [r=rpotts, sr=brendan/ben] Added code to doom and clear
...
active cache entries when devices are shutdown.
Fix bug 88768 [a=nisheeth], fixing unary operator usage in nsCacheEntryDescriptor.cpp.
2001-09-17 20:47:09 +00:00
stephend%netscape.com
f7984db64d
Bug 99245. Using strtok is evil. Patch by Ulrich Drepper <drepper@cygnus.com> r=bnesse@netscape.com, sr=alecf@netscape.com
2001-09-17 20:39:31 +00:00
jaggernaut%netscape.com
5e216be559
Bug 79889: download progress dialog not wide enough. r=hewitt, sr=hyatt
2001-09-17 20:28:38 +00:00