Revision 20145 (by benny, 2006/03/01 15:43:43) 2006-03-01 Benedikt Meurer <benny@xfce.org>

* docs/manual/C/Thunar.xml.in: Add "Frequently Asked Questions".
* thunar/thunar-location-buttons.c(thunar_location_buttons_clicked):
Make sure the new active button is visible on the location button bar.
* ThunarHelp.in, Makefile.am: Add ThunarHelp script, which is used to
display the Thunar user manual.
* thunar/thunar-dialogs.{c,h}, thunar/Makefile.am: Add new helper method
thunar_dialogs_show_help(), which is used to open the documentation
browser.
* thunar/thunar-window-ui.xml, thunar/thunar-window.c: Add "Contents"
item to the "Help" menu.
* thunar/thunar-chooser-button.c(thunar_chooser_button_file_changed):
Fix typo.
* po/Thunar.pot, po/*.po: Merge new strings.
* po/de.po: Updated the german translations.


#!/bin/sh
#
# $Id: ThunarHelp.in 20145 2006-03-01 15:43:43Z benny $
#
# Copyright (c) 2004-2006 Benedikt Meurer <benny@xfce.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#

HELPDIR="@datadir@/doc/Thunar/html/"

if test -n "$LC_ALL"; then
  LC=$LC_ALL
elif test -n "$LANG"; then
  LC=$LANG
else
  LC="C"
fi

if test -n "$1"; then
  HELPFILE="$1.html"
else
  HELPFILE="index.html"
fi

if test -r "$HELPDIR/$LC/$HELPFILE"; then
  URL="$HELPDIR/$LC/$HELPFILE"
elif test -r "$HELPDIR/`echo $LC | sed 's/\(..\)_.*/\1/'`/$HELPFILE"; then
  URL="$HELPDIR/`echo $LC | sed 's/\(..\)_.*/\1/'`/$HELPFILE"
else 
  URL="$HELPDIR/C/index.html"
fi

[ -n "$2" ] && URL="$URL#$2"

exec exo-open --launch WebBrowser "file://$URL"

# vim:set ts=2 sw=2 et ai: