Commit Graph

1126 Commits

Author SHA1 Message Date
pinkerton%aol.net
07e3915225 full history in Go menu 2005-04-21 05:40:38 +00:00
pinkerton%aol.net
fafe1e7c3a use long long for download file size progress (bug 288585) 2005-04-21 01:25:42 +00:00
pinkerton%aol.net
70aec90aa6 fix crash loading empty tab group as we'd try to do validation on non-existant
web browser (all tabs had been removed) (bug 290874)
2005-04-20 23:25:03 +00:00
pinkerton%aol.net
b053406135 add "new folder" to choose download folder sheet (bug 288743) 2005-04-20 23:04:28 +00:00
pinkerton%aol.net
35a916c518 ignore backspace if focus is in object, embed, and applets when handling
backspace to go back (bug 268887)
2005-04-20 22:42:24 +00:00
cbiesinger%web.de
33e7cc8025 Bug 289842 Make nsIHelperAppLauncher inherit from nsICancelable
r=bz sr=darin a=asa
2005-04-15 19:41:07 +00:00
smfr%smfr.org
e09be71caa Fix for bug 290241 (exception thrown dragging links onto the tab bar). Patch by #camino, r=me. 2005-04-14 02:59:24 +00:00
smfr%smfr.org
1e0471db7e Landing changes by Bruce Davidson <Bruce.Davidson@iplbath.com> to get Cut/Copy/Paste to work for bookmarks (bug 155484), and to fix the pasteboard string identifiers in the code (bug 287118). I made three changes to the patch:
Change CHBrowserView to no longer accept bookmark types (kCaminoBookmarkListPBoardType, kWebURLsWithTitlesPboardType), because gecko can't handle them. Instead, a parent view will now handle the drop (and correctly load tabs etc).

NSPastboard+Utils
-containsURLData changed to test for a scheme on the NSURL. Otherwise, any random text would be accepted as url data.

BookmarkViewController:
-pasteBookmarks:intoFolder:index:copying fixed to keep an array of newly created bookmark items when copying, so we can correctly reveal those new items.
2005-04-13 05:35:27 +00:00
smfr%smfr.org
07ecc805ba Fix build by removing references to unused xpt files. 2005-04-12 21:18:32 +00:00
smfr%smfr.org
e108d74ed1 Remove a space before an #import 2005-04-12 03:32:30 +00:00
smfr%smfr.org
73f1747971 Fix the build after the MOZILLA_INTERNAL_API landing. 2005-04-06 17:39:55 +00:00
bsmedberg%covad.net
8767c080a4 Bug 288626 - attempt to manually edit the mysterious xcode project file for Camino. 2005-04-06 06:19:08 +00:00
bsmedberg%covad.net
b7d34d892e Attempting to fix b=288626, this will probably require setting MOZILLA_INTERNAL_API define in the xcode project, as I mentioned in the bug. 2005-04-06 06:11:40 +00:00
cbiesinger%web.de
f9beb62ec5 forgot to check in this part of the patch... fixing camino bustage 2005-04-05 23:55:39 +00:00
cbiesinger%web.de
f0b358248f 228968 r=bz sr=darin
- add a new nsIWebProgressListener2 interface, inheriting from
  nsIWebProgressListener, providing a 64-bit onProgressChange method
- make nsITransfer inherit from that interface, and remove an unused
  progressListener attribute
- make webbrowserpersist support listeners that implement
  nsIWebProgressListener2, and give them 64-bit progress values
- make nsIHelperAppLauncher's listener setWebProgressListener function take an
  nsIWebProgressListener2 interface

And fix up all implementations according to that.
2005-04-05 23:24:23 +00:00
smfr%smfr.org
6c349555a7 Remove explicit -bundle from link line of prefs panes, since Xcode will add it automatically. 2005-04-05 03:17:49 +00:00
smfr%smfr.org
f93b17eb44 Fix path to Info-HistoryPrefPane.plist. 2005-04-04 02:48:59 +00:00
smfr%smfr.org
1e9092c81f Converting users of nsIPrefBranch to use the PreferenceManager (no bug). 2005-04-04 01:52:35 +00:00
smfr%smfr.org
0e0f1c416b Fix signature of -isOpaque 2005-04-04 01:43:02 +00:00
smfr%smfr.org
6562c84def Fix bug 281133 - Add Bookmark fails for page without a title. Test to see if we have a page title before adding to the dict. 2005-04-02 17:37:15 +00:00
smfr%smfr.org
576ecd0feb Improve sorting of history categories and items, taking care to sort categories sensibly given the current sort order.
Also save the expanded state of the history view in user defaults, to preserve it across launches.
No bug.
2005-04-01 18:12:16 +00:00
joshmoz%gmail.com
5a7ec0baa2 remove some debug code I accidentally checked in, add a reminder comment 2005-03-31 20:37:32 +00:00
joshmoz%gmail.com
7eada907b5 don't crash in autocomplete code when a search is requested without a valid session. b=288124 r=smfr 2005-03-31 08:33:59 +00:00
smfr%smfr.org
6fd302c450 Make CHBrowserView opaque so that view updates don't propagate to its parent views, which should reduce the amount of view redrawing that takes place. Currently, ChildViews are not opaque (because opacity causes issues with NSQuickDrawViews, see bug 166932). 2005-03-30 06:32:18 +00:00
smfr%smfr.org
3cc8249940 Remove history logging code now that 280342 is fixed. 2005-03-29 04:27:41 +00:00
smfr%smfr.org
201ba8cd2f Improved bookmarks menu item enabling. Rather than try to recreate the logic for automatic item enabling (which is non-trivial), use a dummy, auto-enabling bookmarks menu, loaded from the nib, to get correct enable states and item titles. This really fixes bug 287339. 2005-03-26 04:05:46 +00:00
smfr%smfr.org
54f7f1bb87 Fix bug 287339: correctly enable/disable bookmark items when tabs close, and windows change layers.
Make the NSOpenPanel into a sheet when a window is up.
Allow opening multiple items in the open panel, opening them in tabs.
Remove [MainController pumpGeckoEventQueue] which is obsolete and unused.
Add NSResponder+Utils.h/m to the project.
Remove #ifdefs in AppComponents.mm now that we will be using nsSimpleGlobalHistory.
2005-03-25 18:23:31 +00:00
smfr%smfr.org
35f255b89b Reinstate the context menu on bookmark collections, that got lost in the reshuffle. 2005-03-25 07:21:45 +00:00
smfr%smfr.org
e19d8edaaa New category on NSResponder to find the responder for a given action, and find an item of a particular class in the responder chain.
Add method on NSMenu category to enable or disable all items (potentially recursing into submenus).
2005-03-25 06:36:29 +00:00
smfr%smfr.org
ba38c193f2 Fix bug 153836, patch by wevah. Map escape to Stop and allow unmodified '+' to enlarge the text size. r=me. 2005-03-25 01:13:59 +00:00
joshmoz%gmail.com
b5e4460494 add error checking to default browser code. no bug. 2005-03-25 00:28:56 +00:00
joshmoz%gmail.com
9f80fb0090 remove unnecessary override method from tab code. no bug. r=geoff sr=sfraser 2005-03-25 00:04:21 +00:00
joshmoz%gmail.com
46b8d02ae3 make sure we can always find Camino's path in our default browser menu code. b=287380 sr=sfraser 2005-03-25 00:01:25 +00:00
smfr%smfr.org
c8cf2e47b4 Check in patch from bug 287083 (patch by <torben@despammed.com>). 2005-03-24 04:04:58 +00:00
joshmoz%gmail.com
833cfa1550 disable reload and some other menus when the bookmark manager is open. b=284831 sr=smfr 2005-03-23 22:56:01 +00:00
smfr%smfr.org
188f624249 Fix bug 286873 (patch by Wevah), r=josh, sr=pinkerton. 2005-03-23 21:44:34 +00:00
smfr%smfr.org
57320b57b0 Fix spelling error in comment. 2005-03-21 16:18:46 +00:00
smfr%smfr.org
adbd27f110 Remove a shell script target that stuffed additional history properties files into embed.jar, since we don't need them any more. Also put the version resource in Camino.rsrc, so that it's available for the Director plugin when running in any language. 2005-03-21 06:16:27 +00:00
smfr%smfr.org
5153cd8596 Fix bug 279270: when copying images, put only the image data on the clipboard so that applications that prefer text over image data don't just get the image location. 2005-03-21 02:54:56 +00:00
smfr%smfr.org
68c673e895 Fix bug 285648: url from subframe load could show in Camino's url bar. Fix by ignoring OnLocationChange for windows other than the content window. 2005-03-21 02:37:29 +00:00
joshmoz%gmail.com
43aceb573a add some default browser code documentation 2005-03-17 20:21:00 +00:00
joshmoz%gmail.com
0c201c8dfd don't hang if launch services can't find the browser it said is default. no bug 2005-03-17 20:15:36 +00:00
smfr%smfr.org
7759071e53 Fix bug 286157: the Description column was calling -description, rather than -itemDescription. 2005-03-15 06:35:40 +00:00
cbiesinger%web.de
850f3954ab Bug 285517 show better message in helper app dialog when the type was sniffed from text/plain
r=bz sr=darin
2005-03-13 17:03:44 +00:00
smfr%smfr.org
98119ac2c1 Fix bug 285901: when adding a bookmark, be sure to use what the user entered. When bookmarking tabs, take the suggested title from the frontmost tab, not the first one, and when tabs are open but you just want to bookmark the current page, and it's not the first tab, make sure we bookmark the correct tab. 2005-03-13 04:01:56 +00:00
smfr%smfr.org
38c2744108 Fix bug 285793 (broken Add Bookmark toolbar item) by fixing the selector name on the button. 2005-03-13 03:45:15 +00:00
smfr%smfr.org
9a2346a58b New nib file for Add Bookmarks (part of last checkin). 2005-03-10 19:30:57 +00:00
smfr%smfr.org
7473e0fffe Rewrite the add bookmark code (no bug) so that we don't need a BookmarksViewController for this.
Fix bug 285339 (progressive slowdown with more tabs) by releasing all the nib members of the BookmarksEditing nib when closing tabs.
Delay loading the bookmarks editing nib until bookmarks are shown, making new tab creation faster.
When creating a bookmark when bookmarks are showing, use the previous page as the bookmark by looking back in session history.
Save the state of the history folders for a given bookmarks view.
Fix bug 247543 (remember last used Add Bookmark folder across windows).
Change [BookmarkItem description] to [BookmarkItem itemDescription] because -description should be reserved.
When creating a new folder deep in bookmarks, expand all parent folders so that the new folder is visible.
Rename various "add bookmark" methods so that they are all consistent (allowing us to write to FirstResponder when appropriate).
2005-03-10 18:10:23 +00:00
smfr%smfr.org
15c52d52f5 Fix typo in pinkerton's last checkin. 2005-03-07 06:44:32 +00:00
smfr%smfr.org
37819132e6 Fix bug 184394: allow Camino to load additional pref panes from its internal PreferencePanes directory, and also from ~/Library/Application Support/Camino/PreferencePanes, and /Library/Application Support/Camino/PreferencePanes. r=pinkerton 2005-03-06 06:56:57 +00:00