This fix is to align the XDG defined download directory to be used by
Firefox. Changes are to be done in two places, XDG itself which is
tracked by this bug, and the Firefox changes is tracked by
http://defect.opensolaris.org/bz/show_bug.cgi?id=6161.
The patch is quite simple, which is to rename the value for
XDG_DOWNLOAD_DIR from $HOME/Download to $HOME/Downloads
The diff below show the substitution of that string in the template file.
bash-3.2$ svn diff
Index: SUNWxdg-user-dirs.spec
===================================================================
--- SUNWxdg-user-dirs.spec (revision 17244)
+++ SUNWxdg-user-dirs.spec (working copy)
@@ -55,7 +55,8 @@
sed -e "s/TEMPLATES=Templates/TEMPLATES=Documents\/Templates/" \
-e "s/MUSIC=Music/MUSIC=Documents\/Music/" \
-e "s/PICTURES=Pictures/PICTURES=Documents\/Pictures/" \
- -e "s/VIDEOS=Videos/VIDEOS=Documents\/Videos/" user-dirs.defaults >
user-dirs.defaults.$$
+ -e "s/VIDEOS=Videos/VIDEOS=Documents\/Videos/" \
+ -e "s/DOWNLOAD=Download/DOWNLOAD=Downloads/" user-dirs.defaults >
user-dirs.defaults.$$
mv user-dirs.defaults.$$ user-dirs.defaults
sed -e "s/^filename_encoding=UTF-8/filename_encoding=locale/" \