d53e5f01e3
support (better than some well known newsreaders). XPN can operate with all the most diffuse charset starting from US-ASCII to UTF-8. When you edit an article XPN automatically chooses the best charset, however is always possible to override this choice. There also other useful features like scoring, filtered views, random tag-lines, external editor support, one-key navigation, ROT13, spoiler char ... WWW: http://xpn.altervista.org/ Approved by: alexbl (mentor, implicit)
10 lines
156 B
Bash
10 lines
156 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
if [ -z "$1" ] ; then
|
|
export XPN_ARGS=-d
|
|
else
|
|
export XPN_ARGS="$@"
|
|
fi
|
|
exec %%PYTHON_CMD%% %%DATADIR%%/%%XPN%% ${XPN_ARGS}
|