gaim/www

file isExecutable
(11:09:41) LSchiere2: nosnilmot: i have a report that the paths in the non-root mozilla compile install of gaim are sketchy
(11:10:17) nosnilmot: any specifics?
(11:10:42) LSchiere2: yeah, people don't normally have a "usr" inside ~
(11:14:28) nosnilmot: I do
(11:14:51) nosnilmot: no I don't...
(11:15:41) LSchiere2: its not a big deal, easy to change, i just thought i'd let you know
(11:17:18) nosnilmot: http://www.nosnilmot.com/gaim/gaim-faq-ssl.patch
(11:18:37) LSchiere2: oh wow, ask and i recieve. you rock nosnilmot
(11:18:55) nosnilmot: I don't like to be wrong
#!/bin/sh
#
# This script updates the gaim web todo. It has been ripped from my much
# more complicated script, which works on several unique todo files for
# various projects, so if you want to simplify it and recommit, feel free.
#
# Copy this to ~/bin and change all the /path/to paths to the correct paths
# for the various files.
#
# Next, edit your $HOME/.todorc and add the following:
#
# on save {
# exec $HOME/bin/update-web-todo.sh `pwd`/$TODODB
# }
#
# Of course, feel free to change the path above if you have update-web-todo.sh
# in a different location.
#
TODODB=$1
DESTFILE=
#XSLTFILE=todo-html.xslt
XSLTFILE=todo-nodone-html.xslt
# NOTE: Update this to point to your actual todo file, and to the location
# of your outputted todo.php file.
if [ "$TODODB" == "/path/to/local/.todo" ]; then
DESTFILE="/path/to/gaim/web/todo.php"
XSLTFILE=todo-gaim-php.xslt
fi
if [ x$DESTFILE != x ]; then
xsltproc /path/to/xslt/$XSLTFILE $TODODB > $DESTFILE
fi