Commit Graph

103864 Commits

Author SHA1 Message Date
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
danm%netscape.com
605ddd1d3e disable window size persistence before chrome is loaded. bug 116610 r=bryner,jag 2002-05-29 23:21:35 +00:00
danm%netscape.com
3b00f9dbf6 persist min/max state only if normal or maximized. bug 72558 r=bryner,jag 2002-05-29 23:19:07 +00:00
jaggernaut%netscape.com
2b7881786e Bug 101955: middle-click -> open in new window fails for urls in mail/news, the better fix. r=caillon, sr=hewitt 2002-05-29 23:17:47 +00:00
seawood%netscape.com
a2e8f48e87 Provide pkgconfig files.
Thanks to Chris Blizzard <blizzard@mozilla.org> for the patch.
Bug #134204 r=cls
2002-05-29 22:14:08 +00:00
nicolson%netscape.com
7c6284c42b Fix bug 112330: CryptoToken.changePassword(new ConsolePasswordCallback(), new ConsolePasswordCallback()) throws Native Exception.
We were zeroing the password after freeing it, which in some cases caused
memory corruption and crashing.
2002-05-29 21:54:14 +00:00
hewitt%netscape.com
cc685cba3d backing out file checked in by accident 2002-05-29 21:45:40 +00:00
hewitt%netscape.com
32125f34a3 crop really long page titles in Go menu 2002-05-29 21:41:54 +00:00
bienvenu%netscape.com
e3c83f77fc fix threading by subject r=cavin, sr=sspitzer 140613 2002-05-29 21:02:58 +00:00
hewitt%netscape.com
07bcdbe351 137057 - tabbrowser tab strip grows when closing 2nd to last tab, r=sgehani, sr=jag 2002-05-29 21:02:29 +00:00
bienvenu%netscape.com
2a10e29b85 fix required by fix for threading by subject r=cavin, sr=sspitzer 140613 2002-05-29 21:02:09 +00:00
bienvenu%netscape.com
bc229bf094 fix problem starting up with missing INBOX.msf for imap r=ere@atp.fi, sr=sspitzer 147896 2002-05-29 20:58:35 +00:00
hewitt%netscape.com
3aca45a56c 119770 - bad images for autocomplete pref window, patch=walk84@yahoo.com, r=shliang, sr=me 2002-05-29 20:58:34 +00:00
pinkerton%netscape.com
dc0be27710 Add sheet to rename bookmarks since inline editing doesn't work too well
with attributed strings. Cleaned up some unused outlets. Added a cancel
button to the location sheet. bugs 145819, 147721.
2002-05-29 20:42:54 +00:00