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

45712 Коммитов

Автор SHA1 Сообщение Дата
kipp%netscape.com d4c6233f05 r=troy; fixed bugs 2636 and 17636 - line layout issues for some more edge cases (nobr's with floaters in them) and handling of nbsp 1999-11-02 15:44:57 +00:00
karnaze%netscape.com 725609234f ComputeDesiredHeight - removed potential error if first child is not a row group. 1999-11-02 15:41:38 +00:00
buster%netscape.com b51aaa4e61 bug 17727 ([dogfood] Password not showing stars for default values unless we click inside the field.)
r=brade

change is in nsGfxTextControl.cpp.  I used to just blindly set the text of the underlying text frame.
Now I check if it's a password field, and replace the display text with '*' if it is.
1999-11-02 15:12:47 +00:00
rods%netscape.com 3b737b740e updated the tests 1999-11-02 14:51:20 +00:00
rods%netscape.com 0251064ab9 initial 1999-11-02 14:44:55 +00:00
syd%netscape.com 8d80118a45 The code doesn't check to see if commandNode is non-NULL. It actually does,
but too late.

Before:
< 	var value = commandNode.getAttribute(valueAttribute);
< 	if ( commandNode && value )
< 		commandNode.setAttribute('value', value);
It looks to see if commandNode is non-NULL *after* it uses it to get "value".
After:
> 	if ( commandNode ) {
> 		var value = commandNode.getAttribute(valueAttribute);
> 		if ( value )
> 			commandNode.setAttribute('value', value);
> 	}

r=BenB
1999-11-02 12:29:57 +00:00
ftang%netscape.com 17b716df1b fix bug 14914. r=cata (several weeks ago). change the GetEncoder/GetDecoder from a loop which create/destroy/IsEqual of nsString to use PROGID directly 1999-11-02 08:49:20 +00:00
idk%eng.sun.com f4762f893d 17747
Added "ifdef OJI_DISABLE"
in case OJI_DISABLE we will have binaries working without oji
Apdated README
1999-11-02 08:07:09 +00:00
rpotts%netscape.com 575044ca6e bug #3469 (r=warren). Fixing nsLoadGroup::Cancel() to call cancel on all active transports and subgroups... 1999-11-02 08:00:07 +00:00
warren%netscape.com 5e197dcb15 Made nsHTTPEncodeStream seekable (for reposting form data). Bug #17685. r=waterson 1999-11-02 07:43:37 +00:00
mccabe%netscape.com 488568cc49 Reverting lib fix to fix impending bustage. 1999-11-02 07:39:51 +00:00
shaver%netscape.com 48e279336d updated nsSample.js, long overdue (r=brendan) 1999-11-02 07:36:25 +00:00
valeski%netscape.com fd1f09e475 adding some keyword support back in 1999-11-02 07:18:44 +00:00
dmose%mozilla.org 3ab4a15002 updating license to xPL 1.1 1999-11-02 07:16:31 +00:00
ftang%netscape.com d5184d1d2e check in the patch submit by Jonas Utterstrom <jonas.utterstrom@vittran.norrnod.se in message news://news.mozilla.org/381B3757.FEC144BC%40vittran.norrnod.se fix bug 17706. r=ftang 1999-11-02 07:01:44 +00:00
dmose%mozilla.org a7b7757e6d updating license to xPL 1.1 1999-11-02 06:56:28 +00:00
ftang%netscape.com da2f224dee add debuggin message for bug 7571. r=nhotta 1999-11-02 06:54:37 +00:00
mccabe%netscape.com 01a56f0a66 Another stab at linking with the timer static library - this time using EXTRA_DSO_LDOPTS.
r=jband
1999-11-02 06:53:58 +00:00
dmose%mozilla.org 303cbca382 removing stubfe files from the trunk; these are only relevant in the MozillaClassic branch 1999-11-02 06:51:30 +00:00
warren%netscape.com 2a827fc8c2 Made nsIUnicharStreamLoader be scriptable and deal with an xpcom observer instead of a proc pointer and void*. Part of bug#11159. r=nisheeth,kipp,pierre 1999-11-02 06:49:44 +00:00
valeski%netscape.com e09ae8d711 putting www.*.com trick back in 1999-11-02 06:43:19 +00:00
waterson%netscape.com c0f040a021 Fix two more leaks that I forgot to check in. 1999-11-02 06:40:38 +00:00
dmose%mozilla.org 21a17cd18d updating license boilerplate to xPL v1.1 1999-11-02 06:38:29 +00:00
dmose%mozilla.org 4cd7b17cd8 updating license boilerplate to xPL v1.1 1999-11-02 06:27:30 +00:00
waterson%netscape.com 6552d7ba4d remove CTOR and DTOR counters, because the descendant classes will all
account for this space. r=warren
1999-11-02 06:21:07 +00:00
dmose%mozilla.org 90dc353729 updating license boilerplate to xPL v1.1 1999-11-02 06:20:05 +00:00
valeski%netscape.com e0864a9e2d pulling non-qualified host-to-keyword server logic 1999-11-02 06:18:01 +00:00
dmose%mozilla.org 2492d0cbd2 updating license boilerplate 1999-11-02 06:13:48 +00:00
troy%netscape.com 5ba3f2f0b9 r=pierre@netscape.com
Fix compiler warning
1999-11-02 06:07:12 +00:00
troy%netscape.com abc0ac053f Real fix for my build bustage. Kipp had commened the offending code out to
keep the build going
1999-11-02 06:06:46 +00:00
jband%netscape.com 02da3dfca4 - Add test code for calling back via a timer on potentially other JSConetxt
to the xpconnect echo interface. This will help fix bug 17736. This includes
using nsITimer which is a pretty messed up xpcom interface w/o a factory.

- Added dump() to xpcshell to make it compatible with browsers debug
output method.

- reformat beard's leak fix to follow 80 column rule.

- Add a missing dont_AddRef to avoid a leak in some debug code.

r=mccabe
1999-11-02 05:55:29 +00:00
nisheeth%netscape.com 9ae0c53b5f r=nisheeth. Fix for bug 12323. Thanks to Ian Hickson (py8ieh=bugzilla@bath.ac.uk) for the patch. Only lowercase chars are accepted in the stylesheet PI. 1999-11-02 05:49:57 +00:00
troy%netscape.com 29fb654d25 Changed QueryInterface() to check for nsIFrameDebug 1999-11-02 05:49:11 +00:00
dmose%mozilla.org 7aa63a5db2 updating license boilerplate 1999-11-02 05:38:33 +00:00
warren%netscape.com 33d77cb1fb Added some sanity assertions. r=gagan 1999-11-02 05:38:22 +00:00
warren%netscape.com 21c3c164cd Fix for bad refcount tracing. r=buster,nisheeth 1999-11-02 05:37:04 +00:00
waterson%netscape.com 6bd92a7a6b Fix two leaks courtesy evaughan. 1999-11-02 05:36:08 +00:00
warren%netscape.com 10115ed6f4 Removed dependence on neckoutil functions. Part of bug#11159. Not in the build yet. 1999-11-02 05:31:56 +00:00
buster%netscape.com 457d79c005 fixed bug 17689 r=jfrancis 1999-11-02 05:16:41 +00:00
tbogard%aol.net e76efd1cd3 Changed NS_ASSERTION to NS_WARN_IF_FALSE to avoid crashing people when condition is met. r=hyatt. 1999-11-02 05:14:27 +00:00
tbogard%aol.net 3dc01b8e31 Changed NS_NOTREACHED to be NS_WARN_IF_FALSE() so as to not crash everyone. r=sfraser. 1999-11-02 05:12:05 +00:00
valeski%netscape.com f2bf7464b1 11869, r=warren. passing the http spec all the way into http rather than passing a simple uri into the service newChannel(). 1999-11-02 05:05:44 +00:00
morse%netscape.com 2f872a1b35 fix ui regressons in cookie viewer, code=rgoodger, r=morse 1999-11-02 05:04:57 +00:00
morse%netscape.com ee20a3af80 fix ui regressons in signon viewer, code=rgoodger, r=morse 1999-11-02 05:04:19 +00:00
valeski%netscape.com 66e834a3e6 missed a case 1999-11-02 04:22:12 +00:00
valeski%netscape.com c958e1ad23 16910, r=mcafee. FTP now uses thread pools. it also provides some status to the webshell. and it no longer uses the server's defualt path. 1999-11-02 04:04:23 +00:00
valeski%netscape.com 95116ea085 11869, r=mcafee. adding keyword protocol handler to the build. mac still needs to be hooked up. 1999-11-02 04:01:35 +00:00
valeski%netscape.com 5d06f428f4 11869, r = travis. we no longer to the www.*.com trick as it is handled by the keyword protocol handler. we now kick qualifying requests to the keyword protocol handler. 1999-11-02 04:00:07 +00:00
hangas%netscape.com af0cf70bfc Progress on Command Updating and Dispatching (15127). r=scottip 1999-11-02 03:55:59 +00:00
pinkerton%netscape.com 6c48babf84 making the drop feedback be 2 pixels wide, not one (r=saari). 1999-11-02 03:55:44 +00:00