diff options
author | takluyver <takluyver@web> | 2018-04-13 07:33:21 +0000 |
---|---|---|
committer | IkiWiki <ikiwiki.info> | 2018-04-13 07:33:21 +0000 |
commit | 848be156b59f2291b167156e6bfadaa2168ae3f1 (patch) | |
tree | 544ee13474ca714e00660414ddcee0cffeac12f7 /Specifications | |
parent | 5c913c818b3c41e632713d1eaf990780c3d65b43 (diff) |
Improve formatting
Diffstat (limited to 'Specifications')
-rw-r--r-- | Specifications/file-manager-interface.mdwn | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Specifications/file-manager-interface.mdwn b/Specifications/file-manager-interface.mdwn index ecbca900..47781538 100644 --- a/Specifications/file-manager-interface.mdwn +++ b/Specifications/file-manager-interface.mdwn @@ -19,11 +19,11 @@ Applications sometimes need to interact with the desktop's file manager. This p These three methods take an array of URI strings, and a startup id as specified by the startup notification specification. -[[ShowFolders]] assumes that the specified URIs are folders; the file manager is supposed to show a window with the contents of each folder. Calling this method with `file:///etc` as the single element in the array of URIs will cause the file manager to show the contents of /etc as if the user had navigated to it. The behavior for more than one element is left up to the implementation; commonly, multiple windows will be shown, one for each folder. +* `ShowFolders` assumes that the specified URIs are folders; the file manager is supposed to show a window with the contents of each folder. Calling this method with `file:///etc` as the single element in the array of URIs will cause the file manager to show the contents of /etc as if the user had navigated to it. The behavior for more than one element is left up to the implementation; commonly, multiple windows will be shown, one for each folder. -[[ShowItems]] doesn't make any assumptions as to the type of the URIs. The file manager is supposed to select the passed items within their respective parent folders. Calling this method on `file:///etc` as the single element in the array of URIs will cause the file manager to show a file listing for "/", with "etc" highlighted. The behavior for more than one element is left up to the implementation. +* `ShowItems` doesn't make any assumptions as to the type of the URIs. The file manager is supposed to select the passed items within their respective parent folders. Calling this method on `file:///etc` as the single element in the array of URIs will cause the file manager to show a file listing for "/", with "etc" highlighted. The behavior for more than one element is left up to the implementation. -[[ShowItemProperties]] should cause the file manager to show a "properties" window for the specified URIs. For local Unix files, these properties can be the file permissions, icon used for the files, and other metadata. +* `ShowItemProperties` should cause the file manager to show a "properties" window for the specified URIs. For local Unix files, these properties can be the file permissions, icon used for the files, and other metadata. # Activation |