Commit Graph

103877 Commits

Author SHA1 Message Date
srilatha%netscape.com
1e8851ff8b Fix for bug # 144508. Crashes importing mail from outlook.
patch given by ducarroz
r=varada, sr=bienvenu
2002-05-30 22:22:45 +00:00
timeless%mac.com
96b34b2c99 Bug 145350 Implement handling of canDrop and onDragEnter methods in drag and drop observers
patch=pierrechanial@netscape.net, r=timeless, sr=ben
2002-05-30 22:04:25 +00:00
timeless%mac.com
e99a698488 Bug 139605 Bookmark manager should not be "Bookmark for default" when #profile=1 and profile name is not "default"
patch=pierrechanial@netscape.net, r=biesi, sr=ben
2002-05-30 22:03:51 +00:00
timeless%mac.com
a9d7b91808 Bug 139471 Rewrite of the personal toolbar drag and drop observer patch=pierrechanial@netscape.net, r=timeless, sr=ben
(maybe you should increment the version number to 2.1)
2002-05-30 22:01:13 +00:00
timeless%mac.com
d338ce31a7 bug 137119 fix various insertion problems in bookmark trees
patch=pierrechanial@netscape.net, r=timeless, sr=ben
2002-05-30 21:58:45 +00:00
pinkerton%netscape.com
0e215da1d9 Add Navigation pref panel. 2002-05-30 21:57:25 +00:00
pinkerton%netscape.com
7cfcc9d09b First checkin 2002-05-30 21:56:11 +00:00
mkaply%us.ibm.com
99389f1ff8 #146252
r=mkaply, sr=blizzard
OS/2 only - Print Preview cleanup
2002-05-30 21:55:49 +00:00
pinkerton%netscape.com
4fb6fcaa2a first checkin 2002-05-30 21:55:42 +00:00
depstein%netscape.com
8f77e8da30 removed session-logout from observers, per bug 148189.
a=asa for QA checkins that are not part of the default builds
2002-05-30 21:54:32 +00:00
mkaply%us.ibm.com
7566840f82 #148128
r=pedemont, sr=blizzard
OS/2 only - add prefs to set default telnet params
2002-05-30 21:46:58 +00:00
mkaply%us.ibm.com
bc9d897eb4 #148124
r=pedemont, sr=blizzard
OS/2 only - support for custom splashscreen - same as Win - thanks to Bjorn Anderson for the sample code
2002-05-30 21:45:24 +00:00
mkaply%us.ibm.com
ca26b30da3 #148123
r=pedemont, sr=blizzard
OS/2 only - don't write an extra NULL char to URL objects
2002-05-30 21:34:33 +00:00
dougt%netscape.com
abfcec9dad support for OS2 XPCOM_DEBUG_BREAK env. r=dougt, sr=jband, patch by mkaply, b=148127 2002-05-30 21:27:53 +00:00
leaf%mozilla.org
0612fede80 who menu still isn't getting branchtyp passed to it, trying another assignment
operation.
2002-05-30 21:23:37 +00:00
pinkerton%netscape.com
111cd16f5b clean up packaging warnings so real errors are easier to see. r=ccarlen/sr=beard/a=valeski. bug# 142556 2002-05-30 20:54:40 +00:00
dkl%redhat.com
d788b8d3bc Fix for bug 148157 - Bad sorting in describecomponents.cgi, patch by David Lawrence <dkl@redhat.com> r=jouni@heikniemi.net,myk@mozilla.org 2002-05-30 19:54:55 +00:00
pinkerton%netscape.com
43ca5b70d1 Updated nibs for new classnames. Made Privacy pane set prefs as soon
as you click the control, not only when the panel goes away.
2002-05-30 19:12:35 +00:00
leaf%mozilla.org
d865bcd6ca how about i send the variable i just modified to who.cgi, so it will do some good? 2002-05-30 18:19:26 +00:00
leaf%mozilla.org
df2343823c extend hack to the who.cgi call so we can get "last checkin" queries working 2002-05-30 18:16:08 +00:00
tara%tequilarista.org
ec64756df0 Checking Myk's fix for bug #146244 2002-05-30 15:03:30 +00:00
pinkerton%netscape.com
71350ecf08 Make pref panel respect UI guidelines 2002-05-30 14:55:10 +00:00
bienvenu%netscape.com
8c4a187566 add code to sync msg hdr flags with newsrc flags, r=cavin, sr=sspitzer original patch by ayn2@cornell.edu 64476 2002-05-30 14:27:49 +00:00
bienvenu%netscape.com
5df803f012 part of fix for unread counts getting wrong in news threads 64476 r/sr =sspitzer 2002-05-30 14:25:05 +00:00
tara%tequilarista.org
334253837a Checking in Myk's fix for bug #142317 2002-05-30 13:55:10 +00:00
nboyd%atg.com
88e610fce6 Fix bug found by felix.meschberger@day.com:
given the following object :

----------------------------------------------
function SomeObject() {}
SomeObject.prototype.exec = function() {
  var local = this.someField;
}
----------------------------------------------

i create an 'instance', set a field and call the exec method :

----------------------------------------------
var someField = "global field value";
var anInstance = new SomeObject();
anInstance.someField = "instance field value";
anInstance.exec();
----------------------------------------------

then the local variable 'local' in the exec() method is assigned the value
of the global 'someField' variable instead of the instance field value.

the problem seems to be in the ScriptRuntime.callOrNewSpecial() method,
which is called, because the parser treats the name 'exec' specially. in
this method the exec() method gets called with

   return call(cx, fun, thisArg, args, scope);

where the 'thisArg' parameter really is the global this value instead of
the dynamic this value, which is in the jsThis variable and which would be
the one needed...

is it legitimate to replace the above call in callOrNewSpecial() with the
following line :

   return call(cx, fun, jsThis, args, scope);

this seems to only happen for methods named 'exec', which are identified as
special in the NodeTransformer.isSpecialCallName() method.

any help is appreciated. thank you very much for your time.

kind regards,
felix
2002-05-30 13:41:16 +00:00
mikep%oeone.com
0708cd28a9 Fixing bug 148071 and updating the date / time stamp. 2002-05-30 13:31:05 +00:00
brendan%mozilla.org
2300976a2f Back out troublesome parts of patch for 130544 (147997, r/sr=me). 2002-05-30 07:13:40 +00:00
kaie%netscape.com
0f6f591340 b=138479 Disable Security tab in View Frame Info
r=javi sr=jag
2002-05-30 04:56:16 +00:00
timeless%mac.com
692c34b6a4 Bug 144837 bonsai file display always shows trunk revision
r=tara
2002-05-30 04:45:11 +00:00
sgehani%netscape.com
d28ebee67f Flush control socket when we first establish a connection with an
ftp server (large welcome messages can be ignored safely).
b=145776; r=ssu; sr=dveditz
2002-05-30 03:54:12 +00:00
shanjian%netscape.com
0d8cf68441 #148026 We should return error when default locale is used for unix platform charset
Replace error return code by success return code for unix platform charset getter.
r=bryner, sr=darin
2002-05-30 03:23:38 +00:00
leaf%mozilla.org
78e0e6a53e set branchtype to regexp if there are regexp-indicative characters in
the branchname
2002-05-30 03:11:59 +00:00
wtc%netscape.com
6a49741d7d This is a test. I changed Revision and Date to bogus values and want to
see what actually got checked in.
2002-05-30 02:08:07 +00:00
roc+%cs.cmu.edu
0e9e1348c5 Bug 141900. Ensure that SetViewChildClip respects nsIClipView clipping. r=kmcclusk,sr=waterson 2002-05-30 01:59:57 +00:00
shliang%netscape.com
b612c6ea33 123687 - ui for adding ldap directory to addressbook - r=sspitzer, sr=bienvenu 2002-05-30 01:52:33 +00:00
myk%mozilla.org
004f08b1dc Fix for bug 148011: Move pseudo-method definitions together.
Patch by Myk Melez <myk@mozilla.org>.
2xr=justdave
2002-05-30 01:44:33 +00:00
roc+%cs.cmu.edu
d455318206 Bug 136441. Don't let floating views get clipped by non-floating parents. r=kmcclusk,sr=attinasi 2002-05-30 01:42:41 +00:00
shliang%netscape.com
4b7fb0a1f7 147662 - adding option to remove free web mail in account manager - r=sspitzer, sr=bienvenu 2002-05-30 01:12:40 +00:00
depstein%netscape.com
c13fd212b7 some code cleanup. more test coverage for uri loads and reloads.
a=asa for QA checkins that are not part of the default builds
2002-05-30 01:11:53 +00:00
dp%netscape.com
d40ea9d737 bug 146537 Ftp moved from using 64k segment sizes to 4k r=bbaetz
sr=darin
2002-05-30 01:10:06 +00:00
shliang%netscape.com
ab1c6b08c5 133402 - selected addressbook cards in sidebar do not prefill msg compose - r=sspitzer, sr=bienvenu 2002-05-30 01:08:13 +00:00
andreww%netscape.com
c54ab97a45 bugzilla 89144 - Need keyboard access to "Tabs" menu in sidebar - r=aaronl,sgehani, sr=sspitzer,hewitt 2002-05-30 00:54:27 +00:00
glen.beasley%sun.com
764659f58f for release eng to build multiple platforms 2002-05-30 00:47:18 +00:00
serge%netscape.com
92f5cb89d5 fix for 147256, Crash in nsDocShell::GetRootScrollableView, r=av, sr=alecf 2002-05-30 00:46:12 +00:00
cavin%netscape.com
ddc18c90d0 Fix for 134014. Correct the mapping table to match the addrbook api calls. R=ducarroz, sr=bienvenu. 2002-05-30 00:43:38 +00:00
wtc%netscape.com
118670f573 Import NSPR 4.2 and DBM 1.61. 2002-05-30 00:36:48 +00:00
beard%netscape.com
51d1d9cf50 [not part of build] Removed extraneous printf's. 2002-05-29 23:49:13 +00:00
leaf%mozilla.org
dddd9bafa8 hack to do bonsai branchtype=regexp queries if +, *, or ? is in the branch name, first part of bug 147948. 2002-05-29 23:41:44 +00:00
jaggernaut%netscape.com
b6baee5a23 Bug 123563: Select the tab to the right when closing the active one. r=caillon, sr=hewitt 2002-05-29 23:22:42 +00:00