|
Revision 16595, 1.0 kB
(checked in by andara, 1 year ago)
|
[runpugs] - Settings now go in $HOME/.webtermrc (using Config::General).
Look at webtermrc for example settings.
- Prompt detection now more robust.
- Easier back-end testing with command-line REPLs (see /bin).
|
- Property svn:executable set to
*
|
| Line | |
|---|
| 1 |
#Pugs |
|---|
| 2 |
#ulimit="ulimit -m 640000; ulimit -v 64000;" |
|---|
| 3 |
#nice="/usr/bin/nice" |
|---|
| 4 |
#pugs="/usr/bin/pugs" |
|---|
| 5 |
#rel_root="/home/andara/pugs-rel" |
|---|
| 6 |
#dev_root="/home/andara/pugs-dev" |
|---|
| 7 |
#rel_lib="-I$rel_root/blib6/lib" |
|---|
| 8 |
#dev_lib="-I$dev_root/blib6/lib" |
|---|
| 9 |
|
|---|
| 10 |
ulimit="" |
|---|
| 11 |
nice="" |
|---|
| 12 |
pugs=pugs |
|---|
| 13 |
rel_root="/usr/bin" |
|---|
| 14 |
dev_root="$rel_root" |
|---|
| 15 |
rel_lib="" |
|---|
| 16 |
dev_lib="" |
|---|
| 17 |
#test: 0,1 or 2 |
|---|
| 18 |
test=2 |
|---|
| 19 |
appname=runpugs |
|---|
| 20 |
prompt="pugs> " |
|---|
| 21 |
prompt_pattern="(^(pugs|\.\.\.\.)>\s+)" |
|---|
| 22 |
quit_pattern="^Leaving\ pugs\." |
|---|
| 23 |
quit_message="Leaving pugs." |
|---|
| 24 |
|
|---|
| 25 |
init_pattern="(\>\s+)" |
|---|
| 26 |
quit_command=":q" |
|---|
| 27 |
reset_command=":r" |
|---|
| 28 |
abort_command=":A" |
|---|
| 29 |
|
|---|
| 30 |
filter=0 |
|---|
| 31 |
filter_pattern="" |
|---|
| 32 |
root=$HOME/runpugs |
|---|
| 33 |
|
|---|
| 34 |
cgi_path="$root/cgi-bin/" |
|---|
| 35 |
lib_path="$root/lib/" |
|---|
| 36 |
bin_path="$root/bin/" |
|---|
| 37 |
data_path="$root/data/" |
|---|
| 38 |
tmp_path="$root/data/tmp/" |
|---|
| 39 |
log_path="$root/data/log" |
|---|
| 40 |
daemon=0 |
|---|
| 41 |
port=2057 |
|---|
| 42 |
host=localhost |
|---|
| 43 |
|
|---|
| 44 |
restart_parent=0 |
|---|
| 45 |
server="$bin_path/termserv.pl" |
|---|
| 46 |
|
|---|
| 47 |
nsessions=20 |
|---|
| 48 |
nsessions_ip=10 |
|---|
| 49 |
|
|---|
| 50 |
n_max=(20,20) |
|---|
| 51 |
npreloaded_sessions=(5,5) |
|---|
| 52 |
n_inactive_min=(2,2) |
|---|
| 53 |
|
|---|
| 54 |
timeout_idle=90 |
|---|
| 55 |
timeout_call=30 |
|---|
| 56 |
check_interval=60 |
|---|
| 57 |
create_interval=5 |
|---|
| 58 |
nlines=250 |
|---|
| 59 |
nchars=250 |
|---|
| 60 |
nrecent=10 |
|---|
| 61 |
perl=/usr/bin/perl |
|---|