1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-28 20:52:27 +01:00

Remove 'jumpto' and 'places' :dialog args.

These are only available as addons now in Songbird.

--HG--
extra : rebase_source : 27328afb30717da4533411912fe46be92cca5659
This commit is contained in:
Doug Kearns
2010-10-15 04:36:13 +11:00
parent 72b38d2d2e
commit 87b033d41d
2 changed files with 1 additions and 5 deletions

View File

@@ -10,6 +10,7 @@ BUGS:
- command-line option handling is broken in Melodactyl only - it used to work. - command-line option handling is broken in Melodactyl only - it used to work.
FEATURES: FEATURES:
9 Bookmarks are now only supported in SB via an addon.
9 '?' - Reusing '/'. 9 '?' - Reusing '/'.
8 Merge with SongBird's sanitizer implementation. 8 Merge with SongBird's sanitizer implementation.
8 Playlist/SmartPlaylist operations & meta-data operations. 8 Playlist/SmartPlaylist operations & meta-data operations.

View File

@@ -66,7 +66,6 @@ const Config = Module("config", ConfigBase, {
Leave: "Triggered before exiting Songbird", Leave: "Triggered before exiting Songbird",
}, },
// TODO: remove those which don't make sense, can't be provided.
dialogs: { dialogs: {
about: ["About Songbird", about: ["About Songbird",
function () { window.openDialog("chrome://songbird/content/xul/about.xul", "_blank", "chrome,dialog,modal,centerscreen"); }], function () { window.openDialog("chrome://songbird/content/xul/about.xul", "_blank", "chrome,dialog,modal,centerscreen"); }],
@@ -84,16 +83,12 @@ const Config = Module("config", ConfigBase, {
function () { try { window.inspectDOMDocument(content.document); } catch (e) { dactyl.echoerr("DOM Inspector extension not installed"); } }], function () { try { window.inspectDOMDocument(content.document); } catch (e) { dactyl.echoerr("DOM Inspector extension not installed"); } }],
downloads: ["Manage Downloads", downloads: ["Manage Downloads",
function () { window.toOpenWindowByType("Download:Manager", "chrome://mozapps/content/downloads/downloads.xul", "chrome,dialog=no,resizable"); }], function () { window.toOpenWindowByType("Download:Manager", "chrome://mozapps/content/downloads/downloads.xul", "chrome,dialog=no,resizable"); }],
jumpto: ["Jump to a media item",
function () { onJumpToFileKey(); }],
newsmartplaylist: ["Open the file selector dialog", newsmartplaylist: ["Open the file selector dialog",
function () { SBNewSmartPlaylist(); }], function () { SBNewSmartPlaylist(); }],
openfile: ["Open the file selector dialog", openfile: ["Open the file selector dialog",
function () { SBFileOpen(); }], function () { SBFileOpen(); }],
pagesource: ["View page source", pagesource: ["View page source",
function () { window.BrowserViewSourceOfDocument(content.document); }], function () { window.BrowserViewSourceOfDocument(content.document); }],
places: ["Places Organizer: Manage your bookmarks and history",
function () { PlacesCommandHook.showPlacesOrganizer(ORGANIZER_ROOT_BOOKMARKS); }],
preferences: ["Show Songbird preferences dialog", preferences: ["Show Songbird preferences dialog",
function () { window.openPreferences(); }], function () { window.openPreferences(); }],
printsetup: ["Setup the page size and orientation before printing", printsetup: ["Setup the page size and orientation before printing",