aboutsummaryrefslogtreecommitdiffstats
path: root/make-faq
blob: 357ee19d4b5effe069ccffe5c38481d5fa0077dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/sh
#
# $Id: make-faq,v 1.5 2003/12/21 03:06:49 jmayer Exp $
#
# Make-faq - Creates a plain text version of the Ethereal FAQ
#	from http://www.ethereal.com/faq

# Split the FAQ every LINECOUNT lines so the strings don't become too long
# for some compilers.
LINECOUNT=400

rm -f FAQ
cat >FAQ <<EOF

   The Ethereal FAQ

   Note: This is just an ASCII snapshot of the faq and may not be up to
         date. Please go to http://www.ethereal.com/faq for the up to
         date version. The version of this snapshot can be found at the
         end of this document.

   INDEX

EOF

lynx -dump -nolist "http://www.ethereal.com/faq" | sed -e '1,/INDEX/d' >>FAQ

# Create an #include'able version for help/faq.h
rm -f FAQ.include FAQTMP*
split -l $LINECOUNT FAQ FAQTMP
NUM=0
echo "/* THIS FILE IS AUTOMATICALLY GENERATED, DO NOT MODIFY!!! */" >FAQ.include
echo "const char *faq_part[] = {" >>FAQ.include
for i in FAQTMP*; do
   if [ $NUM -ne 0 ]; then
      echo "," >>FAQ.include
      echo >>FAQ.include
   fi
   sed -e 's/\\/\\\\/g' -e 's/"/\\"/g' -e 's/^/"/' -e 's/$/\\n"/' <$i >>FAQ.include
   NUM=`expr $NUM + 1`
done
echo "};" >>FAQ.include
echo "#define FAQ_PARTS $NUM" >>FAQ.include
SIZE=`wc -c FAQ | tr -d ' A-Za-z'`
echo "#define FAQ_SIZE $SIZE" >>FAQ.include
rm -f FAQTMP*

echo
echo "Now move FAQ to help/faq.txt and FAQ.include to help/faq.h"
echo

exit 0