It is considered unsecure to do this in a production environment, but for development it can be nice.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
#!/bin/sh
NEWLISP_REDIRECTION="./dragonfly-framework/newlisp-redirection.lsp"
if [ ! -f $NEWLISP_REDIRECTION ] ; then
echo "ERROR: cannot find file: $NEWLISP_REDIRECTION"
exit 1
fi
echo "If all goes well visit http://localhost in your browser"
newlisp "$NEWLISP_REDIRECTION" -http -d 80 -w . $*