Commit Graph

45 Commits

Author SHA1 Message Date
sford3%swbell.net
90f5dda8a8 Fix bug 21474 add send page to the editor, r=brade a=waterson
git-svn-id: svn://10.0.0.236/trunk@61621 18797224-902f-48f8-a5cc-f745e15eee43
2000-02-25 00:55:20 +00:00
mcafee%netscape.com
5152c89dd8 Backing out my fix for hiding the IRC menu (28192) r=slamm,shaver,hyatt a=jevering
git-svn-id: svn://10.0.0.236/trunk@61545 18797224-902f-48f8-a5cc-f745e15eee43
2000-02-24 00:13:17 +00:00
mcafee%netscape.com
d676dd647b Adding pref to hide IRC menu (28192) r=matt,hyatt a=jar
git-svn-id: svn://10.0.0.236/trunk@61465 18797224-902f-48f8-a5cc-f745e15eee43
2000-02-23 01:38:52 +00:00
matt%netscape.com
a9eaf9f288 adding function for calling top lever window for help
menu fix 22011 r=danm


git-svn-id: svn://10.0.0.236/trunk@61063 18797224-902f-48f8-a5cc-f745e15eee43
2000-02-16 05:14:02 +00:00
sfraser%netscape.com
135cb55f25 Fix for bug 24685 -- make some items on the navigator context menu pay attention to command nodes, so they get automagically enabled, and executed. r=Ben Goodger
git-svn-id: svn://10.0.0.236/trunk@61059 18797224-902f-48f8-a5cc-f745e15eee43
2000-02-16 05:06:03 +00:00
sfraser%netscape.com
43dac9d58a Changes to get edit menu commands updating properly. For bug 18395. r=pinkerton
git-svn-id: svn://10.0.0.236/trunk@61013 18797224-902f-48f8-a5cc-f745e15eee43
2000-02-16 01:49:50 +00:00
matt%netscape.com
60afe4dee7 fix for bug 27413 by using openDialog. r=ben
git-svn-id: svn://10.0.0.236/trunk@60941 18797224-902f-48f8-a5cc-f745e15eee43
2000-02-15 22:14:01 +00:00
ben%netscape.com
08ac82e794 remove the modal about dialog (actually, make it controllable via pref). default is about webpage as before. r=bryner
git-svn-id: svn://10.0.0.236/trunk@59957 18797224-902f-48f8-a5cc-f745e15eee43
2000-02-06 22:36:29 +00:00
ben%netscape.com
ad9a78b1ec making prefwindow modal again...
git-svn-id: svn://10.0.0.236/trunk@58717 18797224-902f-48f8-a5cc-f745e15eee43
2000-01-26 03:05:57 +00:00
pinkerton%netscape.com
bfcfd92a09 fix case mismatch with a couple of XPConnect interfaces. now we can quit. (r=bryner)
git-svn-id: svn://10.0.0.236/trunk@58702 18797224-902f-48f8-a5cc-f745e15eee43
2000-01-26 02:20:16 +00:00
brade%netscape.com
984eac8bce load help into a new browser window (rather than using the current front window which may not be a browser window) (#20291; r=hangas)
git-svn-id: svn://10.0.0.236/trunk@58440 18797224-902f-48f8-a5cc-f745e15eee43
2000-01-23 19:43:57 +00:00
michael.lowe%bigfoot.com
11377834e1 Convert About Mozilla into a modal dialog (bug 5921)
git-svn-id: svn://10.0.0.236/trunk@58435 18797224-902f-48f8-a5cc-f745e15eee43
2000-01-23 12:40:24 +00:00
ducarroz%netscape.com
f8402bd1cd Bug 24391. Replace OpenComposeWindowWithValues by OpenComposeWindow. R=mscott,bienvenu A=chofmann
git-svn-id: svn://10.0.0.236/trunk@58350 18797224-902f-48f8-a5cc-f745e15eee43
2000-01-21 15:05:59 +00:00
rgoodger%ihug.co.nz
aa5e6113aa [prefwindow] fix for mac prefwindow startup crasher, mail bool-radio pref functionality hookup
git-svn-id: svn://10.0.0.236/trunk@57101 18797224-902f-48f8-a5cc-f745e15eee43
2000-01-07 12:05:09 +00:00
rgoodger%ihug.co.nz
8cb0670425 PrefWindow Landing - javascript infrastructure changes, r=alecf@netscape.com
git-svn-id: svn://10.0.0.236/trunk@57076 18797224-902f-48f8-a5cc-f745e15eee43
2000-01-07 05:52:57 +00:00
hangas%netscape.com
b0cc23dd32 Command updating and dispatching changes for menu items. Fixes 17848. r=hyatt, a=chofmann
git-svn-id: svn://10.0.0.236/trunk@52837 18797224-902f-48f8-a5cc-f745e15eee43
1999-11-05 02:21:47 +00:00
davidm%netscape.com
ad7f1ff33f 8673 ShutDown() should try to close all open windows.
r= hangas


git-svn-id: svn://10.0.0.236/trunk@52678 18797224-902f-48f8-a5cc-f745e15eee43
1999-11-03 05:26:31 +00:00
syd%netscape.com
0887d1ab7b 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


git-svn-id: svn://10.0.0.236/trunk@52543 18797224-902f-48f8-a5cc-f745e15eee43
1999-11-02 12:29:57 +00:00
hangas%netscape.com
ab9a0355a1 Progress on Command Updating and Dispatching (15127). r=scottip
git-svn-id: svn://10.0.0.236/trunk@52500 18797224-902f-48f8-a5cc-f745e15eee43
1999-11-02 03:55:59 +00:00
hangas%netscape.com
5fb3a93517 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
git-svn-id: svn://10.0.0.236/trunk@52014 18797224-902f-48f8-a5cc-f745e15eee43
1999-10-27 23:01:09 +00:00
ducarroz%netscape.com
6a5732fdec Bug 14258, implement Send Page, R=alecf
git-svn-id: svn://10.0.0.236/trunk@51636 18797224-902f-48f8-a5cc-f745e15eee43
1999-10-23 04:51:40 +00:00
alecf%netscape.com
ba7f0a4cb5 prefwindow is now a service thanks to nsIModule conversion
git-svn-id: svn://10.0.0.236/trunk@51562 18797224-902f-48f8-a5cc-f745e15eee43
1999-10-22 21:06:26 +00:00
cmanske%netscape.com
b3ffd2ef95 Fixed bug 15442 - use about:blank for empty doc URL for editor. r=law
git-svn-id: svn://10.0.0.236/trunk@50860 18797224-902f-48f8-a5cc-f745e15eee43
1999-10-15 21:24:45 +00:00
hyatt%netscape.com
9259952dca Landing re-architected command dispatcher. r=hangas(XUL/JS), saari(C++)
git-svn-id: svn://10.0.0.236/trunk@50672 18797224-902f-48f8-a5cc-f745e15eee43
1999-10-14 10:58:25 +00:00
cmanske%netscape.com
376ee7ffc4 Fixed bug 16118, part of fix for 14342. Reduced size of ender input widget. r=hyatt,hangas
git-svn-id: svn://10.0.0.236/trunk@50626 18797224-902f-48f8-a5cc-f745e15eee43
1999-10-14 00:13:21 +00:00
hangas%netscape.com
d6f2d461e4 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
git-svn-id: svn://10.0.0.236/trunk@49300 18797224-902f-48f8-a5cc-f745e15eee43
1999-09-29 04:29:20 +00:00
ducarroz%netscape.com
4640ae5514 0 isn't equal to null!, fix for bug 14987. R=hangas,A=chofmann
git-svn-id: svn://10.0.0.236/trunk@49154 18797224-902f-48f8-a5cc-f745e15eee43
1999-09-27 21:32:11 +00:00
hangas%netscape.com
0ade1185d1 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.
git-svn-id: svn://10.0.0.236/trunk@49013 18797224-902f-48f8-a5cc-f745e15eee43
1999-09-24 23:03:40 +00:00
davidm%netscape.com
78dcf00f4e Add check marks to view menu. Make collapse state persistent. Add slider to the list of chrome that should be hidden when the side bar is hidden
git-svn-id: svn://10.0.0.236/trunk@48300 18797224-902f-48f8-a5cc-f745e15eee43
1999-09-20 01:55:16 +00:00
hangas%netscape.com
8c7a27fb5b Modifying commandUpdater JS code to be more efficient.
git-svn-id: svn://10.0.0.236/trunk@48071 18797224-902f-48f8-a5cc-f745e15eee43
1999-09-17 23:24:04 +00:00
davidm%netscape.com
6ff017d8e3 Change quit code. Change wallet code to load URL's directly rather than call appcore
git-svn-id: svn://10.0.0.236/trunk@47869 18797224-902f-48f8-a5cc-f745e15eee43
1999-09-16 23:44:07 +00:00
hangas%netscape.com
25fac7113b Added commandUpdater code to mail 3pane.
git-svn-id: svn://10.0.0.236/trunk@47825 18797224-902f-48f8-a5cc-f745e15eee43
1999-09-16 20:24:07 +00:00
hangas%netscape.com
3e54f3fd39 More advances in commanUpdater development. Making this work from globalOverlay.xul so that less xul and js is required for each window.
git-svn-id: svn://10.0.0.236/trunk@47758 18797224-902f-48f8-a5cc-f745e15eee43
1999-09-16 07:37:45 +00:00
hangas%netscape.com
995aea772f Default edit menu items to disabled.
git-svn-id: svn://10.0.0.236/trunk@47737 18797224-902f-48f8-a5cc-f745e15eee43
1999-09-16 05:44:37 +00:00
hangas%netscape.com
3a66af9238 Added real commandUpdater code to globalOverlay and addressbook. So far the Select All menu item enables/disables with this code. Stay tuned for more...
git-svn-id: svn://10.0.0.236/trunk@47715 18797224-902f-48f8-a5cc-f745e15eee43
1999-09-16 01:46:30 +00:00
hangas%netscape.com
1cd3a70562 Default edit menu items to disabled.
git-svn-id: svn://10.0.0.236/trunk@47695 18797224-902f-48f8-a5cc-f745e15eee43
1999-09-16 00:59:15 +00:00
davidm%netscape.com
dcaa2bea27 12078 [RFE] Should be able to control which toolbars are displayed
10978   [FEATURE] Collapsible toolbars


git-svn-id: svn://10.0.0.236/trunk@47523 18797224-902f-48f8-a5cc-f745e15eee43
1999-09-15 04:42:07 +00:00
davidm%netscape.com
a711a88e66 12893 [DOGFOOD] File --> Exit causes ender to get loaded ???
git-svn-id: svn://10.0.0.236/trunk@47501 18797224-902f-48f8-a5cc-f745e15eee43
1999-09-15 02:15:17 +00:00
hangas%netscape.com
638c154e6e Added Preferences to globalOverlay.xul and converted the windows over to use it.
git-svn-id: svn://10.0.0.236/trunk@47045 18797224-902f-48f8-a5cc-f745e15eee43
1999-09-12 08:27:01 +00:00
hangas%netscape.com
009d6fd337 Moved edit card and new card JS here so that they could be used from other components.
git-svn-id: svn://10.0.0.236/trunk@44779 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-27 07:05:01 +00:00
hangas%netscape.com
bbb4e514dc *** empty log message ***
git-svn-id: svn://10.0.0.236/trunk@40426 18797224-902f-48f8-a5cc-f745e15eee43
1999-07-21 07:28:21 +00:00
hangas%netscape.com
8ff80e2e28 Split up globalOverlay into three files
git-svn-id: svn://10.0.0.236/trunk@40071 18797224-902f-48f8-a5cc-f745e15eee43
1999-07-19 03:24:04 +00:00
hangas%netscape.com
6ec2bdcb0f Added Exit menu and function
git-svn-id: svn://10.0.0.236/trunk@40015 18797224-902f-48f8-a5cc-f745e15eee43
1999-07-18 20:20:52 +00:00
hangas%netscape.com
6d7ced0b18 Still writing globalOverlay. Not yet part of build.
git-svn-id: svn://10.0.0.236/trunk@40014 18797224-902f-48f8-a5cc-f745e15eee43
1999-07-18 19:43:44 +00:00
hangas%netscape.com
488865c377 First Checked In.
git-svn-id: svn://10.0.0.236/trunk@40009 18797224-902f-48f8-a5cc-f745e15eee43
1999-07-18 10:04:44 +00:00