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

264 Коммитов

Автор SHA1 Сообщение Дата
hangas%netscape.com b03d49dc03 Command updating and dispatching changes for menu items. Fixes 17848. r=hyatt, a=chofmann 1999-11-05 02:21:47 +00:00
waterson%netscape.com 7760b199b4 Bug 15146. Fix charset overlay template; don't force menus to be open; r=hyatt a=brendan 1999-11-04 01:48:46 +00:00
davidm%netscape.com d8b99e547b 8673 ShutDown() should try to close all open windows. r= hangas 1999-11-03 05:26:31 +00:00
matt%netscape.com bcecaaf47b fix for bug 14634 r-hangas 1999-11-02 20:57:22 +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
hangas%netscape.com af0cf70bfc Progress on Command Updating and Dispatching (15127). r=scottip 1999-11-02 03:55:59 +00:00
evaughan%netscape.com 86fd1321dd Made tabs us visibility instead of shrinking their children to 0,0.
Made it possible to change the look for the selected tab.
1999-10-29 22:13:57 +00:00
rchen%netscape.com eb19bc3388 Add Localization Notes 1999-10-29 21:53:20 +00:00
danm%netscape.com f7b771cb58 treat the return key, like enter, as if the default dialog button had been pressed. part of fix for bug 17529. r:saari@netscape.com 1999-10-29 06:17:07 +00:00
hangas%netscape.com 4c0d31db99 Cleaned up bad style rules in global.css - should result in noticable performance improvement. Converted <titledbutton> rules to all use a class, this way we can be specific about how each type of button should look. Added line between columns in tree headers. Indented treecell contents. Cleaned up mail and AB toolbars. Fixed reflow and other drawing issues with toolbar buttons on new skins. Fixed problems in results tree on AB window. Other misc visual changes. Fixed bug 16530, changing the word Messenger to Mail. r=german/hyatt 1999-10-27 23:01:09 +00:00
cmanske%netscape.com 5bb65d5e4c Part of fix for 17160, remove TextEditor from Tasks menu. r=mjudge 1999-10-26 23:07:41 +00:00
hangas%netscape.com 2819886968 new ui. r=pavlov,german,hyatt 1999-10-26 00:39:19 +00:00
hyatt%netscape.com 16aaa7ce49 renaming skin.css to global.css r=pavlov 1999-10-24 06:58:38 +00:00
ducarroz%netscape.com e3ea261556 Bug 14258, implement Send Page, R=alecf 1999-10-23 04:51:40 +00:00
alecf%netscape.com 45e00cc35d prefwindow is now a service thanks to nsIModule conversion 1999-10-22 21:06:26 +00:00
cata%netscape.com 02ab585175 bug #15690, r=ftang, removing bogus rules which were affecting the menu template 1999-10-21 21:42:40 +00:00
cmanske%netscape.com 38e54c076a Adding menu item to start Composer from Browser debug menu as workaround for bug 16789 (can't start editor on command line). Also removed editor init page from code that's not even run? 1999-10-20 01:03:39 +00:00
tbogard%aol.net 156997c2f3 Removed border from the XUL browser, editor, and iframe tags. This allows content coming up in chromeless pop-up windows not be visually cluttered with a needless border. r=hyatt. 1999-10-19 07:40:44 +00:00
brade%netscape.com d50bc3587d make doEditor create an html editor rather than the plaintext editor. (bug #16681; r=sfraser@netscape.com) 1999-10-18 20:27:14 +00:00
cmanske%netscape.com fe99e05866 Fixed bug 15442 - use about:blank for empty doc URL for editor. r=law 1999-10-15 21:24:45 +00:00
shaver%netscape.com e362bed5fa Fix for 15480 (menu reflow from content change).
Use <titledbutton>, not <div>, for accelerator text to fix alignment
and improve performance _ever_ so slightly.
Initial support for checked menus (needs more magic).
(r=hyatt)
1999-10-14 23:59:18 +00:00
hyatt%netscape.com b2564031fe Landing re-architected command dispatcher. r=hangas(XUL/JS), saari(C++) 1999-10-14 10:58:25 +00:00
tbogard%aol.net b8a8f261e9 Added rules for the new browser, editor and iframe types. r=hyatt 1999-10-14 10:50:10 +00:00
evaughan%netscape.com 6f18d96994 Fixed gfx scrollbars style rule. Reviewed by Hyatt 1999-10-14 01:55:41 +00:00
cmanske%netscape.com 4e882c45cb Fixed bug 16118, part of fix for 14342. Reduced size of ender input widget. r=hyatt,hangas 1999-10-14 00:13:21 +00:00
alecf%netscape.com 85bcc85a6d update new image names in all XUL, JS, and CSS 1999-10-13 04:26:01 +00:00
alecf%netscape.com 9743911206 export new images on windows
r=mscott
no bug
1999-10-13 04:09:25 +00:00
alecf%netscape.com 4ed2eb9665 checkin new image file names
not part of build
no reviewer 'cause you can't review images :)
no bug #, just maintenance for skins a la German
all files added with -kb
1999-10-13 03:57:13 +00:00
davidm%netscape.com 01c3ff09bd 8010 [FEATURE] Task Menu | Tools sub-menu items do not work remove bogus rules r = hangas 1999-10-13 01:25:39 +00:00
pinkerton%netscape.com b36d9385ad removed some visibility/display rules that were already in xul.css. added a workaround for bug #15722 to not change the icons of the scrollbar buttons on rollover, which caused the trees that contained said scrollbars to fully reflow. (r=hyatt). 1999-10-13 01:00:05 +00:00
law%netscape.com b5c3f7148f Bug #14999; removed use of toolkit app core; rev=davidm@netscape.com 1999-10-09 06:18:58 +00:00
sspitzer%netscape.com 2753a0c1ec make the prompt and alert dialogs resize to content.
fix by davidm, r=sspitzer, bug #15815
1999-10-08 04:51:19 +00:00
rods%netscape.com ad3d2c59dd set the padding to 1 related to bug# 15314 1999-10-07 20:53:23 +00:00
hyatt%netscape.com 82245c51c5 Fixing bustage. 1999-10-01 21:46:13 +00:00
hyatt%netscape.com a0b798bff0 Adding skin.css 1999-10-01 21:01:24 +00:00
hyatt%netscape.com 9e75934ef0 Splitting xul.css into two files and making them load automatically at startup. R=danm@netscape.com 1999-10-01 20:49:07 +00:00
davidm%netscape.com 225d58ae9f 14240 [BETA] About box date/version incorrect 1999-10-01 03:32:00 +00:00
hangas%netscape.com 1912085efc Added ability to hide and show toolbars and taskbar to all mail windows. Added accesskeys to a number of menu items and fixed menus across product. Moved broadcaster elements to top of xul files to give command keys a chance to work. a=chofmann 1999-09-29 04:29:20 +00:00
ftang%netscape.com f3a69f9b26 fix bug 14879. reviewed by erik 1999-09-28 22:44:15 +00:00
hangas%netscape.com 7e6cdabd7c Cleaned up usage of globalOverlay.xul, moved menu overlays into navigatorOveraly.xul which was the only place it was needed. a=chofmann 1999-09-28 04:40:15 +00:00
hangas%netscape.com 6f95adeff8 Removed globalOverlay.xul which was not needed, slowed down opening the navigator window, and caused the Mac menu (from hiddenwindow) to have two Quit menu items. a=chofmann 1999-09-28 04:37:36 +00:00
pavlov%netscape.com 7cb1b89655 remove open="true" from the tasks menu r=hyatt so that it isn't pressed by default 1999-09-28 01:09:48 +00:00
ducarroz%netscape.com 1e2d503bfe 0 isn't equal to null!, fix for bug 14987. R=hangas,A=chofmann 1999-09-27 21:32:11 +00:00
hangas%netscape.com 2916c01b98 a=chofmann r=hyatt,jefft Cleaned up File and Edit menus for navigator and mail, fixed 14837, fixed 14255. Moved menu from navagator.xul and hiddenwindow.xul into navigatorOverlay.xul. Created global 'New" menu. 1999-09-24 23:03:40 +00:00
ftang%netscape.com ba45ae835b hookup code for 14219 1999-09-23 02:08:39 +00:00
matt%netscape.com 7c5148a464 Just changing things...approved by leaf 1999-09-22 21:52:08 +00:00
ftang%netscape.com 98f58ac596 use dtd for charset detectors menu (not the items yet). Fix typo of pref call 1999-09-22 08:26:29 +00:00
ftang%netscape.com d87ff03c43 add dtd files for charsetDetectors 1999-09-22 07:34:39 +00:00
ftang%netscape.com f0f1407243 add charsetDetectorsOverlay 1999-09-22 06:27:04 +00:00
ftang%netscape.com 0d62ea8830 add charset Detectors menu in overlay 1999-09-22 06:23:45 +00:00