Difference between revisions of "User:Sardisson/AppleScript"

From Camino Wiki
Jump to navigation Jump to search
(stuff)
(fixed one)
 
(5 intermediate revisions by the same user not shown)
Line 3: Line 3:
 
* Bookmarks
 
* Bookmarks
 
** isSeparator
 
** isSeparator
** isTabGroup
+
** isTabGroup (r/w)
** UUID (id) - separators don't have (persistent) ones (only temporary ones for copying), so can't use BookmarkItem's UUID method as the cocoaKey directly, because it creates UUIDs
+
** isDockMenu (r/w)
*: You can reference a bookmark by properties only if you know its collection; there's no "allBookmarks" that corresponds to the root folder
+
**: <s>This could be history, iirc, which makes finding the current one difficult (no, see {{bug|374553}})</s>
 +
** <s>UUID (id) - {{bug|730653}}</s> '''FIXED'''
 +
**: separators don't have (persistent) ones (only temporary ones for copying), so can't use BookmarkItem's UUID method as the cocoaKey directly, because it creates UUIDs
 +
**: You can reference a bookmark by properties only if you know its collection; there's no "allBookmarks" that corresponds to the root folder
 +
** current bookmark destination folder [http://mxr.mozilla.org/camino/source/camino/src/bookmarks/AddBookmarkDialogController.mm#105]
  
* Core Suite commands
+
* Standard Suite commands ({{bug|394581}})
 
** Save
 
** Save
 
** Print
 
** Print
  
* Rearranging tabs
+
* Rearranging tabs ({{bug|520515}})
 +
 
 +
* Tooltip windows aren't filtered out ({{bug|437802}})

Latest revision as of 17:27, 9 May 2012

Things I'd like to fix:

  • Bookmarks
    • isSeparator
    • isTabGroup (r/w)
    • isDockMenu (r/w)
      This could be history, iirc, which makes finding the current one difficult (no, see Bug 374553)
    • UUID (id) - Bug 730653 FIXED
      separators don't have (persistent) ones (only temporary ones for copying), so can't use BookmarkItem's UUID method as the cocoaKey directly, because it creates UUIDs
      You can reference a bookmark by properties only if you know its collection; there's no "allBookmarks" that corresponds to the root folder
    • current bookmark destination folder [1]