Commit Graph

124347 Commits

Author SHA1 Message Date
mostafah%oeone.com
c3e7650902 Updated Dutch translation 2003-11-13 14:49:23 +00:00
neil%parkwaycc.co.uk
56091f7f9d Bug 224587 Biff shouldn't alert for transient IMAP server errors r=bienvenu sr=Henry.Jia 2003-11-13 10:36:37 +00:00
bryner%brianryner.com
6c1c138f3c Re-enable nsCOMPtr_base on gcc 3.x, and use the may_alias attribute for mRawPtr to avoid strict aliasing problems on gcc 3.3+. Bug 212082, r=darin, sr=dbaron. 2003-11-13 07:37:14 +00:00
bzbarsky%mit.edu
ee35577098 Treat bogus "type" values as "text" consistently. Bug 225103, r+sr=peterv 2003-11-13 05:16:06 +00:00
bzbarsky%mit.edu
625796c41e Clarify when ReParentStyleContext should be called and remove more bogus style
parentage warnings.  Bug 217225, r+sr=dbaron
2003-11-13 04:31:04 +00:00
jst%mozilla.jstenback.com
dc9e270b8d Silly whitespace cleanup. 2003-11-13 04:15:25 +00:00
bzbarsky%mit.edu
ef27d8e3db BoxFrame should only be the point target in the background layer, and should
propagate background layer point requests to kids.  Bug 224013, r+sr=dbaron
2003-11-13 04:13:12 +00:00
bzbarsky%mit.edu
ce5cf4d481 Fix some bogus style parentage warnings. Bug 224867, r+sr=dbaron 2003-11-13 04:11:38 +00:00
timeless%mozdev.org
805246a475 Bug 225523 Minor dreftool change to get consistent bonsai output
r=riceman+bmo@mail.rit.edu
2003-11-13 03:49:37 +00:00
nelsonb%netscape.com
d1e962a746 Workaround race. Reduce leaks. Not a real fix. Bugzilla bug 225525. 2003-11-13 03:41:32 +00:00
leaf%mozilla.org
111e10d2de remove version from installer package for nightly builds. 2003-11-13 02:17:51 +00:00
wchang0222%aol.com
fd41dbceb3 Bugzilla bug 225260: link NSPR dynamic shared libraries with the
-headerpad_max_install_names option. sr=sfraser.
2003-11-13 02:03:44 +00:00
wchang0222%aol.com
08e3f5e2fa Bugzilla bug 225259: link NSS dynamic shared libraries with the
-headerpad_max_install_names option. r=ccarlen, sr=sfraser.
2003-11-13 01:59:22 +00:00
timeless%mozdev.org
4f5f773998 Bug 8227 dreftool - rickg's phase 1 preventative crash maintenance
r=bernd

This is dreftool, resurrected with the help of kherron, bernd, and myself.

Licensing has been switched per http://bugzilla.mozilla.org/show_bug.cgi?id=8227#c45
to MPL/GPL/LGPL.

Old copies of xpcom classes have been removed, dreftool now uses the normal ones.

New:
* Builds on Linux and uses NSPR, so it should be possible to use it on most
systems.
* Member variables are screened.
* Tries to recognize NS_ENSURE early outs.
* Can parse a single file.
* The summary can indicate what it was told to parse.
* Links to LXR can be generated. Using this feature is not recommended as pieces of
mozilla tend to be on branches and the links will be bad. If for non branched content,
the links will drift as the files are changed.
* Links to Bonsai against the file revision will be generated if CVS records are
detected. This is good, unless you have local modifications in your tree.

Known issues:
* Aliasing isn't detected, so
|a = new something; *foo = a; if (!*foo) return NS_ERROR_FAILURE;| is flagged.
e.x.
http://bonsai.mozilla.org/cvsblame.cgi?file=mozilla/accessible/src/html/nsHTMLSelectAccessible.cpp&rev=1.33&mark=920-921,922,923,925#920

* Assigning to dereferenced objects
|*foo = new something| is not quite correctly handled (perhaps it's misinterpreted as
|foo = new something|. e.x.
http://bonsai.mozilla.org/cvsblame.cgi?file=/mozilla/extensions/transformiix/source/xslt/txStandaloneXSLTProcessor.cpp&rev=1.11&mark=88,92,96,99,84#91

* Various other allocators aren't caught: strdup and co., nsCRT::, nsMemory::, ...

* There's no way to provide a user defined list of allocators.

People should of course not file bugs simply based on dreftool, they should file bugs
after verifying that the complaints from dreftool are valid.
2003-11-13 00:01:30 +00:00
wchang0222%aol.com
dd7a8790e8 Added a comment to note a question I had while reviewing the code. 2003-11-12 23:25:33 +00:00
ben%bengoodger.com
3e3729e302 Fix the Developer Tools jst so Inspector can be installed 2003-11-12 23:24:03 +00:00
bienvenu%nventure.com
157d7e1103 fix downloading of truncated pop3 messages when user has changed the server user name, 222896, r/sr=mscott 2003-11-12 23:10:18 +00:00
timeless%mozdev.org
d7ae76a730 Bug 8227 dreftool - rickg's phase 1 preventative crash maintenance
r=bernd

This is dreftool, resurrected with the help of kherron, bernd, and myself.

Licensing has been switched per http://bugzilla.mozilla.org/show_bug.cgi?id=8227#c45
to MPL/GPL/LGPL.

Old copies of xpcom classes have been removed, dreftool now uses the normal ones.

New:
* Builds on Linux and uses NSPR, so it should be possible to use it on most
systems.
* Member variables are screened.
* Tries to recognize NS_ENSURE early outs.
* Can parse a single file.
* The summary can indicate what it was told to parse.
* Links to LXR can be generated. Using this feature is not recommended as pieces of
mozilla tend to be on branches and the links will be bad. If for non branched content,
the links will drift as the files are changed.
* Links to Bonsai against the file revision will be generated if CVS records are
detected. This is good, unless you have local modifications in your tree.

Known issues:
* Aliasing isn't detected, so
|a = new something; *foo = a; if (!*foo) return NS_ERROR_FAILURE;| is flagged.
e.x.
http://bonsai.mozilla.org/cvsblame.cgi?file=mozilla/accessible/src/html/nsHTMLSelectAccessible.cpp&rev=1.33&mark=920-921,922,923,925#920

* Assigning to dereferenced objects
|*foo = new something| is not quite correctly handled (perhaps it's misinterpreted as
|foo = new something|. e.x.
http://bonsai.mozilla.org/cvsblame.cgi?file=/mozilla/extensions/transformiix/source/xslt/txStandaloneXSLTProcessor.cpp&rev=1.11&mark=88,92,96,99,84#91

* Various other allocators aren't caught: strdup and co., nsCRT::, nsMemory::, ...

* There's no way to provide a user defined list of allocators.

People should of course not file bugs simply based on dreftool, they should file bugs
after verifying that the complaints from dreftool are valid.
2003-11-12 22:38:24 +00:00
neil%parkwaycc.co.uk
97442668b2 Bug 225083 moz-icons show wrongly for 5-6-5 bitfields r=ere sr=mscott 2003-11-12 22:25:51 +00:00
neil%parkwaycc.co.uk
d56cec2ba4 Bug 218957 about:config should load with focus in filter textbox p=steffen.wilberg@web.de r=me,pch sr=brendan,ben (yes really, four reviews). 2003-11-12 22:21:48 +00:00
brendan%mozilla.org
e74d5a9b8e Heal a now-bogus assertion under JS_LOCK_OBJ/JS_LOCK_SCOPE. 2003-11-12 22:14:25 +00:00
mkaply%us.ibm.com
5a63cdfb93 No bug - get installer working for GCC on OS/2 - change APIs to _APIs and fix a bad variable reference 2003-11-12 21:08:39 +00:00
darin%meer.net
e4ebafaa4b fix uninitialized variable warning, bug 204503, patch by alfredkayser@nl.ibm.com, r+sr=darin 2003-11-12 20:09:05 +00:00
jshin%mailaps.org
dc195dfd03 bug 222346 : streamline JS script loading code (deleegate charset alias resolution to GetUnicodeDecoder()) (r=smontagu, sr=bz) 2003-11-12 19:51:12 +00:00
jshin%mailaps.org
c739bc5982 bug 224748 : make charset names in navigator.properties (for charset menu) canonical (r=smontagu, sr=blizzard) 2003-11-12 19:44:18 +00:00
mostafah%oeone.com
b0bfc79949 Checked in patch for bug 215594: week view does not show events if Monday-Friday Only selected 2003-11-12 19:39:39 +00:00
mostafah%oeone.com
e2fd8df4e1 Checked in patch for bug 215683: Dragging in week view creates event on wrong day 2003-11-12 19:22:17 +00:00
mostafah%oeone.com
64cc836f27 Checked in patch for bug 197569: Event Dialog Date Picker not initialized from selected date 2003-11-12 18:41:08 +00:00
mostafah%oeone.com
d68a41b32f Checked in proposed fix for bug 188890: Mini month view needs to observe week start pref 2003-11-12 18:40:08 +00:00
mostafah%oeone.com
2e1361dcd9 Checking in patch for bug 225339: Mini month view advance month should not change selected date 2003-11-12 18:07:01 +00:00
pkw%us.ibm.com
7e36c4359b Bug 197081 - AIX: Preedit string is duplicated when committed.
r=katakai@japan.sun.com, sr=blizzard@mozilla.org (platform specific)
2003-11-12 17:49:22 +00:00
pkw%us.ibm.com
77986b70f6 Bug 225003 - Typo in spellchecker code
r=timeless@myrealbox.com, sr=mkaply@us.ibm.com
2003-11-12 17:32:49 +00:00
mostafah%oeone.com
7592c5f022 Checking in patches for bug 185394: Date picker format does not respect local settings 2003-11-12 17:22:21 +00:00
neil%parkwaycc.co.uk
f58150f240 Supplementary patch to bug 168479 to remove a newline that the old code mistakenly ignored r=ducarroz sr=bienvenu 2003-11-12 15:56:32 +00:00
igor%mir2.org
7d1e5eda47 Passing to decompiler information about function type so it can use it to customize its output in future. 2003-11-12 15:47:50 +00:00
mostafah%oeone.com
5de6cdb755 Removing duplicate entries 2003-11-12 15:16:33 +00:00
mostafah%oeone.com
0e652ddc87 Checked in part of patch for bug 219589: Calendar Extension for Thunderbird 2003-11-12 14:49:32 +00:00
peter%propagandism.org
436704d8fe Part of fix for bug 219848 (Cannot programmatically (JavaScript) set value of HTMLInputElement) - don't do security checks when defining DOM classes. r=caillon, sr=jst. 2003-11-12 14:25:03 +00:00
peter%propagandism.org
d4474f74da Part of fix for bug 219848 (Cannot programmatically (JavaScript) set value of HTMLInputElement) - return JS_FALSE when throwing an exception. r=caillon, sr=jst. 2003-11-12 14:19:26 +00:00
igor%mir2.org
f2ba87fed2 Changing Decompiler.decompile to take just encoded source, flag argument controlling output format and property table so it would be possible to add more options to decompiler without changing the rest of code. 2003-11-12 12:22:12 +00:00
igor%mir2.org
e734cecce2 Changing return type of NativeFunction.getEncodedSource() to String from Object since the idea of having anything else but String would require changes in API in any case. 2003-11-12 10:23:53 +00:00
neil%parkwaycc.co.uk
f287978ed6 Bug 181973 Implement a system for inverting boolean prefs and apply it to the scripts listbox r=caillon sr=alecf 2003-11-12 10:13:10 +00:00
cbiesinger%web.de
fada1ad2ce bug 225362. nsIStreamConverter.idl has an outdated comment. this patch also
fixes indentation of some lines. r+sr=darin
2003-11-12 09:37:35 +00:00
ben%bengoodger.com
5161295d4a Turn on ADT Package for installer 2003-11-12 09:31:48 +00:00
ben%bengoodger.com
8a97f2965c add new contents.rdf.in file for browser 2003-11-12 09:16:43 +00:00
ben%bengoodger.com
3788ab63a8 Turn on Inspector in Firebird 2003-11-12 09:15:56 +00:00
ben%bengoodger.com
af3cc7636c Enable Inspector for Firebird 2003-11-12 09:15:21 +00:00
ben%bengoodger.com
9c1c62574a Remove the right files this time. 2003-11-12 08:08:14 +00:00
ben%bengoodger.com
9edeb40509 Fix oops. 2003-11-12 08:07:33 +00:00
bryner%brianryner.com
6dda732f28 re-adding file 2003-11-12 08:02:33 +00:00