Commit Graph

273 Commits

Author SHA1 Message Date
matt%netscape.com
9b5d185805 fix for bug 14634 r-hangas 1999-11-02 20:57:22 +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
hangas%netscape.com
26fbbb140d Progress on Command Updating and Dispatching (15127). r=scottip 1999-11-02 03:55:59 +00:00
evaughan%netscape.com
039be939e6 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
b5c050d70d Add Localization Notes 1999-10-29 21:53:20 +00:00
danm%netscape.com
dd92cd7d31 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
sfraser%netscape.com
73299b260d Add the various menu-related arrow gifs. fixes bug 17368. r=jfrancis 1999-10-27 23:40:51 +00:00
hangas%netscape.com
84df0919cf 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
4d0d5a20d1 Part of fix for 17160, remove TextEditor from Tasks menu. r=mjudge 1999-10-26 23:07:41 +00:00
hangas%netscape.com
e6c96e93d4 new ui. r=pavlov,german,hyatt 1999-10-26 00:39:19 +00:00
hyatt%netscape.com
fd2ce33fe8 renaming skin.css to global.css r=pavlov 1999-10-24 06:58:38 +00:00
ducarroz%netscape.com
677cd2f18d Bug 14258, implement Send Page, R=alecf 1999-10-23 04:51:40 +00:00
alecf%netscape.com
eca5413d1f prefwindow is now a service thanks to nsIModule conversion 1999-10-22 21:06:26 +00:00
cata%netscape.com
4d48e409f7 bug #15690, r=ftang, removing bogus rules which were affecting the menu template 1999-10-21 21:42:40 +00:00
cmanske%netscape.com
d63ebdf00e 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
bf80c61b26 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
2340222103 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
004c1677de 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
18cbc4b5ab 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
b2a4325241 Landing re-architected command dispatcher. r=hangas(XUL/JS), saari(C++) 1999-10-14 10:58:25 +00:00
tbogard%aol.net
75e967f96c Added rules for the new browser, editor and iframe types. r=hyatt 1999-10-14 10:50:10 +00:00
evaughan%netscape.com
35f37a3be4 Fixed gfx scrollbars style rule. Reviewed by Hyatt 1999-10-14 01:55:41 +00:00
cmanske%netscape.com
074c63daae 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
0fa5cd6df4 update new image names in all XUL, JS, and CSS 1999-10-13 04:26:01 +00:00
alecf%netscape.com
bc629c312d export new gifs on Mac 1999-10-13 04:10:49 +00:00
alecf%netscape.com
dddb1a32a5 export new images on windows
r=mscott
no bug
1999-10-13 04:09:25 +00:00
alecf%netscape.com
0084bc2df1 export new gifs on unix
r=sspitzer
1999-10-13 04:08:15 +00:00
alecf%netscape.com
172de2dfa6 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
c468426b31 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
bf942c2800 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
d1e36c3edc Bug #14999; removed use of toolkit app core; rev=davidm@netscape.com 1999-10-09 06:18:58 +00:00
sspitzer%netscape.com
afe51bfba3 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
ac9115fd89 set the padding to 1 related to bug# 15314 1999-10-07 20:53:23 +00:00
hyatt%netscape.com
4f0f268674 Fixing bustage. 1999-10-01 21:47:17 +00:00
briano%netscape.com
6233e64a9f Fixed the typo that broke the Unix builds. 1999-10-01 21:19:14 +00:00
hyatt%netscape.com
f0b1fd346c Adding skin.css 1999-10-01 21:01:24 +00:00
hyatt%netscape.com
0c1aef9920 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
80bcd0b9ae 14240 [BETA] About box date/version incorrect 1999-10-01 03:32:00 +00:00
hangas%netscape.com
940bc92a57 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
7d9b1cf7f1 fix bug 14879. reviewed by erik 1999-09-28 22:44:15 +00:00
sspitzer%netscape.com
e96fe99b53 fix for #14999. remove the profile appcore 1999-09-28 07:29:25 +00:00
hangas%netscape.com
14554c992d 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
cbc9492543 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
0a448c09a4 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
b76b45536a 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
20d1e45d46 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
sspitzer%netscape.com
9d3ddb14b5 fix for #14726. r=mscott, a=leaf. 1999-09-23 18:40:43 +00:00
ftang%netscape.com
b83e349e61 hookup code for 14219 1999-09-23 02:08:39 +00:00
matt%netscape.com
c79fd13732 Just changing things...approved by leaf 1999-09-22 21:52:08 +00:00
ftang%netscape.com
ae7070934b use dtd for charset detectors menu (not the items yet). Fix typo of pref call 1999-09-22 08:26:29 +00:00