gaim/www

file isExecutable
(21:38:32) datallah: nosnilmot: why is the Non-root including
mozilla-{nss,nspr} section all a link?
(21:39:09) nosnilmot: datallah: are you using IE or something?
(21:39:11) datallah: yeah
(21:39:17) nosnilmot: datallah: damn you
(21:40:41) datallah: nosnilmot: its missing a >
(21:40:49) nosnilmot: datallah: I know... one mo....
(21:42:20) nosnilmot: LSchiere: sorry :
http://www.nosnilmot.com/patches/gaim-shutup-datallah.patch
(21:43:35) datallah: nosnilmot: much better
(21:44:42) datallah: nosnilmot: btw... i think it looks very nice
(21:44:51) nosnilmot: datallah: why thank you
#!/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