changeset 2001 | 4bebef342260 |
parent 1893 | da0024f4f068 |
child 2002 | 812770d563e4 |
2000:7bfe538a4cfe | 2001:4bebef342260 |
---|---|
1 #!/bin/sh |
|
2 |
|
3 echo '[OPTIONS]' |
|
4 echo 'Compatibility=1.1 or later' |
|
5 echo 'Compiled file=chm.chm' |
|
6 echo 'Contents file=chm.hhc' |
|
7 echo 'Default Window=Navigation panel' |
|
8 echo 'Default topic=iframe.html' |
|
9 echo 'Display compile progress=No' |
|
10 echo 'Full text search stop list file=chm.stp' |
|
11 echo 'Full-text search=Yes' |
|
12 echo 'Language=0x409 Английский (США)' |
|
13 echo 'Title=Tips from gavenkoa' |
|
14 echo '' |
|
15 echo '[WINDOWS]' |
|
16 echo 'Navigation panel=,"chm.hhc",,"iframe.html","iframe.html",,,,,0x62520,250,0x304e,[0,0,900,600],,,,,,,0' |
|
17 echo '' |
|
18 echo '[FILES]' |
|
19 |
|
20 for file in *.rst *.txt; do |
|
21 case $file in |
|
22 HEADER.rst) continue;; |
|
23 esac |
|
24 ext=${file##*.} |
|
25 name=${file%.${ext}} |
|
26 case $ext in |
|
27 txt) |
|
28 echo $name.txt |
|
29 ;; |
|
30 rst) |
|
31 echo $name.html |
|
32 ;; |
|
33 esac |
|
34 done |
|
35 |
|
36 echo '' |
|
37 echo '[INFOTYPES]' |
|
38 |