mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
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)
11 lines
156 B
Bash
11 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}
|