debiandoc-sgml-1.2.28/0000755000175000017500000000000011734575734013526 5ustar osamuosamudebiandoc-sgml-1.2.28/sgml/0000775000175000017500000000000011655740662014466 5ustar osamuosamudebiandoc-sgml-1.2.28/sgml/entities/0000775000175000017500000000000011734606333016304 5ustar osamuosamudebiandoc-sgml-1.2.28/sgml/entities/debiandoc-lat20000664000175000017500000002073111655740662021010 0ustar osamuosamu debiandoc-sgml-1.2.28/sgml/entities/debiandoc-lat10000664000175000017500000002066311655740662021013 0ustar osamuosamu debiandoc-sgml-1.2.28/sgml/entities/catalog0000664000175000017500000000011411655740662017643 0ustar osamuosamuENTITY %debiandoc-lat1 debiandoc-lat1 ENTITY %debiandoc-lat2 debiandoc-lat2 debiandoc-sgml-1.2.28/sgml/dtd/0000775000175000017500000000000011655740662015241 5ustar osamuosamudebiandoc-sgml-1.2.28/sgml/dtd/debiandoc.dcl0000664000175000017500000000400311655740662017632 0ustar osamuosamu) -- CHARSET BASESET "ISO 646-1983//CHARSET International Reference Version (IRV)//ESC 2/5 4/0" DESCSET 0 9 UNUSED 9 2 9 11 2 UNUSED 13 1 13 14 18 UNUSED 32 95 32 127 1 UNUSED BASESET "ISO Registration Number 100//CHARSET ECMA-94 Right Part of Latin Alphabet Nr. 1//ESC 2/13 4/1" DESCSET 128 32 32 160 96 32 CAPACITY PUBLIC "ISO 8879:1986//CAPACITY Reference//EN" SCOPE DOCUMENT SYNTAX SHUNCHAR CONTROLS 0 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 127 BASESET "ISO 646-1983//CHARSET International Reference Version (IRV)//ESC 2/5 4/0" DESCSET 0 128 0 FUNCTION RE 13 RS 10 SPACE 32 TAB SEPCHAR 9 NAMING LCNMSTRT "" UCNMSTRT "" LCNMCHAR "-." UCNMCHAR "-." NAMECASE GENERAL YES ENTITY NO DELIM GENERAL SGMLREF SHORTREF SGMLREF NAMES SGMLREF QUANTITY SGMLREF ATTCNT 99999999 ATTSPLEN 99999999 DTEMPLEN 24000 ENTLVL 99999999 GRPCNT 99999999 GRPGTCNT 99999999 GRPLVL 99999999 LITLEN 24000 NAMELEN 99999999 PILEN 24000 TAGLEN 99999999 TAGLVL 99999999 FEATURES MINIMIZE DATATAG NO OMITTAG YES RANK YES SHORTTAG YES LINK SIMPLE YES 1000 IMPLICIT YES EXPLICIT YES 1 OTHER CONCUR NO SUBDOC NO FORMAL YES APPINFO NONE> debiandoc-sgml-1.2.28/sgml/dtd/debiandoc.dtd0000664000175000017500000001217211655740662017651 0ustar osamuosamu %ISOamsa; %ISOamsb; %ISOamsc; %ISOamsn; %ISOamso; %ISOamsr; %ISObox; %ISOcyr1; %ISOcyr2; %ISOdia; %ISOgrk1; %ISOgrk2; %ISOgrk3; %ISOgrk4; %ISOlat1; %ISOlat2; %ISOnum; %ISOpub; %ISOtech; debiandoc-sgml-1.2.28/sgml/dtd/catalog0000664000175000017500000000022211655740662016572 0ustar osamuosamuDOCTYPE debiandoc debiandoc.dtd PUBLIC "-//DebianDoc//DTD DebianDoc//EN" debiandoc.dtd DTDDECL "-//DebianDoc//DTD DebianDoc//EN" debiandoc.dcl debiandoc-sgml-1.2.28/examples/0000775000175000017500000000000012145732303015326 5ustar osamuosamudebiandoc-sgml-1.2.28/examples/debiandoc-lint4po0000775000175000017500000001322111655740662020566 0ustar osamuosamu#!/usr/bin/env python # -*- coding: utf-8 -*- # vim: set sts=4 expandtab: import sys, os, re, string, getopt progname = "debiandoc-lint4po" version = "1.2.1" safemode = True manglemode = True verbosemode = False cmdname = os.path.basename(sys.argv[0]) USAGE = """ %s - proof read the DebianDoc SGML PO file Copyright (C) 2011 Osamu Aoki, GPL2+, version: %s Usage: %s [options] FOO-out.xx.po Supported options: -h Display this help message. -n No mangling of in translation -u Output only unsafe PO contents. -v Vebose output This works better on a PO file processed with: $ msgcat --no-wrap FOO.xx.po | sponge FOO.xx.po """%(cmdname, version, cmdname) # global patterns p_tags = re.compile(r'<.+?[ >]') p_footnote = re.compile(r'') p_footnotes = re.compile(r'.*?') p_manglesingle = re.compile(r'<([^ <>]+?) +([^<>]+?)>') p_mangleopen = re.compile(r'<([^ <>/]+?)>') p_mangleclose = re.compile(r']+?)>') def main(): global manglemode global safemode global verbosemode try: opts, args = getopt.getopt(sys.argv[1:], "hnuv") except getopt.GetoptError, err: print >>sys.stderr, "Wrong option ..." print >>sys.stderr, USAGE sys.exit(1) for o, a in opts: if o == "-h": print >>sys.stderr, USAGE sys.exit(0) elif o == "-n": manglemode = False elif o == "-u": safemode = False elif o == "-v": verbosemode = True else: assert False, "unhandled option" process_po() def process_po(): i = 0 # line index ii = i # line index updated for each PO set mode = 0 # mode = 0 for pre # mode = 1 for id # mode = 2 for str buff = ['', '', ''] for l in sys.stdin.readlines(): i += 1 if mode == 0: if l[0:-1] == '': pass elif l[0:1] == '#': buff[mode] += l elif l[0:5] == 'msgid': # start msgid mode mode = 1 buff[mode] = l else: assert False, "E: %i, mode %i"%(ii, mode) elif mode == 1: if l[0:1] == '"': buff[mode] = buff[mode][:-2] + l[1:] elif l[0:6] == 'msgstr': # start msgstr mode mode = 2 buff[mode] = l else: assert False, "E: %i, mode %i"%(ii, mode) elif mode == 2: if l[0:1] == '"': buff[mode] = buff[mode][:-2] + l[1:] elif l[0:-1] == '': # end msgstr mode # now ready to process a set of PO data po_write(ii, buff) # start again buff = ['', '', ''] mode = 0 ii = i else: assert False, "E: %i, mode %i"%(ii, mode) else: assert False, "E: %i, mode %i"%(ii, mode) # output at EOF po_write(ii, buff) def po_write(ii, buff): global manglemode global safemode global verbosemode warned = False if buff[1] == "msgid \"\"\n": # if PO header sys.stdout.write(buff[0]) sys.stdout.write(buff[1]) sys.stdout.write(buff[2]) print else: # if not PO header ... if manglemode and p_footnote.search(buff[1]) == None: b = '' p = 0 for m in p_footnotes.finditer(buff[2]): b += buff[2][p:m.start()] + \ p_mangleopen.sub(r'@@@[tagopen_\1]@@@', \ p_mangleclose.sub(r'@@@[tagclose_\1]@@@', \ p_manglesingle.sub(r'XXX_FIXME_\1_XXX \2 XXX_XXX', \ buff[2][m.start():m.end()]))) p = m.end() buff[2] = b + buff[2][p:] # extract tags and sort them as list tags1 = sorted(p_tags.findall(buff[1])) tags2 = sorted(p_tags.findall(buff[2])) if tags1 != tags2: warned = True txt = "W %i: unmatched tags: msgid # = %i, msgstr # = %i"%(ii, len(tags1), len(tags2)) warn(txt, buff) if warned: print "# " + txt # remove single SGML open tags tags1 = filter(lambda x: x == '>sys.stderr, txt if verbosemode: print >>sys.stderr, "" print >>sys.stderr, buff[0] print >>sys.stderr, buff[1] print >>sys.stderr, buff[2] print >>sys.stderr, "--------------------------------" if __name__ == '__main__': main() debiandoc-sgml-1.2.28/examples/debiandoc2dbk-unent0000775000175000017500000000057011655740662021074 0ustar osamuosamu#!/bin/sh # vim: set sts=4: # $ mv FOO.ent FOO-orig.ent # $ debiandoc2dbk-unent FOO.ent # # This converts from # # to # # # If you have multiline entities, touch them up first. # sed -ne 's/^[ \t]*/pi' debiandoc-sgml-1.2.28/examples/debiandoc2dbk-ent0000775000175000017500000000112711655740662020530 0ustar osamuosamu#!/bin/sh # vim: set sts=4: # $ mv FOO.dbk FOO-unent.dbk # $ mv FOO.po FOO-unent.po # $ debiandoc2dbk-ent FOO.dbk # $ debiandoc2dbk-ent FOO.po # # This converts from # @@@[bogus]@@@ # to # &bogus; # # Add somethin along followings to *.ent # "> # "> # "> # "> # ... # # FIXME items needs manual recovery. # # If you have multiline entities, touch them up first. # sed -e 's/@@@\[\([^]]*\)\]@@@/\&\1;/g' debiandoc-sgml-1.2.28/examples/msgtranslated0000775000175000017500000000570111655740662020143 0ustar osamuosamu#!/usr/bin/env python # -*- coding: utf-8 -*- # vim: set sts=4 expandtab: import sys, os, re, string, getopt progname = "msgtranslated" version = "1.2.1" cmdname = os.path.basename(sys.argv[0]) USAGE = """ %s - extract only translated PO contents Copyright (C) 2011 Osamu Aoki, GPL2+, version: %s Usage: %s [options] FOO-out.xx.po Supported options: -h Display this help message. This works better on a PO file processed with: $ msgcat --no-wrap FOO.xx.po | sponge FOO.xx.po """%(cmdname, version, cmdname) def main(): global verbosemode try: opts, args = getopt.getopt(sys.argv[1:], "h") except getopt.GetoptError, err: print >>sys.stderr, "Wrong option ..." print >>sys.stderr, USAGE sys.exit(1) for o, a in opts: if o == "-h": print >>sys.stderr, USAGE sys.exit(0) else: assert False, "unhandled option" process_po() def process_po(): i = 0 # line index ii = i # line index updated for each PO set mode = 0 # mode = 0 for pre # mode = 1 for id # mode = 2 for str buff = ['', '', ''] for l in sys.stdin.readlines(): i += 1 if mode == 0: if l[0:-1] == '': pass elif l[0:1] == '#': buff[mode] += l elif l[0:5] == 'msgid': # start msgid mode mode = 1 buff[mode] = l else: assert False, "E: %i, mode %i"%(ii, mode) elif mode == 1: if l[0:1] == '"': buff[mode] = buff[mode][:-2] + l[1:] elif l[0:6] == 'msgstr': # start msgstr mode mode = 2 buff[mode] = l else: assert False, "E: %i, mode %i"%(ii, mode) elif mode == 2: if l[0:1] == '"': buff[mode] = buff[mode][:-2] + l[1:] elif l[0:-1] == '': # end msgstr mode # now ready to process a set of PO data po_write(ii, buff) # start again buff = ['', '', ''] mode = 0 ii = i else: assert False, "E: %i, mode %i"%(ii, mode) else: assert False, "E: %i, mode %i"%(ii, mode) # output at EOF po_write(ii, buff) def po_write(ii, buff): # msgid != msgstr if buff[1][5:] != buff[2][6:]: sys.stdout.write(buff[0]) sys.stdout.write(buff[1]) sys.stdout.write(buff[2]) print elif buff[1][7:8] == "$" or buff[1][7:8] == " ": # huristics: msgid "$..." or msgid " ..." sys.stdout.write(buff[0]) sys.stdout.write(buff[1]) sys.stdout.write(buff[2]) print else: sys.stdout.write(buff[0]) sys.stdout.write(buff[1]) sys.stdout.write("msgstr \"\"\n") print if __name__ == '__main__': main() debiandoc-sgml-1.2.28/examples/debiandoc2dbk-wrap0000775000175000017500000000056711655740662020722 0ustar osamuosamu#!/bin/sh # vim: set sts=4: # $ editor FOO.en.sgml # remove incompatible comments # $ debiandoc2dbk-wrap FOO-commet.en.sgml # $ debiandoc2dbk -1 FOO-commet.en.sgml # $ debiandoc2dbk-unwrap FOO.en.dbk # # Before using this, you need to remove incompatible comments. # sed -e 's//=====TNEMMOC=====<\/p>/' debiandoc-sgml-1.2.28/examples/debiandoc2dbkpo0000775000175000017500000001230012145732303020262 0ustar osamuosamu#!/bin/sh # vim: set sts=4: # # convert DebianDoc SGML and its PO files to DoCBook XML and its PO files # # Copyright (C) 2011 Osamu Aoki, GPL2+ # # $1 base name of SGML file (English): * part of *.en.sgml # $2 lunguge code of translated PO files : ?? part of *.??.po # # Requited Debian packages: # docbook-xsl # moreutils # libxml2-utils # # Syntax: # debiandoc2dbkpo manual-name xx yy zz ... # Source: # manual-name.en.sgml manual-name.xx.po # # This is just a template script. # Please customize this to it to particular source. # BUILD_HTML="FALSE" PUBLISHDIR="." # case "$1" in --docbook|-D) shift DOCBOOK="TRUE" BUILD_HTML="TRUE" ;; --html-dbk) shift BUILD_HTML_DBK="TRUE" ;; --html-po|-H) shift BUILD_HTML_PO="TRUE" ;; --publishdir|-P) shift PUBLISHDIR="$1" shift esac # MANUAL="$1" shift LANGS="$@" # # If there is no ".en" source, but one without encoding, that that is # probably an English one and we make a symlink. # if [ ! -r "${MANUAL}.en.sgml" ] ; then if [ -r "${MANUAL}.sgml" ]; then echo "Warning: No '${MANUAL}.en.sgml' found, but a '${MANUAL}.sgml'." echo " Creating a symlink." echo " Beware: Your project may have mor complicated building instructions." ln -sf "${MANUAL}.sgml" "${MANUAL}.en.sgml" else echo "Error: Neither '${MANUAL}.en.sgml' nor '${MANUAL}.sgml' found." >&2 exit 1 fi fi # # get translated SGML files from English SGML and localized PO files # Format English SGML better by po4a-translate #po4a-translate -v -M UTF-8 -f sgml --keep 0 -L UTF-8 -m $MANUAL.en.sgml -l $MANUAL.en.lint.sgml -p /dev/null #mv -f $MANUAL.en.lint.sgml $MANUAL.en.sgml # for LNG in $LANGS; do echo "### process $MANUAL.$LNG.po ###" >&2 po4a-updatepo --previous -M UTF-8 -f sgml -m $MANUAL.en.sgml -p $MANUAL.$LNG.po msgcat --no-wrap $MANUAL.$LNG.po | sponge $MANUAL.$LNG.po ./debiandoc-lint4po -v <$MANUAL.$LNG.po >$MANUAL.$LNG.lint.po 2>>$MANUAL.log ./debiandoc-lint4po -v -u <$MANUAL.$LNG.po >$MANUAL.$LNG.unlint.po 2>>$MANUAL.log po4a-translate -v -M UTF-8 -f sgml --keep 0 -L UTF-8 -m $MANUAL.en.sgml -l $MANUAL.$LNG.sgml -p $MANUAL.$LNG.lint.po done # # make DocBook XML (dbk) files with nice formatting # debiandoc2dbk -1 $MANUAL.en.sgml xmllint --encode UTF-8 $MANUAL.en.dbk |sponge $MANUAL.en.dbk for LNG in $LANGS; do debiandoc2dbk -1 $MANUAL.$LNG.sgml xmllint --encode UTF-8 $MANUAL.$LNG.dbk |sponge $MANUAL.$LNG.dbk done # # Test build HTML files to verify proper conversion from SGML to XML # if [ "$BUILD_HTML_DBK" = "TRUE" ]; then mkdir -p "$PUBLISHDIR" cat - >$PUBLISHDIR/$MANUAL.css < maint-guide.$LNG.dbk.pox done if [ -r $MANUAL.en.dbk.new ]; then sed -e 's/@@@\[/\&/g' -e 's/\]@@@/;/g' $MANUAL.en.dbk >$MANUAL.en.dbk.new echo "### Edit $MANUAL.en.dbk.new to include entity reference and type ENTER. ###" >&2 read X else echo "### $MANUAL.en.dbk.new already exist ! Use it. ###" >&2 fi # # make dbk files from English DocBook XML (dbk) file and po files (dbk.po). # for LNG in $LANGS; do po4a-translate -v -M UTF-8 -f docbook --keep 0 -L UTF-8 -m $MANUAL.en.dbk.new -l $MANUAL.$LNG.dbk.new -p $MANUAL.$LNG.dbk.pox done # # Test build HTML files to verify proper conversion from SGML to XML # if [ "$BUILD_HTML_PO" = "TRUE" ]; then mkdir -p "$PUBLISHDIR" cat - >$PUBLISHDIR/$MANUAL.css <FOO-commet.en.sgml $ debiandoc2dbk -1 FOO-commet.en.sgml $ debiandoc2dbk-unwrap FOO.en.dbk """ import sys, os, re, string VERSION = '1.0.1' if __name__ == '__main__': line0="" for line in sys.stdin.readlines(): line=line[0:-1] if line0 == "" and line[0:17] == "=====COMMENT=====": print "" line0 = "" elif line0 != "": print line0 line0 = line else: line0 = line print line0 debiandoc-sgml-1.2.28/examples/README0000664000175000017500000000012611655740662016221 0ustar osamuosamuConversion from SGML to XML. See: http://wiki.debian.org/DocbookXmlTransition Osamu debiandoc-sgml-1.2.28/Makefile0000664000175000017500000002072511655740662015172 0ustar osamuosamu## ---------------------------------------------------------------------- ## Makefile: makefile for debiandoc-sgml ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- ## General directory definitions prefix := /usr/local bin_dir := $(DESTDIR)$(prefix)/bin share_dir := $(DESTDIR)$(prefix)/share ifeq ($(prefix),/usr/local) man_dir := $(prefix)/man else man_dir := $(share_dir)/man endif ifeq ($(prefix),/usr/local) perl_version := 5.8.2 perl_dir := $(share_dir)/perl/$(perl_version) else perl_dir := $(share_dir)/perl5 endif sgml_dir := $(share_dir)/sgml ## ---------------------------------------------------------------------- ## Manual pages directory definitions man1 := 1 man1_dir := $(man_dir)/man$(man1) ## ---------------------------------------------------------------------- ## Package definitions dtd_name := debiandoc dtd_type := sgml dtd_version := 1.0 ## ---------------------------------------------------------------------- ## Package SGML directory definitions pkg_dtd_dir := $(sgml_dir)/$(dtd_name)/dtd/$(dtd_type)/$(dtd_version) pkg_ent_dir := $(sgml_dir)/$(dtd_name)/entities ## ---------------------------------------------------------------------- ## Package SGML file definitions DTDS := catalog $(dtd_name).dtd $(dtd_name).dcl ENTITIES := catalog $(dtd_name)-lat1 $(dtd_name)-lat2 ## ---------------------------------------------------------------------- ## Package tools directory definitions pkg_perl_dir := $(perl_dir)/DebianDoc_SGML pkg_format_dir := $(pkg_perl_dir)/Format pkg_locale_dir := $(pkg_perl_dir)/Locale pkg_map_dir := $(pkg_perl_dir)/Map pkg_name := $(dtd_name)-$(dtd_type) pkg_bin_dir := $(share_dir)/$(pkg_name) ## ---------------------------------------------------------------------- ## Package tools file definitions FORMATS := HTML LaTeX Texinfo Text TextOV XFORMATS := XML Wiki SPECS := html latex texinfo text textov info latexdvi latexps latexpdf dbk wiki PSPECS := dvi ps pdf EXTS := html tex texinfo txt tov dbk wiki BCONVS := $(foreach spec,$(SPECS),$(dtd_name)2$(spec)) PCONVS := $(foreach spec,$(PSPECS),$(dtd_name)2$(spec)) TOOLS := $(BCONVS) $(PCONVS) MAN1S := $(pkg_name) HELPERS := saspconvert fixlatex ## ---------------------------------------------------------------------- ## General (un)install definitions SHELL := bash INSTALL := /usr/bin/install INSTALL_DIR := $(INSTALL) -d -m 755 INSTALL_SCRIPT := $(INSTALL) -p -m 755 INSTALL_FILE := $(INSTALL) -p -m 644 LN := /bin/ln -sf RM := /bin/rm -f RMDIR := /bin/rmdir -p --ignore-fail-on-non-empty DIFF := /usr/bin/diff -w -u ## ---------------------------------------------------------------------- ## Targets all: bin bin: $(foreach bconv,$(BCONVS),tools/bin/$(bconv)) $(foreach bconv,$(BCONVS),tools/bin/$(bconv)): \ tools/bin/template tools/bin/mkconversions set -e; \ cd tools/bin; \ ./mkconversions $(pkg_format_dir) $(pkg_bin_dir); \ cd - install: all set -e; \ $(INSTALL_DIR) $(pkg_dtd_dir); \ for f in $(DTDS); \ do \ $(INSTALL_FILE) sgml/dtd/$$f $(pkg_dtd_dir); \ done set -e; \ $(INSTALL_DIR) $(pkg_ent_dir); \ for f in $(ENTITIES); \ do \ $(INSTALL_FILE) sgml/entities/$$f $(pkg_ent_dir); \ done set -e; \ $(INSTALL_DIR) $(pkg_format_dir); \ for f in `ls tools/lib/Format/*.pm`; \ do \ $(INSTALL_FILE) $$f $(pkg_format_dir); \ done set -e; \ $(INSTALL_DIR) $(pkg_locale_dir); \ for f in `ls tools/lib/Locale/*.pm`; \ do \ $(INSTALL_FILE) $$f $(pkg_locale_dir); \ done for d in `ls -d tools/lib/Locale/*_*`; \ do \ $(INSTALL_DIR) $(pkg_locale_dir)/`basename $$d`; \ for f in $(FORMATS); \ do \ $(INSTALL_FILE) $$d/$$f $(pkg_locale_dir)/`basename $$d`; \ done; \ done for d in `ls -d tools/lib/Locale/*_*`; \ do \ $(INSTALL_DIR) $(pkg_locale_dir)/`basename $$d`; \ for f in $(XFORMATS); \ do \ $(INSTALL_FILE) tools/lib/Locale/$$f $(pkg_locale_dir)/`basename $$d`; \ done; \ done set -e; \ $(INSTALL_DIR) $(pkg_map_dir); \ for f in `ls tools/lib/Map/*.pm`; \ do \ $(INSTALL_FILE) $$f $(pkg_map_dir); \ done set -e; \ $(INSTALL_DIR) $(pkg_bin_dir); \ for f in $(HELPERS); \ do \ $(INSTALL_SCRIPT) tools/bin/$$f $(pkg_bin_dir); \ done set -e; \ $(INSTALL_DIR) $(bin_dir); \ for f in $(BCONVS); \ do \ $(INSTALL_SCRIPT) tools/bin/$$f $(bin_dir); \ done for f in $(PSPECS); \ do \ $(LN) $(dtd_name)2latex$$f $(bin_dir)/$(dtd_name)2$$f; \ done set -e; \ $(INSTALL_DIR) $(man1_dir); \ for f in $(MAN1S); \ do \ $(INSTALL_FILE) tools/man/$$f.$(man1) $(man1_dir)/$$f.$(man1); \ done; \ for f in $(TOOLS); \ do \ $(LN) $(firstword $(MAN1S)).$(man1) $(man1_dir)/$$f.$(man1); \ done uninstall: set -e; \ for f in $(TOOLS); \ do \ $(RM) $(man1_dir)/$$f.$(man1); \ done; \ for f in $(MAN1S); \ do \ $(RM) $(man1_dir)/$$f.$(man1); \ done set -e; \ for f in $(TOOLS); \ do \ $(RM) $(bin_dir)/$$f; \ done set -e; \ for f in $(HELPERS); \ do \ $(RM) $(pkg_bin_dir)/$$f; \ done; \ $(RMDIR) $(pkg_bin_dir) set -e; \ for f in `ls $(pkg_map_dir)/*.pm`; \ do \ $(RM) $$f; \ done; \ $(RMDIR) $(pkg_map_dir) set -e; \ for d in `ls -d $(pkg_locale_dir)/*_*`; \ do \ d=`basename $$d`; \ for f in $(FORMATS); \ do \ $(RM) $(pkg_locale_dir)/$$d/$$f; \ done; \ $(RMDIR) $(pkg_locale_dir)/$$d; \ done; \ for d in `ls -d $(pkg_locale_dir)/*_*`; \ do \ d=`basename $$d`; \ for f in $(XFORMATS); \ do \ $(RM) $(pkg_locale_dir)/$$d/$$f; \ done; \ $(RMDIR) $(pkg_locale_dir)/$$d; \ done; \ for f in `ls $(pkg_locale_dir)/*.pm`; \ do \ $(RM) $$f; \ done; \ $(RMDIR) $(pkg_locale_dir) set -e; \ for f in `ls $(pkg_format_dir)/*.pm`; \ do \ $(RM) $$f; \ done; \ $(RMDIR) $(pkg_format_dir) set -e; \ for f in $(ENTITIES); \ do \ $(RM) $(pkg_ent_dir)/$$f; \ done; \ $(RMDIR) $(pkg_ent_dir) set -e; \ for f in $(DTDS); \ do \ $(RM) $(pkg_dtd_dir)/$$f; \ done; \ $(RMDIR) $(pkg_dtd_dir) # chack script changes against installled version if exists # assunming this will be packaged vrsion of script in /usr diff: $(MAKE) scripts.diff prefix=/usr # chack script changes against installled version if exists scripts.diff: bin :> scripts.diff for f in $(BCONVS); \ do \ g=/usr/bin/$$f ;\ if [ -e "$$g" ] ; then \ $(DIFF) $$g tools/bin/$$f >> scripts.diff || true ;\ fi ;\ done test: debian/test-debiandoc-sgml >XXXXX-sgml.log echo "#########################################################" > BUGS echo "### Known problems for building source with this tool ###" >> BUGS echo "#########################################################" >> BUGS grep -e '^FAIL: ' -e '^FAIR: ' XXXXX-sgml.log >> BUGS test1: : >XXXXX-sgml.log debian/test-debiandoc-sgml gl_ES.ISO8859-1 >>XXXXX-sgml.log debian/test-debiandoc-sgml gl_ES.ISO8859-15 >>XXXXX-sgml.log debian/test-debiandoc-sgml gl_ES.UTF-8 >>XXXXX-sgml.log debian/test-debiandoc-sgml ja_JP.UTF-8 >>XXXXX-sgml.log debian/test-debiandoc-sgml ja_JP.eucJP >>XXXXX-sgml.log debian/test-debiandoc-sgml ko_KR.UTF-8 >>XXXXX-sgml.log debian/test-debiandoc-sgml ko_KR.eucKR >>XXXXX-sgml.log #debian/test-debiandoc-sgml ru_RU.KOI8-R >>XXXXX-sgml.log debian/test-debiandoc-sgml sk_SK.ISO8859-2 >>XXXXX-sgml.log debian/test-debiandoc-sgml sk_SK.UTF-8 >>XXXXX-sgml.log debian/test-debiandoc-sgml zh_CN.GB2312 >>XXXXX-sgml.log debian/test-debiandoc-sgml zh_CN.UTF-8 >>XXXXX-sgml.log debian/test-debiandoc-sgml zh_TW.Big5 >>XXXXX-sgml.log debian/test-debiandoc-sgml zh_TW.UTF-8 >>XXXXX-sgml.log echo "#########################################################" > BUGS1 echo "### Known problems for building source with this tool ###" >> BUGS1 echo "#########################################################" >> BUGS1 grep -e '^FAIL: ' -e '^FAIR: ' XXXXX-sgml.log >> BUGS1 # target to check packages using this package is "usedby". Sources: wget http://ftp.us.debian.org/debian/dists/sid/main/source/Sources.gz gunzip Sources.gz usedby: Sources -F Build-Depends 'debiandoc-sgml' -o -F Build-Depends-Indep 'debiandoc-sgml' -s Package Sources clean: $(RM) $(foreach bconv,$(BCONVS),tools/bin/$(bconv)) rm -f scripts.diff ls-lr rm -f *.ps *.tmp *.pdf *.tex *.tpt *.sgml *aux *.txt rm -f *.toc *.dvi *.log *.out *.texinfo *.sasp *.info rm -rf *.sasp-wiki *.wiki BUGS* rm -rf *.html rm -f Sources ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/0000775000175000017500000000000011655740662014664 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/0000775000175000017500000000000011655740662015432 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/0000775000175000017500000000000011655740662016631 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/sv_SE.UTF-8/0000775000175000017500000000000011655740662020452 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/sv_SE.UTF-8/Text0000664000175000017500000000156311655740662021326 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sv_SE.UTF-8/Text: locale for Swedish output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Sammanfattning', 'copyright notice' => 'Copyrightnotering', 'contents' => 'InnehÃ¥ll', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Appendix $_[0]" }, 'section' => sub { return "Avsnitt $_[0]" }, 'subsection' => sub { return "Avsnitt $_[0]" }, 'subsubsection' => sub { return "Avsnitt $_[0]" }, 'paragraph' => sub { return "Avsnitt $_[0]" }, 'subparagraph' => sub { return "Avsnitt $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sv_SE.UTF-8/HTML0000664000175000017500000000200111655740662021132 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sv_SE.UTF-8/HTML: locale for Swedish output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'Sammanfattning', 'copyright notice' => 'Copyrightnotering', 'contents' => 'InnehÃ¥ll', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Appendix $_[0]" }, 'section' => sub { return "Avsnitt $_[0]" }, 'subsection' => sub { return "Avsnitt $_[0]" }, 'subsubsection' => sub { return "Avsnitt $_[0]" }, 'paragraph' => sub { return "Avsnitt $_[0]" }, 'subparagraph' => sub { return "Avsnitt $_[0]" }, 'footnotes' => 'Fotnoter', 'comments' => 'Kommentarer', 'next' => 'nästa', 'previous' => 'föregÃ¥ende', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sv_SE.UTF-8/LaTeX0000664000175000017500000000124511655740662021354 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sv_SE.UTF-8/LaTeX2e: locale for Swedish output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'swedish', 'inputenc' => 'utf8x', 'abstract' => 'Sammanfattning', 'copyright notice' => 'Copyrightnotering', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sv_SE.UTF-8/Texinfo0000664000175000017500000000145511655740662022016 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sv_SE.UTF-8/Texinfo: locale for Swedish output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'Detaljerad nodlistning', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Appendix $_[0]" }, 'section' => sub { return "Avsnitt $_[0]" }, 'subsection' => sub { return "Avsnitt $_[0]" }, 'subsubsection' => sub { return "Avsnitt $_[0]" }, 'paragraph' => sub { return "Avsnitt $_[0]" }, 'subparagraph' => sub { return "Avsnitt $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sv_SE.UTF-8/TextOV0000664000175000017500000000157211655740662021573 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sv_SE.UTF-8/TextOV: locale for Swedish output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Sammanfattning', 'copyright notice' => 'Copyrightnotering', 'contents' => 'InnehÃ¥ll', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Appendix $_[0]" }, 'section' => sub { return "Avsnitt $_[0]" }, 'subsection' => sub { return "Avsnitt $_[0]" }, 'subsubsection' => sub { return "Avsnitt $_[0]" }, 'paragraph' => sub { return "Avsnitt $_[0]" }, 'subparagraph' => sub { return "Avsnitt $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pt_PT.ISO8859-1/0000775000175000017500000000000011655740662021004 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/pt_PT.ISO8859-1/Text0000664000175000017500000000156411655740662021661 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pt_PT.ISO8859-1/Text: locale for Portuguese output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resumo', 'copyright notice' => 'Nota dos Direitos de Autor', 'contents' => 'Índice', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apêndice $_[0]" }, 'section' => sub { return "Secção $_[0]" }, 'subsection' => sub { return "Secção $_[0]" }, 'subsubsection' => sub { return "Secção $_[0]" }, 'paragraph' => sub { return "Secção $_[0]" }, 'subparagraph' => sub { return "Secção $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pt_PT.ISO8859-1/HTML0000664000175000017500000000201311655740662021467 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pt_PT.ISO8859-1/HTML: locale for Portuguese output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-1', 'abstract' => 'Resumo', 'copyright notice' => 'Nota dos Direitos de Autor', 'contents' => 'Índice', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apêndice $_[0]" }, 'section' => sub { return "Secção $_[0]" }, 'subsection' => sub { return "Secção $_[0]" }, 'subsubsection' => sub { return "Secção $_[0]" }, 'paragraph' => sub { return "Secção $_[0]" }, 'subparagraph' => sub { return "Secção $_[0]" }, 'footnotes' => 'Notas de Rodapé', 'comments' => 'Comentários', 'next' => 'próximo', 'previous' => 'anterior', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pt_PT.ISO8859-1/LaTeX0000664000175000017500000000126111655740662021704 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pt_PT.ISO8859-1/LaTeX2e: locale for Portuguese output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'portuguese', 'inputenc' => 'latin1', 'abstract' => 'Resumo', 'copyright notice' => 'Nota dos Direitos de Autor', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pt_PT.ISO8859-1/Texinfo0000664000175000017500000000146211655740662022346 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pt_PT.ISO8859-1/Texinfo: locale for Portuguese output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'A Lista Detalhada de Nós', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apêndice $_[0]" }, 'section' => sub { return "Secção $_[0]" }, 'subsection' => sub { return "Secção $_[0]" }, 'subsubsection' => sub { return "Secção $_[0]" }, 'paragraph' => sub { return "Secção $_[0]" }, 'subparagraph' => sub { return "Secção $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pt_PT.ISO8859-1/TextOV0000664000175000017500000000157311655740662022126 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pt_PT.ISO8859-1/TextOV: locale for Portuguese output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resumo', 'copyright notice' => 'Nota dos Direitos de Autor', 'contents' => 'Índice', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apêndice $_[0]" }, 'section' => sub { return "Secção $_[0]" }, 'subsection' => sub { return "Secção $_[0]" }, 'subsubsection' => sub { return "Secção $_[0]" }, 'paragraph' => sub { return "Secção $_[0]" }, 'subparagraph' => sub { return "Secção $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/vi_VN.UTF-8/0000775000175000017500000000000011655740662020454 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/vi_VN.UTF-8/Text0000664000175000017500000000163511655740662021330 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/vi_VN.UTF-8/Text: locale for Vietnamese output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Trích Yếu', 'copyright notice' => 'Thông Báo Tác Quyá»n', 'contents' => 'Ná»™i Dung', 'chapter' => sub { return "Chương $_[0]" }, 'appendix' => sub { return "Phụ lục $_[0]" }, 'section' => sub { return "Phần $_[0]" }, 'subsection' => sub { return "Phần phụ $_[0]" }, 'subsubsection' => sub { return "Phần phụ con $_[0]" }, 'paragraph' => sub { return "Äoạn văn $_[0]" }, 'subparagraph' => sub { return "Äoạn văn phụ $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/vi_VN.UTF-8/HTML0000664000175000017500000000204511655740662021144 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/vi_VN.UTF-8/HTML: locale for Vietnamese output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'Trích Yếu', 'copyright notice' => 'Thông Báo Tác Quyá»n', 'contents' => 'Ná»™i Dung', 'chapter' => sub { return "Chương $_[0]" }, 'appendix' => sub { return "Phụ lục $_[0]" }, 'section' => sub { return "Phần $_[0]" }, 'subsection' => sub { return "Phần phụ $_[0]" }, 'subsubsection' => sub { return "Phần phụ con $_[0]" }, 'paragraph' => sub { return "Äoạn văn $_[0]" }, 'subparagraph' => sub { return "Äoạn văn phụ $_[0]" }, 'footnotes' => 'Cước Chú', 'comments' => 'Chú Thích', 'next' => 'kế', 'previous' => 'lùi', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/vi_VN.UTF-8/LaTeX0000664000175000017500000000132011655740662021350 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/vi_VN.UTF-8/LaTeX2e: locale for Vietnamese output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'english', 'inputenc' => 'utf8x', 'abstract' => 'Trích Yếu', 'copyright notice' => 'Thông Báo Tác Quyá»n', 'before begin document' => '\\usepackage[utf8x]{vietnam}', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/vi_VN.UTF-8/Texinfo0000664000175000017500000000152511655740662022016 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/vi_VN.UTF-8/Texinfo: locale for Vietnamese output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'Danh Sách Nút Chi Tiết', 'chapter' => sub { return "Chương $_[0]" }, 'appendix' => sub { return "Phụ lục $_[0]" }, 'section' => sub { return "Phần $_[0]" }, 'subsection' => sub { return "Phần phụ $_[0]" }, 'subsubsection' => sub { return "Phần phụ con $_[0]" }, 'paragraph' => sub { return "Äoạn văn $_[0]" }, 'subparagraph' => sub { return "Äoạn văn phụ $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/vi_VN.UTF-8/TextOV0000664000175000017500000000164211655740662021573 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/vi_VN.UTF-8/TextOV: locale for Vietnamese output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Trích Yếu', 'copyright notice' => 'Thông Báo Tác Quyá»n', 'contents' => 'Ná»™i Dung', 'chapter' => sub { return "Chương $_[0]" }, 'appendix' => sub { return "Phụ luc $_[0]" }, 'section' => sub { return "Phần $_[0]" }, 'subsection' => sub { return "Phần phụ $_[0]" }, 'subsubsection' => sub { return "Phần phụ con $_[0]" }, 'paragraph' => sub { return "Äoạn văn $_[0]" }, 'subparagraph' => sub { return "Äoạn văn phụ $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ko_KR.eucKR/0000775000175000017500000000000011655740662020646 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/ko_KR.eucKR/Text0000664000175000017500000000145211655740662021517 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ko_KR.eucKR/Text: locale for Korean output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => '¿ä¾à', 'copyright notice' => 'ÀúÀÛ±Ç', 'contents' => 'Â÷·Ê', 'chapter' => sub { return " $_[0]" }, 'appendix' => sub { return "ºÎ·Ï $_[0]" }, 'section' => sub { return " $_[0]" }, 'subsection' => sub { return " $_[0]" }, 'subsubsection' => sub { return " $_[0]" }, 'paragraph' => sub { return " $_[0]" }, 'subparagraph' => sub { return " $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ko_KR.eucKR/HTML0000664000175000017500000000164211655740662021340 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ko_KR.eucKR/HTML: locale for Korean output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'euc-kr', 'abstract' => '¿ä¾à', 'copyright notice' => 'ÀúÀÛ±Ç', 'contents' => 'Â÷·Ê', 'chapter' => sub { return " $_[0]" }, 'appendix' => sub { return "ºÎ·Ï $_[0]" }, 'section' => sub { return " $_[0]" }, 'subsection' => sub { return " $_[0]" }, 'subsubsection' => sub { return " $_[0]" }, 'paragraph' => sub { return " $_[0]" }, 'subparagraph' => sub { return " $_[0]" }, 'footnotes' => '°¢ÁÖ', 'comments' => 'ÁÖ', 'next' => '´ÙÀ½', 'previous' => 'ÀÌÀü', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ko_KR.eucKR/LaTeX0000664000175000017500000000123011655740662021542 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ko_KR.eucKR/LaTeX2e: locale for Korean output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => '', 'inputenc' => '', 'abstract' => '¿ä¾à', 'copyright notice' => 'ÀúÀÛ±Ç', 'before begin document' => '\\usepackage{hangul}', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'hypertex' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ko_KR.eucKR/Texinfo0000664000175000017500000000140111655740662022201 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ko_KR.eucKR/Texinfo: locale for Korean output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'The Detailed Node Listing', 'chapter' => sub { return " $_[0]" }, 'appendix' => sub { return "ºÎ·Ï $_[0]" }, 'section' => sub { return " $_[0]" }, 'subsection' => sub { return " $_[0]" }, 'subsubsection' => sub { return " $_[0]" }, 'paragraph' => sub { return " $_[0]" }, 'subparagraph' => sub { return " $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ko_KR.eucKR/TextOV0000664000175000017500000000146111655740662021764 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ko_KR.eucKR/TextOV: locale for Korean output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => '¿ä¾à', 'copyright notice' => 'ÀúÀÛ±Ç', 'contents' => 'Â÷·Ê', 'chapter' => sub { return " $_[0]" }, 'appendix' => sub { return "ºÎ·Ï $_[0]" }, 'section' => sub { return " $_[0]" }, 'subsection' => sub { return " $_[0]" }, 'subsubsection' => sub { return " $_[0]" }, 'paragraph' => sub { return " $_[0]" }, 'subparagraph' => sub { return " $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/de_DE.UTF-8/0000775000175000017500000000000011655740662020373 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/de_DE.UTF-8/Text0000664000175000017500000000157011655740662021245 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/de_DE.UTF-8/Text: locale for German output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Zusammenfassung', 'copyright notice' => 'Copyright-Hinweis', 'contents' => 'Inhalt', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Anhang $_[0]" }, 'section' => sub { return "Abschnitt $_[0]" }, 'subsection' => sub { return "Abschnitt $_[0]" }, 'subsubsection' => sub { return "Abschnitt $_[0]" }, 'paragraph' => sub { return "Abschnitt $_[0]" }, 'subparagraph' => sub { return "Abschnitt $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/de_DE.UTF-8/HTML0000664000175000017500000000177711655740662021076 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/de_DE.UTF-8/HTML: locale for German output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'Zusammenfassung', 'copyright notice' => 'Copyright-Hinweis', 'contents' => 'Inhalt', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Anhang $_[0]" }, 'section' => sub { return "Abschnitt $_[0]" }, 'subsection' => sub { return "Abschnitt $_[0]" }, 'subsubsection' => sub { return "Abschnitt $_[0]" }, 'paragraph' => sub { return "Abschnitt $_[0]" }, 'subparagraph' => sub { return "Abschnitt $_[0]" }, 'footnotes' => 'Fußnoten', 'comments' => 'Comments', 'next' => 'weiter', 'previous' => 'zurück', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/de_DE.UTF-8/LaTeX0000664000175000017500000000124511655740662021275 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/de_DE.UTF-8/LaTeX2e: locale for German output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'ngerman', 'inputenc' => 'utf8x', 'abstract' => 'Zusammenfassung', 'copyright notice' => 'Copyright-Hinweis', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/de_DE.UTF-8/Texinfo0000664000175000017500000000146711655740662021742 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/de_DE.UTF-8/Texinfo: locale for German output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'The Detailed Node Listing', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Anhang $_[0]" }, 'section' => sub { return "Abschnitt $_[0]" }, 'subsection' => sub { return "Abschnitt $_[0]" }, 'subsubsection' => sub { return "Abschnitt $_[0]" }, 'paragraph' => sub { return "Abschnitt $_[0]" }, 'subparagraph' => sub { return "Abschnitt $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/de_DE.UTF-8/TextOV0000664000175000017500000000157711655740662021521 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/de_DE.UTF-8/TextOV: locale for German output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Zusammenfassung', 'copyright notice' => 'Copyright-Hinweis', 'contents' => 'Inhalt', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Anhang $_[0]" }, 'section' => sub { return "Abschnitt $_[0]" }, 'subsection' => sub { return "Abschnitt $_[0]" }, 'subsubsection' => sub { return "Abschnitt $_[0]" }, 'paragraph' => sub { return "Abschnitt $_[0]" }, 'subparagraph' => sub { return "Abschnitt $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ro_RO.UTF-8/0000775000175000017500000000000011655740662020453 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/ro_RO.UTF-8/Text0000664000175000017500000000156611655740662021332 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ro_RO.UTF-8/Text: locale for Romanian output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Abstract', 'copyright notice' => 'Notă copyright', 'contents' => 'Sumar', 'chapter' => sub { return "Capitolul $_[0]" }, 'appendix' => sub { return "Anexa $_[0]" }, 'section' => sub { return "SecÅ£iunea $_[0]" }, 'subsection' => sub { return "SecÅ£iunea $_[0]" }, 'subsubsection' => sub { return "SecÅ£iunea $_[0]" }, 'paragraph' => sub { return "Paragraful $_[0]" }, 'subparagraph' => sub { return "Paragraful $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ro_RO.UTF-8/HTML0000664000175000017500000000200311655740662021135 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ro_RO.UTF-8/HTML: locale for Romanian output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'Abstract', 'copyright notice' => 'Notă copyright', 'contents' => 'Sumar', 'chapter' => sub { return "Capitolul $_[0]" }, 'appendix' => sub { return "Anexa $_[0]" }, 'section' => sub { return "SecÅ£iunea $_[0]" }, 'subsection' => sub { return "SecÅ£iunea $_[0]" }, 'subsubsection' => sub { return "SecÅ£iunea $_[0]" }, 'paragraph' => sub { return "Paragraful $_[0]" }, 'subparagraph' => sub { return "Paragraful $_[0]" }, 'footnotes' => 'Note subsol', 'comments' => 'Comentarii', 'next' => 'înainte', 'previous' => 'înapoi', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ro_RO.UTF-8/LaTeX0000664000175000017500000000123711655740662021356 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ro_RO.UTF-8/LaTeX2e: locale for Romanian output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'romanian', 'inputenc' => 'utf8x', 'abstract' => 'Abstract', 'copyright notice' => 'Notă copyright', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ro_RO.UTF-8/Texinfo0000664000175000017500000000147011655740662022014 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ro_RO.UTF-8/Texinfo: locale for Romanian output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'ConÅ£inut detaliat', 'chapter' => sub { return "Capitolul $_[0]" }, 'appendix' => sub { return "Anexa $_[0]" }, 'section' => sub { return "SecÅ£iunea $_[0]" }, 'subsection' => sub { return "SecÅ£iunea $_[0]" }, 'subsubsection' => sub { return "SecÅ£iunea $_[0]" }, 'paragraph' => sub { return "Paragraful $_[0]" }, 'subparagraph' => sub { return "Paragraful $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ro_RO.UTF-8/TextOV0000664000175000017500000000157311655740662021575 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ro_RO.UTF-8/Text: locale for Romanian output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Abstract', 'copyright notice' => 'Notă copyright', 'contents' => 'Sumar', 'chapter' => sub { return "Capitolul $_[0]" }, 'appendix' => sub { return "Anexa $_[0]" }, 'section' => sub { return "SecÅ£iunea $_[0]" }, 'subsection' => sub { return "SecÅ£iunea $_[0]" }, 'subsubsection' => sub { return "SecÅ£iunea $_[0]" }, 'paragraph' => sub { return "Paragraful $_[0]" }, 'subparagraph' => sub { return "Paragraful $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_FR.ISO8859-15/0000775000175000017500000000000011655740662021043 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/eu_FR.ISO8859-15/Text0000664000175000017500000000162611655740662021717 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_FR.ISO8859-15/Text: locale for Basque output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Laburpena', 'copyright notice' => 'Copyright-aren oharra', 'contents' => 'Gaien aurkibidea', 'chapter' => sub { return "$_[0]. kapitulua" }, 'appendix' =>sub { return "$_[0]. eranskina" }, 'section' => sub { return "$_[0]. atala" }, 'subsection' => sub { return "$_[0]. azpiatala" }, 'subsubsection' => sub { return "$_[0]. azpiazpiatala" }, 'paragraph' => sub { return "$_[0]. paragrafoa" }, 'subparagraph' => sub { return "$_[0]. azpiparagrafoa" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_FR.ISO8859-15/HTML0000664000175000017500000000205111655740662021530 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_FR.ISO8859-15/HTML: locale for Basque output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-15', 'abstract' => 'Laburpena', 'copyright notice' => 'Copyright-aren oharra', 'contents' => 'Gaien aurkibidea', 'chapter' => sub { return "$_[0]. kapitulua" }, 'appendix' => sub { return "$_[0]. eranskina" }, 'section' => sub { return "$_[0]. atala" }, 'subsection' => sub { return "$_[0]. azpiatala" }, 'subsubsection' => sub { return "$_[0]. azpiazpiatala" }, 'paragraph' => sub { return "$_[0]. paragrafoa" }, 'subparagraph' => sub { return "$_[0]. azpiparagrafoa" }, 'footnotes' => 'oin-oharra', 'comments' => 'iruzkina', 'next' => 'hurrengoa', 'previous' => 'aurrekoa', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_FR.ISO8859-15/LaTeX0000664000175000017500000000142211655740662021742 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_FR.ISO8859-15/LaTeX2e: locale for Basque output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'basque', 'inputenc' => 'latin9', 'abstract' => 'Laburpena', 'copyright notice' => 'Copyright-aren oharra', 'before begin document' => '\\usepackage{babel} \\renewcommand{\\vpageref}[1]{\\pageref{#1}. orrialdean} \\def\glossaryname{Glosarioa}', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_FR.ISO8859-15/Texinfo0000664000175000017500000000151311655740662022402 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_FR.ISO8859-15/Texinfo: locale for Basque output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'nodoen zerrenda zehatza', 'chapter' => sub { return "$_[0]. kapitulua" }, 'appendix' =>sub { return "$_[0]. eranskina" }, 'section' => sub { return "$_[0]. atala" }, 'subsection' => sub { return "$_[0]. azpiatala" }, 'subsubsection' => sub { return "$_[0]. azpiazpiatala" }, 'paragraph' => sub { return "$_[0]. paragrafoa" }, 'subparagraph' => sub { return "$_[0]. azpiparagrafoa" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_FR.ISO8859-15/TextOV0000664000175000017500000000163511655740662022164 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_FR.ISO8859-15/TextOV: locale for Basque output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Laburpena', 'copyright notice' => 'Copyright-aren oharra', 'contents' => 'Gaien aurkibidea', 'chapter' => sub { return "$_[0]. kapitulua" }, 'appendix' =>sub { return "$_[0]. eranskina" }, 'section' => sub { return "$_[0]. atala" }, 'subsection' => sub { return "$_[0]. azpiatala" }, 'subsubsection' => sub { return "$_[0]. azpiazpiatala" }, 'paragraph' => sub { return "$_[0]. paragrafoa" }, 'subparagraph' => sub { return "$_[0]. azpiparagrafoa" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/es_ES.ISO8859-1/0000775000175000017500000000000011655740662020754 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/es_ES.ISO8859-1/Text0000664000175000017500000000156211655740662021627 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/es_ES.ISO8859-1/Text: locale for Spanish output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resumen', 'copyright notice' => 'Nota de Copyright', 'contents' => 'Contenidos', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' =>sub { return " Apéndice $_[0]" }, 'section' => sub { return "Sección $_[0]" }, 'subsection' => sub { return "Sección $_[0]" }, 'subsubsection' => sub { return "Sección $_[0]" }, 'paragraph' => sub { return "Sección $_[0]" }, 'subparagraph' => sub { return "Sección $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/es_ES.ISO8859-1/HTML0000664000175000017500000000200511655740662021440 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/es_ES.ISO8859-1/HTML: locale for Spanish output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-1', 'abstract' => 'Resumen', 'copyright notice' => 'Nota de Copyright', 'contents' => 'Contenidos', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apéndice $_[0]" }, 'section' => sub { return "Sección $_[0]" }, 'subsection' => sub { return "Sección $_[0]" }, 'subsubsection' => sub { return "Sección $_[0]" }, 'paragraph' => sub { return "Sección $_[0]" }, 'subparagraph' => sub { return "Sección $_[0]" }, 'footnotes' => 'Notas al pie', 'comments' => 'Comments', 'next' => 'siguiente', 'previous' => 'anterior', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/es_ES.ISO8859-1/LaTeX0000664000175000017500000000124311655740662021654 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/es_ES.ISO8859-1/LaTeX2e: locale for Spanish output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'spanish', 'inputenc' => 'latin1', 'abstract' => 'Resumen', 'copyright notice' => 'Nota de Copyright', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/es_ES.ISO8859-1/Texinfo0000664000175000017500000000146711655740662022323 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/es_ES.ISO8859-1/Texinfo: locale for Spanish output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'La lista detallada de nodos', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' =>sub { return " Apéndice $_[0]" }, 'section' => sub { return "Sección $_[0]" }, 'subsection' => sub { return "Sección $_[0]" }, 'subsubsection' => sub { return "Sección $_[0]" }, 'paragraph' => sub { return "Sección $_[0]" }, 'subparagraph' => sub { return "Sección $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/es_ES.ISO8859-1/TextOV0000664000175000017500000000157111655740662022074 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/es_ES.ISO8859-1/TextOV: locale for Spanish output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resumen', 'copyright notice' => 'Nota de Copyright', 'contents' => 'Contenidos', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' =>sub { return " Apéndice $_[0]" }, 'section' => sub { return "Sección $_[0]" }, 'subsection' => sub { return "Sección $_[0]" }, 'subsubsection' => sub { return "Sección $_[0]" }, 'paragraph' => sub { return "Sección $_[0]" }, 'subparagraph' => sub { return "Sección $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/cs_CZ.ISO8859-2/0000775000175000017500000000000011655740662020760 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/cs_CZ.ISO8859-2/Text0000664000175000017500000000153411655740662021632 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/cs_CZ.ISO8859-2/Text: locale for Czech output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Souhrn', 'copyright notice' => 'Autorská práva', 'contents' => 'Obsah', 'chapter' => sub { return "Kapitola $_[0]" }, 'appendix' => sub { return "Dodatek $_[0]" }, 'section' => sub { return "Oddíl $_[0]" }, 'subsection' => sub { return "Oddíl $_[0]" }, 'subsubsection' => sub { return "Oddíl $_[0]" }, 'paragraph' => sub { return "Oddíl $_[0]" }, 'subparagraph' => sub { return "Oddíl $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/cs_CZ.ISO8859-2/HTML0000664000175000017500000000175011655740662021452 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/cs_CZ.ISO8859-2/HTML: locale for Czech output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-2', 'abstract' => 'Souhrn', 'copyright notice' => 'Autorská práva', 'contents' => 'Obsah', 'chapter' => sub { return "Kapitola $_[0]" }, 'appendix' => sub { return "Dodatek $_[0]" }, 'section' => sub { return "Oddíl $_[0]" }, 'subsection' => sub { return "Oddíl $_[0]" }, 'subsubsection' => sub { return "Oddíl $_[0]" }, 'paragraph' => sub { return "Oddíl $_[0]" }, 'subparagraph' => sub { return "Oddíl $_[0]" }, 'footnotes' => 'Poznámky', 'comments' => 'Comments', 'next' => 'dal¹í', 'previous' => 'pøedchozí', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/cs_CZ.ISO8859-2/LaTeX0000664000175000017500000000123311655740662021657 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/cs_CZ.ISO8859-2/LaTeX2e: locale for Czech output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'czech', 'inputenc' => 'latin2', 'abstract' => 'Souhrn', 'copyright notice' => 'Autorská práva', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/cs_CZ.ISO8859-2/Texinfo0000664000175000017500000000143511655740662022322 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/cs_CZ.ISO8859-2/Texinfo: locale for Czech output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'Detailní výpis', 'chapter' => sub { return "Kapitola $_[0]" }, 'appendix' => sub { return "Dodatek $_[0]" }, 'section' => sub { return "Oddíl $_[0]" }, 'subsection' => sub { return "Oddíl $_[0]" }, 'subsubsection' => sub { return "Oddíl $_[0]" }, 'paragraph' => sub { return "Oddíl $_[0]" }, 'subparagraph' => sub { return "Oddíl $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/cs_CZ.ISO8859-2/TextOV0000664000175000017500000000154311655740662022077 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/cs_CZ.ISO8859-2/TextOV: locale for Czech output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Souhrn', 'copyright notice' => 'Autorská práva', 'contents' => 'Obsah', 'chapter' => sub { return "Kapitola $_[0]" }, 'appendix' => sub { return "Dodatek $_[0]" }, 'section' => sub { return "Oddíl $_[0]" }, 'subsection' => sub { return "Oddíl $_[0]" }, 'subsubsection' => sub { return "Oddíl $_[0]" }, 'paragraph' => sub { return "Oddíl $_[0]" }, 'subparagraph' => sub { return "Oddíl $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sv_SE.ISO8859-1/0000775000175000017500000000000011655740662020775 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/sv_SE.ISO8859-1/Text0000664000175000017500000000156611655740662021654 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sv_SE.ISO8859-1/Text: locale for Swedish output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Sammanfattning', 'copyright notice' => 'Copyrightnotering', 'contents' => 'Innehåll', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Appendix $_[0]" }, 'section' => sub { return "Avsnitt $_[0]" }, 'subsection' => sub { return "Avsnitt $_[0]" }, 'subsubsection' => sub { return "Avsnitt $_[0]" }, 'paragraph' => sub { return "Avsnitt $_[0]" }, 'subparagraph' => sub { return "Avsnitt $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sv_SE.ISO8859-1/HTML0000664000175000017500000000200611655740662021462 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sv_SE.ISO8859-1/HTML: locale for Swedish output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-1', 'abstract' => 'Sammanfattning', 'copyright notice' => 'Copyrightnotering', 'contents' => 'Innehåll', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Appendix $_[0]" }, 'section' => sub { return "Avsnitt $_[0]" }, 'subsection' => sub { return "Avsnitt $_[0]" }, 'subsubsection' => sub { return "Avsnitt $_[0]" }, 'paragraph' => sub { return "Avsnitt $_[0]" }, 'subparagraph' => sub { return "Avsnitt $_[0]" }, 'footnotes' => 'Fotnoter', 'comments' => 'Kommentarer', 'next' => 'nästa', 'previous' => 'föregående', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sv_SE.ISO8859-1/LaTeX0000664000175000017500000000125211655740662021675 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sv_SE.ISO8859-1/LaTeX2e: locale for Swedish output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'swedish', 'inputenc' => 'latin1', 'abstract' => 'Sammanfattning', 'copyright notice' => 'Copyrightnotering', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sv_SE.ISO8859-1/Texinfo0000664000175000017500000000146111655740662022336 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sv_SE.ISO8859-1/Texinfo: locale for Swedish output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'Detaljerad nodlistning', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Appendix $_[0]" }, 'section' => sub { return "Avsnitt $_[0]" }, 'subsection' => sub { return "Avsnitt $_[0]" }, 'subsubsection' => sub { return "Avsnitt $_[0]" }, 'paragraph' => sub { return "Avsnitt $_[0]" }, 'subparagraph' => sub { return "Avsnitt $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sv_SE.ISO8859-1/TextOV0000664000175000017500000000157511655740662022121 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sv_SE.ISO8859-1/TextOV: locale for Swedish output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Sammanfattning', 'copyright notice' => 'Copyrightnotering', 'contents' => 'Innehåll', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Appendix $_[0]" }, 'section' => sub { return "Avsnitt $_[0]" }, 'subsection' => sub { return "Avsnitt $_[0]" }, 'subsubsection' => sub { return "Avsnitt $_[0]" }, 'paragraph' => sub { return "Avsnitt $_[0]" }, 'subparagraph' => sub { return "Avsnitt $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/it_IT.ISO8859-15/0000775000175000017500000000000011655740662021053 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/it_IT.ISO8859-15/Text0000664000175000017500000000156611655740662021732 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/it_IT.ISO8859-15/Text: locale for Italian output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Estratto', 'copyright notice' => 'Avviso di Copyright', 'contents' => 'Contenuti', 'chapter' => sub { return "Capitolo $_[0]" }, 'appendix' => sub { return "Appendice $_[0]" }, 'section' => sub { return "Sezione $_[0]" }, 'subsection' => sub { return "Sezione $_[0]" }, 'subsubsection' => sub { return "Sezione $_[0]" }, 'paragraph' => sub { return "Sezione $_[0]" }, 'subparagraph' => sub { return "Sezione $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/it_IT.ISO8859-15/HTML0000664000175000017500000000203411655740662021541 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/it_IT.ISO8859-15/HTML: locale for Italian output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-15', 'abstract' => 'Estratto', 'copyright notice' => 'Avviso di Copyright', 'contents' => 'Contenuti', 'chapter' => sub { return "Capitolo $_[0]" }, 'appendix' => sub { return "Appendice $_[0]" }, 'section' => sub { return "Sezione $_[0]" }, 'subsection' => sub { return "Sezione $_[0]" }, 'subsubsection' => sub { return "Sezione $_[0]" }, 'paragraph' => sub { return "Sezione $_[0]" }, 'subparagraph' => sub { return "Sezione $_[0]" }, 'footnotes' => 'Nota a pié di pagina', 'comments' => 'Comments', 'next' => 'successivo', 'previous' => 'precedente', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/it_IT.ISO8859-15/LaTeX0000664000175000017500000000124711655740662021757 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/it_IT.ISO8859-15/LaTeX2e: locale for Italian output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'italian', 'inputenc' => 'latin9', 'abstract' => 'Estratto', 'copyright notice' => 'Avviso di Copyright', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/it_IT.ISO8859-15/Texinfo0000664000175000017500000000147411655740662022420 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/it_IT.ISO8859-15/Texinfo: locale for Italian output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'L\'Elenco dettagliato dei nodi', 'chapter' => sub { return "Capitolo $_[0]" }, 'appendix' => sub { return "Appendice $_[0]" }, 'section' => sub { return "Sezione $_[0]" }, 'subsection' => sub { return "Sezione $_[0]" }, 'subsubsection' => sub { return "Sezione $_[0]" }, 'paragraph' => sub { return "Sezione $_[0]" }, 'subparagraph' => sub { return "Sezione $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/it_IT.ISO8859-15/TextOV0000664000175000017500000000157511655740662022177 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/it_IT.ISO8859-15/TextOV: locale for Italian output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Estratto', 'copyright notice' => 'Avviso di Copyright', 'contents' => 'Contenuti', 'chapter' => sub { return "Capitolo $_[0]" }, 'appendix' => sub { return "Appendice $_[0]" }, 'section' => sub { return "Sezione $_[0]" }, 'subsection' => sub { return "Sezione $_[0]" }, 'subsubsection' => sub { return "Sezione $_[0]" }, 'paragraph' => sub { return "Sezione $_[0]" }, 'subparagraph' => sub { return "Sezione $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/lt_LT.UTF-8/0000775000175000017500000000000011655740662020451 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/lt_LT.UTF-8/Text0000664000175000017500000000155711655740662021330 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/lt_LT.UTF-8/Text: locale for Lithuanian output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Santrauka', 'copyright notice' => 'AutorinÄ—s teisÄ—s', 'contents' => 'Turinys', 'chapter' => sub { return "$_[0] skyrius" }, 'appendix' => sub { return "Priedas $_[0]" }, 'section' => sub { return "$_[0] skyrius" }, 'subsection' => sub { return "$_[0] skyrius" }, 'subsubsection' => sub { return "$_[0] skyrius" }, 'paragraph' => sub { return "$_[0] skyrius" }, 'subparagraph' => sub { return "$_[0] skyrius" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/lt_LT.UTF-8/HTML0000664000175000017500000000177311655740662021150 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/lt_LT.UTF-8/HTML: locale for Lithuanian output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'Santrauka', 'copyright notice' => 'AutorinÄ—s teisÄ—s', 'contents' => 'Turinys', 'chapter' => sub { return "$_[0] skyrius" }, 'appendix' => sub { return "Priedas $_[0]" }, 'section' => sub { return "$_[0] skyrius" }, 'subsection' => sub { return "$_[0] skyrius" }, 'subsubsection' => sub { return "$_[0] skyrius" }, 'paragraph' => sub { return "$_[0] skyrius" }, 'subparagraph' => sub { return "$_[0] skyrius" }, 'footnotes' => 'IÅ¡naÅ¡os', 'comments' => 'Pastabos', 'next' => 'tolesnis', 'previous' => 'ankstesnis', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/lt_LT.UTF-8/LaTeX0000664000175000017500000000133511655740662021353 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/lt_LT.UTF-8/LaTeX2e: locale for Lithuanian output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => '', 'inputenc' => 'utf8x', 'abstract' => 'Santrauka', 'copyright notice' => 'AutorinÄ—s teisÄ—s', 'before begin document' => '\\usepackage[lithuanian]{babel}\\usepackage[L7x]{fontenc}', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/lt_LT.UTF-8/Texinfo0000664000175000017500000000146411655740662022015 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/lt_LT.UTF-8/Texinfo: locale for Lithuanian output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'Detalus elementų sÄ…raÅ¡as', 'chapter' => sub { return "$_[0] skyrius" }, 'appendix' => sub { return "Priedas $_[0]" }, 'section' => sub { return "$_[0] skyrius" }, 'subsection' => sub { return "$_[0] skyrius" }, 'subsubsection' => sub { return "$_[0] skyrius" }, 'paragraph' => sub { return "$_[0] skyrius" }, 'subparagraph' => sub { return "$_[0] skyrius" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/lt_LT.UTF-8/TextOV0000664000175000017500000000156611655740662021575 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/lt_LT.UTF-8/TextOV: locale for Lithuanian output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Santrauka', 'copyright notice' => 'AutorinÄ—s teisÄ—s', 'contents' => 'Turinys', 'chapter' => sub { return "$_[0] skyrius" }, 'appendix' => sub { return "Priedas $_[0]" }, 'section' => sub { return "$_[0] skyrius" }, 'subsection' => sub { return "$_[0] skyrius" }, 'subsubsection' => sub { return "$_[0] skyrius" }, 'paragraph' => sub { return "$_[0] skyrius" }, 'subparagraph' => sub { return "$_[0] skyrius" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fi_FI.UTF-8/0000775000175000017500000000000011655740662020407 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/fi_FI.UTF-8/Text0000664000175000017500000000154311655740662021261 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fi_FI.UTF-8/Text: locale for Finnish output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Tiivistelmä', 'copyright notice' => 'Tekijänoikeuksista', 'contents' => 'Sisällys', 'chapter' =>sub { return " Luku $_[0]" }, 'appendix' => sub { return "Liite $_[0]" }, 'section' => sub { return "Kohta $_[0]" }, 'subsection' => sub { return "Kohta $_[0]" }, 'subsubsection' => sub { return "Kohta $_[0]" }, 'paragraph' => sub { return "Kohta $_[0]" }, 'subparagraph' => sub { return "Kohta $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fi_FI.UTF-8/HTML0000664000175000017500000000176011655740662021102 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fi_FI.UTF-8/HTML: locale for Finnish output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'Tiivistelmä', 'copyright notice' => 'Tekijänoikeuksista', 'contents' => 'Sisällys', 'chapter' =>sub { return " Luku $_[0]" }, 'appendix' => sub { return "Liite $_[0]" }, 'section' => sub { return "Kohta $_[0]" }, 'subsection' => sub { return "Kohta $_[0]" }, 'subsubsection' => sub { return "Kohta $_[0]" }, 'paragraph' => sub { return "Kohta $_[0]" }, 'subparagraph' => sub { return "Kohta $_[0]" }, 'footnotes' => 'Alaviitteet', 'comments' => 'Comments', 'next' => 'seuraava', 'previous' => 'edellinen', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fi_FI.UTF-8/LaTeX0000664000175000017500000000124511655740662021311 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fi_FI.UTF-8/LaTeX2e: locale for Finnish output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'finnish', 'inputenc' => 'utf8x', 'abstract' => 'Tiivistelmä', 'copyright notice' => 'Tekijänoikeuksista', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fi_FI.UTF-8/Texinfo0000664000175000017500000000144311655740662021750 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fi_FI.UTF-8/Texinfo: locale for Finnish output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'Yksityiskohtainen solmulista', 'chapter' =>sub { return " Luku $_[0]" }, 'appendix' => sub { return "Liite $_[0]" }, 'section' => sub { return "Kohta $_[0]" }, 'subsection' => sub { return "Kohta $_[0]" }, 'subsubsection' => sub { return "Kohta $_[0]" }, 'paragraph' => sub { return "Kohta $_[0]" }, 'subparagraph' => sub { return "Kohta $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fi_FI.UTF-8/TextOV0000664000175000017500000000155211655740662021526 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fi_FI.UTF-8/TextOV: locale for Finnish output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Tiivistelmä', 'copyright notice' => 'Tekijänoikeuksista', 'contents' => 'Sisällys', 'chapter' =>sub { return " Luku $_[0]" }, 'appendix' => sub { return "Liite $_[0]" }, 'section' => sub { return "Kohta $_[0]" }, 'subsection' => sub { return "Kohta $_[0]" }, 'subsubsection' => sub { return "Kohta $_[0]" }, 'paragraph' => sub { return "Kohta $_[0]" }, 'subparagraph' => sub { return "Kohta $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ca_ES.ISO8859-1/0000775000175000017500000000000011655740662020730 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/ca_ES.ISO8859-1/Text0000664000175000017500000000155111655740662021601 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ca_ES.ISO8859-1/Text: locale for Catalan output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resum', 'copyright notice' => 'Nota de Copyright', 'contents' => 'Continguts', 'chapter' => sub { return "Capítol $_[0]" }, 'appendix' => sub { return "Apèndix $_[0]" }, 'section' => sub { return "Secció $_[0]" }, 'subsection' => sub { return "Secció $_[0]" }, 'subsubsection' => sub { return "Secció $_[0]" }, 'paragraph' => sub { return "Secció $_[0]" }, 'subparagraph' => sub { return "Secció $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ca_ES.ISO8859-1/HTML0000664000175000017500000000177411655740662021430 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ca_ES.ISO8859-1/HTML: locale for Catalan output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-1', 'abstract' => 'Resum', 'copyright notice' => 'Nota de Copyright', 'contents' => 'Continguts', 'chapter' => sub { return "Capítol $_[0]" }, 'appendix' => sub { return "Apèndix $_[0]" }, 'section' => sub { return "Secció $_[0]" }, 'subsection' => sub { return "Secció $_[0]" }, 'subsubsection' => sub { return "Secció $_[0]" }, 'paragraph' => sub { return "Secció $_[0]" }, 'subparagraph' => sub { return "Secció $_[0]" }, 'footnotes' => 'Notes al peu', 'comments' => 'Comentaris', 'next' => 'següent', 'previous' => 'anterior', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ca_ES.ISO8859-1/LaTeX0000664000175000017500000000124111655740662021626 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ca_ES.ISO8859-1/LaTeX2e: locale for Catalan output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'catalan', 'inputenc' => 'latin1', 'abstract' => 'Resum', 'copyright notice' => 'Nota de Copyright', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ca_ES.ISO8859-1/Texinfo0000664000175000017500000000146111655740662022271 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ca_ES.ISO8859-1/Texinfo: locale for Catalan output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'La llista detallada de nodes', 'chapter' => sub { return "Capítol $_[0]" }, 'appendix' => sub { return "Apèndix $_[0]" }, 'section' => sub { return "Secció $_[0]" }, 'subsection' => sub { return "Secció $_[0]" }, 'subsubsection' => sub { return "Secció $_[0]" }, 'paragraph' => sub { return "Secció $_[0]" }, 'subparagraph' => sub { return "Secció $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ca_ES.ISO8859-1/TextOV0000664000175000017500000000156011655740662022046 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ca_ES.ISO8859-1/TextOV: locale for Catalan output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resum', 'copyright notice' => 'Nota de Copyright', 'contents' => 'Continguts', 'chapter' => sub { return "Capítol $_[0]" }, 'appendix' => sub { return "Apèndix $_[0]" }, 'section' => sub { return "Secció $_[0]" }, 'subsection' => sub { return "Secció $_[0]" }, 'subsubsection' => sub { return "Secció $_[0]" }, 'paragraph' => sub { return "Secció $_[0]" }, 'subparagraph' => sub { return "Secció $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pt_PT.UTF-8/0000775000175000017500000000000011655740662020461 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/pt_PT.UTF-8/Text0000664000175000017500000000157511655740662021340 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pt_PT.UTF-8/Text: locale for Portuguese output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resumo', 'copyright notice' => 'Nota dos Direitos de Autor', 'contents' => 'Ãndice', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apêndice $_[0]" }, 'section' => sub { return "Secção $_[0]" }, 'subsection' => sub { return "Secção $_[0]" }, 'subsubsection' => sub { return "Secção $_[0]" }, 'paragraph' => sub { return "Secção $_[0]" }, 'subparagraph' => sub { return "Secção $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pt_PT.UTF-8/HTML0000664000175000017500000000202211655740662021144 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pt_PT.UTF-8/HTML: locale for Portuguese output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'Resumo', 'copyright notice' => 'Nota dos Direitos de Autor', 'contents' => 'Ãndice', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apêndice $_[0]" }, 'section' => sub { return "Secção $_[0]" }, 'subsection' => sub { return "Secção $_[0]" }, 'subsubsection' => sub { return "Secção $_[0]" }, 'paragraph' => sub { return "Secção $_[0]" }, 'subparagraph' => sub { return "Secção $_[0]" }, 'footnotes' => 'Notas de Rodapé', 'comments' => 'Comentários', 'next' => 'próximo', 'previous' => 'anterior', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pt_PT.UTF-8/LaTeX0000664000175000017500000000125411655740662021363 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pt_PT.UTF-8/LaTeX2e: locale for Portuguese output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'portuguese', 'inputenc' => 'utf8x', 'abstract' => 'Resumo', 'copyright notice' => 'Nota dos Direitos de Autor', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pt_PT.UTF-8/Texinfo0000664000175000017500000000147311655740662022025 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pt_PT.UTF-8/Texinfo: locale for Portuguese output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'A Lista Detalhada de Nós', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apêndice $_[0]" }, 'section' => sub { return "Secção $_[0]" }, 'subsection' => sub { return "Secção $_[0]" }, 'subsubsection' => sub { return "Secção $_[0]" }, 'paragraph' => sub { return "Secção $_[0]" }, 'subparagraph' => sub { return "Secção $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pt_PT.UTF-8/TextOV0000664000175000017500000000160411655740662021576 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pt_PT.UTF-8/TextOV: locale for Portuguese output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resumo', 'copyright notice' => 'Nota dos Direitos de Autor', 'contents' => 'Ãndice', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apêndice $_[0]" }, 'section' => sub { return "Secção $_[0]" }, 'subsection' => sub { return "Secção $_[0]" }, 'subsubsection' => sub { return "Secção $_[0]" }, 'paragraph' => sub { return "Secção $_[0]" }, 'subparagraph' => sub { return "Secção $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ru_RU.UTF-8/0000775000175000017500000000000011655740662020467 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/ru_RU.UTF-8/Text0000664000175000017500000000171611655740662021343 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ru_RU.UTF-8/Text: locale for Russian output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'ÐннотациÑ', 'copyright notice' => 'Ð¡Ð²ÐµÐ´ÐµÐ½Ð¸Ñ Ð¾Ð± авторÑких правах', 'contents' => 'Содержание', 'chapter' => sub { return "Глава $_[0]" }, 'appendix' => sub { return "Приложение $_[0]" }, 'section' => sub { return "раздел $_[0]" }, 'subsection' => sub { return "раздел $_[0]" }, 'subsubsection' => sub { return "раздел $_[0]" }, 'paragraph' => sub { return "раздел $_[0]" }, 'subparagraph' => sub { return "раздел $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ru_RU.UTF-8/HTML0000664000175000017500000000215711655740662021163 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ru_RU.UTF-8/HTML: locale for Russian output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'ÐннотациÑ', 'copyright notice' => 'Ð¡Ð²ÐµÐ´ÐµÐ½Ð¸Ñ Ð¾Ð± авторÑких правах', 'contents' => 'Содержание', 'chapter' => sub { return "Глава $_[0]" }, 'appendix' => sub { return "Приложение $_[0]" }, 'section' => sub { return "раздел $_[0]" }, 'subsection' => sub { return "раздел $_[0]" }, 'subsubsection' => sub { return "раздел $_[0]" }, 'paragraph' => sub { return "раздел $_[0]" }, 'subparagraph' => sub { return "раздел $_[0]" }, 'footnotes' => 'СноÑки', 'comments' => 'Комментарии', 'next' => 'вперед', 'previous' => 'назад', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ru_RU.UTF-8/LaTeX0000664000175000017500000000140611655740662021370 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ru_RU.UTF-8/LaTeX2e: locale for Russian output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'russian', 'inputenc' => 'utf8x', 'abstract' => 'ÐннотациÑ', 'copyright notice' => 'Ð¡Ð²ÐµÐ´ÐµÐ½Ð¸Ñ Ð¾Ð± авторÑких правах', 'before begin document' => '', 'after begin document' => '\\renewcommand{\\vpageref}[1]{на Ñтр. \\pageref{#1}}', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ru_RU.UTF-8/Texinfo0000664000175000017500000000160211655740662022025 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ru_RU.UTF-8/Texinfo: locale for Russian output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'Подробное опиÑание Ñлементов ÑпиÑка', 'chapter' => sub { return "Глава $_[0]" }, 'appendix' => sub { return "Приложение $_[0]" }, 'section' => sub { return "раздел $_[0]" }, 'subsection' => sub { return "раздел $_[0]" }, 'subsubsection' => sub { return "раздел $_[0]" }, 'paragraph' => sub { return "раздел $_[0]" }, 'subparagraph' => sub { return "раздел $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ru_RU.UTF-8/TextOV0000664000175000017500000000172511655740662021610 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ru_RU.UTF-8/TextOV: locale for Russian output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'ÐннотациÑ', 'copyright notice' => 'Ð¡Ð²ÐµÐ´ÐµÐ½Ð¸Ñ Ð¾Ð± авторÑких правах', 'contents' => 'Содержание', 'chapter' => sub { return "Глава $_[0]" }, 'appendix' => sub { return "Приложение $_[0]" }, 'section' => sub { return "раздел $_[0]" }, 'subsection' => sub { return "раздел $_[0]" }, 'subsubsection' => sub { return "раздел $_[0]" }, 'paragraph' => sub { return "раздел $_[0]" }, 'subparagraph' => sub { return "раздел $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/de_DE.ISO8859-1/0000775000175000017500000000000011655740662020716 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/de_DE.ISO8859-1/Text0000664000175000017500000000157411655740662021574 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/de_DE.ISO8859-1/Text: locale for German output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Zusammenfassung', 'copyright notice' => 'Copyright-Hinweis', 'contents' => 'Inhalt', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Anhang $_[0]" }, 'section' => sub { return "Abschnitt $_[0]" }, 'subsection' => sub { return "Abschnitt $_[0]" }, 'subsubsection' => sub { return "Abschnitt $_[0]" }, 'paragraph' => sub { return "Abschnitt $_[0]" }, 'subparagraph' => sub { return "Abschnitt $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/de_DE.ISO8859-1/HTML0000664000175000017500000000200611655740662021403 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/de_DE.ISO8859-1/HTML: locale for German output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-1', 'abstract' => 'Zusammenfassung', 'copyright notice' => 'Copyright-Hinweis', 'contents' => 'Inhalt', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Anhang $_[0]" }, 'section' => sub { return "Abschnitt $_[0]" }, 'subsection' => sub { return "Abschnitt $_[0]" }, 'subsubsection' => sub { return "Abschnitt $_[0]" }, 'paragraph' => sub { return "Abschnitt $_[0]" }, 'subparagraph' => sub { return "Abschnitt $_[0]" }, 'footnotes' => 'Fußnoten', 'comments' => 'Comments', 'next' => 'weiter', 'previous' => 'zurück', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/de_DE.ISO8859-1/LaTeX0000664000175000017500000000125211655740662021616 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/de_DE.ISO8859-1/LaTeX2e: locale for German output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'ngerman', 'inputenc' => 'latin1', 'abstract' => 'Zusammenfassung', 'copyright notice' => 'Copyright-Hinweis', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/de_DE.ISO8859-1/Texinfo0000664000175000017500000000147311655740662022262 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/de_DE.ISO8859-1/Texinfo: locale for German output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'The Detailed Node Listing', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Anhang $_[0]" }, 'section' => sub { return "Abschnitt $_[0]" }, 'subsection' => sub { return "Abschnitt $_[0]" }, 'subsubsection' => sub { return "Abschnitt $_[0]" }, 'paragraph' => sub { return "Abschnitt $_[0]" }, 'subparagraph' => sub { return "Abschnitt $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/de_DE.ISO8859-1/TextOV0000664000175000017500000000160311655740662022032 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/de_DE.ISO8859-1/TextOV: locale for German output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Zusammenfassung', 'copyright notice' => 'Copyright-Hinweis', 'contents' => 'Inhalt', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Anhang $_[0]" }, 'section' => sub { return "Abschnitt $_[0]" }, 'subsection' => sub { return "Abschnitt $_[0]" }, 'subsubsection' => sub { return "Abschnitt $_[0]" }, 'paragraph' => sub { return "Abschnitt $_[0]" }, 'subparagraph' => sub { return "Abschnitt $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/tr_TR.UTF-8/0000775000175000017500000000000011655740662020465 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/tr_TR.UTF-8/Text0000664000175000017500000000154311655740662021337 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/tr_TR.UTF-8/Text: locale for Turkish output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Özet', 'copyright notice' => 'Telif Hakkı', 'contents' => 'İçindekiler', 'chapter' => sub { return "Bölüm $_[0]" }, 'appendix' => sub { return "Ek $_[0]" }, 'section' => sub { return "Kısım $_[0]" }, 'subsection' => sub { return "Kısım $_[0]" }, 'subsubsection' => sub { return "Kısım $_[0]" }, 'paragraph' => sub { return "Kısım $_[0]" }, 'subparagraph' => sub { return "Kısım $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/tr_TR.UTF-8/HTML0000664000175000017500000000175011655740662021157 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/tr_TR.UTF-8/HTML: locale for Turkish output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'Özet', 'copyright notice' => 'Telif Hakkı', 'contents' => 'İçindekiler', 'chapter' => sub { return "Bölüm $_[0]" }, 'appendix' => sub { return "Ek $_[0]" }, 'section' => sub { return "Kısım $_[0]" }, 'subsection' => sub { return "Kısım $_[0]" }, 'subsubsection' => sub { return "Kısım $_[0]" }, 'paragraph' => sub { return "Kısım $_[0]" }, 'subparagraph' => sub { return "Kısım $_[0]" }, 'footnotes' => 'Dipnot', 'comments' => 'Yorumlar', 'next' => 'sonraki', 'previous' => 'önceki', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/tr_TR.UTF-8/LaTeX0000664000175000017500000000122711655740662021367 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/tr_TR.UTF-8/LaTeX2e: locale for Turkish output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'english', 'inputenc' => 'utf8x', 'abstract' => 'Özet', 'copyright notice' => 'Telif Hakkı', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/tr_TR.UTF-8/Texinfo0000664000175000017500000000144311655740662022026 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/tr_TR.UTF-8/Texinfo: locale for Turkish output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'Ayrıntılı Liste', 'chapter' => sub { return "Bölüm $_[0]" }, 'appendix' => sub { return "Ek $_[0]" }, 'section' => sub { return "Bölüm $_[0]" }, 'subsection' => sub { return "Kısım $_[0]" }, 'subsubsection' => sub { return "Kısım $_[0]" }, 'paragraph' => sub { return "Kısım $_[0]" }, 'subparagraph' => sub { return "Kısım $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/tr_TR.UTF-8/TextOV0000664000175000017500000000156611655740662021611 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/en_US.ISO8859-1/TextOV: locale for English output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Abstract', 'copyright notice' => 'Copyright Notice', 'contents' => 'Contents', 'chapter' => sub { return "Chapter $_[0]" }, 'appendix' => sub { return "Appendix $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/Wiki0000664000175000017500000000154311655740662017462 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/Wiki: locale independent (English) output in Wiki format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Abstract', 'copyright notice' => 'Copyright Notice', 'contents' => 'Contents', 'chapter' => sub { return "Chapter $_[0]" }, 'appendix' => sub { return "Appendix $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/gl_ES.UTF-8/0000775000175000017500000000000011655740662020424 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/gl_ES.UTF-8/Text0000664000175000017500000000156111655740662021276 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/gl_ES.UTF-8/Text: locale for Galician output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resumo', 'copyright notice' => 'Nota do Copyright', 'contents' => 'Contido', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apéndice $_[0]" }, 'section' => sub { return "Sección $_[0]" }, 'subsection' => sub { return "Sección $_[0]" }, 'subsubsection' => sub { return "Sección $_[0]" }, 'paragraph' => sub { return "Sección $_[0]" }, 'subparagraph' => sub { return "Sección $_[0]" } ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/gl_ES.UTF-8/HTML0000664000175000017500000000200111655740662021104 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/gl_ES.UTF-8/HTML: locale for Galician output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'Resumo', 'copyright notice' => 'Nota do Copyright', 'contents' => 'Contido', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apéndice $_[0]" }, 'section' => sub { return "Sección $_[0]" }, 'subsection' => sub { return "Sección $_[0]" }, 'subsubsection' => sub { return "Sección $_[0]" }, 'paragraph' => sub { return "Sección $_[0]" }, 'subparagraph' => sub { return "Sección $_[0]" }, 'footnotes' => 'Notas ao pé', 'comments' => 'Comentarios', 'next' => 'seguinte', 'previous' => 'anterior' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/gl_ES.UTF-8/LaTeX0000664000175000017500000000123711655740662021327 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/gl_ES.UTF-8/LaTeX2e: locale for Galician output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'galician', 'inputenc' => 'utf8x', 'abstract' => 'Resumo', 'copyright notice' => 'Nota do Copyright', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/gl_ES.UTF-8/Texinfo0000664000175000017500000000147011655740662021765 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/gl_ES.UTF-8/Texinfo: locale for Galician output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'A Lista Detallada de Nós', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apéndice $_[0]" }, 'section' => sub { return "Sección $_[0]" }, 'subsection' => sub { return "Sección $_[0]" }, 'subsubsection' => sub { return "Sección $_[0]" }, 'paragraph' => sub { return "Sección $_[0]" }, 'subparagraph' => sub { return "Sección $_[0]" } ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/gl_ES.UTF-8/TextOV0000664000175000017500000000157011655740662021543 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/gl_ES.UTF-8/TextOV: locale for Galician output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resumo', 'copyright notice' => 'Nota do Copyright', 'contents' => 'Contido', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apéndice $_[0]" }, 'section' => sub { return "Sección $_[0]" }, 'subsection' => sub { return "Sección $_[0]" }, 'subsubsection' => sub { return "Sección $_[0]" }, 'paragraph' => sub { return "Sección $_[0]" }, 'subparagraph' => sub { return "Sección $_[0]" } ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ro_RO.ISO8859-2/0000775000175000017500000000000011655740662020777 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/ro_RO.ISO8859-2/Text0000664000175000017500000000156611655740662021656 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ro_RO.ISO8859-2/Text: locale for Romanian output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Abstract', 'copyright notice' => 'Notã copyright', 'contents' => 'Sumar', 'chapter' => sub { return "Capitolul $_[0]" }, 'appendix' => sub { return "Anexa $_[0]" }, 'section' => sub { return "Secþiunea $_[0]" }, 'subsection' => sub { return "Secþiunea $_[0]" }, 'subsubsection' => sub { return "Secþiunea $_[0]" }, 'paragraph' => sub { return "Paragraful $_[0]" }, 'subparagraph' => sub { return "Paragraful $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ro_RO.ISO8859-2/HTML0000664000175000017500000000200611655740662021464 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ro_RO.ISO8859-2/HTML: locale for Romanian output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-2', 'abstract' => 'Abstract', 'copyright notice' => 'Notã copyright', 'contents' => 'Sumar', 'chapter' => sub { return "Capitolul $_[0]" }, 'appendix' => sub { return "Anexa $_[0]" }, 'section' => sub { return "Secþiunea $_[0]" }, 'subsection' => sub { return "Secþiunea $_[0]" }, 'subsubsection' => sub { return "Secþiunea $_[0]" }, 'paragraph' => sub { return "Paragraful $_[0]" }, 'subparagraph' => sub { return "Paragraful $_[0]" }, 'footnotes' => 'Note subsol', 'comments' => 'Comentarii', 'next' => 'înainte', 'previous' => 'înapoi', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ro_RO.ISO8859-2/LaTeX0000664000175000017500000000124311655740662021677 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ro_RO.ISO8859-2/LaTeX2e: locale for Romanian output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'romanian', 'inputenc' => 'latin2', 'abstract' => 'Abstract', 'copyright notice' => 'Notã copyright', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ro_RO.ISO8859-2/Texinfo0000664000175000017500000000147011655740662022340 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ro_RO.ISO8859-2/Texinfo: locale for Romanian output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'Conþinut detaliat', 'chapter' => sub { return "Capitolul $_[0]" }, 'appendix' => sub { return "Anexa $_[0]" }, 'section' => sub { return "Secþiunea $_[0]" }, 'subsection' => sub { return "Secþiunea $_[0]" }, 'subsubsection' => sub { return "Secþiunea $_[0]" }, 'paragraph' => sub { return "Paragraful $_[0]" }, 'subparagraph' => sub { return "Paragraful $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ro_RO.ISO8859-2/TextOV0000664000175000017500000000157311655740662022121 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ro_RO.ISO8859-2/Text: locale for Romanian output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Abstract', 'copyright notice' => 'Notã copyright', 'contents' => 'Sumar', 'chapter' => sub { return "Capitolul $_[0]" }, 'appendix' => sub { return "Anexa $_[0]" }, 'section' => sub { return "Secþiunea $_[0]" }, 'subsection' => sub { return "Secþiunea $_[0]" }, 'subsubsection' => sub { return "Secþiunea $_[0]" }, 'paragraph' => sub { return "Paragraful $_[0]" }, 'subparagraph' => sub { return "Paragraful $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/uk_UA.UTF-8/0000775000175000017500000000000011655740662020437 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/uk_UA.UTF-8/Text0000664000175000017500000000171511655740662021312 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/uk_UA.UTF-8/Text: locale for Ukrainian output in plain text format ## ---------------------------------------------------------------------- use encoding "utf8"; use utf8; ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'ÐнотаціÑ', 'copyright notice' => 'ÐвторÑькі права', 'contents' => 'ЗміÑÑ‚', 'chapter' => sub { return "Глава $_[0]" }, 'appendix' => sub { return "Додаток $_[0]" }, 'section' => sub { return "розділ $_[0]" }, 'subsection' => sub { return "розділ $_[0]" }, 'subsubsection' => sub { return "розділ $_[0]" }, 'paragraph' => sub { return "параграф $_[0]" }, 'subparagraph' => sub { return "параграф $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/uk_UA.UTF-8/HTML0000664000175000017500000000211311655740662021123 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/uk_UA.UTF-8/HTML: locale for Ukrainian output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'ÐнотаціÑ', 'copyright notice' => 'ÐвторÑькі права', 'contents' => 'ЗміÑÑ‚', 'chapter' => sub { return "Глава $_[0]" }, 'appendix' => sub { return "Додаток $_[0]" }, 'section' => sub { return "розділ $_[0]" }, 'subsection' => sub { return "розділ $_[0]" }, 'subsubsection' => sub { return "розділ $_[0]" }, 'paragraph' => sub { return "параграф $_[0]" }, 'subparagraph' => sub { return "параграф $_[0]" }, 'footnotes' => 'Примітки', 'comments' => 'Коментарі', 'next' => 'далі', 'previous' => 'назад', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/uk_UA.UTF-8/LaTeX0000664000175000017500000000135611655740662021344 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/uk_UA.UTF-8/LaTeX: locale for Ukrainian output in LaTeX format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'ukrainian', 'inputenc' => 'utf8x', 'abstract' => 'ÐнотаціÑ', 'copyright notice' => 'ÐвторÑькі права', 'before begin document' => '', 'after begin document' => '\\renewcommand{\\vpageref}[1]{на Ñтор. \\pageref{#1}}', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/uk_UA.UTF-8/Texinfo0000664000175000017500000000157511655740662022006 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/uk_UA.UTF-8/Texinfo: locale for Ukrainian output in Texinfo format ## ---------------------------------------------------------------------- use encoding "utf8"; use utf8; ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'Детальний опиÑ', 'chapter' => sub { return "Глава $_[0]" }, 'appendix' => sub { return "Додаток $_[0]" }, 'section' => sub { return "розділ $_[0]" }, 'subsection' => sub { return "розділ $_[0]" }, 'subsubsection' => sub { return "розділ $_[0]" }, 'paragraph' => sub { return "параграф $_[0]" }, 'subparagraph' => sub { return "параграф $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/uk_UA.UTF-8/TextOV0000664000175000017500000000172411655740662021557 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/uk_UA.UTF-8/TextOV: locale for Ukrainian output in overstrike text format ## ---------------------------------------------------------------------- use encoding "utf8"; use utf8; ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'ÐнотаціÑ', 'copyright notice' => 'ÐвторÑькі права', 'contents' => 'ЗміÑÑ‚', 'chapter' => sub { return "Глава $_[0]" }, 'appendix' => sub { return "Додаток $_[0]" }, 'section' => sub { return "розділ $_[0]" }, 'subsection' => sub { return "розділ $_[0]" }, 'subsubsection' => sub { return "розділ $_[0]" }, 'paragraph' => sub { return "параграф $_[0]" }, 'subparagraph' => sub { return "параграф $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/tr_TR.ISO8859-9/0000775000175000017500000000000011655740662021020 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/tr_TR.ISO8859-9/Text0000664000175000017500000000152711655740662021674 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/tr_TR.ISO8859-9/Text: locale for Turkish output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Özet', 'copyright notice' => 'Telif Hakký', 'contents' => 'Ýçindekiler', 'chapter' => sub { return "Bölüm $_[0]" }, 'appendix' => sub { return "Ek $_[0]" }, 'section' => sub { return "Kýsým $_[0]" }, 'subsection' => sub { return "Kýsým $_[0]" }, 'subsubsection' => sub { return "Kýsým $_[0]" }, 'paragraph' => sub { return "Kýsým $_[0]" }, 'subparagraph' => sub { return "Kýsým $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/tr_TR.ISO8859-9/HTML0000664000175000017500000000174011655740662021511 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/tr_TR.ISO8859-9/HTML: locale for Turkish output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-9', 'abstract' => 'Özet', 'copyright notice' => 'Telif Hakký', 'contents' => 'Ýçindekiler', 'chapter' => sub { return "Bölüm $_[0]" }, 'appendix' => sub { return "Ek $_[0]" }, 'section' => sub { return "Kýsým $_[0]" }, 'subsection' => sub { return "Kýsým $_[0]" }, 'subsubsection' => sub { return "Kýsým $_[0]" }, 'paragraph' => sub { return "Kýsým $_[0]" }, 'subparagraph' => sub { return "Kýsým $_[0]" }, 'footnotes' => 'Dipnot', 'comments' => 'Yorumlar', 'next' => 'sonraki', 'previous' => 'önceki', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/tr_TR.ISO8859-9/LaTeX0000664000175000017500000000123211655740662021716 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/tr_TR.ISO8859-9/LaTeX2e: locale for Turkish output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'english', 'inputenc' => 'latin5', 'abstract' => 'Özet', 'copyright notice' => 'Telif Hakký', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/tr_TR.ISO8859-9/Texinfo0000664000175000017500000000143011655740662022355 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/tr_TR.ISO8859-9/Texinfo: locale for Turkish output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'Ayrýntýlý Liste', 'chapter' => sub { return "Bölüm $_[0]" }, 'appendix' => sub { return "Ek $_[0]" }, 'section' => sub { return "Bölüm $_[0]" }, 'subsection' => sub { return "Kýsým $_[0]" }, 'subsubsection' => sub { return "Kýsým $_[0]" }, 'paragraph' => sub { return "Kýsým $_[0]" }, 'subparagraph' => sub { return "Kýsým $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/tr_TR.ISO8859-9/TextOV0000664000175000017500000000156611655740662022144 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/en_US.ISO8859-1/TextOV: locale for English output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Abstract', 'copyright notice' => 'Copyright Notice', 'contents' => 'Contents', 'chapter' => sub { return "Chapter $_[0]" }, 'appendix' => sub { return "Appendix $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fi_FI.ISO8859-15/0000775000175000017500000000000011655740662021017 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/fi_FI.ISO8859-15/Text0000664000175000017500000000154511655740662021673 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fi_FI.ISO8859-15/Text: locale for Finnish output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Tiivistelmä', 'copyright notice' => 'Tekijänoikeuksista', 'contents' => 'Sisällys', 'chapter' =>sub { return " Luku $_[0]" }, 'appendix' => sub { return "Liite $_[0]" }, 'section' => sub { return "Kohta $_[0]" }, 'subsection' => sub { return "Kohta $_[0]" }, 'subsubsection' => sub { return "Kohta $_[0]" }, 'paragraph' => sub { return "Kohta $_[0]" }, 'subparagraph' => sub { return "Kohta $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fi_FI.ISO8859-15/HTML0000664000175000017500000000177011655740662021513 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fi_FI.ISO8859-15/HTML: locale for Finnish output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-15', 'abstract' => 'Tiivistelmä', 'copyright notice' => 'Tekijänoikeuksista', 'contents' => 'Sisällys', 'chapter' =>sub { return " Luku $_[0]" }, 'appendix' => sub { return "Liite $_[0]" }, 'section' => sub { return "Kohta $_[0]" }, 'subsection' => sub { return "Kohta $_[0]" }, 'subsubsection' => sub { return "Kohta $_[0]" }, 'paragraph' => sub { return "Kohta $_[0]" }, 'subparagraph' => sub { return "Kohta $_[0]" }, 'footnotes' => 'Alaviitteet', 'comments' => 'Comments', 'next' => 'seuraava', 'previous' => 'edellinen', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fi_FI.ISO8859-15/LaTeX0000664000175000017500000000125111655740662021716 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fi_FI.ISO8859-15/LaTeX2e: locale for Finnish output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'finnish', 'inputenc' => 'latin9', 'abstract' => 'Tiivistelmä', 'copyright notice' => 'Tekijänoikeuksista', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fi_FI.ISO8859-15/Texinfo0000664000175000017500000000145011655740662022356 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fi_FI.ISO8859-15/Texinfo: locale for Finnish output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'Yksityiskohtainen solmulista', 'chapter' =>sub { return " Luku $_[0]" }, 'appendix' => sub { return "Liite $_[0]" }, 'section' => sub { return "Kohta $_[0]" }, 'subsection' => sub { return "Kohta $_[0]" }, 'subsubsection' => sub { return "Kohta $_[0]" }, 'paragraph' => sub { return "Kohta $_[0]" }, 'subparagraph' => sub { return "Kohta $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fi_FI.ISO8859-15/TextOV0000664000175000017500000000155411655740662022140 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fi_FI.ISO8859-15/TextOV: locale for Finnish output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Tiivistelmä', 'copyright notice' => 'Tekijänoikeuksista', 'contents' => 'Sisällys', 'chapter' =>sub { return " Luku $_[0]" }, 'appendix' => sub { return "Liite $_[0]" }, 'section' => sub { return "Kohta $_[0]" }, 'subsection' => sub { return "Kohta $_[0]" }, 'subsubsection' => sub { return "Kohta $_[0]" }, 'paragraph' => sub { return "Kohta $_[0]" }, 'subparagraph' => sub { return "Kohta $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pt_BR.ISO8859-1/0000775000175000017500000000000011655740662020764 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/pt_BR.ISO8859-1/Text0000664000175000017500000000154711655740662021642 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pt_BR.ISO8859-1/Text: locale for Brazilian output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resumo', 'copyright notice' => 'Nota de Copyright', 'contents' => 'Conteúdo', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apêndice $_[0]" }, 'section' => sub { return "Seção $_[0]" }, 'subsection' => sub { return "Seção $_[0]" }, 'subsubsection' => sub { return "Seção $_[0]" }, 'paragraph' => sub { return "Seção $_[0]" }, 'subparagraph' => sub { return "Seção $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pt_BR.ISO8859-1/HTML0000664000175000017500000000177511655740662021465 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pt_BR.ISO8859-1/HTML: locale for Brazilian output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-1', 'abstract' => 'Resumo', 'copyright notice' => 'Nota de Copyright', 'contents' => 'Conteúdo', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apêndice $_[0]" }, 'section' => sub { return "Seção $_[0]" }, 'subsection' => sub { return "Seção $_[0]" }, 'subsubsection' => sub { return "Seção $_[0]" }, 'paragraph' => sub { return "Seção $_[0]" }, 'subparagraph' => sub { return "Seção $_[0]" }, 'footnotes' => 'Notas Rápidas', 'comments' => 'Coomentários', 'next' => 'próximo', 'previous' => 'anterior', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pt_BR.ISO8859-1/LaTeX0000664000175000017500000000124611655740662021667 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pt_BR.ISO8859-1/LaTeX2e: locale for Brazilian output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'brazilian', 'inputenc' => 'latin1', 'abstract' => 'Resumo', 'copyright notice' => 'Nota de Copyright', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pt_BR.ISO8859-1/Texinfo0000664000175000017500000000145611655740662022331 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pt_BR.ISO8859-1/Texinfo: locale for Brazilian output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'A Lista detalhada de Notas', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apêndice $_[0]" }, 'section' => sub { return "Seção $_[0]" }, 'subsection' => sub { return "Seção $_[0]" }, 'subsubsection' => sub { return "Seção $_[0]" }, 'paragraph' => sub { return "Seção $_[0]" }, 'subparagraph' => sub { return "Seção $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pt_BR.ISO8859-1/TextOV0000664000175000017500000000155411655740662022105 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pt_BR.ISO8859-1/TextOV: locale for Brazilian output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resumo', 'copyright notice' => 'Nota de Copyright', 'contents' => 'Conteúdo', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apêndice $_[0]" }, 'section' => sub { return "Seção $_[0]" }, 'subsection' => sub { return "Seção $_[0]" }, 'subsubsection' => sub { return "Seção $_[0]" }, 'paragraph' => sub { return "Seção $_[0]" }, 'subparagraph' => sub { return "Seção $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sk_SK.ISO8859-2/0000775000175000017500000000000011655740662020771 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/sk_SK.ISO8859-2/Text0000664000175000017500000000154411655740662021644 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sk_SK.ISO8859-2/Text: locale for Slovak output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Zhrnutie', 'copyright notice' => 'Autorské práva', 'contents' => 'Obsah', 'chapter' => sub { return "Kapitola $_[0]" }, 'appendix' => sub { return "Dodatok $_[0]" }, 'section' => sub { return "Oddiel $_[0]" }, 'subsection' => sub { return "Oddiel $_[0]" }, 'subsubsection' => sub { return "Oddiel $_[0]" }, 'paragraph' => sub { return "Oddiel $_[0]" }, 'subparagraph' => sub { return "Oddiel $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sk_SK.ISO8859-2/HTML0000664000175000017500000000176611655740662021472 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sk_SK.ISO8859-2/HTML: locale for Slovak output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-2', 'abstract' => 'Zhrnutie', 'copyright notice' => 'Autorské práva', 'contents' => 'Obsah', 'chapter' => sub { return "Kapitola $_[0]" }, 'appendix' => sub { return "Dodatok $_[0]" }, 'section' => sub { return "Oddiel $_[0]" }, 'subsection' => sub { return "Oddiel $_[0]" }, 'subsubsection' => sub { return "Oddiel $_[0]" }, 'paragraph' => sub { return "Oddiel $_[0]" }, 'subparagraph' => sub { return "Oddiel $_[0]" }, 'footnotes' => 'Poznámky', 'comments' => 'Komentáre', 'next' => 'ïaµ¹í', 'previous' => 'predchádzajúci', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sk_SK.ISO8859-2/LaTeX0000664000175000017500000000123711655740662021674 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sk_SK.ISO8859-2/LaTeX2e: locale for Slovak output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'slovak', 'inputenc' => 'latin2', 'abstract' => 'Zhrnutie', 'copyright notice' => 'Autorské práva', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sk_SK.ISO8859-2/Texinfo0000664000175000017500000000144311655740662022332 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sk_SK.ISO8859-2/Texinfo: locale for Slovak output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'Detailný výpis', 'chapter' => sub { return "Kapitola $_[0]" }, 'appendix' => sub { return "Dodatok $_[0]" }, 'section' => sub { return "Oddiel $_[0]" }, 'subsection' => sub { return "Oddiel $_[0]" }, 'subsubsection' => sub { return "Oddiel $_[0]" }, 'paragraph' => sub { return "Oddiel $_[0]" }, 'subparagraph' => sub { return "Oddiel $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sk_SK.ISO8859-2/TextOV0000664000175000017500000000155311655740662022111 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sk_SK.ISO8859-2/TextOV: locale for Slovak output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Zhrnutie', 'copyright notice' => 'Autorské práva', 'contents' => 'Obsah', 'chapter' => sub { return "Kapitola $_[0]" }, 'appendix' => sub { return "Dodatok $_[0]" }, 'section' => sub { return "Oddiel $_[0]" }, 'subsection' => sub { return "Oddiel $_[0]" }, 'subsubsection' => sub { return "Oddiel $_[0]" }, 'paragraph' => sub { return "Oddiel $_[0]" }, 'subparagraph' => sub { return "Oddiel $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ja_JP.eucJP/0000775000175000017500000000000011655740662020621 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/ja_JP.eucJP/Text0000664000175000017500000000151611655740662021473 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ja_JP.eucJP/Text: locale for Japanese output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => '³µÍ×', 'copyright notice' => 'Ãøºî¸¢É½¼¨', 'contents' => 'Ìܼ¡', 'chapter' => sub { return "Âè $_[0] ¾Ï" }, 'appendix' => sub { return "Êä°ä $_[0]" }, 'section' => sub { return "Âè $_[0] Àá" }, 'subsection' => sub { return "Âè $_[0] Àá" }, 'subsubsection' => sub { return "Âè $_[0] Àá" }, 'paragraph' => sub { return "Âè $_[0] Àá" }, 'subparagraph' => sub { return "Âè $_[0] Àá" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ja_JP.eucJP/HTML0000664000175000017500000000172611655740662021316 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ja_JP.eucJP/HTML: locale for Japanese output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'euc-jp', 'abstract' => '³µÍ×', 'copyright notice' => 'Ãøºî¸¢É½¼¨', 'contents' => 'Ìܼ¡', 'chapter' => sub { return "Âè $_[0] ¾Ï" }, 'appendix' => sub { return "Êä°ä $_[0]" }, 'section' => sub { return "Âè $_[0] Àá" }, 'subsection' => sub { return "Âè $_[0] Àá" }, 'subsubsection' => sub { return "Âè $_[0] Àá" }, 'paragraph' => sub { return "Âè $_[0] Àá" }, 'subparagraph' => sub { return "Âè $_[0] Àá" }, 'footnotes' => 'Ãí', 'comments' => 'Comments', 'next' => '¼¡¤Î¥Ú¡¼¥¸', 'previous' => 'Á°¤Î¥Ú¡¼¥¸', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ja_JP.eucJP/LaTeX0000664000175000017500000000242311655740662021522 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ja_JP.eucJP/LaTeX2e: locale for Japanese output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => '', 'inputenc' => '', 'abstract' => '³µÍ×', 'copyright notice' => 'Ãøºî¸¢É½¼¨', 'before begin document' => '\\usepackage{CJK} \\usepackage{indentfirst}', 'after begin document' => '\\begin{CJK}[dnp]{JIS}{min} \\renewcommand{\\vpageref}[1]{on page \\pageref{#1}} \\def\\prefacename{½ø} \\def\\refname{ʸ ¸¥} \\def\\abstractname{³µ Í×} \\def\\bibname{»²¹Íʸ¸¥} \\def\\chaptername{¾Ï} \\def\\appendixname{ÉÕ Ï¿} \\def\\contentsname{ÌÜ ¼¡} \\def\\listfigurename{¿Þ ÌÜ ¼¡} \\def\\listtablename{ɽ ÌÜ ¼¡} \\def\\indexname{º÷ °ú} \\def\\figurename{¿Þ} \\def\\tablename{ɽ} \\def\\partname{Éô} \\def\\enclname{encl} \\def\\ccname{cc} \\def\\headtoname{¤Ø} \\def\\pagename{ÊÇ} \\def\\seename{»²¾È} \\def\\alsoname{»²¾È} \\def\\proofname{¾ÚÌÀ} \\def\\glossaryname{ÍѸ콸}', 'before end document' => '\\clearpage \\end{CJK}', 'pdfhyperref' => 'CJKbookmarks' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ja_JP.eucJP/Texinfo0000664000175000017500000000155711655740662022170 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ja_JP.eucJP/Texinfo: locale for Japanese output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'The Detailed Node Listing', 'chapter' => sub { return "$BBh(B $_[0] $B>O(B" }, 'appendix' => sub { return "$BJd0d(B $_[0]" }, 'section' => sub { return "$BBh(B $_[0] $B@a(B" }, 'subsection' => sub { return "$BBh(B $_[0] $B@a(B" }, 'subsubsection' => sub { return "$BBh(B $_[0] $B@a(B" }, 'paragraph' => sub { return "$BBh(B $_[0] $B@a(B" }, 'subparagraph' => sub { return "$BBh(B $_[0] $B@a(B" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ja_JP.eucJP/TextOV0000664000175000017500000000152511655740662021740 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ja_JP.eucJP/TextOV: locale for Japanese output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => '³µÍ×', 'copyright notice' => 'Ãøºî¸¢É½¼¨', 'contents' => 'Ìܼ¡', 'chapter' => sub { return "Âè $_[0] ¾Ï" }, 'appendix' => sub { return "Êä°ä $_[0]" }, 'section' => sub { return "Âè $_[0] Àá" }, 'subsection' => sub { return "Âè $_[0] Àá" }, 'subsubsection' => sub { return "Âè $_[0] Àá" }, 'paragraph' => sub { return "Âè $_[0] Àá" }, 'subparagraph' => sub { return "Âè $_[0] Àá" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/zh_CN.GB2312/0000775000175000017500000000000011655740662020431 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/zh_CN.GB2312/Text0000664000175000017500000000152111655740662021277 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/zh_CN.GB2312/Text: locale for Chinese (GB) output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'ÕªÒª', 'copyright notice' => '°æÈ¨ÉùÃ÷', 'contents' => 'Ŀ¼', 'chapter' => sub { return "µÚ $_[0] ÕÂ" }, 'appendix' => sub { return "¸½Â¼ $_[0]" }, 'section' => sub { return "µÚ $_[0] ½Ú" }, 'subsection' => sub { return "µÚ $_[0] ½Ú" }, 'subsubsection' => sub { return "µÚ $_[0] ½Ú" }, 'paragraph' => sub { return "µÚ $_[0] ½Ú" }, 'subparagraph' => sub { return "µÚ $_[0] ½Ú" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/zh_CN.GB2312/HTML0000664000175000017500000000172111655740662021121 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/zh_CN.GB2312/HTML: locale for Chinese (GB) output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'gb2312', 'abstract' => 'ÕªÒª', 'copyright notice' => '°æÈ¨ÉùÃ÷', 'contents' => 'Ŀ¼', 'chapter' => sub { return "µÚ $_[0] ÕÂ" }, 'appendix' => sub { return "¸½Â¼ $_[0]" }, 'section' => sub { return "µÚ $_[0] ½Ú" }, 'subsection' => sub { return "µÚ $_[0] ½Ú" }, 'subsubsection' => sub { return "µÚ $_[0] ½Ú" }, 'paragraph' => sub { return "µÚ $_[0] ½Ú" }, 'subparagraph' => sub { return "µÚ $_[0] ½Ú" }, 'footnotes' => '×¢', 'comments' => 'Comments', 'next' => 'ÏÂÒ»Ò³', 'previous' => 'ÉÏÒ»Ò³', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/zh_CN.GB2312/LaTeX0000664000175000017500000000131611655740662021332 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/zh_CN.GB2312/LaTeX2e: locale for Chinese (GB) output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => '', 'inputenc' => '', 'abstract' => 'ÕªÒª', 'copyright notice' => '°æÈ¨ÉùÃ÷', 'before begin document' => '\\usepackage{CJK}', 'after begin document' => '\\begin{CJK}{GB}{gbsn}', 'before end document' => '\\clearpage \\end{CJK}', 'pdfhyperref' => 'CJKbookmarks' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/zh_CN.GB2312/Texinfo0000664000175000017500000000142511655740662021772 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/zh_CN.GB2312/Texinfo: locale for Chinese (GB) output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'ÏêϸÁбí', 'chapter' => sub { return "µÚ $_[0] ÕÂ" }, 'appendix' => sub { return "¸½Â¼ $_[0]" }, 'section' => sub { return "µÚ $_[0] ½Ú" }, 'subsection' => sub { return "µÚ $_[0] ½Ú" }, 'subsubsection' => sub { return "µÚ $_[0] ½Ú" }, 'paragraph' => sub { return "µÚ $_[0] ½Ú" }, 'subparagraph' => sub { return "µÚ $_[0] ½Ú" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/zh_CN.GB2312/TextOV0000664000175000017500000000153011655740662021544 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/zh_CN.GB2312/TextOV: locale for Chinese (GB) output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'ÕªÒª', 'copyright notice' => '°æÈ¨ÉùÃ÷', 'contents' => 'Ŀ¼', 'chapter' => sub { return "µÚ $_[0] ÕÂ" }, 'appendix' => sub { return "¸½Â¼ $_[0]" }, 'section' => sub { return "µÚ $_[0] ½Ú" }, 'subsection' => sub { return "µÚ $_[0] ½Ú" }, 'subsubsection' => sub { return "µÚ $_[0] ½Ú" }, 'paragraph' => sub { return "µÚ $_[0] ½Ú" }, 'subparagraph' => sub { return "µÚ $_[0] ½Ú" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/lt_LT.ISO8859-13/0000775000175000017500000000000011655740662021057 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/lt_LT.ISO8859-13/Text0000664000175000017500000000156211655740662021732 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/lt_LT.ISO8859-13/Text: locale for Lithuanian output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Santrauka', 'copyright notice' => 'Autorinës teisës', 'contents' => 'Turinys', 'chapter' => sub { return "$_[0] skyrius" }, 'appendix' => sub { return "Priedas $_[0]" }, 'section' => sub { return "$_[0] skyrius" }, 'subsection' => sub { return "$_[0] skyrius" }, 'subsubsection' => sub { return "$_[0] skyrius" }, 'paragraph' => sub { return "$_[0] skyrius" }, 'subparagraph' => sub { return "$_[0] skyrius" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/lt_LT.ISO8859-13/HTML0000664000175000017500000000200211655740662021540 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/lt_LT.ISO8859-13/HTML: locale for Lithuanian output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-13', 'abstract' => 'Santrauka', 'copyright notice' => 'Autorinës teisës', 'contents' => 'Turinys', 'chapter' => sub { return "$_[0] skyrius" }, 'appendix' => sub { return "Priedas $_[0]" }, 'section' => sub { return "$_[0] skyrius" }, 'subsection' => sub { return "$_[0] skyrius" }, 'subsubsection' => sub { return "$_[0] skyrius" }, 'paragraph' => sub { return "$_[0] skyrius" }, 'subparagraph' => sub { return "$_[0] skyrius" }, 'footnotes' => 'Iðnaðos', 'comments' => 'Pastabos', 'next' => 'tolesnis', 'previous' => 'ankstesnis', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/lt_LT.ISO8859-13/LaTeX0000664000175000017500000000134111655740662021756 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/lt_LT.ISO8859-13/LaTeX2e: locale for Lithuanian output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => '', 'inputenc' => 'latin7', 'abstract' => 'Santrauka', 'copyright notice' => 'Autorinës teisës', 'before begin document' => '\\usepackage[lithuanian]{babel}\\usepackage[L7x]{fontenc}', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/lt_LT.ISO8859-13/Texinfo0000664000175000017500000000146611655740662022425 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/lt_LT.ISO8859-13/Texinfo: locale for Lithuanian output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'Detalus elementø sàraðas', 'chapter' => sub { return "$_[0] skyrius" }, 'appendix' => sub { return "Priedas $_[0]" }, 'section' => sub { return "$_[0] skyrius" }, 'subsection' => sub { return "$_[0] skyrius" }, 'subsubsection' => sub { return "$_[0] skyrius" }, 'paragraph' => sub { return "$_[0] skyrius" }, 'subparagraph' => sub { return "$_[0] skyrius" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/lt_LT.ISO8859-13/TextOV0000664000175000017500000000157111655740662022177 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/lt_LT.ISO8859-13/TextOV: locale for Lithuanian output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Santrauka', 'copyright notice' => 'Autorinës teisës', 'contents' => 'Turinys', 'chapter' => sub { return "$_[0] skyrius" }, 'appendix' => sub { return "Priedas $_[0]" }, 'section' => sub { return "$_[0] skyrius" }, 'subsection' => sub { return "$_[0] skyrius" }, 'subsubsection' => sub { return "$_[0] skyrius" }, 'paragraph' => sub { return "$_[0] skyrius" }, 'subparagraph' => sub { return "$_[0] skyrius" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sl_SI.UTF-8/0000775000175000017500000000000011655740662020444 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/sl_SI.UTF-8/Text0000664000175000017500000000155511655740662021321 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sl_SI.UTF-8/Text: locale for Slovenian output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Povzetek', 'copyright notice' => 'Opomba o avtorskih pravicah', 'contents' => 'Vsebina', 'chapter' => sub { return "Poglavje $_[0]" }, 'appendix' => sub { return "Dodatek $_[0]" }, 'section' => sub { return "Odsek $_[0]" }, 'subsection' => sub { return "Odsek $_[0]" }, 'subsubsection' => sub { return "Odsek $_[0]" }, 'paragraph' => sub { return "Odsek $_[0]" }, 'subparagraph' => sub { return "Odsek $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sl_SI.UTF-8/HTML0000664000175000017500000000177211655740662021142 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sl_SI.UTF-8/HTML: locale for Slovenian output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'Povzetek', 'copyright notice' => 'Opomba o avtorskih pravicah', 'contents' => 'Vsebina', 'chapter' => sub { return "Poglavje $_[0]" }, 'appendix' => sub { return "Dodatek $_[0]" }, 'section' => sub { return "Odsek $_[0]" }, 'subsection' => sub { return "Odsek $_[0]" }, 'subsubsection' => sub { return "Odsek $_[0]" }, 'paragraph' => sub { return "Odsek $_[0]" }, 'subparagraph' => sub { return "Odsek $_[0]" }, 'footnotes' => 'NoĹžne opombe', 'comments' => 'Komentarji', 'next' => 'naprej', 'previous' => 'nazaj', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sl_SI.UTF-8/LaTeX0000664000175000017500000000125311655740662021345 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sl_SI.UTF-8/LaTeX2e: locale for Slovenian output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'slovene', 'inputenc' => 'utf8x', 'abstract' => 'Povzetek', 'copyright notice' => 'Opomba o avtorskih pravicah', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sl_SI.UTF-8/Texinfo0000664000175000017500000000145511655740662022010 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/en_US.ISO8859-2/Texinfo: locale for Slovenian output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'Podrobni izpis vozliĹÄÂ', 'chapter' => sub { return "Poglavje $_[0]" }, 'appendix' => sub { return "Dodatek $_[0]" }, 'section' => sub { return "Odsek $_[0]" }, 'subsection' => sub { return "Odsek $_[0]" }, 'subsubsection' => sub { return "Odsek $_[0]" }, 'paragraph' => sub { return "Odsek $_[0]" }, 'subparagraph' => sub { return "Odsek $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sl_SI.UTF-8/TextOV0000664000175000017500000000156411655740662021566 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sl_SI.UTF-8/TextOV: locale for Slovenian output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Povzetek', 'copyright notice' => 'Opomba o avtorskih pravicah', 'contents' => 'Vsebina', 'chapter' => sub { return "Poglavje $_[0]" }, 'appendix' => sub { return "Dodatek $_[0]" }, 'section' => sub { return "Odsek $_[0]" }, 'subsection' => sub { return "Odsek $_[0]" }, 'subsubsection' => sub { return "Odsek $_[0]" }, 'paragraph' => sub { return "Odsek $_[0]" }, 'subparagraph' => sub { return "Odsek $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fr_FR.ISO8859-15/0000775000175000017500000000000011655740662021041 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/fr_FR.ISO8859-15/Text0000664000175000017500000000155711655740662021720 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fr_FR.ISO8859-15/Text: locale for French output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Résumé', 'copyright notice' => 'Copyright', 'contents' => 'Table des matières', 'chapter' => sub { return "Chapitre $_[0]" }, 'appendix' => sub { return "Annexe $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fr_FR.ISO8859-15/HTML0000664000175000017500000000201211655740662021523 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fr_FR.ISO8859-15/HTML: locale for French output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-15', 'abstract' => 'Résumé', 'copyright notice' => 'Copyright', 'contents' => 'Table des matières', 'chapter' => sub { return "Chapitre $_[0]" }, 'appendix' => sub { return "Annexe $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, 'footnotes' => 'Notes de bas de page', 'comments' => 'Comments', 'next' => 'suivant', 'previous' => 'précédent', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fr_FR.ISO8859-15/LaTeX0000664000175000017500000000123111655740662021736 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fr_FR.ISO8859-15/LaTeX2e: locale for French output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'french', 'inputenc' => 'latin9', 'abstract' => 'Résumé', 'copyright notice' => 'Copyright', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fr_FR.ISO8859-15/Texinfo0000664000175000017500000000146611655740662022407 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fr_FR.ISO8859-15/Texinfo: locale for French output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'Table des matières détaillée', 'chapter' => sub { return "Chapitre $_[0]" }, 'appendix' => sub { return "Annexe $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fr_FR.ISO8859-15/TextOV0000664000175000017500000000156611655740662022165 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fr_FR.ISO8859-15/TextOV: locale for French output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Résumé', 'copyright notice' => 'Copyright', 'contents' => 'Table des matières', 'chapter' => sub { return "Chapitre $_[0]" }, 'appendix' => sub { return "Annexe $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/hr_HR.ISO8859-2/0000775000175000017500000000000011655740662020761 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/hr_HR.ISO8859-2/Text0000664000175000017500000000160211655740662021627 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/hr_HR.ISO8859-2/Text: locale for Croatian output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Sa¾etak', 'copyright notice' => 'Obavijest o autorskim pravima', 'contents' => 'Sadr¾aj', 'chapter' => sub { return "Glava $_[0]" }, 'appendix' => sub { return "Dodatak $_[0]" }, 'section' => sub { return "Poglavlje $_[0]" }, 'subsection' => sub { return "Poglavlje $_[0]" }, 'subsubsection' => sub { return "Poglavlje $_[0]" }, 'paragraph' => sub { return "Poglavlje $_[0]" }, 'subparagraph' => sub { return "Poglavlje $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/hr_HR.ISO8859-2/HTML0000664000175000017500000000201311655740662021444 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/hr_HR.ISO8859-2/HTML: locale for Croatian output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-2', 'abstract' => 'Sa¾etak', 'copyright notice' => 'Obavijest o autorskim pravima', 'contents' => 'Sadr¾aj', 'chapter' => sub { return "Glava $_[0]" }, 'appendix' => sub { return "Dodatak $_[0]" }, 'section' => sub { return "Poglavlje $_[0]" }, 'subsection' => sub { return "Poglavlje $_[0]" }, 'subsubsection' => sub { return "Poglavlje $_[0]" }, 'paragraph' => sub { return "Poglavlje $_[0]" }, 'subparagraph' => sub { return "Poglavlje $_[0]" }, 'footnotes' => 'Bilje¹ke', 'comments' => 'Comments', 'next' => 'dalje', 'previous' => 'natrag', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/hr_HR.ISO8859-2/LaTeX0000664000175000017500000000126111655740662021661 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/hr_HR.ISO8859-2/LaTeX2e: locale for Croatian output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'croatian', 'inputenc' => 'latin2', 'abstract' => 'Sa¾etak', 'copyright notice' => 'Obavijest o autorskim pravima', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/hr_HR.ISO8859-2/Texinfo0000664000175000017500000000147111655740662022323 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/hr_HR.ISO8859-2/Texinfo: locale for Croatian output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'Detaljni popis èvorova', 'chapter' => sub { return "Glava $_[0]" }, 'appendix' => sub { return "Dodatak $_[0]" }, 'section' => sub { return "Poglavlje $_[0]" }, 'subsection' => sub { return "Poglavlje $_[0]" }, 'subsubsection' => sub { return "Poglavlje $_[0]" }, 'paragraph' => sub { return "Poglavlje $_[0]" }, 'subparagraph' => sub { return "Poglavlje $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/hr_HR.ISO8859-2/TextOV0000664000175000017500000000161111655740662022074 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/hr_HR.ISO8859-2/TextOV: locale for Croatian output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Sa¾etak', 'copyright notice' => 'Obavijest o autorskim pravima', 'contents' => 'Sadr¾aj', 'chapter' => sub { return "Glava $_[0]" }, 'appendix' => sub { return "Dodatak $_[0]" }, 'section' => sub { return "Poglavlje $_[0]" }, 'subsection' => sub { return "Poglavlje $_[0]" }, 'subsubsection' => sub { return "Poglavlje $_[0]" }, 'paragraph' => sub { return "Poglavlje $_[0]" }, 'subparagraph' => sub { return "Poglavlje $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/de_DE.ISO8859-15/0000775000175000017500000000000011655740662021003 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/de_DE.ISO8859-15/Text0000664000175000017500000000157511655740662021662 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/de_DE.ISO8859-15/Text: locale for German output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Zusammenfassung', 'copyright notice' => 'Copyright-Hinweis', 'contents' => 'Inhalt', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Anhang $_[0]" }, 'section' => sub { return "Abschnitt $_[0]" }, 'subsection' => sub { return "Abschnitt $_[0]" }, 'subsubsection' => sub { return "Abschnitt $_[0]" }, 'paragraph' => sub { return "Abschnitt $_[0]" }, 'subparagraph' => sub { return "Abschnitt $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/de_DE.ISO8859-15/HTML0000664000175000017500000000201011655740662021463 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/de_DE.ISO8859-15/HTML: locale for German output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-15', 'abstract' => 'Zusammenfassung', 'copyright notice' => 'Copyright-Hinweis', 'contents' => 'Inhalt', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Anhang $_[0]" }, 'section' => sub { return "Abschnitt $_[0]" }, 'subsection' => sub { return "Abschnitt $_[0]" }, 'subsubsection' => sub { return "Abschnitt $_[0]" }, 'paragraph' => sub { return "Abschnitt $_[0]" }, 'subparagraph' => sub { return "Abschnitt $_[0]" }, 'footnotes' => 'Fußnoten', 'comments' => 'Comments', 'next' => 'weiter', 'previous' => 'zurück', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/de_DE.ISO8859-15/LaTeX0000664000175000017500000000125311655740662021704 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/de_DE.ISO8859-15/LaTeX2e: locale for German output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'ngerman', 'inputenc' => 'latin9', 'abstract' => 'Zusammenfassung', 'copyright notice' => 'Copyright-Hinweis', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/de_DE.ISO8859-15/Texinfo0000664000175000017500000000147411655740662022350 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/de_DE.ISO8859-15/Texinfo: locale for German output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'The Detailed Node Listing', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Anhang $_[0]" }, 'section' => sub { return "Abschnitt $_[0]" }, 'subsection' => sub { return "Abschnitt $_[0]" }, 'subsubsection' => sub { return "Abschnitt $_[0]" }, 'paragraph' => sub { return "Abschnitt $_[0]" }, 'subparagraph' => sub { return "Abschnitt $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/de_DE.ISO8859-15/TextOV0000664000175000017500000000160411655740662022120 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/de_DE.ISO8859-15/TextOV: locale for German output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Zusammenfassung', 'copyright notice' => 'Copyright-Hinweis', 'contents' => 'Inhalt', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Anhang $_[0]" }, 'section' => sub { return "Abschnitt $_[0]" }, 'subsection' => sub { return "Abschnitt $_[0]" }, 'subsubsection' => sub { return "Abschnitt $_[0]" }, 'paragraph' => sub { return "Abschnitt $_[0]" }, 'subparagraph' => sub { return "Abschnitt $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ko_KR.UTF-8/0000775000175000017500000000000011655740662020440 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/ko_KR.UTF-8/Text0000664000175000017500000000146311655740662021313 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ko_KR.UTF-8/Text: locale for Korean output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => '요약', 'copyright notice' => '저작권', 'contents' => '차례', 'chapter' => sub { return " $_[0]" }, 'appendix' => sub { return "ë¶€ë¡ $_[0]" }, 'section' => sub { return " $_[0]" }, 'subsection' => sub { return " $_[0]" }, 'subsubsection' => sub { return " $_[0]" }, 'paragraph' => sub { return " $_[0]" }, 'subparagraph' => sub { return " $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ko_KR.UTF-8/HTML0000664000175000017500000000166111655740662021133 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ko_KR.UTF-8/HTML: locale for Korean output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => '요약', 'copyright notice' => '저작권', 'contents' => '차례', 'chapter' => sub { return " $_[0]" }, 'appendix' => sub { return "ë¶€ë¡ $_[0]" }, 'section' => sub { return " $_[0]" }, 'subsection' => sub { return " $_[0]" }, 'subsubsection' => sub { return " $_[0]" }, 'paragraph' => sub { return " $_[0]" }, 'subparagraph' => sub { return " $_[0]" }, 'footnotes' => 'ê°ì£¼', 'comments' => '주', 'next' => '다ìŒ', 'previous' => 'ì´ì „', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ko_KR.UTF-8/LaTeX0000664000175000017500000000121511655740662021337 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ko_KR.UTF-8/LaTeX2e: locale for Korean output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => '', 'inputenc' => 'utf8x', 'abstract' => '요약', 'copyright notice' => '저작권', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ko_KR.UTF-8/Texinfo0000664000175000017500000000140311655740662021775 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ko_KR.UTF-8/Texinfo: locale for Korean output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'The Detailed Node Listing', 'chapter' => sub { return " $_[0]" }, 'appendix' => sub { return "ë¶€ë¡ $_[0]" }, 'section' => sub { return " $_[0]" }, 'subsection' => sub { return " $_[0]" }, 'subsubsection' => sub { return " $_[0]" }, 'paragraph' => sub { return " $_[0]" }, 'subparagraph' => sub { return " $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ko_KR.UTF-8/TextOV0000664000175000017500000000147211655740662021560 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ko_KR.UTF-8/TextOV: locale for Korean output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => '요약', 'copyright notice' => '저작권', 'contents' => '차례', 'chapter' => sub { return " $_[0]" }, 'appendix' => sub { return "ë¶€ë¡ $_[0]" }, 'section' => sub { return " $_[0]" }, 'subsection' => sub { return " $_[0]" }, 'subsubsection' => sub { return " $_[0]" }, 'paragraph' => sub { return " $_[0]" }, 'subparagraph' => sub { return " $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/zh_CN.UTF-8/0000775000175000017500000000000011655740662020434 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/zh_CN.UTF-8/Text0000664000175000017500000000154611655740662021311 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/zh_CN.UTF-8/Text: locale for Chinese (GB) output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => '摘è¦', 'copyright notice' => '版æƒå£°æ˜Ž', 'contents' => '目录', 'chapter' => sub { return "第 $_[0] ç« " }, 'appendix' => sub { return "附录 $_[0]" }, 'section' => sub { return "第 $_[0] 节" }, 'subsection' => sub { return "第 $_[0] 节" }, 'subsubsection' => sub { return "第 $_[0] 节" }, 'paragraph' => sub { return "第 $_[0] 节" }, 'subparagraph' => sub { return "第 $_[0] 节" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/zh_CN.UTF-8/HTML0000664000175000017500000000175411655740662021132 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/zh_CN.UTF-8/HTML: locale for Chinese (GB) output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => '摘è¦', 'copyright notice' => '版æƒå£°æ˜Ž', 'contents' => '目录', 'chapter' => sub { return "第 $_[0] ç« " }, 'appendix' => sub { return "附录 $_[0]" }, 'section' => sub { return "第 $_[0] 节" }, 'subsection' => sub { return "第 $_[0] 节" }, 'subsubsection' => sub { return "第 $_[0] 节" }, 'paragraph' => sub { return "第 $_[0] 节" }, 'subparagraph' => sub { return "第 $_[0] 节" }, 'footnotes' => '注', 'comments' => 'Comments', 'next' => '下一页', 'previous' => '上一页', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/zh_CN.UTF-8/LaTeX0000664000175000017500000000132611655740662021336 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/zh_CN.UTF-8/LaTeX2e: locale for Chinese (GB) output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => '', 'inputenc' => '', 'abstract' => '摘è¦', 'copyright notice' => '版æƒå£°æ˜Ž', 'before begin document' => '\\usepackage{CJKutf8}', 'after begin document' => '\\begin{CJK*}{UTF8}{gbsn}', 'before end document' => '\\clearpage \\end{CJK*}', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/zh_CN.UTF-8/Texinfo0000664000175000017500000000144611655740662022000 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/zh_CN.UTF-8/Texinfo: locale for Chinese (GB) output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => '详细列表', 'chapter' => sub { return "第 $_[0] ç« " }, 'appendix' => sub { return "附录 $_[0]" }, 'section' => sub { return "第 $_[0] 节" }, 'subsection' => sub { return "第 $_[0] 节" }, 'subsubsection' => sub { return "第 $_[0] 节" }, 'paragraph' => sub { return "第 $_[0] 节" }, 'subparagraph' => sub { return "第 $_[0] 节" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/zh_CN.UTF-8/TextOV0000664000175000017500000000155511655740662021556 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/zh_CN.UTF-8/TextOV: locale for Chinese (GB) output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => '摘è¦', 'copyright notice' => '版æƒå£°æ˜Ž', 'contents' => '目录', 'chapter' => sub { return "第 $_[0] ç« " }, 'appendix' => sub { return "附录 $_[0]" }, 'section' => sub { return "第 $_[0] 节" }, 'subsection' => sub { return "第 $_[0] 节" }, 'subsubsection' => sub { return "第 $_[0] 节" }, 'paragraph' => sub { return "第 $_[0] 节" }, 'subparagraph' => sub { return "第 $_[0] 节" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/it_IT.UTF-8/0000775000175000017500000000000011655740662020443 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/it_IT.UTF-8/Text0000664000175000017500000000156111655740662021315 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/it_IT.UTF-8/Text: locale for Italian output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Estratto', 'copyright notice' => 'Avviso di Copyright', 'contents' => 'Contenuti', 'chapter' => sub { return "Capitolo $_[0]" }, 'appendix' => sub { return "Appendice $_[0]" }, 'section' => sub { return "Sezione $_[0]" }, 'subsection' => sub { return "Sezione $_[0]" }, 'subsubsection' => sub { return "Sezione $_[0]" }, 'paragraph' => sub { return "Sezione $_[0]" }, 'subparagraph' => sub { return "Sezione $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/it_IT.UTF-8/HTML0000664000175000017500000000202111655740662021125 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/it_IT.UTF-8/HTML: locale for Italian output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'Estratto', 'copyright notice' => 'Avviso di Copyright', 'contents' => 'Contenuti', 'chapter' => sub { return "Capitolo $_[0]" }, 'appendix' => sub { return "Appendice $_[0]" }, 'section' => sub { return "Sezione $_[0]" }, 'subsection' => sub { return "Sezione $_[0]" }, 'subsubsection' => sub { return "Sezione $_[0]" }, 'paragraph' => sub { return "Sezione $_[0]" }, 'subparagraph' => sub { return "Sezione $_[0]" }, 'footnotes' => 'Nota a pié di pagina', 'comments' => 'Comments', 'next' => 'successivo', 'previous' => 'precedente', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/it_IT.UTF-8/LaTeX0000664000175000017500000000124111655740662021341 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/it_IT.UTF-8/LaTeX2e: locale for Italian output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'italian', 'inputenc' => 'utf8x', 'abstract' => 'Estratto', 'copyright notice' => 'Avviso di Copyright', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/it_IT.UTF-8/Texinfo0000664000175000017500000000146711655740662022012 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/it_IT.UTF-8/Texinfo: locale for Italian output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'L\'Elenco dettagliato dei nodi', 'chapter' => sub { return "Capitolo $_[0]" }, 'appendix' => sub { return "Appendice $_[0]" }, 'section' => sub { return "Sezione $_[0]" }, 'subsection' => sub { return "Sezione $_[0]" }, 'subsubsection' => sub { return "Sezione $_[0]" }, 'paragraph' => sub { return "Sezione $_[0]" }, 'subparagraph' => sub { return "Sezione $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/it_IT.UTF-8/TextOV0000664000175000017500000000157011655740662021562 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/it_IT.UTF-8/TextOV: locale for Italian output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Estratto', 'copyright notice' => 'Avviso di Copyright', 'contents' => 'Contenuti', 'chapter' => sub { return "Capitolo $_[0]" }, 'appendix' => sub { return "Appendice $_[0]" }, 'section' => sub { return "Sezione $_[0]" }, 'subsection' => sub { return "Sezione $_[0]" }, 'subsubsection' => sub { return "Sezione $_[0]" }, 'paragraph' => sub { return "Sezione $_[0]" }, 'subparagraph' => sub { return "Sezione $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/it_IT.ISO8859-1/0000775000175000017500000000000011655740662020766 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/it_IT.ISO8859-1/Text0000664000175000017500000000156511655740662021644 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/it_IT.ISO8859-1/Text: locale for Italian output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Estratto', 'copyright notice' => 'Avviso di Copyright', 'contents' => 'Contenuti', 'chapter' => sub { return "Capitolo $_[0]" }, 'appendix' => sub { return "Appendice $_[0]" }, 'section' => sub { return "Sezione $_[0]" }, 'subsection' => sub { return "Sezione $_[0]" }, 'subsubsection' => sub { return "Sezione $_[0]" }, 'paragraph' => sub { return "Sezione $_[0]" }, 'subparagraph' => sub { return "Sezione $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/it_IT.ISO8859-1/HTML0000664000175000017500000000203211655740662021452 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/it_IT.ISO8859-1/HTML: locale for Italian output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-1', 'abstract' => 'Estratto', 'copyright notice' => 'Avviso di Copyright', 'contents' => 'Contenuti', 'chapter' => sub { return "Capitolo $_[0]" }, 'appendix' => sub { return "Appendice $_[0]" }, 'section' => sub { return "Sezione $_[0]" }, 'subsection' => sub { return "Sezione $_[0]" }, 'subsubsection' => sub { return "Sezione $_[0]" }, 'paragraph' => sub { return "Sezione $_[0]" }, 'subparagraph' => sub { return "Sezione $_[0]" }, 'footnotes' => 'Nota a pié di pagina', 'comments' => 'Comments', 'next' => 'successivo', 'previous' => 'precedente', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/it_IT.ISO8859-1/LaTeX0000664000175000017500000000124611655740662021671 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/it_IT.ISO8859-1/LaTeX2e: locale for Italian output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'italian', 'inputenc' => 'latin1', 'abstract' => 'Estratto', 'copyright notice' => 'Avviso di Copyright', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/it_IT.ISO8859-1/Texinfo0000664000175000017500000000147311655740662022332 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/it_IT.ISO8859-1/Texinfo: locale for Italian output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'L\'Elenco dettagliato dei nodi', 'chapter' => sub { return "Capitolo $_[0]" }, 'appendix' => sub { return "Appendice $_[0]" }, 'section' => sub { return "Sezione $_[0]" }, 'subsection' => sub { return "Sezione $_[0]" }, 'subsubsection' => sub { return "Sezione $_[0]" }, 'paragraph' => sub { return "Sezione $_[0]" }, 'subparagraph' => sub { return "Sezione $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/it_IT.ISO8859-1/TextOV0000664000175000017500000000157411655740662022111 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/it_IT.ISO8859-1/TextOV: locale for Italian output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Estratto', 'copyright notice' => 'Avviso di Copyright', 'contents' => 'Contenuti', 'chapter' => sub { return "Capitolo $_[0]" }, 'appendix' => sub { return "Appendice $_[0]" }, 'section' => sub { return "Sezione $_[0]" }, 'subsection' => sub { return "Sezione $_[0]" }, 'subsubsection' => sub { return "Sezione $_[0]" }, 'paragraph' => sub { return "Sezione $_[0]" }, 'subparagraph' => sub { return "Sezione $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ru_RU.KOI8-R/0000775000175000017500000000000011655740662020575 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/ru_RU.KOI8-R/Text0000664000175000017500000000156611655740662021454 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ru_RU.KOI8-R/Text: locale for Russian output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'áÎÎÏÔÁÃÉÑ', 'copyright notice' => 'ó×ÅÄÅÎÉÑ Ï Á×ÔÏÒÓËÉÈ ÐÒÁ×ÁÈ', 'contents' => 'óÏÄÅÒÖÁÎÉÅ', 'chapter' => sub { return "çÌÁ×Á $_[0]" }, 'appendix' => sub { return "ðÒÉÌÏÖÅÎÉÅ $_[0]" }, 'section' => sub { return "ÒÁÚÄÅÌ $_[0]" }, 'subsection' => sub { return "ÒÁÚÄÅÌ $_[0]" }, 'subsubsection' => sub { return "ÒÁÚÄÅÌ $_[0]" }, 'paragraph' => sub { return "ÒÁÚÄÅÌ $_[0]" }, 'subparagraph' => sub { return "ÒÁÚÄÅÌ $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ru_RU.KOI8-R/HTML0000664000175000017500000000177411655740662021275 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ru_RU.KOI8-R/HTML: locale for Russian output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'koi8-r', 'abstract' => 'áÎÎÏÔÁÃÉÑ', 'copyright notice' => 'ó×ÅÄÅÎÉÑ Ï Á×ÔÏÒÓËÉÈ ÐÒÁ×ÁÈ', 'contents' => 'óÏÄÅÒÖÁÎÉÅ', 'chapter' => sub { return "çÌÁ×Á $_[0]" }, 'appendix' => sub { return "ðÒÉÌÏÖÅÎÉÅ $_[0]" }, 'section' => sub { return "ÒÁÚÄÅÌ $_[0]" }, 'subsection' => sub { return "ÒÁÚÄÅÌ $_[0]" }, 'subsubsection' => sub { return "ÒÁÚÄÅÌ $_[0]" }, 'paragraph' => sub { return "ÒÁÚÄÅÌ $_[0]" }, 'subparagraph' => sub { return "ÒÁÚÄÅÌ $_[0]" }, 'footnotes' => 'óÎÏÓËÉ', 'comments' => 'ëÏÍÍÅÎÔÁÒÉÉ', 'next' => '×ÐÅÒÅÄ', 'previous' => 'ÎÁÚÁÄ', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ru_RU.KOI8-R/LaTeX0000664000175000017500000000134111655740662021474 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ru_RU.KOI8-R/LaTeX2e: locale for Russian output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'russian', 'inputenc' => 'koi8-r', 'abstract' => 'áÎÎÏÔÁÃÉÑ', 'copyright notice' => 'ó×ÅÄÅÎÉÑ Ï Á×ÔÏÒÓËÉÈ ÐÒÁ×ÁÈ', 'before begin document' => '', 'after begin document' => '\\renewcommand{\\vpageref}[1]{ÎÁ ÓÔÒ. \\pageref{#1}}', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ru_RU.KOI8-R/Texinfo0000664000175000017500000000146611655740662022143 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ru_RU.KOI8-R/Texinfo: locale for Russian output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'ðÏÄÒÏÂÎÏÅ ÏÐÉÓÁÎÉÅ ÜÌÅÍÅÎÔÏ× ÓÐÉÓËÁ', 'chapter' => sub { return "çÌÁ×Á $_[0]" }, 'appendix' => sub { return "ðÒÉÌÏÖÅÎÉÅ $_[0]" }, 'section' => sub { return "ÒÁÚÄÅÌ $_[0]" }, 'subsection' => sub { return "ÒÁÚÄÅÌ $_[0]" }, 'subsubsection' => sub { return "ÒÁÚÄÅÌ $_[0]" }, 'paragraph' => sub { return "ÒÁÚÄÅÌ $_[0]" }, 'subparagraph' => sub { return "ÒÁÚÄÅÌ $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ru_RU.KOI8-R/TextOV0000664000175000017500000000157511655740662021721 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ru_RU.KOI8-R/TextOV: locale for Russian output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'áÎÎÏÔÁÃÉÑ', 'copyright notice' => 'ó×ÅÄÅÎÉÑ Ï Á×ÔÏÒÓËÉÈ ÐÒÁ×ÁÈ', 'contents' => 'óÏÄÅÒÖÁÎÉÅ', 'chapter' => sub { return "çÌÁ×Á $_[0]" }, 'appendix' => sub { return "ðÒÉÌÏÖÅÎÉÅ $_[0]" }, 'section' => sub { return "ÒÁÚÄÅÌ $_[0]" }, 'subsection' => sub { return "ÒÁÚÄÅÌ $_[0]" }, 'subsubsection' => sub { return "ÒÁÚÄÅÌ $_[0]" }, 'paragraph' => sub { return "ÒÁÚÄÅÌ $_[0]" }, 'subparagraph' => sub { return "ÒÁÚÄÅÌ $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sk_SK.UTF-8/0000775000175000017500000000000011655740662020445 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/sk_SK.UTF-8/Text0000664000175000017500000000154111655740662021315 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sk_SK.UTF-8/Text: locale for Slovak output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Zhrnutie', 'copyright notice' => 'Autorské práva', 'contents' => 'Obsah', 'chapter' => sub { return "Kapitola $_[0]" }, 'appendix' => sub { return "Dodatok $_[0]" }, 'section' => sub { return "Oddiel $_[0]" }, 'subsection' => sub { return "Oddiel $_[0]" }, 'subsubsection' => sub { return "Oddiel $_[0]" }, 'paragraph' => sub { return "Oddiel $_[0]" }, 'subparagraph' => sub { return "Oddiel $_[0]" } ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sk_SK.UTF-8/HTML0000664000175000017500000000176611655740662021146 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sk_SK.UTF-8/HTML: locale for Slovak output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'Zhrnutie', 'copyright notice' => 'Autorské práva', 'contents' => 'Obsah', 'chapter' => sub { return "Kapitola $_[0]" }, 'appendix' => sub { return "Dodatok $_[0]" }, 'section' => sub { return "Oddiel $_[0]" }, 'subsection' => sub { return "Oddiel $_[0]" }, 'subsubsection' => sub { return "Oddiel $_[0]" }, 'paragraph' => sub { return "Oddiel $_[0]" }, 'subparagraph' => sub { return "Oddiel $_[0]" }, 'footnotes' => 'Poznámky', 'comments' => 'Komentáre', 'next' => 'Äaľší', 'previous' => 'predchádzajúci' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sk_SK.UTF-8/LaTeX0000664000175000017500000000123411655740662021345 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sk_SK.UTF-8/LaTeX2e: locale for Slovak output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'slovak', 'inputenc' => 'utf8x', 'abstract' => 'Zhrnutie', 'copyright notice' => 'Autorské práva', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sk_SK.UTF-8/Texinfo0000664000175000017500000000144011655740662022003 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sk_SK.UTF-8/Texinfo: locale for Slovak output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'Detailný výpis', 'chapter' => sub { return "Kapitola $_[0]" }, 'appendix' => sub { return "Dodatok $_[0]" }, 'section' => sub { return "Oddiel $_[0]" }, 'subsection' => sub { return "Oddiel $_[0]" }, 'subsubsection' => sub { return "Oddiel $_[0]" }, 'paragraph' => sub { return "Oddiel $_[0]" }, 'subparagraph' => sub { return "Oddiel $_[0]" } ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sk_SK.UTF-8/TextOV0000664000175000017500000000155011655740662021562 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sk_SK.UTF-8/TextOV: locale for Slovak output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Zhrnutie', 'copyright notice' => 'Autorské práva', 'contents' => 'Obsah', 'chapter' => sub { return "Kapitola $_[0]" }, 'appendix' => sub { return "Dodatok $_[0]" }, 'section' => sub { return "Oddiel $_[0]" }, 'subsection' => sub { return "Oddiel $_[0]" }, 'subsubsection' => sub { return "Oddiel $_[0]" }, 'paragraph' => sub { return "Oddiel $_[0]" }, 'subparagraph' => sub { return "Oddiel $_[0]" } ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/da_DK.UTF-8/0000775000175000017500000000000011655740662020375 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/da_DK.UTF-8/Text0000664000175000017500000000154211655740662021246 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/da_DK.UTF-8/Text: locale for Danish output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Opsummering', 'copyright notice' => 'Copyright', 'contents' => 'Indhold', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Bilag $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/da_DK.UTF-8/HTML0000664000175000017500000000175511655740662021074 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/da_DK.UTF-8/HTML: locale for Danish output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'Opsummering', 'copyright notice' => 'Copyright', 'contents' => 'Indhold', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Bilag $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, 'footnotes' => 'Fodnoter', 'comments' => 'Comments', 'next' => 'næste', 'previous' => 'tilbage', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/da_DK.UTF-8/LaTeX0000664000175000017500000000123011655740662021271 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/da_DK.UTF-8/LaTeX2e: locale for Danish output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'danish', 'inputenc' => 'utf8x', 'abstract' => 'Opsummering', 'copyright notice' => 'Copyright', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/da_DK.UTF-8/Texinfo0000664000175000017500000000145411655740662021740 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/da_DK.UTF-8/Texinfo: locale for Danish output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'The Detailed Node Listing', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Bilag $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/da_DK.UTF-8/TextOV0000664000175000017500000000155111655740662021513 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/da_DK.UTF-8/TextOV: locale for Danish output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Opsummering', 'copyright notice' => 'Copyright', 'contents' => 'Indhold', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Bilag $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/en_US.UTF-8/0000775000175000017500000000000011655740662020444 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/en_US.UTF-8/Text0000664000175000017500000000155311655740662021317 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/en_US.UTF-8/Text: locale for English output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Abstract', 'copyright notice' => 'Copyright Notice', 'contents' => 'Contents', 'chapter' => sub { return "Chapter $_[0]" }, 'appendix' => sub { return "Appendix $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/en_US.UTF-8/HTML0000664000175000017500000000176111655740662021140 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/en_US.UTF-8/HTML: locale for English output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'Abstract', 'copyright notice' => 'Copyright Notice', 'contents' => 'Contents', 'chapter' => sub { return "Chapter $_[0]" }, 'appendix' => sub { return "Appendix $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, 'footnotes' => 'Footnotes', 'comments' => 'Comments', 'next' => 'next', 'previous' => 'previous', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/en_US.UTF-8/LaTeX0000664000175000017500000000123611655740662021346 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/en_US.UTF-8/LaTeX2e: locale for English output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'english', 'inputenc' => 'utf8x', 'abstract' => 'Abstract', 'copyright notice' => 'Copyright Notice', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/en_US.UTF-8/Texinfo0000664000175000017500000000146011655740662022004 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/en_US.UTF-8/Texinfo: locale for English output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'The Detailed Node Listing', 'chapter' => sub { return "Chapter $_[0]" }, 'appendix' => sub { return "Appendix $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/en_US.UTF-8/TextOV0000664000175000017500000000156211655740662021564 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/en_US.UTF-8/TextOV: locale for English output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Abstract', 'copyright notice' => 'Copyright Notice', 'contents' => 'Contents', 'chapter' => sub { return "Chapter $_[0]" }, 'appendix' => sub { return "Appendix $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pl_PL.ISO8859-2/0000775000175000017500000000000011655740662020765 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/pl_PL.ISO8859-2/Text0000664000175000017500000000156611655740662021644 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pl_PL.ISO8859-2/Text: locale for Polish output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Streszczenie', 'copyright notice' => 'Prawa autorskie', 'contents' => 'Spis tre¶ci', 'chapter' => sub { return "Czê¶æ $_[0]" }, 'appendix' => sub { return "Dodatek $_[0]" }, 'section' => sub { return "Rozdzia³ $_[0]" }, 'subsection' => sub { return "Rozdzia³ $_[0]" }, 'subsubsection' => sub { return "Rozdzia³ $_[0]" }, 'paragraph' => sub { return "Rozdzia³ $_[0]" }, 'subparagraph' => sub { return "Rozdzia³ $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pl_PL.ISO8859-2/HTML0000664000175000017500000000200111655740662021445 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pl_PL.ISO8859-2/HTML: locale for Polish output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-2', 'abstract' => 'Streszczenie', 'copyright notice' => 'Prawa autorskie', 'contents' => 'Spis tre¶ci', 'chapter' => sub { return "Czê¶æ $_[0]" }, 'appendix' => sub { return "Dodatek $_[0]" }, 'section' => sub { return "Rozdzia³ $_[0]" }, 'subsection' => sub { return "Rozdzia³ $_[0]" }, 'subsubsection' => sub { return "Rozdzia³ $_[0]" }, 'paragraph' => sub { return "Rozdzia³ $_[0]" }, 'subparagraph' => sub { return "Rozdzia³ $_[0]" }, 'footnotes' => 'Przypisy', 'comments' => 'Komentarze', 'next' => 'dalej', 'previous' => 'powrót', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pl_PL.ISO8859-2/LaTeX0000664000175000017500000000124411655740662021666 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pl_PL.ISO8859-2/LaTeX2e: locale for Polish output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'polish', 'inputenc' => 'latin2', 'abstract' => 'Streszczenie', 'copyright notice' => 'Prawa autorskie', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pl_PL.ISO8859-2/Texinfo0000664000175000017500000000146411655740662022331 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pl_PL.ISO8859-2/Texinfo: locale for Polish output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'Szczegó³owa lista wêz³ów', 'chapter' => sub { return "Czê¶æ $_[0]" }, 'appendix' => sub { return "Dodatek $_[0]" }, 'section' => sub { return "Rozdzia³ $_[0]" }, 'subsection' => sub { return "Rozdzia³ $_[0]" }, 'subsubsection' => sub { return "Rozdzia³ $_[0]" }, 'paragraph' => sub { return "Rozdzia³ $_[0]" }, 'subparagraph' => sub { return "Rozdzia³ $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pl_PL.ISO8859-2/TextOV0000664000175000017500000000157511655740662022111 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pl_PL.ISO8859-2/TextOV: locale for Polish output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Streszczenie', 'copyright notice' => 'Prawa autorskie', 'contents' => 'Spis tre¶ci', 'chapter' => sub { return "Czê¶æ $_[0]" }, 'appendix' => sub { return "Dodatek $_[0]" }, 'section' => sub { return "Rozdzia³ $_[0]" }, 'subsection' => sub { return "Rozdzia³ $_[0]" }, 'subsubsection' => sub { return "Rozdzia³ $_[0]" }, 'paragraph' => sub { return "Rozdzia³ $_[0]" }, 'subparagraph' => sub { return "Rozdzia³ $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sl_SI.ISO8859-2/0000775000175000017500000000000011655740662020770 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/sl_SI.ISO8859-2/Text0000664000175000017500000000156111655740662021642 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sl_SI.ISO8859-2/Text: locale for Slovenian output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Povzetek', 'copyright notice' => 'Opomba o avtorskih pravicah', 'contents' => 'Vsebina', 'chapter' => sub { return "Poglavje $_[0]" }, 'appendix' => sub { return "Dodatek $_[0]" }, 'section' => sub { return "Odsek $_[0]" }, 'subsection' => sub { return "Odsek $_[0]" }, 'subsubsection' => sub { return "Odsek $_[0]" }, 'paragraph' => sub { return "Odsek $_[0]" }, 'subparagraph' => sub { return "Odsek $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sl_SI.ISO8859-2/HTML0000664000175000017500000000200111655740662021450 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sl_SI.ISO8859-2/HTML: locale for Slovenian output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-2', 'abstract' => 'Povzetek', 'copyright notice' => 'Opomba o avtorskih pravicah', 'contents' => 'Vsebina', 'chapter' => sub { return "Poglavje $_[0]" }, 'appendix' => sub { return "Dodatek $_[0]" }, 'section' => sub { return "Odsek $_[0]" }, 'subsection' => sub { return "Odsek $_[0]" }, 'subsubsection' => sub { return "Odsek $_[0]" }, 'paragraph' => sub { return "Odsek $_[0]" }, 'subparagraph' => sub { return "Odsek $_[0]" }, 'footnotes' => 'Nožne opombe', 'comments' => 'Komentarji', 'next' => 'naprej', 'previous' => 'nazaj', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sl_SI.ISO8859-2/LaTeX0000664000175000017500000000126011655740662021667 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sl_SI.ISO8859-2/LaTeX2e: locale for Slovenian output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'slovene', 'inputenc' => 'latin2', 'abstract' => 'Povzetek', 'copyright notice' => 'Opomba o avtorskih pravicah', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sl_SI.ISO8859-2/Texinfo0000664000175000017500000000145211655740662022331 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/en_US.ISO8859-2/Texinfo: locale for Slovenian output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'Podrobni izpis vozliÅÄ', 'chapter' => sub { return "Poglavje $_[0]" }, 'appendix' => sub { return "Dodatek $_[0]" }, 'section' => sub { return "Odsek $_[0]" }, 'subsection' => sub { return "Odsek $_[0]" }, 'subsubsection' => sub { return "Odsek $_[0]" }, 'paragraph' => sub { return "Odsek $_[0]" }, 'subparagraph' => sub { return "Odsek $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/sl_SI.ISO8859-2/TextOV0000664000175000017500000000157011655740662022107 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/sl_SI.ISO8859-2/TextOV: locale for Slovenian output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Povzetek', 'copyright notice' => 'Opomba o avtorskih pravicah', 'contents' => 'Vsebina', 'chapter' => sub { return "Poglavje $_[0]" }, 'appendix' => sub { return "Dodatek $_[0]" }, 'section' => sub { return "Odsek $_[0]" }, 'subsection' => sub { return "Odsek $_[0]" }, 'subsubsection' => sub { return "Odsek $_[0]" }, 'paragraph' => sub { return "Odsek $_[0]" }, 'subparagraph' => sub { return "Odsek $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pl_PL.UTF-8/0000775000175000017500000000000011655740662020441 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/pl_PL.UTF-8/Text0000664000175000017500000000157311655740662021316 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pl_PL.UTF-8/Text: locale for Polish output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Streszczenie', 'copyright notice' => 'Prawa autorskie', 'contents' => 'Spis treÅ›ci', 'chapter' => sub { return "Część $_[0]" }, 'appendix' => sub { return "Dodatek $_[0]" }, 'section' => sub { return "RozdziaÅ‚ $_[0]" }, 'subsection' => sub { return "RozdziaÅ‚ $_[0]" }, 'subsubsection' => sub { return "RozdziaÅ‚ $_[0]" }, 'paragraph' => sub { return "RozdziaÅ‚ $_[0]" }, 'subparagraph' => sub { return "RozdziaÅ‚ $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pl_PL.UTF-8/HTML0000664000175000017500000000200211655740662021122 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pl_PL.UTF-8/HTML: locale for Polish output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'Streszczenie', 'copyright notice' => 'Prawa autorskie', 'contents' => 'Spis treÅ›ci', 'chapter' => sub { return "Część $_[0]" }, 'appendix' => sub { return "Dodatek $_[0]" }, 'section' => sub { return "RozdziaÅ‚ $_[0]" }, 'subsection' => sub { return "RozdziaÅ‚ $_[0]" }, 'subsubsection' => sub { return "RozdziaÅ‚ $_[0]" }, 'paragraph' => sub { return "RozdziaÅ‚ $_[0]" }, 'subparagraph' => sub { return "RozdziaÅ‚ $_[0]" }, 'footnotes' => 'Przypisy', 'comments' => 'Komentarze', 'next' => 'dalej', 'previous' => 'powrót', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pl_PL.UTF-8/LaTeX0000664000175000017500000000123711655740662021344 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pl_PL.UTF-8/LaTeX2e: locale for Polish output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'polish', 'inputenc' => 'utf8x', 'abstract' => 'Streszczenie', 'copyright notice' => 'Prawa autorskie', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pl_PL.UTF-8/Texinfo0000664000175000017500000000147511655740662022007 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pl_PL.UTF-8/Texinfo: locale for Polish output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'Szczegółowa lista wÄ™złów', 'chapter' => sub { return "Część $_[0]" }, 'appendix' => sub { return "Dodatek $_[0]" }, 'section' => sub { return "RozdziaÅ‚ $_[0]" }, 'subsection' => sub { return "RozdziaÅ‚ $_[0]" }, 'subsubsection' => sub { return "RozdziaÅ‚ $_[0]" }, 'paragraph' => sub { return "RozdziaÅ‚ $_[0]" }, 'subparagraph' => sub { return "RozdziaÅ‚ $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pl_PL.UTF-8/TextOV0000664000175000017500000000160211655740662021554 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pl_PL.UTF-8/TextOV: locale for Polish output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Streszczenie', 'copyright notice' => 'Prawa autorskie', 'contents' => 'Spis treÅ›ci', 'chapter' => sub { return "Część $_[0]" }, 'appendix' => sub { return "Dodatek $_[0]" }, 'section' => sub { return "RozdziaÅ‚ $_[0]" }, 'subsection' => sub { return "RozdziaÅ‚ $_[0]" }, 'subsubsection' => sub { return "RozdziaÅ‚ $_[0]" }, 'paragraph' => sub { return "RozdziaÅ‚ $_[0]" }, 'subparagraph' => sub { return "RozdziaÅ‚ $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ja_JP.UTF-8/0000775000175000017500000000000011655740662020416 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/ja_JP.UTF-8/Text0000664000175000017500000000154511655740662021272 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ja_JP.UTF-8/Text: locale for Japanese output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => '概è¦', 'copyright notice' => '著作権表示', 'contents' => '目次', 'chapter' => sub { return "第 $_[0] ç« " }, 'appendix' => sub { return "è£œéº $_[0]" }, 'section' => sub { return "第 $_[0] 節" }, 'subsection' => sub { return "第 $_[0] 節" }, 'subsubsection' => sub { return "第 $_[0] 節" }, 'paragraph' => sub { return "第 $_[0] 節" }, 'subparagraph' => sub { return "第 $_[0] 節" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ja_JP.UTF-8/HTML0000664000175000017500000000176711655740662021120 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ja_JP.UTF-8/HTML: locale for Japanese output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => '概è¦', 'copyright notice' => '著作権表示', 'contents' => '目次', 'chapter' => sub { return "第 $_[0] ç« " }, 'appendix' => sub { return "è£œéº $_[0]" }, 'section' => sub { return "第 $_[0] 節" }, 'subsection' => sub { return "第 $_[0] 節" }, 'subsubsection' => sub { return "第 $_[0] 節" }, 'paragraph' => sub { return "第 $_[0] 節" }, 'subparagraph' => sub { return "第 $_[0] 節" }, 'footnotes' => '注', 'comments' => 'Comments', 'next' => '次ã®ãƒšãƒ¼ã‚¸', 'previous' => 'å‰ã®ãƒšãƒ¼ã‚¸', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ja_JP.UTF-8/LaTeX0000664000175000017500000000257511655740662021327 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ja_JP.UTF-8/LaTeX2e: locale for Japanese output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => '', 'inputenc' => '', 'abstract' => '概è¦', 'copyright notice' => '著作権表示', 'before begin document' => '\\usepackage{CJKutf8} \\usepackage[CJK,overlap]{ruby} \\renewcommand{\\rubysep}{-0.2ex} \\usepackage{indentfirst}', 'after begin document' => '\\begin{CJK*}{UTF8}{min} \\renewcommand{\\vpageref}[1]{on page \\pageref{#1}} \\def\\prefacename{åº} \\def\\refname{æ–‡ 献} \\def\\abstractname{概 è¦} \\def\\bibname{å‚考文献} \\def\\chaptername{ç« } \\def\\appendixname{付 録} \\def\\contentsname{ç›® 次} \\def\\listfigurename{図 ç›® 次} \\def\\listtablename{表 ç›® 次} \\def\\indexname{ç´¢ 引} \\def\\figurename{図} \\def\\tablename{表} \\def\\partname{部} \\def\\enclname{encl} \\def\\ccname{cc} \\def\\headtoname{ã¸} \\def\\pagename{é } \\def\\seename{å‚ç…§} \\def\\alsoname{å‚ç…§} \\def\\proofname{証明} \\def\\glossaryname{用語集}', 'before end document' => '\\clearpage \\end{CJK*}', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ja_JP.UTF-8/Texinfo0000664000175000017500000000155711655740662021765 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ja_JP.UTF-8/Texinfo: locale for Japanese output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'The Detailed Node Listing', 'chapter' => sub { return "$BBh(B $_[0] $B>O(B" }, 'appendix' => sub { return "$BJd0d(B $_[0]" }, 'section' => sub { return "$BBh(B $_[0] $B@a(B" }, 'subsection' => sub { return "$BBh(B $_[0] $B@a(B" }, 'subsubsection' => sub { return "$BBh(B $_[0] $B@a(B" }, 'paragraph' => sub { return "$BBh(B $_[0] $B@a(B" }, 'subparagraph' => sub { return "$BBh(B $_[0] $B@a(B" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ja_JP.UTF-8/TextOV0000664000175000017500000000155411655740662021537 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ja_JP.UTF-8/TextOV: locale for Japanese output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => '概è¦', 'copyright notice' => '著作権表示', 'contents' => '目次', 'chapter' => sub { return "第 $_[0] ç« " }, 'appendix' => sub { return "è£œéº $_[0]" }, 'section' => sub { return "第 $_[0] 節" }, 'subsection' => sub { return "第 $_[0] 節" }, 'subsubsection' => sub { return "第 $_[0] 節" }, 'paragraph' => sub { return "第 $_[0] 節" }, 'subparagraph' => sub { return "第 $_[0] 節" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/cs_CZ.UTF-8/0000775000175000017500000000000011655740662020434 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/cs_CZ.UTF-8/Text0000664000175000017500000000153711655740662021311 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/cs_CZ.UTF-8/Text: locale for Czech output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Souhrn', 'copyright notice' => 'Autorská práva', 'contents' => 'Obsah', 'chapter' => sub { return "Kapitola $_[0]" }, 'appendix' => sub { return "Dodatek $_[0]" }, 'section' => sub { return "Oddíl $_[0]" }, 'subsection' => sub { return "Oddíl $_[0]" }, 'subsubsection' => sub { return "Oddíl $_[0]" }, 'paragraph' => sub { return "Oddíl $_[0]" }, 'subparagraph' => sub { return "Oddíl $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/cs_CZ.UTF-8/HTML0000664000175000017500000000175311655740662021131 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/cs_CZ.UTF-8/HTML: locale for Czech output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'Souhrn', 'copyright notice' => 'Autorská práva', 'contents' => 'Obsah', 'chapter' => sub { return "Kapitola $_[0]" }, 'appendix' => sub { return "Dodatek $_[0]" }, 'section' => sub { return "Oddíl $_[0]" }, 'subsection' => sub { return "Oddíl $_[0]" }, 'subsubsection' => sub { return "Oddíl $_[0]" }, 'paragraph' => sub { return "Oddíl $_[0]" }, 'subparagraph' => sub { return "Oddíl $_[0]" }, 'footnotes' => 'Poznámky', 'comments' => 'Comments', 'next' => 'další', 'previous' => 'pÅ™edchozí', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/cs_CZ.UTF-8/LaTeX0000664000175000017500000000123011655740662021330 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/cs_CZ.UTF-8/LaTeX2e: locale for Czech output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'czech', 'inputenc' => 'utf8x', 'abstract' => 'Souhrn', 'copyright notice' => 'Autorská práva', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/cs_CZ.UTF-8/Texinfo0000664000175000017500000000144011655740662021772 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/cs_CZ.UTF-8/Texinfo: locale for Czech output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'Detailní výpis', 'chapter' => sub { return "Kapitola $_[0]" }, 'appendix' => sub { return "Dodatek $_[0]" }, 'section' => sub { return "Oddíl $_[0]" }, 'subsection' => sub { return "Oddíl $_[0]" }, 'subsubsection' => sub { return "Oddíl $_[0]" }, 'paragraph' => sub { return "Oddíl $_[0]" }, 'subparagraph' => sub { return "Oddíl $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/cs_CZ.UTF-8/TextOV0000664000175000017500000000154611655740662021556 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/cs_CZ.UTF-8/TextOV: locale for Czech output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Souhrn', 'copyright notice' => 'Autorská práva', 'contents' => 'Obsah', 'chapter' => sub { return "Kapitola $_[0]" }, 'appendix' => sub { return "Dodatek $_[0]" }, 'section' => sub { return "Oddíl $_[0]" }, 'subsection' => sub { return "Oddíl $_[0]" }, 'subsubsection' => sub { return "Oddíl $_[0]" }, 'paragraph' => sub { return "Oddíl $_[0]" }, 'subparagraph' => sub { return "Oddíl $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/XML0000664000175000017500000000175711655740662017226 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/en_US.ISO8859-1/XML: locale for ALL output in XML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'Abstract', 'copyright notice' => 'Copyright Notice', 'contents' => 'Contents', 'chapter' => sub { return "Chapter $_[0]" }, 'appendix' => sub { return "Appendix $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, 'footnotes' => 'Footnotes', 'comments' => 'Comments', 'next' => 'next', 'previous' => 'previous', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_ES.ISO8859-15/0000775000175000017500000000000011655740662021043 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/eu_ES.ISO8859-15/Text0000664000175000017500000000162611655740662021717 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_ES.ISO8859-15/Text: locale for Basque output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Laburpena', 'copyright notice' => 'Copyright-aren oharra', 'contents' => 'Gaien aurkibidea', 'chapter' => sub { return "$_[0]. kapitulua" }, 'appendix' =>sub { return "$_[0]. eranskina" }, 'section' => sub { return "$_[0]. atala" }, 'subsection' => sub { return "$_[0]. azpiatala" }, 'subsubsection' => sub { return "$_[0]. azpiazpiatala" }, 'paragraph' => sub { return "$_[0]. paragrafoa" }, 'subparagraph' => sub { return "$_[0]. azpiparagrafoa" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_ES.ISO8859-15/HTML0000664000175000017500000000205111655740662021530 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_ES.ISO8859-15/HTML: locale for Basque output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-15', 'abstract' => 'Laburpena', 'copyright notice' => 'Copyright-aren oharra', 'contents' => 'Gaien aurkibidea', 'chapter' => sub { return "$_[0]. kapitulua" }, 'appendix' => sub { return "$_[0]. eranskina" }, 'section' => sub { return "$_[0]. atala" }, 'subsection' => sub { return "$_[0]. azpiatala" }, 'subsubsection' => sub { return "$_[0]. azpiazpiatala" }, 'paragraph' => sub { return "$_[0]. paragrafoa" }, 'subparagraph' => sub { return "$_[0]. azpiparagrafoa" }, 'footnotes' => 'oin-oharra', 'comments' => 'iruzkina', 'next' => 'hurrengoa', 'previous' => 'aurrekoa', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_ES.ISO8859-15/LaTeX0000664000175000017500000000142211655740662021742 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_ES.ISO8859-15/LaTeX2e: locale for Basque output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'basque', 'inputenc' => 'latin9', 'abstract' => 'Laburpena', 'copyright notice' => 'Copyright-aren oharra', 'before begin document' => '\\usepackage{babel} \\renewcommand{\\vpageref}[1]{\\pageref{#1}. orrialdean} \\def\glossaryname{Glosarioa}', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_ES.ISO8859-15/Texinfo0000664000175000017500000000151311655740662022402 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_ES.ISO8859-15/Texinfo: locale for Basque output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'nodoen zerrenda zehatza', 'chapter' => sub { return "$_[0]. kapitulua" }, 'appendix' =>sub { return "$_[0]. eranskina" }, 'section' => sub { return "$_[0]. atala" }, 'subsection' => sub { return "$_[0]. azpiatala" }, 'subsubsection' => sub { return "$_[0]. azpiazpiatala" }, 'paragraph' => sub { return "$_[0]. paragrafoa" }, 'subparagraph' => sub { return "$_[0]. azpiparagrafoa" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_ES.ISO8859-15/TextOV0000664000175000017500000000163511655740662022164 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_ES.ISO8859-15/TextOV: locale for Basque output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Laburpena', 'copyright notice' => 'Copyright-aren oharra', 'contents' => 'Gaien aurkibidea', 'chapter' => sub { return "$_[0]. kapitulua" }, 'appendix' =>sub { return "$_[0]. eranskina" }, 'section' => sub { return "$_[0]. atala" }, 'subsection' => sub { return "$_[0]. azpiatala" }, 'subsubsection' => sub { return "$_[0]. azpiazpiatala" }, 'paragraph' => sub { return "$_[0]. paragrafoa" }, 'subparagraph' => sub { return "$_[0]. azpiparagrafoa" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pt_PT.ISO8859-15/0000775000175000017500000000000011655740662021071 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/pt_PT.ISO8859-15/Text0000664000175000017500000000156511655740662021747 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pt_PT.ISO8859-15/Text: locale for Portuguese output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resumo', 'copyright notice' => 'Nota dos Direitos de Autor', 'contents' => 'Índice', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apêndice $_[0]" }, 'section' => sub { return "Secção $_[0]" }, 'subsection' => sub { return "Secção $_[0]" }, 'subsubsection' => sub { return "Secção $_[0]" }, 'paragraph' => sub { return "Secção $_[0]" }, 'subparagraph' => sub { return "Secção $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pt_PT.ISO8859-15/HTML0000664000175000017500000000201511655740662021556 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pt_PT.ISO8859-15/HTML: locale for Portuguese output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-15', 'abstract' => 'Resumo', 'copyright notice' => 'Nota dos Direitos de Autor', 'contents' => 'Índice', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apêndice $_[0]" }, 'section' => sub { return "Secção $_[0]" }, 'subsection' => sub { return "Secção $_[0]" }, 'subsubsection' => sub { return "Secção $_[0]" }, 'paragraph' => sub { return "Secção $_[0]" }, 'subparagraph' => sub { return "Secção $_[0]" }, 'footnotes' => 'Notas de Rodapé', 'comments' => 'Comentários', 'next' => 'próximo', 'previous' => 'anterior', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pt_PT.ISO8859-15/LaTeX0000664000175000017500000000126211655740662021772 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pt_PT.ISO8859-15/LaTeX2e: locale for Portuguese output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'portuguese', 'inputenc' => 'latin9', 'abstract' => 'Resumo', 'copyright notice' => 'Nota dos Direitos de Autor', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pt_PT.ISO8859-15/Texinfo0000664000175000017500000000146311655740662022434 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pt_PT.ISO8859-15/Texinfo: locale for Portuguese output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'A Lista Detalhada de Nós', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apêndice $_[0]" }, 'section' => sub { return "Secção $_[0]" }, 'subsection' => sub { return "Secção $_[0]" }, 'subsubsection' => sub { return "Secção $_[0]" }, 'paragraph' => sub { return "Secção $_[0]" }, 'subparagraph' => sub { return "Secção $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pt_PT.ISO8859-15/TextOV0000664000175000017500000000157411655740662022214 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pt_PT.ISO8859-15/TextOV: locale for Portuguese output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resumo', 'copyright notice' => 'Nota dos Direitos de Autor', 'contents' => 'Índice', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apêndice $_[0]" }, 'section' => sub { return "Secção $_[0]" }, 'subsection' => sub { return "Secção $_[0]" }, 'subsubsection' => sub { return "Secção $_[0]" }, 'paragraph' => sub { return "Secção $_[0]" }, 'subparagraph' => sub { return "Secção $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/nl_NL.UTF-8/0000775000175000017500000000000011655740662020435 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/nl_NL.UTF-8/Text0000664000175000017500000000155711655740662021314 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/nl_NL.UTF-8/Text: locale for Dutch output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Samenvatting', 'copyright notice' => 'Auteursrechtkennisgeving', 'contents' => 'Inhoud', 'chapter' => sub { return "Hoofdstuk $_[0]" }, 'appendix' => sub { return "Bijlage $_[0]" }, 'section' => sub { return "Sectie $_[0]" }, 'subsection' => sub { return "Sectie $_[0]" }, 'subsubsection' => sub { return "Sectie $_[0]" }, 'paragraph' => sub { return "Sectie $_[0]" }, 'subparagraph' => sub { return "Sectie $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/nl_NL.UTF-8/HTML0000664000175000017500000000176711655740662021137 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/nl_NL.UTF-8/HTML: locale for Dutch output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'Samenvatting', 'copyright notice' => 'Auteursrechtkennisgeving', 'contents' => 'Inhoud', 'chapter' => sub { return "Hoofdstuk $_[0]" }, 'appendix' => sub { return "Bijlage $_[0]" }, 'section' => sub { return "Sectie $_[0]" }, 'subsection' => sub { return "Sectie $_[0]" }, 'subsubsection' => sub { return "Sectie $_[0]" }, 'paragraph' => sub { return "Sectie $_[0]" }, 'subparagraph' => sub { return "Sectie $_[0]" }, 'footnotes' => 'Voetnoten', 'comments' => 'Comments', 'next' => 'volgende', 'previous' => 'vorige', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/nl_NL.UTF-8/LaTeX0000664000175000017500000000124611655740662021340 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/nl_NL.UTF-8/LaTeX2e: locale for Dutch output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'dutch', 'inputenc' => 'utf8x', 'abstract' => 'Samenvatting', 'copyright notice' => 'Auteursrechtkennisgeving', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/nl_NL.UTF-8/Texinfo0000664000175000017500000000145511655740662022001 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/nl_NL.UTF-8/Texinfo: locale for Dutch output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'De Gedetaileerde Sectielijst', 'chapter' => sub { return "Hoofdstuk $_[0]" }, 'appendix' => sub { return "Bijlage $_[0]" }, 'section' => sub { return "Sectie $_[0]" }, 'subsection' => sub { return "Sectie $_[0]" }, 'subsubsection' => sub { return "Sectie $_[0]" }, 'paragraph' => sub { return "Sectie $_[0]" }, 'subparagraph' => sub { return "Sectie $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/nl_NL.UTF-8/TextOV0000664000175000017500000000156611655740662021561 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/nl_NL.UTF-8/TextOV: locale for Dutch output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Samenvatting', 'copyright notice' => 'Auteursrechtkennisgeving', 'contents' => 'Inhoud', 'chapter' => sub { return "Hoofdstuk $_[0]" }, 'appendix' => sub { return "Bijlage $_[0]" }, 'section' => sub { return "Sectie $_[0]" }, 'subsection' => sub { return "Sectie $_[0]" }, 'subsubsection' => sub { return "Sectie $_[0]" }, 'paragraph' => sub { return "Sectie $_[0]" }, 'subparagraph' => sub { return "Sectie $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/gl_ES.ISO8859-1/0000775000175000017500000000000011655740662020747 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/gl_ES.ISO8859-1/Text0000664000175000017500000000155611655740662021625 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/gl_ES.ISO8859-1/Text: locale for Galician output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resumo', 'copyright notice' => 'Nota do Copyright', 'contents' => 'Contido', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apéndice $_[0]" }, 'section' => sub { return "Sección $_[0]" }, 'subsection' => sub { return "Sección $_[0]" }, 'subsubsection' => sub { return "Sección $_[0]" }, 'paragraph' => sub { return "Sección $_[0]" }, 'subparagraph' => sub { return "Sección $_[0]" } ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/gl_ES.ISO8859-1/HTML0000664000175000017500000000200211655740662021430 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/gl_ES.ISO8859-1/HTML: locale for Galician output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-1', 'abstract' => 'Resumo', 'copyright notice' => 'Nota do Copyright', 'contents' => 'Contido', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apéndice $_[0]" }, 'section' => sub { return "Sección $_[0]" }, 'subsection' => sub { return "Sección $_[0]" }, 'subsubsection' => sub { return "Sección $_[0]" }, 'paragraph' => sub { return "Sección $_[0]" }, 'subparagraph' => sub { return "Sección $_[0]" }, 'footnotes' => 'Notas ao pé', 'comments' => 'Comentarios', 'next' => 'seguinte', 'previous' => 'anterior' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/gl_ES.ISO8859-1/LaTeX0000664000175000017500000000124411655740662021650 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/gl_ES.ISO8859-1/LaTeX2e: locale for Galician output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'galician', 'inputenc' => 'latin1', 'abstract' => 'Resumo', 'copyright notice' => 'Nota do Copyright', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/gl_ES.ISO8859-1/Texinfo0000664000175000017500000000146411655740662022313 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/gl_ES.ISO8859-1/Texinfo: locale for Galician output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'A Lista Detallada de Nós', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apéndice $_[0]" }, 'section' => sub { return "Sección $_[0]" }, 'subsection' => sub { return "Sección $_[0]" }, 'subsubsection' => sub { return "Sección $_[0]" }, 'paragraph' => sub { return "Sección $_[0]" }, 'subparagraph' => sub { return "Sección $_[0]" } ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/gl_ES.ISO8859-1/TextOV0000664000175000017500000000156511655740662022072 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/gl_ES.ISO8859-1/TextOV: locale for Galician output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resumo', 'copyright notice' => 'Nota do Copyright', 'contents' => 'Contido', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apéndice $_[0]" }, 'section' => sub { return "Sección $_[0]" }, 'subsection' => sub { return "Sección $_[0]" }, 'subsubsection' => sub { return "Sección $_[0]" }, 'paragraph' => sub { return "Sección $_[0]" }, 'subparagraph' => sub { return "Sección $_[0]" } ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/zh_TW.Big5/0000775000175000017500000000000011655740662020451 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/zh_TW.Big5/Text0000664000175000017500000000152111655740662021317 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/zh_TW.Big5/Text: locale for Chinese (Big5) output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'ºK­n', 'copyright notice' => 'ª©ÅvÁn©ú', 'contents' => '¥Ø¿ý', 'chapter' => sub { return "²Ä $_[0] ³¹" }, 'appendix' => sub { return "ªþ¿ý $_[0]" }, 'section' => sub { return "²Ä $_[0] ¸`" }, 'subsection' => sub { return "²Ä $_[0] ¸`" }, 'subsubsection' => sub { return "²Ä $_[0] ¸`" }, 'paragraph' => sub { return "²Ä $_[0] ¸`" }, 'subparagraph' => sub { return "²Ä $_[0] ¸`" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/zh_TW.Big5/HTML0000664000175000017500000000171711655740662021146 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/zh_TW.Big5/HTML: locale for Chinese (Big5) output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'big5', 'abstract' => 'ºK­n', 'copyright notice' => 'ª©ÅvÁn©ú', 'contents' => '¥Ø¿ý', 'chapter' => sub { return "²Ä $_[0] ³¹" }, 'appendix' => sub { return "ªþ¿ý $_[0]" }, 'section' => sub { return "²Ä $_[0] ¸`" }, 'subsection' => sub { return "²Ä $_[0] ¸`" }, 'subsubsection' => sub { return "²Ä $_[0] ¸`" }, 'paragraph' => sub { return "²Ä $_[0] ¸`" }, 'subparagraph' => sub { return "²Ä $_[0] ¸`" }, 'footnotes' => 'µù', 'comments' => 'Comments', 'next' => '¤U¤@­¶', 'previous' => '¤W¤@­¶', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/zh_TW.Big5/LaTeX0000664000175000017500000000140611655740662021352 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/zh_TW.Big5/LaTeX2e: locale for Chinese (Big5) output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => '', 'inputenc' => '', 'abstract' => 'ºK­n', 'copyright notice' => 'ª©ÅvÁn©ú', 'before begin document' => '\\usepackage{CJK}', 'after begin document' => '\\begin{CJK}{Bg5}{bsmi} \\renewcommand{\\vpageref}[1]{\(²Ä \\pageref{#1} ­¶\)}', 'before end document' => '\\clearpage \\end{CJK}', 'pdfhyperref' => 'CJKbookmarks' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/zh_TW.Big5/Texinfo0000664000175000017500000000142511655740662022012 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/zh_TW.Big5/Texinfo: locale for Chinese (Big5) output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => '¸Ô²Ó¦Cªí', 'chapter' => sub { return "²Ä $_[0] ³¹" }, 'appendix' => sub { return "ªþ¿ý $_[0]" }, 'section' => sub { return "²Ä $_[0] ¸`" }, 'subsection' => sub { return "²Ä $_[0] ¸`" }, 'subsubsection' => sub { return "²Ä $_[0] ¸`" }, 'paragraph' => sub { return "²Ä $_[0] ¸`" }, 'subparagraph' => sub { return "²Ä $_[0] ¸`" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/zh_TW.Big5/TextOV0000664000175000017500000000153011655740662021564 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/zh_TW.Big5/TextOV: locale for Chinese (Big5) output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'ºK­n', 'copyright notice' => 'ª©ÅvÁn©ú', 'contents' => '¥Ø¿ý', 'chapter' => sub { return "²Ä $_[0] ³¹" }, 'appendix' => sub { return "ªþ¿ý $_[0]" }, 'section' => sub { return "²Ä $_[0] ¸`" }, 'subsection' => sub { return "²Ä $_[0] ¸`" }, 'subsubsection' => sub { return "²Ä $_[0] ¸`" }, 'paragraph' => sub { return "²Ä $_[0] ¸`" }, 'subparagraph' => sub { return "²Ä $_[0] ¸`" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/en_US.ISO8859-15/0000775000175000017500000000000011655740662021054 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/en_US.ISO8859-15/Text0000664000175000017500000000155711655740662021733 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/en_US.ISO8859-1/Text: locale for English output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Abstract', 'copyright notice' => 'Copyright Notice', 'contents' => 'Contents', 'chapter' => sub { return "Chapter $_[0]" }, 'appendix' => sub { return "Appendix $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/en_US.ISO8859-15/HTML0000664000175000017500000000177311655740662021553 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/en_US.ISO8859-1/HTML: locale for English output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-15', 'abstract' => 'Abstract', 'copyright notice' => 'Copyright Notice', 'contents' => 'Contents', 'chapter' => sub { return "Chapter $_[0]" }, 'appendix' => sub { return "Appendix $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, 'footnotes' => 'Footnotes', 'comments' => 'Comments', 'next' => 'next', 'previous' => 'previous', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/en_US.ISO8859-15/LaTeX0000664000175000017500000000124411655740662021755 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/en_US.ISO8859-15/LaTeX2e: locale for English output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'english', 'inputenc' => 'latin9', 'abstract' => 'Abstract', 'copyright notice' => 'Copyright Notice', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/en_US.ISO8859-15/Texinfo0000664000175000017500000000146411655740662022420 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/en_US.ISO8859-1/Texinfo: locale for English output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'The Detailed Node Listing', 'chapter' => sub { return "Chapter $_[0]" }, 'appendix' => sub { return "Appendix $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/en_US.ISO8859-15/TextOV0000664000175000017500000000156611655740662022200 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/en_US.ISO8859-1/TextOV: locale for English output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Abstract', 'copyright notice' => 'Copyright Notice', 'contents' => 'Contents', 'chapter' => sub { return "Chapter $_[0]" }, 'appendix' => sub { return "Appendix $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/SGML0000664000175000017500000000176611655740662017330 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/en_US.ISO8859-1/SGML: locale for ALL output in SGML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-1', 'abstract' => 'Abstract', 'copyright notice' => 'Copyright Notice', 'contents' => 'Contents', 'chapter' => sub { return "Chapter $_[0]" }, 'appendix' => sub { return "Appendix $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, 'footnotes' => 'Footnotes', 'comments' => 'Comments', 'next' => 'next', 'previous' => 'previous', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_FR.UTF-8/0000775000175000017500000000000011655740662020433 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/eu_FR.UTF-8/Text0000664000175000017500000000162111655740662021302 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_FR.UTF-8/Text: locale for Basque output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Laburpena', 'copyright notice' => 'Copyright-aren oharra', 'contents' => 'Gaien aurkibidea', 'chapter' => sub { return "$_[0]. kapitulua" }, 'appendix' =>sub { return "$_[0]. eranskina" }, 'section' => sub { return "$_[0]. atala" }, 'subsection' => sub { return "$_[0]. azpiatala" }, 'subsubsection' => sub { return "$_[0]. azpiazpiatala" }, 'paragraph' => sub { return "$_[0]. paragrafoa" }, 'subparagraph' => sub { return "$_[0]. azpiparagrafoa" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_FR.UTF-8/HTML0000664000175000017500000000203511655740662021122 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_FR.UTF-8/HTML: locale for Basque output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'Laburpena', 'copyright notice' => 'Copyright-aren oharra', 'contents' => 'Gaien aurkibidea', 'chapter' => sub { return "$_[0]. kapitulua" }, 'appendix' => sub { return "$_[0]. eranskina" }, 'section' => sub { return "$_[0]. atala" }, 'subsection' => sub { return "$_[0]. azpiatala" }, 'subsubsection' => sub { return "$_[0]. azpiazpiatala" }, 'paragraph' => sub { return "$_[0]. paragrafoa" }, 'subparagraph' => sub { return "$_[0] azpiparagrafoa" }, 'footnotes' => 'oin-oharra', 'comments' => 'iruzkina', 'next' => 'hurrengoa', 'previous' => 'aurrekoa', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_FR.UTF-8/LaTeX0000664000175000017500000000141411655740662021333 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_FR.UTF-8/LaTeX2e: locale for Basque output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'basque', 'inputenc' => 'utf8x', 'abstract' => 'Laburpena', 'copyright notice' => 'Copyright-aren oharra', 'before begin document' => '\\usepackage{babel} \\renewcommand{\\vpageref}[1]{\\pageref{#1}. orrialdean} \\def\glossaryname{Glosarioa}', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_FR.UTF-8/Texinfo0000664000175000017500000000150611655740662021774 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_FR.UTF-8/Texinfo: locale for Basque output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'nodoen zerrenda zehatza', 'chapter' => sub { return "$_[0]. kapitulua" }, 'appendix' =>sub { return "$_[0]. eranskina" }, 'section' => sub { return "$_[0]. atala" }, 'subsection' => sub { return "$_[0]. azpiatala" }, 'subsubsection' => sub { return "$_[0]. azpiazpiatala" }, 'paragraph' => sub { return "$_[0]. paragrafoa" }, 'subparagraph' => sub { return "$_[0]. azpiparagrafoa" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_FR.UTF-8/TextOV0000664000175000017500000000163011655740662021547 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_FR.UTF-8/TextOV: locale for Basque output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Laburpena', 'copyright notice' => 'Copyright-aren oharra', 'contents' => 'Gaien aurkibidea', 'chapter' => sub { return "$_[0]. kapitulua" }, 'appendix' =>sub { return "$_[0]. eranskina" }, 'section' => sub { return "$_[0]. atala" }, 'subsection' => sub { return "$_[0]. azpiatala" }, 'subsubsection' => sub { return "$_[0]. azpiazpiatala" }, 'paragraph' => sub { return "$_[0]. paragrafoa" }, 'subparagraph' => sub { return "$_[0]. azpiparagrafoa" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pt_BR.UTF-8/0000775000175000017500000000000011655740662020441 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/pt_BR.UTF-8/Text0000664000175000017500000000156011655740662021312 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pt_BR.UTF-8/Text: locale for Brazilian output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resumo', 'copyright notice' => 'Nota de Copyright', 'contents' => 'Conteúdo', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apêndice $_[0]" }, 'section' => sub { return "Seção $_[0]" }, 'subsection' => sub { return "Seção $_[0]" }, 'subsubsection' => sub { return "Seção $_[0]" }, 'paragraph' => sub { return "Seção $_[0]" }, 'subparagraph' => sub { return "Seção $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pt_BR.UTF-8/HTML0000664000175000017500000000200411655740662021124 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pt_BR.UTF-8/HTML: locale for Brazilian output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'Resumo', 'copyright notice' => 'Nota de Copyright', 'contents' => 'Conteúdo', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apêndice $_[0]" }, 'section' => sub { return "Seção $_[0]" }, 'subsection' => sub { return "Seção $_[0]" }, 'subsubsection' => sub { return "Seção $_[0]" }, 'paragraph' => sub { return "Seção $_[0]" }, 'subparagraph' => sub { return "Seção $_[0]" }, 'footnotes' => 'Notas Rápidas', 'comments' => 'Coomentários', 'next' => 'próximo', 'previous' => 'anterior', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pt_BR.UTF-8/LaTeX0000664000175000017500000000124111655740662021337 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pt_BR.UTF-8/LaTeX2e: locale for Brazilian output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'brazilian', 'inputenc' => 'utf8x', 'abstract' => 'Resumo', 'copyright notice' => 'Nota de Copyright', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pt_BR.UTF-8/Texinfo0000664000175000017500000000146611655740662022007 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pt_BR.UTF-8/Texinfo: locale for Brazilian output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'A Lista detalhada de Notas', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apêndice $_[0]" }, 'section' => sub { return "Seção $_[0]" }, 'subsection' => sub { return "Seção $_[0]" }, 'subsubsection' => sub { return "Seção $_[0]" }, 'paragraph' => sub { return "Seção $_[0]" }, 'subparagraph' => sub { return "Seção $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/pt_BR.UTF-8/TextOV0000664000175000017500000000156511655740662021564 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/pt_BR.UTF-8/TextOV: locale for Brazilian output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resumo', 'copyright notice' => 'Nota de Copyright', 'contents' => 'Conteúdo', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apêndice $_[0]" }, 'section' => sub { return "Seção $_[0]" }, 'subsection' => sub { return "Seção $_[0]" }, 'subsubsection' => sub { return "Seção $_[0]" }, 'paragraph' => sub { return "Seção $_[0]" }, 'subparagraph' => sub { return "Seção $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/es_ES.ISO8859-15/0000775000175000017500000000000011655740662021041 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/es_ES.ISO8859-15/Text0000664000175000017500000000156311655740662021715 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/es_ES.ISO8859-15/Text: locale for Spanish output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resumen', 'copyright notice' => 'Nota de Copyright', 'contents' => 'Contenidos', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' =>sub { return " Apéndice $_[0]" }, 'section' => sub { return "Sección $_[0]" }, 'subsection' => sub { return "Sección $_[0]" }, 'subsubsection' => sub { return "Sección $_[0]" }, 'paragraph' => sub { return "Sección $_[0]" }, 'subparagraph' => sub { return "Sección $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/es_ES.ISO8859-15/HTML0000664000175000017500000000200711655740662021527 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/es_ES.ISO8859-15/HTML: locale for Spanish output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-15', 'abstract' => 'Resumen', 'copyright notice' => 'Nota de Copyright', 'contents' => 'Contenidos', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apéndice $_[0]" }, 'section' => sub { return "Sección $_[0]" }, 'subsection' => sub { return "Sección $_[0]" }, 'subsubsection' => sub { return "Sección $_[0]" }, 'paragraph' => sub { return "Sección $_[0]" }, 'subparagraph' => sub { return "Sección $_[0]" }, 'footnotes' => 'Notas al pie', 'comments' => 'Comments', 'next' => 'siguiente', 'previous' => 'anterior', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/es_ES.ISO8859-15/LaTeX0000664000175000017500000000124411655740662021742 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/es_ES.ISO8859-15/LaTeX2e: locale for Spanish output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'spanish', 'inputenc' => 'latin9', 'abstract' => 'Resumen', 'copyright notice' => 'Nota de Copyright', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/es_ES.ISO8859-15/Texinfo0000664000175000017500000000147011655740662022402 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/es_ES.ISO8859-15/Texinfo: locale for Spanish output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'La lista detallada de nodos', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' =>sub { return " Apéndice $_[0]" }, 'section' => sub { return "Sección $_[0]" }, 'subsection' => sub { return "Sección $_[0]" }, 'subsubsection' => sub { return "Sección $_[0]" }, 'paragraph' => sub { return "Sección $_[0]" }, 'subparagraph' => sub { return "Sección $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/es_ES.ISO8859-15/TextOV0000664000175000017500000000157211655740662022162 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/es_ES.ISO8859-15/TextOV: locale for Spanish output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resumen', 'copyright notice' => 'Nota de Copyright', 'contents' => 'Contenidos', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' =>sub { return " Apéndice $_[0]" }, 'section' => sub { return "Sección $_[0]" }, 'subsection' => sub { return "Sección $_[0]" }, 'subsubsection' => sub { return "Sección $_[0]" }, 'paragraph' => sub { return "Sección $_[0]" }, 'subparagraph' => sub { return "Sección $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fi_FI.ISO8859-1/0000775000175000017500000000000011655740662020732 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/fi_FI.ISO8859-1/Text0000664000175000017500000000154411655740662021605 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fi_FI.ISO8859-1/Text: locale for Finnish output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Tiivistelmä', 'copyright notice' => 'Tekijänoikeuksista', 'contents' => 'Sisällys', 'chapter' =>sub { return " Luku $_[0]" }, 'appendix' => sub { return "Liite $_[0]" }, 'section' => sub { return "Kohta $_[0]" }, 'subsection' => sub { return "Kohta $_[0]" }, 'subsubsection' => sub { return "Kohta $_[0]" }, 'paragraph' => sub { return "Kohta $_[0]" }, 'subparagraph' => sub { return "Kohta $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fi_FI.ISO8859-1/HTML0000664000175000017500000000176611655740662021433 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fi_FI.ISO8859-1/HTML: locale for Finnish output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-1', 'abstract' => 'Tiivistelmä', 'copyright notice' => 'Tekijänoikeuksista', 'contents' => 'Sisällys', 'chapter' =>sub { return " Luku $_[0]" }, 'appendix' => sub { return "Liite $_[0]" }, 'section' => sub { return "Kohta $_[0]" }, 'subsection' => sub { return "Kohta $_[0]" }, 'subsubsection' => sub { return "Kohta $_[0]" }, 'paragraph' => sub { return "Kohta $_[0]" }, 'subparagraph' => sub { return "Kohta $_[0]" }, 'footnotes' => 'Alaviitteet', 'comments' => 'Comments', 'next' => 'seuraava', 'previous' => 'edellinen', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fi_FI.ISO8859-1/LaTeX0000664000175000017500000000125011655740662021630 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fi_FI.ISO8859-1/LaTeX2e: locale for Finnish output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'finnish', 'inputenc' => 'latin1', 'abstract' => 'Tiivistelmä', 'copyright notice' => 'Tekijänoikeuksista', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fi_FI.ISO8859-1/Texinfo0000664000175000017500000000144711655740662022277 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fi_FI.ISO8859-1/Texinfo: locale for Finnish output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'Yksityiskohtainen solmulista', 'chapter' =>sub { return " Luku $_[0]" }, 'appendix' => sub { return "Liite $_[0]" }, 'section' => sub { return "Kohta $_[0]" }, 'subsection' => sub { return "Kohta $_[0]" }, 'subsubsection' => sub { return "Kohta $_[0]" }, 'paragraph' => sub { return "Kohta $_[0]" }, 'subparagraph' => sub { return "Kohta $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fi_FI.ISO8859-1/TextOV0000664000175000017500000000155311655740662022052 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fi_FI.ISO8859-1/TextOV: locale for Finnish output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Tiivistelmä', 'copyright notice' => 'Tekijänoikeuksista', 'contents' => 'Sisällys', 'chapter' =>sub { return " Luku $_[0]" }, 'appendix' => sub { return "Liite $_[0]" }, 'section' => sub { return "Kohta $_[0]" }, 'subsection' => sub { return "Kohta $_[0]" }, 'subsubsection' => sub { return "Kohta $_[0]" }, 'paragraph' => sub { return "Kohta $_[0]" }, 'subparagraph' => sub { return "Kohta $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_ES.UTF-8/0000775000175000017500000000000011655740662020433 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/eu_ES.UTF-8/Text0000664000175000017500000000162111655740662021302 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_ES.UTF-8/Text: locale for Basque output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Laburpena', 'copyright notice' => 'Copyright-aren oharra', 'contents' => 'Gaien aurkibidea', 'chapter' => sub { return "$_[0]. kapitulua" }, 'appendix' =>sub { return "$_[0]. eranskina" }, 'section' => sub { return "$_[0]. atala" }, 'subsection' => sub { return "$_[0]. azpiatala" }, 'subsubsection' => sub { return "$_[0]. azpiazpiatala" }, 'paragraph' => sub { return "$_[0]. paragrafoa" }, 'subparagraph' => sub { return "$_[0]. azpiparagrafoa" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_ES.UTF-8/HTML0000664000175000017500000000203511655740662021122 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_ES.UTF-8/HTML: locale for Basque output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'Laburpena', 'copyright notice' => 'Copyright-aren oharra', 'contents' => 'Gaien aurkibidea', 'chapter' => sub { return "$_[0]. kapitulua" }, 'appendix' => sub { return "$_[0]. eranskina" }, 'section' => sub { return "$_[0]. atala" }, 'subsection' => sub { return "$_[0]. azpiatala" }, 'subsubsection' => sub { return "$_[0]. azpiazpiatala" }, 'paragraph' => sub { return "$_[0]. paragrafoa" }, 'subparagraph' => sub { return "$_[0] azpiparagrafoa" }, 'footnotes' => 'oin-oharra', 'comments' => 'iruzkina', 'next' => 'hurrengoa', 'previous' => 'aurrekoa', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_ES.UTF-8/LaTeX0000664000175000017500000000141411655740662021333 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_ES.UTF-8/LaTeX2e: locale for Basque output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'basque', 'inputenc' => 'utf8x', 'abstract' => 'Laburpena', 'copyright notice' => 'Copyright-aren oharra', 'before begin document' => '\\usepackage{babel} \\renewcommand{\\vpageref}[1]{\\pageref{#1}. orrialdean} \\def\glossaryname{Glosarioa}', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_ES.UTF-8/Texinfo0000664000175000017500000000150611655740662021774 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_ES.UTF-8/Texinfo: locale for Basque output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'nodoen zerrenda zehatza', 'chapter' => sub { return "$_[0]. kapitulua" }, 'appendix' =>sub { return "$_[0]. eranskina" }, 'section' => sub { return "$_[0]. atala" }, 'subsection' => sub { return "$_[0]. azpiatala" }, 'subsubsection' => sub { return "$_[0]. azpiazpiatala" }, 'paragraph' => sub { return "$_[0]. paragrafoa" }, 'subparagraph' => sub { return "$_[0]. azpiparagrafoa" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_ES.UTF-8/TextOV0000664000175000017500000000163011655740662021547 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_ES.UTF-8/TextOV: locale for Basque output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Laburpena', 'copyright notice' => 'Copyright-aren oharra', 'contents' => 'Gaien aurkibidea', 'chapter' => sub { return "$_[0]. kapitulua" }, 'appendix' =>sub { return "$_[0]. eranskina" }, 'section' => sub { return "$_[0]. atala" }, 'subsection' => sub { return "$_[0]. azpiatala" }, 'subsubsection' => sub { return "$_[0]. azpiazpiatala" }, 'paragraph' => sub { return "$_[0]. paragrafoa" }, 'subparagraph' => sub { return "$_[0]. azpiparagrafoa" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ca_ES.UTF-8/0000775000175000017500000000000011655740662020405 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/ca_ES.UTF-8/Text0000664000175000017500000000155411655740662021261 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ca_ES.UTF-8/Text: locale for Catalan output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resum', 'copyright notice' => 'Nota de Copyright', 'contents' => 'Continguts', 'chapter' => sub { return "Capítol $_[0]" }, 'appendix' => sub { return "Apèndix $_[0]" }, 'section' => sub { return "Secció $_[0]" }, 'subsection' => sub { return "Secció $_[0]" }, 'subsubsection' => sub { return "Secció $_[0]" }, 'paragraph' => sub { return "Secció $_[0]" }, 'subparagraph' => sub { return "Secció $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ca_ES.UTF-8/HTML0000664000175000017500000000177311655740662021104 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ca_ES.UTF-8/HTML: locale for Catalan output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'Resum', 'copyright notice' => 'Nota de Copyright', 'contents' => 'Continguts', 'chapter' => sub { return "Capítol $_[0]" }, 'appendix' => sub { return "Apèndix $_[0]" }, 'section' => sub { return "Secció $_[0]" }, 'subsection' => sub { return "Secció $_[0]" }, 'subsubsection' => sub { return "Secció $_[0]" }, 'paragraph' => sub { return "Secció $_[0]" }, 'subparagraph' => sub { return "Secció $_[0]" }, 'footnotes' => 'Notes al peu', 'comments' => 'Comentaris', 'next' => 'següent', 'previous' => 'anterior', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ca_ES.UTF-8/LaTeX0000664000175000017500000000123411655740662021305 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ca_ES.UTF-8/LaTeX2e: locale for Catalan output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'catalan', 'inputenc' => 'utf8x', 'abstract' => 'Resum', 'copyright notice' => 'Nota de Copyright', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ca_ES.UTF-8/Texinfo0000664000175000017500000000146411655740662021751 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ca_ES.UTF-8/Texinfo: locale for Catalan output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'La llista detallada de nodes', 'chapter' => sub { return "Capítol $_[0]" }, 'appendix' => sub { return "Apèndix $_[0]" }, 'section' => sub { return "Secció $_[0]" }, 'subsection' => sub { return "Secció $_[0]" }, 'subsubsection' => sub { return "Secció $_[0]" }, 'paragraph' => sub { return "Secció $_[0]" }, 'subparagraph' => sub { return "Secció $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ca_ES.UTF-8/TextOV0000664000175000017500000000156311655740662021526 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ca_ES.UTF-8/TextOV: locale for Catalan output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resum', 'copyright notice' => 'Nota de Copyright', 'contents' => 'Continguts', 'chapter' => sub { return "Capítol $_[0]" }, 'appendix' => sub { return "Apèndix $_[0]" }, 'section' => sub { return "Secció $_[0]" }, 'subsection' => sub { return "Secció $_[0]" }, 'subsubsection' => sub { return "Secció $_[0]" }, 'paragraph' => sub { return "Secció $_[0]" }, 'subparagraph' => sub { return "Secció $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/zh_TW.UTF-8/0000775000175000017500000000000011655740662020466 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/zh_TW.UTF-8/Text0000664000175000017500000000155011655740662021336 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/zh_TW.UTF-8/Text: locale for Chinese (Big5) output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => '摘è¦', 'copyright notice' => 'ç‰ˆæ¬Šè²æ˜Ž', 'contents' => '目錄', 'chapter' => sub { return "第 $_[0] ç« " }, 'appendix' => sub { return "附錄 $_[0]" }, 'section' => sub { return "第 $_[0] 節" }, 'subsection' => sub { return "第 $_[0] 節" }, 'subsubsection' => sub { return "第 $_[0] 節" }, 'paragraph' => sub { return "第 $_[0] 節" }, 'subparagraph' => sub { return "第 $_[0] 節" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/zh_TW.UTF-8/HTML0000664000175000017500000000175611655740662021166 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/zh_TW.UTF-8/HTML: locale for Chinese (Big5) output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => '摘è¦', 'copyright notice' => 'ç‰ˆæ¬Šè²æ˜Ž', 'contents' => '目錄', 'chapter' => sub { return "第 $_[0] ç« " }, 'appendix' => sub { return "附錄 $_[0]" }, 'section' => sub { return "第 $_[0] 節" }, 'subsection' => sub { return "第 $_[0] 節" }, 'subsubsection' => sub { return "第 $_[0] 節" }, 'paragraph' => sub { return "第 $_[0] 節" }, 'subparagraph' => sub { return "第 $_[0] 節" }, 'footnotes' => '註', 'comments' => 'Comments', 'next' => '下一é ', 'previous' => '上一é ', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/zh_TW.UTF-8/LaTeX0000664000175000017500000000142111655740662021364 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/zh_TW.UTF-8/LaTeX2e: locale for Chinese (Big5) output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => '', 'inputenc' => '', 'abstract' => '摘è¦', 'copyright notice' => 'ç‰ˆæ¬Šè²æ˜Ž', 'before begin document' => '\\usepackage{CJKutf8}', 'after begin document' => '\\begin{CJK*}{UTF8}{bsmi} \\renewcommand{\\vpageref}[1]{\(第 \\pageref{#1} é \)}', 'before end document' => '\\clearpage \\end{CJK*}', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/zh_TW.UTF-8/Texinfo0000664000175000017500000000145011655740662022025 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/zh_TW.UTF-8/Texinfo: locale for Chinese (Big5) output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => '詳細列表', 'chapter' => sub { return "第 $_[0] ç« " }, 'appendix' => sub { return "附錄 $_[0]" }, 'section' => sub { return "第 $_[0] 節" }, 'subsection' => sub { return "第 $_[0] 節" }, 'subsubsection' => sub { return "第 $_[0] 節" }, 'paragraph' => sub { return "第 $_[0] 節" }, 'subparagraph' => sub { return "第 $_[0] 節" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/zh_TW.UTF-8/TextOV0000664000175000017500000000155711655740662021612 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/zh_TW.UTF-8/TextOV: locale for Chinese (Big5) output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => '摘è¦', 'copyright notice' => 'ç‰ˆæ¬Šè²æ˜Ž', 'contents' => '目錄', 'chapter' => sub { return "第 $_[0] ç« " }, 'appendix' => sub { return "附錄 $_[0]" }, 'section' => sub { return "第 $_[0] 節" }, 'subsection' => sub { return "第 $_[0] 節" }, 'subsubsection' => sub { return "第 $_[0] 節" }, 'paragraph' => sub { return "第 $_[0] 節" }, 'subparagraph' => sub { return "第 $_[0] 節" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/es_ES.UTF-8/0000775000175000017500000000000011655740662020431 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/es_ES.UTF-8/Text0000664000175000017500000000156511655740662021307 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/es_ES.UTF-8/Text: locale for Spanish output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resumen', 'copyright notice' => 'Nota de Copyright', 'contents' => 'Contenidos', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' =>sub { return " Apéndice $_[0]" }, 'section' => sub { return "Sección $_[0]" }, 'subsection' => sub { return "Sección $_[0]" }, 'subsubsection' => sub { return "Sección $_[0]" }, 'paragraph' => sub { return "Sección $_[0]" }, 'subparagraph' => sub { return "Sección $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/es_ES.UTF-8/HTML0000664000175000017500000000200311655740662021113 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/es_ES.UTF-8/HTML: locale for Spanish output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'Resumen', 'copyright notice' => 'Nota de Copyright', 'contents' => 'Contenidos', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apéndice $_[0]" }, 'section' => sub { return "Sección $_[0]" }, 'subsection' => sub { return "Sección $_[0]" }, 'subsubsection' => sub { return "Sección $_[0]" }, 'paragraph' => sub { return "Sección $_[0]" }, 'subparagraph' => sub { return "Sección $_[0]" }, 'footnotes' => 'Notas al pie', 'comments' => 'Comments', 'next' => 'siguiente', 'previous' => 'anterior', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/es_ES.UTF-8/LaTeX0000664000175000017500000000123611655740662021333 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/es_ES.UTF-8/LaTeX2e: locale for Spanish output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'spanish', 'inputenc' => 'utf8x', 'abstract' => 'Resumen', 'copyright notice' => 'Nota de Copyright', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/es_ES.UTF-8/Texinfo0000664000175000017500000000147211655740662021774 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/es_ES.UTF-8/Texinfo: locale for Spanish output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'La lista detallada de nodos', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' =>sub { return " Apéndice $_[0]" }, 'section' => sub { return "Sección $_[0]" }, 'subsection' => sub { return "Sección $_[0]" }, 'subsubsection' => sub { return "Sección $_[0]" }, 'paragraph' => sub { return "Sección $_[0]" }, 'subparagraph' => sub { return "Sección $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/es_ES.UTF-8/TextOV0000664000175000017500000000157411655740662021554 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/es_ES.UTF-8/TextOV: locale for Spanish output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resumen', 'copyright notice' => 'Nota de Copyright', 'contents' => 'Contenidos', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' =>sub { return " Apéndice $_[0]" }, 'section' => sub { return "Sección $_[0]" }, 'subsection' => sub { return "Sección $_[0]" }, 'subsubsection' => sub { return "Sección $_[0]" }, 'paragraph' => sub { return "Sección $_[0]" }, 'subparagraph' => sub { return "Sección $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/da_DK.ISO8859-1/0000775000175000017500000000000011655740662020720 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/da_DK.ISO8859-1/Text0000664000175000017500000000154611655740662021575 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/da_DK.ISO8859-1/Text: locale for Danish output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Opsummering', 'copyright notice' => 'Copyright', 'contents' => 'Indhold', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Bilag $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/da_DK.ISO8859-1/HTML0000664000175000017500000000176611655740662021421 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/da_DK.ISO8859-1/HTML: locale for Danish output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-1', 'abstract' => 'Opsummering', 'copyright notice' => 'Copyright', 'contents' => 'Indhold', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Bilag $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, 'footnotes' => 'Fodnoter', 'comments' => 'Comments', 'next' => 'næste', 'previous' => 'tilbage', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/da_DK.ISO8859-1/LaTeX0000664000175000017500000000123511655740662021621 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/da_DK.ISO8859-1/LaTeX2e: locale for Danish output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'danish', 'inputenc' => 'latin1', 'abstract' => 'Opsummering', 'copyright notice' => 'Copyright', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/da_DK.ISO8859-1/Texinfo0000664000175000017500000000146011655740662022260 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/da_DK.ISO8859-1/Texinfo: locale for Danish output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'The Detailed Node Listing', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Bilag $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/da_DK.ISO8859-1/TextOV0000664000175000017500000000155511655740662022042 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/da_DK.ISO8859-1/TextOV: locale for Danish output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Opsummering', 'copyright notice' => 'Copyright', 'contents' => 'Indhold', 'chapter' => sub { return "Kapitel $_[0]" }, 'appendix' => sub { return "Bilag $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_FR.ISO8859-1/0000775000175000017500000000000011655740662020756 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/eu_FR.ISO8859-1/Text0000664000175000017500000000162511655740662021631 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_FR.ISO8859-1/Text: locale for Basque output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Laburpena', 'copyright notice' => 'Copyright-aren oharra', 'contents' => 'Gaien aurkibidea', 'chapter' => sub { return "$_[0]. kapitulua" }, 'appendix' =>sub { return "$_[0]. eranskina" }, 'section' => sub { return "$_[0]. atala" }, 'subsection' => sub { return "$_[0]. azpiatala" }, 'subsubsection' => sub { return "$_[0]. azpiazpiatala" }, 'paragraph' => sub { return "$_[0]. paragrafoa" }, 'subparagraph' => sub { return "$_[0]. azpiparagrafoa" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_FR.ISO8859-1/HTML0000664000175000017500000000204611655740662021447 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_FR.ISO8859-1/HTML: locale for Basque output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-1', 'abstract' => 'Laburpena', 'copyright notice' => 'Copyright-aren oharra', 'contents' => 'Gaien aurkibidea', 'chapter' => sub { return "$_[0]. kapitulua" }, 'appendix' => sub { return "$_[0]. eranskina" }, 'section' => sub { return "$_[0]. atala" }, 'subsection' => sub { return "$_[0]. azpiatala" }, 'subsubsection' => sub { return "$_[0]. azpiazpiatala" }, 'paragraph' => sub { return "$_[0]. paragrafoa" }, 'subparagraph' => sub { return "$_[0] azpiparagrafoa" }, 'footnotes' => 'oin-oharra', 'comments' => 'iruzkina', 'next' => 'hurrengoa', 'previous' => 'aurrekoa', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_FR.ISO8859-1/LaTeX0000664000175000017500000000142111655740662021654 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_FR.ISO8859-1/LaTeX2e: locale for Basque output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'basque', 'inputenc' => 'latin1', 'abstract' => 'Laburpena', 'copyright notice' => 'Copyright-aren oharra', 'before begin document' => '\\usepackage{babel} \\renewcommand{\\vpageref}[1]{\\pageref{#1}. orrialdean} \\def\glossaryname{Glosarioa}', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_FR.ISO8859-1/Texinfo0000664000175000017500000000151211655740662022314 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_FR.ISO8859-1/Texinfo: locale for Basque output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'nodoen zerrenda zehatza', 'chapter' => sub { return "$_[0]. kapitulua" }, 'appendix' =>sub { return "$_[0]. eranskina" }, 'section' => sub { return "$_[0]. atala" }, 'subsection' => sub { return "$_[0]. azpiatala" }, 'subsubsection' => sub { return "$_[0]. azpiazpiatala" }, 'paragraph' => sub { return "$_[0]. paragrafoa" }, 'subparagraph' => sub { return "$_[0]. azpiparagrafoa" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_FR.ISO8859-1/TextOV0000664000175000017500000000163411655740662022076 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_FR.ISO8859-1/TextOV: locale for Basque output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Laburpena', 'copyright notice' => 'Copyright-aren oharra', 'contents' => 'Gaien aurkibidea', 'chapter' => sub { return "$_[0]. kapitulua" }, 'appendix' =>sub { return "$_[0]. eranskina" }, 'section' => sub { return "$_[0]. atala" }, 'subsection' => sub { return "$_[0]. azpiatala" }, 'subsubsection' => sub { return "$_[0]. azpiazpiatala" }, 'paragraph' => sub { return "$_[0]. paragrafoa" }, 'subparagraph' => sub { return "$_[0]. azpiparagrafoa" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/convert-encoding0000775000175000017500000000270111655740662022023 0ustar osamuosamu#!/bin/sh # set -x # $1: directory name xx_YY.ZZZZ # $2: new encoding name WWWWW # $3: new extension UUUUU (default=$2) if [ $# -le 1 ]; then echo "Too few arguments: $#" exit 1 fi OLD_DIR=$1 XX_YY=${1%%.*} ZZZZZ=${1##*.} WWWWW=$2 UUUUU=$2 if [ $# -eq 3 ]; then UUUUU=$3 fi if [ $# -gt 3 ]; then echo "Too many/few arguments: $#" exit 1 fi NEW_DIR=$XX_YY.$UUUUU OLD_ENC=$ZZZZZ NEW_ENC=$WWWWW mkdir $NEW_DIR iconv -f $OLD_ENC -t $NEW_ENC $OLD_DIR/HTML |sed -e "s/$XX_YY.$OLD_ENC/$XX_YY.$NEW_ENC/" >$NEW_DIR/HTML iconv -f $OLD_ENC -t $NEW_ENC $OLD_DIR/LaTeX |sed -e "s/$XX_YY.$OLD_ENC/$XX_YY.$NEW_ENC/" >$NEW_DIR/LaTeX iconv -f $OLD_ENC -t $NEW_ENC $OLD_DIR/Texinfo |sed -e "s/$XX_YY.$OLD_ENC/$XX_YY.$NEW_ENC/" >$NEW_DIR/Texinfo iconv -f $OLD_ENC -t $NEW_ENC $OLD_DIR/Text |sed -e "s/$XX_YY.$OLD_ENC/$XX_YY.$NEW_ENC/" >$NEW_DIR/Text iconv -f $OLD_ENC -t $NEW_ENC $OLD_DIR/TextOV |sed -e "s/$XX_YY.$OLD_ENC/$XX_YY.$NEW_ENC/" >$NEW_DIR/TextOV echo update HTML with charset to utf-8 echo update LaTeX with following example for russian :-) echo "%locale = (" echo " 'babel' => 'russian'," echo " 'inputenc' => 'utf8'," echo " 'abstract' => 'ÐннотациÑ'," echo " 'copyright notice' => 'Ð¡Ð²ÐµÐ´ÐµÐ½Ð¸Ñ Ð¾Ð± авторÑких правах'," echo " 'after begin document' => '\\renewcommand{\\vpageref}[1]{на Ñтр. \\pageref{#1}}'," echo " 'pdfhyperref' => 'unicode'" echo " );" debiandoc-sgml-1.2.28/tools/lib/Locale/fr_FR.ISO8859-1/0000775000175000017500000000000011655740662020754 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/fr_FR.ISO8859-1/Text0000664000175000017500000000155611655740662021632 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fr_FR.ISO8859-1/Text: locale for French output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Résumé', 'copyright notice' => 'Copyright', 'contents' => 'Table des matières', 'chapter' => sub { return "Chapitre $_[0]" }, 'appendix' => sub { return "Annexe $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fr_FR.ISO8859-1/HTML0000664000175000017500000000201011655740662021434 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fr_FR.ISO8859-1/HTML: locale for French output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-1', 'abstract' => 'Résumé', 'copyright notice' => 'Copyright', 'contents' => 'Table des matières', 'chapter' => sub { return "Chapitre $_[0]" }, 'appendix' => sub { return "Annexe $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, 'footnotes' => 'Notes de bas de page', 'comments' => 'Comments', 'next' => 'suivant', 'previous' => 'précédent', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fr_FR.ISO8859-1/LaTeX0000664000175000017500000000123111655740662021651 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fr_FR.ISO8859-15/LaTeX2e: locale for French output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'french', 'inputenc' => 'latin1', 'abstract' => 'Résumé', 'copyright notice' => 'Copyright', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fr_FR.ISO8859-1/Texinfo0000664000175000017500000000146511655740662022321 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fr_FR.ISO8859-1/Texinfo: locale for French output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'Table des matières détaillée', 'chapter' => sub { return "Chapitre $_[0]" }, 'appendix' => sub { return "Annexe $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fr_FR.ISO8859-1/TextOV0000664000175000017500000000156511655740662022077 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fr_FR.ISO8859-1/TextOV: locale for French output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Résumé', 'copyright notice' => 'Copyright', 'contents' => 'Table des matières', 'chapter' => sub { return "Chapitre $_[0]" }, 'appendix' => sub { return "Annexe $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/en_US.ISO8859-1/0000775000175000017500000000000011655740662020767 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/en_US.ISO8859-1/Text0000664000175000017500000000155711655740662021646 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/en_US.ISO8859-1/Text: locale for English output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Abstract', 'copyright notice' => 'Copyright Notice', 'contents' => 'Contents', 'chapter' => sub { return "Chapter $_[0]" }, 'appendix' => sub { return "Appendix $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/en_US.ISO8859-1/HTML0000664000175000017500000000177211655740662021465 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/en_US.ISO8859-1/HTML: locale for English output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-1', 'abstract' => 'Abstract', 'copyright notice' => 'Copyright Notice', 'contents' => 'Contents', 'chapter' => sub { return "Chapter $_[0]" }, 'appendix' => sub { return "Appendix $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, 'footnotes' => 'Footnotes', 'comments' => 'Comments', 'next' => 'next', 'previous' => 'previous', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/en_US.ISO8859-1/LaTeX0000664000175000017500000000124311655740662021667 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/en_US.ISO8859-1/LaTeX2e: locale for English output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'english', 'inputenc' => 'latin1', 'abstract' => 'Abstract', 'copyright notice' => 'Copyright Notice', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/en_US.ISO8859-1/Texinfo0000664000175000017500000000146411655740662022333 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/en_US.ISO8859-1/Texinfo: locale for English output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'The Detailed Node Listing', 'chapter' => sub { return "Chapter $_[0]" }, 'appendix' => sub { return "Appendix $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/en_US.ISO8859-1/TextOV0000664000175000017500000000156611655740662022113 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/en_US.ISO8859-1/TextOV: locale for English output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Abstract', 'copyright notice' => 'Copyright Notice', 'contents' => 'Contents', 'chapter' => sub { return "Chapter $_[0]" }, 'appendix' => sub { return "Appendix $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ca_ES.ISO8859-15/0000775000175000017500000000000011655740662021015 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/ca_ES.ISO8859-15/Text0000664000175000017500000000155211655740662021667 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ca_ES.ISO8859-15/Text: locale for Catalan output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resum', 'copyright notice' => 'Nota de Copyright', 'contents' => 'Continguts', 'chapter' => sub { return "Capítol $_[0]" }, 'appendix' => sub { return "Apèndix $_[0]" }, 'section' => sub { return "Secció $_[0]" }, 'subsection' => sub { return "Secció $_[0]" }, 'subsubsection' => sub { return "Secció $_[0]" }, 'paragraph' => sub { return "Secció $_[0]" }, 'subparagraph' => sub { return "Secció $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ca_ES.ISO8859-15/HTML0000664000175000017500000000177611655740662021517 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ca_ES.ISO8859-15/HTML: locale for Catalan output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-15', 'abstract' => 'Resum', 'copyright notice' => 'Nota de Copyright', 'contents' => 'Continguts', 'chapter' => sub { return "Capítol $_[0]" }, 'appendix' => sub { return "Apèndix $_[0]" }, 'section' => sub { return "Secció $_[0]" }, 'subsection' => sub { return "Secció $_[0]" }, 'subsubsection' => sub { return "Secció $_[0]" }, 'paragraph' => sub { return "Secció $_[0]" }, 'subparagraph' => sub { return "Secció $_[0]" }, 'footnotes' => 'Notes al peu', 'comments' => 'Comentaris', 'next' => 'següent', 'previous' => 'anterior', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ca_ES.ISO8859-15/LaTeX0000664000175000017500000000124211655740662021714 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ca_ES.ISO8859-15/LaTeX2e: locale for Catalan output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'catalan', 'inputenc' => 'latin9', 'abstract' => 'Resum', 'copyright notice' => 'Nota de Copyright', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ca_ES.ISO8859-15/Texinfo0000664000175000017500000000146211655740662022357 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ca_ES.ISO8859-15/Texinfo: locale for Catalan output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'La llista detallada de nodes', 'chapter' => sub { return "Capítol $_[0]" }, 'appendix' => sub { return "Apèndix $_[0]" }, 'section' => sub { return "Secció $_[0]" }, 'subsection' => sub { return "Secció $_[0]" }, 'subsubsection' => sub { return "Secció $_[0]" }, 'paragraph' => sub { return "Secció $_[0]" }, 'subparagraph' => sub { return "Secció $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/ca_ES.ISO8859-15/TextOV0000664000175000017500000000156111655740662022134 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/ca_ES.ISO8859-15/TextOV: locale for Catalan output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resum', 'copyright notice' => 'Nota de Copyright', 'contents' => 'Continguts', 'chapter' => sub { return "Capítol $_[0]" }, 'appendix' => sub { return "Apèndix $_[0]" }, 'section' => sub { return "Secció $_[0]" }, 'subsection' => sub { return "Secció $_[0]" }, 'subsubsection' => sub { return "Secció $_[0]" }, 'paragraph' => sub { return "Secció $_[0]" }, 'subparagraph' => sub { return "Secció $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fr_FR.UTF-8/0000775000175000017500000000000011655740662020431 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/fr_FR.UTF-8/Text0000664000175000017500000000155511655740662021306 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fr_FR.UTF-8/Text: locale for French output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Résumé', 'copyright notice' => 'Copyright', 'contents' => 'Table des matières', 'chapter' => sub { return "Chapitre $_[0]" }, 'appendix' => sub { return "Annexe $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fr_FR.UTF-8/HTML0000664000175000017500000000200411655740662021114 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fr_FR.UTF-8/HTML: locale for French output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'Résumé', 'copyright notice' => 'Copyright', 'contents' => 'Table des matières', 'chapter' => sub { return "Chapitre $_[0]" }, 'appendix' => sub { return "Annexe $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, 'footnotes' => 'Notes de bas de page', 'comments' => 'Comments', 'next' => 'suivant', 'previous' => 'précédent', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fr_FR.UTF-8/LaTeX0000664000175000017500000000122611655740662021332 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fr_FR.UTF-85/LaTeX2e: locale for French output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'french', 'inputenc' => 'utf8x', 'abstract' => 'Résumé', 'copyright notice' => 'Copyright', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fr_FR.UTF-8/Texinfo0000664000175000017500000000146411655740662021775 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fr_FR.UTF-8/Texinfo: locale for French output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'Table des matières détaillée', 'chapter' => sub { return "Chapitre $_[0]" }, 'appendix' => sub { return "Annexe $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/fr_FR.UTF-8/TextOV0000664000175000017500000000156411655740662021553 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/fr_FR.UTF-8/TextOV: locale for French output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Résumé', 'copyright notice' => 'Copyright', 'contents' => 'Table des matières', 'chapter' => sub { return "Chapitre $_[0]" }, 'appendix' => sub { return "Annexe $_[0]" }, 'section' => sub { return "Section $_[0]" }, 'subsection' => sub { return "Section $_[0]" }, 'subsubsection' => sub { return "Section $_[0]" }, 'paragraph' => sub { return "Section $_[0]" }, 'subparagraph' => sub { return "Section $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/nl_NL.ISO8859-1/0000775000175000017500000000000011655740662020760 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/nl_NL.ISO8859-1/Text0000664000175000017500000000156311655740662021634 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/nl_NL.ISO8859-1/Text: locale for Dutch output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Samenvatting', 'copyright notice' => 'Auteursrechtkennisgeving', 'contents' => 'Inhoud', 'chapter' => sub { return "Hoofdstuk $_[0]" }, 'appendix' => sub { return "Bijlage $_[0]" }, 'section' => sub { return "Sectie $_[0]" }, 'subsection' => sub { return "Sectie $_[0]" }, 'subsubsection' => sub { return "Sectie $_[0]" }, 'paragraph' => sub { return "Sectie $_[0]" }, 'subparagraph' => sub { return "Sectie $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/nl_NL.ISO8859-1/HTML0000664000175000017500000000200011655740662021437 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/nl_NL.ISO8859-1/HTML: locale for Dutch output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-1', 'abstract' => 'Samenvatting', 'copyright notice' => 'Auteursrechtkennisgeving', 'contents' => 'Inhoud', 'chapter' => sub { return "Hoofdstuk $_[0]" }, 'appendix' => sub { return "Bijlage $_[0]" }, 'section' => sub { return "Sectie $_[0]" }, 'subsection' => sub { return "Sectie $_[0]" }, 'subsubsection' => sub { return "Sectie $_[0]" }, 'paragraph' => sub { return "Sectie $_[0]" }, 'subparagraph' => sub { return "Sectie $_[0]" }, 'footnotes' => 'Voetnoten', 'comments' => 'Comments', 'next' => 'volgende', 'previous' => 'vorige', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/nl_NL.ISO8859-1/LaTeX0000664000175000017500000000125311655740662021661 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/nl_NL.ISO8859-1/LaTeX2e: locale for Dutch output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'dutch', 'inputenc' => 'latin1', 'abstract' => 'Samenvatting', 'copyright notice' => 'Auteursrechtkennisgeving', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/nl_NL.ISO8859-1/Texinfo0000664000175000017500000000146111655740662022321 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/nl_NL.ISO8859-1/Texinfo: locale for Dutch output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'De Gedetaileerde Sectielijst', 'chapter' => sub { return "Hoofdstuk $_[0]" }, 'appendix' => sub { return "Bijlage $_[0]" }, 'section' => sub { return "Sectie $_[0]" }, 'subsection' => sub { return "Sectie $_[0]" }, 'subsubsection' => sub { return "Sectie $_[0]" }, 'paragraph' => sub { return "Sectie $_[0]" }, 'subparagraph' => sub { return "Sectie $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/nl_NL.ISO8859-1/TextOV0000664000175000017500000000157211655740662022101 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/nl_NL.ISO8859-1/TextOV: locale for Dutch output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Samenvatting', 'copyright notice' => 'Auteursrechtkennisgeving', 'contents' => 'Inhoud', 'chapter' => sub { return "Hoofdstuk $_[0]" }, 'appendix' => sub { return "Bijlage $_[0]" }, 'section' => sub { return "Sectie $_[0]" }, 'subsection' => sub { return "Sectie $_[0]" }, 'subsubsection' => sub { return "Sectie $_[0]" }, 'paragraph' => sub { return "Sectie $_[0]" }, 'subparagraph' => sub { return "Sectie $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/gl_ES.ISO8859-15/0000775000175000017500000000000011655740662021034 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/gl_ES.ISO8859-15/Text0000664000175000017500000000155711655740662021713 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/gl_ES.ISO8859-15/Text: locale for Galician output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resumo', 'copyright notice' => 'Nota do Copyright', 'contents' => 'Contido', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apéndice $_[0]" }, 'section' => sub { return "Sección $_[0]" }, 'subsection' => sub { return "Sección $_[0]" }, 'subsubsection' => sub { return "Sección $_[0]" }, 'paragraph' => sub { return "Sección $_[0]" }, 'subparagraph' => sub { return "Sección $_[0]" } ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/gl_ES.ISO8859-15/HTML0000664000175000017500000000200411655740662021517 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/gl_ES.ISO8859-15/HTML: locale for Galician output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-15', 'abstract' => 'Resumo', 'copyright notice' => 'Nota do Copyright', 'contents' => 'Contido', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apéndice $_[0]" }, 'section' => sub { return "Sección $_[0]" }, 'subsection' => sub { return "Sección $_[0]" }, 'subsubsection' => sub { return "Sección $_[0]" }, 'paragraph' => sub { return "Sección $_[0]" }, 'subparagraph' => sub { return "Sección $_[0]" }, 'footnotes' => 'Notas ao pé', 'comments' => 'Comentarios', 'next' => 'seguinte', 'previous' => 'anterior' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/gl_ES.ISO8859-15/LaTeX0000664000175000017500000000124511655740662021736 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/gl_ES.ISO8859-15/LaTeX2e: locale for Galician output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'galician', 'inputenc' => 'latin9', 'abstract' => 'Resumo', 'copyright notice' => 'Nota do Copyright', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/gl_ES.ISO8859-15/Texinfo0000664000175000017500000000146511655740662022401 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/gl_ES.ISO8859-15/Texinfo: locale for Galician output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'A Lista Detallada de Nós', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apéndice $_[0]" }, 'section' => sub { return "Sección $_[0]" }, 'subsection' => sub { return "Sección $_[0]" }, 'subsubsection' => sub { return "Sección $_[0]" }, 'paragraph' => sub { return "Sección $_[0]" }, 'subparagraph' => sub { return "Sección $_[0]" } ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/gl_ES.ISO8859-15/TextOV0000664000175000017500000000156611655740662022160 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/gl_ES.ISO8859-15/TextOV: locale for Galician output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Resumo', 'copyright notice' => 'Nota do Copyright', 'contents' => 'Contido', 'chapter' => sub { return "Capítulo $_[0]" }, 'appendix' => sub { return "Apéndice $_[0]" }, 'section' => sub { return "Sección $_[0]" }, 'subsection' => sub { return "Sección $_[0]" }, 'subsubsection' => sub { return "Sección $_[0]" }, 'paragraph' => sub { return "Sección $_[0]" }, 'subparagraph' => sub { return "Sección $_[0]" } ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_ES.ISO8859-1/0000775000175000017500000000000011655740662020756 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/eu_ES.ISO8859-1/Text0000664000175000017500000000162511655740662021631 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_ES.ISO8859-1/Text: locale for Basque output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Laburpena', 'copyright notice' => 'Copyright-aren oharra', 'contents' => 'Gaien aurkibidea', 'chapter' => sub { return "$_[0]. kapitulua" }, 'appendix' =>sub { return "$_[0]. eranskina" }, 'section' => sub { return "$_[0]. atala" }, 'subsection' => sub { return "$_[0]. azpiatala" }, 'subsubsection' => sub { return "$_[0]. azpiazpiatala" }, 'paragraph' => sub { return "$_[0]. paragrafoa" }, 'subparagraph' => sub { return "$_[0]. azpiparagrafoa" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_ES.ISO8859-1/HTML0000664000175000017500000000204711655740662021450 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_ES.ISO8859-1/HTML: locale for Basque output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-1', 'abstract' => 'Laburpena', 'copyright notice' => 'Copyright-aren oharra', 'contents' => 'Gaien aurkibidea', 'chapter' => sub { return "$_[0]. kapitulua" }, 'appendix' => sub { return "$_[0]. eranskina" }, 'section' => sub { return "$_[0]. atala" }, 'subsection' => sub { return "$_[0]. azpiatala" }, 'subsubsection' => sub { return "$_[0]. azpiazpiatala" }, 'paragraph' => sub { return "$_[0]. paragrafoa" }, 'subparagraph' => sub { return "$_[0]. azpiparagrafoa" }, 'footnotes' => 'oin-oharra', 'comments' => 'iruzkina', 'next' => 'hurrengoa', 'previous' => 'aurrekoa', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_ES.ISO8859-1/LaTeX0000664000175000017500000000142111655740662021654 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_ES.ISO8859-1/LaTeX2e: locale for Basque output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'basque', 'inputenc' => 'latin1', 'abstract' => 'Laburpena', 'copyright notice' => 'Copyright-aren oharra', 'before begin document' => '\\usepackage{babel} \\renewcommand{\\vpageref}[1]{\\pageref{#1}. orrialdean} \\def\glossaryname{Glosarioa}', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_ES.ISO8859-1/Texinfo0000664000175000017500000000151211655740662022314 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_ES.ISO8859-1/Texinfo: locale for Basque output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'nodoen zerrenda zehatza', 'chapter' => sub { return "$_[0]. kapitulua" }, 'appendix' =>sub { return "$_[0]. eranskina" }, 'section' => sub { return "$_[0]. atala" }, 'subsection' => sub { return "$_[0]. azpiatala" }, 'subsubsection' => sub { return "$_[0]. azpiazpiatala" }, 'paragraph' => sub { return "$_[0]. paragrafoa" }, 'subparagraph' => sub { return "$_[0]. azpiparagrafoa" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/eu_ES.ISO8859-1/TextOV0000664000175000017500000000163411655740662022076 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/eu_ES.ISO8859-1/TextOV: locale for Basque output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Laburpena', 'copyright notice' => 'Copyright-aren oharra', 'contents' => 'Gaien aurkibidea', 'chapter' => sub { return "$_[0]. kapitulua" }, 'appendix' =>sub { return "$_[0]. eranskina" }, 'section' => sub { return "$_[0]. atala" }, 'subsection' => sub { return "$_[0]. azpiatala" }, 'subsubsection' => sub { return "$_[0]. azpiazpiatala" }, 'paragraph' => sub { return "$_[0]. paragrafoa" }, 'subparagraph' => sub { return "$_[0]. azpiparagrafoa" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/hr_HR.UTF-8/0000775000175000017500000000000011655740662020435 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/hr_HR.UTF-8/Text0000664000175000017500000000160011655740662021301 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/hr_HR.UTF-8/Text: locale for Croatian output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Sažetak', 'copyright notice' => 'Obavijest o autorskim pravima', 'contents' => 'Sadržaj', 'chapter' => sub { return "Glava $_[0]" }, 'appendix' => sub { return "Dodatak $_[0]" }, 'section' => sub { return "Poglavlje $_[0]" }, 'subsection' => sub { return "Poglavlje $_[0]" }, 'subsubsection' => sub { return "Poglavlje $_[0]" }, 'paragraph' => sub { return "Poglavlje $_[0]" }, 'subparagraph' => sub { return "Poglavlje $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/hr_HR.UTF-8/HTML0000664000175000017500000000200511655740662021121 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/hr_HR.UTF-8/HTML: locale for Croatian output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'utf-8', 'abstract' => 'Sažetak', 'copyright notice' => 'Obavijest o autorskim pravima', 'contents' => 'Sadržaj', 'chapter' => sub { return "Glava $_[0]" }, 'appendix' => sub { return "Dodatak $_[0]" }, 'section' => sub { return "Poglavlje $_[0]" }, 'subsection' => sub { return "Poglavlje $_[0]" }, 'subsubsection' => sub { return "Poglavlje $_[0]" }, 'paragraph' => sub { return "Poglavlje $_[0]" }, 'subparagraph' => sub { return "Poglavlje $_[0]" }, 'footnotes' => 'BiljeÅ¡ke', 'comments' => 'Comments', 'next' => 'dalje', 'previous' => 'natrag', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/hr_HR.UTF-8/LaTeX0000664000175000017500000000125511655740662021340 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/hr_HR.UTF-8/LaTeX2e: locale for Croatian output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'croatian', 'inputenc' => 'utf8x', 'abstract' => 'Sažetak', 'copyright notice' => 'Obavijest o autorskim pravima', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/hr_HR.UTF-8/Texinfo0000664000175000017500000000146611655740662022003 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/hr_HR.UTF-8/Texinfo: locale for Croatian output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'Detaljni popis Ävorova', 'chapter' => sub { return "Glava $_[0]" }, 'appendix' => sub { return "Dodatak $_[0]" }, 'section' => sub { return "Poglavlje $_[0]" }, 'subsection' => sub { return "Poglavlje $_[0]" }, 'subsubsection' => sub { return "Poglavlje $_[0]" }, 'paragraph' => sub { return "Poglavlje $_[0]" }, 'subparagraph' => sub { return "Poglavlje $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/hr_HR.UTF-8/TextOV0000664000175000017500000000160711655740662021555 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/hr_HR.UTF-8/TextOV: locale for Croatian output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Sažetak', 'copyright notice' => 'Obavijest o autorskim pravima', 'contents' => 'Sadržaj', 'chapter' => sub { return "Glava $_[0]" }, 'appendix' => sub { return "Dodatak $_[0]" }, 'section' => sub { return "Poglavlje $_[0]" }, 'subsection' => sub { return "Poglavlje $_[0]" }, 'subsubsection' => sub { return "Poglavlje $_[0]" }, 'paragraph' => sub { return "Poglavlje $_[0]" }, 'subparagraph' => sub { return "Poglavlje $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/Alias.pm0000664000175000017500000003641311655740662020227 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## DebianDoc_SGML/Locale/Alias.pm: locale aliases for i18n support ## ---------------------------------------------------------------------- ## Copyright (C) 1998-2004 Ardo van Rangelrooij ## ## This is free software; see the GNU General Public Licence ## version 2 or later for copying conditions. There is NO warranty. ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- ## package interface definition package DebianDoc_SGML::Locale::Alias; use strict; use vars qw( @ISA @EXPORT ); use Exporter; @ISA = qw( Exporter ); @EXPORT = qw( %locale_aliases ); ## ---------------------------------------------------------------------- ## locale alias definitions ## ## left side is the argument for -l option. ## -> use of non-standard locale value makes it easy to build HTML ## which use extension such as pt-br with the matching file name ## for plain text. ## ## right side is the data directory name. ## use vars qw( %locale_aliases ); %locale_aliases = ( 'ca' => 'ca_ES.ISO8859-1', 'ca_ES' => 'ca_ES.ISO8859-1', 'ca_ES.ISO8859-1' => 'ca_ES.ISO8859-1', 'ca-es' => 'ca_ES.iso8859-1', 'ca-es.iso8859-1' => 'ca_ES.ISO8859-1', 'ca_ES@euro' => 'ca_ES.ISO8859-15', 'ca_ES.ISO8859-15' => 'ca_ES.ISO8859-15', 'ca_ES.ISO8859-15@euro' => 'ca_ES.ISO8859-15', 'ca-es@euro' => 'ca_ES.ISO8859-15', 'ca-es.iso8859-15' => 'ca_ES.ISO8859-15', 'ca-es.iso8859-15@euro' => 'ca_ES.ISO8859-15', 'ca.UTF-8' => 'ca_ES.UTF-8', 'ca_ES.UTF-8' => 'ca_ES.UTF-8', 'ca.utf-8' => 'ca_ES.UTF-8', 'ca-es.utf-8' => 'ca_ES.UTF-8', 'cs' => 'cs_CZ.ISO8859-2', 'cs_CZ' => 'cs_CZ.ISO8859-2', 'cs_CZ.ISO8859-2' => 'cs_CZ.ISO8859-2', 'cs' => 'cs_CZ.ISO8859-2', 'cs-cz' => 'cs_CZ.ISO8859-2', 'cs-cz.iso8859-2' => 'cs_CZ.ISO8859-2', 'cs.UTF-8' => 'cs_CZ.UTF-8', 'cs_CZ.UTF-8' => 'cs_CZ.UTF-8', 'cs.utf-8' => 'cs_CZ.UTF-8', 'cs-cz.utf-8' => 'cs_CZ.UTF-8', 'da' => 'da_DK.ISO8859-1', 'da_DK' => 'da_DK.ISO8859-1', 'da_DK.ISO8859-1' => 'da_DK.ISO8859-1', 'da-dk' => 'da_DK.ISO8859-1', 'da-dk.iso8859-1' => 'da_DK.ISO8859-1', 'da.UTF-8' => 'da_DK.UTF-8', 'da_DK.UTF-8' => 'da_DK.UTF-8', 'da.utf-8' => 'da_DK.UTF-8', 'da-dk.utf-8' => 'da_DK.UTF-8', 'de' => 'de_DE.ISO8859-1', 'de_DE' => 'de_DE.ISO8859-1', 'de_DE.ISO8859-1' => 'de_DE.ISO8859-1', 'de-de' => 'de_DE.ISO8859-1', 'de-de.iso8859-1' => 'de_DE.ISO8859-1', 'de_DE@euro' => 'de_DE.ISO8859-15', 'de_DE.ISO8859-15' => 'de_DE.ISO8859-15', 'de_DE.ISO8859-15@euro' => 'de_DE.ISO8859-15', 'de-de@euro' => 'de_DE.ISO8859-15', 'de-de.iso8859-15' => 'de_DE.ISO8859-15', 'de-de.iso8859-15@euro' => 'de_DE.ISO8859-15', 'de.UTF-8' => 'de_DE.UTF-8', 'de_DE.UTF-8' => 'de_DE.UTF-8', 'de.utf-8' => 'de_DE.UTF-8', 'de-de.utf-8' => 'de_DE.UTF-8', 'en' => 'en_US.ISO8859-1', 'en_US' => 'en_US.ISO8859-1', 'en_US.ISO8859-1' => 'en_US.ISO8859-1', 'en-us' => 'en_US.ISO8859-1', 'en-us.ISO8859-1' => 'en_US.ISO8859-1', 'en_US@euro' => 'en_US.ISO8859-15', 'en_US.ISO8859-15' => 'en_US.ISO8859-15', 'en_US.ISO8859-15@euro' => 'en_US.ISO8859-15', 'en-us@euro' => 'en_US.ISO8859-15', 'en-us.iso8859-15' => 'en_US.ISO8859-15', 'en-us.iso8859-15@euro' => 'en_US.ISO8859-15', 'en.UTF-8' => 'en_US.UTF-8', 'en_US.UTF-8' => 'en_US.UTF-8', 'en.utf-8' => 'en_US.UTF-8', 'en-us.utf-8' => 'en_US.UTF-8', 'en_GB' => 'en_US.ISO8859-1', 'en_GB.ISO8859-1' => 'en_US.ISO8859-1', 'en-gb' => 'en_US.iso8859-1', 'en-gb.iso8859-1' => 'en_US.ISO8859-1', 'en_GB@euro' => 'en_US.ISO8859-15', 'en_GB.ISO8859-15' => 'en_US.ISO8859-15', 'en_GB.ISO8859-15@euro' => 'en_US.ISO8859-15', 'en-gb@euro' => 'en_US.ISO8859-15', 'en-gb.iso8859-15' => 'en_US.ISO8859-15', 'en-gb.iso8859-15@euro' => 'en_US.ISO8859-15', 'en_GB.UTF-8' => 'en_US.UTF-8', 'en-gb.utf-8' => 'en_US.UTF-8', 'es' => 'es_ES.ISO8859-1', 'es_ES' => 'es_ES.ISO8859-1', 'es_ES.ISO8859-1' => 'es_ES.ISO8859-1', 'es-es' => 'es_ES.ISO8859-1', 'es-es.iso8859-1' => 'es_ES.ISO8859-1', 'es_ES@euro' => 'es_ES.ISO8859-15', 'es_ES.ISO8859-15' => 'es_ES.ISO8859-15', 'es_ES.ISO8859-15@euro' => 'es_ES.ISO8859-15', 'es-es@euro' => 'es_ES.ISO8859-15', 'es-es.iso8859-15' => 'es_ES.ISO8859-15', 'es-es.iso8859-15@euro' => 'es_ES.ISO8859-15', 'es.UTF-8' => 'es_ES.UTF-8', 'es_ES.UTF-8' => 'es_ES.UTF-8', 'es.utf-8' => 'es_ES.UTF-8', 'es-es.utf-8' => 'es_ES.UTF-8', 'eu' => 'eu_ES.ISO8859-1', 'eu_ES' => 'eu_ES.ISO8859-1', 'eu_ES.ISO8859-1' => 'eu_ES.ISO8859-1', 'eu-es' => 'eu_ES.ISO8859-1', 'eu-es.iso8859-1' => 'eu_ES.ISO8859-1', 'eu_ES@euro' => 'eu_ES.ISO8859-15', 'eu_ES.ISO8859-15' => 'eu_ES.ISO8859-15', 'eu_ES.ISO8859-15@euro' => 'eu_ES.ISO8859-15', 'eu-es@euro' => 'eu_ES.ISO8859-15', 'eu-es.iso8859-15' => 'eu_ES.ISO8859-15', 'eu-es.iso8859-15@euro' => 'eu_ES.ISO8859-15', 'eu.UTF-8' => 'eu_ES.UTF-8', 'eu_ES.UTF-8' => 'eu_ES.UTF-8', 'eu.utf-8' => 'eu_ES.UTF-8', 'eu-es.utf-8' => 'eu_ES.UTF-8', 'eu_FR' => 'eu_FR.ISO8859-1', 'eu_FR.ISO8859-1' => 'eu_FR.ISO8859-1', 'eu-fr' => 'eu_FR.ISO8859-1', 'eu-fr.iso8859-1' => 'eu_FR.ISO8859-1', 'eu_FR@euro' => 'eu_FR.ISO8859-15', 'eu_FR.ISO8859-15' => 'eu_FR.ISO8859-15', 'eu_FR.ISO8859-15@euro' => 'eu_FR.ISO8859-15', 'eu-fr@euro' => 'eu_FR.ISO8859-15', 'eu-fr.iso8859-15' => 'eu_FR.ISO8859-15', 'eu-fr.iso8859-15@euro' => 'eu_FR.ISO8859-15', 'eu.UTF-8' => 'eu_FR.UTF-8', 'eu_FR.UTF-8' => 'eu_FR.UTF-8', 'eu.utf-8' => 'eu_FR.UTF-8', 'eu-fr.utf-8' => 'eu_FR.UTF-8', 'fi' => 'fi_FI.ISO8859-1', 'fi_FI' => 'fi_FI.ISO8859-1', 'fi_FI.ISO8859-1' => 'fi_FI.ISO8859-1', 'fi-fi' => 'fi_FI.ISO8859-1', 'fi-fi.iso8859-1' => 'fi_FI.ISO8859-1', 'fi_FI@euro' => 'fi_FI.ISO8859-15', 'fi_FI.ISO8859-15' => 'fi_FI.ISO8859-15', 'fi_FI.ISO8859-15@euro' => 'fi_FI.ISO8859-15', 'fi-fi@euro' => 'fi_FI.ISO8859-15', 'fi-fi.iso8859-15' => 'fi_FI.ISO8859-15', 'fi-fi.iso8859-15@euro' => 'fi_FI.ISO8859-15', 'fi.UTF-8' => 'fi_FI.UTF-8', 'fi_FI.UTF-8' => 'fi_FI.UTF-8', 'fi.utf-8' => 'fi_FI.UTF-8', 'fi-fi.utf-8' => 'fi_FI.UTF-8', 'fr' => 'fr_FR.ISO8859-1', 'fr_FR' => 'fr_FR.ISO8859-1', 'fr_FR.ISO8859-1' => 'fr_FR.ISO8859-1', 'fr-fr' => 'fr_FR.ISO8859-1', 'fr-fr.iso8859-1' => 'fr_FR.ISO8859-1', 'fr_FR@euro' => 'fr_FR.ISO8859-15', 'fr_FR.ISO8859-15' => 'fr_FR.ISO8859-15', 'fr_FR.ISO8859-15@euro' => 'fr_FR.ISO8859-15', 'fr-fr@euro' => 'fr_FR.ISO8859-15', 'fr-fr.iso8859-15' => 'fr_FR.ISO8859-15', 'fr-fr.iso8859-15@euro' => 'fr_FR.ISO8859-15', 'fr.UTF-8' => 'fr_FR.UTF-8', 'fr_FR.UTF-8' => 'fr_FR.UTF-8', 'fr.utf-8' => 'fr_FR.UTF-8', 'fr-fr.utf-8' => 'fr_FR.UTF-8', 'gl' => 'gl_ES.ISO8859-1', 'gl_ES' => 'gl_ES.ISO8859-1', 'gl_ES.ISO8859-1' => 'gl_ES.ISO8859-1', 'gl-es' => 'gl_ES.ISO8859-1', 'gl-es.iso8859-1' => 'gl_ES.ISO8859-1', 'gl_ES@euro' => 'gl_ES.ISO8859-15', 'gl_ES.ISO8859-15' => 'gl_ES.ISO8859-15', 'gl_ES.ISO8859-15@euro' => 'gl_ES.ISO8859-15', 'gl-es@euro' => 'gl_ES.ISO8859-15', 'gl-es.iso8859-15' => 'gl_ES.ISO8859-15', 'gl-es.iso8859-15@euro' => 'gl_ES.ISO8859-15', 'gl.UTF-8' => 'gl_ES.UTF-8', 'gl_ES.UTF-8' => 'gl_ES.UTF-8', 'gl.utf-8' => 'gl_ES.UTF-8', 'gl-es.utf-8' => 'gl_ES.UTF-8', 'hr' => 'hr_HR.ISO8859-2', 'hr_HR' => 'hr_HR.ISO8859-2', 'hr_HR.ISO8859-2' => 'hr_HR.ISO8859-2', 'hr-hr' => 'hr_HR.ISO8859-2', 'hr-hr.iso8859-2' => 'hr_HR.ISO8859-2', 'hr.UTF-8' => 'hr_HR.UTF-8', 'hr_HR.UTF-8' => 'hr_HR.UTF-8', 'hr.utf-8' => 'hr_HR.UTF-8', 'hr-hr.utf-8' => 'hr_HR.UTF-8', 'it' => 'it_IT.ISO8859-1', 'it_IT' => 'it_IT.ISO8859-1', 'it_IT.ISO8859-1' => 'it_IT.ISO8859-1', 'it-it' => 'it_IT.ISO8859-1', 'it-it.iso8859-1' => 'it_IT.ISO8859-1', 'it_IT@euro' => 'it_IT.ISO8859-15', 'it_IT.ISO8859-15' => 'it_IT.ISO8859-15', 'it_IT.ISO8859-15@euro' => 'it_IT.ISO8859-15', 'it-it@euro' => 'it_IT.ISO8859-15', 'it-it.iso8859-15' => 'it_IT.ISO8859-15', 'it-it.iso8859-15@euro' => 'it_IT.ISO8859-15', 'it.UTF-8' => 'it_IT.UTF-8', 'it_IT.UTF-8' => 'it_IT.UTF-8', 'it.utf-8' => 'it_IT.UTF-8', 'it-it.utf-8' => 'it_IT.UTF-8', 'ja' => 'ja_JP.eucJP', 'ja_JP' => 'ja_JP.eucJP', 'ja_JP.eucJP' => 'ja_JP.eucJP', 'ja_JP.ujis' => 'ja_JP.eucJP', 'ja-jp' => 'ja_JP.eucJP', 'ja-jp.eucjp' => 'ja_JP.eucJP', 'ja-jp.ujis' => 'ja_JP.eucJP', 'ja.UTF-8' => 'ja_JP.UTF-8', 'ja_JP.UTF-8' => 'ja_JP.UTF-8', 'ja.utf-8' => 'ja_JP.UTF-8', 'ja-jp.utf-8' => 'ja_JP.UTF-8', 'ko' => 'ko_KR.eucKR', 'ko_KR' => 'ko_KR.eucKR', 'ko_KR.eucKR' => 'ko_KR.eucKR', 'ko-kr' => 'ko_KR.eucKR', 'ko-kr.euckr' => 'ko_KR.eucKR', 'ko.UTF-8' => 'ko_KR.UTF-8', 'ko_KR.UTF-8' => 'ko_KR.UTF-8', 'ko.utf-8' => 'ko_KR.UTF-8', 'ko-kr.utf-8' => 'ko_KR.UTF-8', 'lt' => 'lt_LT.ISO8859-13', 'lt_LT' => 'lt_LT.ISO8859-13', 'lt_LT.ISO8859-13' => 'lt_LT.ISO8859-13', 'lt-lt' => 'lt_LT.ISO8859-13', 'lt-lt.iso8859-13' => 'lt_LT.ISO8859-13', 'lt.UTF-8' => 'lt_LT.UTF-8', 'lt_LT.UTF-8' => 'lt_LT.UTF-8', 'lt.utf-8' => 'lt_LT.UTF-8', 'lt-lt.utf-8' => 'lt_LT.UTF-8', 'nl' => 'nl_NL.ISO8859-1', 'nl_NL' => 'nl_NL.ISO8859-1', 'nl_NL.ISO8859-1' => 'nl_NL.ISO8859-1', 'nl-nl' => 'nl_NL.ISO8859-1', 'nl-nl.iso8859-1' => 'nl_NL.ISO8859-1', 'nl_NL@euro' => 'nl_NL.ISO8859-15', 'nl_NL.ISO8859-15' => 'nl_NL.ISO8859-15', 'nl_NL.ISO8859-15@euro' => 'nl_NL.ISO8859-15', 'nl-nl@euro' => 'nl_NL.ISO8859-15', 'nl-nl.iso8859-15' => 'nl_NL.ISO8859-15', 'nl-nl.iso8859-15@euro' => 'nl_NL.ISO8859-15', 'nl.UTF-8' => 'nl_NL.UTF-8', 'nl_NL.UTF-8' => 'nl_NL.UTF-8', 'nl.utf-8' => 'nl_NL.UTF-8', 'nl-nl.utf-8' => 'nl_NL.UTF-8', 'pl' => 'pl_PL.ISO8859-2', 'pl_PL' => 'pl_PL.ISO8859-2', 'pl_PL.ISO8859-2' => 'pl_PL.ISO8859-2', 'pl-pl' => 'pl_PL.ISO8859-2', 'pl-pl.iso8859-2' => 'pl_PL.ISO8859-2', 'pl.UTF-8' => 'pl_PL.UTF-8', 'pl_PL.UTF-8' => 'pl_PL.UTF-8', 'pl.utf-8' => 'pl_PL.UTF-8', 'pl-pl.utf-8' => 'pl_PL.UTF-8', 'pt_BR' => 'pt_BR.ISO8859-1', 'pt_BR.ISO8859-1' => 'pt_BR.ISO8859-1', 'pt-br' => 'pt_BR.ISO8859-1', 'pt-br.iso8859-1' => 'pt_BR.ISO8859-1', 'pt_BR.UTF-8' => 'pt_BR.UTF-8', 'pt-br.utf-8' => 'pt_BR.UTF-8', 'pt' => 'pt_PT.ISO8859-1', 'pt_PT' => 'pt_PT.ISO8859-1', 'pt_PT.ISO8859-1' => 'pt_PT.ISO8859-1', 'pt-pt' => 'pt_PT.ISO8859-1', 'pt-pt.iso8859-1' => 'pt_PT.ISO8859-1', 'pt_PT@euro' => 'pt_PT.ISO8859-15', 'pt_PT.ISO8859-15' => 'pt_PT.ISO8859-15', 'pt_PT.ISO8859-15@euro' => 'pt_PT.ISO8859-15', 'pt-pt@euro' => 'pt_PT.ISO8859-15', 'pt-pt.iso8859-15' => 'pt_PT.ISO8859-15', 'pt-pt.iso8859-15@euro' => 'pt_PT.ISO8859-15', 'pt.UTF-8' => 'pt_PT.UTF-8', 'pt_PT.UTF-8' => 'pt_PT.UTF-8', 'pt.utf-8' => 'pt_PT.UTF-8', 'pt-pt.utf-8' => 'pt_PT.UTF-8', 'ro' => 'ro_RO.ISO8859-2', 'ro_RO' => 'ro_RO.ISO8859-2', 'ro_RO.ISO8859-2' => 'ro_RO.ISO8859-2', 'ro-ro' => 'ro_RO.ISO8859-2', 'ro-ro.iso8859-2' => 'ro_RO.ISO8859-2', 'ro.UTF-8' => 'ro_RO.UTF-8', 'ro_RO.UTF-8' => 'ro_RO.UTF-8', 'ro.utf-8' => 'ro_RO.UTF-8', 'ro-ro.utf-8' => 'ro_RO.UTF-8', 'ru' => 'ru_RU.KOI8-R', 'ru_RU' => 'ru_RU.KOI8-R', 'ru_RU.KOI8-R' => 'ru_RU.KOI8-R', 'ru-ru' => 'ru_RU.KOI8-R', 'ru-ru.koi8-r' => 'ru_RU.KOI8-R', 'ru.UTF-8' => 'ru_RU.UTF-8', 'ru_RU.UTF-8' => 'ru_RU.UTF-8', 'ru.utf-8' => 'ru_RU.UTF-8', 'ru-ru.utf-8' => 'ru_RU.UTF-8', 'sk' => 'sk_SK.ISO8859-2', 'sk_SK' => 'sk_SK.ISO8859-2', 'sk_SK.ISO8859-2' => 'sk_SK.ISO8859-2', 'sk-sk' => 'sk_SK.ISO8859-2', 'sk-sk.iso8859-2' => 'sk_SK.ISO8859-2', 'sk.UTF-8' => 'sk_SK.UTF-8', 'sk_SK.UTF-8' => 'sk_SK.UTF-8', 'sk.utf-8' => 'sk_SK.UTF-8', 'sk-sk.utf-8' => 'sk_SK.UTF-8', 'sl' => 'sl_SI.ISO8859-2', 'sl_SI' => 'sl_SI.ISO8859-2', 'sl_SI.ISO8859-2' => 'sl_SI.ISO8859-2', 'sl-si' => 'sl_SI.ISO8859-2', 'sl-si.iso8859-2' => 'sl_SI.ISO8859-2', 'sl.UTF-8' => 'sl_SI.UTF-8', 'sl_SI.UTF-8' => 'sl_SI.UTF-8', 'sl.utf-8' => 'sl_SI.UTF-8', 'sl-si.utf-8' => 'sl_SI.UTF-8', 'sv' => 'sv_SE.ISO8859-1', 'sv_SE' => 'sv_SE.ISO8859-1', 'sv_SE.ISO8859-1' => 'sv_SE.ISO8859-1', 'sv-se' => 'sv_SE.ISO8859-1', 'sv-se.iso8859-1' => 'sv_SE.ISO8859-1', 'sv.UTF-8' => 'sv_SE.UTF-8', 'sv_SE.UTF-8' => 'sv_SE.UTF-8', 'sv.utf-8' => 'sv_SE.UTF-8', 'sv-se.utf-8' => 'sv_SE.UTF-8', 'tr' => 'tr_TR.ISO8859-9', 'tr_TR' => 'tr_TR.ISO8859-9', 'tr_TR.ISO8859-9' => 'tr_TR.ISO8859-9', 'tr-tr' => 'tr_TR.ISO8859-9', 'tr-tr.iso8859-9' => 'tr_TR.ISO8859-9', 'tr.UTF-8' => 'tr_TR.UTF-8', 'tr_TR.UTF-8' => 'tr_TR.UTF-8', 'tr.utf-8' => 'tr_TR.UTF-8', 'tr-tr.utf-8' => 'tr_TR.UTF-8', 'uk' => 'uk_UA.UTF-8', 'uk_UA' => 'uk_UA.UTF-8', 'uk.UTF-8' => 'uk_UA.UTF-8', 'uk_UA.UTF-8' => 'uk_UA.UTF-8', 'uk-ua' => 'uk_UA.UTF-8', 'uk.utf-8' => 'uk_UA.UTF-8', 'uk-ua.utf-8' => 'uk_UA.UTF-8', 'vi' => 'vi_VN.UTF-8', 'vi_VN' => 'vi_VN.UTF-8', 'vi.UTF-8' => 'vi_VN.UTF-8', 'vi_VN.UTF-8' => 'vi_VN.UTF-8', 'vi-vn' => 'vi_VN.UTF-8', 'vi.utf-8' => 'vi_VN.UTF-8', 'vi-vn.utf-8' => 'vi_VN.UTF-8', 'zh_CN' => 'zh_CN.GB2312', 'zh_CN.GB2312' => 'zh_CN.GB2312', 'zh-cn' => 'zh_CN.GB2312', 'zh-cn.gb2312' => 'zh_CN.GB2312', 'zh_CN.UTF-8' => 'zh_CN.UTF-8', 'zh-cn.utf-8' => 'zh_CN.UTF-8', 'zh_HK' => 'zh_TW.Big5', 'zh_HK.Big5' => 'zh_TW.Big5', 'zh-hk' => 'zh_TW.Big5', 'zh-hk.big5' => 'zh_TW.Big5', 'zh_HK.UTF-8' => 'zh_TW.UTF-8', 'zh-hk.utf-8' => 'zh_TW.UTF-8', 'zh_TW' => 'zh_TW.Big5', 'zh_TW.Big5' => 'zh_TW.Big5', 'zh-tw' => 'zh_TW.Big5', 'zh-tw.big5' => 'zh_TW.Big5', 'zh_TW.UTF-8' => 'zh_TW.UTF-8', 'zh-tw.utf-8' => 'zh_TW.UTF-8', ); ## ---------------------------------------------------------------------- ## don't forget this 1; ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/nl_NL.ISO8859-15/0000775000175000017500000000000011655740662021045 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Locale/nl_NL.ISO8859-15/Text0000664000175000017500000000156411655740662021722 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/nl_NL.ISO8859-15/Text: locale for Dutch output in plain text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Samenvatting', 'copyright notice' => 'Auteursrechtkennisgeving', 'contents' => 'Inhoud', 'chapter' => sub { return "Hoofdstuk $_[0]" }, 'appendix' => sub { return "Bijlage $_[0]" }, 'section' => sub { return "Sectie $_[0]" }, 'subsection' => sub { return "Sectie $_[0]" }, 'subsubsection' => sub { return "Sectie $_[0]" }, 'paragraph' => sub { return "Sectie $_[0]" }, 'subparagraph' => sub { return "Sectie $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/nl_NL.ISO8859-15/HTML0000664000175000017500000000200211655740662021526 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/nl_NL.ISO8859-15/HTML: locale for Dutch output in HTML format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'charset' => 'iso-8859-15', 'abstract' => 'Samenvatting', 'copyright notice' => 'Auteursrechtkennisgeving', 'contents' => 'Inhoud', 'chapter' => sub { return "Hoofdstuk $_[0]" }, 'appendix' => sub { return "Bijlage $_[0]" }, 'section' => sub { return "Sectie $_[0]" }, 'subsection' => sub { return "Sectie $_[0]" }, 'subsubsection' => sub { return "Sectie $_[0]" }, 'paragraph' => sub { return "Sectie $_[0]" }, 'subparagraph' => sub { return "Sectie $_[0]" }, 'footnotes' => 'Voetnoten', 'comments' => 'Comments', 'next' => 'volgende', 'previous' => 'vorige', ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/nl_NL.ISO8859-15/LaTeX0000664000175000017500000000125411655740662021747 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/nl_NL.ISO8859-15/LaTeX2e: locale for Dutch output in LaTeX2e format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'babel' => 'dutch', 'inputenc' => 'latin2', 'abstract' => 'Samenvatting', 'copyright notice' => 'Auteursrechtkennisgeving', 'before begin document' => '', 'after begin document' => '', 'before end document' => '', 'pdfhyperref' => 'unicode' ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/nl_NL.ISO8859-15/Texinfo0000664000175000017500000000146211655740662022407 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/nl_NL.ISO8859-15/Texinfo: locale for Dutch output in Texinfo format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'detailed' => 'De Gedetaileerde Sectielijst', 'chapter' => sub { return "Hoofdstuk $_[0]" }, 'appendix' => sub { return "Bijlage $_[0]" }, 'section' => sub { return "Sectie $_[0]" }, 'subsection' => sub { return "Sectie $_[0]" }, 'subsubsection' => sub { return "Sectie $_[0]" }, 'paragraph' => sub { return "Sectie $_[0]" }, 'subparagraph' => sub { return "Sectie $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Locale/nl_NL.ISO8859-15/TextOV0000664000175000017500000000157311655740662022167 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## Locale/nl_NL.ISO8859-15/TextOV: locale for Dutch output in overstrike text format ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- %locale = ( 'abstract' => 'Samenvatting', 'copyright notice' => 'Auteursrechtkennisgeving', 'contents' => 'Inhoud', 'chapter' => sub { return "Hoofdstuk $_[0]" }, 'appendix' => sub { return "Bijlage $_[0]" }, 'section' => sub { return "Sectie $_[0]" }, 'subsection' => sub { return "Sectie $_[0]" }, 'subsubsection' => sub { return "Sectie $_[0]" }, 'paragraph' => sub { return "Sectie $_[0]" }, 'subparagraph' => sub { return "Sectie $_[0]" }, ); ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Format/0000775000175000017500000000000012145732303016646 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Format/LaTeX.pm0000664000175000017500000004604611655740662020207 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## DebianDoc_SGML/Format/LaTeX: LaTeX output format generator ## ---------------------------------------------------------------------- ## Copyright (C) 1998-2004 Ardo van Rangelrooij ## Copyright (C) 1997 Christian Leutloff ## ## This is free software; see the GNU General Public Licence ## version 2 or later for copying conditions. There is NO warranty. ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- ## package interface definition package DebianDoc_SGML::Format::LaTeX; use strict; use vars qw( @ISA @EXPORT ); use Exporter; @ISA = ( 'Exporter' ); @EXPORT = qw (); ## ---------------------------------------------------------------------- ## import packages use Roman; use SGMLS::Output; ## ---------------------------------------------------------------------- my %locale = %DebianDoc_SGML::Format::Driver::locale; my %sdata = %DebianDoc_SGML::Format::Driver::sdata; ## ---------------------------------------------------------------------- ## paper size definitions my @paper = split( /\s/, `2>/dev/null paperconf -N` ); my $pagespec = "A4"; if ( $#paper > -1 ) { if ( $paper[0] =~ m/[ABC][0-9]/ ) { $pagespec = $paper[0]; } elsif ( $paper[0] =~ m/[letter|legal|executive]/ ) { $paper[0] =~ tr/A-Z/a-z/; $pagespec = "US" . $paper[0]; } } ## ---------------------------------------------------------------------- ## layout definitions $DebianDoc_SGML::Format::Driver::indent_level = 1; ## ---------------------------------------------------------------------- ## global variables use vars qw( $set_appendix $set_arabic ); use vars qw( $in_quote ); use vars qw( $title ); use vars qw( @author @translator ); use vars qw( $version ); use vars qw( $abstract ); use vars qw( $copyright ); use vars qw( @copyrightsummaries ); ## ---------------------------------------------------------------------- ## book output subroutines ## ---------------------------------------------------------------------- sub _output_start_book { output( "\\documentclass[10pt" ); output( ",$locale{ 'babel' }" ) if (length( $locale{ 'babel' } )); output( "]{book}\n" ); output( "\n" ); output( "\\usepackage[$locale{ 'inputenc' }]{inputenc}\n\n" ) if length( $locale{ 'inputenc' } ); output( "\\usepackage[T1]{fontenc}\n" ); output( "\n" ); output( "\\usepackage{ifpdf}\n" ); output( "\\usepackage{pifont}\n" ); output( "\\usepackage[force]{textcomp}\n" ); output( "\\usepackage{wasysym}\n" ); output( "\n" ); output( "\\usepackage{babel}\n\n" ) if length( $locale{ 'babel' } ); output( "\\usepackage{helvet}\n" ); output( "\\usepackage{palatino}\n" ); output( "\n" ); output( "\\usepackage{vmargin}\n" ); output( "\\setpapersize{$pagespec}\n" ); output( "\\setmarginsrb{10mm}{10mm}{10mm}{10mm}{12pt}{5mm}{0pt}{5mm}\n" ); output( "\n" ); output( "\\usepackage{fancyhdr}\n" ); output( "\\pagestyle{fancy}\n" ); output( "\\renewcommand{\\chaptermark}[1]{%\n" ); output( "\\markboth{\\chaptername\\ \\thechapter.\\ #1}{}}\n" ); output( "\\lhead{\\leftmark}\n" ); output( "\\chead{}\n" ); output( "\\rhead{\\thepage}\n" ); output( "\\lfoot{}\n" ); output( "\\cfoot{}\n" ); output( "\\rfoot{}\n" ); output( "\\renewcommand{\\headrulewidth}{0.4pt}\n" ); output( "\\renewcommand{\\footrulewidth}{0pt}\n" ); output( "\\fancypagestyle{plain}{%\n" ); output( "\\lhead{}\n" ); output( "\\chead{}\n" ); output( "\\rhead{\\thepage}\n" ); output( "\\lfoot{}\n" ); output( "\\cfoot{}\n" ); output( "\\rfoot{}\n" ); output( "\\renewcommand{\\headrulewidth}{0.4pt}\n" ); output( "\\renewcommand{\\footrulewidth}{0pt}}\n" ); output( "\n" ); output( "\\usepackage{paralist}\n" ); output( "\n" ); output( "\\usepackage{alltt}\n" ); output( "\n" ); output( "\\usepackage[multiple]{footmisc}\n" ); output( "\n" ); output( "\\usepackage{url}\n" ); output( "\\newcommand\\email{\\begingroup \\urlstyle{tt}\\Url}\n" ); output( "\\def\\file#1{\\texttt{\\spaceskip=1sp\\relax#1}}\n" ); output( "\n" ); output( "\\usepackage{varioref}\n" ); output( "\\vrefwarning\n" ); output( "\n" ); output( "\\ifpdf\n" ); output( "\\usepackage[colorlinks=true" ); output( ",$locale{ 'pdfhyperref' }" ) if (length( $locale{ 'pdfhyperref' } )); output( "]{hyperref}\n" ); output( "\\else\n" ); output( "\\usepackage[hypertex]{hyperref}\n" ); output( "\\fi\n" ); output( "\n" ); output( "\\parindent=0pt\n" ); output( "\\setlength{\\parskip}{%\n" ); output( "0.5\\baselineskip plus0.1\\baselineskip minus0.1\\baselineskip}\n" ); output( "\n" ); output( "\\usepackage{xspace}\n" ); output( "\n" ); output( "\\sloppy\n" ); output( "\n" ); output( "$locale{ 'before begin document' }\n" ); output( "\\begin{document}\n" ); output( "$locale{ 'after begin document' }\n" ); } sub _output_end_book { output( "\n" ); output( "$locale{ 'before end document' }\n" ); output( "\\end{document}\n"); output( "\n" ); } ## ---------------------------------------------------------------------- ## title page output subroutines ## ---------------------------------------------------------------------- sub _output_titlepag { output( "\n" ); output( "\\begin{titlepage}\n" ); output( "\n" ); output( "\\thispagestyle{empty}\n" ); output( "\n" ); output( "\\vspace*{2ex}\n" ); output( "\\begin{center}\n" ); output( "{\\Huge $title} \\\\[2ex]\n" ); output( "\\end{center}\n" ); output( "\n" ); output( "\\begin{center}\n" ); foreach ( @author ) { output( "{\\large $_ } \\\\\n" ); } output( "\\end{center}\n" ); output( "\n" ); output( "\\begin{center}\n" ); foreach ( @translator ) { output( "{\\large $_ } \\\\\n" ); } output( "\\end{center}\n" ); if ( length( $version ) ) { output( "\n" ); output( "\\vspace*{1ex}\n" ); output( "\\begin{center}\n" ); output( "$version \\\\\n" ); output( "\\end{center}\n" ); } if ( length( $abstract ) ) { output( "\n" ); output( "\\vspace*{1ex}\n" ); output( "\\begin{center}\n" ); output( "\\section*{$locale{ 'abstract' }}\n" ); output( "\\end{center}\n" ); output( "\n" ); output( $abstract ); } if ( length( $copyright ) ) { output( "\n" ); output( "\\newpage\n" ); output( "\n" ); output( "\\thispagestyle{empty}\n" ); output( "\n" ); output( "\\vspace*{1ex}\n" ); output( "\\vfill\n" ); output( "\\section*{$locale{ 'copyright notice' }}\n" ); output( "\n" ); output( $copyright ); } output( "\n" ); output( "\\end{titlepage}\n" ); } ## ---------------------------------------------------------------------- ## title output subroutines ## ---------------------------------------------------------------------- sub _output_title { $title = $_[0]; } ## ---------------------------------------------------------------------- ## author output subroutines ## ---------------------------------------------------------------------- sub _output_author { push( @author, $_[0] ); } ## ---------------------------------------------------------------------- ## translator output subroutines ## ---------------------------------------------------------------------- sub _output_translator { push( @translator, $_[0] ); } ## ---------------------------------------------------------------------- ## name output subroutines ## ---------------------------------------------------------------------- sub _output_name { output( $_[0] ); } ## ---------------------------------------------------------------------- ## version output subroutines ## ---------------------------------------------------------------------- sub _output_version { $version = $_[0]; } ## ---------------------------------------------------------------------- ## abstract output subroutines ## ---------------------------------------------------------------------- sub _output_abstract { $abstract = $_[0]; } ## ---------------------------------------------------------------------- ## copyright output subroutines ## ---------------------------------------------------------------------- sub _output_copyright { push_output( 'string' ); output( join( " \\\\\n", @copyrightsummaries ), "\n" ); output( $_[0] ); $copyright = pop_output; } sub _output_copyrightsummary { push( @copyrightsummaries, $_[0] ); } ## ---------------------------------------------------------------------- ## table of contents output subroutines ## ---------------------------------------------------------------------- sub _output_toc { output( "\n" ); output( "\\pagenumbering{roman}\n" ); output( "\\tableofcontents\n" ); } sub _output_tocentry { } ## ---------------------------------------------------------------------- ## section output subroutines ## ---------------------------------------------------------------------- sub _output_chapter { output( $_[0] ); } sub _output_appendix { output( $_[0] ); } sub _output_sect { } sub _output_sect1 { } sub _output_sect2 { } sub _output_sect3 { } sub _output_sect4 { } sub _output_heading { if ( $_[1] == -2 && ! $set_appendix ) { $set_appendix = 1; output( "\n" ); output( "\\appendix\n" ); } output( "\n" ); if ( $_[1] < 0 ) { output( "\\chapter" ); } elsif ( $_[1] == 0 ) { output( "\\section" ); } elsif ( $_[1] == 1 ) { output( "\\subsection" ); } elsif ( $_[1] == 2 ) { output( "\\subsubsection" ); } elsif ( $_[1] == 3 ) { output( "\\paragraph" ); } else { output( "\\subparagraph" ); } # disable \\NoAutoSpaceBeforeFDP within heading for french. Bug #594846 if ( $locale{ 'babel' } eq 'french' ) { $_[0] =~ s/\{\\NoAutoSpaceBeforeFDP//g ; $_[0] =~ s/\\AutoSpaceBeforeFDP\}//g ; } output( "{$_[0]}\n" ); output( "\\label{$_[3]}\n" ) if length( $_[3] ); if ( ! $set_arabic ) { $set_arabic = 1; output( "\\pagenumbering{arabic}\n" ); } } ## ---------------------------------------------------------------------- ## paragraph output subroutines ## ---------------------------------------------------------------------- sub _output_p { if ( length( $_[0] ) ) { # Before a new paragraph and after a non-compact example output( "\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact && ! $DebianDoc_SGML::Format::Driver::was_compact; $_[0] =~ s/^\s+//gm; # remove leading spaces $_[0] =~ s/\n\n+/\n/g; # no blank lines in paragraphs output( "$_[0]\n" ); } else { # This puts a newline between adjacent specials, which doesn't # do anything, but more importantly ensures that there is a # newline before a paragraph which begins with a compact special output( "\n" ) if ( $DebianDoc_SGML::Format::Driver::is_special && ! $DebianDoc_SGML::Format::Driver::is_compact && $DebianDoc_SGML::Format::Driver::will_be_compact ); } # The logic here is a bit hairy. Basically, we only change the # \parskip setting if the specified conditions are met: # set to >0 if we're not currently compact and we're just coming out # of a compact state, but we're not about to enter # one again if ( ! $DebianDoc_SGML::Format::Driver::is_compact && $DebianDoc_SGML::Format::Driver::was_compact && ( ( $DebianDoc_SGML::Format::Driver::is_special && ! $DebianDoc_SGML::Format::Driver::will_be_compact) || ! $DebianDoc_SGML::Format::Driver::is_special ) ) { output( "\\setlength{\\parskip}{%\n" ); output( "0.5\\baselineskip plus0.1\\baselineskip minus0.1\\baselineskip}\n" ); } # and set to 0 if we're about to enter a compact state, but we aren't # currently compact or leaving a compact state if ( $DebianDoc_SGML::Format::Driver::is_special && $DebianDoc_SGML::Format::Driver::will_be_compact && ! $DebianDoc_SGML::Format::Driver::is_compact && ! $DebianDoc_SGML::Format::Driver::was_compact ) { output( "\\setlength{\\parskip}{0ex}\n" ); } } ## ---------------------------------------------------------------------- ## example output subroutines ## ---------------------------------------------------------------------- sub _output_example { my $space = $DebianDoc_SGML::Format::Driver::indent_level > 0 ? " " x $DebianDoc_SGML::Format::Driver::indent_level : " "; $_[0] = " $space" . $_[0]; $_[0] =~ s/\n/\n $space/g; $_[0] =~ s/\s+$/\n/; output( "\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; output( "\\scriptsize\\begin{alltt}\n" ); output( $_[0] ); output( "\\end{alltt}\\normalsize\n" ); } ## ---------------------------------------------------------------------- ## footnote output subroutines ## ---------------------------------------------------------------------- sub _output_footnote { output( "\\footnote{$_[0]}" ); } ## ---------------------------------------------------------------------- ## comment output subroutines ## ---------------------------------------------------------------------- sub _output_comment { } ## ---------------------------------------------------------------------- ## list output subroutines ## ---------------------------------------------------------------------- sub _output_list { output( "\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; output( $DebianDoc_SGML::Format::Driver::is_compact ? "\\begin{compactitem}\n" : "\\begin{itemize}\n" ); output( $_[0] ); output( "\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; output( $DebianDoc_SGML::Format::Driver::is_compact ? "\\end{compactitem}\n" : "\\end{itemize}\n" ); } sub _output_enumlist { output( "\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; output( $DebianDoc_SGML::Format::Driver::is_compact ? "\\begin{compactenum}\n" : "\\begin{enumerate}\n" ); output( $_[0] ); output( "\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; output( $DebianDoc_SGML::Format::Driver::is_compact ? "\\end{compactenum}\n" : "\\end{enumerate}\n" ); } sub _output_taglist { output( "\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; output( $DebianDoc_SGML::Format::Driver::is_compact ? "\\begin{compactdesc}\n" : "\\begin{description}\n" ); output( $_[0] ); output( "\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; output( $DebianDoc_SGML::Format::Driver::is_compact ? "\\end{compactdesc}\n" : "\\end{description}\n" ); } sub _output_list_tag { } sub _output_enumlist_tag { } sub _output_taglist_tag { } sub _output_list_item { $_[0] =~ s/^\n//; output( "\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; output( "\\item\n" ); output( $_[0] ); } sub _output_enumlist_item { $_[0] =~ s/^\n//; my $item_counter = $DebianDoc_SGML::Format::Driver::item_counter; if ( $_[2] eq 'UPPERROMAN' ) { $item_counter = Roman( $item_counter ); } elsif ( $_[2] eq 'LOWERROMAN' ) { $item_counter = roman( $item_counter ); } output( "\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; output( "\\item[$item_counter]\n" ); output( $_[0] ); } sub _output_taglist_item { $_[0] =~ s/^\n//; output( "\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; foreach ( @{$_[1]} ) { output( "\\item[$_]\n" ); } output( "$_[0]" ); } ## ---------------------------------------------------------------------- ## emph output subroutines ## ---------------------------------------------------------------------- sub _output_em { output( "\\textit{$_[0]}" ); } sub _output_strong { output( "\\textbf{$_[0]}" ); } sub _output_var { output( "\\textit{$_[0]}" ); } sub _output_package { $_[0] =~ s/--/---/g; output( "{\\NoAutoSpaceBeforeFDP" ) if $locale{ 'babel' } eq 'french'; output( "\\texttt{$_[0]}" ); output( "\\AutoSpaceBeforeFDP}" ) if $locale{ 'babel' } eq 'french'; } sub _output_prgn { $_[0] =~ s/--/---/g; output( "{\\NoAutoSpaceBeforeFDP" ) if $locale{ 'babel' } eq 'french'; output( "\\texttt{$_[0]}" ); output( "\\AutoSpaceBeforeFDP}" ) if $locale{ 'babel' } eq 'french'; } sub _output_file { $_[0] =~ s|/| /|g; output( "\\file{$_[0]}" ); } sub _output_tt { $_[0] =~ s/--/---/g; output( "{\\NoAutoSpaceBeforeFDP" ) if $locale{ 'babel' } eq 'french'; output( "\\texttt{$_[0]}" ); output( "\\AutoSpaceBeforeFDP}" ) if $locale{ 'babel' } eq 'french'; } sub _output_qref { output( $_[0] ); } ## ---------------------------------------------------------------------- ## xref output subroutines ## ---------------------------------------------------------------------- sub _output_ref { output( "`$_[0]' \\vpageref{$_[3]}" ); } sub _output_manref { $_[0] =~ s/--/---/g; $_[0] =~ s/\\\\/\\/g; output( "{\\NoAutoSpaceBeforeFDP" ) if $locale{ 'babel' } eq 'french'; output( "\\texttt{" ); _cdata( $_[0] ); output( "($_[1])}" ); output( "\\AutoSpaceBeforeFDP}" ) if $locale{ 'babel' } eq 'french'; } sub _output_email { output( ' ' ) if ( $DebianDoc_SGML::Format::Driver::in_author || $DebianDoc_SGML::Format::Driver::in_translator ); output( "\\email{<$_[0]>}" ); } sub _output_ftpsite { output( "\\url{$_[0]}" ); } sub _output_ftppath { output( "\\path|$_[1]|" ); } sub _output_httpsite { output( "\\url{$_[0]}" ); } sub _output_httppath { output( "\\path|$_[1]|" ); } sub _output_url { _cdata( $_[1] ) if $_[1] ne ""; output( " (" ) if $_[1] ne ""; output( "\\url{" ); $DebianDoc_SGML::Format::Driver::is_argument = 1; _cdata( $_[0] ); $DebianDoc_SGML::Format::Driver::is_argument = 0; output( "}" ); output( ")" ) if $_[1] ne ""; } ## ---------------------------------------------------------------------- ## data output subroutines ## ---------------------------------------------------------------------- sub _cdata { ( $_ ) = @_; # replace backslash character s/\\/\\textbackslash/g; # escape command characters s/{/\\{/g; s/}/\\}/g; s/\$/\\\$/g; # replace backslash character s/\\textbackslash/\\textbackslash{}/g; # escape command characters s/_/\\_/g unless $DebianDoc_SGML::Format::Driver::is_argument; s/&/\\&/g; s/\#/\\\#/g; s/\%/\\\%/g; s/\^/\\textasciicircum{}/g; s/~/\\textasciitilde{}/g unless $DebianDoc_SGML::Format::Driver::is_argument; # no further replacement in examples if ( ! ( $DebianDoc_SGML::Format::Driver::is_example || $DebianDoc_SGML::Format::Driver::is_argument ) ) { # quotes if ( $in_quote && /\"/ ) { s/\"/\'\'/; $in_quote = 0; } s/\"(.*?)\"/\`\`$1\'\'/g; if ( /\"/ ) { s/\"/\`\`/; $in_quote = 1; } # dots should be ellipsis "..." s/\.\.\./\\dots{}/g; } # SDATA s/\\textbackslash{}\|(\[\w+\s*\])\\textbackslash{}\|/$sdata{ $1 }/g; output( $_ ); } sub _sdata { output( $sdata{ $_[0] } ); } ## ---------------------------------------------------------------------- ## don't forget this 1; ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Format/XML.pm0000664000175000017500000005124712145732303017655 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## DebianDoc_SGML/Format/XML: XML output format generator ## ---------------------------------------------------------------------- ## Copyright (C) 2006 Osamu Aoki ## Copyright (C) 1998-2004 Ardo van Rangelrooij ## Copyright (C) 1996 Ian Jackson ## ## This is free software; see the GNU General Public Licence ## version 2 or later for copying conditions. There is NO warranty. ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- ## package interface definition package DebianDoc_SGML::Format::XML; use strict; use vars qw( @ISA @EXPORT ); use Exporter; @ISA = ( 'Exporter' ); @EXPORT = qw (); ## ---------------------------------------------------------------------- ## import packages use File::Basename; use File::Spec; use I18N::LangTags qw( locale2language_tag ); use SGMLS::Output; use Text::Format; use URI; ## ---------------------------------------------------------------------- my %locale = %DebianDoc_SGML::Format::Driver::locale; my %cdata = %DebianDoc_SGML::Format::Driver::cdata; my %sdata = %DebianDoc_SGML::Format::Driver::sdata; # In XML, sections are sect,sect1,sect2,sect3 use vars qw( @toc_items ); @toc_items = ( 'sect1', 'sect2', 'sect3' ); ## ---------------------------------------------------------------------- ## file name definitions my $content = ''; if ( $DebianDoc_SGML::Format::Driver::opt_c ) { my $locale = $DebianDoc_SGML::Format::Driver::locale; $locale =~ s/[\.@].*//; my $language_tag = lc( locale2language_tag( $DebianDoc_SGML::Format::Driver::opt_l ) ); $language_tag = 'en' if $language_tag eq undef; my $charset = ".$locale{ 'charset' }" if length( $locale{ 'charset' } ) && $DebianDoc_SGML::Format::Driver::locale =~ m/\./; $content = ".$language_tag$charset"; } if ( $DebianDoc_SGML::Format::Driver::opt_C ) { my $language_tag = lc( locale2language_tag( $DebianDoc_SGML::Format::Driver::opt_l ) ); $language_tag = 'en' if $language_tag eq undef; $content = ".$language_tag"; } my $basename = $DebianDoc_SGML::Format::Driver::opt_b; my $prefix = ''; if ( $DebianDoc_SGML::Format::Driver::opt_b =~ m,/, ) { $basename = dirname( $DebianDoc_SGML::Format::Driver::opt_b ); $prefix = basename( $DebianDoc_SGML::Format::Driver::opt_b ) . '-'; } my $topname = ''; if ( $DebianDoc_SGML::Format::Driver::opt_1 ) { $topname = length( $DebianDoc_SGML::Format::Driver::opt_t ) ? $DebianDoc_SGML::Format::Driver::opt_t : $basename; } else { $topname = length( $DebianDoc_SGML::Format::Driver::opt_t ) ? $DebianDoc_SGML::Format::Driver::opt_t : 'index'; } my $extension = length( $DebianDoc_SGML::Format::Driver::opt_e ) ? ".$DebianDoc_SGML::Format::Driver::opt_e" : '.dbk'; my $single = $DebianDoc_SGML::Format::Driver::opt_1; ## ---------------------------------------------------------------------- ## directory definition and creation my $directory = '.'; if ( ! $DebianDoc_SGML::Format::Driver::opt_1 ) { $directory = "$basename$extension"; -d "$directory" || mkdir( "$directory", 0777 ) || die "cannot make directory \`$directory': $!\n"; } ## ---------------------------------------------------------------------- ## layout definition $DebianDoc_SGML::Format::Driver::indent_level = 1; my $text = new Text::Format; $text->columns( 79 ); $text->firstIndent( 0 ); $text->extraSpace( 1 ); ## ---------------------------------------------------------------------- ## global variables use vars qw( %next %previous ); use vars qw( $titlepag $toc ); use vars qw( $title ); use vars qw( @author @translator ); use vars qw( $version ); use vars qw( $abstract ); use vars qw( $copyright ); use vars qw( @copyrightsummary ); use vars qw( @toc_entry_id %toc_entry_chapter_id ); use vars qw( %toc_entry_name %toc_entry_level %toc_entry_fragment ); use vars qw( $chapter_id @chapter_id ); use vars qw( $chapter_type %chapter_type ); use vars qw( $chapter_num %chapter_num ); use vars qw( $chapter_title %chapter_title ); use vars qw( %chapter ); use vars qw( $section_id @section_id ); use vars qw( $section_num %section_num ); use vars qw( $section_title %section_title ); use vars qw( $section_chapter_id %section_chapter_id ); use vars qw( $subsection_id @subsection_id ); use vars qw( $subsection_num %subsection_num ); use vars qw( $subsection_title %subsection_title ); use vars qw( $subsection_chapter_id %subsection_chapter_id ); use vars qw( $footnote @footnote @footnote_chapter_id ); use vars qw( $comment @comment @comment_editor @comment_chapter_id ); ## ---------------------------------------------------------------------- ## book output subroutines ## ---------------------------------------------------------------------- sub _output_start_book { } sub _output_end_book { $chapter_id = $topname; my $file = "$prefix$chapter_id$content$extension"; push_output( 'file', File::Spec->catfile( "$directory", "$file" ) ); _html_head( "$content$extension" ); if ( ! $DebianDoc_SGML::Format::Driver::opt_1 ) { _html_tail(); pop_output(); } foreach $chapter_id ( @chapter_id ) { my $idx; $idx = $chapter_id; $idx =~ s/^ch-//; $idx =~ s/^ap-//; $idx =~ s/_/-/g; $idx =~ s/ /-/g; if ( ! $DebianDoc_SGML::Format::Driver::opt_1 ) { my $file = "$prefix$idx$content$extension"; push_output( 'file', File::Spec->catfile( "$directory", "$file" ) ); output( "\n" ); output( "\n" ); } output( $chapter{ $chapter_id } ); if ( ! $DebianDoc_SGML::Format::Driver::opt_1 ) { pop_output(); } } if ( $DebianDoc_SGML::Format::Driver::opt_1 ) { $chapter_id = $topname; _html_tail(); pop_output(); } } sub _html_head { output( "\n" ); output( "\n" ); output( "\n" ); output( '' ); output( "\n]>\n" ); output( "\n" ); my $locale = $DebianDoc_SGML::Format::Driver::locale; $locale =~ s/[\.@].*//; my $language_tag = lc( locale2language_tag( $DebianDoc_SGML::Format::Driver::opt_l ) ); $language_tag = 'en' if $language_tag eq undef; output( "\n" ); output( "\n" ); output( "$title\n" ); output( "\n" ); output( "\n" ); output( "\n" ); output( "\n" ); if ( $#author >= 0 ) { foreach ( @author ) { my $personname ; my $emailname ; $personname = $_ ; $emailname = $_ ; if ( $emailname =~ m/^.*.*<\/email>.*$/ ) { $emailname =~ s/^.*(.*)<\/email>.*$/$1/ ; } else { $emailname = ''; } $personname =~ s/.*<\/email>// ; # trim spacies and tabs $personname =~ s/^[ ]*// ; $personname =~ s/[ ]*$// ; $emailname =~ s/^[ ]*// ; $emailname =~ s/[ ]*$// ; if ( $emailname ) { output( "$personname$emailname\n" ); } else { output( "$personname\n" ); } } output( "\n" ); } if ( $#translator >= 0 ) { foreach ( @translator ) { my $personname ; my $emailname ; $personname = $_ ; $emailname = $_ ; if ( $emailname =~ m/^.*.*<\/email>.*$/ ) { $emailname =~ s/^.*(.*)<\/email>.*$/$1/ ; } else { $emailname = ''; } $personname =~ s/.*<\/email>// ; # trim spacies and tabs $personname =~ s/^[ ]*// ; $personname =~ s/[ ]*$// ; $emailname =~ s/^[ ]*// ; $emailname =~ s/[ ]*$// ; if ( $emailname ) { output( "$personname$emailname\n" ); } else { output( "$personname\n" ); } } output( "\n" ); } output( "\n" ); output( "$version\n" ); output( "\n" ); output( "" ); output( "" ); output( "\n" ); output( "\n" ); # output( $titlepag ) if length( $titlepag ); if ( length( $abstract ) ) { output( "\n" ); output( "\n" ); output( $abstract ); output( "\n" ); } if ( length( $copyright ) ) { output( "\n" ); foreach my $copyline ( @copyrightsummary ) { my $year; $copyline =~ s/copyright//i; $copyline =~ s/©//; $year = $copyline; $year =~ s/[A-Za-z<].*$//; $year =~ s/^[ ]*//; $year =~ s/[ ]*$//; output( "" ); output( "" ); output( "$year" ); output( "" ); output( "" ); $copyline =~ s/^[^A-Za-z<]*([A-Za-z<].*)$/$1/g; $copyline =~ s/// ; $copyline =~ s/<\/email>// ; $copyline =~ s/^[ ]*// ; $copyline =~ s/[ ]*$// ; output( $copyline ); output( "" ); output( "\n" ); } output( "\n" ); output( $copyright ); output( "\n" ); } output( "\n" ); output( "\n" ); output( "\n" ); if ( ! $DebianDoc_SGML::Format::Driver::opt_1 ) { output( "\n" ); foreach my $id ( @chapter_id ) { my $idx = $id; $idx =~ s/^ch-//; $idx =~ s/^ap-//; $idx =~ s/_/-/g; $idx =~ s/ /-/g; output( "\n" ); } output( "\n" ); output( "\n" ); } output( "\n" ); } sub _html_tail { output( "\n" ); output( "\n" ); output( "\n" ); } ## ---------------------------------------------------------------------- ## title page output subroutines ## ---------------------------------------------------------------------- sub _output_titlepag { # push_output( 'string' ); # $titlepag = pop_output; } ## ---------------------------------------------------------------------- ## title output subroutines ## ---------------------------------------------------------------------- sub _output_title { $title = $_[0]; } ## ---------------------------------------------------------------------- ## author output subroutines ## ---------------------------------------------------------------------- sub _output_author { push( @author, $_[0] ); } ## ---------------------------------------------------------------------- ## translator output subroutines ## ---------------------------------------------------------------------- sub _output_translator { push( @translator, $_[0] ); } ## ---------------------------------------------------------------------- ## name output subroutines ## ---------------------------------------------------------------------- sub _output_name { output( $_[0] ); } ## ---------------------------------------------------------------------- ## version output subroutines ## ---------------------------------------------------------------------- sub _output_version { $version = $_[0]; } ## ---------------------------------------------------------------------- ## output_titlepagabstract output subroutines ## ---------------------------------------------------------------------- sub _output_abstract { # # Remove

tag to work with debiandoc # $_[0] =~ s/^

//; # $_[0] =~ s/<\/p>$//; # $_[0] =~ s/^\n//; # $_[0] =~ s/\n$//; $abstract = $_[0]; } ## ---------------------------------------------------------------------- ## copyright output subroutines ## ---------------------------------------------------------------------- sub _output_copyright { push_output( 'string' ); output( $_[0] ); $copyright = pop_output; } sub _output_copyrightsummary { push( @copyrightsummary, $_[0] ); } ## ---------------------------------------------------------------------- ## table of contents output subroutines ## ---------------------------------------------------------------------- sub _output_toc { } sub _output_tocentry { } ## ---------------------------------------------------------------------- ## section output subroutines ## ---------------------------------------------------------------------- sub _output_chapter { $chapter{ $chapter_id } = $_[0] . "\n\n"; $chapter_title{ $chapter_id } = $chapter_title; $chapter_num{ $chapter_id } = $chapter_num; $chapter_type{ $chapter_id } = $chapter_type; push( @chapter_id, $chapter_id ); } sub _output_appendix { $chapter{ $chapter_id } = $_[0] . "\n\n"; $chapter_title{ $chapter_id } = $chapter_title; $chapter_num{ $chapter_id } = $chapter_num; $chapter_type{ $chapter_id } = $chapter_type; push( @chapter_id, $chapter_id ); } sub _output_sect { if ( $DebianDoc_SGML::Format::Driver::opt_S ) { output( "\n\n" ); } else { output( "\n\n" ); } } sub _output_sect1 { if ( $DebianDoc_SGML::Format::Driver::opt_S ) { output( "\n\n" ); } else { output( "\n\n" ); } } sub _output_sect2 { if ( $DebianDoc_SGML::Format::Driver::opt_S ) { output( "\n\n" ); } else { output( "\n\n" ); } } sub _output_sect3 { if ( $DebianDoc_SGML::Format::Driver::opt_S ) { output( "\n\n" ); } else { output( "\n\n" ); } } sub _output_sect4 { if ( $DebianDoc_SGML::Format::Driver::opt_S ) { output( "\n\n" ); } else { output( "\n\n" ); } } sub _output_heading { if ( $_[1] < 0 ) { if ( length( $_[0] ) ) { $chapter_id = $_[3]; $chapter_type = ( $_[2] =~ m/^[A-Z]$/ ? 'appendix' : 'chapter'); $chapter_num = $_[2]; $chapter_title = $_[0]; } my $idx; $idx=$_[3]; $idx =~ s/^ch-//; $idx =~ s/^ap-//; $idx =~ s/_/-/g; $idx =~ s/ /-/g; output( "" ) if $_[1] == -1; output( "" ) if $_[1] == -2; # output( "" ) if $_[1] == -3; # output( "" ) if $_[1] == -4; output( "" ); output( "$_[0]" ); output( "\n" ); } else { my $xmlsectid = $_[1] + 1; my $idx; $idx=$_[3]; $idx =~ s/^s-//; $idx =~ s/_/-/g; $idx =~ s/ /-/g; if ( $DebianDoc_SGML::Format::Driver::opt_S ) { output( "" ); } else { output( "

" ); } if ( length( $_[0] ) ) { output( "" ); output( $_[0] ); output( "\n" ); } } } ## ---------------------------------------------------------------------- ## paragraph output subroutines ## ---------------------------------------------------------------------- sub _output_p { if ( length( $_[0] ) ) { output( "\n" ); output( $text->format( "$_[0]\n" ) ); output( "\n" ); } } ## ---------------------------------------------------------------------- ## example output subroutines ## ---------------------------------------------------------------------- sub _output_example { $_[0] =~ s/\s+$/\n/; # $_[0] =~ s/^\W*$//; # remove white space only first line output( "\n" ); output( $_[0] ); output( "" ); output( "\n" ); } ## ---------------------------------------------------------------------- ## footnote output subroutines ## ---------------------------------------------------------------------- sub _output_footnotes { } sub _output_footnote { output( "" ); output( $_[0] ); output( "" ); } ## ---------------------------------------------------------------------- ## comment output subroutines ## ---------------------------------------------------------------------- sub _output_comments { } sub _output_comment { output( "" ); output( $_[0] ); output( "" ); } ## ---------------------------------------------------------------------- ## list output subroutines ## ---------------------------------------------------------------------- sub _output_list { output( "\n" ); output( $_[0] ); output( "" ); output( "\n" ); } sub _output_enumlist { output( "\n" ); output( $_[0] ); output( "" ); output( "\n" ); } sub _output_taglist { output( "\n" ); output( $_[0] ); output( "" ); output( "\n" ); } sub _output_list_tag { } sub _output_enumlist_tag { } sub _output_taglist_tag { } sub _output_list_item { # $_[0] =~ s/^\n//; # $_[0] =~ s/\n$//; # $_[0] =~ s/^

//; # $_[0] =~ s/<\/p>$//; output( "\n" ); output( $_[0] ); output( "\n" ); } sub _output_enumlist_item { # $_[0] =~ s/^\n//; # $_[0] =~ s/^

\n//; output( "\n" ); output( $_[0] ); output( "\n" ); } sub _output_taglist_item { # $_[0] =~ s/^\n//; # $_[0] =~ s/^

\n//; output( "\n" ); foreach ( @{$_[1]} ) { output( "" . $_ . "\n" ); } output( "\n" ); output( $_[0] ); output( "\n" ); output( "\n" ); } ## ---------------------------------------------------------------------- ## emph output subroutines ## ---------------------------------------------------------------------- sub _output_em { output( "$_[0]" ); } sub _output_strong { output( "$_[0]" ); # output( "$_[0]" ); } sub _output_var { output( "$_[0]" ); } sub _output_package { output( "$_[0]" ); } sub _output_prgn { output( "$_[0]" ); } sub _output_file { output( "$_[0]" ); # directory } sub _output_tt { output( "$_[0]" ); } sub _output_qref { my $idx = $_[2]; $idx =~ s/^ch-//; $idx =~ s/^ap-//; $idx =~ s/^s-//; $idx =~ s/_/-/g; $idx =~ s/ /-/g; output( "$_[0]" ); } ## ---------------------------------------------------------------------- ## xref output subroutines ## ---------------------------------------------------------------------- sub _output_ref { my $idx = $_[3]; $idx =~ s/^ch-//; $idx =~ s/^ap-//; $idx =~ s/^s-//; $idx =~ s/_/-/g; $idx =~ s/ /-/g; output( "" ); } sub _output_manref { output( "$_[0]$_[1]" ); } sub _output_email { if ( $DebianDoc_SGML::Format::Driver::in_author || $DebianDoc_SGML::Format::Driver::in_translator ) { output( " " ); output( $_[0] ); output( "" ); } else { output( "" ); output( $_[0] ); output( "" ); } } sub _output_ftpsite { my $url = URI->new( $_[0] ); output( "ftp://$url" ); } sub _output_ftppath { _output_url( "ftp://$_[0]$_[1]", $_[1] ); } sub _output_httpsite { my $url = URI->new( $_[0] ); output( "http://$url" ); } sub _output_httppath { _output_url( "http://$_[0]$_[1]", $_[1] ); } sub _output_url { my $url = URI->new( _to_cdata( $_[0] ) ); $_[1] = $_[0] if $_[1] eq ""; output( "" ); _cdata( $_[1] ); output( "" ); } ## ---------------------------------------------------------------------- ## data output subroutines ## ---------------------------------------------------------------------- sub _to_cdata { ( $_ ) = @_; # SDATA s/\\\|(\[\w+\s*\])\\\|/$sdata{ $1 }/g; return $_; } sub _cdata { output( _to_cdata( $_[0] ) ); } sub _sdata { output( $sdata{ $_[0] } ); } ## ---------------------------------------------------------------------- ## don't forget this 1; ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Format/HTML.pm0000664000175000017500000006353712145732303017766 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## DebianDoc_SGML/Format/HTML: HTML output format generator ## ---------------------------------------------------------------------- ## Copyright (C) 1998-2004 Ardo van Rangelrooij ## Copyright (C) 1996 Ian Jackson ## ## This is free software; see the GNU General Public Licence ## version 2 or later for copying conditions. There is NO warranty. ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- ## package interface definition package DebianDoc_SGML::Format::HTML; use strict; use vars qw( @ISA @EXPORT ); use Exporter; @ISA = ( 'Exporter' ); @EXPORT = qw (); ## ---------------------------------------------------------------------- ## import packages use File::Basename; use File::Spec; use I18N::LangTags qw( locale2language_tag ); use SGMLS::Output; use Text::Format; use URI; ## ---------------------------------------------------------------------- my %locale = %DebianDoc_SGML::Format::Driver::locale; my %cdata = %DebianDoc_SGML::Format::Driver::cdata; my %sdata = %DebianDoc_SGML::Format::Driver::sdata; ## ---------------------------------------------------------------------- ## file name definitions my $content = ''; if ( $DebianDoc_SGML::Format::Driver::opt_c ) { my $locale = $DebianDoc_SGML::Format::Driver::locale; $locale =~ s/[\.@].*//; my $language_tag = lc( locale2language_tag( $DebianDoc_SGML::Format::Driver::opt_l ) ); $language_tag = 'en' if $language_tag eq undef; my $charset = ".$locale{ 'charset' }" if length( $locale{ 'charset' } ) && $DebianDoc_SGML::Format::Driver::locale =~ m/\./; $content = ".$language_tag$charset"; } if ( $DebianDoc_SGML::Format::Driver::opt_C ) { my $language_tag = lc( locale2language_tag( $DebianDoc_SGML::Format::Driver::opt_l ) ); $language_tag = 'en' if $language_tag eq undef; $content = ".$language_tag"; } my $basename = $DebianDoc_SGML::Format::Driver::opt_b; my $prefix = ''; if ( $DebianDoc_SGML::Format::Driver::opt_b =~ m,/, ) { $basename = dirname( $DebianDoc_SGML::Format::Driver::opt_b ); $prefix = basename( $DebianDoc_SGML::Format::Driver::opt_b ) . '-'; } my $topname = length( $DebianDoc_SGML::Format::Driver::opt_t ) ? $DebianDoc_SGML::Format::Driver::opt_t : 'index'; my $extension = length( $DebianDoc_SGML::Format::Driver::opt_e ) ? ".$DebianDoc_SGML::Format::Driver::opt_e" : '.html'; my $single = $DebianDoc_SGML::Format::Driver::opt_1; ## ---------------------------------------------------------------------- ## directory definition and creation my $directory = "$basename$extension"; -d "$directory" || mkdir( "$directory", 0777 ) || die "cannot make directory \`$directory': $!\n"; ## ---------------------------------------------------------------------- ## layout definition $DebianDoc_SGML::Format::Driver::indent_level = 1; my $text = new Text::Format; $text->columns( 79 ); $text->firstIndent( 0 ); $text->extraSpace( 1 ); ## ---------------------------------------------------------------------- ## global variables use vars qw( %next %previous ); use vars qw( $titlepag $toc ); use vars qw( $title ); use vars qw( @author @translator ); use vars qw( $version ); use vars qw( $abstract ); use vars qw( $copyright ); use vars qw( @copyrightsummary ); use vars qw( @toc_entry_id %toc_entry_chapter_id ); use vars qw( %toc_entry_name %toc_entry_level %toc_entry_fragment ); use vars qw( $chapter_id @chapter_id ); use vars qw( $chapter_type %chapter_type ); use vars qw( $chapter_num %chapter_num ); use vars qw( $chapter_title %chapter_title ); use vars qw( %chapter ); use vars qw( $section_id @section_id ); use vars qw( $section_num %section_num ); use vars qw( $section_title %section_title ); use vars qw( $section_chapter_id %section_chapter_id ); use vars qw( $subsection_id @subsection_id ); use vars qw( $subsection_num %subsection_num ); use vars qw( $subsection_title %subsection_title ); use vars qw( $subsection_chapter_id %subsection_chapter_id ); use vars qw( $footnote @footnote @footnote_chapter_id ); use vars qw( $comment @comment @comment_editor @comment_chapter_id ); use vars qw( $need_hr ); ## ---------------------------------------------------------------------- ## book output subroutines ## ---------------------------------------------------------------------- sub _output_start_book { } sub _output_end_book { _output_footnotes() if ( @footnote ); _output_comments() if ( @comment ); my $next = $chapter_id[ $#chapter_id ]; my $previous = $chapter_id[ $#chapter_id ]; foreach $chapter_id ( "$topname", @chapter_id ) { $previous{ $chapter_id } = $previous; $previous = $chapter_id; $next{ $next } = $chapter_id; $next = $chapter_id; } if ( $DebianDoc_SGML::Format::Driver::opt_1 ) { $chapter_id = $topname; my $file = "$prefix$chapter_id$content$extension"; push_output( 'file', File::Spec->catfile( "$directory", "$file" ) ); _html_head(); } { $chapter_id = $topname; if ( ! $DebianDoc_SGML::Format::Driver::opt_1 ) { my $file = "$prefix$chapter_id$content$extension"; push_output( 'file', File::Spec->catfile( "$directory", "$file" ) ); _html_head(); } _navigation( $chapter_id ); output( $titlepag ) if length( $titlepag ); output( $toc ) if length( $toc ); if ( ! $DebianDoc_SGML::Format::Driver::opt_1 ) { _navigation(); _html_tail(); pop_output(); } } foreach $chapter_id ( @chapter_id ) { if ( ! $DebianDoc_SGML::Format::Driver::opt_1 ) { my $file = "$prefix$chapter_id$content$extension"; push_output( 'file', File::Spec->catfile( "$directory", "$file" ) ); _html_head( $chapter_title{ $chapter_id } ); } _navigation( $chapter_id ); output( $chapter{ $chapter_id } ); if ( ! $DebianDoc_SGML::Format::Driver::opt_1 ) { _navigation(); _html_tail(); pop_output(); } } if ( length( $footnote ) ) { $chapter_id = 'footnotes'; if ( ! $DebianDoc_SGML::Format::Driver::opt_1 ) { my $file = "$prefix$chapter_id$content$extension"; push_output( 'file', File::Spec->catfile( "$directory", "$file" ) ); _html_head( $locale{ $chapter_id } ); } output( $footnote ); if ( ! $DebianDoc_SGML::Format::Driver::opt_1 ) { _html_tail(); pop_output(); } } if ( length( $comment ) ) { $chapter_id = 'comments'; if ( ! $DebianDoc_SGML::Format::Driver::opt_1 ) { my $file = "$prefix$chapter_id$content$extension"; push_output( 'file', File::Spec->catfile( "$directory", "$file" ) ); _html_head( $locale{ $chapter_id } ); } output( $comment ); if ( ! $DebianDoc_SGML::Format::Driver::opt_1 ) { _html_tail(); pop_output(); } } if ( $DebianDoc_SGML::Format::Driver::opt_1 ) { $chapter_id = $topname; _navigation(); _html_tail(); pop_output(); } } sub _html_head { my ( $pagetitle ) = @_; if ( length( $pagetitle ) ) { $pagetitle = "$title - $pagetitle"; } else { $pagetitle = $title; } $pagetitle =~ s/\<[^<>]*\>//g; ### WRONG !!! output( "\n" ); output( "\n" ); output( "\n" ); output( "\n" ); output( "\n" ); output( "\n" ); output( "\n" ) if length( $locale{ 'charset' } ); output( "\n" ); output( "$pagetitle\n" ); if ( ! $DebianDoc_SGML::Format::Driver::opt_L ) { output( "\n" ); { my $path = $DebianDoc_SGML::Format::Driver::opt_1 ? "#$topname" : "$prefix$topname$content$extension"; output( "\n" ); if ( ! $DebianDoc_SGML::Format::Driver::opt_1 ) { $path = "$prefix$previous{ $chapter_id }$content$extension"; output( "\n" ); $path = "$prefix$next{ $chapter_id }$content$extension"; output( "\n" ); } $path = $DebianDoc_SGML::Format::Driver::opt_1 ? '' : "$prefix$topname$content$extension"; output( "\n" ); $path = $DebianDoc_SGML::Format::Driver::opt_1 ? '' : "$prefix$topname$content$extension"; output( "\n" ); } foreach my $id ( @chapter_id ) { my $path = $DebianDoc_SGML::Format::Driver::opt_1 ? "#$id" : "$prefix$id$content$extension"; my $title = "$chapter_num{ $id } $chapter_title{ $id }"; $title =~ s/<[^>]*>//g; output( "\n" ); } foreach my $id ( @section_id ) { my $path = "$prefix$section_chapter_id{ $id }$content$extension" if ! $DebianDoc_SGML::Format::Driver::opt_1; my $title = "$section_num{ $id } $section_title{ $id }"; $title =~ s/<[^>]*>//g; output( "\n" ); } foreach my $id ( @subsection_id ) { my $path = "$prefix$subsection_chapter_id{ $id }$content$extension" if ! $DebianDoc_SGML::Format::Driver::opt_1; my $title = "$subsection_num{ $id } $subsection_title{ $id }"; $title =~ s/<[^>]*>//g; output( "\n" ); } } output( "\n" ); output( "\n" ); output( "\n" ); output( "\n" ); } sub _navigation { output( "\n" ); output( "

\n" ) if length( $_[0] ); output( "
\n" ); output( "\n" ); output( "

\n" ); output( "[ " ); _output_ref( $locale{ 'previous' }, '', $previous{ $chapter_id }, $previous{ $chapter_id } ); output( " ]\n" ); output( "[ " ); _output_ref( $locale{ 'contents' }, '', $topname, 'contents' ); output( " ]\n" ); foreach my $id ( @chapter_id ) { $chapter_num = $chapter_num{ $id }; if ( length( $chapter_num ) ) { output( "[ " ); if ( $id eq $chapter_id ) { output( $chapter_num ); } else { _output_ref( $chapter_num, '', $id, $id ); } output( " ]\n" ); } } output( "[ " ); _output_ref( $locale{ 'next' }, '', $next{ $chapter_id }, $next{ $chapter_id } ); output( " ]\n" ); output( "

\n" ); } sub _html_tail { output( "\n" ); output( "
\n" ); output( "\n" ); output( "

\n" ); output( "$title\n" ); output( "

\n" ); output( "\n" ); output( "
\n" ); if ( length( $version ) ) { output( "$version
\n" ); output( "
\n" ); } if ( $#author >= 0 ) { foreach ( @author ) { output( "$_
\n" ); } output( "
\n" ); } if ( $#translator >= 0 ) { foreach ( @translator ) { output( "$_
\n" ); } output( "
\n" ); } output( "
\n" ); output( "
\n" ); output( "\n" ); output( "\n" ); output( "\n" ); output( "\n" ); output( "\n" ); } ## ---------------------------------------------------------------------- ## title page output subroutines ## ---------------------------------------------------------------------- sub _output_titlepag { push_output( 'string' ); _output_heading( '', -3, '', $topname ); if ( length( $abstract ) ) { _output_heading( $locale{ 'abstract' }, 0, '', 'abstract' ); output( $abstract ); } if ( length( $copyright ) ) { _output_heading( $locale{ 'copyright notice' }, 0, '', 'copyright' ); output( $copyright ); } $titlepag = pop_output; } ## ---------------------------------------------------------------------- ## title output subroutines ## ---------------------------------------------------------------------- sub _output_title { $title = $_[0]; } ## ---------------------------------------------------------------------- ## author output subroutines ## ---------------------------------------------------------------------- sub _output_author { push( @author, $_[0] ); } ## ---------------------------------------------------------------------- ## translator output subroutines ## ---------------------------------------------------------------------- sub _output_translator { push( @translator, $_[0] ); } ## ---------------------------------------------------------------------- ## name output subroutines ## ---------------------------------------------------------------------- sub _output_name { output( $_[0] ); } ## ---------------------------------------------------------------------- ## version output subroutines ## ---------------------------------------------------------------------- sub _output_version { $version = $_[0]; } ## ---------------------------------------------------------------------- ## abstract output subroutines ## ---------------------------------------------------------------------- sub _output_abstract { $abstract = $_[0]; } ## ---------------------------------------------------------------------- ## copyright output subroutines ## ---------------------------------------------------------------------- sub _output_copyright { push_output( 'string' ); output( "\n" ); output( "

\n" ); output( join( "
\n", @copyrightsummary ), "\n" ); output( "

\n" ); output( $_[0] ); $copyright = pop_output; } sub _output_copyrightsummary { push( @copyrightsummary, $_[0] ); } ## ---------------------------------------------------------------------- ## table of contents output subroutines ## ---------------------------------------------------------------------- sub _output_toc { $chapter_id = ''; push_output( 'string' ); _output_heading( $locale{ 'contents' }, 0, '', 'contents' ); my $toc_level = -1; output( "\n" ); output( "
    \n" ); foreach my $toc_entry_id ( @toc_entry_id ) { my $toc_entry_level = $toc_entry_level{ $toc_entry_id }; if ( $toc_level > $toc_entry_level ) { output( "\n" ); while ( $toc_level > $toc_entry_level ) { output( " " x ( $toc_level + 1 ) ); output( "
\n" ); $toc_level += -1 ; } } elsif ( $toc_level < $toc_entry_level ) { output( "\n" ); output( " " x ( $toc_entry_level + 1 ) ); output( "
    \n" x ( $toc_entry_level - $toc_level ) ); } elsif ( $toc_level > -1 ) { output( "\n" ); } output( " " x ( $toc_entry_level + 1 ) ); output( "
  • " ); _output_ref( "$toc_entry_id $toc_entry_name{ $toc_entry_id }", '', $toc_entry_chapter_id{ $toc_entry_id }, $toc_entry_fragment{ $toc_entry_id } ); $toc_level = $toc_entry_level; } output( "
  • \n" ); while ( $toc_level > -1 ) { output( " " x ( $toc_level + 1 ) ); output( "
\n" ); $toc_level += -1 ; } output( "\n" ); $toc = pop_output; } sub _output_tocentry { $chapter_id = $_[3] if $_[1] == -1; if ( $_[1] == 0 ) { $section_id = $_[3]; $section_num{ $section_id } = $_[2]; $section_title{ $section_id } = $_[0]; $section_chapter_id{ $section_id } = $chapter_id; push( @section_id, $section_id ); } if ( $_[1] > 0 ) { $subsection_id = $_[3]; $subsection_num{ $subsection_id } = $_[2]; $subsection_title{ $subsection_id } = $_[0]; $subsection_chapter_id{ $subsection_id } = $chapter_id; push( @subsection_id, $subsection_id ); } return if $_[1] > $DebianDoc_SGML::Format::Driver::toc_detail; push( @toc_entry_id, $_[2] ); $toc_entry_chapter_id{ $_[2] } = $chapter_id; $toc_entry_name{ $_[2] } = $_[0]; $toc_entry_level{ $_[2] } = $_[1]; $toc_entry_fragment{ $_[2] } = $_[3]; } ## ---------------------------------------------------------------------- ## section output subroutines ## ---------------------------------------------------------------------- sub _output_chapter { $chapter{ $chapter_id } = $_[0]; $chapter_title{ $chapter_id } = $chapter_title; $chapter_num{ $chapter_id } = $chapter_num; $chapter_type{ $chapter_id } = $chapter_type; push( @chapter_id, $chapter_id ); } sub _output_appendix { $chapter{ $chapter_id } = $_[0]; $chapter_title{ $chapter_id } = $chapter_title; $chapter_num{ $chapter_id } = $chapter_num; $chapter_type{ $chapter_id } = $chapter_type; push( @chapter_id, $chapter_id ); } sub _output_sect { } sub _output_sect1 { } sub _output_sect2 { } sub _output_sect3 { } sub _output_sect4 { } sub _output_heading { if ( $_[1] < 0 ) { if ( length( $_[0] ) ) { $chapter_id = $_[3]; $chapter_type = ( $_[2] =~ m/^[A-Z]$/ ? 'appendix' : 'chapter'); $chapter_num = $_[2]; $chapter_title = $_[0]; } output( "\n" ); output( "
\n" ); output( "\n" ); output( "

\n" ); output( "$title\n" ); output( "
" ) if $_[1] > -4; output( $locale{ $chapter_type } ) if $_[1] == -3; output( $locale{ $chapter_type }( $_[2] ) ) if $_[1] > -3; output( " - $_[0]" ) if length( $_[0] ); output( "\n" ) if $_[1] eq -1; output( "

\n" ); $need_hr = 1; } else { output( "\n" ); output( "
\n" ); output( "\n" ); output( "" ); output( "$_[2] " ) if length( $_[2] ); output( $_[0] ); output( "\n" ); $need_hr = 0 } } ## ---------------------------------------------------------------------- ## paragraph output subroutines ## ---------------------------------------------------------------------- sub _output_p { if ( $need_hr ) { output( "\n" ); output( "
\n" ); $need_hr = 0; } if ( length( $_[0] ) ) { output( "\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; output( "

\n" ); output( $text->format( "$_[0]\n" ) ); output( "

\n" ); } else { output( "\n" ) if ( $DebianDoc_SGML::Format::Driver::is_special && ! $DebianDoc_SGML::Format::Driver::is_compact && $DebianDoc_SGML::Format::Driver::will_be_compact ); } } ## ---------------------------------------------------------------------- ## example output subroutines ## ---------------------------------------------------------------------- sub _output_example { $_[0] = " " . $_[0]; $_[0] =~ s/\n/\n /g; $_[0] =~ s/\s+$/\n/; output( "\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; output( "
\n" );
    output( $_[0] );
    output( "
\n" ); } ## ---------------------------------------------------------------------- ## footnote output subroutines ## ---------------------------------------------------------------------- sub _output_footnotes { push_output( 'string' ); $chapter_type = 'footnotes'; _output_heading( '', -3, '', '' ); my $footnoteref = 1; foreach my $footnote ( @footnote ) { output( "\n" ); output( "

" ); _output_ref( $footnoteref, '', $footnote_chapter_id[$footnoteref - 1], "fr$footnoteref", "name=\"f$footnoteref\"" ); output( "

\n" ); output( "\n" ); output( $footnote ); $footnoteref++; } $footnote = pop_output; } sub _output_footnote { push( @footnote, $_[0] ); push( @footnote_chapter_id, $chapter_id ); my $footnoteref = scalar( @footnote ); _output_ref( $footnoteref, '', 'footnotes', "f$footnoteref", "name=\"fr$footnoteref\"", "]", "[" ); } ## ---------------------------------------------------------------------- ## comment output subroutines ## ---------------------------------------------------------------------- sub _output_comments { push_output( 'string' ); $chapter_type = 'comments'; _output_heading( '', -3, '', '' ); my $commentref = 1; foreach my $comment ( @comment ) { my $editor = $comment_editor[$commentref - 1]; $editor = " ($editor)" if length( $editor ); output( "\n" ); output( "

" ); _output_ref( "c$commentref", '', $comment_chapter_id[$commentref - 1], "cr$commentref", "name=\"c$commentref\"", $editor ); output( "

\n" ); output( "\n" ); output( $comment ); $commentref++; } $comment = pop_output; } sub _output_comment { push( @comment, $_[0] ); push( @comment_editor, $_[1] ); push( @comment_chapter_id, $chapter_id ); my $commentref = scalar( @comment ); _output_ref( "c$commentref", '', 'comments', "c$commentref", "name=\"cr$commentref\"", "]", "[" ); } ## ---------------------------------------------------------------------- ## list output subroutines ## ---------------------------------------------------------------------- sub _output_list { output( "
    \n" ) if $DebianDoc_SGML::Format::Driver::is_compact; output( $_[0] ); output( "
\n" ) if $DebianDoc_SGML::Format::Driver::is_compact; } sub _output_enumlist { my $type = '1'; if ( $_[2] eq 'UPPERALPHA' ) { $type = 'A'; } elsif ( $_[2] eq 'LOWERALPHA' ) { $type = 'a'; } elsif ( $_[2] eq 'UPPERROMAN' ) { $type = 'I'; } elsif ( $_[2] eq 'LOWERROMAN' ) { $type = 'i'; } if ( $DebianDoc_SGML::Format::Driver::opt_x ) { output( "
    \n" ); } else { if ( $DebianDoc_SGML::Format::Driver::is_compact ) { output( "\n" ); } } output( $_[0] ); if ( $DebianDoc_SGML::Format::Driver::opt_x ) { output( "
\n" ); } else { if ( $DebianDoc_SGML::Format::Driver::is_compact ) { output( "\n" ); } } } sub _output_taglist { output( "
\n" ) if $DebianDoc_SGML::Format::Driver::is_compact; output( $_[0] ); output( "
\n" ) if $DebianDoc_SGML::Format::Driver::is_compact; } sub _output_list_tag { } sub _output_enumlist_tag { } sub _output_taglist_tag { } sub _output_list_item { $_[0] =~ s/^\n//; # $_[0] =~ s/^

\n//; output( "

    \n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; output( "
  • \n" ); output( $_[0] ); output( "
  • \n" ); output( "
\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; } sub _output_enumlist_item { my $type = '1'; if ( $_[2] eq 'UPPERALPHA' ) { $type = 'A'; } elsif ( $_[2] eq 'LOWERALPHA' ) { $type = 'a'; } elsif ( $_[2] eq 'UPPERROMAN' ) { $type = 'I'; } elsif ( $_[2] eq 'LOWERROMAN' ) { $type = 'i'; } $_[0] =~ s/^\n//; # $_[0] =~ s/^

\n//; if ( ! $DebianDoc_SGML::Format::Driver::opt_x ) { if ( ! $DebianDoc_SGML::Format::Driver::is_compact ) { output( "

    \n" ); } } output( "
  1. \n" ); output( $_[0] ); output( "
  2. \n" ); if ( ! $DebianDoc_SGML::Format::Driver::opt_x ) { if ( ! $DebianDoc_SGML::Format::Driver::is_compact ) { output( "
\n" ); } } } sub _output_taglist_item { $_[0] =~ s/^\n//; # $_[0] =~ s/^

\n//; output( "

\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; foreach ( @{$_[1]} ) { output( "
$_
\n" ); } output( "
\n" ); output( $_[0] ); output( "
\n" ); output( "
\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; } ## ---------------------------------------------------------------------- ## emph output subroutines ## ---------------------------------------------------------------------- sub _output_em { output( "$_[0]" ); } sub _output_strong { output( "$_[0]" ); } sub _output_var { output( "$_[0]" ); } sub _output_package { output( "$_[0]" ); } sub _output_prgn { output( "$_[0]" ); } sub _output_file { output( "$_[0]" ); } sub _output_tt { output( "$_[0]" ); } sub _output_qref { _output_ref( $_[0], '', $_[1], $_[2] ); } ## ---------------------------------------------------------------------- ## xref output subroutines ## ---------------------------------------------------------------------- sub _output_ref { output( "$_[6]" ) if length( $_[6] ); output( "$_[0]" ); if ( length( $_[1] ) ) { my ( $name, $number ) = split( / /, $_[1], 2 ); output( ", " ); output( $locale{ $name }( $number ) ); } output( "" ); output( "$_[5]" ) if length( $_[5] ); } sub _output_manref { output( "$_[0]($_[1])" ); } sub _output_email { output( " " ) if ( $DebianDoc_SGML::Format::Driver::in_author || $DebianDoc_SGML::Format::Driver::in_translator ); _output_url( "mailto:$_[0]", $_[0] ); } sub _output_ftpsite { my $url = URI->new( $_[0] ); output( "$url" ); } sub _output_ftppath { _output_url( "ftp://$_[0]$_[1]", $_[1] ); } sub _output_httpsite { my $url = URI->new( $_[0] ); output( "$url" ); } sub _output_httppath { _output_url( "http://$_[0]$_[1]", $_[1] ); } sub _output_url { my $url = URI->new( _to_cdata( $_[0] ) ); $_[1] = $_[0] if $_[1] eq ""; output( "" ); _cdata( $_[1] ); output( "" ); } ## ---------------------------------------------------------------------- ## data output subroutines ## ---------------------------------------------------------------------- sub _to_cdata { ( $_ ) = @_; # special characters s/([<>&\"])/$cdata{ $1 }/g; # SDATA s/\\\|(\[\w+\s*\])\\\|/$sdata{ $1 }/g; return $_; } sub _cdata { output( _to_cdata( $_[0] ) ); } sub _sdata { output( $sdata{ $_[0] } ); } ## ---------------------------------------------------------------------- ## don't forget this 1; ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Format/Text.pm0000664000175000017500000004206411655740662020152 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## DebianDoc_SGML/Format/Text: plain text format output generator ## ---------------------------------------------------------------------- ## Copyright (C) 1998-2004 Ardo van Rangelrooij ## Copyright (C) 1996 Ian Jackson ## ## This is free software; see the GNU General Public Licence ## version 2 or later for copying conditions. There is NO warranty. ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- ## package interface definition package DebianDoc_SGML::Format::Text; use strict; use vars qw( @ISA @EXPORT ); use Exporter; @ISA = ( 'Exporter' ); @EXPORT = qw (); ## ---------------------------------------------------------------------- ## import packages use Roman; use SGMLS::Output; use Text::Format; ## ---------------------------------------------------------------------- my %locale = %DebianDoc_SGML::Format::Driver::locale; my %sdata = %DebianDoc_SGML::Format::Driver::sdata; ## ---------------------------------------------------------------------- ## layout definitions my $perindent = 5; my $linewidth = 79; my $textwidth = 75; my $unbreakbackoff = 20; $DebianDoc_SGML::Format::Driver::indent_level = 1; my $text = new Text::Format; $text->columns( $linewidth ); $text->leftMargin( $perindent - 1 ); $text->rightMargin( $perindent - 1 ); $text->extraSpace( 1 ); $text->firstIndent( 0 ); ## ---------------------------------------------------------------------- ## global variables use vars qw( $blanklinedone $paralhindents $paralhtag @stylestack @b @u ); use vars qw( @footnotes @comments @comment_editors ); use vars qw( $title ); use vars qw( @author @translator ); use vars qw( $version ); use vars qw( $abstract ); use vars qw( $copyright ); use vars qw( @copyrightsummaries ); ## ---------------------------------------------------------------------- ## book output subroutines ## ---------------------------------------------------------------------- sub _output_start_book { } sub _output_end_book { _output_footnotes() if ( @footnotes ); _output_comments() if ( @comments ); output( "\n" ); output( "\n" ); output( ( "-" x $linewidth ) . "\n" ); output( "\n" ); output( "\n" ); _para_new(); output( $title ); _para_end( 1 ); output( "\n" ); foreach ( @author ) { _para_new(); output( $_ ); _para_end( 1 ); } output( "\n" ); foreach ( @translator ) { _para_new(); output( $_ ); _para_end( 1 ); } output( "\n" ); _para_new(); output( $version ) if length( $version ); _para_end( 1 ); output( "\n" ); } ## ---------------------------------------------------------------------- ## title page output subroutines ## ---------------------------------------------------------------------- sub _output_titlepag { output( "\n" ); _para_new(); output( $title ); _para_end( 0, 'centre-underdash' ); foreach ( @author ) { output( "\n" ); _para_new(); output( $_ ); _para_end( 0, 'centre' ); } foreach ( @translator ) { output( "\n" ); _para_new(); output( $_ ); _para_end( 0, 'centre' ); } if ( length( $version ) ) { output( "\n" ); _para_new(); output( $version ); _para_end( 0, 'centre' ); } output( "\n" ); output( "\n" ); output( ( "-" x $linewidth ) . "\n" ); if ( length( $abstract ) ) { _output_heading( $locale{ 'abstract' } ); output( $abstract ); } if ( length ( $copyright ) ) { _output_heading( $locale{ 'copyright notice' } ); output( $copyright ); } } ## ---------------------------------------------------------------------- ## title output subroutines ## ---------------------------------------------------------------------- sub _output_title { $title = $_[0]; } ## ---------------------------------------------------------------------- ## author output subroutines ## ---------------------------------------------------------------------- sub _output_author { push( @author, $_[0] ); } ## ---------------------------------------------------------------------- ## translator output subroutines ## ---------------------------------------------------------------------- sub _output_translator { push( @translator, $_[0] ); } ## ---------------------------------------------------------------------- ## name output subroutines ## ---------------------------------------------------------------------- sub _output_name { output( $_[0] ); } ## ---------------------------------------------------------------------- ## version output subroutines ## ---------------------------------------------------------------------- sub _output_version { $version = $_[0]; } ## ---------------------------------------------------------------------- ## abstract output subroutines ## ---------------------------------------------------------------------- sub _output_abstract { $abstract = $_[0]; } ## ---------------------------------------------------------------------- ## copyright output subroutines ## ---------------------------------------------------------------------- sub _output_copyright { push_output( 'string' ); output( "\n" ); foreach ( @copyrightsummaries ) { _para_new(); output( $_ ); _para_end( $DebianDoc_SGML::Format::Driver::indent_level ); } output( $_[0] ); $copyright = pop_output; } sub _output_copyrightsummary { push( @copyrightsummaries, $_[0] ); } ## ---------------------------------------------------------------------- ## table of contents output subroutines ## ---------------------------------------------------------------------- sub _output_toc { _output_heading( $locale{ 'contents' }, -1 ); output( $_[0] ); } sub _output_tocentry { return if $_[1] > $DebianDoc_SGML::Format::Driver::toc_detail; output( "\n" ) if $_[1] == -1; _para_lhtag( "$_[2]." ); _para_lhtag( '' ); _para_lhtag( '' ) if $_[1] > 0; _para_new(); output( $_[0] ); _para_end( $_[1] > 0 ? 4 : 3 ); } ## ---------------------------------------------------------------------- ## section output subroutines ## ---------------------------------------------------------------------- sub _output_chapter { output( $_[0] ); } sub _output_appendix { output( $_[0] ); } sub _output_sect { } sub _output_sect1 { } sub _output_sect2 { } sub _output_sect3 { } sub _output_sect4 { } sub _output_heading { _output_footnotes() if ( @footnotes ); _output_comments() if ( @comments ); output( "\n" ); if ( $_[1] < 0 ) { output( "\n" ); output( ( "-" x $linewidth ) . "\n" ); output( "\n" ); } output( "\n" ) if $_[1] <= 0; _para_new(); output( "$_[2]. " ) if length( $_[2] ); output( "$_[0]" ); _para_end( 0, 'underdash' ); } ## ---------------------------------------------------------------------- ## paragraph output subroutines ## ---------------------------------------------------------------------- sub _output_p { if ( length( $_[0] ) ) { _insert_blankline(); $blanklinedone = 0; my $indent = 0; if ( ( length( $paralhtag ) ) && ( ! $DebianDoc_SGML::Format::Driver::is_footnote ) ) { output( ' ' x ( $perindent * ( $DebianDoc_SGML::Format::Driver::indent_level - $paralhindents ) ) ); output( _emph_string( $paralhtag ) ); $indent = ( $DebianDoc_SGML::Format::Driver::indent_level ) * $perindent; $paralhtag = ''; $paralhindents = 0; } my $para_indent = $DebianDoc_SGML::Format::Driver::indent_level; $para_indent = 2 if ( $DebianDoc_SGML::Format::Driver::in_footnote && $DebianDoc_SGML::Format::Driver::list_type ); $para_indent = 1 if $DebianDoc_SGML::Format::Driver::is_footnote; $text->leftMargin( $para_indent * $perindent ); my $para = $text->format( $_[0] ); output( substr( $para, $indent ) ); } else { output( "\n" ) if ( $DebianDoc_SGML::Format::Driver::is_special && ! $DebianDoc_SGML::Format::Driver::is_compact && $DebianDoc_SGML::Format::Driver::will_be_compact ); } } sub _insert_blankline { if ( ! $DebianDoc_SGML::Format::Driver::is_compact && ! $DebianDoc_SGML::Format::Driver::was_compact && ! $blanklinedone ) { output( "\n" ); $blanklinedone = 1; } } sub _para_lhtag { $paralhindents++; $paralhtag .= $_[0]; $paralhtag .= ' ' x ( $paralhindents * $perindent - length( $paralhtag ) ); } sub _para_new { @stylestack = (); push_output( 'string' ); } sub _para_end { my ( $inum, $fmt, $lhtagdefer ) = @_; # fmt is one of undef,'centre','centre-underdash','underdash' # lhtagdefer is 1 if we can safely defer a paralhtag til later my $pd = pop_output(); @b = @u = ( 0 ); my ( $here, $maxwidth, $evstr, $pis, $pil, $npis, $av, $ls_pis, $ls_pil ); my ( $nobreak, $code, $reducedwidth, $indentdone, $lhs ); my $centre = ( $fmt eq 'centre' || $fmt eq 'centre-underdash' ); my $udash = ( $fmt eq 'underdash' || $fmt eq 'centre-underdash' ); $maxwidth = 0; return if $pd !~ m/\S/ && ( $lhtagdefer || ! length( $paralhtag ) ); if ( length( $paralhtag ) ) { output( " " x ( $perindent * ( $inum - $paralhindents ) ) ); output( _emph_string( $paralhtag ) ); $reducedwidth = length( $paralhtag ) - ( $perindent * $paralhindents ); $reducedwidth = 0 if $reducedwidth < 0; $paralhtag = ''; $indentdone = 1; $paralhindents = 0; } outer: while ( length( $pd ) ) { next if ! $nobreak && $pd =~ s/^\s+//; $pil = 0; $av = $textwidth - $perindent * $inum - $reducedwidth; $pis = 0; $reducedwidth = 0; $ls_pis = -1; while ( $pis < length( $pd ) && ( $nobreak || $pil <= $av ) ) { $here = substr( $pd, $pis, 1 ); if ( $here eq "\0" ) { $code = substr( $pd, $pis + 1, 2 ); if ( $code eq '=o' ) { last if $pis; $nobreak = 1; $lhs = 0; } elsif ( $code eq '=l' ) { last if $pis || $indentdone; $nobreak = 1; $lhs = 1; } elsif ( $code eq '=c' ) { last if $pis; $nobreak = 0; $lhs = 0; } elsif ( $code eq '=n' ) { $pis += 4; last; } else { $pis += 4; next; } $pd = substr( $pd, 4 ); next outer; } if ( ! $nobreak && $here =~ m/^\s$/ ) { $here = substr( $pd, $pis ); $here =~ s/^\s+/ /; $pd = substr( $pd, 0, $pis ) . $here; $ls_pis = $pis; $ls_pil = $pil; } if ( $ls_pis < 0 && $pil >= $av - $unbreakbackoff ) { $ls_pis = $pis; $ls_pil = $pil; } $pis++; $pil++; } if ( ! $nobreak && $pil > $av ) { $pis = $ls_pis; $ls_pil = $pil; } $maxwidth = $pil if $pil > $maxwidth; output( ' ' x ( ( $centre ? ( $textwidth - $pil ) / 2 : 0 ) + ( $lhs ? 0 : ( $inum + $nobreak ) * $perindent ) ) ) if ! $indentdone; output( _emph_string( substr( $pd, 0, $pis ) ) ); output( "\n" ); $indentdone = 0; $pd = substr( $pd, $pis ); } if ( $udash ) { output( ' ' x ( ( $centre ? ( $textwidth - $maxwidth ) / 2 : 0 ) + ( $inum * $perindent ) ) ); output( ( $b[0] ? "--" : "-" ) x $maxwidth . "\n" ); } $blanklinedone = 0; } sub _emph_string { my ( $string ) = @_; my ( $i, $here, $ar, $sv, $es ); for ( $i = 0; $i < length( $string ); $i++ ) { $here = substr( $string, $i, 1 ); if ( $here eq "\0" ) { $ar = substr( $string, $i + 1, 1 ); $sv = substr( $string, $i + 2, 1 ); if ( $sv eq '-' ) { $es = "shift(\@$ar);1;"; eval $es || die "$@ / $es"; } elsif ( $sv ne '=' ) { $es = "unshift(\@$ar,\$sv);1;"; eval $es || die "$@ / $es"; } $i += 3; next; } if ( $b[0] ) { output( "$here" ); } elsif ( $u[0] ) { output( "_" ); } output( $here ); } return; } ## ---------------------------------------------------------------------- ## example output subroutines ## ---------------------------------------------------------------------- sub _output_example { $_[0] =~ s/[ \t]+\n/\n/g; $_[0] =~ s/^\n+//; my @el = split( /\n/, $_[0] ); my @ec = @el; grep( s/\0..\0//g, @ec ); my @toolong = grep( length( $_ ) + ( $perindent * ( $DebianDoc_SGML::Format::Driver::indent_level + 1 ) ) > $linewidth, @ec ); _insert_blankline(); push_output( 'string' ); output( @toolong ? "\0=l\0" : "\0=o\0" ); output( join( "\0=n\0", @el ) ); output( "\0=c\0" ); _para_new(); output( pop_output() ); _para_end( $DebianDoc_SGML::Format::Driver::indent_level ); } ## ---------------------------------------------------------------------- ## footnote output subroutines ## ---------------------------------------------------------------------- sub _output_footnotes { my $footnoteref = 1; foreach my $footnote ( @footnotes ) { _insert_blankline(); output( "[$footnoteref]" ); output( ' ' x ( $perindent - length( "[$footnoteref]" ) ) ); output( $footnote ); $blanklinedone = 0; $footnoteref++; } @footnotes = (); } sub _output_footnote { push( @footnotes, $_[0] ); output( "[" . scalar( @footnotes ) . "]" ); } ## ---------------------------------------------------------------------- ## comment output subroutines ## ---------------------------------------------------------------------- sub _output_comments { my $commentref = 1; foreach my $comment ( @comments ) { _insert_blankline(); _para_lhtag( "[c$commentref]" ); my $editor = $comment_editors[$commentref - 1]; _para_lhtag( "($editor) " ) if length( $editor); _para_new(); output( $comment ); _para_end( 1 ); $blanklinedone = 0; $commentref++; } @comments = (); @comment_editors = (); } sub _output_comment { push( @comments, $_[0] ); push( @comment_editors, $_[1] ); output( "[c" . scalar( @comments ) . "]" ); } ## ---------------------------------------------------------------------- ## list output subroutines ## ---------------------------------------------------------------------- sub _output_list { output( $_[0] ); } sub _output_enumlist { output( $_[0] ); } sub _output_taglist { output( $_[0] ); } sub _output_list_tag { _para_lhtag( ( ' ' x ( $perindent - 2 ) ) . '*' ); } sub _output_enumlist_tag { my $item_counter = $DebianDoc_SGML::Format::Driver::item_counter; if ( $_[1] eq 'UPPERROMAN' ) { $item_counter = Roman( $item_counter ); } elsif ( $_[1] eq 'LOWERROMAN' ) { $item_counter = roman( $item_counter ); } _para_lhtag( $item_counter . '.' ); } sub _output_taglist_tag { } sub _output_list_item { output( $_[0] ); } sub _output_enumlist_item { output( $_[0] ); } sub _output_taglist_item { $_[0] =~ s/^\n+//; _insert_blankline(); foreach ( @{$_[1]} ) { _para_new(); output( $_ ); _para_end( $DebianDoc_SGML::Format::Driver::indent_level - 1 ); } output( $_[0] ); } ## ---------------------------------------------------------------------- ## emph output subroutines ## ---------------------------------------------------------------------- sub _output_em { output( "_$_[0]_" ); } sub _output_strong { output( "_$_[0]_" ); } sub _output_var { output( "<$_[0]>" ); } sub _output_package { output( "`$_[0]'" ); } sub _output_prgn { output( "`$_[0]'" ); } sub _output_file { output( "`$_[0]'" ); } sub _output_tt { output( "`$_[0]'" ); } sub _output_qref { output( $_[0] ); } ## ---------------------------------------------------------------------- ## xref output subroutines ## ---------------------------------------------------------------------- sub _output_ref { my ( $name, $number ) = split( / /, $_[1], 2 ); output( $locale{ $name }( $number ) ); output( ", `$_[0]'" ); } sub _output_manref { output( "$_[0]($_[1])" ); } sub _output_email { output( ' ' ) if ( $DebianDoc_SGML::Format::Driver::in_author || $DebianDoc_SGML::Format::Driver::in_translator ); output( "<$_[0]>" ); } sub _output_ftpsite { output( $_[0] ); } sub _output_ftppath { output( $_[1] ); } sub _output_httpsite { output( $_[0] ); } sub _output_httppath { output( $_[1] ); } sub _output_url { _cdata( $_[1] ) if $_[1] ne ''; output( ' (' ) if $_[1] ne ''; _cdata( $_[0] ); output( ')' ) if $_[1] ne ''; } ## ---------------------------------------------------------------------- ## data output subroutines ## ---------------------------------------------------------------------- sub _cdata { ( $_ ) = @_; # SDATA s/\\\|(\[\w+\s*\])\\\|/$sdata{ $1 }/g; output( $_ ); } sub _sdata { output( $sdata{ $_[0] } ); } ## ---------------------------------------------------------------------- ## don't forget this 1; ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Format/Format.pm0000664000175000017500000001245411655740662020456 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## DebianDoc_SGML/Format/Format: output format generator base class ## ---------------------------------------------------------------------- ## Copyright (C) 1998-2004 Ardo van Rangelrooij ## ## This is free software; see the GNU General Public Licence ## version 2 or later for copying conditions. There is NO warranty. ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- ## package interface definition package DebianDoc_SGML::Format::Format; use strict; use vars qw( @ISA @EXPORT ); use Exporter; @ISA = ( 'Exporter' ); @EXPORT = qw (); ## ---------------------------------------------------------------------- ## book output subroutines ## ---------------------------------------------------------------------- sub output_start_book { } sub output_end_book { } ## ---------------------------------------------------------------------- ## title page output subroutines ## ---------------------------------------------------------------------- sub output_titlepag { } ## ---------------------------------------------------------------------- ## title output subroutines ## ---------------------------------------------------------------------- sub _output_title { } ## ---------------------------------------------------------------------- ## author output subroutines ## ---------------------------------------------------------------------- sub _output_author { } ## ---------------------------------------------------------------------- ## translator output subroutines ## ---------------------------------------------------------------------- sub _output_translator { } ## ---------------------------------------------------------------------- ## name output subroutines ## ---------------------------------------------------------------------- sub _output_name { } ## ---------------------------------------------------------------------- ## version output subroutines ## ---------------------------------------------------------------------- sub _output_version { } ## ---------------------------------------------------------------------- ## abstract output subroutines ## ---------------------------------------------------------------------- sub _output_abstract { } ## ---------------------------------------------------------------------- ## copyright output subroutines ## ---------------------------------------------------------------------- sub _output_copyright { } sub _output_copyrightsummary { } ## ---------------------------------------------------------------------- ## table of contents output subroutines ## ---------------------------------------------------------------------- sub output_toc { } sub output_tocentry { } ## ---------------------------------------------------------------------- ## section output subroutines ## ---------------------------------------------------------------------- sub output_chapter { } sub output_appendix { } sub output_heading { } ## ---------------------------------------------------------------------- ## paragraph output subroutines ## ---------------------------------------------------------------------- sub output_p { } ## ---------------------------------------------------------------------- ## example and include output subroutines ## ---------------------------------------------------------------------- sub output_example { } sub output_include { } ## ---------------------------------------------------------------------- ## footnote output subroutines ## ---------------------------------------------------------------------- sub output_footnote { } ## ---------------------------------------------------------------------- ## comment output subroutines ## ---------------------------------------------------------------------- sub output_comment { } ## ---------------------------------------------------------------------- ## list output subroutines ## ---------------------------------------------------------------------- sub output_list { } sub output_enumlist { } sub output_taglist { } sub output_list_tag { } sub output_enumlist_tag { } sub output_taglist_tag { } sub output_list_item { } sub output_enumlist_item { } sub output_taglist_item { } ## ---------------------------------------------------------------------- ## emph output subroutines ## ---------------------------------------------------------------------- sub output_em { } sub output_strong { } sub output_var { } sub output_package { } sub output_prgn { } sub output_file { } sub output_tt { } sub output_qref { } ## ---------------------------------------------------------------------- ## xref output subroutines ## ---------------------------------------------------------------------- sub output_ref { } sub output_manref { } sub output_email { } sub output_ftpsite { } sub output_ftppath { } sub output_httpsite { } sub output_httppath { } sub output_url { } ## ---------------------------------------------------------------------- ## data output subroutines ## ---------------------------------------------------------------------- sub output_cdata { } sub output_sdata { } ## ---------------------------------------------------------------------- ## don't forget this 1; ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Format/Texinfo.pm0000664000175000017500000003274011655740662020642 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## DebianDoc_SGML/Format/Texinfo: Texinfo output format generator ## ---------------------------------------------------------------------- ## Copyright (C) 1998-2004 Ardo van Rangelrooij ## ## This is free software; see the GNU General Public Licence ## version 2 or later for copying conditions. There is NO warranty. ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- ## package interface definition package DebianDoc_SGML::Format::Texinfo; use strict; use vars qw( @ISA @EXPORT ); use Exporter; @ISA = ( 'Exporter' ); @EXPORT = qw (); ## ---------------------------------------------------------------------- ## import packages use SGMLS::Output; ## ---------------------------------------------------------------------- my %locale = %DebianDoc_SGML::Format::Driver::locale; my %sdata = %DebianDoc_SGML::Format::Driver::sdata; ## ---------------------------------------------------------------------- ## layout definitions $DebianDoc_SGML::Format::Driver::indent_level = 1; ## ---------------------------------------------------------------------- ## global variables use vars qw( %nodes @main_menu %detailed_menu %sub_menus %current $node ); use vars qw( $title ); use vars qw( @author @translator ); use vars qw( $version ); use vars qw( $abstract ); use vars qw( $copyright ); use vars qw( @copyrightsummaries ); ## ---------------------------------------------------------------------- ## book output subroutines ## ---------------------------------------------------------------------- sub _output_start_book { output( "\\input texinfo \@c -*- texinfo -*-\n" ); } sub _output_end_book { output( "\n" ); output( "\@shortcontents\n" ); output( "\n" ); output( "\@contents\n" ); output( "\n" ); output( "\@bye\n"); output( "\n" ); } ## ---------------------------------------------------------------------- ## title page output subroutines ## ---------------------------------------------------------------------- sub _output_titlepag { output( "\n" ); output( "\@c %**start of header\n" ); output( "\@c \@setfilename \n" ); output( "\@settitle $title\n" ); output( "\@c %**add dircategory and direntry here\n" ); output( "\@setchapternewpage on\n" ); output( "\@paragraphindent 0\n" ); output( "\@c %**end of header\n" ); output( "\n" ); output( "\@ifinfo\n" ); if ( length ( $abstract ) ) { output( $abstract ); } if ( length ( $copyright ) ) { output( "\n" ); output( $copyright ); } output( "\n" ); output( "\@end ifinfo\n" ); output( "\n" ); output( "\@titlepage\n" ); output( "\n" ); output( "\@title $title\n" ); output( "\n" ); output( "\@subtitle $version\n" ); output( "\n" ); foreach ( @author ) { output( "\@author $_\n" ); } output( "\n" ); foreach ( @translator ) { output( "\@author $_\n" ); } output( "\n" ); output( "\@page\n" ); if ( length ( $copyright ) ) { output( "\n" ); output( "\@vskip 0pt plus 1filll\n" ); output( $copyright ); } output( "\n" ); output( "\@end titlepage\n" ); } ## ---------------------------------------------------------------------- ## title output subroutines ## ---------------------------------------------------------------------- sub _output_title { $title = $_[0]; } ## ---------------------------------------------------------------------- ## author output subroutines ## ---------------------------------------------------------------------- sub _output_author { push( @author, $_[0] ); } ## ---------------------------------------------------------------------- ## translator output subroutines ## ---------------------------------------------------------------------- sub _output_translator { push( @translator, $_[0] ); } ## ---------------------------------------------------------------------- ## name output subroutines ## ---------------------------------------------------------------------- sub _output_name { output( $_[0] ); } ## ---------------------------------------------------------------------- ## version output subroutines ## ---------------------------------------------------------------------- sub _output_version { $version = $_[0]; } ## ---------------------------------------------------------------------- ## abstract output subroutines ## ---------------------------------------------------------------------- sub _output_abstract { $abstract = $_[0]; } ## ---------------------------------------------------------------------- ## copyright output subroutines ## ---------------------------------------------------------------------- sub _output_copyright { push_output( 'string' ); output( join( " \@*\n", @copyrightsummaries ), "\n" ); output( $_[0] ); $copyright = pop_output; } sub _output_copyrightsummary { push( @copyrightsummaries, $_[0] ); } ## ---------------------------------------------------------------------- ## table of contents output subroutines ## ---------------------------------------------------------------------- my %section_name = ( '-2' => 'appendix', '-1' => 'chapter', '0' => 'section', '1' => 'subsection', '2' => 'subsubsection', '3' => 'paragraph', '4' => 'subparagraph', ); sub _output_toc { output( "\n" ); output( "\@ifinfo\n" ); output( "\n" ); output( "\@node Top\n" ); output( "\@top $title\n" ); if ( length( $abstract ) ) { output( $abstract ); } output( "\n" ); output( "\@end ifinfo\n" ); output( "\n" ); output( "\@menu\n" ); output( "\n" ); foreach ( @main_menu) { my ( $name, $number ) = split( / /, $_, 2 ); output( "* " ); output( $locale{ $name }( $number ) ); output( "\:\:\t\t$nodes{$_}\n" ); } if ( keys %detailed_menu > 0 ) { output( "\n" ); output( "\@detailmenu\n" ); output( "\n" ); output( " --- $locale{'detailed'} ---\n" ); foreach my $main ( @main_menu) { next if $#{$detailed_menu{ $main }} < 0; output( "\n" ); output( "$nodes{ $main }\n" ); output( "\n" ); foreach ( @{$detailed_menu{ $main }} ) { my $space = ""; $space .= "\t" if m/section/; $space = " " . $space if m/^section/; my ( $name, $number ) = split( / /, $_, 2 ); output( "* " ); output( $locale{ $name }( $number ) ); output( "\:\:$space$nodes{$_}\n" ); } } output( "\n" ); output( "\@end detailmenu\n" ); } output( "\n" ); output( "\@end menu\n" ); } sub _output_tocentry { if ( $_[1] == -1 ) { $current{$_[1]} = ( $_[2] =~ m/^[A-Z]/ ? "appendix" : "chapter" ) . " $_[2]"; push( @main_menu, $current{$_[1]} ); } else { $current{$_[1]} = "$section_name{$_[1]} $_[2]"; push( @{$detailed_menu{ $current{'-1'} }}, $current{$_[1]} ); push( @{$sub_menus{ $current{$_[1]-1}}}, $current{$_[1]} ) if $_[1] < 3; } $nodes{ $current{$_[1]} } = $_[0]; } ## ---------------------------------------------------------------------- ## section output subroutines ## ---------------------------------------------------------------------- my %section_markup = ( '-2' => "\@appendix", '-1' => "\@chapter", '0' => "\@section", '1' => "\@subsection", '2' => "\@subsubsection", '3' => "\@unnumberedsubsubsec", '4' => "\@subheading", ); sub _output_chapter { output( $_[0] ); } sub _output_appendix { output( $_[0] ); } sub _output_sect { } sub _output_sect1 { } sub _output_sect2 { } sub _output_sect3 { } sub _output_sect4 { } sub _output_heading { if ( $#{$sub_menus{$node}} > -1 ) { output( "\n" ); output( "\@menu\n" ); foreach ( @{$sub_menus{$node}} ) { my ( $name, $number ) = split( / /, $_, 2 ); output( "* " ); output( $locale{ $name }( $number ) ); output( "\:\: $nodes{$_}\n" ); } output( "\@end menu\n" ); } if ( $section_name{$_[1]} !~ m/graph/ ) { $node = "$section_name{$_[1]} $_[2]"; output( "\n" ); output( "\@node " ); output( $locale{ $section_name{ $_[1] } }( $_[2] ) ); output( "\n" ); } output( "$section_markup{$_[1]} $_[0]\n" ); } ## ---------------------------------------------------------------------- ## paragraph output subroutines ## ---------------------------------------------------------------------- sub _output_p { if ( length( $_[0] ) ) { output( "\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; $_[0] =~ s/^\s+//gm; $_[0] =~ s/\n\n+/\n/g; output( "$_[0]\n" ); } else { output( "\n" ) if ( $DebianDoc_SGML::Format::Driver::is_special && ! $DebianDoc_SGML::Format::Driver::is_compact && $DebianDoc_SGML::Format::Driver::will_be_compact ); } } ## ---------------------------------------------------------------------- ## example output subroutines ## ---------------------------------------------------------------------- sub _output_example { output( "\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; output( "\@example\n" ); output( $_[0] ); output( "\@end example\n" ); } ## ---------------------------------------------------------------------- ## footnote output subroutines ## ---------------------------------------------------------------------- sub _output_footnote { output( "\@footnote{$_[0]}" ); } ## ---------------------------------------------------------------------- ## comment output subroutines ## ---------------------------------------------------------------------- sub _output_comment { } ## ---------------------------------------------------------------------- ## list output subroutines ## ---------------------------------------------------------------------- sub _output_list { output( "\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; output( "\@itemize \@bullet\n" ); output( $_[0] ); output( "\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; output( "\@end itemize\n" ); } sub _output_enumlist { output( "\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; output( "\@enumerate $DebianDoc_SGML::Format::Driver::item_counter\n" ); output( $_[0] ); output( "\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; output( "\@end enumerate\n" ); } sub _output_taglist { output( "\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; output( "\@table \@asis\n" ); output( $_[0] ); output( "\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; output( "\@end table\n" ); } sub _output_list_tag { } sub _output_enumlist_tag { } sub _output_taglist_tag { } sub _output_list_item { $_[0] =~ s/^\n//; output( "\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; output( "\@item\n" ); output( $_[0] ); } sub _output_enumlist_item { $_[0] =~ s/^\n//; output( "\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; output( "\@item\n" ); output( $_[0] ); } sub _output_taglist_item { $_[0] =~ s/^\n//; output( "\n" ) if ! $DebianDoc_SGML::Format::Driver::is_compact; output( "\@item " . shift( @{$_[1]} ) . "\n" ); foreach ( @{$_[1]} ) { output( "\@itemx $_\n" ); } output( $_[0] ); } ## ---------------------------------------------------------------------- ## emph output subroutines ## ---------------------------------------------------------------------- sub _output_em { output( "\@emph{$_[0]}" ); } sub _output_strong { output( "\@strong{$_[0]}" ); } sub _output_var { output( "\@var{$_[0]}" ); } sub _output_package { output( "\@code{$_[0]}" ); } sub _output_prgn { output( "\@code{$_[0]}" ); } sub _output_file { output( "\@file{$_[0]}" ); } sub _output_tt { output( "\@samp{$_[0]}" ); } sub _output_qref { output( $_[0] ); } ## ---------------------------------------------------------------------- ## xref output subroutines ## ---------------------------------------------------------------------- sub _output_ref { my ( $name, $number ) = split( / /, $_[1], 2 ); output( "\@ref{" ); output( $locale{$name}( $number ) ); output( ", `$_[0]'" ); output( "}" ); } sub _output_manref { output( "\@code{$_[0]($_[1])}" ); } sub _output_email { output( " " ) if ( $DebianDoc_SGML::Format::Driver::in_author || $DebianDoc_SGML::Format::Driver::in_translator ); output( "\@email{$_[0]}" ); } sub _output_ftpsite { output( "\@url{$_[0]}" ); } sub _output_ftppath { output( "\@file{$_[1]}" ); } sub _output_httpsite { output( "\@url{$_[0]}" ); } sub _output_httppath { output( "\@file{$_[1]}" ); } sub _output_url { _cdata( $_[1] ) if $_[1] ne ""; output( " (" ) if $_[1] ne ""; output( "\@url{" ); _cdata( $_[0] ); output( "}" ); output( ")" ) if $_[1] ne ""; } ## ---------------------------------------------------------------------- ## data output subroutines ## ---------------------------------------------------------------------- sub _cdata { ( $_ ) = @_; # escape command characters s/\@/\@\@/g; s/{/\@{/g; s/}/\@}/g; # in examples no further replacement if ( ! ( $DebianDoc_SGML::Format::Driver::is_example || $DebianDoc_SGML::Format::Driver::is_argument ) ) { # hyphens s/--/---/g; # special symbols s/\.\.\./\@dots{} /g; } # SDATA s/\\\|(\[\w+\s*\])\\\|/$sdata{ $1 }/g; output( $_ ); } sub _sdata { output( $sdata{ $_[0] } ); } ## ---------------------------------------------------------------------- ## don't forget this 1; ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Format/Wiki.pm0000664000175000017500000004230211655740662020124 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## DebianDoc_SGML/Format/Wiki: plain text format output generator ## ---------------------------------------------------------------------- ## Copyright (C) 1998-2004 Ardo van Rangelrooij ## Copyright (C) 1996 Ian Jackson ## ## This is free software; see the GNU General Public Licence ## version 2 or later for copying conditions. There is NO warranty. ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- ## package interface definition package DebianDoc_SGML::Format::Wiki; use strict; use vars qw( @ISA @EXPORT ); use Exporter; @ISA = ( 'Exporter' ); @EXPORT = qw (); ## ---------------------------------------------------------------------- ## import packages use Roman; use SGMLS::Output; use Text::Format; ## ---------------------------------------------------------------------- my %locale = %DebianDoc_SGML::Format::Driver::locale; my %sdata = %DebianDoc_SGML::Format::Driver::sdata; ## ---------------------------------------------------------------------- ## layout definitions my $perindent = 0; my $linewidth = 79; my $textwidth = 75; my $unbreakbackoff = 20; $DebianDoc_SGML::Format::Driver::indent_level = 1; my $text = new Text::Format; $text->columns( $linewidth ); $text->leftMargin( $perindent - 1 ); $text->rightMargin( $perindent - 1 ); $text->extraSpace( 1 ); $text->firstIndent( 0 ); ## ---------------------------------------------------------------------- ## global variables use vars qw( $blanklinedone $paralhindents $paralhtag @stylestack @b @u ); use vars qw( @footnotes @comments @comment_editors ); use vars qw( $title ); use vars qw( @author @translator ); use vars qw( $version ); use vars qw( $abstract ); use vars qw( $copyright ); use vars qw( @copyrightsummaries ); ## ---------------------------------------------------------------------- ## book output subroutines ## ---------------------------------------------------------------------- sub _output_start_book { } sub _output_end_book { _output_footnotes() if ( @footnotes ); _output_comments() if ( @comments ); output( "\n" ); output( "\n" ); output( ( "-" x $linewidth ) . "\n" ); output( "\n" ); output( "\n" ); _para_new(); output( $title ); _para_end( 1 ); output( "\n" ); foreach ( @author ) { _para_new(); output( $_ ); _para_end( 1 ); } output( "\n" ); foreach ( @translator ) { _para_new(); output( $_ ); _para_end( 1 ); } output( "\n" ); _para_new(); output( $version ) if length( $version ); _para_end( 1 ); output( "\n" ); } ## ---------------------------------------------------------------------- ## title page output subroutines ## ---------------------------------------------------------------------- sub _output_titlepag { output( "\n" ); _para_new(); output( "== ".$title." ==" ); _para_end( 0, 'centre-underdash' ); foreach ( @author ) { output( "\n" ); _para_new(); output( $_ ); _para_end( 0, 'centre' ); } foreach ( @translator ) { output( "\n" ); _para_new(); output( $_ ); _para_end( 0, 'centre' ); } if ( length( $version ) ) { output( "\n" ); _para_new(); output( $version ); _para_end( 0, 'centre' ); } output( "\n" ); output( "\n" ); ## output( ( "-" x $linewidth ) . "\n" ); if ( length( $abstract ) ) { _output_heading( $locale{ 'abstract' } ); output( $abstract ); } if ( length ( $copyright ) ) { _output_heading( $locale{ 'copyright notice' } ); output( $copyright ); } } ## ---------------------------------------------------------------------- ## title output subroutines ## ---------------------------------------------------------------------- sub _output_title { $title = $_[0]; } ## ---------------------------------------------------------------------- ## author output subroutines ## ---------------------------------------------------------------------- sub _output_author { push( @author, $_[0] ); } ## ---------------------------------------------------------------------- ## translator output subroutines ## ---------------------------------------------------------------------- sub _output_translator { push( @translator, $_[0] ); } ## ---------------------------------------------------------------------- ## name output subroutines ## ---------------------------------------------------------------------- sub _output_name { output( $_[0] ); } ## ---------------------------------------------------------------------- ## version output subroutines ## ---------------------------------------------------------------------- sub _output_version { $version = $_[0]; } ## ---------------------------------------------------------------------- ## abstract output subroutines ## ---------------------------------------------------------------------- sub _output_abstract { $abstract = $_[0]; } ## ---------------------------------------------------------------------- ## copyright output subroutines ## ---------------------------------------------------------------------- sub _output_copyright { push_output( 'string' ); output( "\n" ); foreach ( @copyrightsummaries ) { _para_new(); output( $_ ); _para_end( $DebianDoc_SGML::Format::Driver::indent_level ); } output( $_[0] ); $copyright = pop_output; } sub _output_copyrightsummary { push( @copyrightsummaries, $_[0] ); } ## ---------------------------------------------------------------------- ## table of contents output subroutines ## ---------------------------------------------------------------------- sub _output_toc { _output_heading( $locale{ 'contents' }, -1 ); output( $_[0] ); } sub _output_tocentry { return if $_[1] > $DebianDoc_SGML::Format::Driver::toc_detail; output( "\n" ) if $_[1] == -1; _para_lhtag( "$_[2]." ); _para_lhtag( '' ); _para_lhtag( '' ) if $_[1] > 0; _para_new(); output( $_[0] ); _para_end( $_[1] > 0 ? 4 : 3 ); } ## ---------------------------------------------------------------------- ## section output subroutines ## ---------------------------------------------------------------------- sub _output_chapter { output( $_[0] ); } sub _output_appendix { output( $_[0] ); } sub _output_sect { } sub _output_sect1 { } sub _output_sect2 { } sub _output_sect3 { } sub _output_sect4 { } sub _output_heading { _output_footnotes() if ( @footnotes ); _output_comments() if ( @comments ); output( "\n" ); if ( $_[1] < 0 ) { output( "\n" ); output( ( "-" x $linewidth ) . "\n" ); output( "\n" ); } output( "\n" ) if $_[1] <= 0; _para_new(); # output( "$_[2]. " ) if length( $_[2] ); output( "== $_[0] ==" ); _para_end( 0, 'underdash' ); } ## ---------------------------------------------------------------------- ## paragraph output subroutines ## ---------------------------------------------------------------------- sub _output_p { if ( length( $_[0] ) ) { _insert_blankline(); $blanklinedone = 0; my $indent = 0; if ( ( length( $paralhtag ) ) && ( ! $DebianDoc_SGML::Format::Driver::is_footnote ) ) { ## output( ' ' ## x ( $perindent ## * ( $DebianDoc_SGML::Format::Driver::indent_level ## - $paralhindents ) ) ); output( _emph_string( $paralhtag ) ); $indent = ( $DebianDoc_SGML::Format::Driver::indent_level ) * $perindent; $paralhtag = ''; $paralhindents = 0; } my $para_indent = $DebianDoc_SGML::Format::Driver::indent_level; $para_indent = 2 if ( $DebianDoc_SGML::Format::Driver::in_footnote && $DebianDoc_SGML::Format::Driver::list_type ); $para_indent = 1 if $DebianDoc_SGML::Format::Driver::is_footnote; $text->leftMargin( $para_indent * $perindent ); my $para = $text->format( $_[0] ); output( substr( $para, $indent ) ); } else { output( "\n" ) if ( $DebianDoc_SGML::Format::Driver::is_special && ! $DebianDoc_SGML::Format::Driver::is_compact && $DebianDoc_SGML::Format::Driver::will_be_compact ); } } sub _insert_blankline { if ( ! $DebianDoc_SGML::Format::Driver::is_compact && ! $DebianDoc_SGML::Format::Driver::was_compact && ! $blanklinedone ) { output( "\n" ); $blanklinedone = 1; } } sub _para_lhtag { $paralhindents++; $paralhtag .= $_[0]; ## $paralhtag .= ' ' x ( $paralhindents * $perindent - length( $paralhtag ) ); } sub _para_new { @stylestack = (); push_output( 'string' ); } sub _para_end { my ( $inum, $fmt, $lhtagdefer ) = @_; # fmt is one of undef,'centre','centre-underdash','underdash' # lhtagdefer is 1 if we can safely defer a paralhtag til later my $pd = pop_output(); @b = @u = ( 0 ); my ( $here, $maxwidth, $evstr, $pis, $pil, $npis, $av, $ls_pis, $ls_pil ); my ( $nobreak, $code, $reducedwidth, $indentdone, $lhs ); my $centre = ( $fmt eq 'centre' || $fmt eq 'centre-underdash' ); my $udash = ( $fmt eq 'underdash' || $fmt eq 'centre-underdash' ); $maxwidth = 0; return if $pd !~ m/\S/ && ( $lhtagdefer || ! length( $paralhtag ) ); if ( length( $paralhtag ) ) { ## output( " " x ( $perindent * ( $inum - $paralhindents ) ) ); output( _emph_string( $paralhtag ) ); $reducedwidth = length( $paralhtag ) - ( $perindent * $paralhindents ); $reducedwidth = 0 if $reducedwidth < 0; $paralhtag = ''; $indentdone = 1; $paralhindents = 0; } outer: while ( length( $pd ) ) { next if ! $nobreak && $pd =~ s/^\s+//; $pil = 0; $av = $textwidth - $perindent * $inum - $reducedwidth; $pis = 0; $reducedwidth = 0; $ls_pis = -1; while ( $pis < length( $pd ) && ( $nobreak || $pil <= $av ) ) { $here = substr( $pd, $pis, 1 ); if ( $here eq "\0" ) { $code = substr( $pd, $pis + 1, 2 ); if ( $code eq '=o' ) { last if $pis; $nobreak = 1; $lhs = 0; } elsif ( $code eq '=l' ) { last if $pis || $indentdone; $nobreak = 1; $lhs = 1; } elsif ( $code eq '=c' ) { last if $pis; $nobreak = 0; $lhs = 0; } elsif ( $code eq '=n' ) { $pis += 4; last; } else { $pis += 4; next; } $pd = substr( $pd, 4 ); next outer; } if ( ! $nobreak && $here =~ m/^\s$/ ) { $here = substr( $pd, $pis ); $here =~ s/^\s+/ /; $pd = substr( $pd, 0, $pis ) . $here; $ls_pis = $pis; $ls_pil = $pil; } if ( $ls_pis < 0 && $pil >= $av - $unbreakbackoff ) { $ls_pis = $pis; $ls_pil = $pil; } $pis++; $pil++; } if ( ! $nobreak && $pil > $av ) { $pis = $ls_pis; $ls_pil = $pil; } $maxwidth = $pil if $pil > $maxwidth; # output( ' ' x ( ( $centre ? ( $textwidth - $pil ) / 2 : 0 ) # + ( $lhs ? 0 : ( $inum + $nobreak ) * $perindent ) ) ) # if ! $indentdone; output( _emph_string( substr( $pd, 0, $pis ) ) ); output( "\n" ); $indentdone = 0; $pd = substr( $pd, $pis ); } if ( $udash ) { ## output( ' ' x ( ( $centre ? ( $textwidth - $maxwidth ) / 2 : 0 ) ## + ( $inum * $perindent ) ) ); ## output( ( $b[0] ? "--" : "-" ) x $maxwidth . "\n" ); } $blanklinedone = 0; } sub _emph_string { my ( $string ) = @_; my ( $i, $here, $ar, $sv, $es ); for ( $i = 0; $i < length( $string ); $i++ ) { $here = substr( $string, $i, 1 ); if ( $here eq "\0" ) { $ar = substr( $string, $i + 1, 1 ); $sv = substr( $string, $i + 2, 1 ); if ( $sv eq '-' ) { $es = "shift(\@$ar);1;"; eval $es || die "$@ / $es"; } elsif ( $sv ne '=' ) { $es = "unshift(\@$ar,\$sv);1;"; eval $es || die "$@ / $es"; } $i += 3; next; } if ( $b[0] ) { output( "$here" ); } elsif ( $u[0] ) { output( "_" ); } output( $here ); } return; } ## ---------------------------------------------------------------------- ## example output subroutines ## ---------------------------------------------------------------------- sub _output_example { $_[0] =~ s/[ \t]+\n/\n/g; $_[0] =~ s/^\n+//; $_[0] = "{{{\n".$_[0]."}}}\n"; my @el = split( /\n/, $_[0] ); my @ec = @el; grep( s/\0..\0//g, @ec ); my @toolong = grep( length( $_ ) + ( $perindent * ( $DebianDoc_SGML::Format::Driver::indent_level + 1 ) ) > $linewidth, @ec ); _insert_blankline(); push_output( 'string' ); output( @toolong ? "\0=l\0" : "\0=o\0" ); output( join( "\0=n\0", @el ) ); output( "\0=c\0" ); _para_new(); output( pop_output() ); _para_end( $DebianDoc_SGML::Format::Driver::indent_level ); } ## ---------------------------------------------------------------------- ## footnote output subroutines ## ---------------------------------------------------------------------- sub _output_footnotes { my $footnoteref = 1; foreach my $footnote ( @footnotes ) { _insert_blankline(); output( "[$footnoteref]" ); # output( ' ' x ( $perindent - length( "[$footnoteref]" ) ) ); output( $footnote ); $blanklinedone = 0; $footnoteref++; } @footnotes = (); } sub _output_footnote { push( @footnotes, $_[0] ); output( "[" . scalar( @footnotes ) . "]" ); } ## ---------------------------------------------------------------------- ## comment output subroutines ## ---------------------------------------------------------------------- sub _output_comments { my $commentref = 1; foreach my $comment ( @comments ) { _insert_blankline(); _para_lhtag( "[c$commentref]" ); my $editor = $comment_editors[$commentref - 1]; _para_lhtag( "($editor) " ) if length( $editor); _para_new(); output( $comment ); _para_end( 1 ); $blanklinedone = 0; $commentref++; } @comments = (); @comment_editors = (); } sub _output_comment { push( @comments, $_[0] ); push( @comment_editors, $_[1] ); output( "[c" . scalar( @comments ) . "]" ); } ## ---------------------------------------------------------------------- ## list output subroutines ## ---------------------------------------------------------------------- sub _output_list { output( $_[0] ); } sub _output_enumlist { output( $_[0] ); } sub _output_taglist { output( $_[0] ); } sub _output_list_tag { _para_lhtag( ' * ' ); # _para_lhtag( ( ' ' x ( $perindent - 2 ) ) . '*' ); } sub _output_enumlist_tag { my $item_counter = $DebianDoc_SGML::Format::Driver::item_counter; if ( $_[1] eq 'UPPERROMAN' ) { $item_counter = Roman( $item_counter ); } elsif ( $_[1] eq 'LOWERROMAN' ) { $item_counter = roman( $item_counter ); } _para_lhtag( $item_counter . '.' ); } sub _output_taglist_tag { } sub _output_list_item { output( $_[0] ); } sub _output_enumlist_item { output( $_[0] ); } sub _output_taglist_item { $_[0] =~ s/^\n+//; _insert_blankline(); foreach ( @{$_[1]} ) { _para_new(); output( $_ ); _para_end( $DebianDoc_SGML::Format::Driver::indent_level - 1 ); } output( $_[0] ); } ## ---------------------------------------------------------------------- ## emph output subroutines ## ---------------------------------------------------------------------- sub _output_em { output( "''$_[0]''" ); } sub _output_strong { output( "'''$_[0]'''" ); } sub _output_var { output( "''$_[0]''" ); } sub _output_package { output( "{{{$_[0]}}}" ); } sub _output_prgn { output( "{{{$_[0]}}}" ); } sub _output_file { output( "{{{$_[0]}}}" ); } sub _output_tt { output( "{{{$_[0]}}}" ); } sub _output_qref { output( $_[0] ); } ## ---------------------------------------------------------------------- ## xref output subroutines ## ---------------------------------------------------------------------- sub _output_ref { my ( $name, $number ) = split( / /, $_[1], 2 ); output( $locale{ $name }( $number ) ); output( ", {{{$_[0]}}}" ); } sub _output_manref { output( "{{{$_[0]}}}($_[1])" ); } sub _output_email { # output( ' ' ) # if ( $DebianDoc_SGML::Format::Driver::in_author # || $DebianDoc_SGML::Format::Driver::in_translator ); output( "<$_[0]>" ); } sub _output_ftpsite { output( $_[0] ); } sub _output_ftppath { output( $_[1] ); } sub _output_httpsite { output( $_[0] ); } sub _output_httppath { output( $_[1] ); } sub _output_url { _cdata( $_[1] ) if $_[1] ne ''; output( ' (' ) if $_[1] ne ''; _cdata( $_[0] ); output( ')' ) if $_[1] ne ''; } ## ---------------------------------------------------------------------- ## data output subroutines ## ---------------------------------------------------------------------- sub _cdata { ( $_ ) = @_; # SDATA s/\\\|(\[\w+\s*\])\\\|/$sdata{ $1 }/g; output( $_ ); } sub _sdata { output( $sdata{ $_[0] } ); } ## ---------------------------------------------------------------------- ## don't forget this 1; ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Format/Driver.pm0000664000175000017500000007662612145732303020460 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## DebianDoc_SGML/Format/Driver: output format generator driver ## ---------------------------------------------------------------------- ## Copyright (C) 1998-2004 Ardo van Rangelrooij ## ## This is free software; see the GNU General Public Licence ## version 2 or later for copying conditions. There is NO warranty. ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- ## package interface definition package DebianDoc_SGML::Format::Driver; use strict; no strict 'refs'; no strict 'subs'; use vars qw( @ISA @EXPORT ); use Exporter; @ISA = qw( Exporter ); @EXPORT = qw (); ## ---------------------------------------------------------------------- ## get command line options use vars qw( $opt_L $opt_P $opt_b $opt_c $opt_C $opt_e $opt_f $opt_l $opt_m $opt_t $opt_1 $opt_x $opt_X $opt_S); getopts( 'LPb:cCe:f:l:mt:1xX:S' ); ## ---------------------------------------------------------------------- ## import packages use DebianDoc_SGML::Format::Alias; if ( length( $opt_X ) ) { # if "-X dir" is defined, use diras the Locale format data source. require "$opt_X/Alias.pm"; DebianDoc_SGML::Locale::Alias->import(); } else { use DebianDoc_SGML::Locale::Alias; } use Getopt::Std; use POSIX qw( locale_h ); use SGMLS::Output; ## ---------------------------------------------------------------------- ## get format, map and locale use vars qw( $format $Format $Map ); use vars qw( $locale $Locale %locale ); { $format = $opt_f; if ( ! length( $format ) ) { die "Error: format not specified\n"; } elsif ( ! defined( $format_aliases{$format} ) ) { die "Error: format $format not supported\n"; } my $format_alias = $format_aliases{$format}; $locale = $opt_l; if ( ! defined( $locale_aliases{$locale} ) ) { my $dflt_locale = 'en'; warn "Warning: locale '$locale' not supported, using $dflt_locale\n" if length( $locale ); $locale = $dflt_locale; } my $locale_alias = $locale_aliases{$locale}; $Locale = "DebianDoc_SGML/Locale/$locale_alias/$format_alias"; if ( length( $opt_X ) ) { # if "-X dir" is defined, use diras the Locale format data source. require "$opt_X/$locale_alias/$format_alias"; } else { require $Locale; } $Locale =~ s|/|::|g; $Map = "DebianDoc_SGML/Map/$format_alias"; require "$Map.pm"; $Map =~ s|/|::|g; $Format = "DebianDoc_SGML/Format/$format_alias"; require "$Format.pm"; $Format =~ s|/|::|g; } ## ---------------------------------------------------------------------- ## tag processing ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- use vars qw( @element $element $event %unknown_warn_done ); use vars qw( @p_length ); use vars qw( $in_author $in_translator ); use vars qw( $heading_level $toc_detail ); use vars qw( @indent_level $indent_level ); use vars qw( @list_type $list_type ); use vars qw( @tags @tag ); use vars qw( @prev_enum_type @enum_type $enum_type ); use vars qw( @prev_item_counter @item_counter $item_counter ); use vars qw( $ftpsite $ftppath $httpsite $httppath ); use vars qw( $will_be_compact ); use vars qw( @is_compact $is_compact ); use vars qw( @was_compact $was_compact ); use vars qw( $is_example $is_special ); use vars qw( $is_argument ); use vars qw( @is_footnote $is_footnote ); use vars qw( @in_footnote $in_footnote ); ## ---------------------------------------------------------------------- sub start { } sub end { } ## ---------------------------------------------------------------------- sub start_element { ( $element, $event ) = @_; my $name = $element->name; my $file = $event->file; my $line = $event->line; warn "unknown start element $name at $file:$line\n" unless $unknown_warn_done{$name}++; } sub end_element { ( $element, $event ) = @_; my $name = $element->name; my $file = $event->file; my $line = $event->line; warn "unknown end element $name at $file:$line\n" unless $unknown_warn_done{ $name }++; } ## ---------------------------------------------------------------------- sub start_debiandoc { } sub end_debiandoc { } ## ---------------------------------------------------------------------- sub start_book { &{$Format."::"._output_start_book}(); } sub end_book { &{$Format."::"._output_end_book}(); } ## ---------------------------------------------------------------------- sub start_titlepag { } sub end_titlepag { &{$Format."::"._output_titlepag}(); $heading_level = 0; } ## ---------------------------------------------------------------------- sub start_title { push_output( 'string' ); } sub end_title { &{$Format."::"._output_title}( _normalize( pop_output ) ); } ## ---------------------------------------------------------------------- sub start_author { $in_author = 1; push_output( 'string' ); } sub end_author { &{$Format."::"._output_author}( pop_output ); $in_author = 0; } ## ---------------------------------------------------------------------- sub start_translator { $in_translator = 1; push_output( 'string' ); } sub end_translator { &{$Format."::"._output_translator}( pop_output ); $in_translator = 0; } ## ---------------------------------------------------------------------- sub start_name { push_output( 'string' ); } sub end_name { &{$Format."::"._output_name}( _normalize( pop_output ) ); } ## ---------------------------------------------------------------------- sub start_version { push_output( 'string' ); } sub end_version { &{$Format."::"._output_version}( _normalize( pop_output . '' ) ); } ## ---------------------------------------------------------------------- sub start_date { @_ = gmtime(); my $current_locale = setlocale( LC_TIME ); setlocale( LC_TIME, $locale ); $_ = POSIX::strftime( "%d %B %Y", 0, 0, 0, $_[3], $_[4], $_[5] ); setlocale( LC_TIME, $current_locale ); s/^0//; &{$Format."::"._cdata}( $_ ); } sub end_date { } ## ---------------------------------------------------------------------- sub start_abstract { push_output( 'string' ); } sub end_abstract { &{$Format."::"._output_abstract}( pop_output ); } ## ---------------------------------------------------------------------- sub start_copyright { push_output( 'string' ); } sub end_copyright { &{$Format."::"._output_copyright}( pop_output ); } ## ---------------------------------------------------------------------- sub start_copyrightsummary { push_output( 'string' ); } sub end_copyrightsummary { &{$Format."::"._output_copyrightsummary}( _normalize( pop_output ) ); } ## ---------------------------------------------------------------------- sub start_toc { ( $element, $event ) = @_; $toc_detail = _num_level( _a( 'DETAIL' ) ); push_output( 'string' ); } sub end_toc { &{$Format."::"._output_toc}( pop_output ); } ## ---------------------------------------------------------------------- sub start_tocentry { ( $element, $event ) = @_; push( @element, $element ); push_output( 'string' ); } sub end_tocentry { $element = pop( @element ); &{$Format."::"._output_tocentry}( _normalize( pop_output ), _num_level( _a( 'LEVEL' ) ), _a( 'CHAPT' ) . _a( 'SECT' ), _a( 'SRID' ) ); } ## ---------------------------------------------------------------------- sub start_chapt { ( $element, $event ) = @_; $heading_level = -1; push_output( 'string' ); } sub end_chapt { &{$Format."::"._output_chapter}( pop_output ); undef $ftpsite; undef $httpsite; } ## ---------------------------------------------------------------------- sub start_appendix { ( $element, $event ) = @_; $heading_level = -2; push_output( 'string' ); } sub end_appendix { &{$Format."::"._output_appendix}( pop_output ); undef $ftpsite; undef $httpsite; } ## ---------------------------------------------------------------------- sub start_sect { ( $element, $event ) = @_; $heading_level = 0; } sub end_sect { &{$Format."::"._output_sect}(); } ## ---------------------------------------------------------------------- sub start_sect1 { ( $element, $event ) = @_; $heading_level = 1; } sub end_sect1 { &{$Format."::"._output_sect1}(); } ## ---------------------------------------------------------------------- sub start_sect2 { ( $element, $event ) = @_; $heading_level = 2; } sub end_sect2 { &{$Format."::"._output_sect2}(); } ## ---------------------------------------------------------------------- sub start_sect3 { ( $element, $event ) = @_; $heading_level = 3; } sub end_sect3 { &{$Format."::"._output_sect3}(); } ## ---------------------------------------------------------------------- sub start_sect4 { ( $element, $event ) = @_; $heading_level = 4; } sub end_sect4 { &{$Format."::"._output_sect4}(); } ## ---------------------------------------------------------------------- sub start_heading { ( $element, $event ) = @_; push( @element, $element ); push_output( 'string' ); } sub end_heading { $element = pop( @element ); $indent_level = 1 if $indent_level; &{$Format."::"._output_heading}( _normalize( pop_output ), $heading_level, _a( 'CHAPT' ) . _a( 'SECT' ), _a( 'SRID' ) ); } ## ---------------------------------------------------------------------- sub start_p { push_output( 'string' ); } sub end_p { &{$Format."::"._output_p}( _trim( pop_output ) ); $was_compact = 0 if ( ! $is_compact && $was_compact ); } ## ---------------------------------------------------------------------- sub start_example { ( $element, $event ) = @_; $is_example = 1; $is_special = 1; $will_be_compact = $element-> attribute( 'COMPACT' )->type eq 'TOKEN'; my $paragraph = pop_output; $paragraph =~ s/^\s+//; $paragraph =~ s/\s+$//; &{$Format."::"._output_p}( $paragraph ); push( @p_length, length( $paragraph ) ); push( @is_compact, $is_compact ); $is_compact = $is_compact || $will_be_compact; push_output( 'string' ); } sub end_example { my $example = pop_output; $example =~ s/\s+$//; &{$Format."::"._output_example}( "$example\n", pop( @p_length ) ); $was_compact = $is_compact; $is_compact = pop( @is_compact ); $is_special = 0; $is_example = 0; push_output( 'string' ); } ## ---------------------------------------------------------------------- sub start_include { ( $element, $event ) = @_; $is_example = 1; $is_special = 1; $will_be_compact = $element-> attribute( 'COMPACT' )->type eq 'TOKEN'; my $paragraph = pop_output; $paragraph =~ s/^\s+//; $paragraph =~ s/\s+$//; &{$Format."::"._output_p}( $paragraph ); push( @p_length, length( $paragraph ) ); push( @is_compact, $is_compact ); $is_compact = $is_compact || $will_be_compact; my $source = _a( 'SOURCE' ); if ( -r $source ) { push_output( 'string' ); open SOURCE, $source; while ( ) { output( $_ ); } close SOURCE; my $example = pop_output; $example =~ s/\s+$//; &{$Format."::"._output_example}( "$example\n", pop( @p_length ) ); } else { warn "Warning: include file $source not found\n"; } $was_compact = $is_compact; $is_compact = pop( @is_compact ); $is_special = 0; $is_example = 0; push_output( 'string' ); } sub end_include { } ## ---------------------------------------------------------------------- sub start_footnote { push( @is_compact, $is_compact ); $is_compact = 0; push( @was_compact, $was_compact ); $was_compact = 0; push( @is_footnote, $is_footnote ); $is_footnote = 1; push( @in_footnote, $in_footnote ); $in_footnote = 1; push_output( 'string' ); } sub end_footnote { $_ = _trim( pop_output ); &{$Format."::"._output_footnote}( "$_\n" ) if length( $_ ); $in_footnote = pop( @in_footnote ); $is_footnote = pop( @is_footnote ); $is_compact = pop( @is_compact ); $was_compact = pop( @was_compact ); } ## ---------------------------------------------------------------------- sub start_comment { ( $element, $event ) = @_; push( @is_compact, $is_compact ); $is_compact = 0; push( @was_compact, $was_compact ); $was_compact = 0; push( @is_footnote, $is_footnote ); $is_footnote = 1; push( @in_footnote, $in_footnote ); $in_footnote = 1; push( @element, $element ); push_output( 'string' ); } sub end_comment { $_ = _trim( pop_output ); $element = pop( @element ); &{$Format."::"._output_comment}( "$_\n", _a( 'EDITOR' ) ) if length( $_ ) && $DebianDoc_SGML::Format::Driver::opt_m; $in_footnote = pop( @in_footnote ); $is_footnote = pop( @is_footnote ); $is_compact = pop( @is_compact ); $was_compact = pop( @was_compact ); } ## ---------------------------------------------------------------------- sub start_list { ( $element, $event ) = @_; $is_special = 1; $will_be_compact = $element-> attribute( 'COMPACT' )->type eq 'TOKEN'; my $paragraph = pop_output; $paragraph =~ s/^\s+//; $paragraph =~ s/\s+$//; &{$Format."::"._output_p}( $paragraph ); push( @p_length, length( $paragraph ) ); push( @is_compact, $is_compact ); $is_compact = $is_compact || $will_be_compact; push( @is_footnote, $is_footnote ); $is_footnote = 0; push( @list_type, $list_type ); $list_type = "list"; push( @tags, @tag ); @tag = (); $indent_level++ if $indent_level; push_output( 'string' ); } sub end_list { my $list = pop_output; $list =~ s/\s+$//; &{$Format."::"._output_list}( "$list\n", pop( @p_length ) ); $indent_level-- if $indent_level > 1; @tag = pop( @tags ); $is_footnote = pop( @is_footnote ); $list_type = pop( @list_type ); $was_compact = $is_compact; $is_compact = pop( @is_compact ); $is_special = 0; push_output( 'string' ); } ## ---------------------------------------------------------------------- sub start_enumlist { ( $element, $event ) = @_; $is_special = 1; $will_be_compact = $element-> attribute( 'COMPACT' )->type eq 'TOKEN'; my $continue = $element-> attribute( 'CONTINUE' )->type eq 'TOKEN'; push( @enum_type, $enum_type ); if ( $continue ) { $enum_type = pop( @prev_enum_type ); $enum_type = _a( 'NUMERATION' ) if $enum_type eq ''; } else { $enum_type = _a( 'NUMERATION' ); } my $paragraph = pop_output; $paragraph =~ s/^\s+//; $paragraph =~ s/\s+$//; &{$Format."::"._output_p}( $paragraph ); push( @p_length, length( $paragraph ) ); push( @is_compact, $is_compact ); $is_compact = $is_compact || $will_be_compact; push( @is_footnote, $is_footnote ); $is_footnote = 0; push( @list_type, $list_type ); $list_type = 'enumlist'; push( @tags, @tag ); @tag = (); push( @item_counter, $item_counter ); $item_counter = pop( @prev_item_counter ); if ( $format ne 'html' && $enum_type eq 'UPPERALPHA' ) { if ( length( $item_counter) == 0 ) { $item_counter = 'A'; } else { $item_counter = $continue ? $item_counter : 'A'; } } elsif ( $format ne 'html' && $enum_type eq 'LOWERALPHA' ) { if ( length( $item_counter) == 0 ) { $item_counter = 'a'; } else { $item_counter = $continue ? $item_counter : 'a'; } } else { if ( length( $item_counter) == 0 ) { $item_counter = 1; } else { $item_counter = $continue ? $item_counter : 1; } } push( @item_counter, $item_counter ); $indent_level++ if $indent_level; push_output( 'string' ); } sub end_enumlist { my $enumlist = pop_output; $enumlist =~ s/\s+$//; push( @prev_enum_type, $enum_type ); push( @prev_item_counter, $item_counter ); $item_counter = pop( @item_counter ); &{$Format."::"._output_enumlist}( "$enumlist\n", pop( @p_length ), $enum_type ); $indent_level-- if $indent_level > 1; $enum_type = pop( @enum_type ); $item_counter = pop( @item_counter ); @tag = pop( @tags ); $is_footnote = pop( @is_footnote ); $list_type = pop( @list_type ); $was_compact = $is_compact; $is_compact = pop( @is_compact ); $is_special = 0; push_output( 'string' ); } ## ---------------------------------------------------------------------- sub start_taglist { ( $element, $event ) = @_; $is_special = 1; $will_be_compact = $element-> attribute( 'COMPACT' )->type eq 'TOKEN'; my $paragraph = pop_output; $paragraph =~ s/^\s+//; $paragraph =~ s/\s+$//; &{$Format."::"._output_p}( $paragraph ); push( @p_length, length( $paragraph ) ); push( @is_compact, $is_compact ); $is_compact = $is_compact || $will_be_compact; push( @is_footnote, $is_footnote ); $is_footnote = 0; push( @list_type, $list_type ); $list_type = "taglist"; push( @tags, [ @tag ] ); @tag = (); $indent_level++ if $indent_level; push_output( 'string' ); } sub end_taglist { my $taglist = pop_output; $taglist =~ s/\s+$//; &{$Format."::"._output_taglist}( "$taglist\n", pop( @p_length ) ); $indent_level-- if $indent_level > 1; @tag = @{ pop( @tags ) }; $is_footnote = pop( @is_footnote ); $list_type = pop( @list_type ); $was_compact = $is_compact; $is_compact = pop( @is_compact ); $is_special = 0; push_output( 'string' ); } ## ---------------------------------------------------------------------- sub start_tag { push_output( 'string' ); } sub end_tag { if ( $list_type eq 'taglist' ) { push( @tag, _normalize( pop_output ) ); } else { my $_output_tag = "_output_" . $list_type . "_tag"; &{$Format."::".$_output_tag}( _normalize( pop_output ), $enum_type ); } } ## ---------------------------------------------------------------------- sub start_item { push_output( 'string' ); } sub end_item { $_ = pop_output; my $_output_item = "_output_" . $list_type . "_item"; &{$Format."::".$_output_item}( $_, \@tag, $enum_type ) if length( $_ ); $item_counter++ if $list_type eq 'enumlist'; @tag = (); } ## ---------------------------------------------------------------------- sub start_em { push_output( 'string' ); } sub end_em { $_ = _trim( pop_output ); &{$Format."::"._output_em}( $_ ) if length( $_ ); } ## ---------------------------------------------------------------------- sub start_strong { push_output( 'string' ); } sub end_strong { $_ = _trim( pop_output ); &{$Format."::"._output_strong}( $_ ) if length( $_ ); } ## ---------------------------------------------------------------------- sub start_var { push_output( 'string' ); } sub end_var { $_ = _trim( pop_output ); &{$Format."::"._output_var}( $_ ) if length( $_ ); } ## ---------------------------------------------------------------------- sub start_package { $is_example = 1; push_output( 'string' ); } sub end_package { $_ = _trim( pop_output ); &{$Format."::"._output_package}( $_ ) if length( $_ ); $is_example = 0; } ## ---------------------------------------------------------------------- sub start_prgn { $is_example = 1; push_output( 'string' ); } sub end_prgn { $_ = _trim( pop_output ); &{$Format."::"._output_prgn}( $_ ) if length( $_ ); $is_example = 0; } ## ---------------------------------------------------------------------- sub start_file { $is_example = 1; push_output( 'string' ); } sub end_file { $_ = _trim( pop_output ); &{$Format."::"._output_file}( $_ ) if length( $_ ); $is_example = 0; } ## ---------------------------------------------------------------------- sub start_tt { $is_example = 1; push_output( 'string' ); } sub end_tt { $_ = _trim( pop_output ); &{$Format."::"._output_tt}( $_ ) if length( $_ ); $is_example = 0; } ## ---------------------------------------------------------------------- sub start_qref { ( $element, $event ) = @_; push( @element, $element ); push_output( 'string' ); } sub end_qref { $_ = _trim( pop_output ); $element = pop( @element ); &{$Format."::"._output_qref}( $_, _a('CSRID'), _a('SRID') ) if length( $_ ); } ## ---------------------------------------------------------------------- sub start_ref { ( $element, $event ) = @_; push( @element, $element ); push_output( 'string' ); } sub end_ref { $_ = _trim( pop_output ); $element = pop( @element ); &{$Format."::"._output_ref}( $_, _a('HNAME'), _a('CSRID'), _a('SRID') ) if length( $_ ); } ## ---------------------------------------------------------------------- sub start_manref { ( $element, $event ) = @_; &{$Format."::"._output_manref}( _trim( _a( 'NAME' ) ), _trim( _a( 'SECTION' ) ) ); } sub end_manref { } ## ---------------------------------------------------------------------- sub start_email { $is_argument = 1; push_output( 'string' ); } sub end_email { $_ = _trim( pop_output ); &{$Format."::"._output_email}( $_ ) if length( $_ ); $is_argument = 0; } ## ---------------------------------------------------------------------- sub start_ftpsite { $is_argument = 1; push_output( 'string' ); } sub end_ftpsite { $ftpsite = _normalize( pop_output ); &{$Format."::"._output_ftpsite}( $ftpsite ) if length( $ftpsite ); $is_argument = 0; } ## ---------------------------------------------------------------------- sub start_ftppath { $is_argument = 1; push_output( 'string' ); } sub end_ftppath { $_ = _normalize( pop_output ); defined( $ftpsite ) || print( STDERR "Warning: FTPPATH \`$_' without preceding FTPSITE\n" ); &{$Format."::"._output_ftppath}( $ftpsite, $_ ) if length( $_ ); $is_argument = 0; } ## ---------------------------------------------------------------------- sub start_httpsite { $is_argument = 1; push_output( 'string' ); } sub end_httpsite { $httpsite = _normalize( pop_output ); &{$Format."::"._output_httpsite}( $httpsite ) if length( $httpsite ); $is_argument = 0; } ## ---------------------------------------------------------------------- sub start_httppath { $is_argument = 1; push_output( 'string' ); } sub end_httppath { $_ = _normalize( pop_output ); defined( $httpsite ) || print( STDERR "Warning: HTTPPATH \`$_' without preceding HTTPSITE\n" ); &{$Format."::"._output_httppath}( $httpsite, $_ ) if length( $_ ); $is_argument = 0; } ## ---------------------------------------------------------------------- sub start_url { ( $element, $event ) = @_; my $id = _trim( _a( 'ID' ) ); my $name = _a( 'NAME' ); $name = "" if ( $name eq '\|\|' ) || ( $name eq '\|urlname\|' ) || ( $name eq $id ); &{$Format."::"._output_url}( $id, $name ) if length( $id ); } sub end_url { } ## ---------------------------------------------------------------------- sub cdata { &{$Format."::"._cdata}; } sub sdata { &{$Format."::"._sdata}; } ## ---------------------------------------------------------------------- ## helper definitions ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- sub _num_level { return -1 if $_[0] =~ m/^CHAPT|APPENDIX/; return $1+0 if $_[0] =~ m/^SECT(\d*)$/; warn "unknown toc detail token \`$_[0]'\n"; } ## ---------------------------------------------------------------------- sub _a { my $el = $element->attribute( $_[0] ); return defined( $el ) ? $el->value : undef; } ## ---------------------------------------------------------------------- sub _trim { ( $_ ) = @_; s/^\s+//; s/\s+$//; return $_; } sub _normalize { ( $_ ) = @_; s/^\s+//; s/\s+$//; s/\s+/ /g; return $_; } ## ---------------------------------------------------------------------- ## SGML definitions ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- ::sgml( 'start', \&start ); ::sgml( 'end', \&end ); ## ---------------------------------------------------------------------- ::sgml( 'start_element', \&start_element ); ::sgml( 'end_element', \&end_element ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_debiandoc ); ::sgml( '', \&end_debiandoc ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_book ); ::sgml( '', \&end_book ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_titlepag ); ::sgml( '', \&end_titlepag ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_title ); ::sgml( '', \&end_title ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_author ); ::sgml( '', \&end_author ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_translator ); ::sgml( '', \&end_translator ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_name ); ::sgml( '', \&end_name ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_version ); ::sgml( '', \&end_version ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_date ); ::sgml( '', \&end_date ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_abstract ); ::sgml( '', \&end_abstract ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_copyright ); ::sgml( '', \&end_copyright ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_copyrightsummary ); ::sgml( '', \&end_copyrightsummary ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_toc ); ::sgml( '', \&end_toc ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_tocentry ); ::sgml( '', \&end_tocentry ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_chapt ); ::sgml( '', \&end_chapt ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_appendix ); ::sgml( '', \&end_appendix ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_sect ); ::sgml( '', \&end_sect ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_sect1 ); ::sgml( '', \&end_sect1 ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_sect2 ); ::sgml( '', \&end_sect2 ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_sect3 ); ::sgml( '', \&end_sect3 ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_sect4 ); ::sgml( '', \&end_sect4 ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_heading ); ::sgml( '', \&end_heading ); ## ---------------------------------------------------------------------- ::sgml( '

' , \&start_p ); ::sgml( '

', \&end_p ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_example ); ::sgml( '', \&end_example ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_include ); ::sgml( '', \&end_include ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_footnote ); ::sgml( '', \&end_footnote ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_comment ); ::sgml( '', \&end_comment ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_list ); ::sgml( '', \&end_list ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_enumlist ); ::sgml( '', \&end_enumlist ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_taglist ); ::sgml( '', \&end_taglist ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_tag ); ::sgml( '', \&end_tag ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_item ); ::sgml( '', \&end_item ); ## ---------------------------------------------------------------------- ::sgml( '',\&start_em ); ::sgml( '', \&end_em ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_strong ); ::sgml( '', \&end_strong ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_var ); ::sgml( '', \&end_var ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_package ); ::sgml( '', \&end_package ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_prgn ); ::sgml( '', \&end_prgn ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_file ); ::sgml( '', \&end_file ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_tt ); ::sgml( '', \&end_tt ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_qref ); ::sgml( '', \&end_qref ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_ref ); ::sgml( '', \&end_ref ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_manref ); ::sgml( '', \&end_manref ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_email ); ::sgml( '', \&end_email ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_ftpsite ); ::sgml( '', \&end_ftpsite ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_ftppath ); ::sgml( '', \&end_ftppath ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_httpsite ); ::sgml( '', \&end_httpsite ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_httppath ); ::sgml( '', \&end_httppath ); ## ---------------------------------------------------------------------- ::sgml( '', \&start_url ); ::sgml( '', \&end_url ); ## ---------------------------------------------------------------------- ::sgml( 'cdata', \&cdata ); ::sgml( 'sdata', \&sdata ); ## ---------------------------------------------------------------------- ## don't forget this 1; ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Format/TextOV.pm0000664000175000017500000004266311655740662020424 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## DebianDoc_SGML/Format/TextOV: overstrike text output format generator ## ---------------------------------------------------------------------- ## Copyright (C) 1998-2004 Ardo van Rangelrooij ## Copyright (C) 1996 Ian Jackson ## ## This is free software; see the GNU General Public Licence ## version 2 or later for copying conditions. There is NO warranty. ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- ## package interface definition package DebianDoc_SGML::Format::TextOV; use strict; use vars qw( @ISA @EXPORT ); use Exporter; @ISA = ( 'Exporter' ); @EXPORT = qw (); ## ---------------------------------------------------------------------- ## import packages use Roman; use SGMLS::Output; ## ---------------------------------------------------------------------- my %locale = %DebianDoc_SGML::Format::Driver::locale; my %sdata = %DebianDoc_SGML::Format::Driver::sdata; ## ---------------------------------------------------------------------- ## layout definitions my $perindent = 5; my $linewidth = 79; my $textwidth = 75; my $unbreakbackoff = 20; $DebianDoc_SGML::Format::Driver::indent_level = 1; ## ---------------------------------------------------------------------- ## global variables use vars qw( $blanklinedone $paralhindents $paralhtag @stylestack @b @u ); use vars qw( @footnotes @comments @comment_editors ); use vars qw( $title ); use vars qw( @author @translator ); use vars qw( $version ); use vars qw( $abstract ); use vars qw( $copyright ); use vars qw( @copyrightsummaries ); ## ---------------------------------------------------------------------- ## book output subroutines ## ---------------------------------------------------------------------- sub _output_start_book { } sub _output_end_book { _output_footnotes() if ( @footnotes ); _output_comments() if ( @comments ); output( "\n" ); output( "\n" ); output( ( "-" x $linewidth ) . "\n" ); output( "\n" ); output( "\n" ); _para_new(); output( $title ); _para_end( 1 ); output( "\n" ); foreach ( @author ) { _para_new(); output( $_ ); _para_end( 1 ); } output( "\n" ); foreach ( @translator ) { _para_new(); output( $_ ); _para_end( 1 ); } output( "\n" ); _para_new(); output( $version ) if length( $version ); _para_end( 1 ); output( "\n" ); } ## ---------------------------------------------------------------------- ## title page output subroutines ## ---------------------------------------------------------------------- sub _output_titlepag { output( "\n" ); _para_new(); _push_style( 'b1' ); output( $title ); _para_end( 0, 'centre-underdash' ); foreach ( @author ) { output( "\n" ); _para_new(); output( $_ ); _para_end( 0, 'centre' ); } foreach ( @translator ) { output( "\n" ); _para_new(); output( $_ ); _para_end( 0, 'centre' ); } if ( length( $version ) ) { output( "\n" ); _para_new(); output( $version ); _para_end( 0, 'centre' ); } output( "\n" ); output( "\n" ); output( ( "-" x $linewidth ) . "\n" ); if ( length( $abstract ) ) { _output_heading( $locale{ 'abstract' } ); output( $abstract ); } if ( length ( $copyright ) ) { _output_heading( $locale{ 'copyright notice' } ); output( $copyright ); } } ## ---------------------------------------------------------------------- ## title output subroutines ## ---------------------------------------------------------------------- sub _output_title { $title = $_[0]; } ## ---------------------------------------------------------------------- ## author output subroutines ## ---------------------------------------------------------------------- sub _output_author { push( @author, $_[0] ); } ## ---------------------------------------------------------------------- ## translator output subroutines ## ---------------------------------------------------------------------- sub _output_translator { push( @translator, $_[0] ); } ## ---------------------------------------------------------------------- ## name output subroutines ## ---------------------------------------------------------------------- sub _output_name { output( $_[0] ); } ## ---------------------------------------------------------------------- ## version output subroutines ## ---------------------------------------------------------------------- sub _output_version { $version = $_[0]; } ## ---------------------------------------------------------------------- ## abstract output subroutines ## ---------------------------------------------------------------------- sub _output_abstract { $abstract = $_[0]; } ## ---------------------------------------------------------------------- ## copyright output subroutines ## ---------------------------------------------------------------------- sub _output_copyright { push_output( 'string' ); output( "\n" ); foreach ( @copyrightsummaries ) { _para_new(); output( $_ ); _para_end( $DebianDoc_SGML::Format::Driver::indent_level ); } output( $_[0] ); $copyright = pop_output; } sub _output_copyrightsummary { push( @copyrightsummaries, $_[0] ); } ## ---------------------------------------------------------------------- ## table of contents output subroutines ## ---------------------------------------------------------------------- sub _output_toc { _output_heading( $locale{ 'contents' }, -1 ); output( $_[0] ); } sub _output_tocentry { return if $_[1] > $DebianDoc_SGML::Format::Driver::toc_detail; output( "\n" ) if $_[1] == -1; _para_lhtag( "$_[2]." ); _para_lhtag( '' ); _para_lhtag( '' ) if $_[1] > 0; _para_new(); _push_style( 'u1' ) if $_[1] == -1; output( $_[0] ); _para_end( $_[1] > 0 ? 4 : 3 ); } ## ---------------------------------------------------------------------- ## section output subroutines ## ---------------------------------------------------------------------- sub _output_chapter { output( $_[0] ); } sub _output_appendix { output( $_[0] ); } sub _output_sect { } sub _output_sect1 { } sub _output_sect2 { } sub _output_sect3 { } sub _output_sect4 { } sub _output_heading { _output_footnotes() if ( @footnotes ); _output_comments() if ( @comments ); output( "\n" ); if ( $_[1] < 0 ) { output( "\n" ); output( ( "-" x $linewidth ) . "\n" ); output( "\n" ); } output( "\n" ) if $_[1] <= 0; _para_new(); _push_style( 'b1' ); output( "$_[2]. " ) if length( $_[2] ); output( "$_[0]" ); _para_end( 0, '' ); } ## ---------------------------------------------------------------------- ## paragraph output subroutines ## ---------------------------------------------------------------------- sub _output_p { if ( length( $_[0] ) ) { my $tmp_paralhindents; my $tmp_paralhtag; if ( $DebianDoc_SGML::Format::Driver::is_footnote ) { $tmp_paralhindents = $paralhindents; $paralhindents = 0; $tmp_paralhtag = $paralhtag; $paralhtag = ''; } _insert_blankline(); _para_new(); output( $_[0] ); my $para_indent = $DebianDoc_SGML::Format::Driver::indent_level; $para_indent = 2 if ( $DebianDoc_SGML::Format::Driver::in_footnote && $DebianDoc_SGML::Format::Driver::list_type ); $para_indent = 1 if $DebianDoc_SGML::Format::Driver::is_footnote; _para_end( $para_indent ); if ( $DebianDoc_SGML::Format::Driver::is_footnote ) { $paralhindents = $tmp_paralhindents; $paralhtag = $tmp_paralhtag; } } else { output( "\n" ) if ( $DebianDoc_SGML::Format::Driver::is_special && ! $DebianDoc_SGML::Format::Driver::is_compact && $DebianDoc_SGML::Format::Driver::will_be_compact ); } } sub _insert_blankline { if ( ! $DebianDoc_SGML::Format::Driver::is_compact && ! $DebianDoc_SGML::Format::Driver::was_compact && ! $blanklinedone ) { output( "\n" ); $blanklinedone = 1; } } sub _para_lhtag { $paralhindents++; $paralhtag .= $_[0]; $paralhtag .= ' ' x ( $paralhindents * $perindent - length( $paralhtag ) ); } sub _para_new { @stylestack = (); push_output( 'string' ); } sub _para_end { my ( $inum, $fmt, $lhtagdefer ) = @_; # fmt is one of undef,'centre','centre-underdash','underdash' # lhtagdefer is 1 if we can safely defer a paralhtag til later my $pd = pop_output(); @b = @u = ( 0 ); my ( $here, $maxwidth, $evstr, $pis, $pil, $npis, $av, $ls_pis, $ls_pil ); my ( $nobreak, $code, $reducedwidth, $indentdone, $lhs ); my $centre = ( $fmt eq 'centre' || $fmt eq 'centre-underdash' ); my $udash = ( $fmt eq 'underdash' || $fmt eq 'centre-underdash' ); $maxwidth = 0; return if $pd !~ m/\S/ && ( $lhtagdefer || ! length( $paralhtag ) ); if ( length( $paralhtag ) ) { output( " " x ( $perindent * ( $inum - $paralhindents ) ) ); output( _emph_string( $paralhtag ) ); $reducedwidth = length( $paralhtag ) - ( $perindent * $paralhindents ); $reducedwidth = 0 if $reducedwidth < 0; $paralhtag = ''; $indentdone = 1; $paralhindents = 0; } outer: while ( length( $pd ) ) { next if ! $nobreak && $pd =~ s/^\s+//; $pil = 0; $av = $textwidth - $perindent * $inum - $reducedwidth; $pis = 0; $reducedwidth = 0; $ls_pis = -1; while ( $pis < length( $pd ) && ( $nobreak || $pil <= $av ) ) { $here = substr( $pd, $pis, 1 ); if ( $here eq "\0" ) { $code = substr( $pd, $pis + 1, 2 ); if ( $code eq '=o' ) { last if $pis; $nobreak = 1; $lhs = 0; } elsif ( $code eq '=l' ) { last if $pis || $indentdone; $nobreak = 1; $lhs = 1; } elsif ( $code eq '=c' ) { last if $pis; $nobreak = 0; $lhs = 0; } elsif ( $code eq '=n' ) { $pis += 4; last; } else { $pis += 4; next; } $pd = substr( $pd, 4 ); next outer; } if ( ! $nobreak && $here =~ m/^\s$/ ) { $here = substr( $pd, $pis ); $here =~ s/^\s+/ /; $pd = substr( $pd, 0, $pis ) . $here; $ls_pis = $pis; $ls_pil = $pil; } if ( $ls_pis < 0 && $pil >= $av - $unbreakbackoff ) { $ls_pis = $pis; $ls_pil = $pil; } $pis++; $pil++; } if ( ! $nobreak && $pil > $av ) { $pis = $ls_pis; $ls_pil = $pil; } $maxwidth = $pil if $pil > $maxwidth; output( ' ' x ( ( $centre ? ( $textwidth - $pil ) / 2 : 0 ) + ( $lhs ? 0 : ( $inum + $nobreak ) * $perindent ) ) ) if ! $indentdone; output( _emph_string( substr( $pd, 0, $pis ) ) ); output( "\n" ); $indentdone = 0; $pd = substr( $pd, $pis ); } if ( $udash ) { output( ' ' x ( ( $centre ? ( $textwidth - $maxwidth ) / 2 : 0 ) + ( $inum * $perindent ) ) ); output( ( $b[0] ? "--" : "-" ) x $maxwidth . "\n" ); } $blanklinedone = 0; } sub _emph_string { my ( $string ) = @_; my ( $i, $here, $ar, $sv, $es ); for ( $i = 0; $i < length( $string ); $i++ ) { $here = substr( $string, $i, 1 ); if ( $here eq "\0" ) { $ar = substr( $string, $i + 1, 1 ); $sv = substr( $string, $i + 2, 1 ); if ( $sv eq '-' ) { $es = "shift(\@$ar);1;"; eval $es || die "$@ / $es"; } elsif ( $sv ne '=' ) { $es = "unshift(\@$ar,\$sv);1;"; eval $es || die "$@ / $es"; } $i += 3; next; } if ( $b[0] ) { output( "$here" ); } elsif ( $u[0] ) { output( "_" ); } output( $here ); } return; } ## ---------------------------------------------------------------------- ## example output subroutines ## ---------------------------------------------------------------------- sub _output_example { $_[0] =~ s/[ \t]+\n/\n/g; $_[0] =~ s/^\n+//; my @el = split( /\n/, $_[0] ); my @ec = @el; grep( s/\0..\0//g, @ec ); my @toolong = grep( length( $_ ) + ( $perindent * ( $DebianDoc_SGML::Format::Driver::indent_level + 1 ) ) > $linewidth, @ec ); _insert_blankline(); push_output( 'string' ); output( @toolong ? "\0=l\0" : "\0=o\0" ); output( join( "\0=n\0", @el ) ); output( "\0=c\0" ); _para_new(); output( pop_output() ); _para_end( $DebianDoc_SGML::Format::Driver::indent_level ); } ## ---------------------------------------------------------------------- ## footnote output subroutines ## ---------------------------------------------------------------------- sub _output_footnotes { my $footnoteref = 1; foreach my $footnote ( @footnotes ) { _insert_blankline(); output( "[$footnoteref]" ); output( ' ' x ( $perindent - length( "[$footnoteref]" ) ) ); output( $footnote ); $blanklinedone = 0; $footnoteref++; } @footnotes = (); } sub _output_footnote { push( @footnotes, $_[0] ); output( "[" . scalar( @footnotes ) . "]" ); } ## ---------------------------------------------------------------------- ## comment output subroutines ## ---------------------------------------------------------------------- sub _output_comments { my $commentref = 1; foreach my $comment ( @comments ) { _insert_blankline(); _para_lhtag( "[c$commentref]" ); my $editor = $comment_editors[$commentref - 1]; _para_lhtag( "($editor) " ) if length( $editor); _para_new(); output( $comment ); _para_end( $DebianDoc_SGML::Format::Driver::indent_level ); $blanklinedone = 0; $commentref++; } @comments = (); @comment_editors = (); } sub _output_comment { push( @comments, $_[0] ); push( @comment_editors, $_[1] ); output( "[c" . scalar( @comments ) . "]" ); } ## ---------------------------------------------------------------------- ## list output subroutines ## ---------------------------------------------------------------------- sub _output_list { output( $_[0] ); } sub _output_enumlist { output( $_[0] ); } sub _output_taglist { output( $_[0] ); } sub _output_list_tag { _para_lhtag( ( ' ' x ( $perindent - 2 ) ) . '*' ); } sub _output_enumlist_tag { my $item_counter = $DebianDoc_SGML::Format::Driver::item_counter; if ( $_[1] eq 'UPPERROMAN' ) { $item_counter = Roman( $item_counter ); } elsif ( $_[1] eq 'LOWERROMAN' ) { $item_counter = roman( $item_counter ); } _para_lhtag( $item_counter . '.' ); } sub _output_taglist_tag { } sub _output_list_item { output( $_[0] ); } sub _output_enumlist_item { output( $_[0] ); } sub _output_taglist_item { $_[0] =~ s/^\n+//; _insert_blankline(); foreach ( @{$_[1]} ) { _para_new(); output( $_ ); _para_end( $DebianDoc_SGML::Format::Driver::indent_level - 1 ); } output( $_[0] ); } ## ---------------------------------------------------------------------- ## emph output subroutines ## ---------------------------------------------------------------------- sub _output_em { _push_style( 'u1' ); output( $_[0] ); _pop_style(); } sub _output_strong { _push_style( 'u1' ); output( $_[0] ); _pop_style(); } sub _output_var { _push_style( 'u1' ); _push_style( 'b0' ); output( $_[0] ); _pop_style(); _pop_style(); } sub _output_package { _push_style( 'b1' ); output( $_[0] ); _pop_style(); } sub _output_prgn { _push_style( 'b1' ); output( $_[0] ); _pop_style(); } sub _output_file { _push_style( 'b1' ); output( $_[0] ); _pop_style(); } sub _output_tt { _push_style( 'b1' ); output( $_[0] ); _pop_style(); } sub _output_qref { output( $_[0] ); } sub _push_style { push( @stylestack, substr( $_[0], 0, 1 ) ); output( "\0$_[0]\0" ); } sub _pop_style { output( "\0" . pop( @stylestack ) . "-\0" ); } ## ---------------------------------------------------------------------- ## xref output subroutines ## ---------------------------------------------------------------------- sub _output_ref { my ( $name, $number ) = split( / /, $_[1], 2 ); output( $locale{ $name }( $number ) ); output( ", `$_[0]'" ); } sub _output_manref { _push_style( 'b1' ); output( $_[0] ); _pop_style(); _push_style( 'u1' ); output( "($_[1])" ); _pop_style(); } sub _output_email { output( ' ' ) if ( $DebianDoc_SGML::Format::Driver::in_author || $DebianDoc_SGML::Format::Driver::in_translator ); output( "<$_[0]>" ); } sub _output_ftpsite { output( $_[0] ); } sub _output_ftppath { output( $_[1] ); } sub _output_httpsite { output( $_[0] ); } sub _output_httppath { output( $_[1] ); } sub _output_url { _cdata( $_[1] ) if $_[1] ne ''; output( ' (' ) if $_[1] ne ''; _cdata( $_[0] ); output( ')' ) if $_[1] ne ''; } ## ---------------------------------------------------------------------- ## data output subroutines ## ---------------------------------------------------------------------- sub _cdata { ( $_ ) = @_; # SDATA s/\\\|(\[\w+\s*\])\\\|/$sdata{ $1 }/g; output( $_ ); } sub _sdata { output( $sdata{ $_[0] } ); } ## ---------------------------------------------------------------------- ## don't forget this 1; ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Format/Alias.pm0000664000175000017500000000234511655740662020255 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## DebianDoc_SGML/Format/Alias.pm: output format generator alias map ## ---------------------------------------------------------------------- ## Copyright (C) 1998-2004 Ardo van Rangelrooij ## ## This is free software; see the GNU General Public Licence ## version 2 or later for copying conditions. There is NO warranty. ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- ## package interface definition package DebianDoc_SGML::Format::Alias; use strict; use vars qw( @ISA @EXPORT ); use Exporter; @ISA = qw( Exporter ); @EXPORT = qw( %format_aliases ); ## ---------------------------------------------------------------------- ## format alias definitions use vars qw( %format_aliases ); %format_aliases = ( 'html' => 'HTML', 'latex' => 'LaTeX', 'texinfo' => 'Texinfo', 'text' => 'Text', 'wiki' => 'Wiki', 'textov' => 'TextOV', 'dbk' => 'XML', ); ## ---------------------------------------------------------------------- ## don't forget this 1; ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Map/0000775000175000017500000000000011655740662016147 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/lib/Map/LaTeX.pm0000664000175000017500000007357111655740662017477 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## DebianDoc_SGML/Map/LaTeX: LaTeX output format data map ## ---------------------------------------------------------------------- ## Copyright (C) 1999-2004 Ardo van Rangelrooij ## ## This is free software; see the GNU General Public Licence ## version 2 or later for copying conditions. There is NO warranty. ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- ## package interface definition #package DebianDoc_SGML::Map::LaTeX; #use strict; #use vars qw( @ISA @EXPORT ); #use Exporter; #@ISA = ( 'Exporter' ); #@EXPORT = qw (); ## ---------------------------------------------------------------------- %cdata = ( ); ## ---------------------------------------------------------------------- %sdata = ( ## ISO 8879:1986//ENTITIES Added Latin 1//EN "[aacute]" => "\\'{a}", "[Aacute]" => "\\'{A}", "[acirc ]" => "\\^{a}", "[Acirc ]" => "\\^{A}", "[agrave]" => "\\`{a}", "[Agrave]" => "\\`{A}", "[aring ]" => "\\r{a}", "[Aring ]" => "\\r{A}", "[atilde]" => "\\~{a}", "[Atilde]" => "\\~{A}", "[auml ]" => "\\\"{a}", "[Auml ]" => "\\\"{A}", "[aelig ]" => "\\ae{}", "[AElig ]" => "\\AE{}", "[ccedil]" => "\\c{c}", "[Ccedil]" => "\\c{C}", "[eth ]" => "[eth]", # \\eth{} (AMS)??? "[ETH ]" => "[ETH]", "[eacute]" => "\\'{e}", "[Eacute]" => "\\'{E}", "[ecirc ]" => "\\^{e}", "[Ecirc ]" => "\\^{E}", "[egrave]" => "\\`{e}", "[Egrave]" => "\\`{E}", "[euml ]" => "\\\"{e}", "[Euml ]" => "\\\"{E}", "[iacute]" => "\\'{\\i}", "[Iacute]" => "\\'{I}", "[icirc ]" => "\\^{\\i}", "[Icirc ]" => "\\^{I}", "[igrave]" => "\\`{\\i}", "[Igrave]" => "\\`{I}", "[iuml ]" => "\\\"{\\i}", "[Iuml ]" => "\\\"{I}", "[ntilde]" => "\\~{n}", "[Ntilde]" => "\\~{N}", "[oacute]" => "\\'{o}", "[Oacute]" => "\\'{O}", "[ocirc ]" => "\\^{o}", "[Ocirc ]" => "\\^{O}", "[ograve]" => "\\`{o}", "[Ograve]" => "\\`{O}", "[oslash]" => "\\o{}", "[Oslash]" => "\\O{}", "[otilde]" => "\\~{o}", "[Otilde]" => "\\~{O}", "[ouml ]" => "\\\"{o}", "[Ouml ]" => "\\\"{O}", "[szlig ]" => "\\ss{}", "[thorn ]" => "[thorn]", "[THORN ]" => "[THORN]", "[uacute]" => "\\'{u}", "[Uacute]" => "\\'{U}", "[ucirc ]" => "\\^{u}", "[Ucirc ]" => "\\^{U}", "[ugrave]" => "\\`{u}", "[Ugrave]" => "\\`{U}", "[uuml ]" => "\\\"{u}", "[Uuml ]" => "\\\"{U}", "[yacute]" => "\\'{y}", "[Yacute]" => "\\'{Y}", "[yuml ]" => "\\\"{y}", ## ISO 8879:1986//ENTITIES Added Latin 2//EN "[abreve]" => "\\u{a}", "[Abreve]" => "\\u{A}", "[amacr ]" => "\\={a}", "[Amacr ]" => "\\={A}", "[aogon ]" => "\\k{a}", "[Aogon ]" => "\\k{A}", "[cacute]" => "\\'{c}", "[Cacute]" => "\\'{C}", "[ccaron]" => "\\v{c}", "[Ccaron]" => "\\v{C}", "[ccirc ]" => "\\^{c}", "[Ccirc ]" => "\\^{C}", "[cdot ]" => "\\.{c}", "[Cdot ]" => "\\.{C}", "[dcaron]" => "\\v{d}", "[Dcaron]" => "\\v{D}", "[dstrok]" => "\\dj{}", "[Dstrok]" => "\\DJ{}", "[ecaron]" => "\\v{e}", "[Ecaron]" => "\\v{E}", "[edot ]" => "\\.{e}", "[Edot ]" => "\\.{E}", "[emacr ]" => "\\={e}", "[Emacr ]" => "\\={E}", "[eogon ]" => "\\k{e}", "[Eogon ]" => "\\k{E}", "[gacute]" => "\\'{g}", "[gbreve]" => "\\u{g}", "[Gbreve]" => "\\u{G}", "[Gcedil]" => "\\c{G}", "[gcirc ]" => "\\^{g}", "[Gcirc ]" => "\\^{G}", "[gdot ]" => "\\.{g}", "[Gdot ]" => "\\.{G}", "[hcirc ]" => "\\^{h}", "[Hcirc ]" => "\\^{H}", "[hstrok]" => "[hstrok]", "[Hstrok]" => "[Hstrok]", "[Idot ]" => "\\.{I}", "[Imacr ]" => "\\={\\i}", "[imacr ]" => "\\={I}", "[ijlig ]" => "ij", "[IJlig ]" => "IJ", "[inodot]" => "\\i", "[iogon ]" => "\\k{i}", "[Iogon ]" => "\\k{I}", "[itilde]" => "\\~{\\i}", "[Itilde]" => "\\~{I}", "[jcirc ]" => "[jcirc]", "[Jcirc ]" => "\\^{J}", "[kcedil]" => "\\c{k}", "[Kcedil]" => "\\c{K}", "[kgreen]" => "\\textsc{k}", "[lacute]" => "\\'{l}", "[Lacute]" => "\\'{L}", "[lcaron]" => "\\v{l}", "[Lcaron]" => "\\v{L}", "[lcedil]" => "\\c{l}", "[Lcedil]" => "\\c{L}", "[lmidot]" => "[lmidot]", "[Lmidot]" => "[Lmidot]", "[lstrok]" => "\\l{}", "[Lstrok]" => "\\L{}", "[nacute]" => "\\'{n}", "[Nacute]" => "\\'{N}", "[eng ]" => "[eng]", "[ENG ]" => "[ENG]", "[napos ]" => "[napos]", "[ncaron]" => "\\v{n}", "[Ncaron]" => "\\v{N}", "[ncedil]" => "\\c{n}", "[Ncedil]" => "\\c{N}", "[odblac]" => "\\H{o}", "[Odblac]" => "\\H{O}", "[omacr ]" => "\\={o}", "[Omacr ]" => "\\={O}", "[oelig ]" => "\\oe{}", "[OElig ]" => "\\OE{}", "[racute]" => "\\'{r}", "[Racute]" => "\\'{R}", "[rcaron]" => "\\v{r}", "[Rcaron]" => "\\v{R}", "[rcedil]" => "\\c{r}", "[Rcedil]" => "\\c{R}", "[sacute]" => "\\'{s}", "[Sacute]" => "\\'{S}", "[scaron]" => "\\v{s}", "[Scaron]" => "\\v{S}", "[scedil]" => "\\c{s}", "[Scedil]" => "\\c{S}", "[scirc ]" => "\\^{s}", "[Scirc ]" => "\\^{S}", "[tcaron]" => "\\v{t}", "[Tcaron]" => "\\v{T}", "[tcedil]" => "\\c{t}", "[Tcedil]" => "\\c{T}", "[tstrok]" => "[tstrok]", "[Tstrok]" => "[Tstrok]", "[ubreve]" => "\\u{u}", "[Ubreve]" => "\\u{U}", "[udblac]" => "\\H{u}", "[Udblac]" => "\\H{U}", "[umacr ]" => "\\={u}", "[Umacr ]" => "\\={U}", "[uogon ]" => "\\k{u}", "[Uogon ]" => "\\k{U}", "[uring ]" => "\\r{u}", "[Uring ]" => "\\r{U}", "[utilde]" => "\\~{u}", "[Utilde]" => "\\~{U}", "[wcirc ]" => "\\^{w}", "[Wcirc ]" => "\\^{W}", "[ycirc ]" => "\\^{y}", "[Ycirc ]" => "\\^{Y}", "[Yuml ]" => "\\\"{Y}", "[zacute]" => "\\'{z}", "[Zacute]" => "\\'{Z}", "[zcaron]" => "\\v{z}", "[Zcaron]" => "\\v{Z}", "[zdot ]" => "\\.{z}", "[Zdot ]" => "\\.{Z}", ## ISO 8879:1986//ENTITIES Greek Letters//EN "[agr ]" => "[agr]", "[Agr ]" => "[Agr]", "[bgr ]" => "[bgr]", "[Bgr ]" => "[Bgr]", "[ggr ]" => "[ggr]", "[Ggr ]" => "[Ggr]", "[dgr ]" => "[dgr]", "[Dgr ]" => "[Dgr]", "[egr ]" => "[egr]", "[Egr ]" => "[Egr]", "[zgr ]" => "[zgr]", "[Zgr ]" => "[Zgr]", "[eegr ]" => "[eegr]", "[EEgr ]" => "[EEgr]", "[thgr ]" => "[thgr]", "[THgr ]" => "[THgr]", "[igr ]" => "[igr]", "[Igr ]" => "[Igr]", "[kgr ]" => "[kgr]", "[Kgr ]" => "[Kgr]", "[lgr ]" => "[lgr]", "[Lgr ]" => "[Lgr]", "[mgr ]" => "[mgr]", "[Mgr ]" => "[Mgr]", "[ngr ]" => "[ngr]", "[Ngr ]" => "[Ngr]", "[xgr ]" => "[xgr]", "[Xgr ]" => "[Xgr]", "[ogr ]" => "[ogr]", "[Ogr ]" => "[Ogr]", "[pgr ]" => "[pgr]", "[Pgr ]" => "[Pgr]", "[rgr ]" => "[rgr]", "[Rgr ]" => "[Rgr]", "[sgr ]" => "[sgr]", "[Sgr ]" => "[Sgr]", "[sfgr ]" => "[sfgr]", "[tgr ]" => "[tgr]", "[Tgr ]" => "[Tgr]", "[ugr ]" => "[ugr]", "[Ugr ]" => "[Ugr]", "[phgr ]" => "[phgr]", "[PHgr ]" => "[PHgr]", "[khgr ]" => "[khgr]", "[KHgr ]" => "[KHgr]", "[psgr ]" => "[psgr]", "[PSgr ]" => "[PSgr]", "[ohgr ]" => "[ohgr]", "[OHgr ]" => "[OHgr]", ## ISO 8879:1986//ENTITIES Monotoniko Greek//EN "[aacgr ]" => "[aacgr]", "[Aacgr ]" => "[Aacgr]", "[eacgr ]" => "[eacgr]", "[Eacgr ]" => "[Eacgr]", "[eeacgr]" => "[eeacgr]", "[EEacgr]" => "[EEacgr]", "[idigr ]" => "[idigr]", "[Idigr ]" => "[Idigr]", "[iacgr ]" => "[iacgr]", "[Iacgr ]" => "[Iacgr]", "[idiagr]" => "[idiagr]", "[oacgr ]" => "[oacgr]", "[Oacgr ]" => "[Oacgr]", "[udigr ]" => "[udigr]", "[Udigr ]" => "[Udigr]", "[uacgr ]" => "[uacgr]", "[Uacgr ]" => "[Uacgr]", "[udiagr]" => "[udiagr]", "[ohacgr]" => "[ohacgr]", "[OHacgr]" => "[OHacgr]", ## ISO 8879:1986//ENTITIES Russian Cyrillic//EN "[acy ]" => "[acy]", "[Acy ]" => "[Acy]", "[bcy ]" => "[bcy]", "[Bcy ]" => "[Bcy]", "[vcy ]" => "[vcy]", "[Vcy ]" => "[Vcy]", "[gcy ]" => "[gcy]", "[Gcy ]" => "[Gcy]", "[dcy ]" => "[dcy]", "[Dcy ]" => "[Dcy]", "[iecy ]" => "[iecy]", "[IEcy ]" => "[IEcy]", "[iocy ]" => "[iocy]", "[IOcy ]" => "[IOcy]", "[zhcy ]" => "[zhcy]", "[ZHcy ]" => "[ZHcy]", "[zcy ]" => "[zcy]", "[Zcy ]" => "[Zcy]", "[icy ]" => "[icy]", "[Icy ]" => "[Icy]", "[jcy ]" => "[jcy]", "[Jcy ]" => "[Jcy]", "[kcy ]" => "[kcy]", "[Kcy ]" => "[Kcy]", "[lcy ]" => "[lcy]", "[Lcy ]" => "[Lcy]", "[mcy ]" => "[mcy]", "[Mcy ]" => "[Mcy]", "[ncy ]" => "[ncy]", "[Ncy ]" => "[Ncy]", "[ocy ]" => "[ocy]", "[Ocy ]" => "[Ocy]", "[pcy ]" => "[pcy]", "[Pcy ]" => "[Pcy]", "[rcy ]" => "[rcy]", "[Rcy ]" => "[Rcy]", "[scy ]" => "[scy]", "[Scy ]" => "[Scy]", "[tcy ]" => "[tcy]", "[Tcy ]" => "[Tcy]", "[ucy ]" => "[ucy]", "[Ucy ]" => "[Ucy]", "[fcy ]" => "[fcy]", "[Fcy ]" => "[Fcy]", "[khcy ]" => "[khcy]", "[KHcy ]" => "[KHcy]", "[tscy ]" => "[tscy]", "[TScy ]" => "[TScy]", "[chcy ]" => "[chcy]", "[CHcy ]" => "[CHcy]", "[shcy ]" => "[shcy]", "[SHcy ]" => "[SHcy]", "[shchcy]" => "[shchcy]", "[SHCHcy]" => "[SHCHcy]", "[hardcy]" => "[hardcy]", "[HARDcy]" => "[HARDcy]", "[ycy ]" => "[ycy]", "[Ycy ]" => "[Ycy]", "[softcy]" => "[softcy]", "[SOFTcy]" => "[SOFTcy]", "[ecy ]" => "[ecy]", "[Ecy ]" => "[Ecy]", "[yucy ]" => "[yucy]", "[YUcy ]" => "[YUcy]", "[yacy ]" => "[yacy]", "[YAcy ]" => "[YAcy]", "[numero]" => "[numero]", ## ISO 8879:1986//ENTITIES Non-Russian Cyrillic//EN "[djcy ]" => "[djcy]", "[DJcy ]" => "[DJcy]", "[gjcy ]" => "[gjcy]", "[GJcy ]" => "[GJcy]", "[jukcy ]" => "[jukcy]", "[Jukcy ]" => "[Jukcy]", "[dscy ]" => "[dscy]", "[DScy ]" => "[DScy]", "[iukcy ]" => "[iukcy]", "[Iukcy ]" => "[Iukcy]", "[yicy ]" => "[yicy]", "[YIcy ]" => "[YIcy]", "[jsercy]" => "[jsercy]", "[Jsercy]" => "[Jsercy]", "[ljcy ]" => "[ljcy]", "[LJcy ]" => "[LJcy]", "[njcy ]" => "[njcy]", "[NJcy ]" => "[NJcy]", "[tshcy ]" => "[tshcy]", "[TSHcy ]" => "[TSHcy]", "[kjcy ]" => "[kjcy]", "[KJcy ]" => "[KJcy]", "[ubrcy ]" => "[ubrcy]", "[Ubrcy ]" => "[Ubrcy]", "[dzcy ]" => "[dzcy]", "[DZcy ]" => "[DZcy]", ## ISO 8879:1986//ENTITIES Numeric and Special Graphic//EN "[half ]" => "\$\\frac{1}{2}\$", "[frac12]" => "\$\\frac{1}{2}\$", "[frac14]" => "\$\\frac{1}{4}\$", "[frac34]" => "\$\\frac{3}{4}\$", "[frac18]" => "\$\\frac{1}{8}\$", "[frac38]" => "\$\\frac{3}{8}\$", "[frac58]" => "\$\\frac{5}{8}\$", "[frac78]" => "\$\\frac{7}{8}\$", "[sup1 ]" => "\$^1\$", "[sup2 ]" => "\$^2\$", "[sup3 ]" => "\$^3\$", "[plus ]" => "+", "[plusmn]" => "\$\\pm\$", "[lt ]" => "\\textless{}", "[equals]" => "=", "[gt ]" => "\\textgreater{}", "[divide]" => "\\textdiv{}", "[times ]" => "\\texttimes{}", "[curren]" => "\\textcurrency{}", "[pound ]" => "\\textsterling{}", "[dollar]" => "\\textdollar{}", "[cent ]" => "\\textcent{}", "[yen ]" => "\\textyen{}", "[num ]" => "\\#", "[percnt]" => "\\%", "[amp ]" => "\\&", "[ast ]" => "\\textasteriskcentered{}", "[commat]" => "@", "[lsqb ]" => "[", "[bsol ]" => "\\textbackslash{}", "[rsqb ]" => "]", "[lcub ]" => "\\textbraceleft{}", "[horbar]" => "---", "[verbar]" => "\\textbar{}", "[rcub ]" => "\\textbraceright{}", "[micro ]" => "\\textmu{}", "[ohm ]" => "[ohm]", "[deg ]" => "\\textdegree{}", "[ordm ]" => "\\textordmasculine{}", "[ordf ]" => "\\textordfeminine{}", "[sect ]" => "\\textsection{}", "[para ]" => "\\textparagraph{}", "[middot]" => "\\textperiodcentered{}", "[larr ]" => "[larr]", "[rarr ]" => "[rarr]", "[uarr ]" => "[uarr]", "[darr ]" => "[darr]", "[copy ]" => "\\textcopyright{}", "[reg ]" => "\\textregistered{}", "[trade ]" => "\\texttrademark{}", "[brvbar]" => "\\textbrokenbar{}", "[not ]" => "\\textlnot{}", "[sung ]" => "[sung]", "[excl ]" => "!", "[iexcl ]" => "\\textexclamdown{}", "[quot ]" => "\\textquotedbl{}", "[apos ]" => "\\textquotesingle{}", "[lpar ]" => "(", "[rpar ]" => ")", "[comma ]" => ",", "[lowbar]" => "\\textunderscore{}", "[hyphen]" => "-", "[period]" => ".", "[sol ]" => "/", "[colon ]" => ":", "[semi ]" => ";", "[quest ]" => "?", "[iquest]" => "\\textquestiondown{}", "[laquo ]" => "\\guillemotleft{}", "[raquo ]" => "\\guillemotright{}", "[lsquo ]" => "\\textquoteleft{}", "[rsquo ]" => "\\textquoteright{}", "[ldquo ]" => "\\textquotedblleft{}", "[rdquo ]" => "\\textquotedblright{}", "[nbsp ]" => "~", "[shy ]" => "\\-", ## ISO 8879:1986//ENTITIES Diacritical Marks//EN "[acute ]" => "\\textasciiacute{}", "[breve ]" => "\\textasciibreve{}", "[caron ]" => "\\textasciicaron{}", "[cedil ]" => "\\c{}", "[circ ]" => "\\textasciicircum{}", "[dblac ]" => "\\textacutedbl{}", "[die ]" => "\\textasciidieresis{}", "[dot ]" => "[dot]", "[grave ]" => "\\textasciigrave{}", "[macr ]" => "\\textasciimacron{}", "[ogon ]" => "\\k{}", "[ring ]" => "\\textdegree{}", "[tilde ]" => "\\textasciitilde{}", "[uml ]" => "\\textasciidieresis{}", ## ISO 8879:1986//ENTITIES Publishing//EN "[emsp ]" => "\\hspace{1em}", "[ensp ]" => "\\hspace{0.5em}", "[emsp3 ]" => "\\hspace{0.33em}", "[emsp4 ]" => "\\hspace{0.25em}", "[numsp ]" => "\\hphantom{0}", "[puncsp]" => "\\hphantom{,}", "[thinsp]" => "\\hspace{0.167em}", "[hairsp]" => "\\hspace{1pt}", "[mdash ]" => "\\textemdash{}", "[ndash ]" => "\\textendash{}", "[dash ]" => "-", "[blank ]" => "\\textvisiblespace{}", "[hellip]" => "\\textellipsis{}", "[nldr ]" => "[nldr]", "[frac13]" => "\$\\frac{1}{3}\$", "[frac23]" => "\$\\frac{2}{3}\$", "[frac15]" => "\$\\frac{1}{5}\$", "[frac25]" => "\$\\frac{2}{5}\$", "[frac35]" => "\$\\frac{3}{5}\$", "[frac45]" => "\$\\frac{4}{5}\$", "[frac16]" => "\$\\frac{1}{6}\$", "[frac56]" => "\$\\frac{5}{6}\$", "[incare]" => "\${^c\\!/\\!_o}\$", "[block ]" => "[block]", "[uhblk ]" => "[uhblk]", "[lhblk ]" => "[lhblk]", "[blk14 ]" => "[blk14]", "[blk12 ]" => "[blk12]", "[blk34 ]" => "[blk34]", "[marker]" => "[marker]", "[cir ]" => "\$\\circ\$", "[squ ]" => "[squ]", "[rect ]" => "[rect]", "[utri ]" => "[utri]", "[dtri ]" => "[dtri]", "[star ]" => "\\ding{73}", "[bull ]" => "\\textbullet{}", "[squf ]" => "[squf]", "[utrif ]" => "[utrif]", "[dtrif ]" => "[dtrif]", "[ltrif ]" => "[ltrif]", "[rtrif ]" => "[rtrif]", "[clubs ]" => "\\ding{168}", "[diams ]" => "\\ding{169}", "[hearts]" => "\\ding{170}", "[spades]" => "\\ding{171}", "[malt ]" => "\\ding{64}", "[dagger]" => "\\textdagger{}", "[Dagger]" => "\\textdaggerdbl{}", "[check ]" => "\\ding{51}", "[ballot]" => "\\ding{55}", "[sharp ]" => "\$\\sharp\$", "[flat ]" => "\$\\flat\$", "[male ]" => "\\male{}", "[female]" => "\\female{}", "[phone ]" => "\\phone{}", "[telrec]" => "\\recorder{}", "[copysr]" => "[copysr]", "[caret ]" => "[caret]", "[lsquor]" => "\\quotesinglbase{}", "[ldquor]" => "\\quotedblbase{}", "[fflig ]" => "ff", "[filig ]" => "fi", "[fjlig ]" => "fj", "[ffilig]" => "ffi", "[ffllig]" => "ffl", "[fllig ]" => "fl", "[mldr ]" => "[mldr]", "[rdquor]" => "\\textquotedblleft{}", "[rsquor]" => "'", "[vellip]" => "\$\\vdots\$", "[hybull]" => "[hybull]", "[loz ]" => "[loz]", "[lozf ]" => "[lozf]", "[ltri ]" => "\$\\triangleleft\$", "[rtri ]" => "\$\\triangleright\$", "[starf ]" => "[starf]", "[natur ]" => "\$\\natural\$", "[rx ]" => "[rx]", "[sext ]" => "\\ding{86}", "[target]" => "[target]", "[dlcrop]" => "[dlcrop]", "[drcrop]" => "[drcrop]", "[ulcrop]" => "[ulcrop]", "[urcrop]" => "[urcrop]", ## ISO 8879:1986//ENTITIES Box and Line Drawing//EN "[boxh ]" => "[boxh]", "[boxv ]" => "[boxv]", "[boxur ]" => "[boxur]", "[boxul ]" => "[boxul]", "[boxdl ]" => "[boxdl]", "[boxdr ]" => "[boxdr]", "[boxvr ]" => "[boxvr]", "[boxhu ]" => "[boxhu]", "[boxvl ]" => "[boxvl]", "[boxhd ]" => "[boxhd]", "[boxvh ]" => "[boxvh]", "[boxvR ]" => "[boxvR]", "[boxhU ]" => "[boxhU]", "[boxvL ]" => "[boxvL]", "[boxhD ]" => "[boxhD]", "[boxvH ]" => "[boxvH]", "[boxH ]" => "[boxH]", "[boxV ]" => "[boxV]", "[boxUR ]" => "[boxUR]", "[boxUL ]" => "[boxUL]", "[boxDL ]" => "[boxDL]", "[boxDR ]" => "[boxDR]", "[boxVR ]" => "[boxVR]", "[boxHU ]" => "[boxHU]", "[boxVL ]" => "[boxVL]", "[boxHD ]" => "[boxHD]", "[boxVH ]" => "[boxVH]", "[boxVr ]" => "[boxVr]", "[boxHu ]" => "[boxHu]", "[boxVl ]" => "[boxVl]", "[boxHd ]" => "[boxHd]", "[boxVh ]" => "[boxVh]", "[boxuR ]" => "[boxuR]", "[boxUl ]" => "[boxUl]", "[boxdL ]" => "[boxdL]", "[boxDr ]" => "[boxDr]", "[boxUr ]" => "[boxUr]", "[boxuL ]" => "[boxuL]", "[boxDl ]" => "[boxDl]", "[boxdR ]" => "[boxdR]", ## ISO 8879:1986//ENTITIES General Technical//EN "[aleph ]" => "\$\\aleph\$", "[and ]" => "\$\\land\$", "[ang90 ]" => "[ang90]", "[angsph]" => "[angsph]", "[ap ]" => "\$\\approx\$", "[becaus]" => "[because]", "[bottom]" => "\$\\bot\$", "[cap ]" => "\$\\cap\$", "[cong ]" => "\$\\cong\$", "[conint]" => "\$\\oint\$", "[cup ]" => "\$\\cup\$", "[equiv ]" => "\$\\equiv\$", "[exist ]" => "\$\\exists\$", "[forall]" => "\$\\forall\$", "[fnof ]" => "\$f\$", "[ge ]" => "\$\\ge\$", "[iff ]" => "\$\\iff\$", "[infin ]" => "\$\\infty\$", "[int ]" => "\$\\int\$", "[isin ]" => "\$\\in\$", "[lang ]" => "\$\\langle\$", "[lArr ]" => "\$\\Leftarrow\$", "[le ]" => "\$\\le\$", "[minus ]" => "\$-\$", "[mnplus]" => "\$\\mp\$", "[nabla ]" => "\$\\nabla\$", "[ne ]" => "\$\\neq\$", "[ni ]" => "\$\\ni\$", "[or ]" => "\$\\vee\$", "[par ]" => "\$\\parallel\$", "[part ]" => "\$\\partial\$", "[permil]" => "\\textperthousand{}", "[perp ]" => "\$\\perp\$", "[prime ]" => "\$\\prime\$", "[Prime ]" => "\$\\prime\\prime\$", "[prop ]" => "\$\\propto\$", "[radic ]" => "\$\\surd\$", "[rang ]" => "\$\\rangle\$", "[rArr ]" => "\$\\Rightarrow\$", "[sim ]" => "\$\\sim\$", "[sime ]" => "\$\\simeq\$", "[square]" => "\$\\Box\$", "[sub ]" => "\$\\subset\$", "[sube ]" => "\$\\subseteq\$", "[sup ]" => "\$\\supset\$", "[supe ]" => "\$\\supseteq\$", "[there4]" => "[there4]", "[Verbar]" => "\$\\Vert\$", "[angst ]" => "\\AA{}", "[bernou]" => "\$\\mathcal{B}\$", "[compfn]" => "\$\\circ\$", "[Dot ]" => "\$\\ddot{}\$", "[DotDot]" => "\$\\ddot{}\\kern4.5pt\\ddot{ }\$", "[hamilt]" => "\$\\mathcal{H}\$", "[lagran]" => "\$\\mathcal{L}\$", "[lowast]" => "\$\\ast\$", "[notin ]" => "\$\\not\\in\$", "[order ]" => "\$\\mathcal{O}\$", "[phmmat]" => "\$\\mathcal{M}\$", "[tdot ]" => "\$\\ddot{}\\kern 3pt\\dot{ }\$", "[tprime]" => "\$\\prime\\prime\\prime\$", "[wedgeq]" => "\$\\stackrel{\\wedge}{=}\$", ## ISO 8879:1986//ENTITIES Greek Symbols//EN "[alpha ]" => "\$\\alpha\$", "[beta ]" => "\$\\beta\$", "[gamma ]" => "\$\\gamma\$", "[Gamma ]" => "\$\\Gamma\$", "[gammad]" => "[gammad]", "[delta ]" => "\$\\delta\$", "[Delta ]" => "\$\\Delta\$", "[epsi ]" => "\$\\epsilon\$", "[epsiv ]" => "\$\\varepsilon\$", "[epsis ]" => "\$\\epsilon\$", "[zeta ]" => "\$\\zeta\$", "[eta ]" => "\$\\eta\$", "[thetas]" => "\$\\theta\$", "[Theta ]" => "\$\\Theta\$", "[thetav]" => "\$\\vartheta\$", "[iota ]" => "\$\\iota\$", "[kappa ]" => "\$\\kappa\$", "[kappav]" => "[kappav]", "[lambda]" => "\$\\lambda\$", "[Lambda]" => "\$\\Lambda\$", "[mu ]" => "\$\\mu\$", "[nu ]" => "\$\\nu\$", "[xi ]" => "\$\\xi\$", "[Xi ]" => "\$\\Xi\$", "[pi ]" => "\$\\pi\$", "[piv ]" => "\$\\varpi\$", "[Pi ]" => "\$\\Pi\$", "[rho ]" => "\$\\rho\$", "[rhov ]" => "\$\\varrho\$", "[sigma ]" => "\$\\sigma\$", "[Sigma ]" => "\$\\Sigma\$", "[sigmav]" => "\$\\varsigma\$", "[tau ]" => "\$\\tau\$", "[upsi ]" => "\$\\upsilon\$", "[Upsi ]" => "\$\\Upsilon\$", "[phis ]" => "\$\\phi\$", "[Phi ]" => "\$\\Phi\$", "[phiv ]" => "\$\\varphi\$", "[chi ]" => "\$\\chi\$", "[psi ]" => "\$\\psi\$", "[Psi ]" => "\$\\Psi\$", "[omega ]" => "\$\\omega\$", "[Omega ]" => "\$\\Omega\$", ## ISO 8879:1986//ENTITIES Alternative Greek Symbols//EN "[b.alpha ]" => "\$\\alpha\$", "[b.beta ]" => "\$\\beta\$", "[b.gamma ]" => "\$\\gamma\$", "[b.Gamma ]" => "\$\\Gamma\$", "[b.gammad]" => "[b.gammad]", "[b.delta ]" => "\$\\delta\$", "[b.Delta ]" => "\$\\Delta\$", "[b.epsi ]" => "\$\\epsilon\$", "[b.epsiv ]" => "\$\\varepsilon\$", "[b.epsis ]" => "\$\\epsilon\$", "[b.zeta ]" => "\$\\zeta\$", "[b.eta ]" => "\$\\eta\$", "[b.thetas]" => "\$\\theta\$", "[b.Theta ]" => "\$\\Theta\$", "[b.thetav]" => "\$\\vartheta\$", "[b.iota ]" => "\$\\iota\$", "[b.kappa ]" => "\$\\kappa\$", "[b.kappav]" => "[b.kappav]", "[b.lambda]" => "\$\\lambda\$", "[b.Lambda]" => "\$\\Lambda\$", "[b.mu ]" => "\$\\mu\$", "[b.nu ]" => "\$\\nu\$", "[b.xi ]" => "\$\\xi\$", "[b.Xi ]" => "\$\\Xi\$", "[b.pi ]" => "\$\\pi\$", "[b.piv ]" => "\$\\varpi\$", "[b.Pi ]" => "\$\\Pi\$", "[b.rho ]" => "\$\\rho\$", "[b.rhov ]" => "\$\\varrho\$", "[b.sigma ]" => "\$\\sigma\$", "[b.Sigma ]" => "\$\\Sigma\$", "[b.sigmav]" => "\$\\varsigma\$", "[b.tau ]" => "\$\\tau\$", "[b.upsi ]" => "\$\\upsilon\$", "[b.Upsi ]" => "\$\\Upsilon\$", "[b.phis ]" => "\$\\phi\$", "[b.Phi ]" => "\$\\Phi\$", "[b.phiv ]" => "\$\\varphi\$", "[b.chi ]" => "\$\\chi\$", "[b.psi ]" => "\$\\psi\$", "[b.Psi ]" => "\$\\Psi\$", "[b.omega ]" => "\$\\omega\$", "[b.Omega ]" => "\$\\Omega\$", ## ISO 8879:1986//ENTITIES Added Math Symbols: Ordinary//EN "[ang ]" => "[ang]", "[angmsd]" => "[angmsd]", "[beth ]" => "[beth]", "[bprime]" => "[bprime]", "[comp ]" => "[comp]", "[daleth]" => "[daleth]", "[ell ]" => "[ell]", "[empty ]" => "[empty]", "[gimel ]" => "[gimel]", "[image ]" => "[image]", "[inodot]" => "[inodot]", "[jnodot]" => "[jnodot]", "[nexist]" => "[nexist]", "[oS ]" => "[oS]", "[planck]" => "[planck]", "[real ]" => "[real]", "[sbsol ]" => "[sbsol]", "[vprime]" => "[vprime]", "[weierp]" => "[weierp]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Binary Operators//EN "[amalg ]" => "[amalg]", "[Barwed]" => "[Barwed]", "[barwed]" => "[barwed]", "[Cap ]" => "[Cap]", "[Cup ]" => "[Cup]", "[cuvee ]" => "[cuvee]", "[cuwed ]" => "[cuwed]", "[diam ]" => "[diam]", "[divonx]" => "[divonx]", "[intcal]" => "[intcal]", "[lthree]" => "[lthree]", "[ltimes]" => "[ltimes]", "[minusb]" => "[minusb]", "[oast ]" => "[oast]", "[ocir ]" => "[ocir]", "[odash ]" => "[odash]", "[odot ]" => "[odot]", "[ominus]" => "[ominus]", "[oplus ]" => "[oplus]", "[osol ]" => "[osol]", "[otimes]" => "[otimes]", "[plusb ]" => "[plusb]", "[plusdo]" => "[plusdo]", "[rthree]" => "[rthree]", "[rtimes]" => "[rtimes]", "[sdot ]" => "[sdot]", "[sdotb ]" => "[sdotb]", "[setmn ]" => "[setmn]", "[sqcap ]" => "[sqcap]", "[sqcup ]" => "[sqcup]", "[ssetmn]" => "[ssetmn]", "[sstarf]" => "[sstarf]", "[timesb]" => "[timesb]", "[top ]" => "[top]", "[uplus ]" => "[uplus]", "[wreath]" => "[wreath]", "[xcirc ]" => "[xcirc]", "[xdtri ]" => "[xdtri]", "[xutri ]" => "[xutri]", "[coprod]" => "[coprod]", "[prod ]" => "[prod]", "[sum ]" => "[sum]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Relations//EN "[ape ]" => "[ape]", "[asymp ]" => "[asymp]", "[bcong ]" => "[bcong]", "[bepsi ]" => "[bepsi]", "[bowtie]" => "[bowtie]", "[bsim ]" => "[bsim]", "[bsime ]" => "[bsime]", "[bump ]" => "[bump]", "[bumpe ]" => "[bumpe]", "[cire ]" => "[cire]", "[colone]" => "[colone]", "[cuepr ]" => "[cuepr]", "[cuesc ]" => "[cuesc]", "[cupre ]" => "[cupre]", "[dashv ]" => "[dashv]", "[ecir ]" => "[ecir]", "[ecolon]" => "[ecolon]", "[eDot ]" => "[eDot]", "[esdot ]" => "[esdot]", "[efDot ]" => "[efDot]", "[egs ]" => "[egs]", "[els ]" => "[els]", "[erDot ]" => "[erDot]", "[fork ]" => "[fork]", "[frown ]" => "[frown]", "[gap ]" => "[gap]", "[gsdot ]" => "[gsdot]", "[gE ]" => "[gE]", "[gel ]" => "[gel]", "[gEl ]" => "[gEl]", "[ges ]" => "[ges]", "[Gg ]" => "[Gg]", "[gl ]" => "[gl]", "[gsim ]" => "[gsim]", "[Gt ]" => "[Gt]", "[lap ]" => "[lap]", "[ldot ]" => "[ldot]", "[lE ]" => "[lE]", "[lEg ]" => "[lEg]", "[leg ]" => "[leg]", "[les ]" => "[les]", "[lg ]" => "[lg]", "[Ll ]" => "[Ll]", "[lsim ]" => "[lsim]", "[Lt ]" => "[Lt]", "[ltrie ]" => "[ltrie]", "[mid ]" => "[mid]", "[models]" => "[models]", "[pr ]" => "[pr]", "[prap ]" => "[prap]", "[pre ]" => "[pre]", "[prsim ]" => "[prsim]", "[rtrie ]" => "[rtrie]", "[samalg]" => "[samalg]", "[sc ]" => "[sc]", "[scap ]" => "[scap]", "[sccue ]" => "[sccue]", "[sce ]" => "[sce]", "[scsim ]" => "[scsim]", "[sfrown]" => "[sfrown]", "[smid ]" => "[smid]", "[smile ]" => "[smile]", "[spar ]" => "[spar]", "[sqsub ]" => "[sqsub]", "[sqsube]" => "[sqsube]", "[sqsup ]" => "[sqsup]", "[sqsupe]" => "[sqsupe]", "[ssmile]" => "[ssmile]", "[Sub ]" => "[Sub]", "[subE ]" => "[subE]", "[Sup ]" => "[Sup]", "[supE ]" => "[supE]", "[thkap ]" => "[thkap]", "[thksim]" => "[thksim]", "[trie ]" => "[trie]", "[twixt ]" => "[twixt]", "[vdash ]" => "[vdash]", "[Vdash ]" => "[Vdash]", "[vDash ]" => "[vDash]", "[veebar]" => "[veebar]", "[vltri ]" => "[vltri]", "[vprop ]" => "[vprop]", "[vrtri ]" => "[vrtri]", "[Vvdash]" => "[Vvdash]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Negated Relations//EN "[gnap ]" => "[gnap]", "[gne ]" => "[gne]", "[gnE ]" => "[gnE]", "[gnsim ]" => "[gnsim]", "[gvnE ]" => "[gvnE]", "[lnap ]" => "[lnap]", "[lnE ]" => "[lnE]", "[lne ]" => "[lne]", "[lnsim ]" => "[lnsim]", "[lvnE ]" => "[lvnE]", "[nap ]" => "[nap]", "[ncong ]" => "[ncong]", "[nequiv]" => "[nequiv]", "[ngE ]" => "[ngE]", "[nge ]" => "[nge]", "[nges ]" => "[nges]", "[ngt ]" => "[ngt]", "[nle ]" => "[nle]", "[nlE ]" => "[nlE]", "[nles ]" => "[nles]", "[nlt ]" => "[nlt]", "[nltri ]" => "[nltri]", "[nltrie]" => "[nltrie]", "[nmid ]" => "[nmid]", "[npar ]" => "[npar]", "[npr ]" => "[npr]", "[npre ]" => "[npre]", "[nrtri ]" => "[nrtri]", "[nrtrie]" => "[nrtrie]", "[nsc ]" => "[nsc]", "[nsce ]" => "[nsce]", "[nsim ]" => "[nsim]", "[nsime ]" => "[nsime]", "[nsmid ]" => "[nsmid]", "[nspar ]" => "[nspar]", "[nsub ]" => "[nsub]", "[nsube ]" => "[nsube]", "[nsubE ]" => "[nsubE]", "[nsup ]" => "[nsup]", "[nsupE ]" => "[nsupE]", "[nsupe ]" => "[nsupe]", "[nvdash]" => "[nvdash]", "[nvDash]" => "[nvDash]", "[nVDash]" => "[nVDash]", "[nVdash]" => "[nVdash]", "[prnap ]" => "[prnap]", "[prnE ]" => "[prnE]", "[prnsim]" => "[prnsim]", "[scnap ]" => "[scnap]", "[scnE ]" => "[scnE]", "[scnsim]" => "[scnsim]", "[subne ]" => "[subne]", "[subnE ]" => "[subnE]", "[supne ]" => "[supne]", "[supnE ]" => "[supnE]", "[vsubnE]" => "[vsubnE]", "[vsubne]" => "[vsubne]", "[vsupne]" => "[vsupne]", "[vsupnE]" => "[vsupnE]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Arrow Relations//EN "[cularr]" => "[cularr]", "[curarr]" => "[curarr]", "[dArr ]" => "[dArr]", "[darr2 ]" => "[darr2]", "[dharl ]" => "[dharl]", "[dharr ]" => "[dharr]", "[lAarr ]" => "[lAarr]", "[Larr ]" => "[Larr]", "[larr2 ]" => "[larr2]", "[larrhk]" => "[larrhk]", "[larrlp]" => "[larrlp]", "[larrtl]" => "[larrtl]", "[lhard ]" => "[lhard]", "[lharu ]" => "[lharu]", "[hArr ]" => "[hArr]", "[harr ]" => "[harr]", "[lrarr2]" => "[lrarr2]", "[rlarr2]" => "[rlarr2]", "[harrw ]" => "[harrw]", "[rlhar2]" => "[rlhar2]", "[lrhar2]" => "[lrhar2]", "[lsh ]" => "[lsh]", "[map ]" => "[map]", "[mumap ]" => "[mumap]", "[nearr ]" => "[nearr]", "[nlArr ]" => "[nlArr]", "[nlarr ]" => "[nlarr]", "[nhArr ]" => "[nhArr]", "[nharr ]" => "[nharr]", "[nrarr ]" => "[nrarr]", "[nrArr ]" => "[nrArr]", "[nwarr ]" => "[nwarr]", "[olarr ]" => "[olarr]", "[orarr ]" => "[orarr]", "[rAarr ]" => "[rAarr]", "[Rarr ]" => "[Rarr]", "[rarr2 ]" => "[rarr2]", "[rarrhk]" => "[rarrhk]", "[rarrlp]" => "[rarrlp]", "[rarrtl]" => "[rarrtl]", "[rarrw ]" => "[rarrw]", "[rhard ]" => "[rhard]", "[rharu ]" => "[rharu]", "[rsh ]" => "[rsh]", "[drarr ]" => "[drarr]", "[dlarr ]" => "[dlarr]", "[uArr ]" => "[uArr]", "[uarr2 ]" => "[uarr2]", "[vArr ]" => "[vArr]", "[varr ]" => "[varr]", "[uharl ]" => "[uharl]", "[uharr ]" => "[uharr]", "[xlArr ]" => "[xlArr]", "[xhArr ]" => "[xhArr]", "[xharr ]" => "[xharr]", "[xrArr ]" => "[xrArr]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Delimiters//EN "[rceil ]" => "[rceil]", "[rfloor]" => "[rfloor]", "[rpargt]" => "[rpargt]", "[urcorn]" => "[urcorn]", "[drcorn]" => "[drcorn]", "[lceil ]" => "[lceil]", "[lfloor]" => "[lfloor]", "[lpargt]" => "[lpargt]", "[ulcorn]" => "[ulcorn]", "[dlcorn]" => "[dlcorn]", ); ## ---------------------------------------------------------------------- ## don't forget this 1; ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Map/XML.pm0000664000175000017500000006701711655740662017160 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## DebianDoc_SGML/Map/HTML: HTML output format data map ## ---------------------------------------------------------------------- ## Copyright (C) 1999-2004 Ardo van Rangelrooij ## ## This is free software; see the GNU General Public Licence ## version 2 or later for copying conditions. There is NO warranty. ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- ## package interface definition #package DebianDoc_SGML::Map::HTML; #use strict; #use vars qw( @ISA @EXPORT ); #use Exporter; #@ISA = ( 'Exporter' ); #@EXPORT = qw (); ## ---------------------------------------------------------------------- %cdata = ( ); ## ---------------------------------------------------------------------- %sdata = ( # replace with UTF-8 ## ISO 8879:1986//ENTITIES Added Latin 1//EN "[aacute]" => "á", "[Aacute]" => "Ã", "[acirc ]" => "â", "[Acirc ]" => "Â", "[agrave]" => "à", "[Agrave]" => "À", "[aring ]" => "Ã¥", "[Aring ]" => "Ã…", "[atilde]" => "ã", "[Atilde]" => "Ã", "[auml ]" => "ä", "[Auml ]" => "Ä", "[aelig ]" => "æ", "[AElig ]" => "Æ", "[ccedil]" => "ç", "[Ccedil]" => "Ç", "[eth ]" => "ð", "[ETH ]" => "Ã", "[eacute]" => "é", "[Eacute]" => "É", "[ecirc ]" => "ê", "[Ecirc ]" => "Ê", "[egrave]" => "è", "[Egrave]" => "È", "[euml ]" => "ë", "[Euml ]" => "Ë", "[iacute]" => "í", "[Iacute]" => "Ã", "[icirc ]" => "î", "[Icirc ]" => "ÃŽ", "[igrave]" => "ì", "[Igrave]" => "ÃŒ", "[iuml ]" => "ï", "[Iuml ]" => "Ã", "[ntilde]" => "ñ", "[Ntilde]" => "Ñ", "[oacute]" => "ó", "[Oacute]" => "Ó", "[ocirc ]" => "ô", "[Ocirc ]" => "Ô", "[ograve]" => "ò", "[Ograve]" => "Ã’", "[oslash]" => "ø", "[Oslash]" => "Ø", "[otilde]" => "õ", "[Otilde]" => "Õ", "[ouml ]" => "ö", "[Ouml ]" => "Ö", "[szlig ]" => "ß", "[thorn ]" => "þ", "[THORN ]" => "Þ", "[uacute]" => "ú", "[Uacute]" => "Ú", "[ucirc ]" => "û", "[Ucirc ]" => "Û", "[ugrave]" => "ù", "[Ugrave]" => "Ù", "[uuml ]" => "ü", "[Uuml ]" => "Ü", "[yacute]" => "ý", "[Yacute]" => "Ã", "[yuml ]" => "ÿ", ## ISO 8879:1986//ENTITIES Added Latin 2//EN "[abreve]" => "ă", "[Abreve]" => "Ä‚", "[amacr ]" => "Ä", "[Amacr ]" => "Ä€", "[aogon ]" => "Ä…", "[Aogon ]" => "Ä„", "[cacute]" => "ć", "[Cacute]" => "Ć", "[ccaron]" => "Ä", "[Ccaron]" => "ÄŒ", "[ccirc ]" => "ĉ", "[Ccirc ]" => "Ĉ", "[cdot ]" => "Ä‹", "[Cdot ]" => "ÄŠ", "[dcaron]" => "Ä", "[Dcaron]" => "ÄŽ", "[dstrok]" => "Ä‘", "[Dstrok]" => "Ä", "[ecaron]" => "Ä›", "[Ecaron]" => "Äš", "[edot ]" => "Ä—", "[Edot ]" => "Ä–", "[emacr ]" => "Ä“", "[Emacr ]" => "Ä’", "[eogon ]" => "Ä™", "[Eogon ]" => "Ę", "[gacute]" => "ǵ", "[gbreve]" => "ÄŸ", "[Gbreve]" => "Äž", "[Gcedil]" => "Ä¢", "[gcirc ]" => "Ä", "[Gcirc ]" => "Äœ", "[gdot ]" => "Ä¡", "[Gdot ]" => "Ä ", "[hcirc ]" => "Ä¥", "[Hcirc ]" => "Ĥ", "[hstrok]" => "ħ", "[Hstrok]" => "Ħ", "[Idot ]" => "İ", "[Imacr ]" => "Ä«", "[imacr ]" => "Ī", "[ijlig ]" => "ij", "[IJlig ]" => "IJ", "[inodot]" => "ı", "[iogon ]" => "į", "[Iogon ]" => "Ä®", "[itilde]" => "Ä©", "[Itilde]" => "Ĩ", "[jcirc ]" => "ĵ", "[Jcirc ]" => "Ä´", "[kcedil]" => "Ä·", "[Kcedil]" => "Ķ", "[kgreen]" => "ĸ", "[lacute]" => "ĺ", "[Lacute]" => "Ĺ", "[lcaron]" => "ľ", "[Lcaron]" => "Ľ", "[lcedil]" => "ļ", "[Lcedil]" => "Ä»", "[lmidot]" => "Å€", "[Lmidot]" => "Ä¿", "[lstrok]" => "Å‚", "[Lstrok]" => "Å", "[nacute]" => "Å„", "[Nacute]" => "Ń", "[eng ]" => "Å‹", "[ENG ]" => "ÅŠ", "[napos ]" => "ʼn", "[ncaron]" => "ň", "[Ncaron]" => "Ň", "[ncedil]" => "ņ", "[Ncedil]" => "Å…", "[odblac]" => "Å‘", "[Odblac]" => "Å", "[omacr ]" => "Å", "[Omacr ]" => "ÅŒ", "[oelig ]" => "Å“", "[OElig ]" => "Å’", "[racute]" => "Å•", "[Racute]" => "Å”", "[rcaron]" => "Å™", "[Rcaron]" => "Ř", "[rcedil]" => "Å—", "[Rcedil]" => "Å–", "[sacute]" => "Å›", "[Sacute]" => "Åš", "[scaron]" => "Å¡", "[Scaron]" => "Å ", "[scedil]" => "ÅŸ", "[Scedil]" => "Åž", "[scirc ]" => "Å", "[Scirc ]" => "Åœ", "[tcaron]" => "Å¥", "[Tcaron]" => "Ť", "[tcedil]" => "Å£", "[Tcedil]" => "Å¢", "[tstrok]" => "ŧ", "[Tstrok]" => "Ŧ", "[ubreve]" => "Å­", "[Ubreve]" => "Ŭ", "[udblac]" => "ű", "[Udblac]" => "Ű", "[umacr ]" => "Å«", "[Umacr ]" => "Ū", "[uogon ]" => "ų", "[Uogon ]" => "Ų", "[uring ]" => "ů", "[Uring ]" => "Å®", "[utilde]" => "Å©", "[Utilde]" => "Ũ", "[wcirc ]" => "ŵ", "[Wcirc ]" => "Å´", "[ycirc ]" => "Å·", "[Ycirc ]" => "Ŷ", "[Yuml ]" => "Ÿ", "[zacute]" => "ź", "[Zacute]" => "Ź", "[zcaron]" => "ž", "[Zcaron]" => "Ž", "[zdot ]" => "ż", "[Zdot ]" => "Å»", ## ISO 8879:1986//ENTITIES Greek Letters//EN "[agr ]" => "[agr]", "[Agr ]" => "[Agr]", "[bgr ]" => "[bgr]", "[Bgr ]" => "[Bgr]", "[ggr ]" => "[ggr]", "[Ggr ]" => "[Ggr]", "[dgr ]" => "[dgr]", "[Dgr ]" => "[Dgr]", "[egr ]" => "[egr]", "[Egr ]" => "[Egr]", "[zgr ]" => "[zgr]", "[Zgr ]" => "[Zgr]", "[eegr ]" => "[eegr]", "[EEgr ]" => "[EEgr]", "[thgr ]" => "[thgr]", "[THgr ]" => "[THgr]", "[igr ]" => "[igr]", "[Igr ]" => "[Igr]", "[kgr ]" => "[kgr]", "[Kgr ]" => "[Kgr]", "[lgr ]" => "[lgr]", "[Lgr ]" => "[Lgr]", "[mgr ]" => "[mgr]", "[Mgr ]" => "[Mgr]", "[ngr ]" => "[ngr]", "[Ngr ]" => "[Ngr]", "[xgr ]" => "[xgr]", "[Xgr ]" => "[Xgr]", "[ogr ]" => "[ogr]", "[Ogr ]" => "[Ogr]", "[pgr ]" => "[pgr]", "[Pgr ]" => "[Pgr]", "[rgr ]" => "[rgr]", "[Rgr ]" => "[Rgr]", "[sgr ]" => "[sgr]", "[Sgr ]" => "[Sgr]", "[sfgr ]" => "[sfgr]", "[tgr ]" => "[tgr]", "[Tgr ]" => "[Tgr]", "[ugr ]" => "[ugr]", "[Ugr ]" => "[Ugr]", "[phgr ]" => "[phgr]", "[PHgr ]" => "[PHgr]", "[khgr ]" => "[khgr]", "[KHgr ]" => "[KHgr]", "[psgr ]" => "[psgr]", "[PSgr ]" => "[PSgr]", "[ohgr ]" => "[ohgr]", "[OHgr ]" => "[OHgr]", ## ISO 8879:1986//ENTITIES Monotoniko Greek//EN "[aacgr ]" => "[aacgr]", "[Aacgr ]" => "[Aacgr]", "[eacgr ]" => "[eacgr]", "[Eacgr ]" => "[Eacgr]", "[eeacgr]" => "[eeacgr]", "[EEacgr]" => "[EEacgr]", "[idigr ]" => "[idigr]", "[Idigr ]" => "[Idigr]", "[iacgr ]" => "[iacgr]", "[Iacgr ]" => "[Iacgr]", "[idiagr]" => "[idiagr]", "[oacgr ]" => "[oacgr]", "[Oacgr ]" => "[Oacgr]", "[udigr ]" => "[udigr]", "[Udigr ]" => "[Udigr]", "[uacgr ]" => "[uacgr]", "[Uacgr ]" => "[Uacgr]", "[udiagr]" => "[udiagr]", "[ohacgr]" => "[ohacgr]", "[OHacgr]" => "[OHacgr]", ## ISO 8879:1986//ENTITIES Russian Cyrillic//EN "[acy ]" => "[acy]", "[Acy ]" => "[Acy]", "[bcy ]" => "[bcy]", "[Bcy ]" => "[Bcy]", "[vcy ]" => "[vcy]", "[Vcy ]" => "[Vcy]", "[gcy ]" => "[gcy]", "[Gcy ]" => "[Gcy]", "[dcy ]" => "[dcy]", "[Dcy ]" => "[Dcy]", "[iecy ]" => "[iecy]", "[IEcy ]" => "[IEcy]", "[iocy ]" => "[iocy]", "[IOcy ]" => "[IOcy]", "[zhcy ]" => "[zhcy]", "[ZHcy ]" => "[ZHcy]", "[zcy ]" => "[zcy]", "[Zcy ]" => "[Zcy]", "[icy ]" => "[icy]", "[Icy ]" => "[Icy]", "[jcy ]" => "[jcy]", "[Jcy ]" => "[Jcy]", "[kcy ]" => "[kcy]", "[Kcy ]" => "[Kcy]", "[lcy ]" => "[lcy]", "[Lcy ]" => "[Lcy]", "[mcy ]" => "[mcy]", "[Mcy ]" => "[Mcy]", "[ncy ]" => "[ncy]", "[Ncy ]" => "[Ncy]", "[ocy ]" => "[ocy]", "[Ocy ]" => "[Ocy]", "[pcy ]" => "[pcy]", "[Pcy ]" => "[Pcy]", "[rcy ]" => "[rcy]", "[Rcy ]" => "[Rcy]", "[scy ]" => "[scy]", "[Scy ]" => "[Scy]", "[tcy ]" => "[tcy]", "[Tcy ]" => "[Tcy]", "[ucy ]" => "[ucy]", "[Ucy ]" => "[Ucy]", "[fcy ]" => "[fcy]", "[Fcy ]" => "[Fcy]", "[khcy ]" => "[khcy]", "[KHcy ]" => "[KHcy]", "[tscy ]" => "[tscy]", "[TScy ]" => "[TScy]", "[chcy ]" => "[chcy]", "[CHcy ]" => "[CHcy]", "[shcy ]" => "[shcy]", "[SHcy ]" => "[SHcy]", "[shchcy]" => "[shchcy]", "[SHCHcy]" => "[SHCHcy]", "[hardcy]" => "[hardcy]", "[HARDcy]" => "[HARDcy]", "[ycy ]" => "[ycy]", "[Ycy ]" => "[Ycy]", "[softcy]" => "[softcy]", "[SOFTcy]" => "[SOFTcy]", "[ecy ]" => "[ecy]", "[Ecy ]" => "[Ecy]", "[yucy ]" => "[yucy]", "[YUcy ]" => "[YUcy]", "[yacy ]" => "[yacy]", "[YAcy ]" => "[YAcy]", "[numero]" => "[numero]", ## ISO 8879:1986//ENTITIES Non-Russian Cyrillic//EN "[djcy ]" => "[djcy]", "[DJcy ]" => "[DJcy]", "[gjcy ]" => "[gjcy]", "[GJcy ]" => "[GJcy]", "[jukcy ]" => "[jukcy]", "[Jukcy ]" => "[Jukcy]", "[dscy ]" => "[dscy]", "[DScy ]" => "[DScy]", "[iukcy ]" => "[iukcy]", "[Iukcy ]" => "[Iukcy]", "[yicy ]" => "[yicy]", "[YIcy ]" => "[YIcy]", "[jsercy]" => "[jsercy]", "[Jsercy]" => "[Jsercy]", "[ljcy ]" => "[ljcy]", "[LJcy ]" => "[LJcy]", "[njcy ]" => "[njcy]", "[NJcy ]" => "[NJcy]", "[tshcy ]" => "[tshcy]", "[TSHcy ]" => "[TSHcy]", "[kjcy ]" => "[kjcy]", "[KJcy ]" => "[KJcy]", "[ubrcy ]" => "[ubrcy]", "[Ubrcy ]" => "[Ubrcy]", "[dzcy ]" => "[dzcy]", "[DZcy ]" => "[DZcy]", ## ISO 8879:1986//ENTITIES Numeric and Special Graphic//EN "[half ]" => "½", "[frac12]" => "½", "[frac14]" => "¼", "[frac34]" => "¾", "[frac18]" => "1/8", "[frac38]" => "3/8", "[frac58]" => "5/8", "[frac78]" => "7/8", "[sup1 ]" => "¹", "[sup2 ]" => "²", "[sup3 ]" => "³", "[plus ]" => "+", "[plusmn]" => "\±", "[lt ]" => "\<", "[equals]" => "=", "[gt ]" => "\>", "[divide]" => "\÷", "[times ]" => "\×", "[curren]" => "\¤", "[pound ]" => "\£", "[dollar]" => "\$", "[cent ]" => "\¢", "[yen ]" => "\¥", "[num ]" => "#", "[percnt]" => "%", "[amp ]" => "\&", "[ast ]" => "*", "[commat]" => "\@", "[lsqb ]" => "[", "[bsol ]" => "\\", "[rsqb ]" => "]", "[lcub ]" => "{", "[horbar]" => "--", "[verbar]" => "|", "[rcub ]" => "}", "[micro ]" => "\µ", "[ohm ]" => "[ohm]", "[deg ]" => "\°", "[ordm ]" => "\º", "[ordf ]" => "\ª", "[sect ]" => "\§", "[para ]" => "\¶", "[middot]" => "\·", "[larr ]" => "\←", "[rarr ]" => "\→", "[uarr ]" => "\↑", "[darr ]" => "\↓", "[copy ]" => "©", "[reg ]" => "®", "[trade ]" => "\™", "[brvbar]" => "\¦", "[not ]" => "\¬", "[sung ]" => "[sung]", "[excl ]" => "!", "[iexcl ]" => "¡", "[quot ]" => "\"", "[apos ]" => "'", "[lpar ]" => "(", "[rpar ]" => ")", "[comma ]" => ",", "[lowbar]" => "_", "[hyphen]" => "-", "[period]" => ".", "[sol ]" => "/", "[colon ]" => ":", "[semi ]" => ";", "[quest ]" => "?", "[iquest]" => "¿", "[laquo ]" => "«", "[raquo ]" => "»", "[lsquo ]" => "‘", "[rsquo ]" => "’", "[ldquo ]" => "“", "[rdquo ]" => "â€", "[nbsp ]" => " ", "[shy ]" => "\­", ## ISO 8879:1986//ENTITIES Diacritical Marks//EN "[acute ]" => "\´", "[breve ]" => "[breve]", "[caron ]" => "[caron]", "[cedil ]" => "\¸", "[circ ]" => "\ˆ", "[dblac ]" => "''", "[die ]" => "\¨", "[dot ]" => "[dot]", "[grave ]" => "`", "[macr ]" => "\¯", "[ogon ]" => "[ogon]", "[ring ]" => "[ring]", "[tilde ]" => "\˜", "[uml ]" => "\¨", ## ISO 8879:1986//ENTITIES Publishing//EN "[emsp ]" => "\ ", "[ensp ]" => "\ ", "[emsp3 ]" => "[emsp13]", "[emsp4 ]" => "[emsp14]", "[numsp ]" => "[numsp]", "[puncsp]" => "[puncsp]", "[thinsp]" => "\ ", "[hairsp]" => "[hairsp]", "[mdash ]" => "—", "[ndash ]" => "–", "[dash ]" => "-", "[blank ]" => "_", "[hellip]" => "\…", "[nldr ]" => "..", "[frac13]" => "1/3", "[frac23]" => "2/3", "[frac15]" => "1/5", "[frac25]" => "2/5", "[frac35]" => "3/5", "[frac45]" => "4/5", "[frac16]" => "1/6", "[frac56]" => "5/6", "[incare]" => "c/o", "[block ]" => "[block]", "[uhblk ]" => "[uhblk]", "[lhblk ]" => "[lhblk]", "[blk14 ]" => "[blk14]", "[blk12 ]" => "[blk12]", "[blk34 ]" => "[blk34]", "[marker]" => "[marker]", "[cir ]" => "o", "[squ ]" => "[squ]", "[rect ]" => "[rect]", "[utri ]" => "[utri]", "[dtri ]" => "[dtri]", "[star ]" => "[star]", "[bull ]" => "\•", "[squf ]" => "[squf]", "[utrif ]" => "[utrif]", "[dtrif ]" => "[dtrif]", "[ltrif ]" => "[ltrif]", "[rtrif ]" => "[rtrif]", "[clubs ]" => "\♣", "[diams ]" => "\♦", "[hearts]" => "\♥", "[spades]" => "\♠", "[malt ]" => "[malt]", "[dagger]" => "\†", "[Dagger]" => "\‡", "[check ]" => "[check]", "[ballot]" => "x", "[sharp ]" => "#", "[flat ]" => "[flat]", "[male ]" => "[male]", "[female]" => "[female]", "[phone ]" => "[phone]", "[telrec]" => "[telrec]", "[copysr]" => "[copysr]", "[caret ]" => "^", "[lsquor]" => "'", "[ldquor]" => "\"", "[fflig ]" => "ff", "[filig ]" => "fi", "[fjlig ]" => "fj", "[ffilig]" => "ffi", "[ffllig]" => "ffl", "[fllig ]" => "fl", "[mldr ]" => "...", "[rdquor]" => "\"", "[rsquor]" => "'", "[vellip]" => ":", "[hybull]" => "-", "[loz ]" => "\◊", "[lozf ]" => "[lozf]", "[ltri ]" => "[ltri]", "[rtri ]" => "[rtri]", "[starf ]" => "[starf]", "[natur ]" => "[natur]", "[rx ]" => "[rx]", "[sext ]" => "[sext]", "[target]" => "[target]", "[dlcrop]" => "[dlcrop]", "[drcrop]" => "[drcrop]", "[ulcrop]" => "[ulcrop]", "[urcrop]" => "[urcrop]", ## ISO 8879:1986//ENTITIES Box and Line Drawing//EN "[boxh ]" => "[boxh]", "[boxv ]" => "[boxv]", "[boxur ]" => "[boxur]", "[boxul ]" => "[boxul]", "[boxdl ]" => "[boxdl]", "[boxdr ]" => "[boxdr]", "[boxvr ]" => "[boxvr]", "[boxhu ]" => "[boxhu]", "[boxvl ]" => "[boxvl]", "[boxhd ]" => "[boxhd]", "[boxvh ]" => "[boxvh]", "[boxvR ]" => "[boxvR]", "[boxhU ]" => "[boxhU]", "[boxvL ]" => "[boxvL]", "[boxhD ]" => "[boxhD]", "[boxvH ]" => "[boxvH]", "[boxH ]" => "[boxH]", "[boxV ]" => "[boxV]", "[boxUR ]" => "[boxUR]", "[boxUL ]" => "[boxUL]", "[boxDL ]" => "[boxDL]", "[boxDR ]" => "[boxDR]", "[boxVR ]" => "[boxVR]", "[boxHU ]" => "[boxHU]", "[boxVL ]" => "[boxVL]", "[boxHD ]" => "[boxHD]", "[boxVH ]" => "[boxVH]", "[boxVr ]" => "[boxVr]", "[boxHu ]" => "[boxHu]", "[boxVl ]" => "[boxVl]", "[boxHd ]" => "[boxHd]", "[boxVh ]" => "[boxVh]", "[boxuR ]" => "[boxuR]", "[boxUl ]" => "[boxUl]", "[boxdL ]" => "[boxdL]", "[boxDr ]" => "[boxDr]", "[boxUr ]" => "[boxUr]", "[boxuL ]" => "[boxuL]", "[boxDl ]" => "[boxDl]", "[boxdR ]" => "[boxdR]", ## ISO 8879:1986//ENTITIES General Technical//EN "[aleph ]" => "\ℵ", "[and ]" => "\∧", "[ang90 ]" => "|_", "[angsph]" => "[angsph]", "[ap ]" => "[ap]", "[becaus]" => "[becaus]", "[bottom]" => "[bottom]", "[cap ]" => "\∩", "[cong ]" => "\≅", "[conint]" => "[conint]", "[cup ]" => "\∪", "[equiv ]" => "\≡", "[exist ]" => "\∃", "[forall]" => "\∀", "[fnof ]" => "\ƒ", "[ge ]" => "\≥", "[iff ]" => "\<==\>", "[infin ]" => "\∞", "[int ]" => "\∫", "[isin ]" => "\∈", "[lang ]" => "\⟨", "[lArr ]" => "\⇐", "[le ]" => "\≤", "[minus ]" => "\−", "[mnplus]" => "-/+", "[nabla ]" => "\∇", "[ne ]" => "\≠", "[ni ]" => "\∋", "[or ]" => "\∨", "[par ]" => "||", "[part ]" => "\∂", "[permil]" => "\‰", "[perp ]" => "\⊥", "[prime ]" => "\′", "[Prime ]" => "\″", "[prop ]" => "\∝", "[radic ]" => "\√", "[rang ]" => "\⟩", "[rArr ]" => "\⇒", "[sim ]" => "\∼", "[sime ]" => "[sime]", "[square]" => "[square]", "[sub ]" => "\⊂", "[sube ]" => "\⊆", "[sup ]" => "\⊃", "[supe ]" => "\⊇", "[there4]" => "\∴", "[Verbar]" => "||", "[angst ]" => "AA", "[bernou]" => "B", "[compfn]" => "o", "[Dot ]" => "[Dot]", "[DotDot]" => "[DotDot]", "[hamilt]" => "H", "[lagran]" => "L", "[lowast]" => "\∗", "[notin ]" => "\∉", "[order ]" => "O", "[phmmat]" => "M", "[tdot ]" => "[tdot]", "[tprime]" => "'''", "[wedgeq]" => "[wedgeq]", ## ISO 8879:1986//ENTITIES Greek Symbols//EN "[alpha ]" => "\α", "[beta ]" => "\β", "[gamma ]" => "\γ", "[Gamma ]" => "\Γ", "[gammad]" => "\Γ", "[delta ]" => "\δ", "[Delta ]" => "\Δ", "[epsi ]" => "\ε", "[epsiv ]" => "\ε", "[epsis ]" => "\ε", "[zeta ]" => "\ζ", "[eta ]" => "\η", "[thetas]" => "\θ", "[Theta ]" => "\Θ", "[thetav]" => "\ϑ", "[iota ]" => "\ι", "[kappa ]" => "\κ", "[kappav]" => "\κ", "[lambda]" => "\λ", "[Lambda]" => "\Λ", "[mu ]" => "\μ", "[nu ]" => "\ν", "[xi ]" => "\ξ", "[Xi ]" => "\Ξ", "[pi ]" => "\π", "[piv ]" => "\ϖ", "[Pi ]" => "\Π", "[rho ]" => "\ρ", "[rhov ]" => "\ρ", "[sigma ]" => "\σ", "[Sigma ]" => "\Σ", "[sigmav]" => "\ς", "[tau ]" => "\τ", "[upsi ]" => "\υ", "[Upsi ]" => "\Υ", "[phis ]" => "\φ", "[Phi ]" => "\Φ", "[phiv ]" => "\φ", "[chi ]" => "\χ", "[psi ]" => "\ψ", "[Psi ]" => "\Ψ", "[omega ]" => "\ω", "[Omega ]" => "\Ω", ## ISO 8879:1986//ENTITIES Alternative Greek Symbols//EN "[b.alpha ]" => "\α", "[b.beta ]" => "\β", "[b.gamma ]" => "\γ", "[b.Gamma ]" => "\Γ", "[b.gammad]" => "\Γ", "[b.delta ]" => "\δ", "[b.Delta ]" => "\Δ", "[b.epsi ]" => "\ε", "[b.epsiv ]" => "\ε", "[b.epsis ]" => "\ε", "[b.zeta ]" => "\ζ", "[b.eta ]" => "\η", "[b.thetas]" => "\θ", "[b.Theta ]" => "\Θ", "[b.thetav]" => "\ϑ", "[b.iota ]" => "\ι", "[b.kappa ]" => "\κ", "[b.kappav]" => "\κ", "[b.lambda]" => "\λ", "[b.Lambda]" => "\Λ", "[b.mu ]" => "\μ", "[b.nu ]" => "\ν", "[b.xi ]" => "\ξ", "[b.Xi ]" => "\Ξ", "[b.pi ]" => "\π", "[b.piv ]" => "\ϖ", "[b.Pi ]" => "\Π", "[b.rho ]" => "\ρ", "[b.rhov ]" => "\ρ", "[b.sigma ]" => "\σ", "[b.Sigma ]" => "\Σ", "[b.sigmav]" => "\ς", "[b.tau ]" => "\τ", "[b.upsi ]" => "\υ", "[b.Upsi ]" => "\Υ", "[b.phis ]" => "\φ", "[b.Phi ]" => "\Φ", "[b.phiv ]" => "\φ", "[b.chi ]" => "\χ", "[b.psi ]" => "\ψ", "[b.Psi ]" => "\Ψ", "[b.omega ]" => "\ω", "[b.Omega ]" => "\Ω", ## ISO 8879:1986//ENTITIES Added Math Symbols: Ordinary//EN "[ang ]" => "\∠", "[angmsd]" => "[angmsd]", "[beth ]" => "[beth]", "[bprime]" => "`", "[comp ]" => "C", "[daleth]" => "[daleth]", "[ell ]" => "l", "[empty ]" => "\∅", "[gimel ]" => "[gimel]", "[image ]" => "\ℑ", "[inodot]" => "[inodot]", "[jnodot]" => "[jnodot]", "[nexist]" => "[nexist]", "[oS ]" => "[oS]", "[planck]" => "[planck]", "[real ]" => "\ℜ", "[sbsol ]" => "\\", "[vprime]" => "'", "[weierp]" => "\℘", ## ISO 8879:1986//ENTITIES Added Math Symbols: Binary Operators//EN "[amalg ]" => "[amalg]", "[Barwed]" => "[Barwed]", "[barwed]" => "[barwed]", "[Cap ]" => "[Cap]", "[Cup ]" => "[Cup]", "[cuvee ]" => "[cuvee]", "[cuwed ]" => "[cuwed]", "[diam ]" => "[diam]", "[divonx]" => "[divonx]", "[intcal]" => "[intcal]", "[lthree]" => "[lthree]", "[ltimes]" => "[ltimes]", "[minusb]" => "[minusb]", "[oast ]" => "[oast]", "[ocir ]" => "[ocir]", "[odash ]" => "[odash]", "[odot ]" => "[odot]", "[ominus]" => "[ominus]", "[oplus ]" => "\⊕", "[osol ]" => "[osol]", "[otimes]" => "\⊗", "[plusb ]" => "[plusb]", "[plusdo]" => "[plusdo]", "[rthree]" => "[rthree]", "[rtimes]" => "[rtimes]", "[sdot ]" => "\⋅", "[sdotb ]" => "[sdotb]", "[setmn ]" => "[setmn]", "[sqcap ]" => "[sqcap]", "[sqcup ]" => "[sqcup]", "[ssetmn]" => "[ssetmn]", "[sstarf]" => "[sstarf]", "[timesb]" => "[timesb]", "[top ]" => "[top]", "[uplus ]" => "[uplus]", "[wreath]" => "[wreath]", "[xcirc ]" => "[xcirc]", "[xdtri ]" => "[xdtri]", "[xutri ]" => "[xutri]", "[coprod]" => "[coprod]", "[prod ]" => "\∏", "[sum ]" => "\∑", ## ISO 8879:1986//ENTITIES Added Math Symbols: Relations//EN "[ape ]" => "[ape]", "[asymp ]" => "\≈", "[bcong ]" => "[bcong]", "[bepsi ]" => "[bepsi]", "[bowtie]" => "[bowtie]", "[bsim ]" => "[bsim]", "[bsime ]" => "[bsime]", "[bump ]" => "[bump]", "[bumpe ]" => "[bumpe]", "[cire ]" => "[cire]", "[colone]" => "[colone]", "[cuepr ]" => "[cuepr]", "[cuesc ]" => "[cuesc]", "[cupre ]" => "[cupre]", "[dashv ]" => "[dashv]", "[ecir ]" => "[ecir]", "[ecolon]" => "[ecolon]", "[eDot ]" => "[eDot]", "[esdot ]" => "[esdot]", "[efDot ]" => "[efDot]", "[egs ]" => "[egs]", "[els ]" => "[els]", "[erDot ]" => "[erDot]", "[fork ]" => "[fork]", "[frown ]" => "[frown]", "[gap ]" => "[gap]", "[gsdot ]" => "[gsdot]", "[gE ]" => "[gE]", "[gel ]" => "[gel]", "[gEl ]" => "[gEl]", "[ges ]" => "[ges]", "[Gg ]" => "[Gg]", "[gl ]" => "[gl]", "[gsim ]" => "[gsim]", "[Gt ]" => "[Gt]", "[lap ]" => "[lap]", "[ldot ]" => "[ldot]", "[lE ]" => "[lE]", "[lEg ]" => "[lEg]", "[leg ]" => "[leg]", "[les ]" => "[les]", "[lg ]" => "[lg]", "[Ll ]" => "[Ll]", "[lsim ]" => "[lsim]", "[Lt ]" => "[Lt]", "[ltrie ]" => "[ltrie]", "[mid ]" => "[mid]", "[models]" => "[models]", "[pr ]" => "[pr]", "[prap ]" => "[prap]", "[pre ]" => "[pre]", "[prsim ]" => "[prsim]", "[rtrie ]" => "[rtrie]", "[samalg]" => "[samalg]", "[sc ]" => "[sc]", "[scap ]" => "[scap]", "[sccue ]" => "[sccue]", "[sce ]" => "[sce]", "[scsim ]" => "[scsim]", "[sfrown]" => "[sfrown]", "[smid ]" => "[smid]", "[smile ]" => "[smile]", "[spar ]" => "[spar]", "[sqsub ]" => "[sqsub]", "[sqsube]" => "[sqsube]", "[sqsup ]" => "[sqsup]", "[sqsupe]" => "[sqsupe]", "[ssmile]" => "[ssmile]", "[Sub ]" => "[Sub]", "[subE ]" => "[subE]", "[Sup ]" => "[Sup]", "[supE ]" => "[supE]", "[thkap ]" => "[thkap]", "[thksim]" => "[thksim]", "[trie ]" => "[trie]", "[twixt ]" => "[twixt]", "[vdash ]" => "[vdash]", "[Vdash ]" => "[Vdash]", "[vDash ]" => "[vDash]", "[veebar]" => "[veebar]", "[vltri ]" => "[vltri]", "[vprop ]" => "[vprop]", "[vrtri ]" => "[vrtri]", "[Vvdash]" => "[Vvdash]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Negated Relations//EN "[gnap ]" => "[gnap]", "[gne ]" => "[gne]", "[gnE ]" => "[gnE]", "[gnsim ]" => "[gnsim]", "[gvnE ]" => "[gvnE]", "[lnap ]" => "[lnap]", "[lnE ]" => "[lnE]", "[lne ]" => "[lne]", "[lnsim ]" => "[lnsim]", "[lvnE ]" => "[lvnE]", "[nap ]" => "[nap]", "[ncong ]" => "[ncong]", "[nequiv]" => "[nequiv]", "[ngE ]" => "[ngE]", "[nge ]" => "[nge]", "[nges ]" => "[nges]", "[ngt ]" => "[ngt]", "[nle ]" => "[nle]", "[nlE ]" => "[nlE]", "[nles ]" => "[nles]", "[nlt ]" => "[nlt]", "[nltri ]" => "[nltri]", "[nltrie]" => "[nltrie]", "[nmid ]" => "[nmid]", "[npar ]" => "[npar]", "[npr ]" => "[npr]", "[npre ]" => "[npre]", "[nrtri ]" => "[nrtri]", "[nrtrie]" => "[nrtrie]", "[nsc ]" => "[nsc]", "[nsce ]" => "[nsce]", "[nsim ]" => "[nsim]", "[nsime ]" => "[nsime]", "[nsmid ]" => "[nsmid]", "[nspar ]" => "[nspar]", "[nsub ]" => "\⊄", "[nsube ]" => "[nsube]", "[nsubE ]" => "[nsubE]", "[nsup ]" => "[nsup]", "[nsupE ]" => "[nsupE]", "[nsupe ]" => "[nsupe]", "[nvdash]" => "[nvdash]", "[nvDash]" => "[nvDash]", "[nVDash]" => "[nVDash]", "[nVdash]" => "[nVdash]", "[prnap ]" => "[prnap]", "[prnE ]" => "[prnE]", "[prnsim]" => "[prnsim]", "[scnap ]" => "[scnap]", "[scnE ]" => "[scnE]", "[scnsim]" => "[scnsim]", "[subne ]" => "[subne]", "[subnE ]" => "[subnE]", "[supne ]" => "[supne]", "[supnE ]" => "[supnE]", "[vsubnE]" => "[vsubnE]", "[vsubne]" => "[vsubne]", "[vsupne]" => "[vsupne]", "[vsupnE]" => "[vsupnE]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Arrow Relations//EN "[cularr]" => "[cularr]", "[curarr]" => "[curarr]", "[dArr ]" => "\⇓", "[darr2 ]" => "[darr2]", "[dharl ]" => "[dharl]", "[dharr ]" => "[dharr]", "[lAarr ]" => "[lAarr]", "[Larr ]" => "[Larr]", "[larr2 ]" => "[larr2]", "[larrhk]" => "[larrhk]", "[larrlp]" => "[larrlp]", "[larrtl]" => "[larrtl]", "[lhard ]" => "[lhard]", "[lharu ]" => "[lharu]", "[hArr ]" => "\⇔", "[harr ]" => "\↔", "[lrarr2]" => "[lrarr2]", "[rlarr2]" => "[rlarr2]", "[harrw ]" => "[harrw]", "[rlhar2]" => "[rlhar2]", "[lrhar2]" => "[lrhar2]", "[lsh ]" => "[lsh]", "[map ]" => "[map]", "[mumap ]" => "[mumap]", "[nearr ]" => "[nearr]", "[nlArr ]" => "[nlArr]", "[nlarr ]" => "[nlarr]", "[nhArr ]" => "[nhArr]", "[nharr ]" => "[nharr]", "[nrarr ]" => "[nrarr]", "[nrArr ]" => "[nrArr]", "[nwarr ]" => "[nwarr]", "[olarr ]" => "[olarr]", "[orarr ]" => "[orarr]", "[rAarr ]" => "[rAarr]", "[Rarr ]" => "[Rarr]", "[rarr2 ]" => "[rarr2]", "[rarrhk]" => "[rarrhk]", "[rarrlp]" => "[rarrlp]", "[rarrtl]" => "[rarrtl]", "[rarrw ]" => "[rarrw]", "[rhard ]" => "[rhard]", "[rharu ]" => "[rharu]", "[rsh ]" => "[rsh]", "[drarr ]" => "[drarr]", "[dlarr ]" => "[dlarr]", "[uArr ]" => "\⇑", "[uarr2 ]" => "[uarr2]", "[vArr ]" => "[vArr]", "[varr ]" => "[varr]", "[uharl ]" => "[uharl]", "[uharr ]" => "[uharr]", "[xlArr ]" => "[xlArr]", "[xhArr ]" => "[xhArr]", "[xharr ]" => "[xharr]", "[xrArr ]" => "[xrArr]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Delimiters//EN "[rceil ]" => "\⌉", "[rfloor]" => "\⌋", "[rpargt]" => "[rpargt]", "[urcorn]" => "[urcorn]", "[drcorn]" => "[drcorn]", "[lceil ]" => "\⌈", "[lfloor]" => "\⌊", "[lpargt]" => "[lpargt]", "[ulcorn]" => "[ulcorn]", "[dlcorn]" => "[dlcorn]", ); ## ---------------------------------------------------------------------- ## don't forget this 1; ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Map/HTML.pm0000664000175000017500000007130211655740662017254 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## DebianDoc_SGML/Map/HTML: HTML output format data map ## ---------------------------------------------------------------------- ## Copyright (C) 1999-2004 Ardo van Rangelrooij ## ## This is free software; see the GNU General Public Licence ## version 2 or later for copying conditions. There is NO warranty. ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- ## package interface definition #package DebianDoc_SGML::Map::HTML; #use strict; #use vars qw( @ISA @EXPORT ); #use Exporter; #@ISA = ( 'Exporter' ); #@EXPORT = qw (); ## ---------------------------------------------------------------------- %cdata = ( '<' => '<', '>' => '>', '&' => '&', '"' => '"', ); ## ---------------------------------------------------------------------- %sdata = ( ## ISO 8879:1986//ENTITIES Added Latin 1//EN "[aacute]" => "\á", "[Aacute]" => "\Á", "[acirc ]" => "\â", "[Acirc ]" => "\Â", "[agrave]" => "\à", "[Agrave]" => "\À", "[aring ]" => "\å", "[Aring ]" => "\Å", "[atilde]" => "\ã", "[Atilde]" => "\Ã", "[auml ]" => "\ä", "[Auml ]" => "\Ä", "[aelig ]" => "\æ", "[AElig ]" => "\Æ", "[ccedil]" => "\ç", "[Ccedil]" => "\Ç", "[eth ]" => "\ð", "[ETH ]" => "\Ð", "[eacute]" => "\é", "[Eacute]" => "\É", "[ecirc ]" => "\ê", "[Ecirc ]" => "\Ê", "[egrave]" => "\è", "[Egrave]" => "\È", "[euml ]" => "\ë", "[Euml ]" => "\Ë", "[iacute]" => "\í", "[Iacute]" => "\Í", "[icirc ]" => "\î", "[Icirc ]" => "\Î", "[igrave]" => "\ì", "[Igrave]" => "\Ì", "[iuml ]" => "\ï", "[Iuml ]" => "\Ï", "[ntilde]" => "\ñ", "[Ntilde]" => "\Ñ", "[oacute]" => "\ó", "[Oacute]" => "\Ó", "[ocirc ]" => "\ô", "[Ocirc ]" => "\Ô", "[ograve]" => "\ò", "[Ograve]" => "\Ò", "[oslash]" => "\ø", "[Oslash]" => "\Ø", "[otilde]" => "\õ", "[Otilde]" => "\Õ", "[ouml ]" => "\ö", "[Ouml ]" => "\Ö", "[szlig ]" => "\ß", "[thorn ]" => "\þ", "[THORN ]" => "\Þ", "[uacute]" => "\ú", "[Uacute]" => "\Ú", "[ucirc ]" => "\û", "[Ucirc ]" => "\Û", "[ugrave]" => "\ù", "[Ugrave]" => "\Ù", "[uuml ]" => "\ü", "[Uuml ]" => "\Ü", "[yacute]" => "\ý", "[Yacute]" => "\Ý", "[yuml ]" => "\ÿ", ## ISO 8879:1986//ENTITIES Added Latin 2//EN "[abreve]" => "[abreve]", "[Abreve]" => "[Abreve]", "[amacr ]" => "[amacr]", "[Amacr ]" => "[Amacr]", "[aogon ]" => "[aogon]", "[Aogon ]" => "[Aogon]", "[cacute]" => "[cacute]", "[Cacute]" => "[Cacute]", "[ccaron]" => "[ccaron]", "[Ccaron]" => "[Ccaron]", "[ccirc ]" => "[ccirc]", "[Ccirc ]" => "[Ccirc]", "[cdot ]" => "[cdot]", "[Cdot ]" => "[Cdot]", "[dcaron]" => "[dcaron]", "[Dcaron]" => "[Dcaron]", "[dstrok]" => "[dstrok]", "[Dstrok]" => "[Dstrok]", "[ecaron]" => "[ecaron]", "[Ecaron]" => "[Ecaron]", "[edot ]" => "[edot]", "[Edot ]" => "[Edot]", "[emacr ]" => "[emacr]", "[Emacr ]" => "[Emacr]", "[eogon ]" => "[eogon]", "[Eogon ]" => "[Eogon]", "[gacute]" => "[gacute]", "[gbreve]" => "[gbreve]", "[Gbreve]" => "[Gbreve]", "[Gcedil]" => "[Gcedil]", "[gcirc ]" => "[gcirc]", "[Gcirc ]" => "[Gcirc]", "[gdot ]" => "[gdot]", "[Gdot ]" => "[Gdot]", "[hcirc ]" => "[hcirc]", "[Hcirc ]" => "[Hcirc]", "[hstrok]" => "[hstrok]", "[Hstrok]" => "[Hstrok]", "[Idot ]" => "[Idot]", "[Imacr ]" => "[Imacr]", "[imacr ]" => "[imacr]", "[ijlig ]" => "ij", "[IJlig ]" => "IJ", "[inodot]" => "[inodot]", "[iogon ]" => "[iogon]", "[Iogon ]" => "[Iogon]", "[itilde]" => "[itilde]", "[Itilde]" => "[Itilde]", "[jcirc ]" => "[jcirc]", "[Jcirc ]" => "[Jcirc]", "[kcedil]" => "[kcedil]", "[Kcedil]" => "[Kcedil]", "[kgreen]" => "[kgreen]", "[lacute]" => "[lacute]", "[Lacute]" => "[Lacute]", "[lcaron]" => "[lcaron]", "[Lcaron]" => "[Lcaron]", "[lcedil]" => "[lcedil]", "[Lcedil]" => "[Lcedil]", "[lmidot]" => "[lmidot]", "[Lmidot]" => "[Lmidot]", "[lstrok]" => "[lstrok]", "[Lstrok]" => "[Lstrok]", "[nacute]" => "[nacute]", "[Nacute]" => "[Nacute]", "[eng ]" => "[eng]", "[ENG ]" => "[ENG]", "[napos ]" => "n\'", "[ncaron]" => "[ncaron]", "[Ncaron]" => "[Ncaron]", "[ncedil]" => "[ncedil]", "[Ncedil]" => "[Ncedil]", "[odblac]" => "[odblac]", "[Odblac]" => "[Odblac]", "[omacr ]" => "[omacr]", "[Omacr ]" => "[Omacr]", "[oelig ]" => "\œ", "[OElig ]" => "\Œ", "[racute]" => "[racute]", "[Racute]" => "[Racute]", "[rcaron]" => "[rcaron]", "[Rcaron]" => "[Rcaron]", "[rcedil]" => "[rcedil]", "[Rcedil]" => "[Rcedil]", "[sacute]" => "[sacute]", "[Sacute]" => "[Sacute]", "[scaron]" => "\š", "[Scaron]" => "\Š", "[scedil]" => "[scedil]", "[Scedil]" => "[Scedil]", "[scirc ]" => "[scirc]", "[Scirc ]" => "[Scirc]", "[tcaron]" => "[tcaron]", "[Tcaron]" => "[Tcaron]", "[tcedil]" => "[tcedil]", "[Tcedil]" => "[Tcedil]", "[tstrok]" => "[tstrok]", "[Tstrok]" => "[Tstrok]", "[ubreve]" => "[ubreve]", "[Ubreve]" => "[Ubreve]", "[udblac]" => "[udblac]", "[Udblac]" => "[Udblac]", "[umacr ]" => "[umacr]", "[Umacr ]" => "[Umacr]", "[uogon ]" => "[uogon]", "[Uogon ]" => "[Uogon]", "[uring ]" => "[uring]", "[Uring ]" => "[Uring]", "[utilde]" => "[utilde]", "[Utilde]" => "[Utilde]", "[wcirc ]" => "[wcirc]", "[Wcirc ]" => "[Wcirc]", "[ycirc ]" => "[ycirc]", "[Ycirc ]" => "[Ycirc]", "[Yuml ]" => "\Ÿ", "[zacute]" => "[zacute]", "[Zacute]" => "[Zacute]", "[zcaron]" => "[zcaron]", "[Zcaron]" => "[Zcaron]", "[zdot ]" => "[zdot]", "[Zdot ]" => "[Zdot]", ## ISO 8879:1986//ENTITIES Greek Letters//EN "[agr ]" => "[agr]", "[Agr ]" => "[Agr]", "[bgr ]" => "[bgr]", "[Bgr ]" => "[Bgr]", "[ggr ]" => "[ggr]", "[Ggr ]" => "[Ggr]", "[dgr ]" => "[dgr]", "[Dgr ]" => "[Dgr]", "[egr ]" => "[egr]", "[Egr ]" => "[Egr]", "[zgr ]" => "[zgr]", "[Zgr ]" => "[Zgr]", "[eegr ]" => "[eegr]", "[EEgr ]" => "[EEgr]", "[thgr ]" => "[thgr]", "[THgr ]" => "[THgr]", "[igr ]" => "[igr]", "[Igr ]" => "[Igr]", "[kgr ]" => "[kgr]", "[Kgr ]" => "[Kgr]", "[lgr ]" => "[lgr]", "[Lgr ]" => "[Lgr]", "[mgr ]" => "[mgr]", "[Mgr ]" => "[Mgr]", "[ngr ]" => "[ngr]", "[Ngr ]" => "[Ngr]", "[xgr ]" => "[xgr]", "[Xgr ]" => "[Xgr]", "[ogr ]" => "[ogr]", "[Ogr ]" => "[Ogr]", "[pgr ]" => "[pgr]", "[Pgr ]" => "[Pgr]", "[rgr ]" => "[rgr]", "[Rgr ]" => "[Rgr]", "[sgr ]" => "[sgr]", "[Sgr ]" => "[Sgr]", "[sfgr ]" => "[sfgr]", "[tgr ]" => "[tgr]", "[Tgr ]" => "[Tgr]", "[ugr ]" => "[ugr]", "[Ugr ]" => "[Ugr]", "[phgr ]" => "[phgr]", "[PHgr ]" => "[PHgr]", "[khgr ]" => "[khgr]", "[KHgr ]" => "[KHgr]", "[psgr ]" => "[psgr]", "[PSgr ]" => "[PSgr]", "[ohgr ]" => "[ohgr]", "[OHgr ]" => "[OHgr]", ## ISO 8879:1986//ENTITIES Monotoniko Greek//EN "[aacgr ]" => "[aacgr]", "[Aacgr ]" => "[Aacgr]", "[eacgr ]" => "[eacgr]", "[Eacgr ]" => "[Eacgr]", "[eeacgr]" => "[eeacgr]", "[EEacgr]" => "[EEacgr]", "[idigr ]" => "[idigr]", "[Idigr ]" => "[Idigr]", "[iacgr ]" => "[iacgr]", "[Iacgr ]" => "[Iacgr]", "[idiagr]" => "[idiagr]", "[oacgr ]" => "[oacgr]", "[Oacgr ]" => "[Oacgr]", "[udigr ]" => "[udigr]", "[Udigr ]" => "[Udigr]", "[uacgr ]" => "[uacgr]", "[Uacgr ]" => "[Uacgr]", "[udiagr]" => "[udiagr]", "[ohacgr]" => "[ohacgr]", "[OHacgr]" => "[OHacgr]", ## ISO 8879:1986//ENTITIES Russian Cyrillic//EN "[acy ]" => "[acy]", "[Acy ]" => "[Acy]", "[bcy ]" => "[bcy]", "[Bcy ]" => "[Bcy]", "[vcy ]" => "[vcy]", "[Vcy ]" => "[Vcy]", "[gcy ]" => "[gcy]", "[Gcy ]" => "[Gcy]", "[dcy ]" => "[dcy]", "[Dcy ]" => "[Dcy]", "[iecy ]" => "[iecy]", "[IEcy ]" => "[IEcy]", "[iocy ]" => "[iocy]", "[IOcy ]" => "[IOcy]", "[zhcy ]" => "[zhcy]", "[ZHcy ]" => "[ZHcy]", "[zcy ]" => "[zcy]", "[Zcy ]" => "[Zcy]", "[icy ]" => "[icy]", "[Icy ]" => "[Icy]", "[jcy ]" => "[jcy]", "[Jcy ]" => "[Jcy]", "[kcy ]" => "[kcy]", "[Kcy ]" => "[Kcy]", "[lcy ]" => "[lcy]", "[Lcy ]" => "[Lcy]", "[mcy ]" => "[mcy]", "[Mcy ]" => "[Mcy]", "[ncy ]" => "[ncy]", "[Ncy ]" => "[Ncy]", "[ocy ]" => "[ocy]", "[Ocy ]" => "[Ocy]", "[pcy ]" => "[pcy]", "[Pcy ]" => "[Pcy]", "[rcy ]" => "[rcy]", "[Rcy ]" => "[Rcy]", "[scy ]" => "[scy]", "[Scy ]" => "[Scy]", "[tcy ]" => "[tcy]", "[Tcy ]" => "[Tcy]", "[ucy ]" => "[ucy]", "[Ucy ]" => "[Ucy]", "[fcy ]" => "[fcy]", "[Fcy ]" => "[Fcy]", "[khcy ]" => "[khcy]", "[KHcy ]" => "[KHcy]", "[tscy ]" => "[tscy]", "[TScy ]" => "[TScy]", "[chcy ]" => "[chcy]", "[CHcy ]" => "[CHcy]", "[shcy ]" => "[shcy]", "[SHcy ]" => "[SHcy]", "[shchcy]" => "[shchcy]", "[SHCHcy]" => "[SHCHcy]", "[hardcy]" => "[hardcy]", "[HARDcy]" => "[HARDcy]", "[ycy ]" => "[ycy]", "[Ycy ]" => "[Ycy]", "[softcy]" => "[softcy]", "[SOFTcy]" => "[SOFTcy]", "[ecy ]" => "[ecy]", "[Ecy ]" => "[Ecy]", "[yucy ]" => "[yucy]", "[YUcy ]" => "[YUcy]", "[yacy ]" => "[yacy]", "[YAcy ]" => "[YAcy]", "[numero]" => "[numero]", ## ISO 8879:1986//ENTITIES Non-Russian Cyrillic//EN "[djcy ]" => "[djcy]", "[DJcy ]" => "[DJcy]", "[gjcy ]" => "[gjcy]", "[GJcy ]" => "[GJcy]", "[jukcy ]" => "[jukcy]", "[Jukcy ]" => "[Jukcy]", "[dscy ]" => "[dscy]", "[DScy ]" => "[DScy]", "[iukcy ]" => "[iukcy]", "[Iukcy ]" => "[Iukcy]", "[yicy ]" => "[yicy]", "[YIcy ]" => "[YIcy]", "[jsercy]" => "[jsercy]", "[Jsercy]" => "[Jsercy]", "[ljcy ]" => "[ljcy]", "[LJcy ]" => "[LJcy]", "[njcy ]" => "[njcy]", "[NJcy ]" => "[NJcy]", "[tshcy ]" => "[tshcy]", "[TSHcy ]" => "[TSHcy]", "[kjcy ]" => "[kjcy]", "[KJcy ]" => "[KJcy]", "[ubrcy ]" => "[ubrcy]", "[Ubrcy ]" => "[Ubrcy]", "[dzcy ]" => "[dzcy]", "[DZcy ]" => "[DZcy]", ## ISO 8879:1986//ENTITIES Numeric and Special Graphic//EN "[half ]" => "\½", "[frac12]" => "\½", "[frac14]" => "\¼", "[frac34]" => "\¾", "[frac18]" => "1/8", "[frac38]" => "3/8", "[frac58]" => "5/8", "[frac78]" => "7/8", "[sup1 ]" => "\¹", "[sup2 ]" => "\²", "[sup3 ]" => "\³", "[plus ]" => "+", "[plusmn]" => "\±", "[lt ]" => "\<", "[equals]" => "=", "[gt ]" => "\>", "[divide]" => "\÷", "[times ]" => "\×", "[curren]" => "\¤", "[pound ]" => "\£", "[dollar]" => "\$", "[cent ]" => "\¢", "[yen ]" => "\¥", "[num ]" => "#", "[percnt]" => "%", "[amp ]" => "\&", "[ast ]" => "*", "[commat]" => "\@", "[lsqb ]" => "[", "[bsol ]" => "\\", "[rsqb ]" => "]", "[lcub ]" => "{", "[horbar]" => "--", "[verbar]" => "|", "[rcub ]" => "}", "[micro ]" => "\µ", "[ohm ]" => "[ohm]", "[deg ]" => "\°", "[ordm ]" => "\º", "[ordf ]" => "\ª", "[sect ]" => "\§", "[para ]" => "\¶", "[middot]" => "\·", "[larr ]" => "\←", "[rarr ]" => "\→", "[uarr ]" => "\↑", "[darr ]" => "\↓", "[copy ]" => "\©", "[reg ]" => "\®", "[trade ]" => "\™", "[brvbar]" => "\¦", "[not ]" => "\¬", "[sung ]" => "[sung]", "[excl ]" => "!", "[iexcl ]" => "\¡", "[quot ]" => "\"", "[apos ]" => "'", "[lpar ]" => "(", "[rpar ]" => ")", "[comma ]" => ",", "[lowbar]" => "_", "[hyphen]" => "-", "[period]" => ".", "[sol ]" => "/", "[colon ]" => ":", "[semi ]" => ";", "[quest ]" => "?", "[iquest]" => "\¿", "[laquo ]" => "\«", "[raquo ]" => "\»", "[lsquo ]" => "\‘", "[rsquo ]" => "\’", "[ldquo ]" => "\“", "[rdquo ]" => "\”", "[nbsp ]" => "\ ", "[shy ]" => "\­", ## ISO 8879:1986//ENTITIES Diacritical Marks//EN "[acute ]" => "\´", "[breve ]" => "[breve]", "[caron ]" => "[caron]", "[cedil ]" => "\¸", "[circ ]" => "\ˆ", "[dblac ]" => "''", "[die ]" => "\¨", "[dot ]" => "[dot]", "[grave ]" => "`", "[macr ]" => "\¯", "[ogon ]" => "[ogon]", "[ring ]" => "[ring]", "[tilde ]" => "\˜", "[uml ]" => "\¨", ## ISO 8879:1986//ENTITIES Publishing//EN "[emsp ]" => "\ ", "[ensp ]" => "\ ", "[emsp3 ]" => "[emsp13]", "[emsp4 ]" => "[emsp14]", "[numsp ]" => "[numsp]", "[puncsp]" => "[puncsp]", "[thinsp]" => "\ ", "[hairsp]" => "[hairsp]", "[mdash ]" => "\—", "[ndash ]" => "\–", "[dash ]" => "-", "[blank ]" => "_", "[hellip]" => "\…", "[nldr ]" => "..", "[frac13]" => "1/3", "[frac23]" => "2/3", "[frac15]" => "1/5", "[frac25]" => "2/5", "[frac35]" => "3/5", "[frac45]" => "4/5", "[frac16]" => "1/6", "[frac56]" => "5/6", "[incare]" => "c/o", "[block ]" => "[block]", "[uhblk ]" => "[uhblk]", "[lhblk ]" => "[lhblk]", "[blk14 ]" => "[blk14]", "[blk12 ]" => "[blk12]", "[blk34 ]" => "[blk34]", "[marker]" => "[marker]", "[cir ]" => "o", "[squ ]" => "[squ]", "[rect ]" => "[rect]", "[utri ]" => "[utri]", "[dtri ]" => "[dtri]", "[star ]" => "[star]", "[bull ]" => "\•", "[squf ]" => "[squf]", "[utrif ]" => "[utrif]", "[dtrif ]" => "[dtrif]", "[ltrif ]" => "[ltrif]", "[rtrif ]" => "[rtrif]", "[clubs ]" => "\♣", "[diams ]" => "\♦", "[hearts]" => "\♥", "[spades]" => "\♠", "[malt ]" => "[malt]", "[dagger]" => "\†", "[Dagger]" => "\‡", "[check ]" => "[check]", "[ballot]" => "x", "[sharp ]" => "#", "[flat ]" => "[flat]", "[male ]" => "[male]", "[female]" => "[female]", "[phone ]" => "[phone]", "[telrec]" => "[telrec]", "[copysr]" => "[copysr]", "[caret ]" => "^", "[lsquor]" => "'", "[ldquor]" => "\"", "[fflig ]" => "ff", "[filig ]" => "fi", "[fjlig ]" => "fj", "[ffilig]" => "ffi", "[ffllig]" => "ffl", "[fllig ]" => "fl", "[mldr ]" => "...", "[rdquor]" => "\"", "[rsquor]" => "'", "[vellip]" => ":", "[hybull]" => "-", "[loz ]" => "\◊", "[lozf ]" => "[lozf]", "[ltri ]" => "[ltri]", "[rtri ]" => "[rtri]", "[starf ]" => "[starf]", "[natur ]" => "[natur]", "[rx ]" => "[rx]", "[sext ]" => "[sext]", "[target]" => "[target]", "[dlcrop]" => "[dlcrop]", "[drcrop]" => "[drcrop]", "[ulcrop]" => "[ulcrop]", "[urcrop]" => "[urcrop]", ## ISO 8879:1986//ENTITIES Box and Line Drawing//EN "[boxh ]" => "[boxh]", "[boxv ]" => "[boxv]", "[boxur ]" => "[boxur]", "[boxul ]" => "[boxul]", "[boxdl ]" => "[boxdl]", "[boxdr ]" => "[boxdr]", "[boxvr ]" => "[boxvr]", "[boxhu ]" => "[boxhu]", "[boxvl ]" => "[boxvl]", "[boxhd ]" => "[boxhd]", "[boxvh ]" => "[boxvh]", "[boxvR ]" => "[boxvR]", "[boxhU ]" => "[boxhU]", "[boxvL ]" => "[boxvL]", "[boxhD ]" => "[boxhD]", "[boxvH ]" => "[boxvH]", "[boxH ]" => "[boxH]", "[boxV ]" => "[boxV]", "[boxUR ]" => "[boxUR]", "[boxUL ]" => "[boxUL]", "[boxDL ]" => "[boxDL]", "[boxDR ]" => "[boxDR]", "[boxVR ]" => "[boxVR]", "[boxHU ]" => "[boxHU]", "[boxVL ]" => "[boxVL]", "[boxHD ]" => "[boxHD]", "[boxVH ]" => "[boxVH]", "[boxVr ]" => "[boxVr]", "[boxHu ]" => "[boxHu]", "[boxVl ]" => "[boxVl]", "[boxHd ]" => "[boxHd]", "[boxVh ]" => "[boxVh]", "[boxuR ]" => "[boxuR]", "[boxUl ]" => "[boxUl]", "[boxdL ]" => "[boxdL]", "[boxDr ]" => "[boxDr]", "[boxUr ]" => "[boxUr]", "[boxuL ]" => "[boxuL]", "[boxDl ]" => "[boxDl]", "[boxdR ]" => "[boxdR]", ## ISO 8879:1986//ENTITIES General Technical//EN "[aleph ]" => "\ℵ", "[and ]" => "\∧", "[ang90 ]" => "|_", "[angsph]" => "[angsph]", "[ap ]" => "[ap]", "[becaus]" => "[becaus]", "[bottom]" => "[bottom]", "[cap ]" => "\∩", "[cong ]" => "\≅", "[conint]" => "[conint]", "[cup ]" => "\∪", "[equiv ]" => "\≡", "[exist ]" => "\∃", "[forall]" => "\∀", "[fnof ]" => "\ƒ", "[ge ]" => "\≥", "[iff ]" => "\<==\>", "[infin ]" => "\∞", "[int ]" => "\∫", "[isin ]" => "\∈", "[lang ]" => "\⟨", "[lArr ]" => "\⇐", "[le ]" => "\≤", "[minus ]" => "\−", "[mnplus]" => "-/+", "[nabla ]" => "\∇", "[ne ]" => "\≠", "[ni ]" => "\∋", "[or ]" => "\∨", "[par ]" => "||", "[part ]" => "\∂", "[permil]" => "\‰", "[perp ]" => "\⊥", "[prime ]" => "\′", "[Prime ]" => "\″", "[prop ]" => "\∝", "[radic ]" => "\√", "[rang ]" => "\⟩", "[rArr ]" => "\⇒", "[sim ]" => "\∼", "[sime ]" => "[sime]", "[square]" => "[square]", "[sub ]" => "\⊂", "[sube ]" => "\⊆", "[sup ]" => "\⊃", "[supe ]" => "\⊇", "[there4]" => "\∴", "[Verbar]" => "||", "[angst ]" => "AA", "[bernou]" => "B", "[compfn]" => "o", "[Dot ]" => "[Dot]", "[DotDot]" => "[DotDot]", "[hamilt]" => "H", "[lagran]" => "L", "[lowast]" => "\∗", "[notin ]" => "\∉", "[order ]" => "O", "[phmmat]" => "M", "[tdot ]" => "[tdot]", "[tprime]" => "'''", "[wedgeq]" => "[wedgeq]", ## ISO 8879:1986//ENTITIES Greek Symbols//EN "[alpha ]" => "\α", "[beta ]" => "\β", "[gamma ]" => "\γ", "[Gamma ]" => "\Γ", "[gammad]" => "\Γ", "[delta ]" => "\δ", "[Delta ]" => "\Δ", "[epsi ]" => "\ε", "[epsiv ]" => "\ε", "[epsis ]" => "\ε", "[zeta ]" => "\ζ", "[eta ]" => "\η", "[thetas]" => "\θ", "[Theta ]" => "\Θ", "[thetav]" => "\ϑ", "[iota ]" => "\ι", "[kappa ]" => "\κ", "[kappav]" => "\κ", "[lambda]" => "\λ", "[Lambda]" => "\Λ", "[mu ]" => "\μ", "[nu ]" => "\ν", "[xi ]" => "\ξ", "[Xi ]" => "\Ξ", "[pi ]" => "\π", "[piv ]" => "\ϖ", "[Pi ]" => "\Π", "[rho ]" => "\ρ", "[rhov ]" => "\ρ", "[sigma ]" => "\σ", "[Sigma ]" => "\Σ", "[sigmav]" => "\ς", "[tau ]" => "\τ", "[upsi ]" => "\υ", "[Upsi ]" => "\Υ", "[phis ]" => "\φ", "[Phi ]" => "\Φ", "[phiv ]" => "\φ", "[chi ]" => "\χ", "[psi ]" => "\ψ", "[Psi ]" => "\Ψ", "[omega ]" => "\ω", "[Omega ]" => "\Ω", ## ISO 8879:1986//ENTITIES Alternative Greek Symbols//EN "[b.alpha ]" => "\α", "[b.beta ]" => "\β", "[b.gamma ]" => "\γ", "[b.Gamma ]" => "\Γ", "[b.gammad]" => "\Γ", "[b.delta ]" => "\δ", "[b.Delta ]" => "\Δ", "[b.epsi ]" => "\ε", "[b.epsiv ]" => "\ε", "[b.epsis ]" => "\ε", "[b.zeta ]" => "\ζ", "[b.eta ]" => "\η", "[b.thetas]" => "\θ", "[b.Theta ]" => "\Θ", "[b.thetav]" => "\ϑ", "[b.iota ]" => "\ι", "[b.kappa ]" => "\κ", "[b.kappav]" => "\κ", "[b.lambda]" => "\λ", "[b.Lambda]" => "\Λ", "[b.mu ]" => "\μ", "[b.nu ]" => "\ν", "[b.xi ]" => "\ξ", "[b.Xi ]" => "\Ξ", "[b.pi ]" => "\π", "[b.piv ]" => "\ϖ", "[b.Pi ]" => "\Π", "[b.rho ]" => "\ρ", "[b.rhov ]" => "\ρ", "[b.sigma ]" => "\σ", "[b.Sigma ]" => "\Σ", "[b.sigmav]" => "\ς", "[b.tau ]" => "\τ", "[b.upsi ]" => "\υ", "[b.Upsi ]" => "\Υ", "[b.phis ]" => "\φ", "[b.Phi ]" => "\Φ", "[b.phiv ]" => "\φ", "[b.chi ]" => "\χ", "[b.psi ]" => "\ψ", "[b.Psi ]" => "\Ψ", "[b.omega ]" => "\ω", "[b.Omega ]" => "\Ω", ## ISO 8879:1986//ENTITIES Added Math Symbols: Ordinary//EN "[ang ]" => "\∠", "[angmsd]" => "[angmsd]", "[beth ]" => "[beth]", "[bprime]" => "`", "[comp ]" => "C", "[daleth]" => "[daleth]", "[ell ]" => "l", "[empty ]" => "\∅", "[gimel ]" => "[gimel]", "[image ]" => "\ℑ", "[inodot]" => "[inodot]", "[jnodot]" => "[jnodot]", "[nexist]" => "[nexist]", "[oS ]" => "[oS]", "[planck]" => "[planck]", "[real ]" => "\ℜ", "[sbsol ]" => "\\", "[vprime]" => "'", "[weierp]" => "\℘", ## ISO 8879:1986//ENTITIES Added Math Symbols: Binary Operators//EN "[amalg ]" => "[amalg]", "[Barwed]" => "[Barwed]", "[barwed]" => "[barwed]", "[Cap ]" => "[Cap]", "[Cup ]" => "[Cup]", "[cuvee ]" => "[cuvee]", "[cuwed ]" => "[cuwed]", "[diam ]" => "[diam]", "[divonx]" => "[divonx]", "[intcal]" => "[intcal]", "[lthree]" => "[lthree]", "[ltimes]" => "[ltimes]", "[minusb]" => "[minusb]", "[oast ]" => "[oast]", "[ocir ]" => "[ocir]", "[odash ]" => "[odash]", "[odot ]" => "[odot]", "[ominus]" => "[ominus]", "[oplus ]" => "\⊕", "[osol ]" => "[osol]", "[otimes]" => "\⊗", "[plusb ]" => "[plusb]", "[plusdo]" => "[plusdo]", "[rthree]" => "[rthree]", "[rtimes]" => "[rtimes]", "[sdot ]" => "\⋅", "[sdotb ]" => "[sdotb]", "[setmn ]" => "[setmn]", "[sqcap ]" => "[sqcap]", "[sqcup ]" => "[sqcup]", "[ssetmn]" => "[ssetmn]", "[sstarf]" => "[sstarf]", "[timesb]" => "[timesb]", "[top ]" => "[top]", "[uplus ]" => "[uplus]", "[wreath]" => "[wreath]", "[xcirc ]" => "[xcirc]", "[xdtri ]" => "[xdtri]", "[xutri ]" => "[xutri]", "[coprod]" => "[coprod]", "[prod ]" => "\∏", "[sum ]" => "\∑", ## ISO 8879:1986//ENTITIES Added Math Symbols: Relations//EN "[ape ]" => "[ape]", "[asymp ]" => "\≈", "[bcong ]" => "[bcong]", "[bepsi ]" => "[bepsi]", "[bowtie]" => "[bowtie]", "[bsim ]" => "[bsim]", "[bsime ]" => "[bsime]", "[bump ]" => "[bump]", "[bumpe ]" => "[bumpe]", "[cire ]" => "[cire]", "[colone]" => "[colone]", "[cuepr ]" => "[cuepr]", "[cuesc ]" => "[cuesc]", "[cupre ]" => "[cupre]", "[dashv ]" => "[dashv]", "[ecir ]" => "[ecir]", "[ecolon]" => "[ecolon]", "[eDot ]" => "[eDot]", "[esdot ]" => "[esdot]", "[efDot ]" => "[efDot]", "[egs ]" => "[egs]", "[els ]" => "[els]", "[erDot ]" => "[erDot]", "[fork ]" => "[fork]", "[frown ]" => "[frown]", "[gap ]" => "[gap]", "[gsdot ]" => "[gsdot]", "[gE ]" => "[gE]", "[gel ]" => "[gel]", "[gEl ]" => "[gEl]", "[ges ]" => "[ges]", "[Gg ]" => "[Gg]", "[gl ]" => "[gl]", "[gsim ]" => "[gsim]", "[Gt ]" => "[Gt]", "[lap ]" => "[lap]", "[ldot ]" => "[ldot]", "[lE ]" => "[lE]", "[lEg ]" => "[lEg]", "[leg ]" => "[leg]", "[les ]" => "[les]", "[lg ]" => "[lg]", "[Ll ]" => "[Ll]", "[lsim ]" => "[lsim]", "[Lt ]" => "[Lt]", "[ltrie ]" => "[ltrie]", "[mid ]" => "[mid]", "[models]" => "[models]", "[pr ]" => "[pr]", "[prap ]" => "[prap]", "[pre ]" => "[pre]", "[prsim ]" => "[prsim]", "[rtrie ]" => "[rtrie]", "[samalg]" => "[samalg]", "[sc ]" => "[sc]", "[scap ]" => "[scap]", "[sccue ]" => "[sccue]", "[sce ]" => "[sce]", "[scsim ]" => "[scsim]", "[sfrown]" => "[sfrown]", "[smid ]" => "[smid]", "[smile ]" => "[smile]", "[spar ]" => "[spar]", "[sqsub ]" => "[sqsub]", "[sqsube]" => "[sqsube]", "[sqsup ]" => "[sqsup]", "[sqsupe]" => "[sqsupe]", "[ssmile]" => "[ssmile]", "[Sub ]" => "[Sub]", "[subE ]" => "[subE]", "[Sup ]" => "[Sup]", "[supE ]" => "[supE]", "[thkap ]" => "[thkap]", "[thksim]" => "[thksim]", "[trie ]" => "[trie]", "[twixt ]" => "[twixt]", "[vdash ]" => "[vdash]", "[Vdash ]" => "[Vdash]", "[vDash ]" => "[vDash]", "[veebar]" => "[veebar]", "[vltri ]" => "[vltri]", "[vprop ]" => "[vprop]", "[vrtri ]" => "[vrtri]", "[Vvdash]" => "[Vvdash]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Negated Relations//EN "[gnap ]" => "[gnap]", "[gne ]" => "[gne]", "[gnE ]" => "[gnE]", "[gnsim ]" => "[gnsim]", "[gvnE ]" => "[gvnE]", "[lnap ]" => "[lnap]", "[lnE ]" => "[lnE]", "[lne ]" => "[lne]", "[lnsim ]" => "[lnsim]", "[lvnE ]" => "[lvnE]", "[nap ]" => "[nap]", "[ncong ]" => "[ncong]", "[nequiv]" => "[nequiv]", "[ngE ]" => "[ngE]", "[nge ]" => "[nge]", "[nges ]" => "[nges]", "[ngt ]" => "[ngt]", "[nle ]" => "[nle]", "[nlE ]" => "[nlE]", "[nles ]" => "[nles]", "[nlt ]" => "[nlt]", "[nltri ]" => "[nltri]", "[nltrie]" => "[nltrie]", "[nmid ]" => "[nmid]", "[npar ]" => "[npar]", "[npr ]" => "[npr]", "[npre ]" => "[npre]", "[nrtri ]" => "[nrtri]", "[nrtrie]" => "[nrtrie]", "[nsc ]" => "[nsc]", "[nsce ]" => "[nsce]", "[nsim ]" => "[nsim]", "[nsime ]" => "[nsime]", "[nsmid ]" => "[nsmid]", "[nspar ]" => "[nspar]", "[nsub ]" => "\⊄", "[nsube ]" => "[nsube]", "[nsubE ]" => "[nsubE]", "[nsup ]" => "[nsup]", "[nsupE ]" => "[nsupE]", "[nsupe ]" => "[nsupe]", "[nvdash]" => "[nvdash]", "[nvDash]" => "[nvDash]", "[nVDash]" => "[nVDash]", "[nVdash]" => "[nVdash]", "[prnap ]" => "[prnap]", "[prnE ]" => "[prnE]", "[prnsim]" => "[prnsim]", "[scnap ]" => "[scnap]", "[scnE ]" => "[scnE]", "[scnsim]" => "[scnsim]", "[subne ]" => "[subne]", "[subnE ]" => "[subnE]", "[supne ]" => "[supne]", "[supnE ]" => "[supnE]", "[vsubnE]" => "[vsubnE]", "[vsubne]" => "[vsubne]", "[vsupne]" => "[vsupne]", "[vsupnE]" => "[vsupnE]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Arrow Relations//EN "[cularr]" => "[cularr]", "[curarr]" => "[curarr]", "[dArr ]" => "\⇓", "[darr2 ]" => "[darr2]", "[dharl ]" => "[dharl]", "[dharr ]" => "[dharr]", "[lAarr ]" => "[lAarr]", "[Larr ]" => "[Larr]", "[larr2 ]" => "[larr2]", "[larrhk]" => "[larrhk]", "[larrlp]" => "[larrlp]", "[larrtl]" => "[larrtl]", "[lhard ]" => "[lhard]", "[lharu ]" => "[lharu]", "[hArr ]" => "\⇔", "[harr ]" => "\↔", "[lrarr2]" => "[lrarr2]", "[rlarr2]" => "[rlarr2]", "[harrw ]" => "[harrw]", "[rlhar2]" => "[rlhar2]", "[lrhar2]" => "[lrhar2]", "[lsh ]" => "[lsh]", "[map ]" => "[map]", "[mumap ]" => "[mumap]", "[nearr ]" => "[nearr]", "[nlArr ]" => "[nlArr]", "[nlarr ]" => "[nlarr]", "[nhArr ]" => "[nhArr]", "[nharr ]" => "[nharr]", "[nrarr ]" => "[nrarr]", "[nrArr ]" => "[nrArr]", "[nwarr ]" => "[nwarr]", "[olarr ]" => "[olarr]", "[orarr ]" => "[orarr]", "[rAarr ]" => "[rAarr]", "[Rarr ]" => "[Rarr]", "[rarr2 ]" => "[rarr2]", "[rarrhk]" => "[rarrhk]", "[rarrlp]" => "[rarrlp]", "[rarrtl]" => "[rarrtl]", "[rarrw ]" => "[rarrw]", "[rhard ]" => "[rhard]", "[rharu ]" => "[rharu]", "[rsh ]" => "[rsh]", "[drarr ]" => "[drarr]", "[dlarr ]" => "[dlarr]", "[uArr ]" => "\⇑", "[uarr2 ]" => "[uarr2]", "[vArr ]" => "[vArr]", "[varr ]" => "[varr]", "[uharl ]" => "[uharl]", "[uharr ]" => "[uharr]", "[xlArr ]" => "[xlArr]", "[xhArr ]" => "[xhArr]", "[xharr ]" => "[xharr]", "[xrArr ]" => "[xrArr]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Delimiters//EN "[rceil ]" => "\⌉", "[rfloor]" => "\⌋", "[rpargt]" => "[rpargt]", "[urcorn]" => "[urcorn]", "[drcorn]" => "[drcorn]", "[lceil ]" => "\⌈", "[lfloor]" => "\⌊", "[lpargt]" => "[lpargt]", "[ulcorn]" => "[ulcorn]", "[dlcorn]" => "[dlcorn]", ); ## ---------------------------------------------------------------------- ## don't forget this 1; ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Map/Text.pm0000664000175000017500000006646011655740662017445 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## DebianDoc_SGML/Map/Text: plain text output format data map ## ---------------------------------------------------------------------- ## Copyright (C) 1999-2004 Ardo van Rangelrooij ## ## This is free software; see the GNU General Public Licence ## version 2 or later for copying conditions. There is NO warranty. ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- ## package interface definition #package DebianDoc_SGML::Map::Text; #use strict; #use vars qw( @ISA @EXPORT ); #use Exporter; #@ISA = ( 'Exporter' ); #@EXPORT = qw (); ## ---------------------------------------------------------------------- %cdata = ( ); ## ---------------------------------------------------------------------- %sdata = ( ## ISO 8879:1986//ENTITIES Added Latin 1//EN "[aacute]" => "a'", "[Aacute]" => "A'", "[acirc ]" => "a^", "[Acirc ]" => "A^", "[agrave]" => "a`", "[Agrave]" => "A`", "[aring ]" => "aa", "[Aring ]" => "AA", "[atilde]" => "a~", "[Atilde]" => "A~", "[auml ]" => "a\"", "[Auml ]" => "A\"", "[aelig ]" => "ae", "[AElig ]" => "AE", "[ccedil]" => "c,", "[Ccedil]" => "C,", "[eth ]" => "[eth]", "[ETH ]" => "[ETH]", "[eacute]" => "e'", "[Eacute]" => "E'", "[ecirc ]" => "e^", "[Ecirc ]" => "E^", "[egrave]" => "e`", "[Egrave]" => "E`", "[euml ]" => "e\"", "[Euml ]" => "E\"", "[iacute]" => "i'", "[Iacute]" => "I'", "[icirc ]" => "i^", "[Icirc ]" => "I^", "[igrave]" => "i`", "[Igrave]" => "I`", "[iuml ]" => "i\"", "[Iuml ]" => "I\"", "[ntilde]" => "n~", "[Ntilde]" => "N~", "[oacute]" => "o'", "[Oacute]" => "O'", "[ocirc ]" => "o^", "[Ocirc ]" => "O^", "[ograve]" => "o`", "[Ograve]" => "O`", "[oslash]" => "[oslash]", "[Oslash]" => "[Oslash]", "[otilde]" => "o~", "[Otilde]" => "O~", "[ouml ]" => "o\"", "[Ouml ]" => "O\"", "[szlig ]" => "ss", "[thorn ]" => "[thorn]", "[THORN ]" => "[THORN]", "[uacute]" => "u'", "[Uacute]" => "U'", "[ucirc ]" => "u^", "[Ucirc ]" => "U^", "[ugrave]" => "u`", "[Ugrave]" => "U`", "[uuml ]" => "u\"", "[Uuml ]" => "U\"", "[yacute]" => "y'", "[Yacute]" => "Y'", "[yuml ]" => "y\"", ## ISO 8879:1986//ENTITIES Added Latin 2//EN "[abreve]" => "a(", "[Abreve]" => "A(", "[amacr ]" => "a=", "[Amacr ]" => "A=", "[aogon ]" => "[aogon]", "[Aogon ]" => "[Aogon]", "[cacute]" => "c'", "[Cacute]" => "C'", "[ccaron]" => "c<", "[Ccaron]" => "C<", "[ccirc ]" => "c^", "[Ccirc ]" => "C^", "[cdot ]" => "c.", "[Cdot ]" => "C.", "[dcaron]" => "d<", "[Dcaron]" => "D<", "[dstrok]" => "[dstrok]", "[Dstrok]" => "[Dstrok]", "[ecaron]" => "e<", "[Ecaron]" => "E<", "[edot ]" => "e.", "[Edot ]" => "E.", "[emacr ]" => "e=", "[Emacr ]" => "E=", "[eogon ]" => "[eogon]", "[Eogon ]" => "[Eogon]", "[gacute]" => "g'", "[gbreve]" => "g(", "[Gbreve]" => "G(", "[Gcedil]" => "G,", "[gcirc ]" => "g^", "[Gcirc ]" => "G^", "[gdot ]" => "g.", "[Gdot ]" => "G.", "[hcirc ]" => "h^", "[Hcirc ]" => "H^", "[hstrok]" => "[hstrok]", "[Hstrok]" => "[Hstrok]", "[Idot ]" => "I.", "[Imacr ]" => "I=", "[imacr ]" => "i=", "[ijlig ]" => "ij", "[IJlig ]" => "IJ", "[inodot]" => "[inodot]", "[iogon ]" => "[iogon]", "[Iogon ]" => "[Iogon]", "[itilde]" => "i~", "[Itilde]" => "I~", "[jcirc ]" => "j^", "[Jcirc ]" => "J^", "[kcedil]" => "k,", "[Kcedil]" => "K,", "[kgreen]" => "[kgreen]", "[lacute]" => "l'", "[Lacute]" => "L'", "[lcaron]" => "l<", "[Lcaron]" => "L<", "[lcedil]" => "l,", "[Lcedil]" => "L,", "[lmidot]" => "[lmidot]", "[Lmidot]" => "[Lmidot]", "[lstrok]" => "[lstrok]", "[Lstrok]" => "[Lstrok]", "[nacute]" => "n'", "[Nacute]" => "N'", "[eng ]" => "[eng]", "[ENG ]" => "[ENG]", "[napos ]" => "n'", "[ncaron]" => "n<", "[Ncaron]" => "N<", "[ncedil]" => "n,", "[Ncedil]" => "N,", "[odblac]" => "o''", "[Odblac]" => "O''", "[omacr ]" => "o=", "[Omacr ]" => "O=", "[oelig ]" => "oe", "[OElig ]" => "OE", "[racute]" => "r'", "[Racute]" => "R'", "[rcaron]" => "r<", "[Rcaron]" => "R<", "[rcedil]" => "r,", "[Rcedil]" => "R,", "[sacute]" => "s'", "[Sacute]" => "S'", "[scaron]" => "s<", "[Scaron]" => "S<", "[scedil]" => "s,", "[Scedil]" => "S,", "[scirc ]" => "s^", "[Scirc ]" => "S^", "[tcaron]" => "t<", "[Tcaron]" => "T<", "[tcedil]" => "t,", "[Tcedil]" => "T,", "[tstrok]" => "[tstrok]", "[Tstrok]" => "[Tstrok]", "[ubreve]" => "u(", "[Ubreve]" => "U(", "[udblac]" => "u''", "[Udblac]" => "U''", "[umacr ]" => "u=", "[Umacr ]" => "U=", "[uogon ]" => "[uogon]", "[Uogon ]" => "[Uogon]", "[uring ]" => "u*", "[Uring ]" => "U*", "[utilde]" => "u~", "[Utilde]" => "U~", "[wcirc ]" => "w^", "[Wcirc ]" => "W^", "[ycirc ]" => "y^", "[Ycirc ]" => "Y^", "[Yuml ]" => "Y\"", "[zacute]" => "z'", "[Zacute]" => "Z'", "[zcaron]" => "z<", "[Zcaron]" => "Z<", "[zdot ]" => "z.", "[Zdot ]" => "Z.", ## ISO 8879:1986//ENTITIES Greek Letters//EN "[agr ]" => "[agr]", "[Agr ]" => "[Agr]", "[bgr ]" => "[bgr]", "[Bgr ]" => "[Bgr]", "[ggr ]" => "[ggr]", "[Ggr ]" => "[Ggr]", "[dgr ]" => "[dgr]", "[Dgr ]" => "[Dgr]", "[egr ]" => "[egr]", "[Egr ]" => "[Egr]", "[zgr ]" => "[zgr]", "[Zgr ]" => "[Zgr]", "[eegr ]" => "[eegr]", "[EEgr ]" => "[EEgr]", "[thgr ]" => "[thgr]", "[THgr ]" => "[THgr]", "[igr ]" => "[igr]", "[Igr ]" => "[Igr]", "[kgr ]" => "[kgr]", "[Kgr ]" => "[Kgr]", "[lgr ]" => "[lgr]", "[Lgr ]" => "[Lgr]", "[mgr ]" => "[mgr]", "[Mgr ]" => "[Mgr]", "[ngr ]" => "[ngr]", "[Ngr ]" => "[Ngr]", "[xgr ]" => "[xgr]", "[Xgr ]" => "[Xgr]", "[ogr ]" => "[ogr]", "[Ogr ]" => "[Ogr]", "[pgr ]" => "[pgr]", "[Pgr ]" => "[Pgr]", "[rgr ]" => "[rgr]", "[Rgr ]" => "[Rgr]", "[sgr ]" => "[sgr]", "[Sgr ]" => "[Sgr]", "[sfgr ]" => "[sfgr]", "[tgr ]" => "[tgr]", "[Tgr ]" => "[Tgr]", "[ugr ]" => "[ugr]", "[Ugr ]" => "[Ugr]", "[phgr ]" => "[phgr]", "[PHgr ]" => "[PHgr]", "[khgr ]" => "[khgr]", "[KHgr ]" => "[KHgr]", "[psgr ]" => "[psgr]", "[PSgr ]" => "[PSgr]", "[ohgr ]" => "[ohgr]", "[OHgr ]" => "[OHgr]", ## ISO 8879:1986//ENTITIES Monotoniko Greek//EN "[aacgr ]" => "[aacgr]", "[Aacgr ]" => "[Aacgr]", "[eacgr ]" => "[eacgr]", "[Eacgr ]" => "[Eacgr]", "[eeacgr]" => "[eeacgr]", "[EEacgr]" => "[EEacgr]", "[idigr ]" => "[idigr]", "[Idigr ]" => "[Idigr]", "[iacgr ]" => "[iacgr]", "[Iacgr ]" => "[Iacgr]", "[idiagr]" => "[idiagr]", "[oacgr ]" => "[oacgr]", "[Oacgr ]" => "[Oacgr]", "[udigr ]" => "[udigr]", "[Udigr ]" => "[Udigr]", "[uacgr ]" => "[uacgr]", "[Uacgr ]" => "[Uacgr]", "[udiagr]" => "[udiagr]", "[ohacgr]" => "[ohacgr]", "[OHacgr]" => "[OHacgr]", ## ISO 8879:1986//ENTITIES Russian Cyrillic//EN "[acy ]" => "[acy]", "[Acy ]" => "[Acy]", "[bcy ]" => "[bcy]", "[Bcy ]" => "[Bcy]", "[vcy ]" => "[vcy]", "[Vcy ]" => "[Vcy]", "[gcy ]" => "[gcy]", "[Gcy ]" => "[Gcy]", "[dcy ]" => "[dcy]", "[Dcy ]" => "[Dcy]", "[iecy ]" => "[iecy]", "[IEcy ]" => "[IEcy]", "[iocy ]" => "[iocy]", "[IOcy ]" => "[IOcy]", "[zhcy ]" => "[zhcy]", "[ZHcy ]" => "[ZHcy]", "[zcy ]" => "[zcy]", "[Zcy ]" => "[Zcy]", "[icy ]" => "[icy]", "[Icy ]" => "[Icy]", "[jcy ]" => "[jcy]", "[Jcy ]" => "[Jcy]", "[kcy ]" => "[kcy]", "[Kcy ]" => "[Kcy]", "[lcy ]" => "[lcy]", "[Lcy ]" => "[Lcy]", "[mcy ]" => "[mcy]", "[Mcy ]" => "[Mcy]", "[ncy ]" => "[ncy]", "[Ncy ]" => "[Ncy]", "[ocy ]" => "[ocy]", "[Ocy ]" => "[Ocy]", "[pcy ]" => "[pcy]", "[Pcy ]" => "[Pcy]", "[rcy ]" => "[rcy]", "[Rcy ]" => "[Rcy]", "[scy ]" => "[scy]", "[Scy ]" => "[Scy]", "[tcy ]" => "[tcy]", "[Tcy ]" => "[Tcy]", "[ucy ]" => "[ucy]", "[Ucy ]" => "[Ucy]", "[fcy ]" => "[fcy]", "[Fcy ]" => "[Fcy]", "[khcy ]" => "[khcy]", "[KHcy ]" => "[KHcy]", "[tscy ]" => "[tscy]", "[TScy ]" => "[TScy]", "[chcy ]" => "[chcy]", "[CHcy ]" => "[CHcy]", "[shcy ]" => "[shcy]", "[SHcy ]" => "[SHcy]", "[shchcy]" => "[shchcy]", "[SHCHcy]" => "[SHCHcy]", "[hardcy]" => "[hardcy]", "[HARDcy]" => "[HARDcy]", "[ycy ]" => "[ycy]", "[Ycy ]" => "[Ycy]", "[softcy]" => "[softcy]", "[SOFTcy]" => "[SOFTcy]", "[ecy ]" => "[ecy]", "[Ecy ]" => "[Ecy]", "[yucy ]" => "[yucy]", "[YUcy ]" => "[YUcy]", "[yacy ]" => "[yacy]", "[YAcy ]" => "[YAcy]", "[numero]" => "[numero]", ## ISO 8879:1986//ENTITIES Non-Russian Cyrillic//EN "[djcy ]" => "[djcy]", "[DJcy ]" => "[DJcy]", "[gjcy ]" => "[gjcy]", "[GJcy ]" => "[GJcy]", "[jukcy ]" => "[jukcy]", "[Jukcy ]" => "[Jukcy]", "[dscy ]" => "[dscy]", "[DScy ]" => "[DScy]", "[iukcy ]" => "[iukcy]", "[Iukcy ]" => "[Iukcy]", "[yicy ]" => "[yicy]", "[YIcy ]" => "[YIcy]", "[jsercy]" => "[jsercy]", "[Jsercy]" => "[Jsercy]", "[ljcy ]" => "[ljcy]", "[LJcy ]" => "[LJcy]", "[njcy ]" => "[njcy]", "[NJcy ]" => "[NJcy]", "[tshcy ]" => "[tshcy]", "[TSHcy ]" => "[TSHcy]", "[kjcy ]" => "[kjcy]", "[KJcy ]" => "[KJcy]", "[ubrcy ]" => "[ubrcy]", "[Ubrcy ]" => "[Ubrcy]", "[dzcy ]" => "[dzcy]", "[DZcy ]" => "[DZcy]", ## ISO 8879:1986//ENTITIES Numeric and Special Graphic//EN "[half ]" => "1/2", "[frac12]" => "1/2", "[frac14]" => "1/4", "[frac34]" => "3/4", "[frac18]" => "1/8", "[frac38]" => "3/8", "[frac58]" => "5/8", "[frac78]" => "7/8", "[sup1 ]" => "^1", "[sup2 ]" => "^2", "[sup3 ]" => "^3", "[plus ]" => "+", "[plusmn]" => "+/-", "[lt ]" => "<", "[equals]" => "=", "[gt ]" => ">", "[divide]" => "/", "[times ]" => "x", "[curren]" => "[curren]", "[pound ]" => "L", "[dollar]" => "\$", "[cent ]" => "c", "[yen ]" => "Y", "[num ]" => "#", "[percnt]" => "%", "[amp ]" => "&", "[ast ]" => "*", "[commat]" => "@", "[lsqb ]" => "[", "[bsol ]" => "\\", "[rsqb ]" => "]", "[lcub ]" => "{", "[horbar]" => "--", "[verbar]" => "|", "[rcub ]" => "}", "[micro ]" => "u", "[ohm ]" => "[ohm]", "[deg ]" => "[deg]", "[ordm ]" => "[ordm]", "[ordf ]" => "[ordf]", "[sect ]" => "S", "[para ]" => "P", "[middot]" => ".", "[larr ]" => "<--", "[rarr ]" => "-->", "[uarr ]" => "[uarr]", "[darr ]" => "[darr]", "[copy ]" => "(C)", "[reg ]" => "(R)", "[trade ]" => "(TM)", "[brvbar]" => "|", "[not ]" => "[not]", "[sung ]" => "[sung]", "[excl ]" => "!", "[iexcl ]" => "!", "[quot ]" => "\"", "[apos ]" => "'", "[lpar ]" => "(", "[rpar ]" => ")", "[comma ]" => ",", "[lowbar]" => "__", "[hyphen]" => "-", "[period]" => ".", "[sol ]" => "/", "[colon ]" => ":", "[semi ]" => ";", "[quest ]" => "?", "[iquest]" => "?", "[laquo ]" => "<<", "[raquo ]" => ">>", "[lsquo ]" => "`", "[rsquo ]" => "'", "[ldquo ]" => "``", "[rdquo ]" => "''", "[nbsp ]" => " ", "[shy ]" => "-", ## ISO 8879:1986//ENTITIES Diacritical Marks//EN "[acute ]" => "'", "[breve ]" => "(", "[caron ]" => "<", "[cedil ]" => ",", "[circ ]" => "^", "[dblac ]" => "''", "[die ]" => "\"", "[dot ]" => ".", "[grave ]" => "`", "[macr ]" => "=", "[ogon ]" => "[ogon]", "[ring ]" => "*", "[tilde ]" => "~", "[uml ]" => "\"", ## ISO 8879:1986//ENTITIES Publishing//EN "[emsp ]" => "[emsp]", "[ensp ]" => "[ensp]", "[emsp3 ]" => "[emsp13]", "[emsp4 ]" => "[emsp14]", "[numsp ]" => "[numsp]", "[puncsp]" => "[puncsp]", "[thinsp]" => "[thinsp]", "[hairsp]" => "[hairsp]", "[mdash ]" => "---", "[ndash ]" => "--", "[dash ]" => "-", "[blank ]" => "_", "[hellip]" => "...", "[nldr ]" => "..", "[frac13]" => "1/3", "[frac23]" => "2/3", "[frac15]" => "1/5", "[frac25]" => "2/5", "[frac35]" => "3/5", "[frac45]" => "4/5", "[frac16]" => "1/6", "[frac56]" => "5/6", "[incare]" => "c/o", "[block ]" => "[block]", "[uhblk ]" => "[uhblk]", "[lhblk ]" => "[lhblk]", "[blk14 ]" => "[blk14]", "[blk12 ]" => "[blk12]", "[blk34 ]" => "[blk34]", "[marker]" => "[marker]", "[cir ]" => "o", "[squ ]" => "[squ]", "[rect ]" => "[rect]", "[utri ]" => "[utri]", "[dtri ]" => "[dtri]", "[star ]" => "[star]", "[bull ]" => "*", "[squf ]" => "[squf]", "[utrif ]" => "[utrif]", "[dtrif ]" => "[dtrif]", "[ltrif ]" => "[ltrif]", "[rtrif ]" => "[rtrif]", "[clubs ]" => "[clubs]", "[diams ]" => "[diams]", "[hearts]" => "[hearts]", "[spades]" => "[spades]", "[malt ]" => "[malt]", "[dagger]" => "[dagger]", "[Dagger]" => "[Dagger]", "[check ]" => "[check]", "[ballot]" => "x", "[sharp ]" => "#", "[flat ]" => "[flat]", "[male ]" => "[male]", "[female]" => "[female]", "[phone ]" => "[phone]", "[telrec]" => "[telrec]", "[copysr]" => "[copysr]", "[caret ]" => "^", "[lsquor]" => "'", "[ldquor]" => "\"", "[fflig ]" => "ff", "[filig ]" => "fi", "[fjlig ]" => "fj", "[ffilig]" => "ffi", "[ffllig]" => "ffl", "[fllig ]" => "fl", "[mldr ]" => "...", "[rdquor]" => "\"", "[rsquor]" => "'", "[vellip]" => ":", "[hybull]" => "-", "[loz ]" => "[loz]", "[lozf ]" => "[lozf]", "[ltri ]" => "[ltri]", "[rtri ]" => "[rtri]", "[starf ]" => "[starf]", "[natur ]" => "[natur]", "[rx ]" => "[rx]", "[sext ]" => "[sext]", "[target]" => "[target]", "[dlcrop]" => "[dlcrop]", "[drcrop]" => "[drcrop]", "[ulcrop]" => "[ulcrop]", "[urcrop]" => "[urcrop]", ## ISO 8879:1986//ENTITIES Box and Line Drawing//EN "[boxh ]" => "[boxh]", "[boxv ]" => "[boxv]", "[boxur ]" => "[boxur]", "[boxul ]" => "[boxul]", "[boxdl ]" => "[boxdl]", "[boxdr ]" => "[boxdr]", "[boxvr ]" => "[boxvr]", "[boxhu ]" => "[boxhu]", "[boxvl ]" => "[boxvl]", "[boxhd ]" => "[boxhd]", "[boxvh ]" => "[boxvh]", "[boxvR ]" => "[boxvR]", "[boxhU ]" => "[boxhU]", "[boxvL ]" => "[boxvL]", "[boxhD ]" => "[boxhD]", "[boxvH ]" => "[boxvH]", "[boxH ]" => "[boxH]", "[boxV ]" => "[boxV]", "[boxUR ]" => "[boxUR]", "[boxUL ]" => "[boxUL]", "[boxDL ]" => "[boxDL]", "[boxDR ]" => "[boxDR]", "[boxVR ]" => "[boxVR]", "[boxHU ]" => "[boxHU]", "[boxVL ]" => "[boxVL]", "[boxHD ]" => "[boxHD]", "[boxVH ]" => "[boxVH]", "[boxVr ]" => "[boxVr]", "[boxHu ]" => "[boxHu]", "[boxVl ]" => "[boxVl]", "[boxHd ]" => "[boxHd]", "[boxVh ]" => "[boxVh]", "[boxuR ]" => "[boxuR]", "[boxUl ]" => "[boxUl]", "[boxdL ]" => "[boxdL]", "[boxDr ]" => "[boxDr]", "[boxUr ]" => "[boxUr]", "[boxuL ]" => "[boxuL]", "[boxDl ]" => "[boxDl]", "[boxdR ]" => "[boxdR]", ## ISO 8879:1986//ENTITIES General Technical//EN "[aleph ]" => "N", "[and ]" => "/\\", "[ang90 ]" => "|_", "[angsph]" => "[angsph]", "[ap ]" => "[ap]", "[becaus]" => "[becaus]", "[bottom]" => "[bottom]", "[cap ]" => "[cap]", "[cong ]" => "[cong]", "[conint]" => "[conint]", "[cup ]" => "U", "[equiv ]" => "[equiv]", "[exist ]" => "[exist]", "[forall]" => "[forall]", "[fnof ]" => "f", "[ge ]" => ">=", "[iff ]" => "<==>", "[infin ]" => "[infin]", "[int ]" => "[int]", "[isin ]" => "[isin]", "[lang ]" => "<", "[lArr ]" => "<==", "[le ]" => "<=", "[minus ]" => "-", "[mnplus]" => "-/+", "[nabla ]" => "[nabla]", "[ne ]" => "!=", "[ni ]" => "[ni]", "[or ]" => "\\/", "[par ]" => "||", "[part ]" => "[part]", "[permil]" => "[permil]", "[perp ]" => "[perp]", "[prime ]" => "'", "[Prime ]" => "''", "[prop ]" => "[prop]", "[radic ]" => "[radic]", "[rang ]" => ">", "[rArr ]" => "==>", "[sim ]" => "[sim]", "[sime ]" => "[sime]", "[square]" => "[square]", "[sub ]" => "[sub]", "[sube ]" => "[sube]", "[sup ]" => "[sup]", "[supe ]" => "[supe]", "[there4]" => "[there4]", "[Verbar]" => "||", "[angst ]" => "AA", "[bernou]" => "B", "[compfn]" => "o", "[Dot ]" => "[Dot]", "[DotDot]" => "[DotDot]", "[hamilt]" => "H", "[lagran]" => "L", "[lowast]" => "*", "[notin ]" => "[notin]", "[order ]" => "O", "[phmmat]" => "M", "[tdot ]" => "[tdot]", "[tprime]" => "'''", "[wedgeq]" => "[wedgeq]", ## ISO 8879:1986//ENTITIES Greek Symbols//EN "[alpha ]" => "[alpha]", "[beta ]" => "[beta]", "[gamma ]" => "[gamma]", "[Gamma ]" => "[Gamma]", "[gammad]" => "[gammad]", "[delta ]" => "[delta]", "[Delta ]" => "[Delta]", "[epsi ]" => "[epsi]", "[epsiv ]" => "[epsiv]", "[epsis ]" => "[epsis]", "[zeta ]" => "[zeta]", "[eta ]" => "[eta]", "[thetas]" => "[thetas]", "[Theta ]" => "[Theta]", "[thetav]" => "[thetav]", "[iota ]" => "[iota]", "[kappa ]" => "[kappa]", "[kappav]" => "[kappav]", "[lambda]" => "[lambda]", "[Lambda]" => "[Lambda]", "[mu ]" => "[mu]", "[nu ]" => "[nu]", "[xi ]" => "[xi]", "[Xi ]" => "[Xi]", "[pi ]" => "[pi]", "[piv ]" => "[piv]", "[Pi ]" => "[Pi]", "[rho ]" => "[rho]", "[rhov ]" => "[rhov]", "[sigma ]" => "[sigma]", "[Sigma ]" => "[Sigma]", "[sigmav]" => "[sigmav]", "[tau ]" => "[tau]", "[upsi ]" => "[upsi]", "[Upsi ]" => "[Upsi]", "[phis ]" => "[phis]", "[Phi ]" => "[Phi]", "[phiv ]" => "[phiv]", "[chi ]" => "[chi]", "[psi ]" => "[psi]", "[Psi ]" => "[Psi]", "[omega ]" => "[omega]", "[Omega ]" => "[Omega]", ## ISO 8879:1986//ENTITIES Alternative Greek Symbols//EN "[b.alpha ]" => "[b.alpha]", "[b.beta ]" => "[b.beta]", "[b.gamma ]" => "[b.gamma]", "[b.Gamma ]" => "[b.Gamma]", "[b.gammad]" => "[b.gammad]", "[b.delta ]" => "[b.delta]", "[b.Delta ]" => "[b.Delta]", "[b.epsi ]" => "[b.epsi]", "[b.epsiv ]" => "[b.epsiv]", "[b.epsis ]" => "[b.epsis]", "[b.zeta ]" => "[b.zeta]", "[b.eta ]" => "[b.eta]", "[b.thetas]" => "[b.thetas]", "[b.Theta ]" => "[b.Theta]", "[b.thetav]" => "[b.thetav]", "[b.iota ]" => "[b.iota]", "[b.kappa ]" => "[b.kappa]", "[b.kappav]" => "[b.kappav]", "[b.lambda]" => "[b.lambda]", "[b.Lambda]" => "[b.Lambda]", "[b.mu ]" => "[b.mu]", "[b.nu ]" => "[b.nu]", "[b.xi ]" => "[b.xi]", "[b.Xi ]" => "[b.Xi]", "[b.pi ]" => "[b.pi]", "[b.piv ]" => "[b.piv]", "[b.Pi ]" => "[b.Pi]", "[b.rho ]" => "[b.rho]", "[b.rhov ]" => "[b.rhov]", "[b.sigma ]" => "[b.sigma]", "[b.Sigma ]" => "[b.Sigma]", "[b.sigmav]" => "[b.sigmav]", "[b.tau ]" => "[b.tau]", "[b.upsi ]" => "[b.upsi]", "[b.Upsi ]" => "[b.Upsi]", "[b.phis ]" => "[b.phis]", "[b.Phi ]" => "[b.Phi]", "[b.phiv ]" => "[b.phiv]", "[b.chi ]" => "[b.chi]", "[b.psi ]" => "[b.psi]", "[b.Psi ]" => "[b.Psi]", "[b.omega ]" => "[b.omega]", "[b.Omega ]" => "[b.Omega]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Ordinary//EN "[ang ]" => "[ang]", "[angmsd]" => "[angmsd]", "[beth ]" => "[beth]", "[bprime]" => "`", "[comp ]" => "C", "[daleth]" => "[daleth]", "[ell ]" => "l", "[empty ]" => "[empty]", "[gimel ]" => "[gimel]", "[image ]" => "[image]", "[inodot]" => "[inodot]", "[jnodot]" => "[jnodot]", "[nexist]" => "[nexist]", "[oS ]" => "[oS]", "[planck]" => "[planck]", "[real ]" => "[real]", "[sbsol ]" => "\\", "[vprime]" => "'", "[weierp]" => "P", ## ISO 8879:1986//ENTITIES Added Math Symbols: Binary Operators//EN "[amalg ]" => "[amalg]", "[Barwed]" => "[Barwed]", "[barwed]" => "[barwed]", "[Cap ]" => "[Cap]", "[Cup ]" => "[Cup]", "[cuvee ]" => "[cuvee]", "[cuwed ]" => "[cuwed]", "[diam ]" => "[diam]", "[divonx]" => "[divonx]", "[intcal]" => "[intcal]", "[lthree]" => "[lthree]", "[ltimes]" => "[ltimes]", "[minusb]" => "[minusb]", "[oast ]" => "[oast]", "[ocir ]" => "[ocir]", "[odash ]" => "[odash]", "[odot ]" => "[odot]", "[ominus]" => "[ominus]", "[oplus ]" => "[oplus]", "[osol ]" => "[osol]", "[otimes]" => "[otimes]", "[plusb ]" => "[plusb]", "[plusdo]" => "[plusdo]", "[rthree]" => "[rthree]", "[rtimes]" => "[rtimes]", "[sdot ]" => "[sdot]", "[sdotb ]" => "[sdotb]", "[setmn ]" => "[setmn]", "[sqcap ]" => "[sqcap]", "[sqcup ]" => "[sqcup]", "[ssetmn]" => "[ssetmn]", "[sstarf]" => "[sstarf]", "[timesb]" => "[timesb]", "[top ]" => "[top]", "[uplus ]" => "[uplus]", "[wreath]" => "[wreath]", "[xcirc ]" => "[xcirc]", "[xdtri ]" => "[xdtri]", "[xutri ]" => "[xutri]", "[coprod]" => "[coprod]", "[prod ]" => "[prod]", "[sum ]" => "[sum]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Relations//EN "[ape ]" => "[ape]", "[asymp ]" => "[asymp]", "[bcong ]" => "[bcong]", "[bepsi ]" => "[bepsi]", "[bowtie]" => "[bowtie]", "[bsim ]" => "[bsim]", "[bsime ]" => "[bsime]", "[bump ]" => "[bump]", "[bumpe ]" => "[bumpe]", "[cire ]" => "[cire]", "[colone]" => "[colone]", "[cuepr ]" => "[cuepr]", "[cuesc ]" => "[cuesc]", "[cupre ]" => "[cupre]", "[dashv ]" => "[dashv]", "[ecir ]" => "[ecir]", "[ecolon]" => "[ecolon]", "[eDot ]" => "[eDot]", "[esdot ]" => "[esdot]", "[efDot ]" => "[efDot]", "[egs ]" => "[egs]", "[els ]" => "[els]", "[erDot ]" => "[erDot]", "[fork ]" => "[fork]", "[frown ]" => "[frown]", "[gap ]" => "[gap]", "[gsdot ]" => "[gsdot]", "[gE ]" => "[gE]", "[gel ]" => "[gel]", "[gEl ]" => "[gEl]", "[ges ]" => "[ges]", "[Gg ]" => "[Gg]", "[gl ]" => "[gl]", "[gsim ]" => "[gsim]", "[Gt ]" => "[Gt]", "[lap ]" => "[lap]", "[ldot ]" => "[ldot]", "[lE ]" => "[lE]", "[lEg ]" => "[lEg]", "[leg ]" => "[leg]", "[les ]" => "[les]", "[lg ]" => "[lg]", "[Ll ]" => "[Ll]", "[lsim ]" => "[lsim]", "[Lt ]" => "[Lt]", "[ltrie ]" => "[ltrie]", "[mid ]" => "[mid]", "[models]" => "[models]", "[pr ]" => "[pr]", "[prap ]" => "[prap]", "[pre ]" => "[pre]", "[prsim ]" => "[prsim]", "[rtrie ]" => "[rtrie]", "[samalg]" => "[samalg]", "[sc ]" => "[sc]", "[scap ]" => "[scap]", "[sccue ]" => "[sccue]", "[sce ]" => "[sce]", "[scsim ]" => "[scsim]", "[sfrown]" => "[sfrown]", "[smid ]" => "[smid]", "[smile ]" => "[smile]", "[spar ]" => "[spar]", "[sqsub ]" => "[sqsub]", "[sqsube]" => "[sqsube]", "[sqsup ]" => "[sqsup]", "[sqsupe]" => "[sqsupe]", "[ssmile]" => "[ssmile]", "[Sub ]" => "[Sub]", "[subE ]" => "[subE]", "[Sup ]" => "[Sup]", "[supE ]" => "[supE]", "[thkap ]" => "[thkap]", "[thksim]" => "[thksim]", "[trie ]" => "[trie]", "[twixt ]" => "[twixt]", "[vdash ]" => "[vdash]", "[Vdash ]" => "[Vdash]", "[vDash ]" => "[vDash]", "[veebar]" => "[veebar]", "[vltri ]" => "[vltri]", "[vprop ]" => "[vprop]", "[vrtri ]" => "[vrtri]", "[Vvdash]" => "[Vvdash]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Negated Relations//EN "[gnap ]" => "[gnap]", "[gne ]" => "[gne]", "[gnE ]" => "[gnE]", "[gnsim ]" => "[gnsim]", "[gvnE ]" => "[gvnE]", "[lnap ]" => "[lnap]", "[lnE ]" => "[lnE]", "[lne ]" => "[lne]", "[lnsim ]" => "[lnsim]", "[lvnE ]" => "[lvnE]", "[nap ]" => "[nap]", "[ncong ]" => "[ncong]", "[nequiv]" => "[nequiv]", "[ngE ]" => "[ngE]", "[nge ]" => "[nge]", "[nges ]" => "[nges]", "[ngt ]" => "[ngt]", "[nle ]" => "[nle]", "[nlE ]" => "[nlE]", "[nles ]" => "[nles]", "[nlt ]" => "[nlt]", "[nltri ]" => "[nltri]", "[nltrie]" => "[nltrie]", "[nmid ]" => "[nmid]", "[npar ]" => "[npar]", "[npr ]" => "[npr]", "[npre ]" => "[npre]", "[nrtri ]" => "[nrtri]", "[nrtrie]" => "[nrtrie]", "[nsc ]" => "[nsc]", "[nsce ]" => "[nsce]", "[nsim ]" => "[nsim]", "[nsime ]" => "[nsime]", "[nsmid ]" => "[nsmid]", "[nspar ]" => "[nspar]", "[nsub ]" => "[nsub]", "[nsube ]" => "[nsube]", "[nsubE ]" => "[nsubE]", "[nsup ]" => "[nsup]", "[nsupE ]" => "[nsupE]", "[nsupe ]" => "[nsupe]", "[nvdash]" => "[nvdash]", "[nvDash]" => "[nvDash]", "[nVDash]" => "[nVDash]", "[nVdash]" => "[nVdash]", "[prnap ]" => "[prnap]", "[prnE ]" => "[prnE]", "[prnsim]" => "[prnsim]", "[scnap ]" => "[scnap]", "[scnE ]" => "[scnE]", "[scnsim]" => "[scnsim]", "[subne ]" => "[subne]", "[subnE ]" => "[subnE]", "[supne ]" => "[supne]", "[supnE ]" => "[supnE]", "[vsubnE]" => "[vsubnE]", "[vsubne]" => "[vsubne]", "[vsupne]" => "[vsupne]", "[vsupnE]" => "[vsupnE]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Arrow Relations//EN "[cularr]" => "[cularr]", "[curarr]" => "[curarr]", "[dArr ]" => "[dArr]", "[darr2 ]" => "[darr2]", "[dharl ]" => "[dharl]", "[dharr ]" => "[dharr]", "[lAarr ]" => "[lAarr]", "[Larr ]" => "[Larr]", "[larr2 ]" => "[larr2]", "[larrhk]" => "[larrhk]", "[larrlp]" => "[larrlp]", "[larrtl]" => "[larrtl]", "[lhard ]" => "[lhard]", "[lharu ]" => "[lharu]", "[hArr ]" => "[hArr]", "[harr ]" => "[harr]", "[lrarr2]" => "[lrarr2]", "[rlarr2]" => "[rlarr2]", "[harrw ]" => "[harrw]", "[rlhar2]" => "[rlhar2]", "[lrhar2]" => "[lrhar2]", "[lsh ]" => "[lsh]", "[map ]" => "[map]", "[mumap ]" => "[mumap]", "[nearr ]" => "[nearr]", "[nlArr ]" => "[nlArr]", "[nlarr ]" => "[nlarr]", "[nhArr ]" => "[nhArr]", "[nharr ]" => "[nharr]", "[nrarr ]" => "[nrarr]", "[nrArr ]" => "[nrArr]", "[nwarr ]" => "[nwarr]", "[olarr ]" => "[olarr]", "[orarr ]" => "[orarr]", "[rAarr ]" => "[rAarr]", "[Rarr ]" => "[Rarr]", "[rarr2 ]" => "[rarr2]", "[rarrhk]" => "[rarrhk]", "[rarrlp]" => "[rarrlp]", "[rarrtl]" => "[rarrtl]", "[rarrw ]" => "[rarrw]", "[rhard ]" => "[rhard]", "[rharu ]" => "[rharu]", "[rsh ]" => "[rsh]", "[drarr ]" => "[drarr]", "[dlarr ]" => "[dlarr]", "[uArr ]" => "[uArr]", "[uarr2 ]" => "[uarr2]", "[vArr ]" => "[vArr]", "[varr ]" => "[varr]", "[uharl ]" => "[uharl]", "[uharr ]" => "[uharr]", "[xlArr ]" => "[xlArr]", "[xhArr ]" => "[xhArr]", "[xharr ]" => "[xharr]", "[xrArr ]" => "[xrArr]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Delimiters//EN "[rceil ]" => "[rceil]", "[rfloor]" => "[rfloor]", "[rpargt]" => "[rpargt]", "[urcorn]" => "[urcorn]", "[drcorn]" => "[drcorn]", "[lceil ]" => "[lceil]", "[lfloor]" => "[lfloor]", "[lpargt]" => "[lpargt]", "[ulcorn]" => "[ulcorn]", "[dlcorn]" => "[dlcorn]", ); ## ---------------------------------------------------------------------- ## don't forget this 1; ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Map/Texinfo.pm0000664000175000017500000006767111655740662020142 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## DebianDoc_SGML/Map/Texinfo: Texinfo output format data map ## ---------------------------------------------------------------------- ## Copyright (C) 1999-2004 Ardo van Rangelrooij ## ## This is free software; see the GNU General Public Licence ## version 2 or later for copying conditions. There is NO warranty. ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- ## package interface definition #package DebianDoc_SGML::Map::Texinfo; #use strict; #use vars qw( @ISA @EXPORT ); #use Exporter; #@ISA = ( 'Exporter' ); #@EXPORT = qw (); ## ---------------------------------------------------------------------- %cdata = ( ); ## ---------------------------------------------------------------------- %sdata = ( ## ISO 8879:1986//ENTITIES Added Latin 1//EN "[aacute]" => "\@'a", "[Aacute]" => "\@'A", "[acirc ]" => "\@^a", "[Acirc ]" => "\@^A", "[agrave]" => "\@`a", "[Agrave]" => "\@`A", "[aring ]" => "\@aa{}", "[Aring ]" => "\@AA{}", "[atilde]" => "\@~a", "[Atilde]" => "\@~A", "[auml ]" => "\@\"a", "[Auml ]" => "\@\"A", "[aelig ]" => "\@ae{}", "[AElig ]" => "\@AE{}", "[ccedil]" => "\@,{c}", "[Ccedil]" => "\@,{C}", "[eth ]" => "[eth]", "[ETH ]" => "[ETH]", "[eacute]" => "\@'e", "[Eacute]" => "\@'E", "[ecirc ]" => "\@^e", "[Ecirc ]" => "\@^E", "[egrave]" => "\@`e", "[Egrave]" => "\@`E", "[euml ]" => "\@\"e", "[Euml ]" => "\@\"E", "[iacute]" => "\@'i", "[Iacute]" => "\@'I", "[icirc ]" => "\@^i", "[Icirc ]" => "\@^I", "[igrave]" => "\@`i", "[Igrave]" => "\@`I", "[iuml ]" => "\@\"i", "[Iuml ]" => "\@\"I", "[ntilde]" => "\@~n", "[Ntilde]" => "\@~N", "[oacute]" => "\@'o", "[Oacute]" => "\@'O", "[ocirc ]" => "\@^o", "[Ocirc ]" => "\@^O", "[ograve]" => "\@`o", "[Ograve]" => "\@`O", "[oslash]" => "\@o{}", "[Oslash]" => "\@O{}", "[otilde]" => "\@~o", "[Otilde]" => "\@~O", "[ouml ]" => "\@\"o", "[Ouml ]" => "\@\"O", "[szlig ]" => "\@ss{}", "[thorn ]" => "[thorn]", "[THORN ]" => "[THORN]", "[uacute]" => "\@'u", "[Uacute]" => "\@'U", "[ucirc ]" => "\@^u", "[Ucirc ]" => "\@^U", "[ugrave]" => "\@`u", "[Ugrave]" => "\@`U", "[uuml ]" => "\@\"u", "[Uuml ]" => "\@\"U", "[yacute]" => "\@'y", "[Yacute]" => "\@'Y", "[yuml ]" => "\@\"y", ## ISO 8879:1986//ENTITIES Added Latin 2//EN "[abreve]" => "\@u{a}", "[Abreve]" => "\@u{A}", "[amacr ]" => "\@=a", "[Amacr ]" => "\@=A", "[aogon ]" => "[aogon]", "[Aogon ]" => "[Aogon]", "[cacute]" => "\@'c", "[Cacute]" => "\@'C", "[ccaron]" => "\@v{c}", "[Ccaron]" => "\@v{C}", "[ccirc ]" => "\@^c", "[Ccirc ]" => "\@^C", "[cdot ]" => "\@dotaccent{c}", "[Cdot ]" => "\@dotaccent{C}", "[dcaron]" => "\@v{d}", "[Dcaron]" => "\@v{D}", "[dstrok]" => "[dstrok]", "[Dstrok]" => "[Dstrok]", "[ecaron]" => "\@v{e}", "[Ecaron]" => "\@v{E}", "[edot ]" => "\@dotaccent{e}", "[Edot ]" => "\@dotaccent{E}", "[emacr ]" => "\@=e", "[Emacr ]" => "\@=E", "[eogon ]" => "[eogon]", "[Eogon ]" => "[Eogon]", "[gacute]" => "\@'g", "[gbreve]" => "\@u{g}", "[Gbreve]" => "\@u{G}", "[Gcedil]" => "\@,{G}", "[gcirc ]" => "\@^g", "[Gcirc ]" => "\@^G", "[gdot ]" => "\@dotaccent{g}", "[Gdot ]" => "\@dotaccent{G}", "[hcirc ]" => "\@^h", "[Hcirc ]" => "\@^H", "[hstrok]" => "[hstrok]", "[Hstrok]" => "[Hstrok]", "[Idot ]" => "\@dotaccent{I}", "[Imacr ]" => "\@=I", "[imacr ]" => "\@=i", "[ijlig ]" => "ij", "[IJlig ]" => "IJ", "[inodot]" => "\@dotless{i}", "[iogon ]" => "[iogon]", "[Iogon ]" => "[Iogon]", "[itilde]" => "\@~i", "[Itilde]" => "\@~I", "[jcirc ]" => "\@^j", "[Jcirc ]" => "\@^J", "[kcedil]" => "\@,{k}", "[Kcedil]" => "\@,{K}", "[kgreen]" => "[kgreen]", "[lacute]" => "\@'l", "[Lacute]" => "\@'L", "[lcaron]" => "\@v{l}", "[Lcaron]" => "\@v{L}", "[lcedil]" => "\@,{l}", "[Lcedil]" => "\@,{L}", "[lmidot]" => "[lmidot]", "[Lmidot]" => "[Lmidot]", "[lstrok]" => "[lstrok]", "[Lstrok]" => "[Lstrok]", "[nacute]" => "\@'n", "[Nacute]" => "\@'N", "[eng ]" => "[eng]", "[ENG ]" => "[ENG]", "[napos ]" => "n'", "[ncaron]" => "\@v{n}", "[Ncaron]" => "\@v{N}", "[ncedil]" => "\@,{n}", "[Ncedil]" => "\@,{N}", "[odblac]" => "\@H{o}", "[Odblac]" => "\@H{O}", "[omacr ]" => "\@=o", "[Omacr ]" => "\@=O", "[oelig ]" => "oe", "[OElig ]" => "OE", "[racute]" => "\@'r", "[Racute]" => "\@'R", "[rcaron]" => "\@v{r}", "[Rcaron]" => "\@v{R}", "[rcedil]" => "\@,{r}", "[Rcedil]" => "\@,{R}", "[sacute]" => "\@'s", "[Sacute]" => "\@'S", "[scaron]" => "\@v{s}", "[Scaron]" => "\@v{S}", "[scedil]" => "\@,{s}", "[Scedil]" => "\@,{S}", "[scirc ]" => "\@^s", "[Scirc ]" => "\@^S", "[tcaron]" => "\@v{t}", "[Tcaron]" => "\@v{T}", "[tcedil]" => "\@,{t}", "[Tcedil]" => "\@,{T}", "[tstrok]" => "[tstrok]", "[Tstrok]" => "[Tstrok]", "[ubreve]" => "\@u{u}", "[Ubreve]" => "\@u{U}", "[udblac]" => "\@H{u}", "[Udblac]" => "\@H{U}", "[umacr ]" => "\@=u", "[Umacr ]" => "\@=U", "[uogon ]" => "[uogon]", "[Uogon ]" => "[Uogon]", "[uring ]" => "\@ringaccent{u}", "[Uring ]" => "\@ringaccent{U}", "[utilde]" => "\@~u", "[Utilde]" => "\@~U", "[wcirc ]" => "\@^w", "[Wcirc ]" => "\@^W", "[ycirc ]" => "\@^y", "[Ycirc ]" => "\@^Y", "[Yuml ]" => "\@\"Y", "[zacute]" => "\@'z", "[Zacute]" => "\@'Z", "[zcaron]" => "\@v{z}", "[Zcaron]" => "\@v{Z}", "[zdot ]" => "\@dotaccent{z}", "[Zdot ]" => "\@dotaccent{Z}", ## ISO 8879:1986//ENTITIES Greek Letters//EN "[agr ]" => "[agr]", "[Agr ]" => "[Agr]", "[bgr ]" => "[bgr]", "[Bgr ]" => "[Bgr]", "[ggr ]" => "[ggr]", "[Ggr ]" => "[Ggr]", "[dgr ]" => "[dgr]", "[Dgr ]" => "[Dgr]", "[egr ]" => "[egr]", "[Egr ]" => "[Egr]", "[zgr ]" => "[zgr]", "[Zgr ]" => "[Zgr]", "[eegr ]" => "[eegr]", "[EEgr ]" => "[EEgr]", "[thgr ]" => "[thgr]", "[THgr ]" => "[THgr]", "[igr ]" => "[igr]", "[Igr ]" => "[Igr]", "[kgr ]" => "[kgr]", "[Kgr ]" => "[Kgr]", "[lgr ]" => "[lgr]", "[Lgr ]" => "[Lgr]", "[mgr ]" => "[mgr]", "[Mgr ]" => "[Mgr]", "[ngr ]" => "[ngr]", "[Ngr ]" => "[Ngr]", "[xgr ]" => "[xgr]", "[Xgr ]" => "[Xgr]", "[ogr ]" => "[ogr]", "[Ogr ]" => "[Ogr]", "[pgr ]" => "[pgr]", "[Pgr ]" => "[Pgr]", "[rgr ]" => "[rgr]", "[Rgr ]" => "[Rgr]", "[sgr ]" => "[sgr]", "[Sgr ]" => "[Sgr]", "[sfgr ]" => "[sfgr]", "[tgr ]" => "[tgr]", "[Tgr ]" => "[Tgr]", "[ugr ]" => "[ugr]", "[Ugr ]" => "[Ugr]", "[phgr ]" => "[phgr]", "[PHgr ]" => "[PHgr]", "[khgr ]" => "[khgr]", "[KHgr ]" => "[KHgr]", "[psgr ]" => "[psgr]", "[PSgr ]" => "[PSgr]", "[ohgr ]" => "[ohgr]", "[OHgr ]" => "[OHgr]", ## ISO 8879:1986//ENTITIES Monotoniko Greek//EN "[aacgr ]" => "[aacgr]", "[Aacgr ]" => "[Aacgr]", "[eacgr ]" => "[eacgr]", "[Eacgr ]" => "[Eacgr]", "[eeacgr]" => "[eeacgr]", "[EEacgr]" => "[EEacgr]", "[idigr ]" => "[idigr]", "[Idigr ]" => "[Idigr]", "[iacgr ]" => "[iacgr]", "[Iacgr ]" => "[Iacgr]", "[idiagr]" => "[idiagr]", "[oacgr ]" => "[oacgr]", "[Oacgr ]" => "[Oacgr]", "[udigr ]" => "[udigr]", "[Udigr ]" => "[Udigr]", "[uacgr ]" => "[uacgr]", "[Uacgr ]" => "[Uacgr]", "[udiagr]" => "[udiagr]", "[ohacgr]" => "[ohacgr]", "[OHacgr]" => "[OHacgr]", ## ISO 8879:1986//ENTITIES Russian Cyrillic//EN "[acy ]" => "[acy]", "[Acy ]" => "[Acy]", "[bcy ]" => "[bcy]", "[Bcy ]" => "[Bcy]", "[vcy ]" => "[vcy]", "[Vcy ]" => "[Vcy]", "[gcy ]" => "[gcy]", "[Gcy ]" => "[Gcy]", "[dcy ]" => "[dcy]", "[Dcy ]" => "[Dcy]", "[iecy ]" => "[iecy]", "[IEcy ]" => "[IEcy]", "[iocy ]" => "[iocy]", "[IOcy ]" => "[IOcy]", "[zhcy ]" => "[zhcy]", "[ZHcy ]" => "[ZHcy]", "[zcy ]" => "[zcy]", "[Zcy ]" => "[Zcy]", "[icy ]" => "[icy]", "[Icy ]" => "[Icy]", "[jcy ]" => "[jcy]", "[Jcy ]" => "[Jcy]", "[kcy ]" => "[kcy]", "[Kcy ]" => "[Kcy]", "[lcy ]" => "[lcy]", "[Lcy ]" => "[Lcy]", "[mcy ]" => "[mcy]", "[Mcy ]" => "[Mcy]", "[ncy ]" => "[ncy]", "[Ncy ]" => "[Ncy]", "[ocy ]" => "[ocy]", "[Ocy ]" => "[Ocy]", "[pcy ]" => "[pcy]", "[Pcy ]" => "[Pcy]", "[rcy ]" => "[rcy]", "[Rcy ]" => "[Rcy]", "[scy ]" => "[scy]", "[Scy ]" => "[Scy]", "[tcy ]" => "[tcy]", "[Tcy ]" => "[Tcy]", "[ucy ]" => "[ucy]", "[Ucy ]" => "[Ucy]", "[fcy ]" => "[fcy]", "[Fcy ]" => "[Fcy]", "[khcy ]" => "[khcy]", "[KHcy ]" => "[KHcy]", "[tscy ]" => "[tscy]", "[TScy ]" => "[TScy]", "[chcy ]" => "[chcy]", "[CHcy ]" => "[CHcy]", "[shcy ]" => "[shcy]", "[SHcy ]" => "[SHcy]", "[shchcy]" => "[shchcy]", "[SHCHcy]" => "[SHCHcy]", "[hardcy]" => "[hardcy]", "[HARDcy]" => "[HARDcy]", "[ycy ]" => "[ycy]", "[Ycy ]" => "[Ycy]", "[softcy]" => "[softcy]", "[SOFTcy]" => "[SOFTcy]", "[ecy ]" => "[ecy]", "[Ecy ]" => "[Ecy]", "[yucy ]" => "[yucy]", "[YUcy ]" => "[YUcy]", "[yacy ]" => "[yacy]", "[YAcy ]" => "[YAcy]", "[numero]" => "[numero]", ## ISO 8879:1986//ENTITIES Non-Russian Cyrillic//EN "[djcy ]" => "[djcy]", "[DJcy ]" => "[DJcy]", "[gjcy ]" => "[gjcy]", "[GJcy ]" => "[GJcy]", "[jukcy ]" => "[jukcy]", "[Jukcy ]" => "[Jukcy]", "[dscy ]" => "[dscy]", "[DScy ]" => "[DScy]", "[iukcy ]" => "[iukcy]", "[Iukcy ]" => "[Iukcy]", "[yicy ]" => "[yicy]", "[YIcy ]" => "[YIcy]", "[jsercy]" => "[jsercy]", "[Jsercy]" => "[Jsercy]", "[ljcy ]" => "[ljcy]", "[LJcy ]" => "[LJcy]", "[njcy ]" => "[njcy]", "[NJcy ]" => "[NJcy]", "[tshcy ]" => "[tshcy]", "[TSHcy ]" => "[TSHcy]", "[kjcy ]" => "[kjcy]", "[KJcy ]" => "[KJcy]", "[ubrcy ]" => "[ubrcy]", "[Ubrcy ]" => "[Ubrcy]", "[dzcy ]" => "[dzcy]", "[DZcy ]" => "[DZcy]", ## ISO 8879:1986//ENTITIES Numeric and Special Graphic//EN "[half ]" => "1/2", "[frac12]" => "1/2", "[frac14]" => "1/4", "[frac34]" => "3/4", "[frac18]" => "1/8", "[frac38]" => "3/8", "[frac58]" => "5/8", "[frac78]" => "7/8", "[sup1 ]" => "^1", "[sup2 ]" => "^2", "[sup3 ]" => "^3", "[plus ]" => "+", "[plusmn]" => "+/-", "[lt ]" => "<", "[equals]" => "=", "[gt ]" => ">", "[divide]" => "/", "[times ]" => "x", "[curren]" => "[curren]", "[pound ]" => "L", "[dollar]" => "\$", "[cent ]" => "c", "[yen ]" => "Y", "[num ]" => "#", "[percnt]" => "%", "[amp ]" => "\&", "[ast ]" => "*", "[commat]" => "\@\@", "[lsqb ]" => "[", "[bsol ]" => "\\", "[rsqb ]" => "]", "[lcub ]" => "\@{", "[horbar]" => "--", "[verbar]" => "|", "[rcub ]" => "\@}", "[micro ]" => "u", "[ohm ]" => "[ohm]", "[deg ]" => "[deg]", "[ordm ]" => "[ordm]", "[ordf ]" => "[ordf]", "[sect ]" => "S", "[para ]" => "P", "[middot]" => ".", "[larr ]" => "<--", "[rarr ]" => "-->", "[uarr ]" => "[uarr]", "[darr ]" => "[darr]", "[copy ]" => "\@copyright{}", "[reg ]" => "(R)", "[trade ]" => "(TM)", "[brvbar]" => "|", "[not ]" => "[not]", "[sung ]" => "[sung]", "[excl ]" => "!", "[iexcl ]" => "\@exclamdown{}", "[quot ]" => "\"", "[apos ]" => "'", "[lpar ]" => "(", "[rpar ]" => ")", "[comma ]" => ",", "[lowbar]" => "__", "[hyphen]" => "-", "[period]" => ".", "[sol ]" => "/", "[colon ]" => ":", "[semi ]" => ";", "[quest ]" => "?", "[iquest]" => "\@questiondown{}", "[laquo ]" => "<<", "[raquo ]" => ">>", "[lsquo ]" => "`", "[rsquo ]" => "'", "[ldquo ]" => "``", "[rdquo ]" => "''", "[nbsp ]" => "\@w{ }", "[shy ]" => "-", ## ISO 8879:1986//ENTITIES Diacritical Marks//EN "[acute ]" => "\@'", "[breve ]" => "\@u{}", "[caron ]" => "\@v{}", "[cedil ]" => "\@,{}", "[circ ]" => "\@^", "[dblac ]" => "\@H{}", "[die ]" => "\@\"", "[dot ]" => "\@dotaccent{}", "[grave ]" => "\@`", "[macr ]" => "\@=", "[ogon ]" => "[ogon]", "[ring ]" => "\@ringaccent{}", "[tilde ]" => "\@~", "[uml ]" => "\@\"", ## ISO 8879:1986//ENTITIES Publishing//EN "[emsp ]" => "[emsp]", "[ensp ]" => "[ensp]", "[emsp3 ]" => "[emsp13]", "[emsp4 ]" => "[emsp14]", "[numsp ]" => "[numsp]", "[puncsp]" => "[puncsp]", "[thinsp]" => "[thinsp]", "[hairsp]" => "[hairsp]", "[mdash ]" => "---", "[ndash ]" => "--", "[dash ]" => "-", "[blank ]" => "_", "[hellip]" => "\@dots{}", "[nldr ]" => "..", "[frac13]" => "1/3", "[frac23]" => "2/3", "[frac15]" => "1/5", "[frac25]" => "2/5", "[frac35]" => "3/5", "[frac45]" => "4/5", "[frac16]" => "1/6", "[frac56]" => "5/6", "[incare]" => "c/o", "[block ]" => "[block]", "[uhblk ]" => "[uhblk]", "[lhblk ]" => "[lhblk]", "[blk14 ]" => "[blk14]", "[blk12 ]" => "[blk12]", "[blk34 ]" => "[blk34]", "[marker]" => "[marker]", "[cir ]" => "o", "[squ ]" => "[squ]", "[rect ]" => "[rect]", "[utri ]" => "[utri]", "[dtri ]" => "[dtri]", "[star ]" => "[star]", "[bull ]" => "\@bullet{}", "[squf ]" => "[squf]", "[utrif ]" => "[utrif]", "[dtrif ]" => "[dtrif]", "[ltrif ]" => "[ltrif]", "[rtrif ]" => "[rtrif]", "[clubs ]" => "[clubs]", "[diams ]" => "[diams]", "[hearts]" => "[hearts]", "[spades]" => "[spades]", "[malt ]" => "[malt]", "[dagger]" => "[dagger]", "[Dagger]" => "[Dagger]", "[check ]" => "[check]", "[ballot]" => "x", "[sharp ]" => "#", "[flat ]" => "[flat]", "[male ]" => "[male]", "[female]" => "[female]", "[phone ]" => "[phone]", "[telrec]" => "[telrec]", "[copysr]" => "[copysr]", "[caret ]" => "^", "[lsquor]" => "'", "[ldquor]" => "\"", "[fflig ]" => "ff", "[filig ]" => "fi", "[fjlig ]" => "fj", "[ffilig]" => "ffi", "[ffllig]" => "ffl", "[fllig ]" => "fl", "[mldr ]" => "\@dots{}", "[rdquor]" => "\"", "[rsquor]" => "'", "[vellip]" => ":", "[hybull]" => "-", "[loz ]" => "[loz]", "[lozf ]" => "[lozf]", "[ltri ]" => "[ltri]", "[rtri ]" => "[rtri]", "[starf ]" => "[starf]", "[natur ]" => "[natur]", "[rx ]" => "[rx]", "[sext ]" => "[sext]", "[target]" => "[target]", "[dlcrop]" => "[dlcrop]", "[drcrop]" => "[drcrop]", "[ulcrop]" => "[ulcrop]", "[urcrop]" => "[urcrop]", ## ISO 8879:1986//ENTITIES Box and Line Drawing//EN "[boxh ]" => "[boxh]", "[boxv ]" => "[boxv]", "[boxur ]" => "[boxur]", "[boxul ]" => "[boxul]", "[boxdl ]" => "[boxdl]", "[boxdr ]" => "[boxdr]", "[boxvr ]" => "[boxvr]", "[boxhu ]" => "[boxhu]", "[boxvl ]" => "[boxvl]", "[boxhd ]" => "[boxhd]", "[boxvh ]" => "[boxvh]", "[boxvR ]" => "[boxvR]", "[boxhU ]" => "[boxhU]", "[boxvL ]" => "[boxvL]", "[boxhD ]" => "[boxhD]", "[boxvH ]" => "[boxvH]", "[boxH ]" => "[boxH]", "[boxV ]" => "[boxV]", "[boxUR ]" => "[boxUR]", "[boxUL ]" => "[boxUL]", "[boxDL ]" => "[boxDL]", "[boxDR ]" => "[boxDR]", "[boxVR ]" => "[boxVR]", "[boxHU ]" => "[boxHU]", "[boxVL ]" => "[boxVL]", "[boxHD ]" => "[boxHD]", "[boxVH ]" => "[boxVH]", "[boxVr ]" => "[boxVr]", "[boxHu ]" => "[boxHu]", "[boxVl ]" => "[boxVl]", "[boxHd ]" => "[boxHd]", "[boxVh ]" => "[boxVh]", "[boxuR ]" => "[boxuR]", "[boxUl ]" => "[boxUl]", "[boxdL ]" => "[boxdL]", "[boxDr ]" => "[boxDr]", "[boxUr ]" => "[boxUr]", "[boxuL ]" => "[boxuL]", "[boxDl ]" => "[boxDl]", "[boxdR ]" => "[boxdR]", ## ISO 8879:1986//ENTITIES General Technical//EN "[aleph ]" => "N", "[and ]" => "/\\", "[ang90 ]" => "|_", "[angsph]" => "[angsph]", "[ap ]" => "[ap]", "[becaus]" => "[becaus]", "[bottom]" => "[bottom]", "[cap ]" => "[cap]", "[cong ]" => "[cong]", "[conint]" => "[conint]", "[cup ]" => "U", "[equiv ]" => "[equiv]", "[exist ]" => "[exist]", "[forall]" => "[forall]", "[fnof ]" => "f", "[ge ]" => ">=", "[iff ]" => "<==>", "[infin ]" => "[infin]", "[int ]" => "[int]", "[isin ]" => "[isin]", "[lang ]" => "<", "[lArr ]" => "<==", "[le ]" => "<=", "[minus ]" => "\@minus{}", "[mnplus]" => "-/+", "[nabla ]" => "[nabla]", "[ne ]" => "!=", "[ni ]" => "[ni]", "[or ]" => "\\/", "[par ]" => "||", "[part ]" => "[part]", "[permil]" => "[permil]", "[perp ]" => "[perp]", "[prime ]" => "'", "[Prime ]" => "''", "[prop ]" => "[prop]", "[radic ]" => "[radic]", "[rang ]" => ">", "[rArr ]" => "==>", "[sim ]" => "[sim]", "[sime ]" => "[sime]", "[square]" => "[square]", "[sub ]" => "[sub]", "[sube ]" => "[sube]", "[sup ]" => "[sup]", "[supe ]" => "[supe]", "[there4]" => "[there4]", "[Verbar]" => "||", "[angst ]" => "\@AA{}", "[bernou]" => "B", "[compfn]" => "o", "[Dot ]" => "[Dot]", "[DotDot]" => "[DotDot]", "[hamilt]" => "H", "[lagran]" => "L", "[lowast]" => "*", "[notin ]" => "[notin]", "[order ]" => "O", "[phmmat]" => "M", "[tdot ]" => "[tdot]", "[tprime]" => "'''", "[wedgeq]" => "[wedgeq]", ## ISO 8879:1986//ENTITIES Greek Symbols//EN "[alpha ]" => "[alpha]", "[beta ]" => "[beta]", "[gamma ]" => "[gamma]", "[Gamma ]" => "[Gamma]", "[gammad]" => "[gammad]", "[delta ]" => "[delta]", "[Delta ]" => "[Delta]", "[epsi ]" => "[epsi]", "[epsiv ]" => "[epsiv]", "[epsis ]" => "[epsis]", "[zeta ]" => "[zeta]", "[eta ]" => "[eta]", "[thetas]" => "[thetas]", "[Theta ]" => "[Theta]", "[thetav]" => "[thetav]", "[iota ]" => "[iota]", "[kappa ]" => "[kappa]", "[kappav]" => "[kappav]", "[lambda]" => "[lambda]", "[Lambda]" => "[Lambda]", "[mu ]" => "[mu]", "[nu ]" => "[nu]", "[xi ]" => "[xi]", "[Xi ]" => "[Xi]", "[pi ]" => "[pi]", "[piv ]" => "[piv]", "[Pi ]" => "[Pi]", "[rho ]" => "[rho]", "[rhov ]" => "[rhov]", "[sigma ]" => "[sigma]", "[Sigma ]" => "[Sigma]", "[sigmav]" => "[sigmav]", "[tau ]" => "[tau]", "[upsi ]" => "[upsi]", "[Upsi ]" => "[Upsi]", "[phis ]" => "[phis]", "[Phi ]" => "[Phi]", "[phiv ]" => "[phiv]", "[chi ]" => "[chi]", "[psi ]" => "[psi]", "[Psi ]" => "[Psi]", "[omega ]" => "[omega]", "[Omega ]" => "[Omega]", ## ISO 8879:1986//ENTITIES Alternative Greek Symbols//EN "[b.alpha ]" => "[b.alpha]", "[b.beta ]" => "[b.beta]", "[b.gamma ]" => "[b.gamma]", "[b.Gamma ]" => "[b.Gamma]", "[b.gammad]" => "[b.gammad]", "[b.delta ]" => "[b.delta]", "[b.Delta ]" => "[b.Delta]", "[b.epsi ]" => "[b.epsi]", "[b.epsiv ]" => "[b.epsiv]", "[b.epsis ]" => "[b.epsis]", "[b.zeta ]" => "[b.zeta]", "[b.eta ]" => "[b.eta]", "[b.thetas]" => "[b.thetas]", "[b.Theta ]" => "[b.Theta]", "[b.thetav]" => "[b.thetav]", "[b.iota ]" => "[b.iota]", "[b.kappa ]" => "[b.kappa]", "[b.kappav]" => "[b.kappav]", "[b.lambda]" => "[b.lambda]", "[b.Lambda]" => "[b.Lambda]", "[b.mu ]" => "[b.mu]", "[b.nu ]" => "[b.nu]", "[b.xi ]" => "[b.xi]", "[b.Xi ]" => "[b.Xi]", "[b.pi ]" => "[b.pi]", "[b.piv ]" => "[b.piv]", "[b.Pi ]" => "[b.Pi]", "[b.rho ]" => "[b.rho]", "[b.rhov ]" => "[b.rhov]", "[b.sigma ]" => "[b.sigma]", "[b.Sigma ]" => "[b.Sigma]", "[b.sigmav]" => "[b.sigmav]", "[b.tau ]" => "[b.tau]", "[b.upsi ]" => "[b.upsi]", "[b.Upsi ]" => "[b.Upsi]", "[b.phis ]" => "[b.phis]", "[b.Phi ]" => "[b.Phi]", "[b.phiv ]" => "[b.phiv]", "[b.chi ]" => "[b.chi]", "[b.psi ]" => "[b.psi]", "[b.Psi ]" => "[b.Psi]", "[b.omega ]" => "[b.omega]", "[b.Omega ]" => "[b.Omega]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Ordinary//EN "[ang ]" => "[ang]", "[angmsd]" => "[angmsd]", "[beth ]" => "[beth]", "[bprime]" => "`", "[comp ]" => "C", "[daleth]" => "[daleth]", "[ell ]" => "l", "[empty ]" => "[empty]", "[gimel ]" => "[gimel]", "[image ]" => "[image]", "[inodot]" => "\@dotless{i}", "[jnodot]" => "\@dotless{j}", "[nexist]" => "[nexist]", "[oS ]" => "[oS]", "[planck]" => "[planck]", "[real ]" => "[real]", "[sbsol ]" => "\\", "[vprime]" => "'", "[weierp]" => "P", ## ISO 8879:1986//ENTITIES Added Math Symbols: Binary Operators//EN "[amalg ]" => "[amalg]", "[Barwed]" => "[Barwed]", "[barwed]" => "[barwed]", "[Cap ]" => "[Cap]", "[Cup ]" => "[Cup]", "[cuvee ]" => "[cuvee]", "[cuwed ]" => "[cuwed]", "[diam ]" => "[diam]", "[divonx]" => "[divonx]", "[intcal]" => "[intcal]", "[lthree]" => "[lthree]", "[ltimes]" => "[ltimes]", "[minusb]" => "[minusb]", "[oast ]" => "[oast]", "[ocir ]" => "[ocir]", "[odash ]" => "[odash]", "[odot ]" => "[odot]", "[ominus]" => "[ominus]", "[oplus ]" => "[oplus]", "[osol ]" => "[osol]", "[otimes]" => "[otimes]", "[plusb ]" => "[plusb]", "[plusdo]" => "[plusdo]", "[rthree]" => "[rthree]", "[rtimes]" => "[rtimes]", "[sdot ]" => "[sdot]", "[sdotb ]" => "[sdotb]", "[setmn ]" => "[setmn]", "[sqcap ]" => "[sqcap]", "[sqcup ]" => "[sqcup]", "[ssetmn]" => "[ssetmn]", "[sstarf]" => "[sstarf]", "[timesb]" => "[timesb]", "[top ]" => "[top]", "[uplus ]" => "[uplus]", "[wreath]" => "[wreath]", "[xcirc ]" => "[xcirc]", "[xdtri ]" => "[xdtri]", "[xutri ]" => "[xutri]", "[coprod]" => "[coprod]", "[prod ]" => "[prod]", "[sum ]" => "[sum]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Relations//EN "[ape ]" => "[ape]", "[asymp ]" => "[asymp]", "[bcong ]" => "[bcong]", "[bepsi ]" => "[bepsi]", "[bowtie]" => "[bowtie]", "[bsim ]" => "[bsim]", "[bsime ]" => "[bsime]", "[bump ]" => "[bump]", "[bumpe ]" => "[bumpe]", "[cire ]" => "[cire]", "[colone]" => "[colone]", "[cuepr ]" => "[cuepr]", "[cuesc ]" => "[cuesc]", "[cupre ]" => "[cupre]", "[dashv ]" => "[dashv]", "[ecir ]" => "[ecir]", "[ecolon]" => "[ecolon]", "[eDot ]" => "[eDot]", "[esdot ]" => "[esdot]", "[efDot ]" => "[efDot]", "[egs ]" => "[egs]", "[els ]" => "[els]", "[erDot ]" => "[erDot]", "[fork ]" => "[fork]", "[frown ]" => "[frown]", "[gap ]" => "[gap]", "[gsdot ]" => "[gsdot]", "[gE ]" => "[gE]", "[gel ]" => "[gel]", "[gEl ]" => "[gEl]", "[ges ]" => "[ges]", "[Gg ]" => "[Gg]", "[gl ]" => "[gl]", "[gsim ]" => "[gsim]", "[Gt ]" => "[Gt]", "[lap ]" => "[lap]", "[ldot ]" => "[ldot]", "[lE ]" => "[lE]", "[lEg ]" => "[lEg]", "[leg ]" => "[leg]", "[les ]" => "[les]", "[lg ]" => "[lg]", "[Ll ]" => "[Ll]", "[lsim ]" => "[lsim]", "[Lt ]" => "[Lt]", "[ltrie ]" => "[ltrie]", "[mid ]" => "[mid]", "[models]" => "[models]", "[pr ]" => "[pr]", "[prap ]" => "[prap]", "[pre ]" => "[pre]", "[prsim ]" => "[prsim]", "[rtrie ]" => "[rtrie]", "[samalg]" => "[samalg]", "[sc ]" => "[sc]", "[scap ]" => "[scap]", "[sccue ]" => "[sccue]", "[sce ]" => "[sce]", "[scsim ]" => "[scsim]", "[sfrown]" => "[sfrown]", "[smid ]" => "[smid]", "[smile ]" => "[smile]", "[spar ]" => "[spar]", "[sqsub ]" => "[sqsub]", "[sqsube]" => "[sqsube]", "[sqsup ]" => "[sqsup]", "[sqsupe]" => "[sqsupe]", "[ssmile]" => "[ssmile]", "[Sub ]" => "[Sub]", "[subE ]" => "[subE]", "[Sup ]" => "[Sup]", "[supE ]" => "[supE]", "[thkap ]" => "[thkap]", "[thksim]" => "[thksim]", "[trie ]" => "[trie]", "[twixt ]" => "[twixt]", "[vdash ]" => "[vdash]", "[Vdash ]" => "[Vdash]", "[vDash ]" => "[vDash]", "[veebar]" => "[veebar]", "[vltri ]" => "[vltri]", "[vprop ]" => "[vprop]", "[vrtri ]" => "[vrtri]", "[Vvdash]" => "[Vvdash]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Negated Relations//EN "[gnap ]" => "[gnap]", "[gne ]" => "[gne]", "[gnE ]" => "[gnE]", "[gnsim ]" => "[gnsim]", "[gvnE ]" => "[gvnE]", "[lnap ]" => "[lnap]", "[lnE ]" => "[lnE]", "[lne ]" => "[lne]", "[lnsim ]" => "[lnsim]", "[lvnE ]" => "[lvnE]", "[nap ]" => "[nap]", "[ncong ]" => "[ncong]", "[nequiv]" => "[nequiv]", "[ngE ]" => "[ngE]", "[nge ]" => "[nge]", "[nges ]" => "[nges]", "[ngt ]" => "[ngt]", "[nle ]" => "[nle]", "[nlE ]" => "[nlE]", "[nles ]" => "[nles]", "[nlt ]" => "[nlt]", "[nltri ]" => "[nltri]", "[nltrie]" => "[nltrie]", "[nmid ]" => "[nmid]", "[npar ]" => "[npar]", "[npr ]" => "[npr]", "[npre ]" => "[npre]", "[nrtri ]" => "[nrtri]", "[nrtrie]" => "[nrtrie]", "[nsc ]" => "[nsc]", "[nsce ]" => "[nsce]", "[nsim ]" => "[nsim]", "[nsime ]" => "[nsime]", "[nsmid ]" => "[nsmid]", "[nspar ]" => "[nspar]", "[nsub ]" => "[nsub]", "[nsube ]" => "[nsube]", "[nsubE ]" => "[nsubE]", "[nsup ]" => "[nsup]", "[nsupE ]" => "[nsupE]", "[nsupe ]" => "[nsupe]", "[nvdash]" => "[nvdash]", "[nvDash]" => "[nvDash]", "[nVDash]" => "[nVDash]", "[nVdash]" => "[nVdash]", "[prnap ]" => "[prnap]", "[prnE ]" => "[prnE]", "[prnsim]" => "[prnsim]", "[scnap ]" => "[scnap]", "[scnE ]" => "[scnE]", "[scnsim]" => "[scnsim]", "[subne ]" => "[subne]", "[subnE ]" => "[subnE]", "[supne ]" => "[supne]", "[supnE ]" => "[supnE]", "[vsubnE]" => "[vsubnE]", "[vsubne]" => "[vsubne]", "[vsupne]" => "[vsupne]", "[vsupnE]" => "[vsupnE]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Arrow Relations//EN "[cularr]" => "[cularr]", "[curarr]" => "[curarr]", "[dArr ]" => "[dArr]", "[darr2 ]" => "[darr2]", "[dharl ]" => "[dharl]", "[dharr ]" => "[dharr]", "[lAarr ]" => "[lAarr]", "[Larr ]" => "[Larr]", "[larr2 ]" => "[larr2]", "[larrhk]" => "[larrhk]", "[larrlp]" => "[larrlp]", "[larrtl]" => "[larrtl]", "[lhard ]" => "[lhard]", "[lharu ]" => "[lharu]", "[hArr ]" => "[hArr]", "[harr ]" => "[harr]", "[lrarr2]" => "[lrarr2]", "[rlarr2]" => "[rlarr2]", "[harrw ]" => "[harrw]", "[rlhar2]" => "[rlhar2]", "[lrhar2]" => "[lrhar2]", "[lsh ]" => "[lsh]", "[map ]" => "[map]", "[mumap ]" => "[mumap]", "[nearr ]" => "[nearr]", "[nlArr ]" => "[nlArr]", "[nlarr ]" => "[nlarr]", "[nhArr ]" => "[nhArr]", "[nharr ]" => "[nharr]", "[nrarr ]" => "[nrarr]", "[nrArr ]" => "[nrArr]", "[nwarr ]" => "[nwarr]", "[olarr ]" => "[olarr]", "[orarr ]" => "[orarr]", "[rAarr ]" => "[rAarr]", "[Rarr ]" => "[Rarr]", "[rarr2 ]" => "[rarr2]", "[rarrhk]" => "[rarrhk]", "[rarrlp]" => "[rarrlp]", "[rarrtl]" => "[rarrtl]", "[rarrw ]" => "[rarrw]", "[rhard ]" => "[rhard]", "[rharu ]" => "[rharu]", "[rsh ]" => "[rsh]", "[drarr ]" => "[drarr]", "[dlarr ]" => "[dlarr]", "[uArr ]" => "[uArr]", "[uarr2 ]" => "[uarr2]", "[vArr ]" => "[vArr]", "[varr ]" => "[varr]", "[uharl ]" => "[uharl]", "[uharr ]" => "[uharr]", "[xlArr ]" => "[xlArr]", "[xhArr ]" => "[xhArr]", "[xharr ]" => "[xharr]", "[xrArr ]" => "[xrArr]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Delimiters//EN "[rceil ]" => "[rceil]", "[rfloor]" => "[rfloor]", "[rpargt]" => "[rpargt]", "[urcorn]" => "[urcorn]", "[drcorn]" => "[drcorn]", "[lceil ]" => "[lceil]", "[lfloor]" => "[lfloor]", "[lpargt]" => "[lpargt]", "[ulcorn]" => "[ulcorn]", "[dlcorn]" => "[dlcorn]", ); ## ---------------------------------------------------------------------- ## don't forget this 1; ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Map/Wiki.pm0000664000175000017500000006646011655740662017424 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## DebianDoc_SGML/Map/Text: plain text output format data map ## ---------------------------------------------------------------------- ## Copyright (C) 1999-2004 Ardo van Rangelrooij ## ## This is free software; see the GNU General Public Licence ## version 2 or later for copying conditions. There is NO warranty. ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- ## package interface definition #package DebianDoc_SGML::Map::Text; #use strict; #use vars qw( @ISA @EXPORT ); #use Exporter; #@ISA = ( 'Exporter' ); #@EXPORT = qw (); ## ---------------------------------------------------------------------- %cdata = ( ); ## ---------------------------------------------------------------------- %sdata = ( ## ISO 8879:1986//ENTITIES Added Latin 1//EN "[aacute]" => "a'", "[Aacute]" => "A'", "[acirc ]" => "a^", "[Acirc ]" => "A^", "[agrave]" => "a`", "[Agrave]" => "A`", "[aring ]" => "aa", "[Aring ]" => "AA", "[atilde]" => "a~", "[Atilde]" => "A~", "[auml ]" => "a\"", "[Auml ]" => "A\"", "[aelig ]" => "ae", "[AElig ]" => "AE", "[ccedil]" => "c,", "[Ccedil]" => "C,", "[eth ]" => "[eth]", "[ETH ]" => "[ETH]", "[eacute]" => "e'", "[Eacute]" => "E'", "[ecirc ]" => "e^", "[Ecirc ]" => "E^", "[egrave]" => "e`", "[Egrave]" => "E`", "[euml ]" => "e\"", "[Euml ]" => "E\"", "[iacute]" => "i'", "[Iacute]" => "I'", "[icirc ]" => "i^", "[Icirc ]" => "I^", "[igrave]" => "i`", "[Igrave]" => "I`", "[iuml ]" => "i\"", "[Iuml ]" => "I\"", "[ntilde]" => "n~", "[Ntilde]" => "N~", "[oacute]" => "o'", "[Oacute]" => "O'", "[ocirc ]" => "o^", "[Ocirc ]" => "O^", "[ograve]" => "o`", "[Ograve]" => "O`", "[oslash]" => "[oslash]", "[Oslash]" => "[Oslash]", "[otilde]" => "o~", "[Otilde]" => "O~", "[ouml ]" => "o\"", "[Ouml ]" => "O\"", "[szlig ]" => "ss", "[thorn ]" => "[thorn]", "[THORN ]" => "[THORN]", "[uacute]" => "u'", "[Uacute]" => "U'", "[ucirc ]" => "u^", "[Ucirc ]" => "U^", "[ugrave]" => "u`", "[Ugrave]" => "U`", "[uuml ]" => "u\"", "[Uuml ]" => "U\"", "[yacute]" => "y'", "[Yacute]" => "Y'", "[yuml ]" => "y\"", ## ISO 8879:1986//ENTITIES Added Latin 2//EN "[abreve]" => "a(", "[Abreve]" => "A(", "[amacr ]" => "a=", "[Amacr ]" => "A=", "[aogon ]" => "[aogon]", "[Aogon ]" => "[Aogon]", "[cacute]" => "c'", "[Cacute]" => "C'", "[ccaron]" => "c<", "[Ccaron]" => "C<", "[ccirc ]" => "c^", "[Ccirc ]" => "C^", "[cdot ]" => "c.", "[Cdot ]" => "C.", "[dcaron]" => "d<", "[Dcaron]" => "D<", "[dstrok]" => "[dstrok]", "[Dstrok]" => "[Dstrok]", "[ecaron]" => "e<", "[Ecaron]" => "E<", "[edot ]" => "e.", "[Edot ]" => "E.", "[emacr ]" => "e=", "[Emacr ]" => "E=", "[eogon ]" => "[eogon]", "[Eogon ]" => "[Eogon]", "[gacute]" => "g'", "[gbreve]" => "g(", "[Gbreve]" => "G(", "[Gcedil]" => "G,", "[gcirc ]" => "g^", "[Gcirc ]" => "G^", "[gdot ]" => "g.", "[Gdot ]" => "G.", "[hcirc ]" => "h^", "[Hcirc ]" => "H^", "[hstrok]" => "[hstrok]", "[Hstrok]" => "[Hstrok]", "[Idot ]" => "I.", "[Imacr ]" => "I=", "[imacr ]" => "i=", "[ijlig ]" => "ij", "[IJlig ]" => "IJ", "[inodot]" => "[inodot]", "[iogon ]" => "[iogon]", "[Iogon ]" => "[Iogon]", "[itilde]" => "i~", "[Itilde]" => "I~", "[jcirc ]" => "j^", "[Jcirc ]" => "J^", "[kcedil]" => "k,", "[Kcedil]" => "K,", "[kgreen]" => "[kgreen]", "[lacute]" => "l'", "[Lacute]" => "L'", "[lcaron]" => "l<", "[Lcaron]" => "L<", "[lcedil]" => "l,", "[Lcedil]" => "L,", "[lmidot]" => "[lmidot]", "[Lmidot]" => "[Lmidot]", "[lstrok]" => "[lstrok]", "[Lstrok]" => "[Lstrok]", "[nacute]" => "n'", "[Nacute]" => "N'", "[eng ]" => "[eng]", "[ENG ]" => "[ENG]", "[napos ]" => "n'", "[ncaron]" => "n<", "[Ncaron]" => "N<", "[ncedil]" => "n,", "[Ncedil]" => "N,", "[odblac]" => "o''", "[Odblac]" => "O''", "[omacr ]" => "o=", "[Omacr ]" => "O=", "[oelig ]" => "oe", "[OElig ]" => "OE", "[racute]" => "r'", "[Racute]" => "R'", "[rcaron]" => "r<", "[Rcaron]" => "R<", "[rcedil]" => "r,", "[Rcedil]" => "R,", "[sacute]" => "s'", "[Sacute]" => "S'", "[scaron]" => "s<", "[Scaron]" => "S<", "[scedil]" => "s,", "[Scedil]" => "S,", "[scirc ]" => "s^", "[Scirc ]" => "S^", "[tcaron]" => "t<", "[Tcaron]" => "T<", "[tcedil]" => "t,", "[Tcedil]" => "T,", "[tstrok]" => "[tstrok]", "[Tstrok]" => "[Tstrok]", "[ubreve]" => "u(", "[Ubreve]" => "U(", "[udblac]" => "u''", "[Udblac]" => "U''", "[umacr ]" => "u=", "[Umacr ]" => "U=", "[uogon ]" => "[uogon]", "[Uogon ]" => "[Uogon]", "[uring ]" => "u*", "[Uring ]" => "U*", "[utilde]" => "u~", "[Utilde]" => "U~", "[wcirc ]" => "w^", "[Wcirc ]" => "W^", "[ycirc ]" => "y^", "[Ycirc ]" => "Y^", "[Yuml ]" => "Y\"", "[zacute]" => "z'", "[Zacute]" => "Z'", "[zcaron]" => "z<", "[Zcaron]" => "Z<", "[zdot ]" => "z.", "[Zdot ]" => "Z.", ## ISO 8879:1986//ENTITIES Greek Letters//EN "[agr ]" => "[agr]", "[Agr ]" => "[Agr]", "[bgr ]" => "[bgr]", "[Bgr ]" => "[Bgr]", "[ggr ]" => "[ggr]", "[Ggr ]" => "[Ggr]", "[dgr ]" => "[dgr]", "[Dgr ]" => "[Dgr]", "[egr ]" => "[egr]", "[Egr ]" => "[Egr]", "[zgr ]" => "[zgr]", "[Zgr ]" => "[Zgr]", "[eegr ]" => "[eegr]", "[EEgr ]" => "[EEgr]", "[thgr ]" => "[thgr]", "[THgr ]" => "[THgr]", "[igr ]" => "[igr]", "[Igr ]" => "[Igr]", "[kgr ]" => "[kgr]", "[Kgr ]" => "[Kgr]", "[lgr ]" => "[lgr]", "[Lgr ]" => "[Lgr]", "[mgr ]" => "[mgr]", "[Mgr ]" => "[Mgr]", "[ngr ]" => "[ngr]", "[Ngr ]" => "[Ngr]", "[xgr ]" => "[xgr]", "[Xgr ]" => "[Xgr]", "[ogr ]" => "[ogr]", "[Ogr ]" => "[Ogr]", "[pgr ]" => "[pgr]", "[Pgr ]" => "[Pgr]", "[rgr ]" => "[rgr]", "[Rgr ]" => "[Rgr]", "[sgr ]" => "[sgr]", "[Sgr ]" => "[Sgr]", "[sfgr ]" => "[sfgr]", "[tgr ]" => "[tgr]", "[Tgr ]" => "[Tgr]", "[ugr ]" => "[ugr]", "[Ugr ]" => "[Ugr]", "[phgr ]" => "[phgr]", "[PHgr ]" => "[PHgr]", "[khgr ]" => "[khgr]", "[KHgr ]" => "[KHgr]", "[psgr ]" => "[psgr]", "[PSgr ]" => "[PSgr]", "[ohgr ]" => "[ohgr]", "[OHgr ]" => "[OHgr]", ## ISO 8879:1986//ENTITIES Monotoniko Greek//EN "[aacgr ]" => "[aacgr]", "[Aacgr ]" => "[Aacgr]", "[eacgr ]" => "[eacgr]", "[Eacgr ]" => "[Eacgr]", "[eeacgr]" => "[eeacgr]", "[EEacgr]" => "[EEacgr]", "[idigr ]" => "[idigr]", "[Idigr ]" => "[Idigr]", "[iacgr ]" => "[iacgr]", "[Iacgr ]" => "[Iacgr]", "[idiagr]" => "[idiagr]", "[oacgr ]" => "[oacgr]", "[Oacgr ]" => "[Oacgr]", "[udigr ]" => "[udigr]", "[Udigr ]" => "[Udigr]", "[uacgr ]" => "[uacgr]", "[Uacgr ]" => "[Uacgr]", "[udiagr]" => "[udiagr]", "[ohacgr]" => "[ohacgr]", "[OHacgr]" => "[OHacgr]", ## ISO 8879:1986//ENTITIES Russian Cyrillic//EN "[acy ]" => "[acy]", "[Acy ]" => "[Acy]", "[bcy ]" => "[bcy]", "[Bcy ]" => "[Bcy]", "[vcy ]" => "[vcy]", "[Vcy ]" => "[Vcy]", "[gcy ]" => "[gcy]", "[Gcy ]" => "[Gcy]", "[dcy ]" => "[dcy]", "[Dcy ]" => "[Dcy]", "[iecy ]" => "[iecy]", "[IEcy ]" => "[IEcy]", "[iocy ]" => "[iocy]", "[IOcy ]" => "[IOcy]", "[zhcy ]" => "[zhcy]", "[ZHcy ]" => "[ZHcy]", "[zcy ]" => "[zcy]", "[Zcy ]" => "[Zcy]", "[icy ]" => "[icy]", "[Icy ]" => "[Icy]", "[jcy ]" => "[jcy]", "[Jcy ]" => "[Jcy]", "[kcy ]" => "[kcy]", "[Kcy ]" => "[Kcy]", "[lcy ]" => "[lcy]", "[Lcy ]" => "[Lcy]", "[mcy ]" => "[mcy]", "[Mcy ]" => "[Mcy]", "[ncy ]" => "[ncy]", "[Ncy ]" => "[Ncy]", "[ocy ]" => "[ocy]", "[Ocy ]" => "[Ocy]", "[pcy ]" => "[pcy]", "[Pcy ]" => "[Pcy]", "[rcy ]" => "[rcy]", "[Rcy ]" => "[Rcy]", "[scy ]" => "[scy]", "[Scy ]" => "[Scy]", "[tcy ]" => "[tcy]", "[Tcy ]" => "[Tcy]", "[ucy ]" => "[ucy]", "[Ucy ]" => "[Ucy]", "[fcy ]" => "[fcy]", "[Fcy ]" => "[Fcy]", "[khcy ]" => "[khcy]", "[KHcy ]" => "[KHcy]", "[tscy ]" => "[tscy]", "[TScy ]" => "[TScy]", "[chcy ]" => "[chcy]", "[CHcy ]" => "[CHcy]", "[shcy ]" => "[shcy]", "[SHcy ]" => "[SHcy]", "[shchcy]" => "[shchcy]", "[SHCHcy]" => "[SHCHcy]", "[hardcy]" => "[hardcy]", "[HARDcy]" => "[HARDcy]", "[ycy ]" => "[ycy]", "[Ycy ]" => "[Ycy]", "[softcy]" => "[softcy]", "[SOFTcy]" => "[SOFTcy]", "[ecy ]" => "[ecy]", "[Ecy ]" => "[Ecy]", "[yucy ]" => "[yucy]", "[YUcy ]" => "[YUcy]", "[yacy ]" => "[yacy]", "[YAcy ]" => "[YAcy]", "[numero]" => "[numero]", ## ISO 8879:1986//ENTITIES Non-Russian Cyrillic//EN "[djcy ]" => "[djcy]", "[DJcy ]" => "[DJcy]", "[gjcy ]" => "[gjcy]", "[GJcy ]" => "[GJcy]", "[jukcy ]" => "[jukcy]", "[Jukcy ]" => "[Jukcy]", "[dscy ]" => "[dscy]", "[DScy ]" => "[DScy]", "[iukcy ]" => "[iukcy]", "[Iukcy ]" => "[Iukcy]", "[yicy ]" => "[yicy]", "[YIcy ]" => "[YIcy]", "[jsercy]" => "[jsercy]", "[Jsercy]" => "[Jsercy]", "[ljcy ]" => "[ljcy]", "[LJcy ]" => "[LJcy]", "[njcy ]" => "[njcy]", "[NJcy ]" => "[NJcy]", "[tshcy ]" => "[tshcy]", "[TSHcy ]" => "[TSHcy]", "[kjcy ]" => "[kjcy]", "[KJcy ]" => "[KJcy]", "[ubrcy ]" => "[ubrcy]", "[Ubrcy ]" => "[Ubrcy]", "[dzcy ]" => "[dzcy]", "[DZcy ]" => "[DZcy]", ## ISO 8879:1986//ENTITIES Numeric and Special Graphic//EN "[half ]" => "1/2", "[frac12]" => "1/2", "[frac14]" => "1/4", "[frac34]" => "3/4", "[frac18]" => "1/8", "[frac38]" => "3/8", "[frac58]" => "5/8", "[frac78]" => "7/8", "[sup1 ]" => "^1", "[sup2 ]" => "^2", "[sup3 ]" => "^3", "[plus ]" => "+", "[plusmn]" => "+/-", "[lt ]" => "<", "[equals]" => "=", "[gt ]" => ">", "[divide]" => "/", "[times ]" => "x", "[curren]" => "[curren]", "[pound ]" => "L", "[dollar]" => "\$", "[cent ]" => "c", "[yen ]" => "Y", "[num ]" => "#", "[percnt]" => "%", "[amp ]" => "&", "[ast ]" => "*", "[commat]" => "@", "[lsqb ]" => "[", "[bsol ]" => "\\", "[rsqb ]" => "]", "[lcub ]" => "{", "[horbar]" => "--", "[verbar]" => "|", "[rcub ]" => "}", "[micro ]" => "u", "[ohm ]" => "[ohm]", "[deg ]" => "[deg]", "[ordm ]" => "[ordm]", "[ordf ]" => "[ordf]", "[sect ]" => "S", "[para ]" => "P", "[middot]" => ".", "[larr ]" => "<--", "[rarr ]" => "-->", "[uarr ]" => "[uarr]", "[darr ]" => "[darr]", "[copy ]" => "(C)", "[reg ]" => "(R)", "[trade ]" => "(TM)", "[brvbar]" => "|", "[not ]" => "[not]", "[sung ]" => "[sung]", "[excl ]" => "!", "[iexcl ]" => "!", "[quot ]" => "\"", "[apos ]" => "'", "[lpar ]" => "(", "[rpar ]" => ")", "[comma ]" => ",", "[lowbar]" => "__", "[hyphen]" => "-", "[period]" => ".", "[sol ]" => "/", "[colon ]" => ":", "[semi ]" => ";", "[quest ]" => "?", "[iquest]" => "?", "[laquo ]" => "<<", "[raquo ]" => ">>", "[lsquo ]" => "`", "[rsquo ]" => "'", "[ldquo ]" => "``", "[rdquo ]" => "''", "[nbsp ]" => " ", "[shy ]" => "-", ## ISO 8879:1986//ENTITIES Diacritical Marks//EN "[acute ]" => "'", "[breve ]" => "(", "[caron ]" => "<", "[cedil ]" => ",", "[circ ]" => "^", "[dblac ]" => "''", "[die ]" => "\"", "[dot ]" => ".", "[grave ]" => "`", "[macr ]" => "=", "[ogon ]" => "[ogon]", "[ring ]" => "*", "[tilde ]" => "~", "[uml ]" => "\"", ## ISO 8879:1986//ENTITIES Publishing//EN "[emsp ]" => "[emsp]", "[ensp ]" => "[ensp]", "[emsp3 ]" => "[emsp13]", "[emsp4 ]" => "[emsp14]", "[numsp ]" => "[numsp]", "[puncsp]" => "[puncsp]", "[thinsp]" => "[thinsp]", "[hairsp]" => "[hairsp]", "[mdash ]" => "---", "[ndash ]" => "--", "[dash ]" => "-", "[blank ]" => "_", "[hellip]" => "...", "[nldr ]" => "..", "[frac13]" => "1/3", "[frac23]" => "2/3", "[frac15]" => "1/5", "[frac25]" => "2/5", "[frac35]" => "3/5", "[frac45]" => "4/5", "[frac16]" => "1/6", "[frac56]" => "5/6", "[incare]" => "c/o", "[block ]" => "[block]", "[uhblk ]" => "[uhblk]", "[lhblk ]" => "[lhblk]", "[blk14 ]" => "[blk14]", "[blk12 ]" => "[blk12]", "[blk34 ]" => "[blk34]", "[marker]" => "[marker]", "[cir ]" => "o", "[squ ]" => "[squ]", "[rect ]" => "[rect]", "[utri ]" => "[utri]", "[dtri ]" => "[dtri]", "[star ]" => "[star]", "[bull ]" => "*", "[squf ]" => "[squf]", "[utrif ]" => "[utrif]", "[dtrif ]" => "[dtrif]", "[ltrif ]" => "[ltrif]", "[rtrif ]" => "[rtrif]", "[clubs ]" => "[clubs]", "[diams ]" => "[diams]", "[hearts]" => "[hearts]", "[spades]" => "[spades]", "[malt ]" => "[malt]", "[dagger]" => "[dagger]", "[Dagger]" => "[Dagger]", "[check ]" => "[check]", "[ballot]" => "x", "[sharp ]" => "#", "[flat ]" => "[flat]", "[male ]" => "[male]", "[female]" => "[female]", "[phone ]" => "[phone]", "[telrec]" => "[telrec]", "[copysr]" => "[copysr]", "[caret ]" => "^", "[lsquor]" => "'", "[ldquor]" => "\"", "[fflig ]" => "ff", "[filig ]" => "fi", "[fjlig ]" => "fj", "[ffilig]" => "ffi", "[ffllig]" => "ffl", "[fllig ]" => "fl", "[mldr ]" => "...", "[rdquor]" => "\"", "[rsquor]" => "'", "[vellip]" => ":", "[hybull]" => "-", "[loz ]" => "[loz]", "[lozf ]" => "[lozf]", "[ltri ]" => "[ltri]", "[rtri ]" => "[rtri]", "[starf ]" => "[starf]", "[natur ]" => "[natur]", "[rx ]" => "[rx]", "[sext ]" => "[sext]", "[target]" => "[target]", "[dlcrop]" => "[dlcrop]", "[drcrop]" => "[drcrop]", "[ulcrop]" => "[ulcrop]", "[urcrop]" => "[urcrop]", ## ISO 8879:1986//ENTITIES Box and Line Drawing//EN "[boxh ]" => "[boxh]", "[boxv ]" => "[boxv]", "[boxur ]" => "[boxur]", "[boxul ]" => "[boxul]", "[boxdl ]" => "[boxdl]", "[boxdr ]" => "[boxdr]", "[boxvr ]" => "[boxvr]", "[boxhu ]" => "[boxhu]", "[boxvl ]" => "[boxvl]", "[boxhd ]" => "[boxhd]", "[boxvh ]" => "[boxvh]", "[boxvR ]" => "[boxvR]", "[boxhU ]" => "[boxhU]", "[boxvL ]" => "[boxvL]", "[boxhD ]" => "[boxhD]", "[boxvH ]" => "[boxvH]", "[boxH ]" => "[boxH]", "[boxV ]" => "[boxV]", "[boxUR ]" => "[boxUR]", "[boxUL ]" => "[boxUL]", "[boxDL ]" => "[boxDL]", "[boxDR ]" => "[boxDR]", "[boxVR ]" => "[boxVR]", "[boxHU ]" => "[boxHU]", "[boxVL ]" => "[boxVL]", "[boxHD ]" => "[boxHD]", "[boxVH ]" => "[boxVH]", "[boxVr ]" => "[boxVr]", "[boxHu ]" => "[boxHu]", "[boxVl ]" => "[boxVl]", "[boxHd ]" => "[boxHd]", "[boxVh ]" => "[boxVh]", "[boxuR ]" => "[boxuR]", "[boxUl ]" => "[boxUl]", "[boxdL ]" => "[boxdL]", "[boxDr ]" => "[boxDr]", "[boxUr ]" => "[boxUr]", "[boxuL ]" => "[boxuL]", "[boxDl ]" => "[boxDl]", "[boxdR ]" => "[boxdR]", ## ISO 8879:1986//ENTITIES General Technical//EN "[aleph ]" => "N", "[and ]" => "/\\", "[ang90 ]" => "|_", "[angsph]" => "[angsph]", "[ap ]" => "[ap]", "[becaus]" => "[becaus]", "[bottom]" => "[bottom]", "[cap ]" => "[cap]", "[cong ]" => "[cong]", "[conint]" => "[conint]", "[cup ]" => "U", "[equiv ]" => "[equiv]", "[exist ]" => "[exist]", "[forall]" => "[forall]", "[fnof ]" => "f", "[ge ]" => ">=", "[iff ]" => "<==>", "[infin ]" => "[infin]", "[int ]" => "[int]", "[isin ]" => "[isin]", "[lang ]" => "<", "[lArr ]" => "<==", "[le ]" => "<=", "[minus ]" => "-", "[mnplus]" => "-/+", "[nabla ]" => "[nabla]", "[ne ]" => "!=", "[ni ]" => "[ni]", "[or ]" => "\\/", "[par ]" => "||", "[part ]" => "[part]", "[permil]" => "[permil]", "[perp ]" => "[perp]", "[prime ]" => "'", "[Prime ]" => "''", "[prop ]" => "[prop]", "[radic ]" => "[radic]", "[rang ]" => ">", "[rArr ]" => "==>", "[sim ]" => "[sim]", "[sime ]" => "[sime]", "[square]" => "[square]", "[sub ]" => "[sub]", "[sube ]" => "[sube]", "[sup ]" => "[sup]", "[supe ]" => "[supe]", "[there4]" => "[there4]", "[Verbar]" => "||", "[angst ]" => "AA", "[bernou]" => "B", "[compfn]" => "o", "[Dot ]" => "[Dot]", "[DotDot]" => "[DotDot]", "[hamilt]" => "H", "[lagran]" => "L", "[lowast]" => "*", "[notin ]" => "[notin]", "[order ]" => "O", "[phmmat]" => "M", "[tdot ]" => "[tdot]", "[tprime]" => "'''", "[wedgeq]" => "[wedgeq]", ## ISO 8879:1986//ENTITIES Greek Symbols//EN "[alpha ]" => "[alpha]", "[beta ]" => "[beta]", "[gamma ]" => "[gamma]", "[Gamma ]" => "[Gamma]", "[gammad]" => "[gammad]", "[delta ]" => "[delta]", "[Delta ]" => "[Delta]", "[epsi ]" => "[epsi]", "[epsiv ]" => "[epsiv]", "[epsis ]" => "[epsis]", "[zeta ]" => "[zeta]", "[eta ]" => "[eta]", "[thetas]" => "[thetas]", "[Theta ]" => "[Theta]", "[thetav]" => "[thetav]", "[iota ]" => "[iota]", "[kappa ]" => "[kappa]", "[kappav]" => "[kappav]", "[lambda]" => "[lambda]", "[Lambda]" => "[Lambda]", "[mu ]" => "[mu]", "[nu ]" => "[nu]", "[xi ]" => "[xi]", "[Xi ]" => "[Xi]", "[pi ]" => "[pi]", "[piv ]" => "[piv]", "[Pi ]" => "[Pi]", "[rho ]" => "[rho]", "[rhov ]" => "[rhov]", "[sigma ]" => "[sigma]", "[Sigma ]" => "[Sigma]", "[sigmav]" => "[sigmav]", "[tau ]" => "[tau]", "[upsi ]" => "[upsi]", "[Upsi ]" => "[Upsi]", "[phis ]" => "[phis]", "[Phi ]" => "[Phi]", "[phiv ]" => "[phiv]", "[chi ]" => "[chi]", "[psi ]" => "[psi]", "[Psi ]" => "[Psi]", "[omega ]" => "[omega]", "[Omega ]" => "[Omega]", ## ISO 8879:1986//ENTITIES Alternative Greek Symbols//EN "[b.alpha ]" => "[b.alpha]", "[b.beta ]" => "[b.beta]", "[b.gamma ]" => "[b.gamma]", "[b.Gamma ]" => "[b.Gamma]", "[b.gammad]" => "[b.gammad]", "[b.delta ]" => "[b.delta]", "[b.Delta ]" => "[b.Delta]", "[b.epsi ]" => "[b.epsi]", "[b.epsiv ]" => "[b.epsiv]", "[b.epsis ]" => "[b.epsis]", "[b.zeta ]" => "[b.zeta]", "[b.eta ]" => "[b.eta]", "[b.thetas]" => "[b.thetas]", "[b.Theta ]" => "[b.Theta]", "[b.thetav]" => "[b.thetav]", "[b.iota ]" => "[b.iota]", "[b.kappa ]" => "[b.kappa]", "[b.kappav]" => "[b.kappav]", "[b.lambda]" => "[b.lambda]", "[b.Lambda]" => "[b.Lambda]", "[b.mu ]" => "[b.mu]", "[b.nu ]" => "[b.nu]", "[b.xi ]" => "[b.xi]", "[b.Xi ]" => "[b.Xi]", "[b.pi ]" => "[b.pi]", "[b.piv ]" => "[b.piv]", "[b.Pi ]" => "[b.Pi]", "[b.rho ]" => "[b.rho]", "[b.rhov ]" => "[b.rhov]", "[b.sigma ]" => "[b.sigma]", "[b.Sigma ]" => "[b.Sigma]", "[b.sigmav]" => "[b.sigmav]", "[b.tau ]" => "[b.tau]", "[b.upsi ]" => "[b.upsi]", "[b.Upsi ]" => "[b.Upsi]", "[b.phis ]" => "[b.phis]", "[b.Phi ]" => "[b.Phi]", "[b.phiv ]" => "[b.phiv]", "[b.chi ]" => "[b.chi]", "[b.psi ]" => "[b.psi]", "[b.Psi ]" => "[b.Psi]", "[b.omega ]" => "[b.omega]", "[b.Omega ]" => "[b.Omega]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Ordinary//EN "[ang ]" => "[ang]", "[angmsd]" => "[angmsd]", "[beth ]" => "[beth]", "[bprime]" => "`", "[comp ]" => "C", "[daleth]" => "[daleth]", "[ell ]" => "l", "[empty ]" => "[empty]", "[gimel ]" => "[gimel]", "[image ]" => "[image]", "[inodot]" => "[inodot]", "[jnodot]" => "[jnodot]", "[nexist]" => "[nexist]", "[oS ]" => "[oS]", "[planck]" => "[planck]", "[real ]" => "[real]", "[sbsol ]" => "\\", "[vprime]" => "'", "[weierp]" => "P", ## ISO 8879:1986//ENTITIES Added Math Symbols: Binary Operators//EN "[amalg ]" => "[amalg]", "[Barwed]" => "[Barwed]", "[barwed]" => "[barwed]", "[Cap ]" => "[Cap]", "[Cup ]" => "[Cup]", "[cuvee ]" => "[cuvee]", "[cuwed ]" => "[cuwed]", "[diam ]" => "[diam]", "[divonx]" => "[divonx]", "[intcal]" => "[intcal]", "[lthree]" => "[lthree]", "[ltimes]" => "[ltimes]", "[minusb]" => "[minusb]", "[oast ]" => "[oast]", "[ocir ]" => "[ocir]", "[odash ]" => "[odash]", "[odot ]" => "[odot]", "[ominus]" => "[ominus]", "[oplus ]" => "[oplus]", "[osol ]" => "[osol]", "[otimes]" => "[otimes]", "[plusb ]" => "[plusb]", "[plusdo]" => "[plusdo]", "[rthree]" => "[rthree]", "[rtimes]" => "[rtimes]", "[sdot ]" => "[sdot]", "[sdotb ]" => "[sdotb]", "[setmn ]" => "[setmn]", "[sqcap ]" => "[sqcap]", "[sqcup ]" => "[sqcup]", "[ssetmn]" => "[ssetmn]", "[sstarf]" => "[sstarf]", "[timesb]" => "[timesb]", "[top ]" => "[top]", "[uplus ]" => "[uplus]", "[wreath]" => "[wreath]", "[xcirc ]" => "[xcirc]", "[xdtri ]" => "[xdtri]", "[xutri ]" => "[xutri]", "[coprod]" => "[coprod]", "[prod ]" => "[prod]", "[sum ]" => "[sum]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Relations//EN "[ape ]" => "[ape]", "[asymp ]" => "[asymp]", "[bcong ]" => "[bcong]", "[bepsi ]" => "[bepsi]", "[bowtie]" => "[bowtie]", "[bsim ]" => "[bsim]", "[bsime ]" => "[bsime]", "[bump ]" => "[bump]", "[bumpe ]" => "[bumpe]", "[cire ]" => "[cire]", "[colone]" => "[colone]", "[cuepr ]" => "[cuepr]", "[cuesc ]" => "[cuesc]", "[cupre ]" => "[cupre]", "[dashv ]" => "[dashv]", "[ecir ]" => "[ecir]", "[ecolon]" => "[ecolon]", "[eDot ]" => "[eDot]", "[esdot ]" => "[esdot]", "[efDot ]" => "[efDot]", "[egs ]" => "[egs]", "[els ]" => "[els]", "[erDot ]" => "[erDot]", "[fork ]" => "[fork]", "[frown ]" => "[frown]", "[gap ]" => "[gap]", "[gsdot ]" => "[gsdot]", "[gE ]" => "[gE]", "[gel ]" => "[gel]", "[gEl ]" => "[gEl]", "[ges ]" => "[ges]", "[Gg ]" => "[Gg]", "[gl ]" => "[gl]", "[gsim ]" => "[gsim]", "[Gt ]" => "[Gt]", "[lap ]" => "[lap]", "[ldot ]" => "[ldot]", "[lE ]" => "[lE]", "[lEg ]" => "[lEg]", "[leg ]" => "[leg]", "[les ]" => "[les]", "[lg ]" => "[lg]", "[Ll ]" => "[Ll]", "[lsim ]" => "[lsim]", "[Lt ]" => "[Lt]", "[ltrie ]" => "[ltrie]", "[mid ]" => "[mid]", "[models]" => "[models]", "[pr ]" => "[pr]", "[prap ]" => "[prap]", "[pre ]" => "[pre]", "[prsim ]" => "[prsim]", "[rtrie ]" => "[rtrie]", "[samalg]" => "[samalg]", "[sc ]" => "[sc]", "[scap ]" => "[scap]", "[sccue ]" => "[sccue]", "[sce ]" => "[sce]", "[scsim ]" => "[scsim]", "[sfrown]" => "[sfrown]", "[smid ]" => "[smid]", "[smile ]" => "[smile]", "[spar ]" => "[spar]", "[sqsub ]" => "[sqsub]", "[sqsube]" => "[sqsube]", "[sqsup ]" => "[sqsup]", "[sqsupe]" => "[sqsupe]", "[ssmile]" => "[ssmile]", "[Sub ]" => "[Sub]", "[subE ]" => "[subE]", "[Sup ]" => "[Sup]", "[supE ]" => "[supE]", "[thkap ]" => "[thkap]", "[thksim]" => "[thksim]", "[trie ]" => "[trie]", "[twixt ]" => "[twixt]", "[vdash ]" => "[vdash]", "[Vdash ]" => "[Vdash]", "[vDash ]" => "[vDash]", "[veebar]" => "[veebar]", "[vltri ]" => "[vltri]", "[vprop ]" => "[vprop]", "[vrtri ]" => "[vrtri]", "[Vvdash]" => "[Vvdash]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Negated Relations//EN "[gnap ]" => "[gnap]", "[gne ]" => "[gne]", "[gnE ]" => "[gnE]", "[gnsim ]" => "[gnsim]", "[gvnE ]" => "[gvnE]", "[lnap ]" => "[lnap]", "[lnE ]" => "[lnE]", "[lne ]" => "[lne]", "[lnsim ]" => "[lnsim]", "[lvnE ]" => "[lvnE]", "[nap ]" => "[nap]", "[ncong ]" => "[ncong]", "[nequiv]" => "[nequiv]", "[ngE ]" => "[ngE]", "[nge ]" => "[nge]", "[nges ]" => "[nges]", "[ngt ]" => "[ngt]", "[nle ]" => "[nle]", "[nlE ]" => "[nlE]", "[nles ]" => "[nles]", "[nlt ]" => "[nlt]", "[nltri ]" => "[nltri]", "[nltrie]" => "[nltrie]", "[nmid ]" => "[nmid]", "[npar ]" => "[npar]", "[npr ]" => "[npr]", "[npre ]" => "[npre]", "[nrtri ]" => "[nrtri]", "[nrtrie]" => "[nrtrie]", "[nsc ]" => "[nsc]", "[nsce ]" => "[nsce]", "[nsim ]" => "[nsim]", "[nsime ]" => "[nsime]", "[nsmid ]" => "[nsmid]", "[nspar ]" => "[nspar]", "[nsub ]" => "[nsub]", "[nsube ]" => "[nsube]", "[nsubE ]" => "[nsubE]", "[nsup ]" => "[nsup]", "[nsupE ]" => "[nsupE]", "[nsupe ]" => "[nsupe]", "[nvdash]" => "[nvdash]", "[nvDash]" => "[nvDash]", "[nVDash]" => "[nVDash]", "[nVdash]" => "[nVdash]", "[prnap ]" => "[prnap]", "[prnE ]" => "[prnE]", "[prnsim]" => "[prnsim]", "[scnap ]" => "[scnap]", "[scnE ]" => "[scnE]", "[scnsim]" => "[scnsim]", "[subne ]" => "[subne]", "[subnE ]" => "[subnE]", "[supne ]" => "[supne]", "[supnE ]" => "[supnE]", "[vsubnE]" => "[vsubnE]", "[vsubne]" => "[vsubne]", "[vsupne]" => "[vsupne]", "[vsupnE]" => "[vsupnE]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Arrow Relations//EN "[cularr]" => "[cularr]", "[curarr]" => "[curarr]", "[dArr ]" => "[dArr]", "[darr2 ]" => "[darr2]", "[dharl ]" => "[dharl]", "[dharr ]" => "[dharr]", "[lAarr ]" => "[lAarr]", "[Larr ]" => "[Larr]", "[larr2 ]" => "[larr2]", "[larrhk]" => "[larrhk]", "[larrlp]" => "[larrlp]", "[larrtl]" => "[larrtl]", "[lhard ]" => "[lhard]", "[lharu ]" => "[lharu]", "[hArr ]" => "[hArr]", "[harr ]" => "[harr]", "[lrarr2]" => "[lrarr2]", "[rlarr2]" => "[rlarr2]", "[harrw ]" => "[harrw]", "[rlhar2]" => "[rlhar2]", "[lrhar2]" => "[lrhar2]", "[lsh ]" => "[lsh]", "[map ]" => "[map]", "[mumap ]" => "[mumap]", "[nearr ]" => "[nearr]", "[nlArr ]" => "[nlArr]", "[nlarr ]" => "[nlarr]", "[nhArr ]" => "[nhArr]", "[nharr ]" => "[nharr]", "[nrarr ]" => "[nrarr]", "[nrArr ]" => "[nrArr]", "[nwarr ]" => "[nwarr]", "[olarr ]" => "[olarr]", "[orarr ]" => "[orarr]", "[rAarr ]" => "[rAarr]", "[Rarr ]" => "[Rarr]", "[rarr2 ]" => "[rarr2]", "[rarrhk]" => "[rarrhk]", "[rarrlp]" => "[rarrlp]", "[rarrtl]" => "[rarrtl]", "[rarrw ]" => "[rarrw]", "[rhard ]" => "[rhard]", "[rharu ]" => "[rharu]", "[rsh ]" => "[rsh]", "[drarr ]" => "[drarr]", "[dlarr ]" => "[dlarr]", "[uArr ]" => "[uArr]", "[uarr2 ]" => "[uarr2]", "[vArr ]" => "[vArr]", "[varr ]" => "[varr]", "[uharl ]" => "[uharl]", "[uharr ]" => "[uharr]", "[xlArr ]" => "[xlArr]", "[xhArr ]" => "[xhArr]", "[xharr ]" => "[xharr]", "[xrArr ]" => "[xrArr]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Delimiters//EN "[rceil ]" => "[rceil]", "[rfloor]" => "[rfloor]", "[rpargt]" => "[rpargt]", "[urcorn]" => "[urcorn]", "[drcorn]" => "[drcorn]", "[lceil ]" => "[lceil]", "[lfloor]" => "[lfloor]", "[lpargt]" => "[lpargt]", "[ulcorn]" => "[ulcorn]", "[dlcorn]" => "[dlcorn]", ); ## ---------------------------------------------------------------------- ## don't forget this 1; ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Map/TextOV.pm0000664000175000017500000006647111655740662017714 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## DebianDoc_SGML/Map/TextOV: overstrike text output format data map ## ---------------------------------------------------------------------- ## Copyright (C) 1999-2004 Ardo van Rangelrooij ## ## This is free software; see the GNU General Public Licence ## version 2 or later for copying conditions. There is NO warranty. ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- ## package interface definition #package DebianDoc_SGML::Map::TextOV; #use strict; #use vars qw( @ISA @EXPORT ); #use Exporter; #@ISA = ( 'Exporter' ); #@EXPORT = qw (); ## ---------------------------------------------------------------------- %cdata = ( ); ## ---------------------------------------------------------------------- %sdata = ( ## ISO 8879:1986//ENTITIES Added Latin 1//EN "[aacute]" => "a'", "[Aacute]" => "A'", "[acirc ]" => "a^", "[Acirc ]" => "A^", "[agrave]" => "a`", "[Agrave]" => "A`", "[aring ]" => "aa", "[Aring ]" => "AA", "[atilde]" => "a~", "[Atilde]" => "A~", "[auml ]" => "a\"", "[Auml ]" => "A\"", "[aelig ]" => "ae", "[AElig ]" => "AE", "[ccedil]" => "c,", "[Ccedil]" => "C,", "[eth ]" => "[eth]", "[ETH ]" => "[ETH]", "[eacute]" => "e'", "[Eacute]" => "E'", "[ecirc ]" => "e^", "[Ecirc ]" => "E^", "[egrave]" => "e`", "[Egrave]" => "E`", "[euml ]" => "e\"", "[Euml ]" => "E\"", "[iacute]" => "i'", "[Iacute]" => "I'", "[icirc ]" => "i^", "[Icirc ]" => "I^", "[igrave]" => "i`", "[Igrave]" => "I`", "[iuml ]" => "i\"", "[Iuml ]" => "I\"", "[ntilde]" => "n~", "[Ntilde]" => "N~", "[oacute]" => "o'", "[Oacute]" => "O'", "[ocirc ]" => "o^", "[Ocirc ]" => "O^", "[ograve]" => "o`", "[Ograve]" => "O`", "[oslash]" => "[oslash]", "[Oslash]" => "[Oslash]", "[otilde]" => "o~", "[Otilde]" => "O~", "[ouml ]" => "o\"", "[Ouml ]" => "O\"", "[szlig ]" => "ss", "[thorn ]" => "[thorn]", "[THORN ]" => "[THORN]", "[uacute]" => "u'", "[Uacute]" => "U'", "[ucirc ]" => "u^", "[Ucirc ]" => "U^", "[ugrave]" => "u`", "[Ugrave]" => "U`", "[uuml ]" => "u\"", "[Uuml ]" => "U\"", "[yacute]" => "y'", "[Yacute]" => "Y'", "[yuml ]" => "y\"", ## ISO 8879:1986//ENTITIES Added Latin 2//EN "[abreve]" => "a(", "[Abreve]" => "A(", "[amacr ]" => "a=", "[Amacr ]" => "A=", "[aogon ]" => "[aogon]", "[Aogon ]" => "[Aogon]", "[cacute]" => "c'", "[Cacute]" => "C'", "[ccaron]" => "c<", "[Ccaron]" => "C<", "[ccirc ]" => "c^", "[Ccirc ]" => "C^", "[cdot ]" => "c.", "[Cdot ]" => "C.", "[dcaron]" => "d<", "[Dcaron]" => "D<", "[dstrok]" => "[dstrok]", "[Dstrok]" => "[Dstrok]", "[ecaron]" => "e<", "[Ecaron]" => "E<", "[edot ]" => "e.", "[Edot ]" => "E.", "[emacr ]" => "e=", "[Emacr ]" => "E=", "[eogon ]" => "[eogon]", "[Eogon ]" => "[Eogon]", "[gacute]" => "g'", "[gbreve]" => "g(", "[Gbreve]" => "G(", "[Gcedil]" => "G,", "[gcirc ]" => "g^", "[Gcirc ]" => "G^", "[gdot ]" => "g.", "[Gdot ]" => "G.", "[hcirc ]" => "h^", "[Hcirc ]" => "H^", "[hstrok]" => "[hstrok]", "[Hstrok]" => "[Hstrok]", "[Idot ]" => "I.", "[Imacr ]" => "I=", "[imacr ]" => "i=", "[ijlig ]" => "ij", "[IJlig ]" => "IJ", "[inodot]" => "[inodot]", "[iogon ]" => "[iogon]", "[Iogon ]" => "[Iogon]", "[itilde]" => "i~", "[Itilde]" => "I~", "[jcirc ]" => "j^", "[Jcirc ]" => "J^", "[kcedil]" => "k,", "[Kcedil]" => "K,", "[kgreen]" => "[kgreen]", "[lacute]" => "l'", "[Lacute]" => "L'", "[lcaron]" => "l<", "[Lcaron]" => "L<", "[lcedil]" => "l,", "[Lcedil]" => "L,", "[lmidot]" => "[lmidot]", "[Lmidot]" => "[Lmidot]", "[lstrok]" => "[lstrok]", "[Lstrok]" => "[Lstrok]", "[nacute]" => "n'", "[Nacute]" => "N'", "[eng ]" => "[eng]", "[ENG ]" => "[ENG]", "[napos ]" => "n'", "[ncaron]" => "n<", "[Ncaron]" => "N<", "[ncedil]" => "n,", "[Ncedil]" => "N,", "[odblac]" => "o''", "[Odblac]" => "O''", "[omacr ]" => "o=", "[Omacr ]" => "O=", "[oelig ]" => "oe", "[OElig ]" => "OE", "[racute]" => "r'", "[Racute]" => "R'", "[rcaron]" => "r<", "[Rcaron]" => "R<", "[rcedil]" => "r,", "[Rcedil]" => "R,", "[sacute]" => "s'", "[Sacute]" => "S'", "[scaron]" => "s<", "[Scaron]" => "S<", "[scedil]" => "s,", "[Scedil]" => "S,", "[scirc ]" => "s^", "[Scirc ]" => "S^", "[tcaron]" => "t<", "[Tcaron]" => "T<", "[tcedil]" => "t,", "[Tcedil]" => "T,", "[tstrok]" => "[tstrok]", "[Tstrok]" => "[Tstrok]", "[ubreve]" => "u(", "[Ubreve]" => "U(", "[udblac]" => "u''", "[Udblac]" => "U''", "[umacr ]" => "u=", "[Umacr ]" => "U=", "[uogon ]" => "[uogon]", "[Uogon ]" => "[Uogon]", "[uring ]" => "u*", "[Uring ]" => "U*", "[utilde]" => "u~", "[Utilde]" => "U~", "[wcirc ]" => "w^", "[Wcirc ]" => "W^", "[ycirc ]" => "y^", "[Ycirc ]" => "Y^", "[Yuml ]" => "Y\"", "[zacute]" => "z'", "[Zacute]" => "Z'", "[zcaron]" => "z<", "[Zcaron]" => "Z<", "[zdot ]" => "z.", "[Zdot ]" => "Z.", ## ISO 8879:1986//ENTITIES Greek Letters//EN "[agr ]" => "[agr]", "[Agr ]" => "[Agr]", "[bgr ]" => "[bgr]", "[Bgr ]" => "[Bgr]", "[ggr ]" => "[ggr]", "[Ggr ]" => "[Ggr]", "[dgr ]" => "[dgr]", "[Dgr ]" => "[Dgr]", "[egr ]" => "[egr]", "[Egr ]" => "[Egr]", "[zgr ]" => "[zgr]", "[Zgr ]" => "[Zgr]", "[eegr ]" => "[eegr]", "[EEgr ]" => "[EEgr]", "[thgr ]" => "[thgr]", "[THgr ]" => "[THgr]", "[igr ]" => "[igr]", "[Igr ]" => "[Igr]", "[kgr ]" => "[kgr]", "[Kgr ]" => "[Kgr]", "[lgr ]" => "[lgr]", "[Lgr ]" => "[Lgr]", "[mgr ]" => "[mgr]", "[Mgr ]" => "[Mgr]", "[ngr ]" => "[ngr]", "[Ngr ]" => "[Ngr]", "[xgr ]" => "[xgr]", "[Xgr ]" => "[Xgr]", "[ogr ]" => "[ogr]", "[Ogr ]" => "[Ogr]", "[pgr ]" => "[pgr]", "[Pgr ]" => "[Pgr]", "[rgr ]" => "[rgr]", "[Rgr ]" => "[Rgr]", "[sgr ]" => "[sgr]", "[Sgr ]" => "[Sgr]", "[sfgr ]" => "[sfgr]", "[tgr ]" => "[tgr]", "[Tgr ]" => "[Tgr]", "[ugr ]" => "[ugr]", "[Ugr ]" => "[Ugr]", "[phgr ]" => "[phgr]", "[PHgr ]" => "[PHgr]", "[khgr ]" => "[khgr]", "[KHgr ]" => "[KHgr]", "[psgr ]" => "[psgr]", "[PSgr ]" => "[PSgr]", "[ohgr ]" => "[ohgr]", "[OHgr ]" => "[OHgr]", ## ISO 8879:1986//ENTITIES Monotoniko Greek//EN "[aacgr ]" => "[aacgr]", "[Aacgr ]" => "[Aacgr]", "[eacgr ]" => "[eacgr]", "[Eacgr ]" => "[Eacgr]", "[eeacgr]" => "[eeacgr]", "[EEacgr]" => "[EEacgr]", "[idigr ]" => "[idigr]", "[Idigr ]" => "[Idigr]", "[iacgr ]" => "[iacgr]", "[Iacgr ]" => "[Iacgr]", "[idiagr]" => "[idiagr]", "[oacgr ]" => "[oacgr]", "[Oacgr ]" => "[Oacgr]", "[udigr ]" => "[udigr]", "[Udigr ]" => "[Udigr]", "[uacgr ]" => "[uacgr]", "[Uacgr ]" => "[Uacgr]", "[udiagr]" => "[udiagr]", "[ohacgr]" => "[ohacgr]", "[OHacgr]" => "[OHacgr]", ## ISO 8879:1986//ENTITIES Russian Cyrillic//EN "[acy ]" => "[acy]", "[Acy ]" => "[Acy]", "[bcy ]" => "[bcy]", "[Bcy ]" => "[Bcy]", "[vcy ]" => "[vcy]", "[Vcy ]" => "[Vcy]", "[gcy ]" => "[gcy]", "[Gcy ]" => "[Gcy]", "[dcy ]" => "[dcy]", "[Dcy ]" => "[Dcy]", "[iecy ]" => "[iecy]", "[IEcy ]" => "[IEcy]", "[iocy ]" => "[iocy]", "[IOcy ]" => "[IOcy]", "[zhcy ]" => "[zhcy]", "[ZHcy ]" => "[ZHcy]", "[zcy ]" => "[zcy]", "[Zcy ]" => "[Zcy]", "[icy ]" => "[icy]", "[Icy ]" => "[Icy]", "[jcy ]" => "[jcy]", "[Jcy ]" => "[Jcy]", "[kcy ]" => "[kcy]", "[Kcy ]" => "[Kcy]", "[lcy ]" => "[lcy]", "[Lcy ]" => "[Lcy]", "[mcy ]" => "[mcy]", "[Mcy ]" => "[Mcy]", "[ncy ]" => "[ncy]", "[Ncy ]" => "[Ncy]", "[ocy ]" => "[ocy]", "[Ocy ]" => "[Ocy]", "[pcy ]" => "[pcy]", "[Pcy ]" => "[Pcy]", "[rcy ]" => "[rcy]", "[Rcy ]" => "[Rcy]", "[scy ]" => "[scy]", "[Scy ]" => "[Scy]", "[tcy ]" => "[tcy]", "[Tcy ]" => "[Tcy]", "[ucy ]" => "[ucy]", "[Ucy ]" => "[Ucy]", "[fcy ]" => "[fcy]", "[Fcy ]" => "[Fcy]", "[khcy ]" => "[khcy]", "[KHcy ]" => "[KHcy]", "[tscy ]" => "[tscy]", "[TScy ]" => "[TScy]", "[chcy ]" => "[chcy]", "[CHcy ]" => "[CHcy]", "[shcy ]" => "[shcy]", "[SHcy ]" => "[SHcy]", "[shchcy]" => "[shchcy]", "[SHCHcy]" => "[SHCHcy]", "[hardcy]" => "[hardcy]", "[HARDcy]" => "[HARDcy]", "[ycy ]" => "[ycy]", "[Ycy ]" => "[Ycy]", "[softcy]" => "[softcy]", "[SOFTcy]" => "[SOFTcy]", "[ecy ]" => "[ecy]", "[Ecy ]" => "[Ecy]", "[yucy ]" => "[yucy]", "[YUcy ]" => "[YUcy]", "[yacy ]" => "[yacy]", "[YAcy ]" => "[YAcy]", "[numero]" => "[numero]", ## ISO 8879:1986//ENTITIES Non-Russian Cyrillic//EN "[djcy ]" => "[djcy]", "[DJcy ]" => "[DJcy]", "[gjcy ]" => "[gjcy]", "[GJcy ]" => "[GJcy]", "[jukcy ]" => "[jukcy]", "[Jukcy ]" => "[Jukcy]", "[dscy ]" => "[dscy]", "[DScy ]" => "[DScy]", "[iukcy ]" => "[iukcy]", "[Iukcy ]" => "[Iukcy]", "[yicy ]" => "[yicy]", "[YIcy ]" => "[YIcy]", "[jsercy]" => "[jsercy]", "[Jsercy]" => "[Jsercy]", "[ljcy ]" => "[ljcy]", "[LJcy ]" => "[LJcy]", "[njcy ]" => "[njcy]", "[NJcy ]" => "[NJcy]", "[tshcy ]" => "[tshcy]", "[TSHcy ]" => "[TSHcy]", "[kjcy ]" => "[kjcy]", "[KJcy ]" => "[KJcy]", "[ubrcy ]" => "[ubrcy]", "[Ubrcy ]" => "[Ubrcy]", "[dzcy ]" => "[dzcy]", "[DZcy ]" => "[DZcy]", ## ISO 8879:1986//ENTITIES Numeric and Special Graphic//EN "[half ]" => "1/2", "[frac12]" => "1/2", "[frac14]" => "1/4", "[frac34]" => "3/4", "[frac18]" => "1/8", "[frac38]" => "3/8", "[frac58]" => "5/8", "[frac78]" => "7/8", "[sup1 ]" => "^1", "[sup2 ]" => "^2", "[sup3 ]" => "^3", "[plus ]" => "+", "[plusmn]" => "+/-", "[lt ]" => "<", "[equals]" => "=", "[gt ]" => ">", "[divide]" => "/", "[times ]" => "x", "[curren]" => "[curren]", "[pound ]" => "L", "[dollar]" => "\$", "[cent ]" => "c", "[yen ]" => "Y", "[num ]" => "#", "[percnt]" => "%", "[amp ]" => "&", "[ast ]" => "*", "[commat]" => "@", "[lsqb ]" => "[", "[bsol ]" => "\\", "[rsqb ]" => "]", "[lcub ]" => "{", "[horbar]" => "--", "[verbar]" => "|", "[rcub ]" => "}", "[micro ]" => "u", "[ohm ]" => "[ohm]", "[deg ]" => "[deg]", "[ordm ]" => "[ordm]", "[ordf ]" => "[ordf]", "[sect ]" => "S", "[para ]" => "P", "[middot]" => ".", "[larr ]" => "<--", "[rarr ]" => "-->", "[uarr ]" => "[uarr]", "[darr ]" => "[darr]", "[copy ]" => "(C)", "[reg ]" => "(R)", "[trade ]" => "(TM)", "[brvbar]" => "|", "[not ]" => "[not]", "[sung ]" => "[sung]", "[excl ]" => "!", "[iexcl ]" => "!", "[quot ]" => "\"", "[apos ]" => "'", "[lpar ]" => "(", "[rpar ]" => ")", "[comma ]" => ",", "[lowbar]" => "__", "[hyphen]" => "-", "[period]" => ".", "[sol ]" => "/", "[colon ]" => ":", "[semi ]" => ";", "[quest ]" => "?", "[iquest]" => "?", "[laquo ]" => "<<", "[raquo ]" => ">>", "[lsquo ]" => "`", "[rsquo ]" => "'", "[ldquo ]" => "``", "[rdquo ]" => "''", "[nbsp ]" => " ", "[shy ]" => "-", ## ISO 8879:1986//ENTITIES Diacritical Marks//EN "[acute ]" => "'", "[breve ]" => "(", "[caron ]" => "<", "[cedil ]" => ",", "[circ ]" => "^", "[dblac ]" => "''", "[die ]" => "\"", "[dot ]" => ".", "[grave ]" => "`", "[macr ]" => "=", "[ogon ]" => "[ogon]", "[ring ]" => "*", "[tilde ]" => "~", "[uml ]" => "\"", ## ISO 8879:1986//ENTITIES Publishing//EN "[emsp ]" => "[emsp]", "[ensp ]" => "[ensp]", "[emsp3 ]" => "[emsp13]", "[emsp4 ]" => "[emsp14]", "[numsp ]" => "[numsp]", "[puncsp]" => "[puncsp]", "[thinsp]" => "[thinsp]", "[hairsp]" => "[hairsp]", "[mdash ]" => "---", "[ndash ]" => "--", "[dash ]" => "-", "[blank ]" => "_", "[hellip]" => "...", "[nldr ]" => "..", "[frac13]" => "1/3", "[frac23]" => "2/3", "[frac15]" => "1/5", "[frac25]" => "2/5", "[frac35]" => "3/5", "[frac45]" => "4/5", "[frac16]" => "1/6", "[frac56]" => "5/6", "[incare]" => "c/o", "[block ]" => "[block]", "[uhblk ]" => "[uhblk]", "[lhblk ]" => "[lhblk]", "[blk14 ]" => "[blk14]", "[blk12 ]" => "[blk12]", "[blk34 ]" => "[blk34]", "[marker]" => "[marker]", "[cir ]" => "o", "[squ ]" => "[squ]", "[rect ]" => "[rect]", "[utri ]" => "[utri]", "[dtri ]" => "[dtri]", "[star ]" => "[star]", "[bull ]" => "*", "[squf ]" => "[squf]", "[utrif ]" => "[utrif]", "[dtrif ]" => "[dtrif]", "[ltrif ]" => "[ltrif]", "[rtrif ]" => "[rtrif]", "[clubs ]" => "[clubs]", "[diams ]" => "[diams]", "[hearts]" => "[hearts]", "[spades]" => "[spades]", "[malt ]" => "[malt]", "[dagger]" => "[dagger]", "[Dagger]" => "[Dagger]", "[check ]" => "[check]", "[ballot]" => "x", "[sharp ]" => "#", "[flat ]" => "[flat]", "[male ]" => "[male]", "[female]" => "[female]", "[phone ]" => "[phone]", "[telrec]" => "[telrec]", "[copysr]" => "[copysr]", "[caret ]" => "^", "[lsquor]" => "'", "[ldquor]" => "\"", "[fflig ]" => "ff", "[filig ]" => "fi", "[fjlig ]" => "fj", "[ffilig]" => "ffi", "[ffllig]" => "ffl", "[fllig ]" => "fl", "[mldr ]" => "...", "[rdquor]" => "\"", "[rsquor]" => "'", "[vellip]" => ":", "[hybull]" => "-", "[loz ]" => "[loz]", "[lozf ]" => "[lozf]", "[ltri ]" => "[ltri]", "[rtri ]" => "[rtri]", "[starf ]" => "[starf]", "[natur ]" => "[natur]", "[rx ]" => "[rx]", "[sext ]" => "[sext]", "[target]" => "[target]", "[dlcrop]" => "[dlcrop]", "[drcrop]" => "[drcrop]", "[ulcrop]" => "[ulcrop]", "[urcrop]" => "[urcrop]", ## ISO 8879:1986//ENTITIES Box and Line Drawing//EN "[boxh ]" => "[boxh]", "[boxv ]" => "[boxv]", "[boxur ]" => "[boxur]", "[boxul ]" => "[boxul]", "[boxdl ]" => "[boxdl]", "[boxdr ]" => "[boxdr]", "[boxvr ]" => "[boxvr]", "[boxhu ]" => "[boxhu]", "[boxvl ]" => "[boxvl]", "[boxhd ]" => "[boxhd]", "[boxvh ]" => "[boxvh]", "[boxvR ]" => "[boxvR]", "[boxhU ]" => "[boxhU]", "[boxvL ]" => "[boxvL]", "[boxhD ]" => "[boxhD]", "[boxvH ]" => "[boxvH]", "[boxH ]" => "[boxH]", "[boxV ]" => "[boxV]", "[boxUR ]" => "[boxUR]", "[boxUL ]" => "[boxUL]", "[boxDL ]" => "[boxDL]", "[boxDR ]" => "[boxDR]", "[boxVR ]" => "[boxVR]", "[boxHU ]" => "[boxHU]", "[boxVL ]" => "[boxVL]", "[boxHD ]" => "[boxHD]", "[boxVH ]" => "[boxVH]", "[boxVr ]" => "[boxVr]", "[boxHu ]" => "[boxHu]", "[boxVl ]" => "[boxVl]", "[boxHd ]" => "[boxHd]", "[boxVh ]" => "[boxVh]", "[boxuR ]" => "[boxuR]", "[boxUl ]" => "[boxUl]", "[boxdL ]" => "[boxdL]", "[boxDr ]" => "[boxDr]", "[boxUr ]" => "[boxUr]", "[boxuL ]" => "[boxuL]", "[boxDl ]" => "[boxDl]", "[boxdR ]" => "[boxdR]", ## ISO 8879:1986//ENTITIES General Technical//EN "[aleph ]" => "N", "[and ]" => "/\\", "[ang90 ]" => "|_", "[angsph]" => "[angsph]", "[ap ]" => "[ap]", "[becaus]" => "[becaus]", "[bottom]" => "[bottom]", "[cap ]" => "[cap]", "[cong ]" => "[cong]", "[conint]" => "[conint]", "[cup ]" => "U", "[equiv ]" => "[equiv]", "[exist ]" => "[exist]", "[forall]" => "[forall]", "[fnof ]" => "f", "[ge ]" => ">=", "[iff ]" => "<==>", "[infin ]" => "[infin]", "[int ]" => "[int]", "[isin ]" => "[isin]", "[lang ]" => "<", "[lArr ]" => "<==", "[le ]" => "<=", "[minus ]" => "-", "[mnplus]" => "-/+", "[nabla ]" => "[nabla]", "[ne ]" => "!=", "[ni ]" => "[ni]", "[or ]" => "\\/", "[par ]" => "||", "[part ]" => "[part]", "[permil]" => "[permil]", "[perp ]" => "[perp]", "[prime ]" => "'", "[Prime ]" => "''", "[prop ]" => "[prop]", "[radic ]" => "[radic]", "[rang ]" => ">", "[rArr ]" => "==>", "[sim ]" => "[sim]", "[sime ]" => "[sime]", "[square]" => "[square]", "[sub ]" => "[sub]", "[sube ]" => "[sube]", "[sup ]" => "[sup]", "[supe ]" => "[supe]", "[there4]" => "[there4]", "[Verbar]" => "||", "[angst ]" => "AA", "[bernou]" => "B", "[compfn]" => "o", "[Dot ]" => "[Dot]", "[DotDot]" => "[DotDot]", "[hamilt]" => "H", "[lagran]" => "L", "[lowast]" => "*", "[notin ]" => "[notin]", "[order ]" => "O", "[phmmat]" => "M", "[tdot ]" => "[tdot]", "[tprime]" => "'''", "[wedgeq]" => "[wedgeq]", ## ISO 8879:1986//ENTITIES Greek Symbols//EN "[alpha ]" => "[alpha]", "[beta ]" => "[beta]", "[gamma ]" => "[gamma]", "[Gamma ]" => "[Gamma]", "[gammad]" => "[gammad]", "[delta ]" => "[delta]", "[Delta ]" => "[Delta]", "[epsi ]" => "[epsi]", "[epsiv ]" => "[epsiv]", "[epsis ]" => "[epsis]", "[zeta ]" => "[zeta]", "[eta ]" => "[eta]", "[thetas]" => "[thetas]", "[Theta ]" => "[Theta]", "[thetav]" => "[thetav]", "[iota ]" => "[iota]", "[kappa ]" => "[kappa]", "[kappav]" => "[kappav]", "[lambda]" => "[lambda]", "[Lambda]" => "[Lambda]", "[mu ]" => "[mu]", "[nu ]" => "[nu]", "[xi ]" => "[xi]", "[Xi ]" => "[Xi]", "[pi ]" => "[pi]", "[piv ]" => "[piv]", "[Pi ]" => "[Pi]", "[rho ]" => "[rho]", "[rhov ]" => "[rhov]", "[sigma ]" => "[sigma]", "[Sigma ]" => "[Sigma]", "[sigmav]" => "[sigmav]", "[tau ]" => "[tau]", "[upsi ]" => "[upsi]", "[Upsi ]" => "[Upsi]", "[phis ]" => "[phis]", "[Phi ]" => "[Phi]", "[phiv ]" => "[phiv]", "[chi ]" => "[chi]", "[psi ]" => "[psi]", "[Psi ]" => "[Psi]", "[omega ]" => "[omega]", "[Omega ]" => "[Omega]", ## ISO 8879:1986//ENTITIES Alternative Greek Symbols//EN "[b.alpha ]" => "[b.alpha]", "[b.beta ]" => "[b.beta]", "[b.gamma ]" => "[b.gamma]", "[b.Gamma ]" => "[b.Gamma]", "[b.gammad]" => "[b.gammad]", "[b.delta ]" => "[b.delta]", "[b.Delta ]" => "[b.Delta]", "[b.epsi ]" => "[b.epsi]", "[b.epsiv ]" => "[b.epsiv]", "[b.epsis ]" => "[b.epsis]", "[b.zeta ]" => "[b.zeta]", "[b.eta ]" => "[b.eta]", "[b.thetas]" => "[b.thetas]", "[b.Theta ]" => "[b.Theta]", "[b.thetav]" => "[b.thetav]", "[b.iota ]" => "[b.iota]", "[b.kappa ]" => "[b.kappa]", "[b.kappav]" => "[b.kappav]", "[b.lambda]" => "[b.lambda]", "[b.Lambda]" => "[b.Lambda]", "[b.mu ]" => "[b.mu]", "[b.nu ]" => "[b.nu]", "[b.xi ]" => "[b.xi]", "[b.Xi ]" => "[b.Xi]", "[b.pi ]" => "[b.pi]", "[b.piv ]" => "[b.piv]", "[b.Pi ]" => "[b.Pi]", "[b.rho ]" => "[b.rho]", "[b.rhov ]" => "[b.rhov]", "[b.sigma ]" => "[b.sigma]", "[b.Sigma ]" => "[b.Sigma]", "[b.sigmav]" => "[b.sigmav]", "[b.tau ]" => "[b.tau]", "[b.upsi ]" => "[b.upsi]", "[b.Upsi ]" => "[b.Upsi]", "[b.phis ]" => "[b.phis]", "[b.Phi ]" => "[b.Phi]", "[b.phiv ]" => "[b.phiv]", "[b.chi ]" => "[b.chi]", "[b.psi ]" => "[b.psi]", "[b.Psi ]" => "[b.Psi]", "[b.omega ]" => "[b.omega]", "[b.Omega ]" => "[b.Omega]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Ordinary//EN "[ang ]" => "[ang]", "[angmsd]" => "[angmsd]", "[beth ]" => "[beth]", "[bprime]" => "`", "[comp ]" => "C", "[daleth]" => "[daleth]", "[ell ]" => "l", "[empty ]" => "[empty]", "[gimel ]" => "[gimel]", "[image ]" => "[image]", "[inodot]" => "[inodot]", "[jnodot]" => "[jnodot]", "[nexist]" => "[nexist]", "[oS ]" => "[oS]", "[planck]" => "[planck]", "[real ]" => "[real]", "[sbsol ]" => "\\", "[vprime]" => "'", "[weierp]" => "P", ## ISO 8879:1986//ENTITIES Added Math Symbols: Binary Operators//EN "[amalg ]" => "[amalg]", "[Barwed]" => "[Barwed]", "[barwed]" => "[barwed]", "[Cap ]" => "[Cap]", "[Cup ]" => "[Cup]", "[cuvee ]" => "[cuvee]", "[cuwed ]" => "[cuwed]", "[diam ]" => "[diam]", "[divonx]" => "[divonx]", "[intcal]" => "[intcal]", "[lthree]" => "[lthree]", "[ltimes]" => "[ltimes]", "[minusb]" => "[minusb]", "[oast ]" => "[oast]", "[ocir ]" => "[ocir]", "[odash ]" => "[odash]", "[odot ]" => "[odot]", "[ominus]" => "[ominus]", "[oplus ]" => "[oplus]", "[osol ]" => "[osol]", "[otimes]" => "[otimes]", "[plusb ]" => "[plusb]", "[plusdo]" => "[plusdo]", "[rthree]" => "[rthree]", "[rtimes]" => "[rtimes]", "[sdot ]" => "[sdot]", "[sdotb ]" => "[sdotb]", "[setmn ]" => "[setmn]", "[sqcap ]" => "[sqcap]", "[sqcup ]" => "[sqcup]", "[ssetmn]" => "[ssetmn]", "[sstarf]" => "[sstarf]", "[timesb]" => "[timesb]", "[top ]" => "[top]", "[uplus ]" => "[uplus]", "[wreath]" => "[wreath]", "[xcirc ]" => "[xcirc]", "[xdtri ]" => "[xdtri]", "[xutri ]" => "[xutri]", "[coprod]" => "[coprod]", "[prod ]" => "[prod]", "[sum ]" => "[sum]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Relations//EN "[ape ]" => "[ape]", "[asymp ]" => "[asymp]", "[bcong ]" => "[bcong]", "[bepsi ]" => "[bepsi]", "[bowtie]" => "[bowtie]", "[bsim ]" => "[bsim]", "[bsime ]" => "[bsime]", "[bump ]" => "[bump]", "[bumpe ]" => "[bumpe]", "[cire ]" => "[cire]", "[colone]" => "[colone]", "[cuepr ]" => "[cuepr]", "[cuesc ]" => "[cuesc]", "[cupre ]" => "[cupre]", "[dashv ]" => "[dashv]", "[ecir ]" => "[ecir]", "[ecolon]" => "[ecolon]", "[eDot ]" => "[eDot]", "[esdot ]" => "[esdot]", "[efDot ]" => "[efDot]", "[egs ]" => "[egs]", "[els ]" => "[els]", "[erDot ]" => "[erDot]", "[fork ]" => "[fork]", "[frown ]" => "[frown]", "[gap ]" => "[gap]", "[gsdot ]" => "[gsdot]", "[gE ]" => "[gE]", "[gel ]" => "[gel]", "[gEl ]" => "[gEl]", "[ges ]" => "[ges]", "[Gg ]" => "[Gg]", "[gl ]" => "[gl]", "[gsim ]" => "[gsim]", "[Gt ]" => "[Gt]", "[lap ]" => "[lap]", "[ldot ]" => "[ldot]", "[lE ]" => "[lE]", "[lEg ]" => "[lEg]", "[leg ]" => "[leg]", "[les ]" => "[les]", "[lg ]" => "[lg]", "[Ll ]" => "[Ll]", "[lsim ]" => "[lsim]", "[Lt ]" => "[Lt]", "[ltrie ]" => "[ltrie]", "[mid ]" => "[mid]", "[models]" => "[models]", "[pr ]" => "[pr]", "[prap ]" => "[prap]", "[pre ]" => "[pre]", "[prsim ]" => "[prsim]", "[rtrie ]" => "[rtrie]", "[samalg]" => "[samalg]", "[sc ]" => "[sc]", "[scap ]" => "[scap]", "[sccue ]" => "[sccue]", "[sce ]" => "[sce]", "[scsim ]" => "[scsim]", "[sfrown]" => "[sfrown]", "[smid ]" => "[smid]", "[smile ]" => "[smile]", "[spar ]" => "[spar]", "[sqsub ]" => "[sqsub]", "[sqsube]" => "[sqsube]", "[sqsup ]" => "[sqsup]", "[sqsupe]" => "[sqsupe]", "[ssmile]" => "[ssmile]", "[Sub ]" => "[Sub]", "[subE ]" => "[subE]", "[Sup ]" => "[Sup]", "[supE ]" => "[supE]", "[thkap ]" => "[thkap]", "[thksim]" => "[thksim]", "[trie ]" => "[trie]", "[twixt ]" => "[twixt]", "[vdash ]" => "[vdash]", "[Vdash ]" => "[Vdash]", "[vDash ]" => "[vDash]", "[veebar]" => "[veebar]", "[vltri ]" => "[vltri]", "[vprop ]" => "[vprop]", "[vrtri ]" => "[vrtri]", "[Vvdash]" => "[Vvdash]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Negated Relations//EN "[gnap ]" => "[gnap]", "[gne ]" => "[gne]", "[gnE ]" => "[gnE]", "[gnsim ]" => "[gnsim]", "[gvnE ]" => "[gvnE]", "[lnap ]" => "[lnap]", "[lnE ]" => "[lnE]", "[lne ]" => "[lne]", "[lnsim ]" => "[lnsim]", "[lvnE ]" => "[lvnE]", "[nap ]" => "[nap]", "[ncong ]" => "[ncong]", "[nequiv]" => "[nequiv]", "[ngE ]" => "[ngE]", "[nge ]" => "[nge]", "[nges ]" => "[nges]", "[ngt ]" => "[ngt]", "[nle ]" => "[nle]", "[nlE ]" => "[nlE]", "[nles ]" => "[nles]", "[nlt ]" => "[nlt]", "[nltri ]" => "[nltri]", "[nltrie]" => "[nltrie]", "[nmid ]" => "[nmid]", "[npar ]" => "[npar]", "[npr ]" => "[npr]", "[npre ]" => "[npre]", "[nrtri ]" => "[nrtri]", "[nrtrie]" => "[nrtrie]", "[nsc ]" => "[nsc]", "[nsce ]" => "[nsce]", "[nsim ]" => "[nsim]", "[nsime ]" => "[nsime]", "[nsmid ]" => "[nsmid]", "[nspar ]" => "[nspar]", "[nsub ]" => "[nsub]", "[nsube ]" => "[nsube]", "[nsubE ]" => "[nsubE]", "[nsup ]" => "[nsup]", "[nsupE ]" => "[nsupE]", "[nsupe ]" => "[nsupe]", "[nvdash]" => "[nvdash]", "[nvDash]" => "[nvDash]", "[nVDash]" => "[nVDash]", "[nVdash]" => "[nVdash]", "[prnap ]" => "[prnap]", "[prnE ]" => "[prnE]", "[prnsim]" => "[prnsim]", "[scnap ]" => "[scnap]", "[scnE ]" => "[scnE]", "[scnsim]" => "[scnsim]", "[subne ]" => "[subne]", "[subnE ]" => "[subnE]", "[supne ]" => "[supne]", "[supnE ]" => "[supnE]", "[vsubnE]" => "[vsubnE]", "[vsubne]" => "[vsubne]", "[vsupne]" => "[vsupne]", "[vsupnE]" => "[vsupnE]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Arrow Relations//EN "[cularr]" => "[cularr]", "[curarr]" => "[curarr]", "[dArr ]" => "[dArr]", "[darr2 ]" => "[darr2]", "[dharl ]" => "[dharl]", "[dharr ]" => "[dharr]", "[lAarr ]" => "[lAarr]", "[Larr ]" => "[Larr]", "[larr2 ]" => "[larr2]", "[larrhk]" => "[larrhk]", "[larrlp]" => "[larrlp]", "[larrtl]" => "[larrtl]", "[lhard ]" => "[lhard]", "[lharu ]" => "[lharu]", "[hArr ]" => "[hArr]", "[harr ]" => "[harr]", "[lrarr2]" => "[lrarr2]", "[rlarr2]" => "[rlarr2]", "[harrw ]" => "[harrw]", "[rlhar2]" => "[rlhar2]", "[lrhar2]" => "[lrhar2]", "[lsh ]" => "[lsh]", "[map ]" => "[map]", "[mumap ]" => "[mumap]", "[nearr ]" => "[nearr]", "[nlArr ]" => "[nlArr]", "[nlarr ]" => "[nlarr]", "[nhArr ]" => "[nhArr]", "[nharr ]" => "[nharr]", "[nrarr ]" => "[nrarr]", "[nrArr ]" => "[nrArr]", "[nwarr ]" => "[nwarr]", "[olarr ]" => "[olarr]", "[orarr ]" => "[orarr]", "[rAarr ]" => "[rAarr]", "[Rarr ]" => "[Rarr]", "[rarr2 ]" => "[rarr2]", "[rarrhk]" => "[rarrhk]", "[rarrlp]" => "[rarrlp]", "[rarrtl]" => "[rarrtl]", "[rarrw ]" => "[rarrw]", "[rhard ]" => "[rhard]", "[rharu ]" => "[rharu]", "[rsh ]" => "[rsh]", "[drarr ]" => "[drarr]", "[dlarr ]" => "[dlarr]", "[uArr ]" => "[uArr]", "[uarr2 ]" => "[uarr2]", "[vArr ]" => "[vArr]", "[varr ]" => "[varr]", "[uharl ]" => "[uharl]", "[uharr ]" => "[uharr]", "[xlArr ]" => "[xlArr]", "[xhArr ]" => "[xhArr]", "[xharr ]" => "[xharr]", "[xrArr ]" => "[xrArr]", ## ISO 8879:1986//ENTITIES Added Math Symbols: Delimiters//EN "[rceil ]" => "[rceil]", "[rfloor]" => "[rfloor]", "[rpargt]" => "[rpargt]", "[urcorn]" => "[urcorn]", "[drcorn]" => "[drcorn]", "[lceil ]" => "[lceil]", "[lfloor]" => "[lfloor]", "[lpargt]" => "[lpargt]", "[ulcorn]" => "[ulcorn]", "[dlcorn]" => "[dlcorn]", ); ## ---------------------------------------------------------------------- ## don't forget this 1; ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/lib/Map/Alias.pm0000664000175000017500000000230611655740662017537 0ustar osamuosamu## -*- perl -*- ## ---------------------------------------------------------------------- ## DebianDoc_SGML/Map/Alias.pm: output format data map alias map ## ---------------------------------------------------------------------- ## Copyright (C) 2000-2004 Ardo van Rangelrooij ## ## This is free software; see the GNU General Public Licence ## version 2 or later for copying conditions. There is NO warranty. ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- ## package interface definition package DebianDoc_SGML::Map::Alias; use strict; use vars qw( @ISA @EXPORT ); use Exporter; @ISA = qw( Exporter ); @EXPORT = qw( %map_aliases ); ## ---------------------------------------------------------------------- ## map alias definitions use vars qw( %map_aliases ); %map_aliases = ( 'html' => 'HTML', 'latex' => 'LaTeX', 'texinfo' => 'Texinfo', 'text' => 'Text', 'wiki' => 'Wiki', 'textov' => 'TextOV', 'dbk' => 'XML', ); ## ---------------------------------------------------------------------- ## don't forget this 1; ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/bin/0000775000175000017500000000000011655740662015434 5ustar osamuosamudebiandoc-sgml-1.2.28/tools/bin/saspconvert0000775000175000017500000001654311655740662017742 0ustar osamuosamu#!/usr/bin/perl ## ---------------------------------------------------------------------- ## bin/saspconvert : ## ---------------------------------------------------------------------- ## Copyright (C) 1998-2004 Ardo van Rangelrooij ## Copyright (C) 1996 Ian Jackson ## ## This is free software; see the GNU General Public Licence ## version 2 or later for copying conditions. There is NO warranty. ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- @data = <>; $toclocation = -1; $cifile = ''; $ciline = 0; ## ---------------------------------------------------------------------- for ( $i = 0; $i <= $#data; $i++ ) { ## ------------------------------------------------------------------ $_ = $data[$i]; ## ------------------------------------------------------------------ if ( m/^L(\d+)$/ ) { $ciline = $1; $cilinefile = "L$ciline $cifile\n" if $cifile ne ''; } elsif ( m/^L(\d+) (.*)\n$/ ) { $ciline = $1; $cifile = $2; $cilinefile = $_; } ## ------------------------------------------------------------------ $srclinefile[$i] = "$cifile:$ciline" if $ciline > 0; ## ------------------------------------------------------------------ if ( m/^A(\S+) (.*)\n$/ ) { $attribcollect{$1} = $2; } elsif ( m/^\(/ ) { %attrib = %attribcollect; undef %attribcollect; } ## ------------------------------------------------------------------ if ( m/^\(CHAPT$/ ) { $level = 'CHAPT'; $num{'CHAPT'}++; $num{'SECT0'} = 0; $sectionstring = ''; &getid('ch'); $chaptsysrefid = $sysrefid; $chaptsectattribs = ( "ASRID CDATA $sysrefid\n" . "ACHAPT CDATA $num{'CHAPT'}\n" . "ACSRID CDATA $chaptsysrefid\n" . "ASECT IMPLIED\n" . "AHNAME CDATA chapter $num{'CHAPT'}\n" ); $insert[$i] .= $chaptsectattribs; } elsif ( m/^\(APPENDIX$/ ) { $level = 'CHAPT'; ( $num{'CHAPT'} =~ m/[0-9]$/ ) ? $num{'CHAPT'} = 'A' : $num{'CHAPT'}++; $num{'SECT0'} = 0; $sectionstring = ''; &getid('ap'); $chaptsysrefid = $sysrefid; $chaptsectattribs = ( "ASRID CDATA $sysrefid\n" . "ACHAPT CDATA $num{'CHAPT'}\n" . "ACSRID CDATA $chaptsysrefid\n" . "ASECT IMPLIED\n" . "AHNAME CDATA appendix $num{'CHAPT'}\n" ); $insert[$i] .= $chaptsectattribs; } elsif ( m/^\((SECT(\d*))$/ ) { $level = $1; $sl = $2 + 0; $num{"SECT$sl"}++; $num{"SECT". ( $sl + 1 )} = 0; $sectionstring = ''; grep( $sectionstring .= '.' . $num{"SECT$_"}, 0..$sl ); &getid( 's' ); $chaptsectattribs = ( "ASRID CDATA $sysrefid\n" . "ACHAPT CDATA $num{'CHAPT'}\n" . "ACSRID CDATA $chaptsysrefid\n" . "ASECT CDATA $sectionstring\n" . "AHNAME CDATA " . ( $sl < 3 ? ( 'sub' x $sl ) . 'section' : 'sub' x ( $sl - 3 ) . 'paragraph' ) . " $num{'CHAPT'}$sectionstring\n" ); $insert[$i] .= $chaptsectattribs; } elsif ( m/^\(HEADING$/ ) { $thisheadattribs = ( "ALEVEL CDATA $level\n" . $chaptsectattribs ); $thisheaddata = $cilinefile; $inheading = 1; $insert[$i] .= $chaptsectattribs; } elsif ( m/^\)HEADING$/ ) { $tocdata .= ( $thisheadattribs . "(TOCENTRY\n" . $thisheaddata . ")TOCENTRY\n" ); if ( length( $userrefid ) ) { $urid2attribs{$userrefid} = $thisheadattribs; $urid2data{$userrefid} = $thisheaddata; } $inheading = 0; } elsif ( m/^\(TOC$/ ) { $toclocation = $i; } elsif ( m/^\)TOC$/ ) { $append[$i] .= $cilinefile; } elsif ( m/^\)TITLEPAG$/ ) { $append[$i] .= $cilinefile; } elsif ( m/^\(REF$/ ) { $attrib{'ID'} =~ m/^CDATA / || &error( $i, "no CDATA for ID REF" ); $refline2urid{$i} = $'; } elsif ( m/^\(QREF$/ ) { $attrib{'ID'} =~ m/^CDATA / || &error( $i, "no CDATA for ID REF" ); $qrefline2urid{$i} = $'; } elsif ( m/^\(ABSTRACT$/ ) { $append[$i] .= "(P\n"; } elsif ( m/^\)ABSTRACT$/ ) { $insert[$i] .= ")P\n"; } elsif ( m/^\(TAG$/ ) { $has_tag = 1; } elsif ( m/^\(ITEM$/ ) { if ( ! $has_tag ) { $insert[$i] .= "(TAG\n)TAG\n"; } $has_tag = 0; } elsif ( $inheading ) { $thisheaddata .= $data[$i]; } } ## ---------------------------------------------------------------------- for $i ( keys %refline2urid ) { $userrefid = $refline2urid{$i}; defined( $urid2attribs{$userrefid} ) || &error( "identifier \`$userrefid' is undefined", $i ); $insert[$i] .= $urid2attribs{$userrefid}; $append[$i] .= $urid2data{$userrefid}; } ## ---------------------------------------------------------------------- for $i ( keys %qrefline2urid ) { $userrefid = $qrefline2urid{$i}; defined( $urid2attribs{$userrefid} ) || &error( "identifier \`$userrefid' is undefined", $i ); $insert[$i] .= $urid2attribs{$userrefid}; } ## ---------------------------------------------------------------------- $append[$toclocation] .= $tocdata if $toclocation >= 0; ## ---------------------------------------------------------------------- for ( $i = 0; $i <= $#data; $i++ ) { print( $insert[$i], $data[$i], $append[$i] ) || die $!; } ## ---------------------------------------------------------------------- close( STDOUT ) || die $!; ## ---------------------------------------------------------------------- exit( $errors ? 1 : 0 ); ## ---------------------------------------------------------------------- sub usage { ## ------------------------------------------------------------------ print STDERR "$_[0]\n\n" if length( $_[0] ); print STDERR "usage: saspconvert [ ...]"; exit( 3 ); } ## usage ## ---------------------------------------------------------------------- sub error { ## ------------------------------------------------------------------ my ( $m,$l ) = @_; ## ------------------------------------------------------------------ my $emsg = "saspconvert: "; $emsg .= "$srclinefile[$l] " if length( $srclinefile[$l] ); $emsg .= "(input line $l): $m"; print( STDERR "$emsg\n" ) || die $!; $errors++; if ( $errors >= 20 ) { print( STDERR "saspconvert: too many errors, stopping\n" ); exit( 2 ); } } ## error ## ---------------------------------------------------------------------- sub getid { ## ------------------------------------------------------------------ if ( $attrib{'ID'} =~ m/^CDATA / ) { $userrefid = "$'"; $sysrefid = $_[0] . '-' . $userrefid; if ( defined( $defpos{$userrefid} ) ) { &error( "indentifier $userrefid is defined more than once", $i ); &error( "indentifier $userrefid originally defined here", $defpos{$userrefid} ) if length( $defpos{$userrefid} ); $defpos{$userrefid} = ''; } else { $defpos{$userrefid} = $i; } } else { $userrefid = ''; $sysrefid = $_[0] . $num{'CHAPT'} . $sectionstring; } } ## getid ## ---------------------------------------------------------------------- debiandoc-sgml-1.2.28/tools/bin/mkconversions0000775000175000017500000000314011655740662020260 0ustar osamuosamu#!/bin/sh ## ---------------------------------------------------------------------- ## bin/mkconversion : ## ---------------------------------------------------------------------- ## Make "debiandoc2${format}" commands from "template" ## Each selective section of "template" are marked with list of formats: ## @@@start-html-text-latex-active@@@ ## ... ## @@@end-html-text-latex-active@@@ ## No nesting of these pair are allowed. ## ---------------------------------------------------------------------- set -e ## ---------------------------------------------------------------------- perldir=${1} helperdir=${2} ## ---------------------------------------------------------------------- ## List of "$format" and "$ext" value combination exec << ENDOFDATA text txt wiki wiki textov tov html html info info texinfo texinfo latex tex latexdvi dvi latexps ps latexpdf pdf dbk dbk ENDOFDATA ## "$format" dvi, ps, pdf will be generated by the symlink ## ---------------------------------------------------------------------- while read format ext do if [ "${format}" = "" ]; then continue; fi sed -e " s:@@@perldir@@@:${perldir}:g; s:@@@helperdir@@@:${helperdir}:g; s:@@@format@@@:${format}:g; s:@@@ext@@@:${ext}:g; s:^@@@start.*-${format}-.*active@@@:@@@lineelide@@@:g; s:^@@@end.*-${format}-.*active@@@:@@@lineelide@@@:g; s:^@@@start.*active@@@:@@@startelide@@@:g; s:^@@@end.*active@@@:@@@endelide@@@:g; /@@@lineelide@@@/d; /@@@startelide@@@/,/@@@endelide@@@/d; "