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

88336 Коммитов

Автор SHA1 Сообщение Дата
srilatha%netscape.com 2fe1a00bab Fix for bug #95122. sr=sspitzer
Cleaning up the contents.rdf and fixing the js error
2001-09-18 22:26:16 +00:00
colin%theblakes.com 1912ef3390 Use a different URL for the plugin page for OpenVMS.
b=99114 r=av@netscape.com sr=brendan@mozilla.org
2001-09-18 22:23:14 +00:00
mitesh%netscape.com a2725e2afb Fix for bug 80789 Changing hashing algorithm for netscape.cfg
r=bnesse and sr=alecf
checking in for chipc@netscape.com
2001-09-18 22:05:57 +00:00
alecf%netscape.com 3a7172b12f fix for bug 100310 r=jag, sr=blizzard - remove gfx dependency on string bundles, move into windows-specific module 2001-09-18 22:02:30 +00:00
jaggernaut%netscape.com e25262c61f One module per line for REQUIRES. r=/sr=alecf 2001-09-18 22:01:13 +00:00
jaggernaut%netscape.com a99ca8449f Bug 89784: ``xlib 0.9.2 will not display to m64(8+24bit)/Expert3D/Creator3D framebuffers because of visuals/depths'', author=Roland Mainz <Roland.Mainz@informatik.med.uni-giessen.de>, r=Caspian Maclean <caspian.maclean@tuxia.com>, sr=jst 2001-09-18 22:01:04 +00:00
oeschger%netscape.com 01b84ee510 just changing id of help window to match the new sys tray icon on the ns side, bug=96140, r=andreww, sr=hewitt, pdt says in on trunk 2001-09-18 21:56:54 +00:00
jaggernaut%netscape.com ffc0281152 One module per line for REQUIRES. r=/sr=alecf 2001-09-18 21:52:15 +00:00
mitesh%netscape.com 8ae8517eae Fix for bug 99515 - AutoConfig hangs during Profile Migration
r=danm and sr=alecf
2001-09-18 21:52:01 +00:00
jaggernaut%netscape.com 3098b78e27 Bug 99876: [XUL Syntax] <spring/> --> <spacer/>, r=alecf, sr=hyatt. 2001-09-18 21:47:32 +00:00
blizzard%redhat.com 37d616397c Fix bug #80051. Attach the user running the mozilla process to the x remote windows so that another user running mozilla can run another copy of the process tothe same display. r/sr=alecf,shaver 2001-09-18 21:45:43 +00:00
jband%netscape.com aec825ab4d unbust XPCOM_STANDALONE. bug 66759. These days xpcom relies on nsIChromeRegistry.h too. Gak! r=dougt sr=brendan. 2001-09-18 21:43:46 +00:00
pinkerton%netscape.com c0e35e8a13 work around bugs in CarbonLib's ::MenuSelect() with submenus. r=saari/sr=sfraser. bug#83639 2001-09-18 21:43:45 +00:00
chak%netscape.com 6d39581d5a Fix for #99144 - Marking nsIFactory as frozen
r=dougt, sr=rpotts
2001-09-18 21:40:42 +00:00
mcgreer%netscape.com b5570a1c32 cleanup; match changes to dev/; update doc 2001-09-18 20:55:01 +00:00
mcgreer%netscape.com 4ddecbc706 cleanup; add nssSession type to allow multiple sessions accessing the token API 2001-09-18 20:54:28 +00:00
alecf%netscape.com 75f90bba49 fix blocker 100312 - fix the XPIDL_MODULE lines so they aren't all content_xul
r=jag
2001-09-18 18:21:58 +00:00
jaggernaut%netscape.com dca733592b Clean up some of the die messages, only look for srcdirs which have "mozilla" or "ns" in them (shortcut around fancy Makefile parsing), emit one module per line. 2001-09-18 16:08:37 +00:00
jaggernaut%netscape.com 3826eb9902 Bug 73353: splitting the modules on the REQUIRES lines in Makefile.in across multiple lines to more clearly show the changes made. sr=alecf 2001-09-18 13:41:47 +00:00
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