From 77b96e2fb58ddb5ed8d5e41b3a8c1aafc2831a8c Mon Sep 17 00:00:00 2001 From: William Jon McCann Date: Mon, 30 Apr 2012 11:38:35 -0400 Subject: thumbnail: Modify to follow the XDG Basedir Spec https://bugzilla.gnome.org/show_bug.cgi?id=646508 See http://lists.freedesktop.org/archives/xdg/2012-May/012393.html --- thumbnail/thumbnail-spec.sgml | 45 +++++++++++++++++++++++++++---------------- 1 file changed, 28 insertions(+), 17 deletions(-) diff --git a/thumbnail/thumbnail-spec.sgml b/thumbnail/thumbnail-spec.sgml index 091b5d1..2eb1a53 100644 --- a/thumbnail/thumbnail-spec.sgml +++ b/thumbnail/thumbnail-spec.sgml @@ -3,8 +3,8 @@
Thumbnail Managing Standard - Version 0.7.0 - September 2004 + Version 0.8.0 + May 2012 Jens @@ -30,6 +30,13 @@ History + May 2012, Version 0.8.0 + + Modified to respect the + XDG + Base Directory Specification + + September 2004, Version 0.7.0 Added readonly support for shared thumbnail repositories @@ -166,20 +173,24 @@ Thumbnail Directory - There exists exactly one place where all generated thumbnails will - be stored. This is the .thumbnails directory located in the users - home. + For every user, there must be exactly one place where all generated thumbnails are + stored. This thumbnails directory is located in the user's + XDG Cache Home, as defined by the + XDG + Base Directory Specification. Namely, if the environment variable $XDG_CACHE_HOME + is set and not blank then the directory $XDG_CACHE_HOME/thumbnails will be used, otherwise + $HOME/.cache/thumbnails will be used. + Directory Structure - Within this dir there are living some other subdirectories showing - in the following listing: + The thumbnails directory will have the following internal structure: -~/.thumbnails/ -~/.thumbnails/normal -~/.thumbnails/large/ -~/.thumbnails/fail/ +$XDG_CACHE_HOME/thumbnails/ +$XDG_CACHE_HOME/thumbnails/normal +$XDG_CACHE_HOME/thumbnails/large/ +$XDG_CACHE_HOME/thumbnails/fail/ The meaning of the directories are as follows: @@ -417,7 +428,7 @@ To get the final filename for the thumbnail just append a '.png' to the hash string. According to the dimension of the thumbnail you must store - the result either in ~/.thumbnails/normal or ~/.thumbnails/large. + the result either in $XDG_CACHE_HOME/thumbnails/normal or $XDG_CACHE_HOME/thumbnails/large. @@ -428,19 +439,19 @@ Consider we have a file ~/photos/me.png. We want to create a thumbnail with a size of 128x128 pixel for it, which means it will be stored in the - ~/.thumbnails/normal directory. The absolute canonical URI for the file in + $XDG_CACHE_HOME/thumbnails/normal directory. The absolute canonical URI for the file in this example is file:///home/jens/photos/me.png. The MD5 hash for the uri as a hex string is c6ee772d9e49320e97ec29a7eb5b1697. Following the steps above this results in the following final thumbnail path: -/home/jens/.thumbnails/normal/c6ee772d9e49320e97ec29a7eb5b1697.png +/home/jens/.cache/thumbnails/normal/c6ee772d9e49320e97ec29a7eb5b1697.png Permissions A few words regarding permissions: - All the directories including the ~/.thumbnails directory must have set + All the directories including the $XDG_CACHE_HOME/thumbnails directory must have set their permissions to 700 (this means only the owner has read, write and execute permissions, see "man chmod" for details). Similar, all the files in the thumbnail directories should have set their permissions to 600. This @@ -586,7 +597,7 @@ if (file.mtime != thumb.MTime) { section there is already a 'fail' directory mentioned, which should be used for this. Every program must create a directory of it's own there with the name of the program appended by the version number - (eg. ~/.thumbnails/fail/nautilus-1.0). + (eg. $XDG_CACHE_HOME/thumbnails/fail/nautilus-1.0). For every thumbnail generation failure the program creates an empty PNG file. If it's possible to obtain some additional information from @@ -596,7 +607,7 @@ if (file.mtime != thumb.MTime) { set. The procedure for the saving of such a fail image is the same as described in Thumbnail Saving. You must only use the application specific directory within - ~./thumbnails/fail instead of the size specific ones. + $XDG_CACHE_HOME/thumbnails/fail instead of the size specific ones. This approach has the advantage that a program can access information about a thumbnail creation failure the same way as it does with -- cgit v1.2.3-54-g00ecf