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

45753 Коммитов

Автор SHA1 Сообщение Дата
buster%netscape.com a86bb86665 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 306d555281 updated the tests 1999-11-02 14:51:20 +00:00
rods%netscape.com f51f8d8e2d initial 1999-11-02 14:44:55 +00:00
syd%netscape.com 56f65fa72e 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 ef4beb6fca 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 ccd5e48e64 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 4667ff7441 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 9aeb8f663b Made nsHTTPEncodeStream seekable (for reposting form data). Bug #17685. r=waterson 1999-11-02 07:43:37 +00:00
mccabe%netscape.com f38820186b Reverting lib fix to fix impending bustage. 1999-11-02 07:39:51 +00:00
shaver%netscape.com 5d531a717f updated nsSample.js, long overdue (r=brendan) 1999-11-02 07:36:25 +00:00
valeski%netscape.com f051272c90 adding some keyword support back in 1999-11-02 07:18:44 +00:00
dmose%mozilla.org 24f7b0ba7e updating license to xPL 1.1 1999-11-02 07:16:31 +00:00
ftang%netscape.com 4b548de75b 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 6196f6192c updating license to xPL 1.1 1999-11-02 06:56:28 +00:00
ftang%netscape.com 21f53bdfa9 add debuggin message for bug 7571. r=nhotta 1999-11-02 06:54:37 +00:00
mccabe%netscape.com a1af1ed334 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 4aba551a97 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 332749d6fa 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 e52e34b4e3 putting www.*.com trick back in 1999-11-02 06:43:19 +00:00
waterson%netscape.com 9e958a94b4 Fix two more leaks that I forgot to check in. 1999-11-02 06:40:38 +00:00
dmose%mozilla.org 8f67369d9f updating license boilerplate to xPL v1.1 1999-11-02 06:38:29 +00:00
dmose%mozilla.org 677de53d84 updating license boilerplate to xPL v1.1 1999-11-02 06:27:30 +00:00
waterson%netscape.com 050ad45bf2 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 b6f1a2eb04 updating license boilerplate to xPL v1.1 1999-11-02 06:20:05 +00:00
valeski%netscape.com 4e76992f28 pulling non-qualified host-to-keyword server logic 1999-11-02 06:18:01 +00:00
dmose%mozilla.org 0101ea8f82 updating license boilerplate 1999-11-02 06:13:48 +00:00
troy%netscape.com 961b91838a r=pierre@netscape.com
Fix compiler warning
1999-11-02 06:07:12 +00:00
troy%netscape.com bb6a908cf9 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 a86ed74f9f - 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 9d79a81d45 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 614cbe4d17 Changed QueryInterface() to check for nsIFrameDebug 1999-11-02 05:49:11 +00:00
dmose%mozilla.org ae0024bbbb updating license boilerplate 1999-11-02 05:38:33 +00:00
warren%netscape.com e0c226d39d Added some sanity assertions. r=gagan 1999-11-02 05:38:22 +00:00
warren%netscape.com e78a953005 Fix for bad refcount tracing. r=buster,nisheeth 1999-11-02 05:37:04 +00:00
waterson%netscape.com d1e196eb07 Fix two leaks courtesy evaughan. 1999-11-02 05:36:08 +00:00
warren%netscape.com 29db97eb7f 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 f847d9f9a4 fixed bug 17689 r=jfrancis 1999-11-02 05:16:41 +00:00
tbogard%aol.net c2a26335bd 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 e04693d65a 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 f0edbb0a62 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 3e390dbd05 fix ui regressons in cookie viewer, code=rgoodger, r=morse 1999-11-02 05:04:57 +00:00
morse%netscape.com 99541dc224 fix ui regressons in signon viewer, code=rgoodger, r=morse 1999-11-02 05:04:19 +00:00
valeski%netscape.com 00924492ac missed a case 1999-11-02 04:22:12 +00:00
valeski%netscape.com b7021722f9 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 eab20fe1b3 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 13ec852729 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 26fbbb140d Progress on Command Updating and Dispatching (15127). r=scottip 1999-11-02 03:55:59 +00:00
pinkerton%netscape.com 64f6e095a3 making the drop feedback be 2 pixels wide, not one (r=saari). 1999-11-02 03:55:44 +00:00
pinkerton%netscape.com fa65c1d6e2 fix for #16463 (crash when frames involved in a drag went away) and nsCOMPtrizing a lot of things (r=saari). 1999-11-02 03:55:14 +00:00
pinkerton%netscape.com 444df86409 add ability to have a sub-frame (such as an inner box) be the area which is where the draggable content resides. 1999-11-02 03:54:24 +00:00