Subversion Repositories wimsdev

Rev

Rev 8646 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
23 reyssat 1
#! /bin/sh
2
 
16317 guerimand 3
# deprecated file (used only by file raw1_classic.phtml which is no more used)
4
 
23 reyssat 5
cd $w_wims_home/$w_wims_sesdir || exit
6
if [ -s submit.oef ] && [ ! -f user-deposit ]; then
7
 src=submit.oef
8
else
9
 src=user-deposit
10
fi
11
content=`sed 's/\&/\&amp;/g;s/</\&lt;/g' 2>/dev/null <$src`
12
cat <<@
8646 bpr 13
<textarea cols="70" rows="24" class="nowrap"
23 reyssat 14
name="wims_deposit" id="wims_deposit">$content</textarea>
15
@
16
 
17
rm -f user-deposit >/dev/null
18