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

88960 Коммитов

Автор SHA1 Сообщение Дата
rbs%maths.uq.edu.au 899f17f924 bug 99010 - font changes. r=attinasi@netscape.com, sr=hyatt@netscape.com 2001-09-27 18:33:58 +00:00
rbs%maths.uq.edu.au aeabd50e0e bug 99010 - font changes. r=roland.mainz@informatik.med.uni-giessen.de, sr=waterson@netscape.com 2001-09-27 18:32:58 +00:00
rbs%maths.uq.edu.au 7d74f4e9f6 bug 99010 - font changes. r=pierre@netscape.com, sr=waterson@netscape.com 2001-09-27 18:32:31 +00:00
rbs%maths.uq.edu.au 003abac93b bug 99010 - font changes. r=katakai@japan.sun.com, sr=waterson@netscape.com 2001-09-27 18:31:59 +00:00
rbs%maths.uq.edu.au e061539b83 bug 99010 - font changes. r=bstell@netscape.com, sr=waterson@netscape.com 2001-09-27 18:31:35 +00:00
rbs%maths.uq.edu.au 9efd19fea5 bug 99010 - font changes. r=shanjian@netscape.com,kmcclusk@netscape.com, sr=waterson@netscape.com 2001-09-27 18:29:59 +00:00
rbs%maths.uq.edu.au 443291acc1 bug 99010 - font changes. r=shanjian@netscape.com, sr=waterson@netscape.com 2001-09-27 18:29:17 +00:00
rbs%maths.uq.edu.au 6404408a22 bug 99010 - font changes. sr=waterson@netscape.com 2001-09-27 18:28:24 +00:00
alecf%netscape.com a144f67930 fix strictness and remove the clustering for now and just color visited modules 2001-09-27 18:02:05 +00:00
seawood%netscape.com 4d0027ca39 Replace File::List with homegrown rfind(). sr=alecf
not part of the pull much less the build
2001-09-27 17:54:10 +00:00
nicolson%netscape.com 6b7b356bd4 fix SSL_RSA_FIPS_* cipher enums. 2001-09-27 17:51:30 +00:00
sonja.mirtitsch%sun.com 382e7dd3c4 putting new tests back, since the ciphers have been fixed again 2001-09-27 16:37:46 +00:00
shaver%mozilla.org d654b8d0d8 Backing out checkin(s) due to illegal relicensing of proprietary code.
sr=alecf, r=dawn (not part of build *cough*)
2001-09-27 16:22:05 +00:00
karnaze%netscape.com 4e138c135e new regression tests, not affecting the build. 2001-09-27 16:15:46 +00:00
mkaply%us.ibm.com 5e9a58286e OS/2 bustage - we don't use _System 2001-09-27 16:04:44 +00:00
cls%seawood.org 5335cdf1e7 Semantics of NS_IMPL_THREADSAFE_ISUPPORTS* changed.
Fixing beos tinderbox bustage
2001-09-27 15:39:33 +00:00
nboyd%atg.com 7adac6233c Remove obsolete comment about serialization. 2001-09-27 15:14:24 +00:00
nboyd%atg.com f5a5117009 Add new serialization API classes. 2001-09-27 14:59:59 +00:00
shaver%mozilla.org a332dd0962 Bug 94506: parameter named "arguments" is not accessible in JavaScript method.
Now we check for the magic "arguments" name after var-and-arg slot
optimizations. r=rogerl, sr=brendan
2001-09-27 14:52:14 +00:00
nboyd%atg.com f30bd39789 Add docs for serialization. 2001-09-27 14:51:20 +00:00
nboyd%atg.com 4847c55cdf Remove obsolete files (perhaps re-added by mistake?) 2001-09-27 12:59:30 +00:00
nboyd%atg.com cb763059f3 Patches from Igor:
Note form omj/Parser.java:

* OPT source info collection is a potential performance bottleneck;
* Source wraps a java.lang.StringBuffer, which is synchronized.  It
* might be faster to implement Source with its own char buffer and
* toString method.

It is indeed a bottleneck under JDK 1.1. When I replaced StringBuffer
by a char array (see the attached patch), execution time of
Context.compileReader decreased by 15%: to test I combined a few test
cases to get a 3MB JS source and then measured time to process it by
Context.compileReader in the interpreter mode.

Under JDK 1.3 the difference is less then 1%, but still using the explicit
string buffer saves memory. When converting StringBuffer to String Sun JDK
shares the internal char array in StringBuffer with new String, but in the
Parser case typically the capacity of this buffer is bigger then the actual
string length, so this unused space in source strings is wasted in the
interpreter mode that keeps these strings in InterpreterData.

Regards, Igor

========
I implemented that member expression as function name syntactic sugar to
support scripts using this MS extension. This is only available when
Context.hasFeature(Context.FEATURE_MEMBER_EXPR_AS_FUNCTION_NAME)
returns true to allow the deviation from the standard only when required.

The patch effectively transforms 'function <memberExpr>(...)...' to
'<memberExpr> = function(...)...' when <memberExpr> is not simple
identifier. I am not sure that MS implementation does exactly this
but hopefully it is sufficiently general to cover MS cases.

(The patch assumes that source_change.patch is already applied)

Regards, Igor
2001-09-27 12:51:42 +00:00
nboyd%atg.com 92944b00bc Patch from Igor:
I implemented that member expression as function name syntactic sugar to support
scripts using this MS extension. This is only available when
Context.hasFeature(Context.FEATURE_MEMBER_EXPR_AS_FUNCTION_NAME)
returns true to allow the deviation from the standard only when required.

The patch effectively transforms 'function <memberExpr>(...)...' to
'<memberExpr> = function(...)...' when <memberExpr> is not simple identifier.
I am not sure that MS implementation does exactly this but hopefully it is
sufficiently general to cover MS cases.

(The patch assumes that source_change.patch is already applied)

Regards, Igor
2001-09-27 12:50:14 +00:00
jdunn%netscape.com 9b76fa6a94 rulebrk.c includes this header, so we can't have c++
comment delims (//) we need to stick with c ones (/* ... */)
Fixing bustage!
2001-09-27 12:41:06 +00:00
locka%iol.ie 09571edb71 Added WM_GETDLGCODE message handler so keyboard works properly when Gecko is embedded inside a dialog box. b=101571 r/sr=hyatt@netscape.com 2001-09-27 11:10:17 +00:00
rginda%netscape.com a3d31a834b - venkman only -
fix mixup in breakpoint/blacklist atom
2001-09-27 10:40:57 +00:00
rginda%netscape.com 402a72254c - not built -
add splitter in cview.xul
list methods in seperate lines
2001-09-27 08:53:56 +00:00
glazman%netscape.com c7d9447b00 alignment status in Composer was erroneous for cells into an aligned table; b=97519, r=jfrancis, sr=kin 2001-09-27 08:44:25 +00:00
syd%netscape.com e9d35e10c6 Checking in fix for 84896. r=selmer, sr=blake. 2001-09-27 08:27:16 +00:00
waldemar%netscape.com 1f6af95d85 Made section headers be headings level 1 and 2 instead of 3 and 4 2001-09-27 05:41:50 +00:00
waldemar%netscape.com 4ee5399d3a Miscellaneous renamings and formatting changes 2001-09-27 05:41:20 +00:00
waldemar%netscape.com a7370dd7cb Added optional parameters to %print-actions 2001-09-27 05:40:20 +00:00
waldemar%netscape.com 1ad950164a Added support for -> covariance and contravariance 2001-09-27 05:39:52 +00:00
srilatha%netscape.com 03b45d6188 Checkin for backend implementation of simple MAPI prefs
Not part of the build. a=chofmann
2001-09-27 05:19:14 +00:00
srilatha%netscape.com 112c8d62d3 Checkin for implementation of MAPILogon and MAPILogoff.
Checking in for kkhandrika@netscape.com
Not part of the build. a=chofmann
2001-09-27 05:14:27 +00:00
brendan%mozilla.org 34624ea742 Don't report uncaught exceptions unless returning to native code (97646, r=jband, sr=shaver). 2001-09-27 05:04:45 +00:00
dougt%netscape.com 9014c1e381 fixing a missing } in the macro. r=sfraser@netscape.com 2001-09-27 04:49:38 +00:00
dougt%netscape.com 61a2818b03 Adding new files to the unix build. 2001-09-27 04:37:35 +00:00
dougt%netscape.com 5935143361 reverting 99248. r=shaver|brendan@mozilla.org 2001-09-27 03:52:45 +00:00
srilatha%netscape.com 52799c785e Checkin for implementation of MAPILogon and MAPILogoff.
Checking in for kkhandrika@netscape.com
Not part of the build. a=chofmann
2001-09-27 03:51:23 +00:00
dougt%netscape.com 62afce095d Landing nsISupports changes. Freezes nsISupports.idl and nsrootidl.idl. r=valeski@netscape.com, sr=rpotts@netscape.com bug 98281 2001-09-27 03:43:00 +00:00
srilatha%netscape.com 79e4c29ef0 Checkin for implementation of MAPILogon and MAPILogoff.
Checking in for kkhandrika@netscape.com
Not part of the build. a=chofmann
2001-09-27 03:24:19 +00:00
naving%netscape.com a150c79a3d 93968 100037 r=bienvenu sr=sspitzer. Ask for confirmation dialog for folders that have an
associated filter and warn user if folder is renamed/deleted/moved. Also fixed
some of D&D folder problems and cleaned up the stringBundle code in base/util.
2001-09-27 02:47:03 +00:00
nboyd%atg.com 89195e2df6 Add support for serialization and deserialization. 2001-09-27 02:33:51 +00:00
hewitt%netscape.com 32219dfb38 101775 - column reordering doesn't work right, r=blake, sr=hyatt 2001-09-27 02:22:27 +00:00
bienvenu%netscape.com 015f85de2f making go offline more robust in the face of errors r=naving sr=sspitzer 101712 2001-09-27 02:18:58 +00:00
darin%netscape.com 2faf4a68e7 fixes bug 95768 "about: services should be converted to XHTML 1.1"
patch=alexey@ihug.com.au, r=cbiesinger@web.de, sr=darin,jst
2001-09-27 01:42:06 +00:00
tor%cs.brown.edu 8a2f92055f Bug 98252 - assume 8-bit alpha channels are really 0- or 1-bit until
proven otherwise.  r=rjesup,pavlov, sr=attinasi
2001-09-27 01:16:59 +00:00
kmcclusk%netscape.com 414efb5dfe Check for null scrolled view before accessing it. b=98270 patch from duraid@fl.net.au. r=karnaze@netscape.com, sr=attinasi@netscape.com 2001-09-27 01:05:14 +00:00
morse%netscape.com fee55d9d3f bug 101637, expire master password after each time it is used, r=pchen, sr=alecf 2001-09-27 00:46:26 +00:00