Initial comit - Clone

This commit is contained in:
2024-03-05 22:01:20 +01:00
commit 385cf8e5aa
727 changed files with 164567 additions and 0 deletions

BIN
etc/install-cgi/Lenna.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

24
etc/install-cgi/gwd.cgi Executable file
View File

@@ -0,0 +1,24 @@
#!/bin/sh
# -- gwd.cgi --
# the script exécutes in cgi-bin (hence the ../)
# assumes that the distribution, or a link to the distribution has been
# installed, in a folder names distribution, next to cgi-bin
# these parameters may vary according to your Apache configuration
BIN_DIR="../distribution/gw"
BASES_DIR="../distribution/bases"
# you may want to replace BASES_DIR according to your own base location
# see also install-cgi.sh
LOGS_DIR="../tmp"
# if you use the -robot_xcl n,s option,
# beware that each image counts as one access
"$BIN_DIR"/gwd \
-cgi \
-bd "$BASES_DIR" \
-hd "$BIN_DIR" \
-etc_prefix "../distribution/gw/etc" \
-blang \
-plugins -unsafe "$BIN_DIR"/plugins \
-log_level 7 -log "<stderr>" 2>> "$LOGS_DIR"/gwd.log

18
etc/install-cgi/test.cgi Executable file
View File

@@ -0,0 +1,18 @@
#!/bin/sh
echo 'Content-type: text/html'
echo
echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" '
echo ' "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> '
echo '<html xmlns="http://www.w3.org/1999/xhtml"> '
echo '<body>'
echo 'This is a test for cgi commands<br>'
echo 'This should display Lenna:<br>'
substr="cgi-bin/test.cgi"
prefix=${SCRIPT_NAME%%$substr*}
echo '<img src="'$prefix'/Lenna.jpg">'
echo '<br>'
echo 'End of test'
echo '</body>'
echo '</html>'

27
etc/install-cgi/test.gw Normal file
View File

@@ -0,0 +1,27 @@
encoding: utf-8
gwplus
fam MOUSE Mickey 0 + MOUSETTE Minie 0
fevt
#marr
end fevt
beg
- f Tiny 1/1/2022 ?
end
notes MOUSE Tiny
beg
The picture above has historically been a test image for compression and image rendering. Its story can be read in <a href="http://www.lenna.org">lenna.org</a>.
end notes
pevt MOUSE Tiny
#birt 1/1/2022
note <a href='%sm=IMH;s=aatest.jpg'>Test Doc</a>
#acco 2/1/2922
note An Accomplishment!
end pevt
pevt MOUSE Mickey
#resi 1/1/2021
note <a href='%sm=IMH;s=aatest.jpg'>Test Doc</a>
end pevt

22
etc/install-cgi/test.gwf Normal file
View File

@@ -0,0 +1,22 @@
plugins=cgl,fixbase,forum,no_index
access_by_key=yes
disable_forum=yes
hide_private_names=no
use_restrict=no
show_consang=yes
display_sosa=yes
place_surname_link_to_ind=yes
max_anc_level=8
max_anc_tree=7
max_desc_level=12
max_desc_tree=4
max_cousins=2000
max_cousins_level=5
latest_event=20
template=*
long_date=no
counter=no
full_siblings=yes
hide_advanced_request=no

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB