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

101300 Коммитов

Автор SHA1 Сообщение Дата
ian.mcgreer%sun.com a07c97c4aa key should be freed when refcount == 0 after decrement. See bug 126087. 2002-04-11 19:15:31 +00:00
brade%netscape.com 3a5f38632b backout changes by pavlov (bug 136677) r=cathleen 2002-04-11 18:50:42 +00:00
wtc%netscape.com b68af03773 Deleted a printf statement in the Neutrino builds. Bug 135692. 2002-04-11 18:34:17 +00:00
ian%hixie.ch c9b6a07b16 Some bugs: crashes opening the sidebar, and the fact that the search sidebar is a leeetle broken. 2002-04-11 18:34:12 +00:00
wtc%netscape.com e96ea0c3d8 Bug 135450: OS/2 only - don't set priority if it is the default.
The patch is contributed by Michael Kaply <mkaply@us.ibm.com>. r=wtc.
2002-04-11 18:31:09 +00:00
wtc%netscape.com 532f2dc700 Bugzilla bug 135448: removed a level of code to make semaphores faster.
This patch is contributed by Michael Kaply <mkaply@us.ibm.com>.
Modified files: _os2 os2cv.c os2vacpp.asm
2002-04-11 18:23:57 +00:00
wtc%netscape.com cc0ed28d4b Bugzilla bug 135119: fixed compilation problems on Linux Alpha. r=cls. 2002-04-11 18:11:46 +00:00
mikep%oeone.com bbf9aef02f Showing day numbers and adding double click to launch new events in months besides the current one. 2002-04-11 17:03:19 +00:00
mikep%oeone.com fe48b0bd1d Adding in pref for snooze time. 2002-04-11 16:49:34 +00:00
pschwartau%netscape.com 621ae10832 Adding an early return for Rhino; we only want to run this test in SpiderMonkey for now. 2002-04-11 16:11:53 +00:00
mikep%oeone.com 8f2910db87 Adding in ability to specify build ID. 2002-04-11 15:20:34 +00:00
mikep%oeone.com ba4614c159 Adding in ability to update build ids. 2002-04-11 15:12:18 +00:00
oeschger%netscape.com 7047a54d46 just updating some mozilla help content, dispensation per 122806, updating per 46917, r=oeschger, author=jayesh sheth 2002-04-11 14:41:29 +00:00
dcone%netscape.com 933bb37008 b = 90751 r=peterl sr=attinasi a=asa Add print options to mac OSX 2002-04-11 14:38:57 +00:00
dcone%netscape.com e36d3fe218 b=90751 r=peterl sr=attinasi a=asa Add printer extensions to OSX 2002-04-11 14:37:16 +00:00
seawood%netscape.com ef6a464de2 Fix link ordering problem when building static components with static gtk.
Bug #136192 r=bryner
2002-04-11 14:30:31 +00:00
pinkerton%netscape.com 021a93a7cd clean up checking for a golden child menu. don't delete a golden child menu when setting the hidden attribute. that would be bad. r=saari/sr=sfraser/a=asa. bug# 136460 2002-04-11 14:22:52 +00:00
kin%netscape.com 60b911495e Fix for bug 128136 (Printing disables keyboard movement of caret in textfields)
Added SuppressEventHandlers() utility routine, which PreDestroy()
and CreateAnonymousContent() now call to determine if the controller
unregister/register code should be executed.

r=rods@netscape.com  sr=sfraser@netscape.com
adt=jaimejr@netscape.com  a=asa@mozilla.org
2002-04-11 14:02:47 +00:00
kin%netscape.com 03b54f0b0a Fix for bug 110940 (order List ID does not display correctly after change )
RenumberListsFor() now calls Invalidate() for a bullet frame if it's ordinal is changed.

r=kmcclusk@netscape.com  sr=waterson@netscape.com
adt=jaimejr@netscape.com  a=asa@mozilla.org
2002-04-11 14:01:11 +00:00
glazman%netscape.com 1e2772752b Inserting a special char was disabling all inline styles in composer (due to bad call); b=103213, r=brade, sr=kin, a=rjesup, super-a=jfrancis, rs=jaime 2002-04-11 13:48:05 +00:00
cbiesinger%web.de ba66f6a952 bug 44716 r=pavlov sr=tor
Mozilla doesn't claim .jfif, .pjpeg, .pjp extensions when checked
2002-04-11 13:36:49 +00:00
brade%netscape.com 96711beded change progress status icons if cancellation of publish, fix SetProgressFinished to handle cases where we don't have a filename (bug 126258 and 135771) r=cmanske, akkana; sr=kin 2002-04-11 13:35:51 +00:00
glazman%netscape.com 58271688b3 Allow Composer's users to remove named anchors w/o having to use Source View; b=80742; r=brade, r=jfrancis, sr=kin, a=asa 2002-04-11 13:33:30 +00:00
brade%netscape.com f35b38070c disable debug output, handle aborted error as a non-error, handle cases where we have a null channel (bugs 135527, 126258, 135771) r=cmanske, akkana; sr=kin 2002-04-11 13:27:00 +00:00
nboyd%atg.com 69e288aec4 Fix for following problem:
hi Norris,

in our product, which makes heavy use of Rhino, we have many Java Objects
we wrap with ECMAScript wrappers, which extend the ScriptableObject class
and implement the Wrapper interface. Those wrappers automagically wrap the
native Java object with the help of a WrapHandler implementation.

we now ran into a problem :

we have a java class with two overloaded static methods like this :
     public class Test {
         public static String create(File f) {}
         public static String create(Custom c) {}
     }

The Custom class exists as a native Java implementation like
     public class Custom {}

and a accompanying ECMAScript wrapper like
     public class CustomWrapper
        extends ScriptableObject
        implements Wrapper {}

in our ECMAScripts we make the wrapper class known as a host object along
the lines of
     defineClass("CustomWrapper");
and can then use the object as a normal ECMAScript host object. no big deal
and working great.

but : the code
     var s = Test.creat( new Custom( "xyz") );
fails with the information, that the methods are ambiguous, which of course
they are not.

Looking at the code of NativeJavaMethod.findFunction() and the helpers in
NativeJavaObject it seems, that the fact of the Custom host object being a
Wrapper is not taken into account. in an easy fix of
NativeJavaMethod.findFunction(), i simply replace all arguments, which are
Wrapper imlpementation by the wrapped object. this solves my problem, but
of course i'm not sure on side effects.

i attach the testcase as well as the fixed NativeJavaMethod class in the
jar file. to run the test with and without the fix, extract the jar and do
     ant test

please let me know, what you think of this.

regards and thanks, f.

Felix Meschberger
2002-04-11 12:56:24 +00:00
nboyd%atg.com 887959238b Use hasProperty rather than getProperty to avoid creation of lazily evaluated properties. 2002-04-11 12:54:16 +00:00
igor%mir2.org f689d29f4a Move code to finalize activation setup from ScriptRuntime to NativeCall not to depend in ScriptRuntime on internals of NativeCall 2002-04-11 09:15:44 +00:00
igor%mir2.org e555ebca97 Removal of "|| caller.originalArgs == null" in the get method as caller.originalArgs is always != null 2002-04-11 09:12:45 +00:00
pavlov%netscape.com bf162df187 re-landing 129953 2002-04-11 07:55:53 +00:00
bbaetz%student.usyd.edu.au 4fa6268983 Bug 121162 - remove unused file booleanchart.html
'patch' by mattyt, r=bbaetz, justdave
2002-04-11 07:31:45 +00:00
timeless%mac.com a4cfeb0a07 Bug 135903 'Size' items in Page Info hasn't units
patch by db48x@yahoo.com r=biesi sr=alecf a=rjesup
2002-04-11 06:40:12 +00:00
timeless%mac.com d929684f55 Bug 69295 [RFE] Unable to follow link/copy/drag elements of Page Info, e.g. images
patch by db48x@yahoo.com r=kerz sr=alecf a=rjesup
2002-04-11 06:38:31 +00:00
pavlov%netscape.com 0f9706f1e1 backing out changes for 129953... 2002-04-11 05:38:55 +00:00
mcafee%netscape.com 8f749c03ae remove ip hack 2002-04-11 05:15:44 +00:00
mcafee%netscape.com 3f251d67fa remove ip Tp hack 2002-04-11 05:13:39 +00:00
kaie%netscape.com 3bb822a9ab b=102633 Allow the user to enable additional ciphers, dynamically obtaining a list of ciphers from NSS.
Disable support for two ciphers that are no longer in use.
r=javi/nelsonb/cotter sr=alecf
2002-04-11 05:07:09 +00:00
kaie%netscape.com c360fab9ce b=119481 Fix various unitialized variables.
r=kaie/javi sr=kin
2002-04-11 05:01:29 +00:00
seawood%netscape.com ca746930da BeOS needs unistd.h for read() and friends.
Fixing tinderbox bustage.
2002-04-11 04:50:36 +00:00
badami%netscape.com ae63b4918c HTTP 300 page screws up session history
bug 114982 sr=darin r=rpotts a=asa
2002-04-11 04:46:27 +00:00
kaie%netscape.com 583eafcb12 b=118319 Fix memory leak.
r=javi/wtc sr=blizzard
2002-04-11 04:35:08 +00:00
kaie%netscape.com 4a5807462b b=119481 Fix various unitialized variables.
r=kaie/javi sr=kin
2002-04-11 04:31:53 +00:00
kaie%netscape.com 1fa789d4cb b=129740 Fix client auth with profiles migrated from Communicator.
r=javi sr=alecf
2002-04-11 04:24:20 +00:00
kaie%netscape.com 568e70767c b=132543 Fix crash when downloading CRL
r=javi sr=alecf
2002-04-11 04:21:18 +00:00
dbaron%fas.harvard.edu 07103ecbea Fix up and enable hierarchical :hover and remove the hacks that made :hover work for anchors without it. Pass mask rather than pseudo-class to ContentStatesChanged notifications. Optimize event state changes in the style system by passing state mask to HasStateDependentStyle and using it in HasStateDependentStyle implementations. b=5693 r=bryner, joki sr=hyatt 2002-04-11 03:49:30 +00:00
dbaron%fas.harvard.edu 739a1a3e49 Fix percentage font sizes when all font properties specified (and not inherited) by weaking (again) optimization of not calling parent's GetStyleData. b=132381 r=hyatt sr=waterson 2002-04-11 03:29:40 +00:00
serge%netscape.com 014a6bcfd1 fix #94895, Flash movie is constantly stopped and restarted, r=peterl, sr=beard 2002-04-11 03:27:00 +00:00
dbaron%fas.harvard.edu 627996e0cc Fix potential leak of view observer (pres shell). b=134664 r=roc+moz sr=jag 2002-04-11 03:26:30 +00:00
seawood%netscape.com ae7c7f0de5 Error 690: "nsSelectsAreaFrame.cpp", line 149 # Nonempty source files must end with a newline that is not preceded by a backslash.
(Fixing HP-UX tinderbox bustage)
2002-04-11 03:25:58 +00:00
dbaron%fas.harvard.edu 2ee8b39604 Fix topcrash by clearing the view manager's weak pointer back to the pres shell before the pres shell goes away. b=134664 r=roc+moz sr=jag 2002-04-11 03:24:18 +00:00
dprice%netscape.com 5f6f14a281 123649 r=mjudge sr=dveditz a=rjesup adt=putterman
fixes crasher in xpi_prepareprocessarguments
2002-04-11 03:13:54 +00:00