/archmage/arch.conf
http://github.com/brinkman83/bashrc · Config · 72 lines · 59 code · 13 blank · 0 comment · 0 complexity · 971fa39e34b1c898db3e1f8772b6b462 MD5 · raw file
- # Directory for templates, all files in that directory will be parsed
- # and <%.+%> occurencies will be replaced with values from that
- # file. For example, <%title%>, will be substituted by value of title
- # variable.
- # There is also some special variables, which have default values:
- # contents - list, which represents chm file contents and deftopic -
- # name of default page.
- templates_dir = '/usr/share/archmage/templates/'
- # Directory with icons
- icons_dir = '/usr/share/archmage/templates/icons/'
- # List of auxiliary files, stored inside CHM file.
- # Those files would not be extracted.
- auxes = ('/#IDXHDR', '/#ITBITS', '/#STRINGS', '/#SYSTEM', '/#TOPICS',
- '/#URLSTR', '/#URLTBL', '/#WINDOWS', '/$FIftiMain', '/$OBJINST',
- '/$WWAssociativeLinks', '/$WWKeywordLinks', ':')
- # Title. That is value, which you want to see in browser title.
- # 'sourcename' is the name of source file.
- from os.path import basename
- title = basename(sourcename)
- # Background and foreground colors for header.
- bcolor = '#63baff'
- fcolor = 'white'
- # Filenames inside chm stored in utf-8, but links can be in some
- # national codepage. If you set fs_encoding such links would be
- # converted to it.
- #
- # Default: fs_encoding = 'utf-8'
- fs_encoding = 'utf-8'
- # If your filesystem is case-sensitive, links in the html can point to
- # files that have differences in the case you need to set
- # filename_case to 1 in that case :-)
- #
- # Default: filename_case=1
- filename_case = 1
- # If you want to add javascript code for restore framing to every
- # page, set addframing.
- #
- # Default: restore_framing=1
- restore_framing = 1
- # Path to htmldoc executable
- #
- htmldoc_exec = '/usr/bin/htmldoc'
- # CHM2TEXT converting. Use following command to convert CHM content to plain
- # text file. Make sure that below apps are available on your system.
- #chmtotext = 'lynx -dump -stdin'
- chmtotext = '/usr/bin/elinks -dump'
- # CHM2HTML converting. Use following command to convert CHM content to a single
- # HTML file. Make sure that htmldoc is available on your system.
- chmtohtml = '-t html -f "%(output)s" --book %(toc)s --no-numbered --toctitle "Table of Contents" --title --linkstyle underline --fontsize 11.0 --fontspacing 1.2 --headingfont Helvetica --bodyfont Times --headfootsize 11.0 --headfootfont Helvetica --charset iso-8859-1 --browserwidth 680 --no-strict --no-overflow --quiet'
- # CHM2PDF converting. Use following command to convert CHM content to a single
- # PDF file. Make sure that htmldoc is available on your system.
- chmtopdf = '-t pdf14 -f "%(output)s" --book %(toc)s --no-numbered --toctitle "Table of Contents" --title --textcolor "#000000" --linkcolor "#0000ff" --linkstyle plain --size Universal --left 1.00in --right 0.50in --top 0.50in --bottom 0.50in --header .t. --header1 ... --footer h.1 --nup 1 --tocheader .t. --tocfooter ..i --portrait --color --no-pscommands --no-xrxcomments --compression=1 --jpeg=0 --fontsize 11.0 --fontspacing 1.2 --headingfont Helvetica --bodyfont Times --headfootsize 11.0 --headfootfont Helvetica --charset iso-8859-1 --links --embedfonts --pagemode outline --pagelayout single --firstpage c1 --pageeffect none --pageduration 10 --effectduration 1.0 --no-encryption --permissions all --owner-password "" --user-password "" --browserwidth 680 --no-strict --no-overflow --quiet'
- # CHM2PS converting. Use following command to convert CHM content to a single
- # PostScript file. Make sure that htmldoc is available on your system.
- #chmtops = '-t ps2 -f "%(output)s" --book %(toc)s --no-numbered --toctitle "Table of Contents" --title --textcolor "#000000" --linkcolor "#0000ff" --linkstyle underline --size A4 --left 1.00in --right 0.50in --top 0.50in --bottom 0.50in --header .t. --header1 ... --footer h.1 --nup 1 --tocheader .t. --tocfooter ..i --portrait --color --no-pscommands --no-xrxcomments --compression=1 --jpeg=0 --fontsize 11.0 --fontspacing 1.2 --headingfont Helvetica --bodyfont Times --headfootsize 11.0 --headfootfont Helvetica --charset iso-8859-1 --browserwidth 680 --no-strict --no-overflow --quiet'
- # Maximum Table of Content levels for htmldoc utility.
- #
- # Default: maxtoclvl = 4
- maxtoclvl = 4