diff -r 7bfe538a4cfe -r 4bebef342260 misc/chm-hhp.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/misc/chm-hhp.sh Thu Aug 04 15:31:15 2016 +0300 @@ -0,0 +1,38 @@ +#!/bin/sh + +echo '[OPTIONS]' +echo 'Compatibility=1.1 or later' +echo 'Compiled file=chm.chm' +echo 'Contents file=chm.hhc' +echo 'Default Window=Navigation panel' +echo 'Default topic=iframe.html' +echo 'Display compile progress=No' +echo 'Full text search stop list file=chm.stp' +echo 'Full-text search=Yes' +echo 'Language=0x409 Английский (США)' +echo 'Title=Tips from gavenkoa' +echo '' +echo '[WINDOWS]' +echo 'Navigation panel=,"chm.hhc",,"iframe.html","iframe.html",,,,,0x62520,250,0x304e,[0,0,900,600],,,,,,,0' +echo '' +echo '[FILES]' + +for file in *.rst *.txt; do + case $file in + HEADER.rst) continue;; + esac + ext=${file##*.} + name=${file%.${ext}} + case $ext in + txt) + echo $name.txt + ;; + rst) + echo $name.html + ;; + esac +done + +echo '' +echo '[INFOTYPES]' +