--- discover-2.1.2.orig/aclibs +++ discover-2.1.2/aclibs @@ -0,0 +1,7 @@ +# $Progeny$ + +buildtools/check.m4 +buildtools/config-script.m4 +buildtools/libtool.m4 +buildtools/show-config.m4 +portability/replace-funcs.m4 --- discover-2.1.2.orig/debian/rules +++ discover-2.1.2/debian/rules @@ -0,0 +1,147 @@ +#!/usr/bin/make -f + +# $Progeny$ + +# Copyright 2002 Hewlett-Packard Company +# Copyright 2000, 2001, 2002, 2004 Progeny Linux Systems, Inc. +# +# Permission is hereby granted, free of charge, to any person obtaining a +# copy of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +# THE COPYRIGHT HOLDER(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +# DEALINGS IN THE SOFTWARE. + +VERSION=$(shell dpkg-parsechangelog | grep ^Version: | cut -d ' ' -f 2) +ARCH=$(shell dpkg --print-architecture) + +# if $DEB_BUILD_OPTIONS *doesn't* contain "noopt" +ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) +OPTIMIZE:=-O2 +endif + +# Figure out where the kernel PCMCIA headers are, searching the +# directories in order of modification time (most recent +# first). +#PCMCIA_HEADERS:=$(shell \ +# for KDIR in $$(ls -dt /usr/src/kernel* /usr/src/linux* 2>/dev/null); \ +# do \ +# if [ -d $$KDIR ]; then \ +# for HFILE in $$(find $$KDIR -name version.h); do \ +# if expr "$$HFILE" : ".*/pcmcia/version\.h" > \ +# /dev/null 2>&1; then \ +# echo "$${HFILE%/pcmcia/version.h}"; \ +# break 2; \ +# fi \ +# done \ +# fi \ +# done) +# if we found some, pass them to configure + +ifneq ($(PCMCIA_HEADERS),) +CONFIGURE_PCMCIA:=--with-pcmcia-headers=$(PCMCIA_HEADERS) +endif + +CFLAGS_DEB=CFLAGS="-g $(OPTIMIZE)" +RUN_CONFIGURE= ../configure $(CONFIGURE_PCMCIA) \ + --prefix=/usr \ + --sbindir=/sbin \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=\$${prefix}/share/man \ + --infodir=\$${prefix}/share/info \ + --with-default-url=file:///lib/discover/list.xml \ + --disable-curl + +configure: configure-deb + +configure-deb: configure-deb-stamp +configure-deb-stamp: + dh_testdir + + mkdir builddeb + cd builddeb && $(CFLAGS_DEB) $(RUN_CONFIGURE) + + touch $@ + +build: build-deb + +build-deb: configure-deb-stamp build-deb-stamp +build-deb-stamp: + dh_testdir + + cd builddeb && $(MAKE) + + touch $@ + +clean: + dh_testdir + dh_testroot + + rm -rf builddeb build-deb-stamp configure-deb-stamp config.log config.status + + debconf-updatepo + + debconf-updatepo + dh_clean + +install: install-deb + +install-deb: build-deb + dh_testdir + dh_testroot + dh_installdirs -v + + cd builddeb && $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp + + # reportbug helper script + install -d debian/tmp/usr/share/bug/discover + install -m 755 debian/discover.bug debian/tmp/usr/share/bug/discover + + rm $(CURDIR)/debian/tmp/usr/bin/discover-static + mv $(CURDIR)/debian/tmp/usr/bin/discover \ + $(CURDIR)/debian/tmp/sbin/discover + + rm -f $(CURDIR)/debian/tmp/etc/discover.conf.example + rm -f $(CURDIR)/debian/tmp/etc/discover-modprobe.conf.example + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: discover-deb + +discover-deb: install-deb + dh_testdir + dh_testroot + dh_movefiles + + dh_installdocs + dh_installchangelogs +# XXX: dh_installinit appears to be busted :-P (see Debian #140881) +# dh_installinit -v --no-restart-on-upgrade --update-rcd-params="start 36 S ." + dh_compress + dh_fixperms + dh_strip + dh_makeshlibs + dh_installdebconf + dh_installdeb + dh_shlibdeps -ldebian/libdiscover2/usr/lib + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-arch +.PHONY: build clean binary-arch binary install configure --- discover-2.1.2.orig/debian/control +++ discover-2.1.2/debian/control @@ -0,0 +1,40 @@ +Source: discover +Section: admin +Priority: optional +Maintainer: Debian Install System Team +Uploaders: David Nusinow , Gaudenz Steinlin , Petter Reinholdtsen , Otavio Salvador +Build-Depends: debhelper (> 4.1.16), libexpat1-dev, po-debconf +Standards-Version: 3.8.0 + +Package: discover +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, libdiscover2 (= ${binary:Version}) +Suggests: lsb-base +Conflicts: discover1 (<< 2.0) +Description: hardware identification system + Discover is a hardware identification system based on the libdiscover2 + library. Discover provides a flexible interface that programs can + use to report a wide range of information about the hardware that is + installed on a Linux system. In addition to reporting information, + Discover includes support for doing hardware detection at boot time. + +Package: libdiscover2 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, discover-data (>> 2.2004.04) +Conflicts: discover (<< 2.0), discover1 (<< 2.0), libdiscover1 (<< 2.0) +Description: hardware identification library + libdiscover is a library enabling identification of various PCI, + PCMCIA, and USB devices. + +Package: libdiscover-dev +Section: libdevel +Architecture: any +Depends: ${misc:Depends}, libdiscover2 (= ${binary:Version}), libexpat1-dev +Description: hardware identification library development files + libdiscover is a library enabling identification of various PCI, + PCMCIA, and USB devices. + . + This package contains the header files and static libraries needed for + development. + --- discover-2.1.2.orig/debian/discover.preinst +++ discover-2.1.2/debian/discover.preinst @@ -0,0 +1,31 @@ +#!/bin/sh + +# Remove a no-longer used conffile +rm_conffile() { + PKGNAME="$1" + CONFFILE="$2" + + if [ -e "$CONFFILE" ]; then + md5sum="`md5sum \"$CONFFILE\" | sed -e \"s/ .*//\"`" + old_md5sum="`dpkg-query -W -f='${Conffiles}' $PKGNAME | sed -n -e \"\\\\' $CONFFILE'{s/ obsolete$//;s/.* //p}\"`" + if [ "$md5sum" != "$old_md5sum" ]; then + echo "Obsolete conffile $CONFFILE has been modified by you." + echo "Saving as $CONFFILE.dpkg-bak ..." + mv -f "$CONFFILE" "$CONFFILE".dpkg-bak + else + echo "Removing obsolete conffile $CONFFILE ..." + rm -f "$CONFFILE" + fi + fi +} + +case "$1" in +install|upgrade) + if dpkg --compare-versions "$2" le "2.1.2-3"; then + # Hm, is this the right way to remove a conffile in an obsolete package? + rm_conffile discover1 "/etc/init.d/discover" + rm_conffile discover "/etc/init.d/discover" + fi +esac + +#DEBHELPER# --- discover-2.1.2.orig/debian/libdiscover2.docs +++ discover-2.1.2/debian/libdiscover2.docs @@ -0,0 +1,3 @@ +AUTHORS +README +RELEASE --- discover-2.1.2.orig/debian/discover.files +++ discover-2.1.2/debian/discover.files @@ -0,0 +1,11 @@ +etc/discover-modprobe.conf +sbin/discover +sbin/discover-modprobe +sbin/discover-pkginstall +usr/bin/discover-config +usr/share/discover/init-discover +usr/share/man/man1/discover-config.1 +usr/share/man/man1/discover.1 +usr/share/man/man5/discover-modprobe.conf.5 +usr/share/man/man8/discover-modprobe.8 +usr/share/man/man8/discover-pkginstall.8 --- discover-2.1.2.orig/debian/libdiscover2.shlibs +++ discover-2.1.2/debian/libdiscover2.shlibs @@ -0,0 +1 @@ +libdiscover 2 libdiscover2 (>= 2.0.7) --- discover-2.1.2.orig/debian/changelog +++ discover-2.1.2/debian/changelog @@ -0,0 +1,1291 @@ +discover (2.1.2-5build1) natty; urgency=low + + * No-change rebuild to pick up multiarch .la files. + + -- Artur Rona Tue, 05 Apr 2011 22:13:28 +0200 + +discover (2.1.2-5) unstable; urgency=low + + [ Petter Reinholdtsen ] + * Add code in discover-pkginstall to not enable the tasksel progress + bar if $DI_PROGRESS_BAR_VISIBLE is set, to avoid messing up the + progress bar for pkgsel (Closes: 603021). Patch from Joey Hess. + + * Debconf translations: + - Added Danish by Joe Hansen (Closes: #592272). + + -- Petter Reinholdtsen Sun, 05 Dec 2010 13:43:14 +0100 + +discover (2.1.2-4) unstable; urgency=low + + [ Petter Reinholdtsen ] + * Use debconf-apt-progress in discover-pkginstall if available, to + get a progress bar when installing packages within d-i. + * Drop obsolete packages libdiscover1-dev and discover1. + * Change /sbin/discover to the dynamically linked version, as it + is no longer used from the initrd. + + -- Petter Reinholdtsen Fri, 16 Apr 2010 00:14:21 +0200 + +discover (2.1.2-3) unstable; urgency=low + + [ Petter Reinholdtsen ] + * Time to drop discover1 and migrate to discover v2. Provide + transitional packages discover1 and libdiscover1-dev depending on + the equivalent v2 packages. Copy the list of maintainers and + uploaders from the discover1 package. + * Update prerm and postinst to try harder to get rid of the init.d + scripts of discover and discover1. + * Only call module-assistant in discover-pkginstall if it is + installed (Closes: #464971). + * Improve usage information in discover-pkginstall to explain + the available options. Add manual page for discover-pkginstall. + * Include in sysdeps/linux/ata.c to find free(). + * Updated Standards-Version from 3.7.2 to 3.8.0, no changes needed. + * Replace ${Source-Version} with ${binary:Version} as proposed by lintian. + * Remove generated config.log, config.status in clean target. + * Convert debian/copyright to UTF-8. + + * Debconf translations: + - Add Norwegian Bokmal again. + - Finnish. Closes: #472621 + - Brazilian Portuguese. Closes: #481510 + - Turkish. Closes: #487696 + - Vietnamese. Closes: #489404 + + -- Petter Reinholdtsen Thu, 10 Jul 2008 21:29:15 +0200 + +discover (2.1.2-2) unstable; urgency=low + + * Improve module-assistent call in discover-pkginstall based on + input from its maintainer. + * Change file descriptor used to pass info from sub-process from + 15 to 8, as dash fail to handle with two-digit file descriptors. + + -- Petter Reinholdtsen Wed, 8 Aug 2007 20:24:53 +0200 + +discover (2.1.2-1) unstable; urgency=low + + * Add support for building module-assistant source packages + in discover-pkginstall. + * Ask in discover-pkginstall which packages to install using medium + debconf priority. + * Fix problem when installing packages who uses debconf by moving + the debconf question about what to install into a subprocess. + * Remove some unused code and use the correct config file name. + * Change build rules to avoid .svn directories in the tarball. + * Increase version number to 2.1.2 and correct the mailing list address. + + -- Petter Reinholdtsen Mon, 6 Aug 2007 18:02:16 +0200 + +discover (2.1.1-3) unstable; urgency=low + + [ Petter Reinholdtsen ] + * Fix typo in discover-pkginstall. (Closes: #418133) + * Detect lenny in discover-pkginstall, and drop version check there. + + * Debconf translations: + - Persian. Sent directly by Abbas Esmaeeli Some'eh + - Add Japanese from Noritada Kobayashi. (Closes: #413000) + + -- Petter Reinholdtsen Thu, 21 Jun 2007 19:23:14 +0100 + +discover (2.1.1-2.1) unstable; urgency=low + + * Non-maintainer upload to fix pending debconf issues. + * Switch to po-debconf for debconf templates. Closes: #351381 + * Debconf translations + - French + - Galician. Closes: #411190 + - Portuguese. Closes: #411197 + - Tamil. Closes: #411213 + - Czech. Closes: #411222 + - Swedish. Closes: #411232 + - Dutch. Closes: #411233 + - Russian. Closes: #411236 + - German. Closes: #411279 + - Norwegian Bokmal. Closes: #411324 + - Spanish. Closes: #411353 + - Italian. Closes: #411376 + - Basque. Closes: #411458 + - Romanian. Closes: #411435 + - Italian. Closes: #411568 + + -- Christian Perrier Tue, 20 Feb 2007 08:36:43 +0100 + +discover (2.1.1-2) unstable; urgency=low + + [ Otavio Salvador ] + * Removed udeb package. + + [ Petter Reinholdtsen ] + * Improve template text for discover-pkginstall. (Closes: #385591) + * Correct the handling of several packages listed for one PCI device in + discover-pkginstall. + + -- Petter Reinholdtsen Fri, 13 Oct 2006 18:52:55 +0200 + +discover (2.1.1-1) unstable; urgency=low + + * Fix typo in init.d script. Make it available in + /usr/share/doc/discover/. + * Make sure to include the discover-pkginstall script in + the discover package. + * Use debconf to confirm the list of packages to install in + discover-pkginstall. + + -- Petter Reinholdtsen Thu, 31 Aug 2006 10:57:13 +0200 + +discover (2.1.0-1) unstable; urgency=low + + [ Otavio Salvador ] + * Remove the externals repositories. + * Add a fresh copy of buildtools, portability and doctools dated + 2005-07-16. + * Add debian/update-buildsystem to allow us to sync with Progeny build + system. + * Fix build problem installing the bug script since the directory wasn't + create at build time. + * Cleanup the package building a bit and fix the problem using dh_strip. + * Fix a compiler warning about signess with gcc-4.0. + * Applied patch from Jean Christophe André to fix + already loaded module detection. (Closes: #307125) + * Change place to store crashfile on /lib/discover/. (Closes: #306169) + + [ Petter Reinholdtsen ] + * Convert discover-modprobe (called from init.d script) to use Linux + Software Base functions when present. Add suggest on lsb-base. + * Add support for vendor default entries, to make it possible to + return 'ati' and 'nv' drivers for unrecognized ATI and nVidia + cards. This includes a change to the DTD. Patch from Daniel + Stone and ubuntu. + * Include reportbug helper script to get useful info in bug reports. + + [ Jeff Licquia ] + * Add a mechanism for the sysdeps to pass information back to + discover, and make that information available for query under + the "device" data node. + + [ Petter Reinholdtsen ] + * Take over this package from QA. + * Add discover-aptinstall, installing hardware related + debian packages. (Closes: #382454) + * Do not install init.d script, and remove traces of it if present. + It is no longer useful as udev do a much better job based on the + /lib/modules/*/modules.* files provided by the kernel. + This make the boot order irrelevant. (Closes: #310944, #369598, #363025) + * Add LSB info to the init.d script in the source directory, for those + interested in using it. (Closes: #335322) + * Update Standards-Version from 3.6.2to 3.7.2. No changes needed. + * Remove directory /var/state/discover/ if it exist. It haven't + been used since version 1.2-1. (Closes: #304923) + * Teach discover-modprobe to handle modules with names which + are a substring of other module names. Patch from Branden Robinson. + (Closes: #300906) + * Remove vim instructions at the end of debian/changelog to keep lintian + happy. + * Update to use debhelper 4. Add ${misc:Depends} to depends lines. + * Remove all traces of the obsolete cdrom question. (Closes: #351381) + + -- Petter Reinholdtsen Fri, 11 Aug 2006 22:21:55 +0200 + +discover (2.0.7-3) unstable; urgency=low + + * QA upload. + * NMU ACK. Closes: #305042. Thanks to Jeroen and David, see below. + * sysdeps/stub/stubs.c: Fix FTBFS on GNU/kFreeBSD (and any system using + sysdep/stubs/). Closes: #364863. Patch by Robert Millan + , thanks. + * doc/discover-modprobe.8, debian/discover.postrm: Removed "/usr/local" from + paths in man page, and added removal of /var/lib/discover in postrm. + Closes: #328497. Thanks to Lars Wirzenius . + * debian/discover.postinst: Enter invoke-rc.d. Closes: #367739. + * doc/device-types.xml, doc/discover.1, doc/guide.html, doc/guide.txt: Fixed + typo. Closes: #311442. + * debian/rules: Fixed debian-rules-missing-required-target binary-indep. + * debian/changelog: Fixed syntax-error-in-debian-changelog. + + -- Bart Martens Sat, 29 Jul 2006 12:36:08 +0200 + +discover (2.0.7-2.1) unstable; urgency=medium + + * NMU + * Have discover-modprobe use mkdir -p, in stead of install -d, because /usr + might not yet be available. Thanks David Everly for + noticing. (Closes: #305042) + + -- Jeroen van Wolffelaar Sun, 24 Apr 2005 14:54:07 +0200 + +discover (2.0.7-2) unstable; urgency=low + + * Make discover depend on libdiscover2; we don't need it for the + shared library, but we do need the surrounding infrastructure. + Closes: #294121. + + -- Jeff Licquia Sun, 13 Feb 2005 10:40:39 -0500 + +discover (2.0.7-1) unstable; urgency=low + + * Apply patches from Rafael Avila de Espindola (rafael.espindola + at gmail dot com) to fix some memory leaks. + * Inspired by Rafael: handle /proc more safely in Linux ATA sysdeps. + * Inspired by Rafael: check that we could open the configuration + directory, and close it when we're done. + * Apply include file fixes to the test suite. + * Disable curl support in the Debian packages. Closes: #279462. + * Purge -o from tests and use grep -E instead of egrep. + Closes: #258314. + * Fix wrong paths in documentation. Closes: #273205. + * Fix discover-config documentation to match the utility + (actually a fix to buildtools). Closes: #247546. + * Include string.h in sysdeps/linux/ata.c, so we don't get + weird pointer arithmetic going. + * Make sure that our device ordering matches whether we read + PCI device info from /proc or /sys. Closes: #286552. + * Trimmed unneeded Build-Depends. + * Fix package build issues with static linking and stripping + of binaries. + * Make discover-static /sbin/discover, and get rid of the + dynamically-linked /usr/bin/discover. Closes: #287189. + * Update the documentation. + + -- Jeff Licquia Sun, 6 Feb 2005 15:14:22 -0500 + +discover (2.0.6-3) unstable; urgency=low + + * Do not modify /etc/discover-modprobe.conf with data migrated from + version 1; instead, simply preserve the old v1 configuration. This + may cause problems for people who had set discover v1 to skip modules, + but the solution violates Debian policy. Users are encouraged to + migrate their discover v1 configuration by hand. Closes: #283070. + * Make the /usr/lib/libdiscover.so link absolute instead of relative. + * Revert to libcurl2, since libcurl3 seems to be in poor shape. + Closes: #283064, #283969. + * Add changelog information from discover 1. Closes: #249968. + + -- Jeff Licquia Tue, 7 Dec 2004 11:42:39 -0500 + +discover (2.0.6-2) unstable; urgency=low + + * Change the default setting for "types" in discover-modprobe.conf + to "all" (from ""). Closes: #282983. + * Replace uniq in discover-modprobe with some clever shell, since + uniq is also in /usr/bin. Closes: #247423. + + -- Jeff Licquia Mon, 29 Nov 2004 23:06:17 -0500 + +discover (2.0.6-1) unstable; urgency=low + + * Ian Murdock : + + * Call update-rc.d remove in postrm on purge, not remove. + Closes: #252634. + + * Use /var/lib for crash data rather than /var/state, as per FHS. + Closes: #273205. + + * Allow data query operations (i.e., --data-path and + --data-version) even when the device type is not specified. + This mirrors the default behavior of Discover in version 1 and + is consistent with the results of invoking Discover without + any arguments (which displays a summary of all device detected). + + * discover-modprobe.conf: Specify the empty string for types, so the + default behavior is to report on all detected hardware. + + * Allow data query operations (i.e., --data-path and + --data-version) to take a device ID (that is, a vendor ID and a + model ID concatenated together, e.g., "0x05af080a") in addition to a + device type. This is in preparation for adding hotplug support. + + * sysdeps/linux/pci.c: Convert device class to little-endian + byte order on big-endian architectures. Patch + from Rafael Espíndola . + Closes: #255868. + + * Jeff Licquia : + + * Instead of a single discover.conf, move to use a discover.conf.d + directory with multiple configuration files. This allows other + packages to change discover's configuration, and eliminates the + problem with /etc/discover.conf changing formats. + Closes: #256473. + + * Add a new configuration attribute to the data-source element in + configuration files: "place". If set to "before", the data in + the source is prepended instead of appended, making it override + the default data. + + * Build-Dep on libcurl3-dev as the default curl. Closes: #260205. + + -- Jeff Licquia Fri, 19 Nov 2004 15:52:22 -0500 + +discover (2.0.5-1) unstable; urgency=low + + * New version. + * Set some sane defaults if discover-config isn't available to + discover-modprobe yet. Closes: #246046. + * Use sed instead of cut to isolate the information we need from + /proc/modules. Closes: #247423. + * Change the include files to include instead + of just . Closes: #246045. + * Re-enable ATA sysdeps for Linux. This resolves half of bug + 242749. + * For PCI Linux sysdeps, prefer /sys information to /proc if + available. + + -- Jeff Licquia Mon, 17 May 2004 02:30:10 -0500 + +discover (2.0.4-5) unstable; urgency=low + + * The busclass change read too much PCI data, and with some devices + where this data was not defined, this would cause the box to crash. + A patch from David Price fixed this. + Closes: #246029. + + -- Jeff Licquia Thu, 6 May 2004 10:27:53 -0500 + +discover (2.0.4-4) unstable; urgency=low + + * device.xml (create_device): Make "busclass" attribute optional. + + -- Ian Murdock Fri, 30 Apr 2004 14:09:18 -0500 + +discover (2.0.4-3) unstable; urgency=low + + * Make sure /bin is a directory when installing the udeb discover. + Closes: #243972. + + -- Jeff Licquia Fri, 16 Apr 2004 10:52:46 -0500 + +discover (2.0.4-2) unstable; urgency=low + + * Rebuilt using the proper buildtools branch, which somehow got + reverted in our build. Closes: #239864. + + -- Jeff Licquia Wed, 14 Apr 2004 10:38:44 -0500 + +discover (2.0.4-1) unstable; urgency=low + + * New upstream version. + * Move discover to /bin and libdiscover.so.* to /lib, so we don't + depend on /usr being mounted. Closes: #240922. + * Use system-provided busclass information (extracted from /proc) + to override discover-data-provided busclass information. + + -- Jeff Licquia Mon, 5 Apr 2004 01:25:36 -0500 + +discover (2.0.3-6) unstable; urgency=low + + * Use a branch of buildtools with fixes for MIPS builds. + Closes: #239864. + + -- Jeff Licquia Wed, 31 Mar 2004 16:19:08 -0500 + +discover (2.0.3-5) unstable; urgency=low + + * Fix discover-modprobe so it can detect modules on both 2.4 and 2.6 + kernels. Closes: #240363. + * Check whether a numeric busclass ID is in our database, and exit + rather than segfault if not. Closes: #239719. + + -- Jeff Licquia Wed, 31 Mar 2004 10:57:52 -0500 + +discover (2.0.3-4) unstable; urgency=low + + * The udeb shouldn't Confict: and Provide: itself. Closes: #239775. + * The udeb should Provide: discover. Affects bug 239725 filed against + discover1-udeb. + * Updated buildtools autoconfage. Closes: #239864. + + -- Jeff Licquia Thu, 25 Mar 2004 16:10:33 -0500 + +discover (2.0.3-3) unstable; urgency=low + + * Rename udeb to discover-udeb, per newly hashed out naming scheme. + * Also make udeb depend on discover-data-udeb, per naming scheme. + * Upload to unstable. + + -- Jeff Licquia Tue, 23 Mar 2004 09:39:11 -0500 + +discover (2.0.3-2) experimental; urgency=low + + * Set priority on discover2-udeb to extra. + * Upload discover 2.0.3 to experimental. + + -- Jeff Licquia Tue, 16 Mar 2004 15:26:38 -0500 + +discover (2.0.3-1) unstable; urgency=low + + * Discover 2.0.3 released. + + * Copied the PCMCIA headers back into sysdeps/linux/pcmcia + (from kernel-headers-2.6.0-1). Adjusted configure.ac to use the + default headers unless the --with-pcmcia-headers flag is + specified. + + * debian/control + Applied patch from Gaudenz Steinlin : + - remove unneeded libdiscover2-pic + - rename discover-udeb to discover2-udeb + - change maintainer to discover-workers + - some minor changes to the package descriptions + - priority of discover2-udeb should be optional until it is the standard + - removed unneeded Replaces + - versioned depend on discover-data (>= 2.0) + + * debian/discover2-udeb.dirs + Renamed from discover-udeb.dirs. + + * debian/libdiscover2.files + * debian/libdiscover-dev.files + Added headers to libdiscover-dev. Moved API documentation from + libdiscover2 to libdiscover2-dev. + + * debian/postinst + Applied patch from Gaudenz Steinlin : + - redirect output of update-rc.d to /dev/null as suggested by lintian + + * debian/rules + Applied patch from Gaudenz Steinlin : + - introduced the variable UPACKAGE which contains the name of the + udeb package + - build udeb with -Os + - separate the rule for building the udeb and deb packages to make + it easier to only build the udeb + + * etc/discover-modprobe.conf + Replace discover1 types with discover2 types. + + * lib/Makefile.in + Applied patch from Gaudenz Steinlin : + - install all header files in ${includedir}/discover + + * scripts/discover-modprobe + Applied patch from Gaudenz Steinlin : + - check for the existence of discover-modprobe + Added support for Linux 2.6 (recognize module extension .ko). + + * scripts/init + Applied patch from Gaudenz Steinlin : + - don't load modules that are already loaded + + -- Ian Murdock Mon, 23 Feb 2004 17:11:59 -0500 + +discover (2.0.2-1) unstable; urgency=low + + * Discover 2.0.2 released. + + -- Ian Murdock Fri, 30 Jan 2004 20:46:56 -0500 + +discover (2.0.2-0.0.0.4) unstable; urgency=low + + * The following changes are by Eric Gillespie . + + * discover/lib/load-url.c + (_discover_load_url_file): Fix url parsing. + + * discover/tests/device.c + (device_test_internals): Revert previous change. "Tiny editorial + corrections" broke this test. + + * discover/tests/data/pci-vendor.xml + Revert previous change, another editorial change that broke a test. + + * discover/discover/{didiscover.c,discover.c}, + discover/doc/GNUmakefile, + discover/tests/data/usb-vendor.xml + Last of the reversions. + + * discover/configure.ac + Put a comment back with the code it documented, which moved when curl + was made optional. + + * discover/lib/Makefile.in + Comment out the only libdiscover_pic.a references left uncommented. + Also nitpick a couple of the others. + + * discover/discover/discover.c + Remove extraneous newlines added to usage and help output in 1.51, + which fixed my line-spanning strings (older gcc versions ruined me!). + + * discover/configure.ac + I thought AC_PATH_TOOL honored tools set in the environment, but it + doesn't. Maybe it did in an older version of autoconf. At any rate, + explicitly look for tools in the environment before looking for them + with AC_PATH_TOOL. + + * discover/debian/control + whitespace police + + * discover/discover/discover.c + (query_data): Fix printing of extraneous newline when data is empty. + + * discover/discover/Makefile.in + discover/discover/didiscover.c + Remove didiscover.c. The effects of + didiscover --data-path --data-vendor + didiscover --data-path --data-model + are achieved with + discover -t --no-model + discover -t --no-vendor + + * discover/debian/rules + Configure and build discover twice: first a full build for the debs, + second a no-curl no-shared build for the udeb. + + * discover/lib/{load-url.c,curl.c} + curl.c: + Drop the dlopen stuff. Wrap the entire file in a HAVE_LIBCURL + conditional. + (_discover_curl_init): Remove. + (_discover_load_url_curl): Rename to _discover_load_url. + load-url.c: + Move to the top where it belongs. Wrap the entire file + in a !HAVE_LIBCURL conditional. + (_discover_load_url): Remove this function which called + _discover_load_url_curl or _discover_load_url_file; now we just + provide the same _discover_load_url in both curl and non-curl + versions. + (_discover_load_url_file): Rename to _discover_load_url. + + * discover/lib/Makefile.in + Remove GNUisms and put the curl files back into the build, now that + they properly handle the no-curl case. + + * The following changes are by Branden Robinson . + + * discover/discover-xml/discover-xml.c + (print_help): Fix yet another multiline string constant. + + * doc/discover.refentry + Add examples on how to extract vendor and model information by device + type. + + -- Branden Robinson Wed, 5 Nov 2003 16:33:21 -0500 + +discover (2.0.2-0.0.0.2) unstable; urgency=low + + * Added discover.conf to discover-udeb. + + -- Jeff Licquia Fri, 30 May 2003 10:41:32 -0500 + +discover (2.0.2-0.0.0.1) unstable; urgency=low + + * New upstream changes. + * Added libdiscover2-pic and discover-udeb package generation. + + -- Jeff Licquia Mon, 19 May 2003 16:51:03 -0500 + +discover (2.0.1-2) unstable; urgency=low + + * debian/rules: when configuring, define localstatedir as /var + + -- Branden Robinson Fri, 14 Feb 2003 12:28:59 -0500 + +discover (2.0.1-1) unstable; urgency=low + + * new upstream version + + -- Branden Robinson Mon, 3 Feb 2003 12:11:26 -0500 + +discover (1.5-3) unstable; urgency=low + + * Change section of libdiscover-dev to libdevel + * Include Danish debconf translation. Thanks Claus Hindsgaul and Denis + Barbier; Closes: #229074 + * Include Danish program translation. Closes: #237761 + * Add README.Debian documenting how to deal with 2.6 issues + * Add support for devicetype "isdn" to discover.c + * Change dependency from ash | dash to dash | ash; Closes: #237565 + * Update buildsystem for Chinese translation renaming + * Update buildsystem for new Japanese translation + * Translations + - Petter Reinholdtsen + - Updated Norwegian BokmÃ¥l debconf translation (no.po and nb.po). + - Bart cornelis + - Updated Dutch translation (nl.po) + - Carlos Z.F. Liu + - Updated Simplified Chinese debconf translation (zh_CN.po). Closes: #230372 + - Christian Perrier + - French program translation update (po/fr.po). Closes: #237372 + - Dennis Stampfer + - German debconf translation (debian.po/de.po). Closes: #237138 + - Andre Dahlqvist + - Swedish debconf translation. Closes: #237128 + - Eugeniy Meshcheryakov + - Ukrainian program and debconf translations. Closes: #236682 + - Andre Luis Lopes + - Brazilian program translation update (po/pt_BR.po). Closes: #237865 + - Nikolai Prokoschenko + - Russian program and debconf translation updates (po/ru.po, + debian/po/ru.po). Closes: #237880 + - Kenshi Muto + - Japanese program translation (po/ja.po). Closes: #237896 + - KÃ?â?¢stutis BiliÃ?«nas + - Lithuanian program update and debconf translation (po/lt.po, + debian/po/lt.po). Closes: #237706 + + -- David Nusinow Thu, 11 Mar 2004 02:25:26 -0500 + +discover (1.5-2) unstable; urgency=low + + * New maintainers, David Nusinow and Gaudenz Steinlin maintaining for + the Debian Installer Team + * discover-udeb now depends on discover-data-udeb; Closes: #188820 + * Typofix in update-initrd manpage; Closes: #218353 + * cdroms now symlinked in order; Closes: #182009 + * postinst now uses invoke-rc.d; Closes: #190731 + * Update standards version + - debian/rules: add CFLAGS export + * New Czech debconf translation. Thanks Miroslav Kure; Closes: #223942 + * New Japanese debconf translation. Thanks Kenshi Muto; + Closes: #224596 + * Don't "sort -u" modules. Print message if module is already loaded + instead; Closes: #224645 + * Now support 2.6 kernels. Thanks to all those who worked on this bug; + Closes: #223682, #204875 + * NMU ACK. Thanks to all involved; Closes: #169264, #209240, #211673 + Closes: #221302, #194901, #153656, #162747, #110461, #168858 + * Added debconf and updated main Finnish translation by Tommi Vainikainen + * Update Brazilian Portuguese debconf translation. Thanks Andre Luis Lopes; + Closes: #225145 + * Include new Dutch debconf translation. Thanks cobaco; Closes: #228300 + * Include new Greek translations for discover and debconf. Thanks + Konstantinos Margaritis; Closes: #226847 + + -- David Nusinow Sat, 13 Dec 2003 21:06:58 -0500 + +discover (1.5-1.4.3) unstable; urgency=low + + * NMU from the Minneapolis BSP. + * Added another test to init script to make sure we don't try to create + directories on /cdrom*. + * Fixed init script to not try to create /cdrom symlinks if /cdrom + is mounted. (Closes: #169264) + + -- Scott M. Dier Sat, 13 Dec 2003 13:32:52 -0600 + +discover (1.5-1.4.2) unstable; urgency=low + + * Non-maintainer upload, sponsored by Joey Hess. + * Use gettext for debconf templates. Closes: #209240 + * French debconf templates translation. Closes: #211673 + * Templates rewrite for debian-installer consistency + * Copied include/linux/pci.h and inclide/linux/pci_ids.h + from the 2.4.23 linux kernel sources into lib/linux. + Applied patch from Thomas Poindessous + This is a workaround for FTBFS problem. Closes: #221302 + + -- Christian Perrier Sat, 6 Dec 2003 07:49:02 +0100 + +discover (1.5-1.4.1) unstable; urgency=low + + * NMU, DebCamp BSP + * Patched discover.c to fix multiline problems with GCC 3.3 + Thanks Andreas Metzler for the patch (Closes: #194901) + + -- Alberto Gonzalez Iniesta Sun, 13 Jul 2003 21:00:45 +0200 + +discover (1.5-1.4) unstable; urgency=low + + * NMU with permission + * Put libdiscover* in /lib in the udeb, so it overwrites what's on the + boot medium. + + -- Tollef Fog Heen Tue, 12 Nov 2002 23:44:40 +0100 + +discover (1.5-1.3) unstable; urgency=low + + * NMU. Again. Silly me forgot to upload source as well when making + this a non-native package. + + -- Tollef Fog Heen Thu, 24 Oct 2002 11:59:49 +0200 + +discover (1.5-1.2) unstable; urgency=low + + * NMU with maintainer's permission + * Make the init script start even if a module fails to load. + (closes: #153656) + * Depend on ash | dash. (closes: #162747) + * Make this a non-native package again. + + -- Tollef Fog Heen Thu, 24 Oct 2002 02:07:29 +0200 + +discover (1.5-1.1) unstable; urgency=low + + * NMU + * Add udeb generation. (Closes: #110461) + + -- Tollef Fog Heen Mon, 9 Sep 2002 10:44:47 +0200 + +discover (1.5-1) unstable; urgency=low + + * new upstream version + * debian/discover.postinst: + - Stop redirecting the output of update-rc.d to /dev/null. + - Migrate people to the correct runlevel; just changing the + update-rc.d call in the postinst is insufficient. (Closes: #149256) + + -- Branden Robinson Tue, 11 Jun 2002 13:43:44 -0500 + +discover (1.4-1) unstable; urgency=low + + * new upstream version; recognize "disk" device type on the command line + (thanks, Oliver Kurth) (Closes: #149125) + * debian/control: fix error in libdiscover1-pic's extended description + + -- Branden Robinson Wed, 5 Jun 2002 11:11:41 -0500 + +discover (1.3.2-1) unstable; urgency=low + + * new upstream version; awk script inside init script reads from + /proc/mounts now, instead of standard input (Closes: #146519) + + -- Branden Robinson Fri, 24 May 2002 10:42:12 -0500 + +discover (1.3.1-1) unstable; urgency=low + + * new upstream version; fixes problem with vendor IDs from the list files + getting clobbered by a memset() + + -- Branden Robinson Thu, 23 May 2002 14:56:00 -0500 + +discover (1.3-1) unstable; urgency=low + + * new upstream version; among other changes: + + discover/discover.{8,c}: Applied patch from Mike Simons to support "a + way to get all possible devices detected at once, without typing the + complete list." (Closes: #146009) + + discover/discover.init: Don't permit failure to unmount the initrd or + free the ramdisk to be fatal errors. (Closes: #146519) + + discover/discover.init: Run the list of modules returned by discover + through "sort -u" so that we don't needlessly attempt to load the same + module multiple times. (Closes: #146256) + + discover/discover.init: Don't attempt to set up the (e.g.) /cdrom -> + /cdrom0 if /cdrom is already being used as a mount point according to + /proc/mounts. (Closes: #146266) + + lib/{ide.c,lst.c,pci.c,usb.c}: Fix unitialized variables and other + problems found with valgrind. Thanks to Petter Reinholdtsen for this + patch. (Closes: #147687) + + -- Branden Robinson Thu, 23 May 2002 13:56:49 -0500 + +discover (1.2-1) unstable; urgency=low + + * Development moved back to Progeny CVS; because of this and the now-useful + "upstream" ChangeLog, this is the last release where the Debian changelog + file will go into excruciating detail. Instead, the Debian changelog will + be used mostly for the bug auto-closing feature (an explanation will + accompany the auto-closed bugs, of course). + + * discover/ChangeLog: made this file useful with cvs2cl (Closes: #142046) + * discover/discover.8: add information about how to report unrecognized + hardware data to maintainers (Closes: #137522) + * discover/discover.init: + - load init script's configuration parameters from /etc/default/discover + if the file is readable + - only update /dev/cdrom* and corresponding mount points if + $MANAGE_CDROM_DEVICES is true (corresponds to debconf template) + (Closes: #118760) + - use -p argument to mkdir in case parent directories of mount points do + not exist + - use $CDROM_BASE_MOUNTPOINT as prefix to mount points + - implement more precise check for mounted /initrd filesystem + - migrate from /var/state to /var/lib per FHS (Closes: #136992) + - added comments describing the function of each of the three + configuration files + + * debian/control: + - change maintainer to Progeny Debian Packaging Team + - add Uploaders: field + - new package: libdiscover1-pic (thanks, Tollef Fog Heen) + (Closes: #143871) + - libdiscover-dev Replaces: libdiscover0, libdiscover0-dev + - discover Depends: debconf (>> 0.5) + * debian/copyright: corrected URL to package source + * debian/discover.dirs: /var/state/discover -> /var/lib/discover + * debian/discover.postinst: + - discover's rcS.d script needs to run after hotplug's (S35), but before + networking is set up (S39). It's getting to be a tight squeeze here. Run + it at S36. (Closes: #143329) + - manage /etc/default/discover file with debconf, and write debconf + section containing values of discover/manage_cdrom_devices and + discover/cdrom_base_mountpoint templates + * debian/discover.postrm: remove configuration files on package purge + * debian/discover.templates.pt_BR: added Brazilian Portuguese template + translations (thanks, Andre Luis Lopes) (Closes: #141526) + * debian/docs: Stop shipping outdated and misleading Mandrake README and + BUGS files, and do ship ChangeLog.mandrake. + * debian/rules: + - Comment out useless call to dh_installinit. We don't want to get into + trouble if it suddenly starts working. See Debian bug #140881. + - build libdiscover1-pic (thanks, Tollef Fog Heen) + - add dh_installdebconf to binary-arch rule + * debian/shlibs: remove unused file (see libdiscover1.shlibs for the real + thing) + + -- Branden Robinson Mon, 29 Apr 2002 11:56:34 -0500 + +discover (1.1-6) unstable; urgency=medium + + * debian/postinst: oops, pass correct arguments to update-rc.d (thanks, + Thomas Hood) (Closes: #141492) + + -- Branden Robinson Sat, 6 Apr 2002 01:47:01 -0500 + +discover (1.1-5) unstable; urgency=low + + * debian/docs: stop shipping obsolete upstream FAQ (Closes: #127088) + * debian/{postinst,postrm}: run discover's init script much earlier, so + that, e.g., network modules are loaded before networking is set up + (thanks, Christoph Lameter) (Closes: #120602) + * discover/discover.init: + - put names of config files in shell variables for consistency + - semantic updates to some user-visible messages + - clarify how re-enablement of skipped modules is done (Closes: #137515) + * discover/{discover.8,discover.conf.5,update-initrd.8}: minor updates + + -- Branden Robinson Tue, 2 Apr 2002 02:55:29 -0500 + +discover (1.1-4) unstable; urgency=low + + * discover/discover.init: fix typo (thanks, Thomas Poindessous) + (Closes: #118349) + + -- Branden Robinson Mon, 5 Nov 2001 07:44:19 -0500 + +discover (1.1-3) unstable; urgency=low + + * lib/{ethernet,floppy,scsi}.c: comment-out PowerPC-specific code + + -- Branden Robinson Thu, 1 Nov 2001 13:01:10 -0500 + +discover (1.1-2) unstable; urgency=low + + * configure.ac: comment out check for "--with-kernel-source" (and re-ran + autoconf) + * debian/control: remove now-unnecessary build-dependencies on + libisapnp-dev, kernel-headers-2.2.19, autoconf, automake, and libtool + * debian/rules: comment out invocation of autogen.sh, and passing of + "--with-kernel-source" argument to configure + * debian/discover.overrides: format this file correctly and explain the + override in a comment + + -- Branden Robinson Fri, 19 Oct 2001 21:16:00 -0500 + +discover (1.1-1) unstable; urgency=low + + * re-ran libtoolize --force --copy; aclocal; automake; autoconf + * re-generated source package without .cvsignore files and debian directory + * discover/Makefile.am: + - add "data_DATA = linuxrc" + - add "update-initrd.8" to man_MANS + * discover/discover.init: + - cleaned up shell syntax and output messages a little bit + - policy-compliant init script (doesn't ignore $1) + * discover/update-initrd: + - safe temporary directory usage (also, respect $TMPDIR) + - import and use my handy-dandy message(), message_nonl(), and errormsg() + shell functions + - "port" this script to the new discover-data/discover 1.0 way of doing + things + * discover/update-initrd.8: wrote manpage + * discover/discover.8: corrections to discover manpage + (thanks, Bernd Eckenfels) (Closes: #111389) + * debian/control: + - add versioning to build-dep on debhelper + - updated package descriptions + - remove redundant dependency on libdiscover1 from discover + * debian/copyright: updated copyright notice and list of authors + * debian/discover.dirs: + - add usr/share/discover + - add var/state/discover (Closes: #114112) + * debian/discover.files: ship linuxrc, update-initrd manpage, and lintian + override file + * debian/discover.overrides: new file containing lintian overrides + * debian/discover.{postinst,postrm}: add update-rc.d calls + * debian/libdiscover0.files: obsolete file removed + * debian/libdiscover1.{postinst,postrm}: run ldconfig as necessary + * debian/libdiscover1.shlibs: renamed from "shlibs" + * debian/rules: + - remove *.gmo files in clean rule + - add appropriate -l argument to dh_shlibdeps + - put linuxrc in correct place + + -- Branden Robinson Mon, 15 Oct 2001 22:04:04 -0500 + +discover (1.0-2) unstable; urgency=low + + * libdiscover1 Depends: discover-data (Closes: #110284) + + -- Branden Robinson Mon, 27 Aug 2001 16:23:14 -0500 + +discover (1.0-1) unstable; urgency=low + + * Integrate libdiscover (the old Mandrake libdetect) into the same + source package. (epg@progeny.com) + * Yank out all the ISA stuff, including SuperProbe. (epg@progeny.com) + * Library version has changed; now shipping libdiscover1 package. + + -- Branden Robinson Wed, 15 Aug 2001 16:02:18 -0500 + +discover (0.9.20) unstable; urgency=low + + * Compile against libdiscover instead of libdetect. + + -- Branden Robinson Tue, 7 Aug 2001 09:03:52 -0500 + +discover (0.9.19) unstable; urgency=low + + * discover.init: add test to skip attempts at X server "module" + autoloading if discover tries to do so + + -- Branden Robinson Fri, 23 Mar 2001 15:47:18 -0500 + +discover (0.9.18) unstable; urgency=low + + * discover.init: got sense of new test backwards; fixed + + -- Branden Robinson Fri, 23 Mar 2001 12:13:19 -0500 + +discover (0.9.17) unstable; urgency=low + + * discover.init: change module existence check to work for both 2.2 and 2.4 + kernels (addresses Progeny pr/1352) + + -- Branden Robinson Fri, 23 Mar 2001 11:27:14 -0500 + +discover (0.9.16) unstable; urgency=low + + * discover.init now checks to see if a module exists before trying to + load it; this eliminates scary-looking modprobe errors at boot time. + + -- Jeff Licquia Tue, 20 Mar 2001 18:08:38 -0500 + +discover (0.9.15) unstable; urgency=low + + * changes to discover.c: + - change return_xserver() and return_xdriver() functions; issue a warning, + not a fatal error, in the event that we cannot parse the X server and/or + driver that we get back from libdetect (this works around what I feel is + brain damage in libdetect); also, return the string "unknown" when X + servers or drivers are requested for such cards; the X server config + scripts will recognize this and do the right thing + - tabs -> 8 spaces + - added vim modeline + + -- Branden Robinson Tue, 13 Mar 2001 17:21:33 -0500 + +discover (0.9.14) unstable; urgency=low + + * recompile against libdetect 0.9.72-2.0progeny12 + + -- Branden Robinson Mon, 19 Feb 2001 11:53:22 -0500 + +discover (0.9.13) unstable; urgency=low + + * CD handling changed. Numbering now starts with 1, with 1 being the + "default" CD drive. + + -- Jeff Licquia Thu, 15 Feb 2001 15:30:28 -0500 + +discover (0.9.12) unstable; urgency=low + + * Now create directories /cdromX for each /dev/cdromX that we find in + the init script. + + -- Jeff Licquia Mon, 12 Feb 2001 17:04:06 -0500 + +discover (0.9.11) unstable; urgency=low + + * Oops. Fixed a typo in the init script. + * Enabled ISA scans in the default configuration. + + -- Jeff Licquia Mon, 5 Feb 2001 12:58:43 -0500 + +discover (0.9.10) unstable; urgency=low + + * Hard-coded a special case: add ide-scsi as a SCSI driver if IDE CD-ROM + drives are present. This way, all CD-ROMS will be treated as SCSI, + and burners will work out of the box. + * Fixed up the init script so /dev/cdromX (X is a number) files are + created when files are detected, one for each detected CD drive. + * Finished up man pages, and set them to be installed. + * Modules that crash the system are now written to + /etc/discover-autoskip.conf, instead of /etc/discover.conf. This is + more in line with Debian policy, and ensures that autoskip information + isn't lost when the conffile /etc/discover.conf is updates upstream. + * Added libisapnp-dev to Build-Depends. + + -- Jeff Licquia Sun, 4 Feb 2001 21:53:37 -0500 + +discover (0.9.9) unstable; urgency=low + + * Don't print "ignore" and "unknown" modules names. + * Fix use of the 'function' keyword in discover.init. This is a bashism; + functions are declared with 'funcname () body' in POSIX sh. + + -- Ian Murdock Fri, 12 Jan 2001 15:27:06 -0500 + +discover (0.9.8) unstable; urgency=low + + * discover.init: Only free the ramdisk if the umount succeeds. + + -- Ian Murdock Mon, 11 Dec 2000 19:56:49 -0500 + +discover (0.9.7) unstable; urgency=low + + * Major pre-1.0 interface changes: --enable and --disable now only take + bus arguments (pci, isa, pcmcia, usb, ide, scsi, parallel, and + serial); --vendor replaces --print-vendor and takes no arguments; + --model replaces --print-model and takes no arguments; --module + replaces --print-module and takes no arguments; --device replaces + --print-device and takes no arguments; --xdriver replaces + --print-xdriver and takes no arguments; --xserver replaces + --print-xserver and takes no arguments; a new option, --format, + takes a printf-style string and formats the output accordingly; and + arguments separate from any of the options specify which device + types to operate on (bridge, cdrom, ethernet, ide, scsi, sound, usb, + and video). + * Other reworkings and cleanup in preparation for 1.0. + + -- Ian Murdock Sun, 10 Dec 2000 18:57:05 -0500 + +discover (0.9.6) unstable; urgency=low + + * Check that update-boot-loader exists before trying to execute it. + + -- Ian Murdock Mon, 27 Nov 2000 15:10:54 -0500 + +discover (0.9.5) unstable; urgency=low + + * Renamed --print-server option to --print-xserver. + * Renamed --print-driver option to --print-xdriver. + * Separate each item of output by a newline instead of a space. + * Call update-boot-loader in postinst script. + + -- Ian Murdock Tue, 21 Nov 2000 14:48:56 -0500 + +discover (0.9.4) unstable; urgency=low + + * Reenabled pcmcia and bridge scans, now that pcmcia-cs no longer tries + to load modules manually when discover is present. + * Added /etc/discover.conf, which specifies hardware detection settings. + * /etc/init.d/discover: Keep track of which module is being loaded (by + writing a file to /var/state/discover/crash), and add an appropriate + "skip" line to discover.conf if the system crashed trying to load it. + * Moved the discover binary to /lib/discover/discover and added a shell + script wrapper script /sbin/discover which parses /etc/discover.conf. + * Moved all configuration information into /etc/discover.conf. + + -- Ian Murdock Tue, 7 Nov 2000 14:26:34 -0500 + +discover (0.9.3) unstable; urgency=low + + * Added better description to control file. + * Fixed typo in linuxrc. + + -- Ian Murdock Mon, 30 Oct 2000 22:45:26 -0500 + +discover (0.9.2) unstable; urgency=low + + * As of 0.9.2, discover only *reports* information about the + hardware--it no longer does anything with it. The *caller* is + now expected to perform any actions given the information reported, + such as loading modules. This allows us to do most of the work + in scripts, creating fewer opportunities for bugs to crop up, + and allowing for greater flexibility in how discover gets used. + * Added `--print-vendor', `--print-model', `--print-device', + `--print-driver', `--print-module', and `--print-server'. + * Removed `--load' and `--no-load' options, since discover no longer + loads modules. + * Disable ISA probes by default for now. + * Added echo to busybox Config.h. + * busybox's sh doesn't seem to have any looping constructs, so for now, + we copy in ash to serve as /bin/sh. + * /etc/init.d/discover now loads the modules for detected hardware and + creates /dev/cdrom. + * /etc/init.d/discover now checks to make sure the ramdisk is mounted + before trying to umount it. + + -- Ian Murdock Mon, 30 Oct 2000 14:36:07 -0500 + +discover (0.9.1) unstable; urgency=low + + * Restructured to work like libdetect's report program: We now only + load the specific types of modules the user is interested in rather + than trying to load every module found during the PCI scan. This + should fix the problems where discover was trying to load modules + twice. + * Scan each bus individually rather than calling bus_scan(). This + allows us to selectively disable any of the bus scans. + * Added a bevy of options. The most useful are `--disable', `--enable', + `--disable-all', and `--enable-all'. These allow potentially + dangerous scans (e.g., ISA) to be disabled on systems that don't need + them. They also allow us to minimize the number of scans done in + the first stage (e.g., discover --disable-all --enable=pci,ide,scsi), + which speeds up the boot process significantly. + * update-initrd: Use /usr/share/detect/*.lst to pull in the modules that + could potentially be loaded during the first stage rather than pulling + in arbitrary modules by hand. + * Added /sbin/modprobe and a minimal /etc/modules.conf to the ramdisk, + so that kmod doesn't fail on SCSI-only systems trying to load block- + major-8. This needs to be generalized, but this quick fix at least + allows us to work on SCSI systems now. + * Disabled parallel port scan. This caused a kernel panic on my Toshiba + Satellite 2180CDT. Disabled serial port scan as well, since I'm a bit + dubious about doing that too. + * Disabled pcmcia and bridge scans. These cause the PCMCIA modules to + be loaded. That's not necessarily bad, but before we can do that, + we'll need to coordinate with the PCMCIA packages to make sure we're + not stepping on any toes. + + -- Ian Murdock Sun, 29 Oct 2000 01:00:49 -0500 + +discover (0.9-16) unstable; urgency=low + + * Now checks for existance of a module properly before doing an insmod + (or printing that the hardware was detected..) + * cosmetic fixes + + -- Joseph Carter Thu, 26 Oct 2000 14:59:48 -0500 + +discover (0.9-15) unstable; urgency=low + + * update-initrd and mkinstalldisks now depmod the ramdisk kernel + * some of the debug output from mkinstalldisks has been removed + * modules should no longer be loaded again if they're already loaded + * modules not found in stage 1 will not cause an error message to be + printed. For our purposes, missing modules in stage 1 is correct + behavior and should fail quietly. + * fixed some bugs lintian pointed out + * Only one error message in stage 1 remains - the kernel's spitting it + out. The problem is likely in the /linuxrc patch + + -- Joseph Carter Wed, 25 Oct 2000 13:08:49 -0500 + +discover (0.9-14) unstable; urgency=low + + * Disabled PCMCIA probing per Ian's request + * Disabled USB probing because it doesn't work + * Don't create /var/state/discover/rodents - there's nothing in it, ever + + -- Joseph Carter Tue, 24 Oct 2000 20:54:09 -0500 + +discover (0.9-13) unstable; urgency=low + + * Disabled /proc/bus/usb since our kernel doesn't have usbcore compiled + in. libdetect doesn't support probing it at the moment anyway. + * Now outputs before ISA probes so you don't think your system just froze. + * Package now includes /etc/discover directory + * Fixed init script override bug - crash recovery in discover's second + stage now WORKS. + * Wrote a package description + + -- Joseph Carter Tue, 24 Oct 2000 19:15:35 -0500 + +discover (0.9-12) unstable; urgency=low + + * Don't fail to install if postinst can't run update-initrd, just tell + the user calmly that they have to fix it and run update-initrd on + their own. Note, update-initrd should NOT be modified to support non- + kernel-package kernels because of the necessary patch to make booting + /linuxrc actually work as documented. + + -- Joseph Carter Tue, 24 Oct 2000 15:20:54 -0500 + +discover (0.9-11) unstable; urgency=low + + * dontload file now works properly + * tried moving setvbuf to get unbuffered output - doesn't work + + -- Joseph Carter Mon, 23 Oct 2000 03:14:46 -0500 + +discover (0.9-10) unstable; urgency=low + + * update-initrd no longer spits out debug output (ie, no more mke2fs is + shown in package postinst to scare people...) + * Neither does mkinstalldisks + * Fixed dependencies + + -- Joseph Carter Thu, 19 Oct 2000 17:49:32 -0500 + +discover (0.9-9) unstable; urgency=low + + * A little more work on the install disk script, fixed annoying bug + + -- Joseph Carter Wed, 18 Oct 2000 11:01:22 -0500 + +discover (0.9-8) unstable; urgency=low + + * insmod should no longer ever print out anything, ever, period. + + -- Joseph Carter Mon, 16 Oct 2000 15:36:36 -0500 + +discover (0.9-7) unstable; urgency=low + + * Changed the style of the output for discover, fflush and setvbuf didn't + have the desired effect, will look at it more later + * new script: mkinstalldisks - makes a two-floppy ramdisk image. The + first is compressed and mounts the way you'd expect when you set it + up with grub. The second is mounted only if your cdrom can't be found + (it's not compressed, just dd it to a floppy..) Note, I didn't have a + chance to test this on a SCSI system, but the script is pretty simple. + The second floppy is FULL, if there are any ancient and rare SCSI + modules that can be removed, we should remove them. I'd appreciate it + if someone more knowledgable than I about SCSI cards could build a list + of these. + + -- Joseph Carter Wed, 11 Oct 2000 19:35:00 -0500 + +discover (0.9-6) unstable; urgency=low + + * symlink busybox to umount + * remove block modules from ramdisk to try and save space + + -- Joseph Carter Wed, 11 Oct 2000 14:12:28 -0500 + +discover (0.9-5) unstable; urgency=low + + * New cmdline option, nodevcdrom - disables removal and recreation of + /dev/cdrom symlink + * New cmdline option, dryrun - just detects and prints stuff to screen + * Mount /proc/bus/usb in ramdisk + * Added a very stripped down busybox to replace GNU utils on the ramdisk, + can expand this if necessary to include more than it currently does. + * Add modules.dep to ramdisk + * Use /dev/ram0, not /dev/ram + * Made umounting of /dev/ram0 quiet + * Removed some already tested debugging cruft for smaller code size + * Make a ramdisk for the current kernel - NOTE this COULD break if you do + something you shouldn't. + * Implemented a modprobe replacement in discover + + -- Joseph Carter Thu, 5 Oct 2000 16:36:58 -0500 + +discover (0.9-4) unstable; urgency=low + + * Somehow update-initrd didn't get in here - it's in /sbin now + + -- Joseph Carter Wed, 4 Oct 2000 13:15:30 -0500 + +discover (0.9-3) unstable; urgency=low + + * Make discover not run in postinst + + -- Joseph Carter Wed, 4 Oct 2000 12:55:27 -0500 + +discover (0.9-2) unstable; urgency=low + + * Debhelper v2 + * Moved stage two's init script from S46 to S36 (typo on my part) + + -- Joseph Carter Wed, 4 Oct 2000 11:28:52 -0500 + +discover (0.9-1) unstable; urgency=low + + * Initial Release. + + -- Joseph Carter Mon, 2 Oct 2000 10:48:43 -0500 + --- discover-2.1.2.orig/debian/discover.postinst +++ discover-2.1.2/debian/discover.postinst @@ -0,0 +1,45 @@ +#!/bin/sh + +# $Progeny$ + +# Copyright 2000, 2001, 2002, 2004 Progeny Linux Systems, Inc. +# +# Permission is hereby granted, free of charge, to any person obtaining a +# copy of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +# THE COPYRIGHT HOLDER(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +# DEALINGS IN THE SOFTWARE. + +set -e + +if [ "$1" = "configure" ]; then + if [ -n "$2" ]; then + if dpkg --compare-versions "$2" le "2.1.0"; then + update-rc.d discover remove > /dev/null + fi + fi +fi + +#DEBHELPER# + +# Remove directory no longer used after v1.2-1 (See BTS #304923) +[ -d /var/state/discover ] && rmdir /var/state/discover + +# Source the debconf confmodule to ensure that the templates are loaded. +. /usr/share/debconf/confmodule + +exit 0 + +# vim:set ai et sts=2 sw=2 tw=0: --- discover-2.1.2.orig/debian/compat +++ discover-2.1.2/debian/compat @@ -0,0 +1 @@ +4 --- discover-2.1.2.orig/debian/discover-udeb.dirs +++ discover-2.1.2/debian/discover-udeb.dirs @@ -0,0 +1,4 @@ +lib +sbin +etc +etc/discover.conf.d --- discover-2.1.2.orig/debian/libdiscover2.files +++ discover-2.1.2/debian/libdiscover2.files @@ -0,0 +1,8 @@ +usr/share/discover/dtd/discover.dtd +usr/share/discover/dtd/conffile.dtd +usr/share/doc/discover/guide.html +usr/share/doc/discover/guide.txt +usr/share/man/man5/discover.conf.5 +usr/lib/libdiscover.so.2.0.1 +usr/lib/libdiscover.so.2 +etc/discover.conf.d/00discover --- discover-2.1.2.orig/debian/discover.bug +++ discover-2.1.2/debian/discover.bug @@ -0,0 +1,4 @@ +#!/bin/sh + +# Use the script from discover-data +[ -x /usr/share/bug/discover-data ] && exec /usr/share/bug/discover-data $@ --- discover-2.1.2.orig/debian/discover.postrm +++ discover-2.1.2/debian/discover.postrm @@ -0,0 +1,39 @@ +#!/bin/sh + +# $Progeny$ + +# Copyright 2000, 2001, 2002 Progeny Linux Systems, Inc. +# +# Permission is hereby granted, free of charge, to any person obtaining a +# copy of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +# THE COPYRIGHT HOLDER(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +# DEALINGS IN THE SOFTWARE. + +#DEBHELPER# + +CONFFILE=/etc/discover.conf + +if [ "$1" = "purge" ]; then + rmdir /var/lib/discover 2> /dev/null || true +fi + +if [ "$1" = "purge" ]; then + rm -f $CONFFILE +fi + +exit 0 + +# vim:set ai et sts=2 sw=2 tw=0: --- discover-2.1.2.orig/debian/copyright +++ discover-2.1.2/debian/copyright @@ -0,0 +1,29 @@ +This package was debianized by Joseph Carter on +Mon, 2 Oct 2000 10:48:43 -0500 + +It was downloaded from + +Copyright (C) 2001 Progeny Linux Systems, Inc. + Authors: MandrakeSoft; Remy Card; David A. Hinds; GeaArt, Inc.; + Free Software Foundation, Inc.; Jesús Bravo Álvarez; + Branden Robinson; Jeff Licquia; John R. Daily + +License: + + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + --- discover-2.1.2.orig/debian/libdiscover-dev.files +++ discover-2.1.2/debian/libdiscover-dev.files @@ -0,0 +1,53 @@ +usr/include/discover/curl.h +usr/include/discover/device.h +usr/include/discover/discover.h +usr/include/discover/discover-conf.h +usr/include/discover/discover-xml.h +usr/include/discover/load-url.h +usr/include/discover/stack.h +usr/include/discover/sysdep.h +usr/include/discover/url-xml.h +usr/include/discover/utils.h +usr/lib/libdiscover.a +usr/lib/libdiscover.la +usr/lib/libdiscover.so +usr/share/doc/discover/api-reference/doxygen.png +usr/share/doc/discover/api-reference/index.html +usr/share/doc/discover/api-reference/files.html +usr/share/doc/discover/api-reference/busclass-xml_8c-source.html +usr/share/doc/discover/api-reference/conf_8c-source.html +usr/share/doc/discover/api-reference/core_8c-source.html +usr/share/doc/discover/api-reference/device-xml_8c-source.html +usr/share/doc/discover/api-reference/device_8c-source.html +usr/share/doc/discover/api-reference/discover-conf_8h-source.html +usr/share/doc/discover/api-reference/discover-xml_8h-source.html +usr/share/doc/discover/api-reference/discover_8h-source.html +usr/share/doc/discover/api-reference/stubs_8c-source.html +usr/share/doc/discover/api-reference/url-xml_8c-source.html +usr/share/doc/discover/api-reference/vendor-xml_8c-source.html +usr/share/doc/discover/api-reference/version-cmp_8c-source.html +usr/share/doc/discover/api-reference/busclass-xml_8c.html +usr/share/doc/discover/api-reference/conf_8c.html +usr/share/doc/discover/api-reference/core_8c.html +usr/share/doc/discover/api-reference/device-xml_8c.html +usr/share/doc/discover/api-reference/device_8c.html +usr/share/doc/discover/api-reference/discover-conf_8h.html +usr/share/doc/discover/api-reference/discover-xml_8h.html +usr/share/doc/discover/api-reference/discover_8h.html +usr/share/doc/discover/api-reference/stubs_8c.html +usr/share/doc/discover/api-reference/url-xml_8c.html +usr/share/doc/discover/api-reference/vendor-xml_8c.html +usr/share/doc/discover/api-reference/version-cmp_8c.html +usr/share/doc/discover/api-reference/group__busclass__xml.html +usr/share/doc/discover/api-reference/group__conf.html +usr/share/doc/discover/api-reference/group__core.html +usr/share/doc/discover/api-reference/group__device__xml.html +usr/share/doc/discover/api-reference/group__device.html +usr/share/doc/discover/api-reference/group__url__xml.html +usr/share/doc/discover/api-reference/group__vendor__xml.html +usr/share/doc/discover/api-reference/group__version__cmp.html +usr/share/doc/discover/api-reference/group__sysdeps.html +usr/share/doc/discover/api-reference/group__types.html +usr/share/doc/discover/api-reference/modules.html +usr/share/doc/discover/api-reference/globals.html +usr/share/doc/discover/api-reference/doxygen.css --- discover-2.1.2.orig/debian/libdiscover2.preinst +++ discover-2.1.2/debian/libdiscover2.preinst @@ -0,0 +1,44 @@ +#!/bin/sh + +# $Progeny$ + +# Copyright 2004 Progeny Linux Systems, Inc. +# +# Permission is hereby granted, free of charge, to any person obtaining a +# copy of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +# THE COPYRIGHT HOLDER(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +# DEALINGS IN THE SOFTWARE. + +set -e + +#DEBHELPER# + +# Deal with /etc/discover.conf. + +if [ -f /etc/discover.conf ]; then + if [ `fgrep '' /etc/discover.conf | wc -l` -gt 0 ]; then + # Discover 2 conffile; move it to the new location. + if [ -f /etc/discover.conf.d/00discover ]; then + mv /etc/discover.conf /etc/discover.conf.d/00discover.dpkg-old + else + mkdir -p /etc/discover.conf.d + mv /etc/discover.conf /etc/discover.conf.d/00discover + fi + else + # Discover 1 conffile; prepare it for migration. + mv /etc/discover.conf /etc/discover-v1.conf + fi +fi --- discover-2.1.2.orig/debian/update-buildsystem +++ discover-2.1.2/debian/update-buildsystem @@ -0,0 +1,42 @@ +#!/bin/sh + +# +# This script was included to make easier to update the build system +# + +REPO="svn+ssh://svn.debian.org/svn/pkg-discover/" + + +function sync { + + local MODULE=$(svn info | grep URL | awk -F': ' '{ print $2 }' | sed 's,svn.*pkg-discover/,,g' || echo "ERROR: You need to run it inside a checkout!" && exit 1) + local EXPORT="$1-$(date +%F)" + + if [ -e $EXPORT ]; then + echo "ERROR: Cannot export to $EXPORT because it's already exist!" + exit 1 + fi + + svn export $2 $EXPORT + svn_load_dirs $REPO $MODULE/$1 $EXPORT +} + +case $1 in + buildtools) + sync buildtools svn://svn.progeny.com/tools/buildtools/branches/libtool-update + ;; + doctools) + sync doctools svn://svn.progeny.com/tools/doctools/trunk + ;; + portability) + sync portability svn://svn.progeny.com/tools/portability/trunk + ;; + all) + $0 buildtools + $0 doctools + $0 portability + ;; + *) + echo "Usage: $0 buildtools|doctools|portability|all" + exit 1 +esac --- discover-2.1.2.orig/debian/discover.templates +++ discover-2.1.2/debian/discover.templates @@ -0,0 +1,6 @@ +Template: discover/install_hw_packages +Type: multiselect +Choices: ${PACKAGES} +_Description: Packages to install: + Some packages were found to be useful with your hardware. + Please select those you want to install. --- discover-2.1.2.orig/debian/po/vi.po +++ discover-2.1.2/debian/po/vi.po @@ -0,0 +1,34 @@ +# Vietnamese translation for Discover. +# Copyright © 2008 Free Software Foundation, Inc. +# Clytie Siddall , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: discover\n" +"Report-Msgid-Bugs-To: pere@debian.org\n" +"POT-Creation-Date: 2007-02-16 22:44+0100\n" +"PO-Revision-Date: 2008-07-05 22:59+0930\n" +"Last-Translator: Clytie Siddall \n" +"Language-Team: Vietnamese \n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: LocFactoryEditor 1.7b3\n" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "Packages to install:" +msgstr "Các gói cần cài đặt:" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "" +"Some packages were found to be useful with your hardware. Please select " +"those you want to install." +msgstr "" +"Một số gói nào đó cũng hữu ích trên phần cứng này. Hãy chọn những gói bạn " +"muốn cài đặt." --- discover-2.1.2.orig/debian/po/pt_BR.po +++ discover-2.1.2/debian/po/pt_BR.po @@ -0,0 +1,34 @@ +# discover Brazilian Portuguese translation +# Copyright (C) 2007 THE discover's COPYRIGHT HOLDER +# This file is distributed under the same license as the discover package. +# Marcelo Jorge Vieira (metal) , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: discover 2.1.2-2\n" +"Report-Msgid-Bugs-To: pere@debian.org\n" +"POT-Creation-Date: 2007-02-16 22:44+0100\n" +"PO-Revision-Date: 2008-05-02 11:13-0300\n" +"Last-Translator: Marcelo Jorge Vieira (metal) \n" +"Language-Team: l10n portuguese \n" +"Language: pt_br\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"pt_BR utf-8\n" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "Packages to install:" +msgstr "Pacotes para instalar:" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "" +"Some packages were found to be useful with your hardware. Please select " +"those you want to install." +msgstr "" +"Alguns pacotes encontrados podem ser úteis com o seu hardware. Por Favor, " +"selecione aqueles que você deseja instalar." --- discover-2.1.2.orig/debian/po/es.po +++ discover-2.1.2/debian/po/es.po @@ -0,0 +1,59 @@ +# discover po-debconf translation to Spanish +# Copyright (C) 2007 Software in the Public Interest, SPI Inc. +# This file is distributed under the same license as the XXXX package. +# +# Changes: +# - Initial translation +# Javier Fernández-Sanguino , 2007 +# +# +# Traductores, si no conoce el formato PO, merece la pena leer la +# documentación de gettext, especialmente las secciones dedicadas a este +# formato, por ejemplo ejecutando: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Equipo de traducción al español, por favor lean antes de traducir +# los siguientes documentos: +# +# - El proyecto de traducción de Debian al español +# http://www.debian.org/intl/spanish/ +# especialmente las notas y normas de traducción en +# http://www.debian.org/intl/spanish/notas +# +# - La guía de traducción de po's de debconf: +# /usr/share/doc/po-debconf/README-trans +# o http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Si tiene dudas o consultas sobre esta traducción consulte con el último +# traductor (campo Last-Translator) y ponga en copia a la lista de +# traducción de Debian al español () +# +msgid "" +msgstr "" +"Project-Id-Version: discover\n" +"Report-Msgid-Bugs-To: pere@debian.org\n" +"POT-Creation-Date: 2007-02-16 22:44+0100\n" +"PO-Revision-Date: 2007-02-18 12:55+0100\n" +"Last-Translator: Javier Fernández-Sanguino \n" +"Language-Team: Debian Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "Packages to install:" +msgstr "Paquetes a instalar:" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "" +"Some packages were found to be useful with your hardware. Please select " +"those you want to install." +msgstr "" +"Se ha determinado que algunos paquetes pueden ser útiles con su hadware. " +"Indique aquellos que desea instalar." --- discover-2.1.2.orig/debian/po/de.po +++ discover-2.1.2/debian/po/de.po @@ -0,0 +1,32 @@ +# Translation of discover debconf templates to German +# Copyright (C) Helge Kreutzmann , 2007. +# This file is distributed under the same license as the discover package. +# +msgid "" +msgstr "" +"Project-Id-Version: discover\n" +"Report-Msgid-Bugs-To: pere@debian.org\n" +"POT-Creation-Date: 2007-02-16 22:44+0100\n" +"PO-Revision-Date: 2007-02-17 19:43+0100\n" +"Last-Translator: Helge Kreutzmann \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "Packages to install:" +msgstr "Zu installierende Pakete:" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "" +"Some packages were found to be useful with your hardware. Please select " +"those you want to install." +msgstr "" +"Es wurden Pakete gefunden, die fr Ihre Hardware ntzlich sind. Bitte whlen " +"Sie aus, welche Sie installieren wollen." --- discover-2.1.2.orig/debian/po/ro.po +++ discover-2.1.2/debian/po/ro.po @@ -0,0 +1,40 @@ +# translation of ro.po to Romanian +# Romanian translations for PACKAGE package +# Traducerea în limba română pentru pachetul PACKAGE. +# Copyright (C) 2007 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Eddy Petrisor , 2007. +# Eddy Petrișor , 2007. +msgid "" +msgstr "" +"Project-Id-Version: ro\n" +"Report-Msgid-Bugs-To: pere@debian.org\n" +"POT-Creation-Date: 2007-02-16 22:44+0100\n" +"PO-Revision-Date: 2007-02-19 02:31+0200\n" +"Last-Translator: Eddy Petrișor \n" +"Language-Team: Romanian \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "Packages to install:" +msgstr "Pachete de instalat:" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "" +"Some packages were found to be useful with your hardware. Please select " +"those you want to install." +msgstr "" +"Au fost găsite câteva pachete care sunt folositoare împreună cu componentele " +"din calculatorul dumneavoastră. Selectaţi-le pe cele pe care doriţi să le " +"instalaţi." --- discover-2.1.2.orig/debian/po/da.po +++ discover-2.1.2/debian/po/da.po @@ -0,0 +1,33 @@ +# Danish translation discover. +# Copyright (C) 2010 discover & nedenstående oversættere. +# This file is distributed under the same license as the discover package. +# Joe Hansen (joedalton2@yahoo.dk), 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: discover\n" +"Report-Msgid-Bugs-To: pere@debian.org\n" +"POT-Creation-Date: 2007-02-16 22:44+0100\n" +"PO-Revision-Date: 2010-08-08 17:30+01:00\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "Packages to install:" +msgstr "Pakker at installere:" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "" +"Some packages were found to be useful with your hardware. Please select " +"those you want to install." +msgstr "" +"Nogle pakker, der kan være brugbare med din hardware, blev fundet. Vælg " +"venligt dem du ønsker at installere." --- discover-2.1.2.orig/debian/po/ta.po +++ discover-2.1.2/debian/po/ta.po @@ -0,0 +1,34 @@ +# translation of discover.po to TAMIL +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Dr.T.Vasudevan , 2007. +msgid "" +msgstr "" +"Project-Id-Version: discover\n" +"Report-Msgid-Bugs-To: pere@debian.org\n" +"POT-Creation-Date: 2007-02-16 22:44+0100\n" +"PO-Revision-Date: 2007-02-17 11:24+0530\n" +"Last-Translator: Dr.T.Vasudevan \n" +"Language-Team: TAMIL \n" +"Language: ta\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "Packages to install:" +msgstr "நிறுவ வேண்டிய பொதிகள்:" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "" +"Some packages were found to be useful with your hardware. Please select " +"those you want to install." +msgstr "" +"சில பொதிகள் உங்கள் வன் பொருட்களுக்கு உகந்தவையாக கண்டு பிடிக்கப் பட்டன. தேவையானவற்றை " +"தேர்ந்தெடுக்கவும்." --- discover-2.1.2.orig/debian/po/fa.po +++ discover-2.1.2/debian/po/fa.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: discover\n" +"Report-Msgid-Bugs-To: pere@debian.org\n" +"POT-Creation-Date: 2007-02-16 22:44+0100\n" +"PO-Revision-Date: 2007-02-25 20:23+0330\n" +"Last-Translator: Abbas Esmaeeli Some'eh \n" +"Language-Team: Persian\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "Packages to install:" +msgstr "بسته‌های قابل نصب" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "" +"Some packages were found to be useful with your hardware. Please select " +"those you want to install." +msgstr "" +"بعضی بسته‌ها برای سخت‌افزار شما مفید به نظر می‌رسند. لطفا آنهایی را که می‌خواهید " +"نصب شوند انتخاب کنید." --- discover-2.1.2.orig/debian/po/fr.po +++ discover-2.1.2/debian/po/fr.po @@ -0,0 +1,34 @@ +# translation of fr.po to French +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Christian Perrier , 2007. +msgid "" +msgstr "" +"Project-Id-Version: fr\n" +"Report-Msgid-Bugs-To: pere@debian.org\n" +"POT-Creation-Date: 2007-02-16 22:44+0100\n" +"PO-Revision-Date: 2007-02-16 07:17+0100\n" +"Last-Translator: Christian Perrier \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "Packages to install:" +msgstr "Paquets à installer :" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "" +"Some packages were found to be useful with your hardware. Please select " +"those you want to install." +msgstr "" +"Certains paquets pourraient être utiles avec votre matériel. Veuillez " +"choisir ceux que vous souhaitez installer." --- discover-2.1.2.orig/debian/po/sv.po +++ discover-2.1.2/debian/po/sv.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: discover\n" +"Report-Msgid-Bugs-To: pere@debian.org\n" +"POT-Creation-Date: 2007-02-16 22:44+0100\n" +"PO-Revision-Date: 2007-02-17 00:09+0100\n" +"Last-Translator: Daniel Nylander \n" +"Language-Team: Swedish \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "Packages to install:" +msgstr "Paket att installera:" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "" +"Some packages were found to be useful with your hardware. Please select " +"those you want to install." +msgstr "" +"Några paket kan vara användbara med din hårdvara. Välj de paket som du vill " +"installera." --- discover-2.1.2.orig/debian/po/nb.po +++ discover-2.1.2/debian/po/nb.po @@ -0,0 +1,34 @@ +# translation of templates.pot_[SYRzBa].po to Norwegian Bokmål +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Bjørn Steensrud , 2007. +msgid "" +msgstr "" +"Project-Id-Version: templates.pot_[SYRzBa]\n" +"Report-Msgid-Bugs-To: pere@debian.org\n" +"POT-Creation-Date: 2007-02-16 22:44+0100\n" +"PO-Revision-Date: 2007-02-18 10:37+0100\n" +"Last-Translator: Bjørn Steensrud \n" +"Language-Team: Norwegian Bokmål \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.2\n" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "Packages to install:" +msgstr "Pakker som skal installeres:" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "" +"Some packages were found to be useful with your hardware. Please select " +"those you want to install." +msgstr "" +"Det ble funnet noen pakker som er nyttige med maskinen din. Velg dem du vil " +"installere." --- discover-2.1.2.orig/debian/po/it.po +++ discover-2.1.2/debian/po/it.po @@ -0,0 +1,33 @@ +# ITALIAN TRANSLATION OF DISCOVER. +# TRADUZIONE ITALIANA DI DISCOVER. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the DISCOVER package. +# Gianluca Cotrino , 2007. +msgid "" +msgstr "" +"Project-Id-Version: DISCOVER\n" +"Report-Msgid-Bugs-To: pere@debian.org\n" +"POT-Creation-Date: 2007-02-16 22:44+0100\n" +"PO-Revision-Date: 2007-02-19 20:24+0100\n" +"Last-Translator: Gianluca Cotrino \n" +"Language-Team: ITALIAN \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "Packages to install:" +msgstr "Pacchetti da installare:" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "" +"Some packages were found to be useful with your hardware. Please select " +"those you want to install." +msgstr "" +"Sono stati trovati alcuni pacchetti che sarebbero utili per il tuo sistema. " +"Prego, seleziona quelli che vuoi installare." --- discover-2.1.2.orig/debian/po/pt.po +++ discover-2.1.2/debian/po/pt.po @@ -0,0 +1,33 @@ +# Portuguese translation for discover's debconf messages +# Copyright (C) 2007 Miguel Figueiredo +# This file is distributed under the same license as the discover package. +# Miguel Figueiredo , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: discover\n" +"Report-Msgid-Bugs-To: pere@debian.org\n" +"POT-Creation-Date: 2007-02-16 22:44+0100\n" +"PO-Revision-Date: 2007-02-17 00:08+0000\n" +"Last-Translator: Miguel Figueiredo \n" +"Language-Team: Portuguese \n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "Packages to install:" +msgstr "Pacotes a instalar" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "" +"Some packages were found to be useful with your hardware. Please select " +"those you want to install." +msgstr "" +"Descobriu-se que alguns pacotes podem ser úteis com o seu hardware. Por " +"favor escolha aqueles que quer instalar." --- discover-2.1.2.orig/debian/po/eu.po +++ discover-2.1.2/debian/po/eu.po @@ -0,0 +1,34 @@ +# Basque translations for PACKAGE package. +# Copyright (C) 2007 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Piarres Beobide , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: discover\n" +"Report-Msgid-Bugs-To: pere@debian.org\n" +"POT-Creation-Date: 2007-02-16 22:44+0100\n" +"PO-Revision-Date: 2007-02-19 00:00+0100\n" +"Last-Translator: Piarres Beobide \n" +"Language-Team: Basque \n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Pootle 0.10.1\n" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "Packages to install:" +msgstr "Instalatuko diren paketeak:" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "" +"Some packages were found to be useful with your hardware. Please select " +"those you want to install." +msgstr "" +"Zure hardwarearekin erabilgarri izan daitezken zenbait pakete aurkitu dira. " +"Mesedez hautatu horietariko zein instalatu nahi dituzun." --- discover-2.1.2.orig/debian/po/POTFILES.in +++ discover-2.1.2/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] discover.templates --- discover-2.1.2.orig/debian/po/tr.po +++ discover-2.1.2/debian/po/tr.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Mert Dirik , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: discover\n" +"Report-Msgid-Bugs-To: pere@debian.org\n" +"POT-Creation-Date: 2007-02-16 22:44+0100\n" +"PO-Revision-Date: 2008-06-23 00:55+0200\n" +"Last-Translator: Mert Dirik \n" +"Language-Team: Debian L10n Turkish \n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "Packages to install:" +msgstr "Kurulacak paketler:" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "" +"Some packages were found to be useful with your hardware. Please select " +"those you want to install." +msgstr "" +"Donanımınızla kullanılabilecek bazı yararlı paketler bulundu. Lütfen kurmak " +"istediklerinizi seçin." --- discover-2.1.2.orig/debian/po/cs.po +++ discover-2.1.2/debian/po/cs.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: discover\n" +"Report-Msgid-Bugs-To: pere@debian.org\n" +"POT-Creation-Date: 2007-02-16 22:44+0100\n" +"PO-Revision-Date: 2007-02-17 10:53+0100\n" +"Last-Translator: Miroslav Kure \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "Packages to install:" +msgstr "Balíky k instalaci:" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "" +"Some packages were found to be useful with your hardware. Please select " +"those you want to install." +msgstr "" +"Byly nalezeny některé balíky, které by mohly být užitečné pro váš hardware. " +"Vyberte prosím ty, které chcete nainstalovat." --- discover-2.1.2.orig/debian/po/gl.po +++ discover-2.1.2/debian/po/gl.po @@ -0,0 +1,32 @@ +# Galician translation of discover's debconf templates +# This file is distributed under the same license as the discover package. +# Jacobo Tarrio , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: discover\n" +"Report-Msgid-Bugs-To: pere@debian.org\n" +"POT-Creation-Date: 2007-02-16 22:44+0100\n" +"PO-Revision-Date: 2007-02-16 23:41+0100\n" +"Last-Translator: Jacobo Tarrio \n" +"Language-Team: Galician \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "Packages to install:" +msgstr "Paquetes a instalar:" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "" +"Some packages were found to be useful with your hardware. Please select " +"those you want to install." +msgstr "" +"Determinouse que algúns paquetes han ser útiles co seu hardware. Escolla os " +"que queira instalar." --- discover-2.1.2.orig/debian/po/nl.po +++ discover-2.1.2/debian/po/nl.po @@ -0,0 +1,34 @@ +# translation of templates.pot_[yZtljc].po to Dutch +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Frans Pop , 2007. +msgid "" +msgstr "" +"Project-Id-Version: templates.pot_[yZtljc]\n" +"Report-Msgid-Bugs-To: pere@debian.org\n" +"POT-Creation-Date: 2007-02-16 22:44+0100\n" +"PO-Revision-Date: 2007-02-16 22:55+0100\n" +"Last-Translator: Frans Pop \n" +"Language-Team: Dutch \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "Packages to install:" +msgstr "Te installeren pakketten:" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "" +"Some packages were found to be useful with your hardware. Please select " +"those you want to install." +msgstr "" +"Op basis van uw hardware kunnen de volgende pakketten mogelijk van nut zijn. " +"Selecteer de pakketten die u wilt installeren." --- discover-2.1.2.orig/debian/po/templates.pot +++ discover-2.1.2/debian/po/templates.pot @@ -0,0 +1,31 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: pere@debian.org\n" +"POT-Creation-Date: 2007-02-16 22:44+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "Packages to install:" +msgstr "" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "" +"Some packages were found to be useful with your hardware. Please select " +"those you want to install." +msgstr "" --- discover-2.1.2.orig/debian/po/ja.po +++ discover-2.1.2/debian/po/ja.po @@ -0,0 +1,32 @@ +# Japanese debconf templates translation for discover. +# Copyright (C) 2007 Noritada Kobayashi +# This file is distributed under the same license as the discover package. +# +msgid "" +msgstr "" +"Project-Id-Version: discover (debconf) 2.1.1-2.1\n" +"Report-Msgid-Bugs-To: pere@debian.org\n" +"POT-Creation-Date: 2007-02-16 22:44+0100\n" +"PO-Revision-Date: 2007-03-01 16:42+0900\n" +"Last-Translator: Noritada Kobayashi \n" +"Language-Team: Japanese \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "Packages to install:" +msgstr "インストールするパッケージ:" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "" +"Some packages were found to be useful with your hardware. Please select " +"those you want to install." +msgstr "" +"ハードウェアとともに使用すると便利なパッケージがいくつか見つかりました。イン" +"ストールしたいパッケージを選択してください。" --- discover-2.1.2.orig/debian/po/ru.po +++ discover-2.1.2/debian/po/ru.po @@ -0,0 +1,36 @@ +# translation of discover_2.1.1-2_debconf_ru.po to Russian +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Yuri Kozlov , 2007. +msgid "" +msgstr "" +"Project-Id-Version: 2.1.1-2\n" +"Report-Msgid-Bugs-To: pere@debian.org\n" +"POT-Creation-Date: 2007-02-16 22:44+0100\n" +"PO-Revision-Date: 2007-02-17 13:42+0300\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "Packages to install:" +msgstr "Пакеты для установки:" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "" +"Some packages were found to be useful with your hardware. Please select " +"those you want to install." +msgstr "" +"Некоторые пакеты могут быть полезны при работе с вашим аппаратным " +"обеспечением. Выберите, какие нужно установить." --- discover-2.1.2.orig/debian/po/fi.po +++ discover-2.1.2/debian/po/fi.po @@ -0,0 +1,30 @@ +msgid "" +msgstr "" +"Project-Id-Version: discover\n" +"Report-Msgid-Bugs-To: pere@debian.org\n" +"POT-Creation-Date: 2007-02-16 22:44+0100\n" +"PO-Revision-Date: 2008-03-25 13:01+0200\n" +"Last-Translator: Esko Arajärvi \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Finnish\n" +"X-Poedit-Country: FINLAND\n" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "Packages to install:" +msgstr "Asennettavat paketit:" + +#. Type: multiselect +#. Description +#: ../discover.templates:1001 +msgid "" +"Some packages were found to be useful with your hardware. Please select " +"those you want to install." +msgstr "" +"Joitain laitteistosi kanssa hyödyllisiä paketteja löydettiin. Valitse mitkä " +"niistä haluat asentaa." --- discover-2.1.2.orig/doc/discover-pkginstall.8 +++ discover-2.1.2/doc/discover-pkginstall.8 @@ -0,0 +1,27 @@ +.TH "discover-pkgintsall" "8" +.SH "NAME" +discover-pkginstall \(em intsall packages for available hardware using discover(1) +.SH "SYNOPSIS" +.PP +\fBdiscover-pkginstall\fR [\-l] [\-n] [\-v] +.SH "Description" +.PP +\fBdiscover-pkginstall\fR install packages based +on detected hardware. It will use the discover-data database to +map for hardware to debian packages, install the packages by +default. Packages using module-assistant will be automatically +built and the result installed if module-assistant is installed +or pulled in as a dependency. +.SH "Options" +.IP "\fB-l\fP" 10 +Only list the detected packages +.IP "\fB-n\fP" 10 +Echo the \fBaptitude and +module-assistant\fR invocations instead of running +them. +.IP "\fB-v\fP" 10 +Be verbose. +.SH "See Also" +.PP +aptitude(8), discover(1), module-assistant(8) +.\" created by instant / docbook-to-man, Sun 13 Jan 2008, 09:40 --- discover-2.1.2.orig/doc/Makefile.in +++ discover-2.1.2/doc/Makefile.in @@ -7,11 +7,13 @@ ${srcdir}/discover-config.1 \ ${srcdir}/discover.conf.5 \ ${srcdir}/discover-modprobe.conf.5 \ - ${srcdir}/discover-modprobe.8 + ${srcdir}/discover-modprobe.8 \ + ${srcdir}/discover-pkginstall.8 refentries= discover-config.refentry \ discover-modprobe.conf.refentry \ discover-modprobe.refentry \ + discover-pkginstall.refentry \ discover.conf.refentry \ discover.refentry @@ -64,6 +66,8 @@ TO=${DESTDIR}${mandir}/man5/discover-modprobe.conf.5 @${MAKE} __sed_install FROM=${srcdir}/discover-modprobe.8 \ TO=${DESTDIR}${mandir}/man8/discover-modprobe.8 + @${MAKE} __sed_install FROM=${srcdir}/discover-pkginstall.8 \ + TO=${DESTDIR}${mandir}/man8/discover-pkginstall.8 uninstall: rm -f ${DESTDIR}${datadir}/doc/discover/guide.html @@ -72,6 +76,7 @@ rm -f ${DESTDIR}${mandir}/man1/discover-config.1 rm -f ${DESTDIR}${mandir}/man8/discover-modprobe.8 rm -f ${DESTDIR}${mandir}/man5/discover-modprobe.conf.5 + rm -f ${DESTDIR}${mandir}/man8/discover-pkginstall.8 ############################################################################### # Distribution --- discover-2.1.2.orig/doc/discover-pkginstall.refentry +++ discover-2.1.2/doc/discover-pkginstall.refentry @@ -0,0 +1,85 @@ + + 1.0 + + + Petter Reinholdtsen + + + 2008 + Petter Reinholdtsen + + + + + discover-pkgintsall + 8 + + + + discover-pkginstall + intsall packages for available hardware using discover(1) + + + + + + discover-pkginstall + -l + -n + -v + + + + + + + Description + + discover-pkginstall install packages based + on detected hardware. It will use the discover-data database to + map from hardware to debian packages, install the packages by + default. Packages using module-assistant will be automatically + built and the result installed if module-assistant is installed + or pulled in as a dependency. + + + + + Options + + + + + + Only list the detected packages + + + + + + Echo the aptitude and + module-assistant invocations instead of running + them. + + + + + + Be verbose. + + + + + + + See Also + + aptitude(8), discover(1), module-assistant(8) + + + + + + + + --- discover-2.1.2.orig/buildtools/python/ac_prog_python_works.m4 +++ discover-2.1.2/buildtools/python/ac_prog_python_works.m4 @@ -0,0 +1,15 @@ +dnl $Progeny$ +dnl +dnl +AC_DEFUN([AC_PROG_PYTHON_WORKS], +[ + AC_CACHE_CHECK([if $PYTHON works], ac_cv_prog_python_works, [ + TEST="a = [[ x for x in True, 1, map ]]" + if AC_TRY_COMMAND($PYTHON -c "$TEST") >/dev/null 2>&1; then + ac_cv_prog_python_works=yes + else + AC_MSG_ERROR(The Python interpreter $PYTHON failed (see config.log)) + fi +]) + AC_PROVIDE([$0]) +]) --- discover-2.1.2.orig/buildtools/python/ac_py_lib_path.m4 +++ discover-2.1.2/buildtools/python/ac_py_lib_path.m4 @@ -0,0 +1,19 @@ +dnl $Progeny$ +dnl +dnl +AC_DEFUN([AC_PY_LIB_PATH], +[ + if test "x$PYTHON_LIB" = "x" ; then + if test "$prefix" = "NONE" ; then + python_prefix=$ac_default_prefix + else + python_prefix=$prefix + fi + + PYTHON_LIB=`$PYTHON -c "import distutils.sysconfig; distutils.sysconfig.PREFIX=\"${python_prefix}\"; print distutils.sysconfig.get_python_lib()"` + + if test "x$PYTHON_LIB" = x; then + AC_MSG_ERROR([Cannot find valid python libarary path]); + fi + fi +]) --- discover-2.1.2.orig/buildtools/python/ac_prog_python.m4 +++ discover-2.1.2/buildtools/python/ac_prog_python.m4 @@ -0,0 +1,13 @@ +dnl $Progeny$ +dnl +dnl AC_PROG_PYTHON: Finds a python interpreter. + +AC_DEFUN([AC_PROG_PYTHON], +[ + AC_REQUIRE([AC_EXEEXT]) + test x$PYTHON = x && AC_PATH_PROGS(PYTHON, python$EXEEXT, python2.2$EXEEXT) + test x$PYTHON = x && AC_MSG_ERROR([no acceptable python interpreter found + in \$PATH]) + AC_PROG_PYTHON_WORKS + AC_PROVIDE([$0]) +]) --- discover-2.1.2.orig/buildtools/python/ac_py_check_lib.m4 +++ discover-2.1.2/buildtools/python/ac_py_check_lib.m4 @@ -0,0 +1,45 @@ +dnl $Progeny$ +dnl +dnl figure out the path to our python libraries +dnl this macro takes no arguments +AC_DEFUN(AC_PY_LIB_PATH, +[ac_cv_py_lib_path="`python -c "import sys; import string; print +string.join(sys.path,' ')"`"; +PY_LIB_PATH=$ac_cv_py_lib_path; +]) + + +dnl param is the name of a python module that should +dnl exist in the sys.path +dnl note: we do not pass in the extension... +dnl may be used in configure.in like: +dnl +dnl AC_PY_CHECK_LIB(threading) +dnl + +AC_DEFUN(AC_PY_CHECK_LIB, +[ + AC_MSG_CHECKING(for Python module $1) + ac_cv_py_have_$1=false; + + if AC_TRY_COMMAND($PYTHON -c "import $1") >/dev/null 2>&1; then + ac_cv_py_have_$1=true; + fi + + AC_MSG_RESULT($ac_cv_py_have_$1) + HAVE_PY_LIB_$1=$ac_cv_py_have_$1; +]) + +dnl wrapper for AC_PY_CHECK_LIB +dnl that aborts the configure if +dnl the +AC_DEFUN(AC_PY_CHECK_REQUIRED, +[ + AC_PY_CHECK_LIB($1) + if [[ $HAVE_PY_LIB_$1 == false ]]; then + { + echo "$1 is a required module... aborting."; + exit + } + fi; +]) --- discover-2.1.2.orig/buildtools/java/ac_prog_java_works.m4 +++ discover-2.1.2/buildtools/java/ac_prog_java_works.m4 @@ -0,0 +1,97 @@ +dnl @synopsis AC_PROG_JAVA_WORKS +dnl +dnl Internal use ONLY. +dnl +dnl Note: This is part of the set of autoconf M4 macros for Java programs. +dnl It is VERY IMPORTANT that you download the whole set, some +dnl macros depend on other. Unfortunately, the autoconf archive does not +dnl support the concept of set of macros, so I had to break it for +dnl submission. +dnl The general documentation, as well as the sample configure.in, is +dnl included in the AC_PROG_JAVA macro. +dnl +dnl @author Stephane Bortzmeyer +dnl @version $Id: ac_prog_java_works.m4,v 1.1 2002/12/31 22:29:23 bress Exp $ +dnl +AC_DEFUN([AC_PROG_JAVA_WORKS], [ +AC_CHECK_PROG(uudecode, uudecode$EXEEXT, yes) +if test x$uudecode = xyes; then +AC_CACHE_CHECK([if uudecode can decode base 64 file], ac_cv_prog_uudecode_base64, [ +dnl /** +dnl * Test.java: used to test if java compiler works. +dnl */ +dnl public class Test +dnl { +dnl +dnl public static void +dnl main( String[] argv ) +dnl { +dnl System.exit (0); +dnl } +dnl +dnl } +cat << \EOF > Test.uue +begin-base64 644 Test.class +yv66vgADAC0AFQcAAgEABFRlc3QHAAQBABBqYXZhL2xhbmcvT2JqZWN0AQAE +bWFpbgEAFihbTGphdmEvbGFuZy9TdHJpbmc7KVYBAARDb2RlAQAPTGluZU51 +bWJlclRhYmxlDAAKAAsBAARleGl0AQAEKEkpVgoADQAJBwAOAQAQamF2YS9s +YW5nL1N5c3RlbQEABjxpbml0PgEAAygpVgwADwAQCgADABEBAApTb3VyY2VG +aWxlAQAJVGVzdC5qYXZhACEAAQADAAAAAAACAAkABQAGAAEABwAAACEAAQAB +AAAABQO4AAyxAAAAAQAIAAAACgACAAAACgAEAAsAAQAPABAAAQAHAAAAIQAB +AAEAAAAFKrcAErEAAAABAAgAAAAKAAIAAAAEAAQABAABABMAAAACABQ= +==== +EOF +if uudecode$EXEEXT Test.uue; then + ac_cv_prog_uudecode_base64=yes +else + echo "configure: __oline__: uudecode had trouble decoding base 64 file 'Test.uue'" >&AC_FD_CC + echo "configure: failed file was:" >&AC_FD_CC + cat Test.uue >&AC_FD_CC + ac_cv_prog_uudecode_base64=no +fi +rm -f Test.uue]) +fi +if test x$ac_cv_prog_uudecode_base64 != xyes; then + rm -f Test.class + AC_MSG_WARN([I have to compile Test.class from scratch]) + if test x$ac_cv_prog_javac_works = xno; then + AC_MSG_ERROR([Cannot compile java source. $JAVAC does not work properly]) + fi + if test x$ac_cv_prog_javac_works = x; then + AC_PROG_JAVAC + fi +fi +AC_CACHE_CHECK(if $JAVA works, ac_cv_prog_java_works, [ +JAVA_TEST=Test.java +CLASS_TEST=Test.class +TEST=Test +changequote(, )dnl +cat << \EOF > $JAVA_TEST +/* [#]line __oline__ "configure" */ +public class Test { +public static void main (String args[]) { + System.exit (0); +} } +EOF +changequote([, ])dnl +if test x$ac_cv_prog_uudecode_base64 != xyes; then + if AC_TRY_COMMAND($JAVAC $JAVACFLAGS $JAVA_TEST) && test -s $CLASS_TEST; then + : + else + echo "configure: failed program was:" >&AC_FD_CC + cat $JAVA_TEST >&AC_FD_CC + AC_MSG_ERROR(The Java compiler $JAVAC failed (see config.log, check the CLASSPATH?)) + fi +fi +if AC_TRY_COMMAND($JAVA $JAVAFLAGS $TEST) >/dev/null 2>&1; then + ac_cv_prog_java_works=yes +else + echo "configure: failed program was:" >&AC_FD_CC + cat $JAVA_TEST >&AC_FD_CC + AC_MSG_ERROR(The Java VM $JAVA failed (see config.log, check the CLASSPATH?)) +fi +rm -fr $JAVA_TEST $CLASS_TEST Test.uue +]) +AC_PROVIDE([$0])dnl +] +) --- discover-2.1.2.orig/buildtools/java/ac_prog_javah.m4 +++ discover-2.1.2/buildtools/java/ac_prog_javah.m4 @@ -0,0 +1,26 @@ +dnl @synopsis AC_PROG_JAVAH +dnl +dnl AC_PROG_JAVAH tests the availability of the javah header generator +dnl and looks for the jni.h header file. If available, JAVAH is set to +dnl the full path of javah and CPPFLAGS is updated accordingly. +dnl +dnl @author Luc Maisonobe +dnl @version $Id: ac_prog_javah.m4,v 1.1 2002/12/31 22:29:23 bress Exp $ +dnl +AC_DEFUN([AC_PROG_JAVAH],[ +AC_REQUIRE([AC_CANONICAL_SYSTEM])dnl +AC_REQUIRE([AC_PROG_CPP])dnl +AC_PATH_PROG(JAVAH,javah) +if test x"`eval 'echo $ac_cv_path_JAVAH'`" != x ; then + AC_TRY_CPP([#include ],,[ + ac_save_CPPFLAGS="$CPPFLAGS" +changequote(, )dnl + ac_dir=`echo $ac_cv_path_JAVAH | sed 's,\(.*\)/[^/]*/[^/]*$,\1/include,'` + ac_machdep=`echo $build_os | sed 's,[-0-9].*,,' | sed 's,cygwin,win32,'` +changequote([, ])dnl + CPPFLAGS="$ac_save_CPPFLAGS -I$ac_dir -I$ac_dir/$ac_machdep" + AC_TRY_CPP([#include ], + ac_save_CPPFLAGS="$CPPFLAGS", + AC_MSG_WARN([unable to include ])) + CPPFLAGS="$ac_save_CPPFLAGS"]) +fi]) --- discover-2.1.2.orig/buildtools/java/ac_check_classpath.m4 +++ discover-2.1.2/buildtools/java/ac_check_classpath.m4 @@ -0,0 +1,23 @@ +dnl @synopsis AC_CHECK_CLASSPATH +dnl +dnl AC_CHECK_CLASSPATH just displays the CLASSPATH, for the edification +dnl of the user. +dnl +dnl Note: This is part of the set of autoconf M4 macros for Java programs. +dnl It is VERY IMPORTANT that you download the whole set, some +dnl macros depend on other. Unfortunately, the autoconf archive does not +dnl support the concept of set of macros, so I had to break it for +dnl submission. +dnl The general documentation, as well as the sample configure.in, is +dnl included in the AC_PROG_JAVA macro. +dnl +dnl @author Stephane Bortzmeyer +dnl @version $Id: ac_check_classpath.m4,v 1.1 2002/12/31 22:29:23 bress Exp $ +dnl +AC_DEFUN([AC_CHECK_CLASSPATH],[ +if test "x$CLASSPATH" = x; then + echo "You have no CLASSPATH, I hope it is good" +else + echo "You have CLASSPATH $CLASSPATH, hope it is correct" +fi +]) --- discover-2.1.2.orig/buildtools/java/ac_prog_java_cc.m4 +++ discover-2.1.2/buildtools/java/ac_prog_java_cc.m4 @@ -0,0 +1,66 @@ +dnl @synopsis AC_PROG_JAVA_CC +dnl +dnl Finds the appropriate java compiler on your path. By preference +dnl the java compiler is gcj, then jikes then javac. +dnl +dnl The macro can take one argument specifying a space separated list +dnl of java compiler names. +dnl +dnl For example: +dnl +dnl AC_PROG_JAVA_CC(javac, gcj) +dnl +dnl The macro also sets the compiler options variable: JAVA_CC_OPTS +dnl to something sensible: +dnl - for GCJ it sets it to: @GCJ_OPTS@ +dnl (if GCJ_OPTS is not yet defined then it is set to "-C") +dnl +dnl - no other compiler has applicable options yet +dnl +dnl Here's an example configure.in: +dnl +dnl AC_INIT(Makefile.in) +dnl AC_PROG_JAVA_CC() +dnl AC_OUTPUT(Makefile) +dnl dnl End. +dnl +dnl And here's the start of the Makefile.in: +dnl +dnl PROJECT_ROOT := @srcdir@ +dnl # Tool definitions. +dnl JAVAC := @JAVA_CC@ +dnl JAVAC_OPTS := @JAVA_CC_OPTS@ +dnl JAR_TOOL := @jar_tool@ +dnl +dnl +dnl @version $Id: ac_prog_java_cc.m4,v 1.1 2002/12/31 22:29:23 bress Exp $ +dnl @author Nic Ferrier +dnl +# AC_PROG_JAVA_CC([COMPILER ...]) +# -------------------------- +# COMPILER ... is a space separated list of java compilers to search for. +# This just gives the user an opportunity to specify an alternative +# search list for the java compiler. +AC_DEFUN([AC_PROG_JAVA_CC], +[AC_ARG_VAR([JAVA_CC], [java compiler command])dnl +AC_ARG_VAR([JAVA_CC_FLAGS], [java compiler flags])dnl +m4_ifval([$1], + [AC_CHECK_TOOLS(JAVA_CC, [$1])], +[AC_CHECK_TOOL(JAVA_CC, gcj) +if test -z "$JAVA_CC"; then + AC_CHECK_TOOL(JAVA_CC, javac) +fi +if test -z "$JAVA_CC"; then + AC_CHECK_TOOL(JAVA_CC, jikes) +fi +]) + +if test "$JAVA_CC" = "gcj"; then + if test "$GCJ_OPTS" = ""; then + AC_SUBST(GCJ_OPTS,-C) + fi + AC_SUBST(JAVA_CC_OPTS, @GCJ_OPTS@, + [Define the compilation options for GCJ]) +fi +test -z "$JAVA_CC" && AC_MSG_ERROR([no acceptable java compiler found in \$PATH]) +])# AC_PROG_JAVA_CC --- discover-2.1.2.orig/buildtools/java/ac_check_junit.m4 +++ discover-2.1.2/buildtools/java/ac_check_junit.m4 @@ -0,0 +1,54 @@ +dnl @synopsis AC_CHECK_JUNIT +dnl +dnl AC_CHECK_JUNIT tests the availability of the Junit testing +dnl framework, and set some variables for conditional compilation +dnl of the test suite by automake. +dnl +dnl If available, JUNIT is set to a command launching the text +dnl based user interface of Junit, @JAVA_JUNIT@ is set to $JAVA_JUNIT +dnl and @TESTS_JUNIT@ is set to $TESTS_JUNIT, otherwise they are set +dnl to empty values. +dnl +dnl You can use these variables in your Makefile.am file like this : +dnl +dnl # Some of the following classes are built only if junit is available +dnl JAVA_JUNIT = Class1Test.java Class2Test.java AllJunitTests.java +dnl +dnl noinst_JAVA = Example1.java Example2.java @JAVA_JUNIT@ +dnl +dnl EXTRA_JAVA = $(JAVA_JUNIT) +dnl +dnl TESTS_JUNIT = AllJunitTests +dnl +dnl TESTS = StandaloneTest1 StandaloneTest2 @TESTS_JUNIT@ +dnl +dnl EXTRA_TESTS = $(TESTS_JUNIT) +dnl +dnl AllJunitTests : +dnl echo "#! /bin/sh" > $@ +dnl echo "exec @JUNIT@ my.package.name.AllJunitTests" >> $@ +dnl chmod +x $@ +dnl +dnl @author Luc Maisonobe +dnl @version $Id: ac_check_junit.m4,v 1.1 2002/12/31 22:29:23 bress Exp $ +dnl +AC_DEFUN([AC_CHECK_JUNIT],[ +AC_CACHE_VAL(ac_cv_prog_JUNIT,[ +AC_CHECK_CLASS(junit.textui.TestRunner) +if test x"`eval 'echo $ac_cv_class_junit_textui_TestRunner'`" != xno ; then + ac_cv_prog_JUNIT='$(CLASSPATH_ENV) $(JAVA) $(JAVAFLAGS) junit.textui.TestRunner' +fi]) +AC_MSG_CHECKING([for junit]) +if test x"`eval 'echo $ac_cv_prog_JUNIT'`" != x ; then + JUNIT="$ac_cv_prog_JUNIT" + JAVA_JUNIT='$(JAVA_JUNIT)' + TESTS_JUNIT='$(TESTS_JUNIT)' +else + JUNIT= + JAVA_JUNIT= + TESTS_JUNIT= +fi +AC_MSG_RESULT($JAVA_JUNIT) +AC_SUBST(JUNIT) +AC_SUBST(JAVA_JUNIT) +AC_SUBST(TESTS_JUNIT)]) --- discover-2.1.2.orig/buildtools/java/ac_prog_jar.m4 +++ discover-2.1.2/buildtools/java/ac_prog_jar.m4 @@ -0,0 +1,36 @@ +dnl @synopsis AC_PROG_JAR +dnl +dnl AC_PROG_JAR tests for an existing jar program. It uses the environment +dnl variable JAR then tests in sequence various common jar programs. +dnl +dnl If you want to force a specific compiler: +dnl +dnl - at the configure.in level, set JAR=yourcompiler before calling +dnl AC_PROG_JAR +dnl +dnl - at the configure level, setenv JAR +dnl +dnl You can use the JAR variable in your Makefile.in, with @JAR@. +dnl +dnl Note: This macro depends on the autoconf M4 macros for Java programs. +dnl It is VERY IMPORTANT that you download that whole set, some +dnl macros depend on other. Unfortunately, the autoconf archive does not +dnl support the concept of set of macros, so I had to break it for +dnl submission. +dnl +dnl The general documentation of those macros, as well as the sample +dnl configure.in, is included in the AC_PROG_JAVA macro. +dnl +dnl @author Egon Willighagen +dnl @version $Id: ac_prog_jar.m4,v 1.1 2002/12/31 22:29:23 bress Exp $ +dnl +AC_DEFUN([AC_PROG_JAR],[ +AC_REQUIRE([AC_EXEEXT])dnl +if test "x$JAVAPREFIX" = x; then + test "x$JAR" = x && AC_CHECK_PROGS(JAR, jar$EXEEXT) +else + test "x$JAR" = x && AC_CHECK_PROGS(JAR, jar, $JAVAPREFIX) +fi +test "x$JAR" = x && AC_MSG_ERROR([no acceptable jar program found in \$PATH]) +AC_PROVIDE([$0])dnl +]) --- discover-2.1.2.orig/buildtools/java/ac_java_options.m4 +++ discover-2.1.2/buildtools/java/ac_java_options.m4 @@ -0,0 +1,32 @@ +dnl @synopsis AC_JAVA_OPTIONS +dnl +dnl AC_JAVA_OPTIONS adds configure command line options used for Java m4 +dnl macros. This Macro is optional. +dnl +dnl Note: This is part of the set of autoconf M4 macros for Java programs. +dnl It is VERY IMPORTANT that you download the whole set, some +dnl macros depend on other. Unfortunately, the autoconf archive does not +dnl support the concept of set of macros, so I had to break it for +dnl submission. +dnl The general documentation, as well as the sample configure.in, is +dnl included in the AC_PROG_JAVA macro. +dnl +dnl @author Devin Weaver +dnl @version $Id: ac_java_options.m4,v 1.1 2002/12/31 22:29:23 bress Exp $ +dnl +AC_DEFUN([AC_JAVA_OPTIONS],[ +AC_ARG_WITH(java-prefix, + [ --with-java-prefix=PFX prefix where Java runtime is installed (optional)]) +AC_ARG_WITH(javac-flags, + [ --with-javac-flags=FLAGS flags to pass to the Java compiler (optional)]) +AC_ARG_WITH(java-flags, + [ --with-java-flags=FLAGS flags to pass to the Java VM (optional)]) +JAVAPREFIX=$with_java_prefix +JAVACFLAGS=$with_javac_flags +JAVAFLAGS=$with_java_flags +AC_SUBST(JAVAPREFIX)dnl +AC_SUBST(JAVACFLAGS)dnl +AC_SUBST(JAVAFLAGS)dnl +AC_SUBST(JAVA)dnl +AC_SUBST(JAVAC)dnl +]) --- discover-2.1.2.orig/buildtools/java/ac_try_compile_java.m4 +++ discover-2.1.2/buildtools/java/ac_try_compile_java.m4 @@ -0,0 +1,39 @@ +dnl @synopsis AC_TRY_COMPILE_JAVA +dnl +dnl AC_TRY_COMPILE_JAVA attempt to compile user given source. +dnl +dnl *Warning*: its success or failure can depend on a proper setting of the +dnl CLASSPATH env. variable. +dnl +dnl Note: This is part of the set of autoconf M4 macros for Java programs. +dnl It is VERY IMPORTANT that you download the whole set, some +dnl macros depend on other. Unfortunately, the autoconf archive does not +dnl support the concept of set of macros, so I had to break it for +dnl submission. +dnl The general documentation, as well as the sample configure.in, is +dnl included in the AC_PROG_JAVA macro. +dnl +dnl @author Devin Weaver +dnl @version $Id: ac_try_compile_java.m4,v 1.1 2002/12/31 22:29:23 bress Exp $ +dnl +AC_DEFUN([AC_TRY_COMPILE_JAVA],[ +AC_REQUIRE([AC_PROG_JAVAC])dnl +cat << \EOF > Test.java +/* [#]line __oline__ "configure" */ +ifelse([$1], , , [import $1;]) +public class Test { +[$2] +} +EOF +if AC_TRY_COMMAND($JAVAC $JAVACFLAGS Test.java) && test -s Test.class +then +dnl Don't remove the temporary files here, so they can be examined. + ifelse([$3], , :, [$3]) +else + echo "configure: failed program was:" >&AC_FD_CC + cat Test.java >&AC_FD_CC +ifelse([$4], , , [ rm -fr Test* + $4 +])dnl +fi +rm -fr Test*]) --- discover-2.1.2.orig/buildtools/java/ac_prog_javac.m4 +++ discover-2.1.2/buildtools/java/ac_prog_javac.m4 @@ -0,0 +1,43 @@ +dnl @synopsis AC_PROG_JAVAC +dnl +dnl AC_PROG_JAVAC tests an existing Java compiler. It uses the environment +dnl variable JAVAC then tests in sequence various common Java compilers. For +dnl political reasons, it starts with the free ones. +dnl +dnl If you want to force a specific compiler: +dnl +dnl - at the configure.in level, set JAVAC=yourcompiler before calling +dnl AC_PROG_JAVAC +dnl +dnl - at the configure level, setenv JAVAC +dnl +dnl You can use the JAVAC variable in your Makefile.in, with @JAVAC@. +dnl +dnl *Warning*: its success or failure can depend on a proper setting of the +dnl CLASSPATH env. variable. +dnl +dnl TODO: allow to exclude compilers (rationale: most Java programs cannot compile +dnl with some compilers like guavac). +dnl +dnl Note: This is part of the set of autoconf M4 macros for Java programs. +dnl It is VERY IMPORTANT that you download the whole set, some +dnl macros depend on other. Unfortunately, the autoconf archive does not +dnl support the concept of set of macros, so I had to break it for +dnl submission. +dnl The general documentation, as well as the sample configure.in, is +dnl included in the AC_PROG_JAVA macro. +dnl +dnl @author Stephane Bortzmeyer +dnl @version $Id: ac_prog_javac.m4,v 1.2 2003/01/07 14:46:21 bress Exp $ +dnl +AC_DEFUN([AC_PROG_JAVAC],[ +AC_REQUIRE([AC_EXEEXT])dnl +if test "x$JAVAPREFIX" = x; then + test "x$JAVAC" = x && AC_PATH_PROGS(JAVAC, "gcj$EXEEXT -C" guavac$EXEEXT jikes$EXEEXT javac$EXEEXT) +else + test "x$JAVAC" = x && AC_PATH_PROGS(JAVAC, "gcj$EXEEXT -C" guavac$EXEEXT jikes$EXEEXT javac$EXEEXT, $JAVAPREFIX) +fi +test "x$JAVAC" = x && AC_MSG_ERROR([no acceptable Java compiler found in \$PATH]) +AC_PROG_JAVAC_WORKS +AC_PROVIDE([$0])dnl +]) --- discover-2.1.2.orig/buildtools/java/ac_check_rqrd_class.m4 +++ discover-2.1.2/buildtools/java/ac_check_rqrd_class.m4 @@ -0,0 +1,26 @@ +dnl @synopsis AC_CHECK_RQRD_CLASS +dnl +dnl AC_CHECK_RQRD_CLASS tests the existence of a given Java class, either in +dnl a jar or in a '.class' file and fails if it doesn't exist. +dnl Its success or failure can depend on a proper setting of the +dnl CLASSPATH env. variable. +dnl +dnl Note: This is part of the set of autoconf M4 macros for Java programs. +dnl It is VERY IMPORTANT that you download the whole set, some +dnl macros depend on other. Unfortunately, the autoconf archive does not +dnl support the concept of set of macros, so I had to break it for +dnl submission. +dnl The general documentation, as well as the sample configure.in, is +dnl included in the AC_PROG_JAVA macro. +dnl +dnl @author Stephane Bortzmeyer +dnl @version $Id: ac_check_rqrd_class.m4,v 1.1 2002/12/31 22:29:23 bress Exp $ +dnl + +AC_DEFUN([AC_CHECK_RQRD_CLASS],[ +CLASS=`echo $1|sed 's/\./_/g'` +AC_CHECK_CLASS($1) +if test "$HAVE_LAST_CLASS" = "no"; then + AC_MSG_ERROR([Required class $1 missing, exiting.]) +fi +]) --- discover-2.1.2.orig/buildtools/java/ac_try_run_javac.m4 +++ discover-2.1.2/buildtools/java/ac_try_run_javac.m4 @@ -0,0 +1,40 @@ +dnl @synopsis AC_TRY_RUN_JAVA +dnl +dnl AC_TRY_RUN_JAVA attempt to compile and run user given source. +dnl +dnl *Warning*: its success or failure can depend on a proper setting of the +dnl CLASSPATH env. variable. +dnl +dnl Note: This is part of the set of autoconf M4 macros for Java programs. +dnl It is VERY IMPORTANT that you download the whole set, some +dnl macros depend on other. Unfortunately, the autoconf archive does not +dnl support the concept of set of macros, so I had to break it for +dnl submission. +dnl The general documentation, as well as the sample configure.in, is +dnl included in the AC_PROG_JAVA macro. +dnl +dnl @author Devin Weaver +dnl @version $Id: ac_try_run_javac.m4,v 1.1 2002/12/31 22:29:23 bress Exp $ +dnl +AC_DEFUN([AC_TRY_RUN_JAVA],[ +AC_REQUIRE([AC_PROG_JAVAC])dnl +AC_REQUIRE([AC_PROG_JAVA])dnl +cat << \EOF > Test.java +/* [#]line __oline__ "configure" */ +ifelse([$1], , , [include $1;]) +public class Test { +[$2] +} +EOF +if AC_TRY_COMMAND($JAVAC $JAVACFLAGS Test.java) && test -s Test.class && ($JAVA $JAVAFLAGS Test; exit) 2>/dev/null +then +dnl Don't remove the temporary files here, so they can be examined. + ifelse([$3], , :, [$3]) +else + echo "configure: failed program was:" >&AC_FD_CC + cat Test.java >&AC_FD_CC +ifelse([$4], , , [ rm -fr Test* + $4 +])dnl +fi +rm -fr Test*]) --- discover-2.1.2.orig/buildtools/java/ac_check_class.m4 +++ discover-2.1.2/buildtools/java/ac_check_class.m4 @@ -0,0 +1,107 @@ +dnl @synopsis AC_CHECK_CLASS +dnl +dnl AC_CHECK_CLASS tests the existence of a given Java class, either in +dnl a jar or in a '.class' file. +dnl +dnl *Warning*: its success or failure can depend on a proper setting of the +dnl CLASSPATH env. variable. +dnl +dnl Note: This is part of the set of autoconf M4 macros for Java programs. +dnl It is VERY IMPORTANT that you download the whole set, some +dnl macros depend on other. Unfortunately, the autoconf archive does not +dnl support the concept of set of macros, so I had to break it for +dnl submission. +dnl The general documentation, as well as the sample configure.in, is +dnl included in the AC_PROG_JAVA macro. +dnl +dnl @author Stephane Bortzmeyer +dnl @version $Id: ac_check_class.m4,v 1.1 2002/12/31 22:29:23 bress Exp $ +dnl +AC_DEFUN([AC_CHECK_CLASS],[ +AC_REQUIRE([AC_PROG_JAVA]) +ac_var_name=`echo $1 | sed 's/\./_/g'` +dnl Normaly I'd use a AC_CACHE_CHECK here but since the variable name is +dnl dynamic I need an extra level of extraction +AC_MSG_CHECKING([for $1 class]) +AC_CACHE_VAL(ac_cv_class_$ac_var_name, [ +if test x$ac_cv_prog_uudecode_base64 = xyes; then +dnl /** +dnl * Test.java: used to test dynamicaly if a class exists. +dnl */ +dnl public class Test +dnl { +dnl +dnl public static void +dnl main( String[] argv ) +dnl { +dnl Class lib; +dnl if (argv.length < 1) +dnl { +dnl System.err.println ("Missing argument"); +dnl System.exit (77); +dnl } +dnl try +dnl { +dnl lib = Class.forName (argv[0]); +dnl } +dnl catch (ClassNotFoundException e) +dnl { +dnl System.exit (1); +dnl } +dnl lib = null; +dnl System.exit (0); +dnl } +dnl +dnl } +cat << \EOF > Test.uue +begin-base64 644 Test.class +yv66vgADAC0AKQcAAgEABFRlc3QHAAQBABBqYXZhL2xhbmcvT2JqZWN0AQAE +bWFpbgEAFihbTGphdmEvbGFuZy9TdHJpbmc7KVYBAARDb2RlAQAPTGluZU51 +bWJlclRhYmxlDAAKAAsBAANlcnIBABVMamF2YS9pby9QcmludFN0cmVhbTsJ +AA0ACQcADgEAEGphdmEvbGFuZy9TeXN0ZW0IABABABBNaXNzaW5nIGFyZ3Vt +ZW50DAASABMBAAdwcmludGxuAQAVKExqYXZhL2xhbmcvU3RyaW5nOylWCgAV +ABEHABYBABNqYXZhL2lvL1ByaW50U3RyZWFtDAAYABkBAARleGl0AQAEKEkp +VgoADQAXDAAcAB0BAAdmb3JOYW1lAQAlKExqYXZhL2xhbmcvU3RyaW5nOylM +amF2YS9sYW5nL0NsYXNzOwoAHwAbBwAgAQAPamF2YS9sYW5nL0NsYXNzBwAi +AQAgamF2YS9sYW5nL0NsYXNzTm90Rm91bmRFeGNlcHRpb24BAAY8aW5pdD4B +AAMoKVYMACMAJAoAAwAlAQAKU291cmNlRmlsZQEACVRlc3QuamF2YQAhAAEA +AwAAAAAAAgAJAAUABgABAAcAAABtAAMAAwAAACkqvgSiABCyAAwSD7YAFBBN +uAAaKgMyuAAeTKcACE0EuAAaAUwDuAAasQABABMAGgAdACEAAQAIAAAAKgAK +AAAACgAAAAsABgANAA4ADgATABAAEwASAB4AFgAiABgAJAAZACgAGgABACMA +JAABAAcAAAAhAAEAAQAAAAUqtwAmsQAAAAEACAAAAAoAAgAAAAQABAAEAAEA +JwAAAAIAKA== +==== +EOF + if uudecode$EXEEXT Test.uue; then + : + else + echo "configure: __oline__: uudecode had trouble decoding base 64 file 'Test.uue'" >&AC_FD_CC + echo "configure: failed file was:" >&AC_FD_CC + cat Test.uue >&AC_FD_CC + ac_cv_prog_uudecode_base64=no + fi + rm -f Test.uue + if AC_TRY_COMMAND($JAVA $JAVAFLAGS Test $1) >/dev/null 2>&1; then + eval "ac_cv_class_$ac_var_name=yes" + else + eval "ac_cv_class_$ac_var_name=no" + fi + rm -f Test.class +else + AC_TRY_COMPILE_JAVA([$1], , [eval "ac_cv_class_$ac_var_name=yes"], + [eval "ac_cv_class_$ac_var_name=no"]) +fi +eval "ac_var_val=$`eval echo ac_cv_class_$ac_var_name`" +eval "HAVE_$ac_var_name=$`echo ac_cv_class_$ac_var_val`" +HAVE_LAST_CLASS=$ac_var_val +if test x$ac_var_val = xyes; then + ifelse([$2], , :, [$2]) +else + ifelse([$3], , :, [$3]) +fi +]) +dnl for some reason the above statment didn't fall though here? +dnl do scripts have variable scoping? +eval "ac_var_val=$`eval echo ac_cv_class_$ac_var_name`" +AC_MSG_RESULT($ac_var_val) +]) --- discover-2.1.2.orig/buildtools/java/ac_prog_javac_works.m4 +++ discover-2.1.2/buildtools/java/ac_prog_javac_works.m4 @@ -0,0 +1,35 @@ +dnl @synopsis AC_PROG_JAVAC_WORKS +dnl +dnl Internal use ONLY. +dnl +dnl Note: This is part of the set of autoconf M4 macros for Java programs. +dnl It is VERY IMPORTANT that you download the whole set, some +dnl macros depend on other. Unfortunately, the autoconf archive does not +dnl support the concept of set of macros, so I had to break it for +dnl submission. +dnl The general documentation, as well as the sample configure.in, is +dnl included in the AC_PROG_JAVA macro. +dnl +dnl @author Stephane Bortzmeyer +dnl @version $Id: ac_prog_javac_works.m4,v 1.1 2002/12/31 22:29:23 bress Exp $ +dnl +AC_DEFUN([AC_PROG_JAVAC_WORKS],[ +AC_CACHE_CHECK([if $JAVAC works], ac_cv_prog_javac_works, [ +JAVA_TEST=Test.java +CLASS_TEST=Test.class +cat << \EOF > $JAVA_TEST +/* [#]line __oline__ "configure" */ +public class Test { +} +EOF +if AC_TRY_COMMAND($JAVAC $JAVACFLAGS $JAVA_TEST) >/dev/null 2>&1; then + ac_cv_prog_javac_works=yes +else + AC_MSG_ERROR([The Java compiler $JAVAC failed (see config.log, check the CLASSPATH?)]) + echo "configure: failed program was:" >&AC_FD_CC + cat $JAVA_TEST >&AC_FD_CC +fi +rm -f $JAVA_TEST $CLASS_TEST +]) +AC_PROVIDE([$0])dnl +]) --- discover-2.1.2.orig/buildtools/java/ac_prog_javadoc.m4 +++ discover-2.1.2/buildtools/java/ac_prog_javadoc.m4 @@ -0,0 +1,37 @@ +dnl @synopsis AC_PROG_JAVADOC +dnl +dnl AC_PROG_JAVADOC tests for an existing javadoc generator. It uses the environment +dnl variable JAVADOC then tests in sequence various common javadoc generator. +dnl +dnl If you want to force a specific compiler: +dnl +dnl - at the configure.in level, set JAVADOC=yourgenerator before calling +dnl AC_PROG_JAVADOC +dnl +dnl - at the configure level, setenv JAVADOC +dnl +dnl You can use the JAVADOC variable in your Makefile.in, with @JAVADOC@. +dnl +dnl Note: This macro depends on the autoconf M4 macros for Java programs. +dnl It is VERY IMPORTANT that you download that whole set, some +dnl macros depend on other. Unfortunately, the autoconf archive does not +dnl support the concept of set of macros, so I had to break it for +dnl submission. +dnl +dnl The general documentation of those macros, as well as the sample +dnl configure.in, is included in the AC_PROG_JAVA macro. +dnl +dnl @author Egon Willighagen +dnl @version $Id: ac_prog_javadoc.m4,v 1.1 2002/12/31 22:29:23 bress Exp $ +dnl +AC_DEFUN([AC_PROG_JAVADOC],[ +AC_REQUIRE([AC_EXEEXT])dnl +if test "x$JAVAPREFIX" = x; then + test "x$JAVADOC" = x && AC_CHECK_PROGS(JAVADOC, javadoc$EXEEXT) +else + test "x$JAVADOC" = x && AC_CHECK_PROGS(JAVADOC, javadoc, $JAVAPREFIX) +fi +test "x$JAVADOC" = x && AC_MSG_ERROR([no acceptable javadoc generator found in \$PATH]) +AC_PROVIDE([$0])dnl +]) + --- discover-2.1.2.orig/buildtools/java/ac_prog_java.m4 +++ discover-2.1.2/buildtools/java/ac_prog_java.m4 @@ -0,0 +1,77 @@ +dnl @synopsis AC_PROG_JAVA +dnl +dnl Here is a summary of the main macros: +dnl +dnl AC_PROG_JAVAC: finds a Java compiler. +dnl +dnl AC_PROG_JAVA: finds a Java virtual machine. +dnl +dnl AC_CHECK_CLASS: finds if we have the given class (beware of CLASSPATH!). +dnl +dnl AC_CHECK_RQRD_CLASS: finds if we have the given class and stops otherwise. +dnl +dnl AC_TRY_COMPILE_JAVA: attempt to compile user given source. +dnl +dnl AC_TRY_RUN_JAVA: attempt to compile and run user given source. +dnl +dnl AC_JAVA_OPTIONS: adds Java configure options. +dnl +dnl AC_PROG_JAVA tests an existing Java virtual machine. It uses the +dnl environment variable JAVA then tests in sequence various common Java +dnl virtual machines. For political reasons, it starts with the free ones. +dnl You *must* call [AC_PROG_JAVAC] before. +dnl +dnl If you want to force a specific VM: +dnl +dnl - at the configure.in level, set JAVA=yourvm before calling AC_PROG_JAVA +dnl (but after AC_INIT) +dnl +dnl - at the configure level, setenv JAVA +dnl +dnl You can use the JAVA variable in your Makefile.in, with @JAVA@. +dnl +dnl *Warning*: its success or failure can depend on a proper setting of the +dnl CLASSPATH env. variable. +dnl +dnl TODO: allow to exclude virtual machines (rationale: most Java programs +dnl cannot run with some VM like kaffe). +dnl +dnl Note: This is part of the set of autoconf M4 macros for Java programs. +dnl It is VERY IMPORTANT that you download the whole set, some +dnl macros depend on other. Unfortunately, the autoconf archive does not +dnl support the concept of set of macros, so I had to break it for +dnl submission. +dnl +dnl A Web page, with a link to the latest CVS snapshot is at +dnl . +dnl +dnl This is a sample configure.in +dnl Process this file with autoconf to produce a configure script. +dnl +dnl AC_INIT(UnTag.java) +dnl +dnl dnl Checks for programs. +dnl AC_CHECK_CLASSPATH +dnl AC_PROG_JAVAC +dnl AC_PROG_JAVA +dnl +dnl dnl Checks for classes +dnl AC_CHECK_RQRD_CLASS(org.xml.sax.Parser) +dnl AC_CHECK_RQRD_CLASS(com.jclark.xml.sax.Driver) +dnl +dnl AC_OUTPUT(Makefile) +dnl +dnl @author Stephane Bortzmeyer +dnl @version $Id: ac_prog_java.m4,v 1.2 2003/01/07 14:46:21 bress Exp $ +dnl +AC_DEFUN([AC_PROG_JAVA],[ +AC_REQUIRE([AC_EXEEXT])dnl +if test x$JAVAPREFIX = x; then + test x$JAVA = x && AC_PATH_PROGS(JAVA, kaffe$EXEEXT java$EXEEXT) +else + test x$JAVA = x && AC_PATH_PROGS(JAVA, kaffe$EXEEXT java$EXEEXT, $JAVAPREFIX) +fi +test x$JAVA = x && AC_MSG_ERROR([no acceptable Java virtual machine found in \$PATH]) +AC_PROG_JAVA_WORKS +AC_PROVIDE([$0])dnl +]) --- discover-2.1.2.orig/doctools/docbook-chapter.ced +++ discover-2.1.2/doctools/docbook-chapter.ced @@ -0,0 +1,1703 @@ +;;; This file was created by psgml on Thu Apr 3 14:39:50 2003 -*-coding:binary-*- +(sgml-saved-dtd-version 7) +("/usr/share/sgml/docbook/dtd/xml/4.1.2/dbgenent.mod" "/usr/share/sgml/docbook/dtd/xml/4.1.2/dbhierx.mod" "/usr/share/sgml/docbook/dtd/xml/4.1.2/calstblx.dtd" "/usr/share/sgml/docbook/dtd/xml/4.1.2/dbpoolx.mod" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOtech.ent" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOpub.ent" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOnum.ent" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOlat2.ent" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOlat1.ent" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOgrk4.ent" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOgrk3.ent" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOgrk2.ent" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOgrk1.ent" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOdia.ent" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOcyr2.ent" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOcyr1.ent" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISObox.ent" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOamsr.ent" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOamso.ent" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOamsn.ent" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOamsc.ent" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOamsb.ent" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOamsa.ent" "/usr/share/sgml/docbook/dtd/xml/4.1.2/dbcentx.mod" "/usr/share/sgml/docbook/dtd/xml/4.1.2/dbnotnx.mod" "/usr/share/sgml/docbook/dtd/xml/4.1.2/docbookx.dtd" "/scratch/jdaily/cvs/progeny/pds/doctools/progeny.ent") +(nil ("progeny-entity" text (nil "../doctools/progeny.ent" . "/scratch/jdaily/cvs/progeny/pds/doc/") nil) ("dbnotn.module" text "INCLUDE" nil) ("dbnotn" text ("-//OASIS//ENTITIES DocBook XML Notations V4.1.2//EN" "dbnotnx.mod" . "/usr/share/sgml/docbook/dtd/xml/4.1.2/") nil) ("local.notation.class" text "" nil) ("notation.class" text "BMP| CGM-CHAR | CGM-BINARY | CGM-CLEAR | DITROFF | DVI + | EPS | EQN | FAX | GIF | GIF87a | GIF89a + | JPG | JPEG | IGES | PCX + | PIC | PNG | PS | SGML | TBL | TEX | TIFF | WMF | WPG + | linespecific + " nil) ("dbcent.module" text "INCLUDE" nil) ("dbcent" text ("-//OASIS//ENTITIES DocBook XML Character Entities V4.1.2//EN" "dbcentx.mod" . "/usr/share/sgml/docbook/dtd/xml/4.1.2/") nil) ("ISOamsa.module" text "INCLUDE" nil) ("ISOamsa" text ("ISO 8879:1986//ENTITIES Added Math Symbols: Arrow Relations//EN//XML" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOamsa.ent" . "/usr/share/sgml/docbook/dtd/xml/4.1.2/") nil) ("ISOamsb.module" text "INCLUDE" nil) ("ISOamsb" text ("ISO 8879:1986//ENTITIES Added Math Symbols: Binary Operators//EN//XML" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOamsb.ent" . "/usr/share/sgml/docbook/dtd/xml/4.1.2/") nil) ("ISOamsc.module" text "INCLUDE" nil) ("ISOamsc" text ("ISO 8879:1986//ENTITIES Added Math Symbols: Delimiters//EN//XML" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOamsc.ent" . "/usr/share/sgml/docbook/dtd/xml/4.1.2/") nil) ("ISOamsn.module" text "INCLUDE" nil) ("ISOamsn" text ("ISO 8879:1986//ENTITIES Added Math Symbols: Negated Relations//EN//XML" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOamsn.ent" . "/usr/share/sgml/docbook/dtd/xml/4.1.2/") nil) ("ISOamso.module" text "INCLUDE" nil) ("ISOamso" text ("ISO 8879:1986//ENTITIES Added Math Symbols: Ordinary//EN//XML" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOamso.ent" . "/usr/share/sgml/docbook/dtd/xml/4.1.2/") nil) ("ISOamsr.module" text "INCLUDE" nil) ("ISOamsr" text ("ISO 8879:1986//ENTITIES Added Math Symbols: Relations//EN//XML" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOamsr.ent" . "/usr/share/sgml/docbook/dtd/xml/4.1.2/") nil) ("ISObox.module" text "INCLUDE" nil) ("ISObox" text ("ISO 8879:1986//ENTITIES Box and Line Drawing//EN//XML" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISObox.ent" . "/usr/share/sgml/docbook/dtd/xml/4.1.2/") nil) ("ISOcyr1.module" text "INCLUDE" nil) ("ISOcyr1" text ("ISO 8879:1986//ENTITIES Russian Cyrillic//EN//XML" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOcyr1.ent" . "/usr/share/sgml/docbook/dtd/xml/4.1.2/") nil) ("ISOcyr2.module" text "INCLUDE" nil) ("ISOcyr2" text ("ISO 8879:1986//ENTITIES Non-Russian Cyrillic//EN//XML" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOcyr2.ent" . "/usr/share/sgml/docbook/dtd/xml/4.1.2/") nil) ("ISOdia.module" text "INCLUDE" nil) ("ISOdia" text ("ISO 8879:1986//ENTITIES Diacritical Marks//EN//XML" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOdia.ent" . "/usr/share/sgml/docbook/dtd/xml/4.1.2/") nil) ("ISOgrk1.module" text "INCLUDE" nil) ("ISOgrk1" text ("ISO 8879:1986//ENTITIES Greek Letters//EN//XML" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOgrk1.ent" . "/usr/share/sgml/docbook/dtd/xml/4.1.2/") nil) ("ISOgrk2.module" text "INCLUDE" nil) ("ISOgrk2" text ("ISO 8879:1986//ENTITIES Monotoniko Greek//EN//XML" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOgrk2.ent" . "/usr/share/sgml/docbook/dtd/xml/4.1.2/") nil) ("ISOgrk3.module" text "INCLUDE" nil) ("ISOgrk3" text ("ISO 8879:1986//ENTITIES Greek Symbols//EN//XML" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOgrk3.ent" . "/usr/share/sgml/docbook/dtd/xml/4.1.2/") nil) ("ISOgrk4.module" text "INCLUDE" nil) ("ISOgrk4" text ("ISO 8879:1986//ENTITIES Alternative Greek Symbols//EN//XML" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOgrk4.ent" . "/usr/share/sgml/docbook/dtd/xml/4.1.2/") nil) ("ISOlat1.module" text "INCLUDE" nil) ("ISOlat1" text ("ISO 8879:1986//ENTITIES Added Latin 1//EN//XML" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOlat1.ent" . "/usr/share/sgml/docbook/dtd/xml/4.1.2/") nil) ("ISOlat2.module" text "INCLUDE" nil) ("ISOlat2" text ("ISO 8879:1986//ENTITIES Added Latin 2//EN//XML" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOlat2.ent" . "/usr/share/sgml/docbook/dtd/xml/4.1.2/") nil) ("ISOnum.module" text "INCLUDE" nil) ("ISOnum" text ("ISO 8879:1986//ENTITIES Numeric and Special Graphic//EN//XML" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOnum.ent" . "/usr/share/sgml/docbook/dtd/xml/4.1.2/") nil) ("ISOpub.module" text "INCLUDE" nil) ("ISOpub" text ("ISO 8879:1986//ENTITIES Publishing//EN//XML" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOpub.ent" . "/usr/share/sgml/docbook/dtd/xml/4.1.2/") nil) ("ISOtech.module" text "INCLUDE" nil) ("ISOtech" text ("ISO 8879:1986//ENTITIES General Technical//EN//XML" "/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOtech.ent" . "/usr/share/sgml/docbook/dtd/xml/4.1.2/") nil) ("dbpool.module" text "INCLUDE" nil) ("dbpool" text ("-//OASIS//ELEMENTS DocBook XML Information Pool V4.1.2//EN" "dbpoolx.mod" . "/usr/share/sgml/docbook/dtd/xml/4.1.2/") nil) ("yesorno.attvals" text "CDATA" nil) ("dbpool.redecl.module" text "IGNORE" nil) ("local.ndxterm.class" text "" nil) ("ndxterm.class" text "indexterm " nil) ("local.list.class" text "" nil) ("list.class" text "calloutlist|glosslist|itemizedlist|orderedlist|segmentedlist + |simplelist|variablelist " nil) ("local.admon.class" text "" nil) ("admon.class" text "caution|important|note|tip|warning " nil) ("local.linespecific.class" text "" nil) ("linespecific.class" text "literallayout|programlisting|programlistingco|screen + |screenco|screenshot " nil) ("local.method.synop.class" text "" nil) ("method.synop.class" text "constructorsynopsis + |destructorsynopsis + |methodsynopsis " nil) ("local.synop.class" text "" nil) ("synop.class" text "synopsis|cmdsynopsis|funcsynopsis + |classsynopsis|fieldsynopsis + |constructorsynopsis + |destructorsynopsis + |methodsynopsis " nil) ("local.para.class" text "" nil) ("para.class" text "formalpara|para|simpara " nil) ("local.informal.class" text "" nil) ("informal.class" text "address|blockquote + |graphic|graphicco|mediaobject|mediaobjectco + |informalequation + |informalexample + |informalfigure + |informaltable " nil) ("local.formal.class" text "" nil) ("formal.class" text "equation|example|figure|table " nil) ("ebnf.block.hook" text "" nil) ("local.compound.class" text "" nil) ("compound.class" text "msgset|procedure|sidebar|qandaset + + " nil) ("local.genobj.class" text "" nil) ("genobj.class" text "anchor|bridgehead|remark|highlights + " nil) ("local.descobj.class" text "" nil) ("descobj.class" text "abstract|authorblurb|epigraph + " nil) ("local.xref.char.class" text "" nil) ("xref.char.class" text "footnoteref|xref " nil) ("local.gen.char.class" text "" nil) ("gen.char.class" text "abbrev|acronym|citation|citerefentry|citetitle|emphasis + |firstterm|foreignphrase|glossterm|footnote|phrase + |quote|trademark|wordasword " nil) ("local.link.char.class" text "" nil) ("link.char.class" text "link|olink|ulink " nil) ("ebnf.inline.hook" text "" nil) ("local.tech.char.class" text "" nil) ("tech.char.class" text "action|application + |classname|methodname|interfacename|exceptionname + |ooclass|oointerface|ooexception + |command|computeroutput + |database|email|envar|errorcode|errorname|errortype|filename + |function|guibutton|guiicon|guilabel|guimenu|guimenuitem + |guisubmenu|hardware|interface|keycap + |keycode|keycombo|keysym|literal|constant|markup|medialabel + |menuchoice|mousebutton|option|optional|parameter + |prompt|property|replaceable|returnvalue|sgmltag|structfield + |structname|symbol|systemitem|token|type|userinput|varname + + " nil) ("local.base.char.class" text "" nil) ("base.char.class" text "anchor " nil) ("local.docinfo.char.class" text "" nil) ("docinfo.char.class" text "author|authorinitials|corpauthor|modespec|othercredit + |productname|productnumber|revhistory + " nil) ("local.other.char.class" text "" nil) ("other.char.class" text "remark|subscript|superscript " nil) ("local.inlineobj.char.class" text "" nil) ("inlineobj.char.class" text "inlinegraphic|inlinemediaobject|inlineequation " nil) ("local.component.mix" text "" nil) ("component.mix" text "calloutlist|glosslist|itemizedlist|orderedlist|segmentedlist + |simplelist|variablelist |caution|important|note|tip|warning + |literallayout|programlisting|programlistingco|screen + |screenco|screenshot |synopsis|cmdsynopsis|funcsynopsis + |classsynopsis|fieldsynopsis + |constructorsynopsis + |destructorsynopsis + |methodsynopsis + |formalpara|para|simpara |address|blockquote + |graphic|graphicco|mediaobject|mediaobjectco + |informalequation + |informalexample + |informalfigure + |informaltable + |equation|example|figure|table |msgset|procedure|sidebar|qandaset + + + |anchor|bridgehead|remark|highlights + |abstract|authorblurb|epigraph + + |indexterm |beginpage + " nil) ("local.sidebar.mix" text "" nil) ("sidebar.mix" text "calloutlist|glosslist|itemizedlist|orderedlist|segmentedlist + |simplelist|variablelist |caution|important|note|tip|warning + |literallayout|programlisting|programlistingco|screen + |screenco|screenshot |synopsis|cmdsynopsis|funcsynopsis + |classsynopsis|fieldsynopsis + |constructorsynopsis + |destructorsynopsis + |methodsynopsis + |formalpara|para|simpara |address|blockquote + |graphic|graphicco|mediaobject|mediaobjectco + |informalequation + |informalexample + |informalfigure + |informaltable + |equation|example|figure|table |procedure + |anchor|bridgehead|remark|highlights + + |indexterm |beginpage + " nil) ("local.qandaset.mix" text "" nil) ("qandaset.mix" text "calloutlist|glosslist|itemizedlist|orderedlist|segmentedlist + |simplelist|variablelist |caution|important|note|tip|warning + |literallayout|programlisting|programlistingco|screen + |screenco|screenshot |synopsis|cmdsynopsis|funcsynopsis + |classsynopsis|fieldsynopsis + |constructorsynopsis + |destructorsynopsis + |methodsynopsis + |formalpara|para|simpara |address|blockquote + |graphic|graphicco|mediaobject|mediaobjectco + |informalequation + |informalexample + |informalfigure + |informaltable + |equation|example|figure|table |procedure + |anchor|bridgehead|remark|highlights + + |indexterm + " nil) ("local.revdescription.mix" text "" nil) ("revdescription.mix" text "calloutlist|glosslist|itemizedlist|orderedlist|segmentedlist + |simplelist|variablelist |caution|important|note|tip|warning + |literallayout|programlisting|programlistingco|screen + |screenco|screenshot |synopsis|cmdsynopsis|funcsynopsis + |classsynopsis|fieldsynopsis + |constructorsynopsis + |destructorsynopsis + |methodsynopsis + |formalpara|para|simpara |address|blockquote + |graphic|graphicco|mediaobject|mediaobjectco + |informalequation + |informalexample + |informalfigure + |informaltable + |equation|example|figure|table |procedure + |anchor|bridgehead|remark|highlights + + |indexterm + " nil) ("local.footnote.mix" text "" nil) ("footnote.mix" text "calloutlist|glosslist|itemizedlist|orderedlist|segmentedlist + |simplelist|variablelist + |literallayout|programlisting|programlistingco|screen + |screenco|screenshot |synopsis|cmdsynopsis|funcsynopsis + |classsynopsis|fieldsynopsis + |constructorsynopsis + |destructorsynopsis + |methodsynopsis + |formalpara|para|simpara |address|blockquote + |graphic|graphicco|mediaobject|mediaobjectco + |informalequation + |informalexample + |informalfigure + |informaltable + " nil) ("local.example.mix" text "" nil) ("example.mix" text "calloutlist|glosslist|itemizedlist|orderedlist|segmentedlist + |simplelist|variablelist + |literallayout|programlisting|programlistingco|screen + |screenco|screenshot |synopsis|cmdsynopsis|funcsynopsis + |classsynopsis|fieldsynopsis + |constructorsynopsis + |destructorsynopsis + |methodsynopsis + |formalpara|para|simpara |address|blockquote + |graphic|graphicco|mediaobject|mediaobjectco + |informalequation + |informalexample + |informalfigure + |informaltable + |indexterm |beginpage + " nil) ("local.highlights.mix" text "" nil) ("highlights.mix" text "calloutlist|glosslist|itemizedlist|orderedlist|segmentedlist + |simplelist|variablelist |caution|important|note|tip|warning + |formalpara|para|simpara + |indexterm + " nil) ("local.para.mix" text "" nil) ("para.mix" text "calloutlist|glosslist|itemizedlist|orderedlist|segmentedlist + |simplelist|variablelist |caution|important|note|tip|warning + |literallayout|programlisting|programlistingco|screen + |screenco|screenshot + |address|blockquote + |graphic|graphicco|mediaobject|mediaobjectco + |informalequation + |informalexample + |informalfigure + |informaltable + |equation|example|figure|table + " nil) ("local.admon.mix" text "" nil) ("admon.mix" text "calloutlist|glosslist|itemizedlist|orderedlist|segmentedlist + |simplelist|variablelist + |literallayout|programlisting|programlistingco|screen + |screenco|screenshot |synopsis|cmdsynopsis|funcsynopsis + |classsynopsis|fieldsynopsis + |constructorsynopsis + |destructorsynopsis + |methodsynopsis + |formalpara|para|simpara |address|blockquote + |graphic|graphicco|mediaobject|mediaobjectco + |informalequation + |informalexample + |informalfigure + |informaltable + |equation|example|figure|table |procedure|sidebar + |anchor|bridgehead|remark + |indexterm |beginpage + " nil) ("local.figure.mix" text "" nil) ("figure.mix" text "literallayout|programlisting|programlistingco|screen + |screenco|screenshot |synopsis|cmdsynopsis|funcsynopsis + |classsynopsis|fieldsynopsis + |constructorsynopsis + |destructorsynopsis + |methodsynopsis + |address|blockquote + |graphic|graphicco|mediaobject|mediaobjectco + |informalequation + |informalexample + |informalfigure + |informaltable + |indexterm |beginpage + " nil) ("local.tabentry.mix" text "" nil) ("tabentry.mix" text "calloutlist|glosslist|itemizedlist|orderedlist|segmentedlist + |simplelist|variablelist |caution|important|note|tip|warning + |literallayout|programlisting|programlistingco|screen + |screenco|screenshot + |formalpara|para|simpara |graphic|mediaobject + " nil) ("local.glossdef.mix" text "" nil) ("glossdef.mix" text "calloutlist|glosslist|itemizedlist|orderedlist|segmentedlist + |simplelist|variablelist + |literallayout|programlisting|programlistingco|screen + |screenco|screenshot |synopsis|cmdsynopsis|funcsynopsis + |classsynopsis|fieldsynopsis + |constructorsynopsis + |destructorsynopsis + |methodsynopsis + |formalpara|para|simpara |address|blockquote + |graphic|graphicco|mediaobject|mediaobjectco + |informalequation + |informalexample + |informalfigure + |informaltable + |equation|example|figure|table + |remark + |indexterm |beginpage + " nil) ("local.legalnotice.mix" text "" nil) ("legalnotice.mix" text "calloutlist|glosslist|itemizedlist|orderedlist|segmentedlist + |simplelist|variablelist |caution|important|note|tip|warning + |literallayout|programlisting|programlistingco|screen + |screenco|screenshot + |formalpara|para|simpara |blockquote + |indexterm |beginpage + " nil) ("local.textobject.mix" text "" nil) ("textobject.mix" text "calloutlist|glosslist|itemizedlist|orderedlist|segmentedlist + |simplelist|variablelist |caution|important|note|tip|warning + |literallayout|programlisting|programlistingco|screen + |screenco|screenshot + |formalpara|para|simpara |blockquote + " nil) ("local.mediaobject.mix" text "" nil) ("mediaobject.mix" text "videoobject|audioobject|imageobject " nil) ("forminlines.hook" text "" nil) ("local.para.char.mix" text "" nil) ("para.char.mix" text "#PCDATA + |footnoteref|xref |abbrev|acronym|citation|citerefentry|citetitle|emphasis + |firstterm|foreignphrase|glossterm|footnote|phrase + |quote|trademark|wordasword + |link|olink|ulink |action|application + |classname|methodname|interfacename|exceptionname + |ooclass|oointerface|ooexception + |command|computeroutput + |database|email|envar|errorcode|errorname|errortype|filename + |function|guibutton|guiicon|guilabel|guimenu|guimenuitem + |guisubmenu|hardware|interface|keycap + |keycode|keycombo|keysym|literal|constant|markup|medialabel + |menuchoice|mousebutton|option|optional|parameter + |prompt|property|replaceable|returnvalue|sgmltag|structfield + |structname|symbol|systemitem|token|type|userinput|varname + + + |anchor |author|authorinitials|corpauthor|modespec|othercredit + |productname|productnumber|revhistory + + |remark|subscript|superscript |inlinegraphic|inlinemediaobject|inlineequation + |synopsis|cmdsynopsis|funcsynopsis + |classsynopsis|fieldsynopsis + |constructorsynopsis + |destructorsynopsis + |methodsynopsis + |indexterm |beginpage + + " nil) ("local.title.char.mix" text "" nil) ("title.char.mix" text "#PCDATA + |footnoteref|xref |abbrev|acronym|citation|citerefentry|citetitle|emphasis + |firstterm|foreignphrase|glossterm|footnote|phrase + |quote|trademark|wordasword + |link|olink|ulink |action|application + |classname|methodname|interfacename|exceptionname + |ooclass|oointerface|ooexception + |command|computeroutput + |database|email|envar|errorcode|errorname|errortype|filename + |function|guibutton|guiicon|guilabel|guimenu|guimenuitem + |guisubmenu|hardware|interface|keycap + |keycode|keycombo|keysym|literal|constant|markup|medialabel + |menuchoice|mousebutton|option|optional|parameter + |prompt|property|replaceable|returnvalue|sgmltag|structfield + |structname|symbol|systemitem|token|type|userinput|varname + + + |anchor |author|authorinitials|corpauthor|modespec|othercredit + |productname|productnumber|revhistory + + |remark|subscript|superscript |inlinegraphic|inlinemediaobject|inlineequation + |indexterm + " nil) ("local.ndxterm.char.mix" text "" nil) ("ndxterm.char.mix" text "#PCDATA + |footnoteref|xref |abbrev|acronym|citation|citerefentry|citetitle|emphasis + |firstterm|foreignphrase|glossterm|footnote|phrase + |quote|trademark|wordasword + |link|olink|ulink |action|application + |classname|methodname|interfacename|exceptionname + |ooclass|oointerface|ooexception + |command|computeroutput + |database|email|envar|errorcode|errorname|errortype|filename + |function|guibutton|guiicon|guilabel|guimenu|guimenuitem + |guisubmenu|hardware|interface|keycap + |keycode|keycombo|keysym|literal|constant|markup|medialabel + |menuchoice|mousebutton|option|optional|parameter + |prompt|property|replaceable|returnvalue|sgmltag|structfield + |structname|symbol|systemitem|token|type|userinput|varname + + + |anchor |author|authorinitials|corpauthor|modespec|othercredit + |productname|productnumber|revhistory + + |remark|subscript|superscript |inlinegraphic|inlinemediaobject + " nil) ("local.cptr.char.mix" text "" nil) ("cptr.char.mix" text "#PCDATA + |link|olink|ulink |action|application + |classname|methodname|interfacename|exceptionname + |ooclass|oointerface|ooexception + |command|computeroutput + |database|email|envar|errorcode|errorname|errortype|filename + |function|guibutton|guiicon|guilabel|guimenu|guimenuitem + |guisubmenu|hardware|interface|keycap + |keycode|keycombo|keysym|literal|constant|markup|medialabel + |menuchoice|mousebutton|option|optional|parameter + |prompt|property|replaceable|returnvalue|sgmltag|structfield + |structname|symbol|systemitem|token|type|userinput|varname + + + |anchor + |remark|subscript|superscript |inlinegraphic|inlinemediaobject + |indexterm |beginpage + " nil) ("local.smallcptr.char.mix" text "" nil) ("smallcptr.char.mix" text "#PCDATA + |replaceable + |inlinegraphic|inlinemediaobject + |indexterm |beginpage + " nil) ("local.word.char.mix" text "" nil) ("word.char.mix" text "#PCDATA + |acronym|emphasis|trademark + |link|olink|ulink + |anchor + |remark|subscript|superscript |inlinegraphic|inlinemediaobject + |indexterm |beginpage + " nil) ("local.docinfo.char.mix" text "" nil) ("docinfo.char.mix" text "#PCDATA + |link|olink|ulink + |emphasis|trademark + |replaceable + |remark|subscript|superscript |inlinegraphic|inlinemediaobject + |indexterm + " nil) ("formalobject.title.content" text "title, titleabbrev?" nil) ("arch.attrib" text "arch CDATA #IMPLIED" nil) ("condition.attrib" text "condition CDATA #IMPLIED" nil) ("conformance.attrib" text "conformance NMTOKENS #IMPLIED" nil) ("os.attrib" text "os CDATA #IMPLIED" nil) ("revision.attrib" text "revision CDATA #IMPLIED" nil) ("security.attrib" text "security CDATA #IMPLIED" nil) ("userlevel.attrib" text "userlevel CDATA #IMPLIED" nil) ("vendor.attrib" text "vendor CDATA #IMPLIED" nil) ("local.effectivity.attrib" text "" nil) ("effectivity.attrib" text "arch CDATA #IMPLIED + condition CDATA #IMPLIED + conformance NMTOKENS #IMPLIED + os CDATA #IMPLIED + revision CDATA #IMPLIED + security CDATA #IMPLIED + userlevel CDATA #IMPLIED + vendor CDATA #IMPLIED + " nil) ("id.attrib" text "id ID #IMPLIED" nil) ("idreq.attrib" text "id ID #REQUIRED" nil) ("lang.attrib" text "lang CDATA #IMPLIED" nil) ("remap.attrib" text "remap CDATA #IMPLIED" nil) ("role.attrib" text "role CDATA #IMPLIED" nil) ("xreflabel.attrib" text "xreflabel CDATA #IMPLIED" nil) ("revisionflag.attrib" text "revisionflag (changed + |added + |deleted + |off) #IMPLIED" nil) ("local.common.attrib" text "" nil) ("common.attrib" text "id ID #IMPLIED + lang CDATA #IMPLIED + remap CDATA #IMPLIED + xreflabel CDATA #IMPLIED + revisionflag (changed + |added + |deleted + |off) #IMPLIED + arch CDATA #IMPLIED + condition CDATA #IMPLIED + conformance NMTOKENS #IMPLIED + os CDATA #IMPLIED + revision CDATA #IMPLIED + security CDATA #IMPLIED + userlevel CDATA #IMPLIED + vendor CDATA #IMPLIED + + " nil) ("idreq.common.attrib" text "id ID #REQUIRED + lang CDATA #IMPLIED + remap CDATA #IMPLIED + xreflabel CDATA #IMPLIED + revisionflag (changed + |added + |deleted + |off) #IMPLIED + arch CDATA #IMPLIED + condition CDATA #IMPLIED + conformance NMTOKENS #IMPLIED + os CDATA #IMPLIED + revision CDATA #IMPLIED + security CDATA #IMPLIED + userlevel CDATA #IMPLIED + vendor CDATA #IMPLIED + + " nil) ("local.graphics.attrib" text "" nil) ("graphics.attrib" text " + entityref ENTITY #IMPLIED + fileref CDATA #IMPLIED + format (BMP| CGM-CHAR | CGM-BINARY | CGM-CLEAR | DITROFF | DVI + | EPS | EQN | FAX | GIF | GIF87a | GIF89a + | JPG | JPEG | IGES | PCX + | PIC | PNG | PS | SGML | TBL | TEX | TIFF | WMF | WPG + | linespecific + ) #IMPLIED + srccredit CDATA #IMPLIED + width CDATA #IMPLIED + depth CDATA #IMPLIED + align (left + |right + |center) #IMPLIED + scale CDATA #IMPLIED + scalefit CDATA + #IMPLIED + " nil) ("local.keyaction.attrib" text "" nil) ("keyaction.attrib" text " + action (click + |double-click + |press + |seq + |simul + |other) #IMPLIED + otheraction CDATA #IMPLIED + " nil) ("label.attrib" text "label CDATA #IMPLIED" nil) ("linespecific.attrib" text "format NOTATION + (linespecific) 'linespecific' + linenumbering (numbered|unnumbered) #IMPLIED" nil) ("linkend.attrib" text "linkend IDREF #IMPLIED" nil) ("linkendreq.attrib" text "linkend IDREF #REQUIRED" nil) ("linkends.attrib" text "linkends IDREFS #IMPLIED" nil) ("local.mark.attrib" text "" nil) ("mark.attrib" text "mark CDATA #IMPLIED + " nil) ("moreinfo.attrib" text "moreinfo (refentry|none) 'none'" nil) ("pagenum.attrib" text "pagenum CDATA #IMPLIED" nil) ("local.status.attrib" text "" nil) ("status.attrib" text "status CDATA #IMPLIED + " nil) ("width.attrib" text "width CDATA #IMPLIED" nil) ("title.module" text "INCLUDE" nil) ("local.title.attrib" text "" nil) ("title.role.attrib" text "role CDATA #IMPLIED" nil) ("title.element" text "INCLUDE" nil) ("title.attlist" text "INCLUDE" nil) ("titleabbrev.module" text "INCLUDE" nil) ("local.titleabbrev.attrib" text "" nil) ("titleabbrev.role.attrib" text "role CDATA #IMPLIED" nil) ("titleabbrev.element" text "INCLUDE" nil) ("titleabbrev.attlist" text "INCLUDE" nil) ("subtitle.module" text "INCLUDE" nil) ("local.subtitle.attrib" text "" nil) ("subtitle.role.attrib" text "role CDATA #IMPLIED" nil) ("subtitle.element" text "INCLUDE" nil) ("subtitle.attlist" text "INCLUDE" nil) ("local.person.ident.mix" text "" nil) ("person.ident.mix" text "honorific|firstname|surname|lineage|othername|affiliation + |authorblurb|contrib " nil) ("local.bibliocomponent.mix" text "" nil) ("bibliocomponent.mix" text "abbrev|abstract|address|artpagenums|author + |authorgroup|authorinitials|bibliomisc|biblioset + |collab|confgroup|contractnum|contractsponsor + |copyright|corpauthor|corpname|date|edition + |editor|invpartnumber|isbn|issn|issuenum|orgname + |othercredit|pagenums|printhistory|productname + |productnumber|pubdate|publisher|publishername + |pubsnumber|releaseinfo|revhistory|seriesvolnums + |subtitle|title|titleabbrev|volumenum|citetitle + |honorific|firstname|surname|lineage|othername|affiliation + |authorblurb|contrib + |indexterm + " nil) ("biblioentry.module" text "INCLUDE" nil) ("local.biblioentry.attrib" text "" nil) ("biblioentry.role.attrib" text "role CDATA #IMPLIED" nil) ("biblioentry.element" text "INCLUDE" nil) ("biblioentry.attlist" text "INCLUDE" nil) ("bibliomixed.module" text "INCLUDE" nil) ("local.bibliomixed.attrib" text "" nil) ("bibliomixed.role.attrib" text "role CDATA #IMPLIED" nil) ("bibliomixed.element" text "INCLUDE" nil) ("bibliomixed.attlist" text "INCLUDE" nil) ("articleinfo.module" text "INCLUDE" nil) ("local.articleinfo.attrib" text "" nil) ("articleinfo.role.attrib" text "role CDATA #IMPLIED" nil) ("articleinfo.element" text "INCLUDE" nil) ("articleinfo.attlist" text "INCLUDE" nil) ("biblioset.module" text "INCLUDE" nil) ("local.biblioset.attrib" text "" nil) ("biblioset.role.attrib" text "role CDATA #IMPLIED" nil) ("biblioset.element" text "INCLUDE" nil) ("biblioset.attlist" text "INCLUDE" nil) ("bibliomset.module" text "INCLUDE" nil) ("bibliomset.role.attrib" text "role CDATA #IMPLIED" nil) ("local.bibliomset.attrib" text "" nil) ("bibliomset.element" text "INCLUDE" nil) ("bibliomset.attlist" text "INCLUDE" nil) ("bibliomisc.module" text "INCLUDE" nil) ("local.bibliomisc.attrib" text "" nil) ("bibliomisc.role.attrib" text "role CDATA #IMPLIED" nil) ("bibliomisc.element" text "INCLUDE" nil) ("bibliomisc.attlist" text "INCLUDE" nil) ("subjectset.content.module" text "INCLUDE" nil) ("subjectset.module" text "INCLUDE" nil) ("local.subjectset.attrib" text "" nil) ("subjectset.role.attrib" text "role CDATA #IMPLIED" nil) ("subjectset.element" text "INCLUDE" nil) ("subjectset.attlist" text "INCLUDE" nil) ("subject.module" text "INCLUDE" nil) ("local.subject.attrib" text "" nil) ("subject.role.attrib" text "role CDATA #IMPLIED" nil) ("subject.element" text "INCLUDE" nil) ("subject.attlist" text "INCLUDE" nil) ("subjectterm.module" text "INCLUDE" nil) ("local.subjectterm.attrib" text "" nil) ("subjectterm.role.attrib" text "role CDATA #IMPLIED" nil) ("subjectterm.element" text "INCLUDE" nil) ("subjectterm.attlist" text "INCLUDE" nil) ("keywordset.content.module" text "INCLUDE" nil) ("keywordset.module" text "INCLUDE" nil) ("local.keywordset.attrib" text "" nil) ("keywordset.role.attrib" text "role CDATA #IMPLIED" nil) ("keywordset.element" text "INCLUDE" nil) ("keywordset.attlist" text "INCLUDE" nil) ("keyword.module" text "INCLUDE" nil) ("local.keyword.attrib" text "" nil) ("keyword.role.attrib" text "role CDATA #IMPLIED" nil) ("keyword.element" text "INCLUDE" nil) ("keyword.attlist" text "INCLUDE" nil) ("itermset.module" text "INCLUDE" nil) ("local.itermset.attrib" text "" nil) ("itermset.role.attrib" text "role CDATA #IMPLIED" nil) ("itermset.element" text "INCLUDE" nil) ("itermset.attlist" text "INCLUDE" nil) ("msgset.content.module" text "INCLUDE" nil) ("msgset.module" text "INCLUDE" nil) ("local.msgset.attrib" text "" nil) ("msgset.role.attrib" text "role CDATA #IMPLIED" nil) ("msgset.element" text "INCLUDE" nil) ("msgset.attlist" text "INCLUDE" nil) ("msgentry.module" text "INCLUDE" nil) ("local.msgentry.attrib" text "" nil) ("msgentry.role.attrib" text "role CDATA #IMPLIED" nil) ("msgentry.element" text "INCLUDE" nil) ("msgentry.attlist" text "INCLUDE" nil) ("simplemsgentry.module" text "INCLUDE" nil) ("local.simplemsgentry.attrib" text "" nil) ("simplemsgentry.role.attrib" text "role CDATA #IMPLIED" nil) ("simplemsgentry.element" text "INCLUDE" nil) ("simplemsgentry.attlist" text "INCLUDE" nil) ("msg.module" text "INCLUDE" nil) ("local.msg.attrib" text "" nil) ("msg.role.attrib" text "role CDATA #IMPLIED" nil) ("msg.element" text "INCLUDE" nil) ("msg.attlist" text "INCLUDE" nil) ("msgmain.module" text "INCLUDE" nil) ("local.msgmain.attrib" text "" nil) ("msgmain.role.attrib" text "role CDATA #IMPLIED" nil) ("msgmain.element" text "INCLUDE" nil) ("msgmain.attlist" text "INCLUDE" nil) ("msgsub.module" text "INCLUDE" nil) ("local.msgsub.attrib" text "" nil) ("msgsub.role.attrib" text "role CDATA #IMPLIED" nil) ("msgsub.element" text "INCLUDE" nil) ("msgsub.attlist" text "INCLUDE" nil) ("msgrel.module" text "INCLUDE" nil) ("local.msgrel.attrib" text "" nil) ("msgrel.role.attrib" text "role CDATA #IMPLIED" nil) ("msgrel.element" text "INCLUDE" nil) ("msgrel.attlist" text "INCLUDE" nil) ("msginfo.module" text "INCLUDE" nil) ("local.msginfo.attrib" text "" nil) ("msginfo.role.attrib" text "role CDATA #IMPLIED" nil) ("msginfo.element" text "INCLUDE" nil) ("msginfo.attlist" text "INCLUDE" nil) ("msglevel.module" text "INCLUDE" nil) ("local.msglevel.attrib" text "" nil) ("msglevel.role.attrib" text "role CDATA #IMPLIED" nil) ("msglevel.element" text "INCLUDE" nil) ("msglevel.attlist" text "INCLUDE" nil) ("msgorig.module" text "INCLUDE" nil) ("local.msgorig.attrib" text "" nil) ("msgorig.role.attrib" text "role CDATA #IMPLIED" nil) ("msgorig.element" text "INCLUDE" nil) ("msgorig.attlist" text "INCLUDE" nil) ("msgaud.module" text "INCLUDE" nil) ("local.msgaud.attrib" text "" nil) ("msgaud.role.attrib" text "role CDATA #IMPLIED" nil) ("msgaud.element" text "INCLUDE" nil) ("msgaud.attlist" text "INCLUDE" nil) ("msgexplan.module" text "INCLUDE" nil) ("local.msgexplan.attrib" text "" nil) ("msgexplan.role.attrib" text "role CDATA #IMPLIED" nil) ("msgexplan.element" text "INCLUDE" nil) ("msgexplan.attlist" text "INCLUDE" nil) ("qandset.content.module" text "INCLUDE" nil) ("qandset.module" text "INCLUDE" nil) ("local.qandset.attrib" text "" nil) ("qandset.role.attrib" text "role CDATA #IMPLIED" nil) ("qandset.element" text "INCLUDE" nil) ("qandset.attlist" text "INCLUDE" nil) ("qandadiv.module" text "INCLUDE" nil) ("local.qandadiv.attrib" text "" nil) ("qandadiv.role.attrib" text "role CDATA #IMPLIED" nil) ("qandadiv.element" text "INCLUDE" nil) ("qandadiv.attlist" text "INCLUDE" nil) ("qandaentry.module" text "INCLUDE" nil) ("local.qandaentry.attrib" text "" nil) ("qandaentry.role.attrib" text "role CDATA #IMPLIED" nil) ("qandaentry.element" text "INCLUDE" nil) ("qandaentry.attlist" text "INCLUDE" nil) ("question.module" text "INCLUDE" nil) ("local.question.attrib" text "" nil) ("question.role.attrib" text "role CDATA #IMPLIED" nil) ("question.element" text "INCLUDE" nil) ("question.attlist" text "INCLUDE" nil) ("answer.module" text "INCLUDE" nil) ("local.answer.attrib" text "" nil) ("answer.role.attrib" text "role CDATA #IMPLIED" nil) ("answer.element" text "INCLUDE" nil) ("answer.attlist" text "INCLUDE" nil) ("label.module" text "INCLUDE" nil) ("local.label.attrib" text "" nil) ("label.role.attrib" text "role CDATA #IMPLIED" nil) ("label.element" text "INCLUDE" nil) ("label.attlist" text "INCLUDE" nil) ("procedure.content.module" text "INCLUDE" nil) ("procedure.module" text "INCLUDE" nil) ("local.procedure.attrib" text "" nil) ("procedure.role.attrib" text "role CDATA #IMPLIED" nil) ("procedure.element" text "INCLUDE" nil) ("procedure.attlist" text "INCLUDE" nil) ("step.module" text "INCLUDE" nil) ("local.step.attrib" text "" nil) ("step.role.attrib" text "role CDATA #IMPLIED" nil) ("step.element" text "INCLUDE" nil) ("step.attlist" text "INCLUDE" nil) ("substeps.module" text "INCLUDE" nil) ("local.substeps.attrib" text "" nil) ("substeps.role.attrib" text "role CDATA #IMPLIED" nil) ("substeps.element" text "INCLUDE" nil) ("substeps.attlist" text "INCLUDE" nil) ("sidebar.content.model" text "INCLUDE" nil) ("sidebarinfo.module" text "INCLUDE" nil) ("local.sidebarinfo.attrib" text "" nil) ("sidebarinfo.role.attrib" text "role CDATA #IMPLIED" nil) ("sidebarinfo.element" text "INCLUDE" nil) ("sidebarinfo.attlist" text "INCLUDE" nil) ("sidebar.module" text "INCLUDE" nil) ("local.sidebar.attrib" text "" nil) ("sidebar.role.attrib" text "role CDATA #IMPLIED" nil) ("sidebar.element" text "INCLUDE" nil) ("sidebar.attlist" text "INCLUDE" nil) ("abstract.module" text "INCLUDE" nil) ("local.abstract.attrib" text "" nil) ("abstract.role.attrib" text "role CDATA #IMPLIED" nil) ("abstract.element" text "INCLUDE" nil) ("abstract.attlist" text "INCLUDE" nil) ("authorblurb.module" text "INCLUDE" nil) ("local.authorblurb.attrib" text "" nil) ("authorblurb.role.attrib" text "role CDATA #IMPLIED" nil) ("authorblurb.element" text "INCLUDE" nil) ("authorblurb.attlist" text "INCLUDE" nil) ("blockquote.module" text "INCLUDE" nil) ("local.blockquote.attrib" text "" nil) ("blockquote.role.attrib" text "role CDATA #IMPLIED" nil) ("blockquote.element" text "INCLUDE" nil) ("blockquote.attlist" text "INCLUDE" nil) ("attribution.module" text "INCLUDE" nil) ("local.attribution.attrib" text "" nil) ("attribution.role.attrib" text "role CDATA #IMPLIED" nil) ("attribution.element" text "INCLUDE" nil) ("attribution.attlist" text "INCLUDE" nil) ("bridgehead.module" text "INCLUDE" nil) ("local.bridgehead.attrib" text "" nil) ("bridgehead.role.attrib" text "role CDATA #IMPLIED" nil) ("bridgehead.element" text "INCLUDE" nil) ("bridgehead.attlist" text "INCLUDE" nil) ("remark.module" text "INCLUDE" nil) ("local.remark.attrib" text "" nil) ("remark.role.attrib" text "role CDATA #IMPLIED" nil) ("remark.element" text "INCLUDE" nil) ("remark.attlist" text "INCLUDE" nil) ("epigraph.module" text "INCLUDE" nil) ("local.epigraph.attrib" text "" nil) ("epigraph.role.attrib" text "role CDATA #IMPLIED" nil) ("epigraph.element" text "INCLUDE" nil) ("epigraph.attlist" text "INCLUDE" nil) ("footnote.module" text "INCLUDE" nil) ("local.footnote.attrib" text "" nil) ("footnote.role.attrib" text "role CDATA #IMPLIED" nil) ("footnote.element" text "INCLUDE" nil) ("footnote.attlist" text "INCLUDE" nil) ("highlights.module" text "INCLUDE" nil) ("local.highlights.attrib" text "" nil) ("highlights.role.attrib" text "role CDATA #IMPLIED" nil) ("highlights.element" text "INCLUDE" nil) ("highlights.attlist" text "INCLUDE" nil) ("formalpara.module" text "INCLUDE" nil) ("local.formalpara.attrib" text "" nil) ("formalpara.role.attrib" text "role CDATA #IMPLIED" nil) ("formalpara.element" text "INCLUDE" nil) ("formalpara.attlist" text "INCLUDE" nil) ("para.module" text "INCLUDE" nil) ("local.para.attrib" text "" nil) ("para.role.attrib" text "role CDATA #IMPLIED" nil) ("para.element" text "INCLUDE" nil) ("para.attlist" text "INCLUDE" nil) ("simpara.module" text "INCLUDE" nil) ("local.simpara.attrib" text "" nil) ("simpara.role.attrib" text "role CDATA #IMPLIED" nil) ("simpara.element" text "INCLUDE" nil) ("simpara.attlist" text "INCLUDE" nil) ("admon.module" text "INCLUDE" nil) ("local.admon.attrib" text "" nil) ("admon.role.attrib" text "role CDATA #IMPLIED" nil) ("caution.element" text "INCLUDE" nil) ("caution.attlist" text "INCLUDE" nil) ("important.element" text "INCLUDE" nil) ("important.attlist" text "INCLUDE" nil) ("note.element" text "INCLUDE" nil) ("note.attlist" text "INCLUDE" nil) ("tip.element" text "INCLUDE" nil) ("tip.attlist" text "INCLUDE" nil) ("warning.element" text "INCLUDE" nil) ("warning.attlist" text "INCLUDE" nil) ("glosslist.module" text "INCLUDE" nil) ("local.glosslist.attrib" text "" nil) ("glosslist.role.attrib" text "role CDATA #IMPLIED" nil) ("glosslist.element" text "INCLUDE" nil) ("glosslist.attlist" text "INCLUDE" nil) ("glossentry.content.module" text "INCLUDE" nil) ("glossentry.module" text "INCLUDE" nil) ("local.glossentry.attrib" text "" nil) ("glossentry.role.attrib" text "role CDATA #IMPLIED" nil) ("glossentry.element" text "INCLUDE" nil) ("glossentry.attlist" text "INCLUDE" nil) ("glossdef.module" text "INCLUDE" nil) ("local.glossdef.attrib" text "" nil) ("glossdef.role.attrib" text "role CDATA #IMPLIED" nil) ("glossdef.element" text "INCLUDE" nil) ("glossdef.attlist" text "INCLUDE" nil) ("glosssee.module" text "INCLUDE" nil) ("local.glosssee.attrib" text "" nil) ("glosssee.role.attrib" text "role CDATA #IMPLIED" nil) ("glosssee.element" text "INCLUDE" nil) ("glosssee.attlist" text "INCLUDE" nil) ("glossseealso.module" text "INCLUDE" nil) ("local.glossseealso.attrib" text "" nil) ("glossseealso.role.attrib" text "role CDATA #IMPLIED" nil) ("glossseealso.element" text "INCLUDE" nil) ("glossseealso.attlist" text "INCLUDE" nil) ("itemizedlist.module" text "INCLUDE" nil) ("local.itemizedlist.attrib" text "" nil) ("itemizedlist.role.attrib" text "role CDATA #IMPLIED" nil) ("itemizedlist.element" text "INCLUDE" nil) ("itemizedlist.attlist" text "INCLUDE" nil) ("orderedlist.module" text "INCLUDE" nil) ("local.orderedlist.attrib" text "" nil) ("orderedlist.role.attrib" text "role CDATA #IMPLIED" nil) ("orderedlist.element" text "INCLUDE" nil) ("orderedlist.attlist" text "INCLUDE" nil) ("listitem.module" text "INCLUDE" nil) ("local.listitem.attrib" text "" nil) ("listitem.role.attrib" text "role CDATA #IMPLIED" nil) ("listitem.element" text "INCLUDE" nil) ("listitem.attlist" text "INCLUDE" nil) ("segmentedlist.content.module" text "INCLUDE" nil) ("segmentedlist.module" text "INCLUDE" nil) ("local.segmentedlist.attrib" text "" nil) ("segmentedlist.role.attrib" text "role CDATA #IMPLIED" nil) ("segmentedlist.element" text "INCLUDE" nil) ("segmentedlist.attlist" text "INCLUDE" nil) ("segtitle.module" text "INCLUDE" nil) ("local.segtitle.attrib" text "" nil) ("segtitle.role.attrib" text "role CDATA #IMPLIED" nil) ("segtitle.element" text "INCLUDE" nil) ("segtitle.attlist" text "INCLUDE" nil) ("seglistitem.module" text "INCLUDE" nil) ("local.seglistitem.attrib" text "" nil) ("seglistitem.role.attrib" text "role CDATA #IMPLIED" nil) ("seglistitem.element" text "INCLUDE" nil) ("seglistitem.attlist" text "INCLUDE" nil) ("seg.module" text "INCLUDE" nil) ("local.seg.attrib" text "" nil) ("seg.role.attrib" text "role CDATA #IMPLIED" nil) ("seg.element" text "INCLUDE" nil) ("seg.attlist" text "INCLUDE" nil) ("simplelist.content.module" text "INCLUDE" nil) ("simplelist.module" text "INCLUDE" nil) ("local.simplelist.attrib" text "" nil) ("simplelist.role.attrib" text "role CDATA #IMPLIED" nil) ("simplelist.element" text "INCLUDE" nil) ("simplelist.attlist" text "INCLUDE" nil) ("member.module" text "INCLUDE" nil) ("local.member.attrib" text "" nil) ("member.role.attrib" text "role CDATA #IMPLIED" nil) ("member.element" text "INCLUDE" nil) ("member.attlist" text "INCLUDE" nil) ("variablelist.content.module" text "INCLUDE" nil) ("variablelist.module" text "INCLUDE" nil) ("local.variablelist.attrib" text "" nil) ("variablelist.role.attrib" text "role CDATA #IMPLIED" nil) ("variablelist.element" text "INCLUDE" nil) ("variablelist.attlist" text "INCLUDE" nil) ("varlistentry.module" text "INCLUDE" nil) ("local.varlistentry.attrib" text "" nil) ("varlistentry.role.attrib" text "role CDATA #IMPLIED" nil) ("varlistentry.element" text "INCLUDE" nil) ("varlistentry.attlist" text "INCLUDE" nil) ("term.module" text "INCLUDE" nil) ("local.term.attrib" text "" nil) ("term.role.attrib" text "role CDATA #IMPLIED" nil) ("term.element" text "INCLUDE" nil) ("term.attlist" text "INCLUDE" nil) ("calloutlist.content.module" text "INCLUDE" nil) ("calloutlist.module" text "INCLUDE" nil) ("local.calloutlist.attrib" text "" nil) ("calloutlist.role.attrib" text "role CDATA #IMPLIED" nil) ("calloutlist.element" text "INCLUDE" nil) ("calloutlist.attlist" text "INCLUDE" nil) ("callout.module" text "INCLUDE" nil) ("local.callout.attrib" text "" nil) ("callout.role.attrib" text "role CDATA #IMPLIED" nil) ("callout.element" text "INCLUDE" nil) ("callout.attlist" text "INCLUDE" nil) ("example.module" text "INCLUDE" nil) ("local.example.attrib" text "" nil) ("example.role.attrib" text "role CDATA #IMPLIED" nil) ("example.element" text "INCLUDE" nil) ("example.attlist" text "INCLUDE" nil) ("informalexample.module" text "INCLUDE" nil) ("local.informalexample.attrib" text "" nil) ("informalexample.role.attrib" text "role CDATA #IMPLIED" nil) ("informalexample.element" text "INCLUDE" nil) ("informalexample.attlist" text "INCLUDE" nil) ("programlistingco.module" text "INCLUDE" nil) ("local.programlistingco.attrib" text "" nil) ("programlistingco.role.attrib" text "role CDATA #IMPLIED" nil) ("programlistingco.element" text "INCLUDE" nil) ("programlistingco.attlist" text "INCLUDE" nil) ("areaspec.content.module" text "INCLUDE" nil) ("areaspec.module" text "INCLUDE" nil) ("local.areaspec.attrib" text "" nil) ("areaspec.role.attrib" text "role CDATA #IMPLIED" nil) ("areaspec.element" text "INCLUDE" nil) ("areaspec.attlist" text "INCLUDE" nil) ("area.module" text "INCLUDE" nil) ("local.area.attrib" text "" nil) ("area.role.attrib" text "role CDATA #IMPLIED" nil) ("area.element" text "INCLUDE" nil) ("area.attlist" text "INCLUDE" nil) ("areaset.module" text "INCLUDE" nil) ("local.areaset.attrib" text "" nil) ("areaset.role.attrib" text "role CDATA #IMPLIED" nil) ("areaset.element" text "INCLUDE" nil) ("areaset.attlist" text "INCLUDE" nil) ("programlisting.module" text "INCLUDE" nil) ("local.programlisting.attrib" text "" nil) ("programlisting.role.attrib" text "role CDATA #IMPLIED" nil) ("programlisting.element" text "INCLUDE" nil) ("programlisting.attlist" text "INCLUDE" nil) ("literallayout.module" text "INCLUDE" nil) ("local.literallayout.attrib" text "" nil) ("literallayout.role.attrib" text "role CDATA #IMPLIED" nil) ("literallayout.element" text "INCLUDE" nil) ("literallayout.attlist" text "INCLUDE" nil) ("screenco.module" text "INCLUDE" nil) ("local.screenco.attrib" text "" nil) ("screenco.role.attrib" text "role CDATA #IMPLIED" nil) ("screenco.element" text "INCLUDE" nil) ("screenco.attlist" text "INCLUDE" nil) ("screen.module" text "INCLUDE" nil) ("local.screen.attrib" text "" nil) ("screen.role.attrib" text "role CDATA #IMPLIED" nil) ("screen.element" text "INCLUDE" nil) ("screen.attlist" text "INCLUDE" nil) ("screenshot.content.module" text "INCLUDE" nil) ("screenshot.module" text "INCLUDE" nil) ("local.screenshot.attrib" text "" nil) ("screenshot.role.attrib" text "role CDATA #IMPLIED" nil) ("screenshot.element" text "INCLUDE" nil) ("screenshot.attlist" text "INCLUDE" nil) ("screeninfo.module" text "INCLUDE" nil) ("local.screeninfo.attrib" text "" nil) ("screeninfo.role.attrib" text "role CDATA #IMPLIED" nil) ("screeninfo.element" text "INCLUDE" nil) ("screeninfo.attlist" text "INCLUDE" nil) ("figure.module" text "INCLUDE" nil) ("local.figure.attrib" text "" nil) ("figure.role.attrib" text "role CDATA #IMPLIED" nil) ("figure.element" text "INCLUDE" nil) ("figure.attlist" text "INCLUDE" nil) ("informalfigure.module" text "INCLUDE" nil) ("local.informalfigure.attrib" text "" nil) ("informalfigure.role.attrib" text "role CDATA #IMPLIED" nil) ("informalfigure.element" text "INCLUDE" nil) ("informalfigure.attlist" text "INCLUDE" nil) ("graphicco.module" text "INCLUDE" nil) ("local.graphicco.attrib" text "" nil) ("graphicco.role.attrib" text "role CDATA #IMPLIED" nil) ("graphicco.element" text "INCLUDE" nil) ("graphicco.attlist" text "INCLUDE" nil) ("graphic.module" text "INCLUDE" nil) ("local.graphic.attrib" text "" nil) ("graphic.role.attrib" text "role CDATA #IMPLIED" nil) ("graphic.element" text "INCLUDE" nil) ("graphic.attlist" text "INCLUDE" nil) ("inlinegraphic.module" text "INCLUDE" nil) ("local.inlinegraphic.attrib" text "" nil) ("inlinegraphic.role.attrib" text "role CDATA #IMPLIED" nil) ("inlinegraphic.element" text "INCLUDE" nil) ("inlinegraphic.attlist" text "INCLUDE" nil) ("mediaobject.content.module" text "INCLUDE" nil) ("mediaobject.module" text "INCLUDE" nil) ("local.mediaobject.attrib" text "" nil) ("mediaobject.role.attrib" text "role CDATA #IMPLIED" nil) ("mediaobject.element" text "INCLUDE" nil) ("mediaobject.attlist" text "INCLUDE" nil) ("inlinemediaobject.module" text "INCLUDE" nil) ("local.inlinemediaobject.attrib" text "" nil) ("inlinemediaobject.role.attrib" text "role CDATA #IMPLIED" nil) ("inlinemediaobject.element" text "INCLUDE" nil) ("inlinemediaobject.attlist" text "INCLUDE" nil) ("videoobject.module" text "INCLUDE" nil) ("local.videoobject.attrib" text "" nil) ("videoobject.role.attrib" text "role CDATA #IMPLIED" nil) ("videoobject.element" text "INCLUDE" nil) ("videoobject.attlist" text "INCLUDE" nil) ("audioobject.module" text "INCLUDE" nil) ("local.audioobject.attrib" text "" nil) ("audioobject.role.attrib" text "role CDATA #IMPLIED" nil) ("audioobject.element" text "INCLUDE" nil) ("audioobject.attlist" text "INCLUDE" nil) ("imageobject.module" text "INCLUDE" nil) ("local.imageobject.attrib" text "" nil) ("imageobject.role.attrib" text "role CDATA #IMPLIED" nil) ("imageobject.element" text "INCLUDE" nil) ("imageobject.attlist" text "INCLUDE" nil) ("textobject.module" text "INCLUDE" nil) ("local.textobject.attrib" text "" nil) ("textobject.role.attrib" text "role CDATA #IMPLIED" nil) ("textobject.element" text "INCLUDE" nil) ("textobject.attlist" text "INCLUDE" nil) ("objectinfo.module" text "INCLUDE" nil) ("local.objectinfo.attrib" text "" nil) ("objectinfo.role.attrib" text "role CDATA #IMPLIED" nil) ("objectinfo.element" text "INCLUDE" nil) ("objectinfo.attlist" text "INCLUDE" nil) ("local.objectdata.attrib" text "" nil) ("objectdata.attrib" text " + entityref ENTITY #IMPLIED + fileref CDATA #IMPLIED + format (BMP| CGM-CHAR | CGM-BINARY | CGM-CLEAR | DITROFF | DVI + | EPS | EQN | FAX | GIF | GIF87a | GIF89a + | JPG | JPEG | IGES | PCX + | PIC | PNG | PS | SGML | TBL | TEX | TIFF | WMF | WPG + | linespecific + ) + #IMPLIED + srccredit CDATA #IMPLIED + " nil) ("videodata.module" text "INCLUDE" nil) ("local.videodata.attrib" text "" nil) ("videodata.role.attrib" text "role CDATA #IMPLIED" nil) ("videodata.element" text "INCLUDE" nil) ("videodata.attlist" text "INCLUDE" nil) ("audiodata.module" text "INCLUDE" nil) ("local.audiodata.attrib" text "" nil) ("audiodata.role.attrib" text "role CDATA #IMPLIED" nil) ("audiodata.element" text "INCLUDE" nil) ("audiodata.attlist" text "INCLUDE" nil) ("imagedata.module" text "INCLUDE" nil) ("local.imagedata.attrib" text "" nil) ("imagedata.role.attrib" text "role CDATA #IMPLIED" nil) ("imagedata.element" text "INCLUDE" nil) ("imagedata.attlist" text "INCLUDE" nil) ("caption.module" text "INCLUDE" nil) ("local.caption.attrib" text "" nil) ("caption.role.attrib" text "role CDATA #IMPLIED" nil) ("caption.element" text "INCLUDE" nil) ("caption.attlist" text "INCLUDE" nil) ("mediaobjectco.module" text "INCLUDE" nil) ("local.mediaobjectco.attrib" text "" nil) ("mediaobjectco.role.attrib" text "role CDATA #IMPLIED" nil) ("mediaobjectco.element" text "INCLUDE" nil) ("mediaobjectco.attlist" text "INCLUDE" nil) ("imageobjectco.module" text "INCLUDE" nil) ("local.imageobjectco.attrib" text "" nil) ("imageobjectco.role.attrib" text "role CDATA #IMPLIED" nil) ("imageobjectco.element" text "INCLUDE" nil) ("imageobjectco.attlist" text "INCLUDE" nil) ("equation.content" text "(alt?, (graphic+|mediaobject+))" nil) ("inlineequation.content" text "(alt?, (graphic+|inlinemediaobject+))" nil) ("equation.module" text "INCLUDE" nil) ("local.equation.attrib" text "" nil) ("equation.role.attrib" text "role CDATA #IMPLIED" nil) ("equation.element" text "INCLUDE" nil) ("equation.attlist" text "INCLUDE" nil) ("informalequation.module" text "INCLUDE" nil) ("local.informalequation.attrib" text "" nil) ("informalequation.role.attrib" text "role CDATA #IMPLIED" nil) ("informalequation.element" text "INCLUDE" nil) ("informalequation.attlist" text "INCLUDE" nil) ("inlineequation.module" text "INCLUDE" nil) ("local.inlineequation.attrib" text "" nil) ("inlineequation.role.attrib" text "role CDATA #IMPLIED" nil) ("inlineequation.element" text "INCLUDE" nil) ("inlineequation.attlist" text "INCLUDE" nil) ("alt.module" text "INCLUDE" nil) ("local.alt.attrib" text "" nil) ("alt.role.attrib" text "role CDATA #IMPLIED" nil) ("alt.element" text "INCLUDE" nil) ("alt.attlist" text "INCLUDE" nil) ("table.module" text "INCLUDE" nil) ("cals.table.module" text "INCLUDE" nil) ("exchange.table.module" text "IGNORE" nil) ("tables.role.attrib" text "role CDATA #IMPLIED" nil) ("bodyatt" text "label CDATA #IMPLIED" nil) ("secur" text "id ID #IMPLIED + lang CDATA #IMPLIED + remap CDATA #IMPLIED + xreflabel CDATA #IMPLIED + revisionflag (changed + |added + |deleted + |off) #IMPLIED + arch CDATA #IMPLIED + condition CDATA #IMPLIED + conformance NMTOKENS #IMPLIED + os CDATA #IMPLIED + revision CDATA #IMPLIED + security CDATA #IMPLIED + userlevel CDATA #IMPLIED + vendor CDATA #IMPLIED + + + role CDATA #IMPLIED" nil) ("common.table.attribs" text "label CDATA #IMPLIED + id ID #IMPLIED + lang CDATA #IMPLIED + remap CDATA #IMPLIED + xreflabel CDATA #IMPLIED + revisionflag (changed + |added + |deleted + |off) #IMPLIED + arch CDATA #IMPLIED + condition CDATA #IMPLIED + conformance NMTOKENS #IMPLIED + os CDATA #IMPLIED + revision CDATA #IMPLIED + security CDATA #IMPLIED + userlevel CDATA #IMPLIED + vendor CDATA #IMPLIED + + + role CDATA #IMPLIED" nil) ("tbl.table.mdl" text "((title, titleabbrev?), (indexterm )*, + (graphic+|mediaobject+|tgroup+))" nil) ("tbl.entry.mdl" text "#PCDATA + |footnoteref|xref |abbrev|acronym|citation|citerefentry|citetitle|emphasis + |firstterm|foreignphrase|glossterm|footnote|phrase + |quote|trademark|wordasword + |link|olink|ulink |action|application + |classname|methodname|interfacename|exceptionname + |ooclass|oointerface|ooexception + |command|computeroutput + |database|email|envar|errorcode|errorname|errortype|filename + |function|guibutton|guiicon|guilabel|guimenu|guimenuitem + |guisubmenu|hardware|interface|keycap + |keycode|keycombo|keysym|literal|constant|markup|medialabel + |menuchoice|mousebutton|option|optional|parameter + |prompt|property|replaceable|returnvalue|sgmltag|structfield + |structname|symbol|systemitem|token|type|userinput|varname + + + |anchor |author|authorinitials|corpauthor|modespec|othercredit + |productname|productnumber|revhistory + + |remark|subscript|superscript |inlinegraphic|inlinemediaobject|inlineequation + |synopsis|cmdsynopsis|funcsynopsis + |classsynopsis|fieldsynopsis + |constructorsynopsis + |destructorsynopsis + |methodsynopsis + |indexterm |beginpage + + | calloutlist|glosslist|itemizedlist|orderedlist|segmentedlist + |simplelist|variablelist |caution|important|note|tip|warning + |literallayout|programlisting|programlistingco|screen + |screenco|screenshot + |formalpara|para|simpara |graphic|mediaobject + " nil) ("tablemodel" text ("-//OASIS//DTD DocBook XML CALS Table Model V4.1.2//EN" "calstblx.dtd" . "/usr/share/sgml/docbook/dtd/xml/4.1.2/") nil) ("yesorno" text "CDATA" nil) ("titles" text "title?" nil) ("paracon" text "#PCDATA" nil) ("tbl.table.name" text "(table|chart)" nil) ("tbl.table-titles.mdl" text "title?," nil) ("tbl.table-main.mdl" text "(tgroup+|graphic+)" nil) ("tbl.table.att" text " + tabstyle CDATA #IMPLIED + tocentry CDATA #IMPLIED + shortentry CDATA #IMPLIED + orient (port|land) #IMPLIED + pgwide CDATA #IMPLIED " nil) ("tbl.tgroup.mdl" text "colspec*,spanspec*,thead?,tfoot?,tbody" nil) ("tbl.tgroup.att" text " + tgroupstyle CDATA #IMPLIED " nil) ("tbl.hdft.mdl" text "colspec*,row+" nil) ("tbl.row.mdl" text "(entry|entrytbl)+" nil) ("tbl.entrytbl.mdl" text "colspec*,spanspec*,thead?,tbody" nil) ("informaltable.module" text "INCLUDE" nil) ("local.informaltable.attrib" text "" nil) ("informaltable.element" text "INCLUDE" nil) ("informaltable.attlist" text "INCLUDE" nil) ("synopsis.module" text "INCLUDE" nil) ("local.synopsis.attrib" text "" nil) ("synopsis.role.attrib" text "role CDATA #IMPLIED" nil) ("synopsis.element" text "INCLUDE" nil) ("synopsis.attlist" text "INCLUDE" nil) ("cmdsynopsis.content.module" text "INCLUDE" nil) ("cmdsynopsis.module" text "INCLUDE" nil) ("local.cmdsynopsis.attrib" text "" nil) ("cmdsynopsis.role.attrib" text "role CDATA #IMPLIED" nil) ("cmdsynopsis.element" text "INCLUDE" nil) ("cmdsynopsis.attlist" text "INCLUDE" nil) ("arg.module" text "INCLUDE" nil) ("local.arg.attrib" text "" nil) ("arg.role.attrib" text "role CDATA #IMPLIED" nil) ("arg.element" text "INCLUDE" nil) ("arg.attlist" text "INCLUDE" nil) ("group.module" text "INCLUDE" nil) ("local.group.attrib" text "" nil) ("group.role.attrib" text "role CDATA #IMPLIED" nil) ("group.element" text "INCLUDE" nil) ("group.attlist" text "INCLUDE" nil) ("sbr.module" text "INCLUDE" nil) ("local.sbr.attrib" text "" nil) ("sbr.role.attrib" text "role CDATA #IMPLIED" nil) ("sbr.element" text "INCLUDE" nil) ("sbr.attlist" text "INCLUDE" nil) ("synopfragmentref.module" text "INCLUDE" nil) ("local.synopfragmentref.attrib" text "" nil) ("synopfragmentref.role.attrib" text "role CDATA #IMPLIED" nil) ("synopfragmentref.element" text "INCLUDE" nil) ("synopfragmentref.attlist" text "INCLUDE" nil) ("synopfragment.module" text "INCLUDE" nil) ("local.synopfragment.attrib" text "" nil) ("synopfragment.role.attrib" text "role CDATA #IMPLIED" nil) ("synopfragment.element" text "INCLUDE" nil) ("synopfragment.attlist" text "INCLUDE" nil) ("funcsynopsis.content.module" text "INCLUDE" nil) ("funcsynopsis.module" text "INCLUDE" nil) ("local.funcsynopsis.attrib" text "" nil) ("funcsynopsis.role.attrib" text "role CDATA #IMPLIED" nil) ("funcsynopsis.element" text "INCLUDE" nil) ("funcsynopsis.attlist" text "INCLUDE" nil) ("funcsynopsisinfo.module" text "INCLUDE" nil) ("local.funcsynopsisinfo.attrib" text "" nil) ("funcsynopsisinfo.role.attrib" text "role CDATA #IMPLIED" nil) ("funcsynopsisinfo.element" text "INCLUDE" nil) ("funcsynopsisinfo.attlist" text "INCLUDE" nil) ("funcprototype.module" text "INCLUDE" nil) ("local.funcprototype.attrib" text "" nil) ("funcprototype.role.attrib" text "role CDATA #IMPLIED" nil) ("funcprototype.element" text "INCLUDE" nil) ("funcprototype.attlist" text "INCLUDE" nil) ("funcdef.module" text "INCLUDE" nil) ("local.funcdef.attrib" text "" nil) ("funcdef.role.attrib" text "role CDATA #IMPLIED" nil) ("funcdef.element" text "INCLUDE" nil) ("funcdef.attlist" text "INCLUDE" nil) ("void.module" text "INCLUDE" nil) ("local.void.attrib" text "" nil) ("void.role.attrib" text "role CDATA #IMPLIED" nil) ("void.element" text "INCLUDE" nil) ("void.attlist" text "INCLUDE" nil) ("varargs.module" text "INCLUDE" nil) ("local.varargs.attrib" text "" nil) ("varargs.role.attrib" text "role CDATA #IMPLIED" nil) ("varargs.element" text "INCLUDE" nil) ("varargs.attlist" text "INCLUDE" nil) ("paramdef.module" text "INCLUDE" nil) ("local.paramdef.attrib" text "" nil) ("paramdef.role.attrib" text "role CDATA #IMPLIED" nil) ("paramdef.element" text "INCLUDE" nil) ("paramdef.attlist" text "INCLUDE" nil) ("funcparams.module" text "INCLUDE" nil) ("local.funcparams.attrib" text "" nil) ("funcparams.role.attrib" text "role CDATA #IMPLIED" nil) ("funcparams.element" text "INCLUDE" nil) ("funcparams.attlist" text "INCLUDE" nil) ("classsynopsis.content.module" text "INCLUDE" nil) ("classsynopsis.module" text "INCLUDE" nil) ("local.classsynopsis.attrib" text "" nil) ("classsynopsis.role.attrib" text "role CDATA #IMPLIED" nil) ("classsynopsis.element" text "INCLUDE" nil) ("classsynopsis.attlist" text "INCLUDE" nil) ("classsynopsisinfo.module" text "INCLUDE" nil) ("local.classsynopsisinfo.attrib" text "" nil) ("classsynopsisinfo.role.attrib" text "role CDATA #IMPLIED" nil) ("classsynopsisinfo.element" text "INCLUDE" nil) ("classsynopsisinfo.attlist" text "INCLUDE" nil) ("ooclass.module" text "INCLUDE" nil) ("local.ooclass.attrib" text "" nil) ("ooclass.role.attrib" text "role CDATA #IMPLIED" nil) ("ooclass.element" text "INCLUDE" nil) ("ooclass.attlist" text "INCLUDE" nil) ("oointerface.module" text "INCLUDE" nil) ("local.oointerface.attrib" text "" nil) ("oointerface.role.attrib" text "role CDATA #IMPLIED" nil) ("oointerface.element" text "INCLUDE" nil) ("oointerface.attlist" text "INCLUDE" nil) ("ooexception.module" text "INCLUDE" nil) ("local.ooexception.attrib" text "" nil) ("ooexception.role.attrib" text "role CDATA #IMPLIED" nil) ("ooexception.element" text "INCLUDE" nil) ("ooexception.attlist" text "INCLUDE" nil) ("modifier.module" text "INCLUDE" nil) ("local.modifier.attrib" text "" nil) ("modifier.role.attrib" text "role CDATA #IMPLIED" nil) ("modifier.element" text "INCLUDE" nil) ("modifier.attlist" text "INCLUDE" nil) ("interfacename.module" text "INCLUDE" nil) ("local.interfacename.attrib" text "" nil) ("interfacename.role.attrib" text "role CDATA #IMPLIED" nil) ("interfacename.element" text "INCLUDE" nil) ("interfacename.attlist" text "INCLUDE" nil) ("exceptionname.module" text "INCLUDE" nil) ("local.exceptionname.attrib" text "" nil) ("exceptionname.role.attrib" text "role CDATA #IMPLIED" nil) ("exceptionname.element" text "INCLUDE" nil) ("exceptionname.attlist" text "INCLUDE" nil) ("fieldsynopsis.module" text "INCLUDE" nil) ("local.fieldsynopsis.attrib" text "" nil) ("fieldsynopsis.role.attrib" text "role CDATA #IMPLIED" nil) ("fieldsynopsis.element" text "INCLUDE" nil) ("fieldsynopsis.attlist" text "INCLUDE" nil) ("initializer.module" text "INCLUDE" nil) ("local.initializer.attrib" text "" nil) ("initializer.role.attrib" text "role CDATA #IMPLIED" nil) ("initializer.element" text "INCLUDE" nil) ("initializer.attlist" text "INCLUDE" nil) ("constructorsynopsis.module" text "INCLUDE" nil) ("local.constructorsynopsis.attrib" text "" nil) ("constructorsynopsis.role.attrib" text "role CDATA #IMPLIED" nil) ("constructorsynopsis.element" text "INCLUDE" nil) ("constructorsynopsis.attlist" text "INCLUDE" nil) ("destructorsynopsis.module" text "INCLUDE" nil) ("local.destructorsynopsis.attrib" text "" nil) ("destructorsynopsis.role.attrib" text "role CDATA #IMPLIED" nil) ("destructorsynopsis.element" text "INCLUDE" nil) ("destructorsynopsis.attlist" text "INCLUDE" nil) ("methodsynopsis.module" text "INCLUDE" nil) ("local.methodsynopsis.attrib" text "" nil) ("methodsynopsis.role.attrib" text "role CDATA #IMPLIED" nil) ("methodsynopsis.element" text "INCLUDE" nil) ("methodsynopsis.attlist" text "INCLUDE" nil) ("methodname.module" text "INCLUDE" nil) ("local.methodname.attrib" text "" nil) ("methodname.role.attrib" text "role CDATA #IMPLIED" nil) ("methodname.element" text "INCLUDE" nil) ("methodname.attlist" text "INCLUDE" nil) ("methodparam.module" text "INCLUDE" nil) ("local.methodparam.attrib" text "" nil) ("methodparam.role.attrib" text "role CDATA #IMPLIED" nil) ("methodparam.element" text "INCLUDE" nil) ("methodparam.attlist" text "INCLUDE" nil) ("docinfo.content.module" text "INCLUDE" nil) ("ackno.module" text "INCLUDE" nil) ("local.ackno.attrib" text "" nil) ("ackno.role.attrib" text "role CDATA #IMPLIED" nil) ("ackno.element" text "INCLUDE" nil) ("ackno.attlist" text "INCLUDE" nil) ("address.content.module" text "INCLUDE" nil) ("address.module" text "INCLUDE" nil) ("local.address.attrib" text "" nil) ("address.role.attrib" text "role CDATA #IMPLIED" nil) ("address.element" text "INCLUDE" nil) ("address.attlist" text "INCLUDE" nil) ("street.module" text "INCLUDE" nil) ("local.street.attrib" text "" nil) ("street.role.attrib" text "role CDATA #IMPLIED" nil) ("street.element" text "INCLUDE" nil) ("street.attlist" text "INCLUDE" nil) ("pob.module" text "INCLUDE" nil) ("local.pob.attrib" text "" nil) ("pob.role.attrib" text "role CDATA #IMPLIED" nil) ("pob.element" text "INCLUDE" nil) ("pob.attlist" text "INCLUDE" nil) ("postcode.module" text "INCLUDE" nil) ("local.postcode.attrib" text "" nil) ("postcode.role.attrib" text "role CDATA #IMPLIED" nil) ("postcode.element" text "INCLUDE" nil) ("postcode.attlist" text "INCLUDE" nil) ("city.module" text "INCLUDE" nil) ("local.city.attrib" text "" nil) ("city.role.attrib" text "role CDATA #IMPLIED" nil) ("city.element" text "INCLUDE" nil) ("city.attlist" text "INCLUDE" nil) ("state.module" text "INCLUDE" nil) ("local.state.attrib" text "" nil) ("state.role.attrib" text "role CDATA #IMPLIED" nil) ("state.element" text "INCLUDE" nil) ("state.attlist" text "INCLUDE" nil) ("country.module" text "INCLUDE" nil) ("local.country.attrib" text "" nil) ("country.role.attrib" text "role CDATA #IMPLIED" nil) ("country.element" text "INCLUDE" nil) ("country.attlist" text "INCLUDE" nil) ("phone.module" text "INCLUDE" nil) ("local.phone.attrib" text "" nil) ("phone.role.attrib" text "role CDATA #IMPLIED" nil) ("phone.element" text "INCLUDE" nil) ("phone.attlist" text "INCLUDE" nil) ("fax.module" text "INCLUDE" nil) ("local.fax.attrib" text "" nil) ("fax.role.attrib" text "role CDATA #IMPLIED" nil) ("fax.element" text "INCLUDE" nil) ("fax.attlist" text "INCLUDE" nil) ("otheraddr.module" text "INCLUDE" nil) ("local.otheraddr.attrib" text "" nil) ("otheraddr.role.attrib" text "role CDATA #IMPLIED" nil) ("otheraddr.element" text "INCLUDE" nil) ("otheraddr.attlist" text "INCLUDE" nil) ("affiliation.content.module" text "INCLUDE" nil) ("affiliation.module" text "INCLUDE" nil) ("local.affiliation.attrib" text "" nil) ("affiliation.role.attrib" text "role CDATA #IMPLIED" nil) ("affiliation.element" text "INCLUDE" nil) ("affiliation.attlist" text "INCLUDE" nil) ("shortaffil.module" text "INCLUDE" nil) ("local.shortaffil.attrib" text "" nil) ("shortaffil.role.attrib" text "role CDATA #IMPLIED" nil) ("shortaffil.element" text "INCLUDE" nil) ("shortaffil.attlist" text "INCLUDE" nil) ("jobtitle.module" text "INCLUDE" nil) ("local.jobtitle.attrib" text "" nil) ("jobtitle.role.attrib" text "role CDATA #IMPLIED" nil) ("jobtitle.element" text "INCLUDE" nil) ("jobtitle.attlist" text "INCLUDE" nil) ("orgdiv.module" text "INCLUDE" nil) ("local.orgdiv.attrib" text "" nil) ("orgdiv.role.attrib" text "role CDATA #IMPLIED" nil) ("orgdiv.element" text "INCLUDE" nil) ("orgdiv.attlist" text "INCLUDE" nil) ("artpagenums.module" text "INCLUDE" nil) ("local.artpagenums.attrib" text "" nil) ("artpagenums.role.attrib" text "role CDATA #IMPLIED" nil) ("artpagenums.element" text "INCLUDE" nil) ("artpagenums.attlist" text "INCLUDE" nil) ("author.module" text "INCLUDE" nil) ("local.author.attrib" text "" nil) ("author.role.attrib" text "role CDATA #IMPLIED" nil) ("author.element" text "INCLUDE" nil) ("author.attlist" text "INCLUDE" nil) ("authorgroup.content.module" text "INCLUDE" nil) ("authorgroup.module" text "INCLUDE" nil) ("local.authorgroup.attrib" text "" nil) ("authorgroup.role.attrib" text "role CDATA #IMPLIED" nil) ("authorgroup.element" text "INCLUDE" nil) ("authorgroup.attlist" text "INCLUDE" nil) ("collab.content.module" text "INCLUDE" nil) ("collab.module" text "INCLUDE" nil) ("local.collab.attrib" text "" nil) ("collab.role.attrib" text "role CDATA #IMPLIED" nil) ("collab.element" text "INCLUDE" nil) ("collab.attlist" text "INCLUDE" nil) ("collabname.module" text "INCLUDE" nil) ("local.collabname.attrib" text "" nil) ("collabname.role.attrib" text "role CDATA #IMPLIED" nil) ("collabname.element" text "INCLUDE" nil) ("collabname.attlist" text "INCLUDE" nil) ("authorinitials.module" text "INCLUDE" nil) ("local.authorinitials.attrib" text "" nil) ("authorinitials.role.attrib" text "role CDATA #IMPLIED" nil) ("authorinitials.element" text "INCLUDE" nil) ("authorinitials.attlist" text "INCLUDE" nil) ("confgroup.content.module" text "INCLUDE" nil) ("confgroup.module" text "INCLUDE" nil) ("local.confgroup.attrib" text "" nil) ("confgroup.role.attrib" text "role CDATA #IMPLIED" nil) ("confgroup.element" text "INCLUDE" nil) ("confgroup.attlist" text "INCLUDE" nil) ("confdates.module" text "INCLUDE" nil) ("local.confdates.attrib" text "" nil) ("confdates.role.attrib" text "role CDATA #IMPLIED" nil) ("confdates.element" text "INCLUDE" nil) ("confdates.attlist" text "INCLUDE" nil) ("conftitle.module" text "INCLUDE" nil) ("local.conftitle.attrib" text "" nil) ("conftitle.role.attrib" text "role CDATA #IMPLIED" nil) ("conftitle.element" text "INCLUDE" nil) ("conftitle.attlist" text "INCLUDE" nil) ("confnum.module" text "INCLUDE" nil) ("local.confnum.attrib" text "" nil) ("confnum.role.attrib" text "role CDATA #IMPLIED" nil) ("confnum.element" text "INCLUDE" nil) ("confnum.attlist" text "INCLUDE" nil) ("confsponsor.module" text "INCLUDE" nil) ("local.confsponsor.attrib" text "" nil) ("confsponsor.role.attrib" text "role CDATA #IMPLIED" nil) ("confsponsor.element" text "INCLUDE" nil) ("confsponsor.attlist" text "INCLUDE" nil) ("contractnum.module" text "INCLUDE" nil) ("local.contractnum.attrib" text "" nil) ("contractnum.role.attrib" text "role CDATA #IMPLIED" nil) ("contractnum.element" text "INCLUDE" nil) ("contractnum.attlist" text "INCLUDE" nil) ("contractsponsor.module" text "INCLUDE" nil) ("local.contractsponsor.attrib" text "" nil) ("contractsponsor.role.attrib" text "role CDATA #IMPLIED" nil) ("contractsponsor.element" text "INCLUDE" nil) ("contractsponsor.attlist" text "INCLUDE" nil) ("copyright.content.module" text "INCLUDE" nil) ("copyright.module" text "INCLUDE" nil) ("local.copyright.attrib" text "" nil) ("copyright.role.attrib" text "role CDATA #IMPLIED" nil) ("copyright.element" text "INCLUDE" nil) ("copyright.attlist" text "INCLUDE" nil) ("year.module" text "INCLUDE" nil) ("local.year.attrib" text "" nil) ("year.role.attrib" text "role CDATA #IMPLIED" nil) ("year.element" text "INCLUDE" nil) ("year.attlist" text "INCLUDE" nil) ("holder.module" text "INCLUDE" nil) ("local.holder.attrib" text "" nil) ("holder.role.attrib" text "role CDATA #IMPLIED" nil) ("holder.element" text "INCLUDE" nil) ("holder.attlist" text "INCLUDE" nil) ("corpauthor.module" text "INCLUDE" nil) ("local.corpauthor.attrib" text "" nil) ("corpauthor.role.attrib" text "role CDATA #IMPLIED" nil) ("corpauthor.element" text "INCLUDE" nil) ("corpauthor.attlist" text "INCLUDE" nil) ("corpname.module" text "INCLUDE" nil) ("local.corpname.attrib" text "" nil) ("corpname.element" text "INCLUDE" nil) ("corpname.role.attrib" text "role CDATA #IMPLIED" nil) ("corpname.attlist" text "INCLUDE" nil) ("date.module" text "INCLUDE" nil) ("local.date.attrib" text "" nil) ("date.role.attrib" text "role CDATA #IMPLIED" nil) ("date.element" text "INCLUDE" nil) ("date.attlist" text "INCLUDE" nil) ("edition.module" text "INCLUDE" nil) ("local.edition.attrib" text "" nil) ("edition.role.attrib" text "role CDATA #IMPLIED" nil) ("edition.element" text "INCLUDE" nil) ("edition.attlist" text "INCLUDE" nil) ("editor.module" text "INCLUDE" nil) ("local.editor.attrib" text "" nil) ("editor.role.attrib" text "role CDATA #IMPLIED" nil) ("editor.element" text "INCLUDE" nil) ("editor.attlist" text "INCLUDE" nil) ("isbn.module" text "INCLUDE" nil) ("local.isbn.attrib" text "" nil) ("isbn.role.attrib" text "role CDATA #IMPLIED" nil) ("isbn.element" text "INCLUDE" nil) ("isbn.attlist" text "INCLUDE" nil) ("issn.module" text "INCLUDE" nil) ("local.issn.attrib" text "" nil) ("issn.role.attrib" text "role CDATA #IMPLIED" nil) ("issn.element" text "INCLUDE" nil) ("issn.attlist" text "INCLUDE" nil) ("invpartnumber.module" text "INCLUDE" nil) ("local.invpartnumber.attrib" text "" nil) ("invpartnumber.role.attrib" text "role CDATA #IMPLIED" nil) ("invpartnumber.element" text "INCLUDE" nil) ("invpartnumber.attlist" text "INCLUDE" nil) ("issuenum.module" text "INCLUDE" nil) ("local.issuenum.attrib" text "" nil) ("issuenum.role.attrib" text "role CDATA #IMPLIED" nil) ("issuenum.element" text "INCLUDE" nil) ("issuenum.attlist" text "INCLUDE" nil) ("legalnotice.module" text "INCLUDE" nil) ("local.legalnotice.attrib" text "" nil) ("legalnotice.role.attrib" text "role CDATA #IMPLIED" nil) ("legalnotice.element" text "INCLUDE" nil) ("legalnotice.attlist" text "INCLUDE" nil) ("modespec.module" text "INCLUDE" nil) ("local.modespec.attrib" text "" nil) ("modespec.role.attrib" text "role CDATA #IMPLIED" nil) ("modespec.element" text "INCLUDE" nil) ("modespec.attlist" text "INCLUDE" nil) ("orgname.module" text "INCLUDE" nil) ("local.orgname.attrib" text "" nil) ("orgname.role.attrib" text "role CDATA #IMPLIED" nil) ("orgname.element" text "INCLUDE" nil) ("orgname.attlist" text "INCLUDE" nil) ("othercredit.module" text "INCLUDE" nil) ("local.othercredit.attrib" text "" nil) ("othercredit.role.attrib" text "role CDATA #IMPLIED" nil) ("othercredit.element" text "INCLUDE" nil) ("othercredit.attlist" text "INCLUDE" nil) ("pagenums.module" text "INCLUDE" nil) ("local.pagenums.attrib" text "" nil) ("pagenums.role.attrib" text "role CDATA #IMPLIED" nil) ("pagenums.element" text "INCLUDE" nil) ("pagenums.attlist" text "INCLUDE" nil) ("person.ident.module" text "INCLUDE" nil) ("contrib.module" text "INCLUDE" nil) ("local.contrib.attrib" text "" nil) ("contrib.role.attrib" text "role CDATA #IMPLIED" nil) ("contrib.element" text "INCLUDE" nil) ("contrib.attlist" text "INCLUDE" nil) ("firstname.module" text "INCLUDE" nil) ("local.firstname.attrib" text "" nil) ("firstname.role.attrib" text "role CDATA #IMPLIED" nil) ("firstname.element" text "INCLUDE" nil) ("firstname.attlist" text "INCLUDE" nil) ("honorific.module" text "INCLUDE" nil) ("local.honorific.attrib" text "" nil) ("honorific.role.attrib" text "role CDATA #IMPLIED" nil) ("honorific.element" text "INCLUDE" nil) ("honorific.attlist" text "INCLUDE" nil) ("lineage.module" text "INCLUDE" nil) ("local.lineage.attrib" text "" nil) ("lineage.role.attrib" text "role CDATA #IMPLIED" nil) ("lineage.element" text "INCLUDE" nil) ("lineage.attlist" text "INCLUDE" nil) ("othername.module" text "INCLUDE" nil) ("local.othername.attrib" text "" nil) ("othername.role.attrib" text "role CDATA #IMPLIED" nil) ("othername.element" text "INCLUDE" nil) ("othername.attlist" text "INCLUDE" nil) ("surname.module" text "INCLUDE" nil) ("local.surname.attrib" text "" nil) ("surname.role.attrib" text "role CDATA #IMPLIED" nil) ("surname.element" text "INCLUDE" nil) ("surname.attlist" text "INCLUDE" nil) ("printhistory.module" text "INCLUDE" nil) ("local.printhistory.attrib" text "" nil) ("printhistory.role.attrib" text "role CDATA #IMPLIED" nil) ("printhistory.element" text "INCLUDE" nil) ("printhistory.attlist" text "INCLUDE" nil) ("productname.module" text "INCLUDE" nil) ("local.productname.attrib" text "" nil) ("productname.role.attrib" text "role CDATA #IMPLIED" nil) ("productname.element" text "INCLUDE" nil) ("productname.attlist" text "INCLUDE" nil) ("productnumber.module" text "INCLUDE" nil) ("local.productnumber.attrib" text "" nil) ("productnumber.role.attrib" text "role CDATA #IMPLIED" nil) ("productnumber.element" text "INCLUDE" nil) ("productnumber.attlist" text "INCLUDE" nil) ("pubdate.module" text "INCLUDE" nil) ("local.pubdate.attrib" text "" nil) ("pubdate.role.attrib" text "role CDATA #IMPLIED" nil) ("pubdate.element" text "INCLUDE" nil) ("pubdate.attlist" text "INCLUDE" nil) ("publisher.content.module" text "INCLUDE" nil) ("publisher.module" text "INCLUDE" nil) ("local.publisher.attrib" text "" nil) ("publisher.role.attrib" text "role CDATA #IMPLIED" nil) ("publisher.element" text "INCLUDE" nil) ("publisher.attlist" text "INCLUDE" nil) ("publishername.module" text "INCLUDE" nil) ("local.publishername.attrib" text "" nil) ("publishername.role.attrib" text "role CDATA #IMPLIED" nil) ("publishername.element" text "INCLUDE" nil) ("publishername.attlist" text "INCLUDE" nil) ("pubsnumber.module" text "INCLUDE" nil) ("local.pubsnumber.attrib" text "" nil) ("pubsnumber.role.attrib" text "role CDATA #IMPLIED" nil) ("pubsnumber.element" text "INCLUDE" nil) ("pubsnumber.attlist" text "INCLUDE" nil) ("releaseinfo.module" text "INCLUDE" nil) ("local.releaseinfo.attrib" text "" nil) ("releaseinfo.role.attrib" text "role CDATA #IMPLIED" nil) ("releaseinfo.element" text "INCLUDE" nil) ("releaseinfo.attlist" text "INCLUDE" nil) ("revhistory.content.module" text "INCLUDE" nil) ("revhistory.module" text "INCLUDE" nil) ("local.revhistory.attrib" text "" nil) ("revhistory.role.attrib" text "role CDATA #IMPLIED" nil) ("revhistory.element" text "INCLUDE" nil) ("revhistory.attlist" text "INCLUDE" nil) ("revision.module" text "INCLUDE" nil) ("local.revision.attrib" text "" nil) ("revision.role.attrib" text "role CDATA #IMPLIED" nil) ("revision.element" text "INCLUDE" nil) ("revision.attlist" text "INCLUDE" nil) ("revnumber.module" text "INCLUDE" nil) ("local.revnumber.attrib" text "" nil) ("revnumber.role.attrib" text "role CDATA #IMPLIED" nil) ("revnumber.element" text "INCLUDE" nil) ("revnumber.attlist" text "INCLUDE" nil) ("revremark.module" text "INCLUDE" nil) ("local.revremark.attrib" text "" nil) ("revremark.role.attrib" text "role CDATA #IMPLIED" nil) ("revremark.element" text "INCLUDE" nil) ("revremark.attlist" text "INCLUDE" nil) ("revdescription.module" text "INCLUDE" nil) ("local.revdescription.attrib" text "" nil) ("revdescription.role.attrib" text "role CDATA #IMPLIED" nil) ("revdescription.element" text "INCLUDE" nil) ("revdescription.attlist" text "INCLUDE" nil) ("seriesvolnums.module" text "INCLUDE" nil) ("local.seriesvolnums.attrib" text "" nil) ("seriesvolnums.role.attrib" text "role CDATA #IMPLIED" nil) ("seriesvolnums.element" text "INCLUDE" nil) ("seriesvolnums.attlist" text "INCLUDE" nil) ("volumenum.module" text "INCLUDE" nil) ("local.volumenum.attrib" text "" nil) ("volumenum.role.attrib" text "role CDATA #IMPLIED" nil) ("volumenum.element" text "INCLUDE" nil) ("volumenum.attlist" text "INCLUDE" nil) ("accel.module" text "INCLUDE" nil) ("local.accel.attrib" text "" nil) ("accel.role.attrib" text "role CDATA #IMPLIED" nil) ("accel.element" text "INCLUDE" nil) ("accel.attlist" text "INCLUDE" nil) ("action.module" text "INCLUDE" nil) ("local.action.attrib" text "" nil) ("action.role.attrib" text "role CDATA #IMPLIED" nil) ("action.element" text "INCLUDE" nil) ("action.attlist" text "INCLUDE" nil) ("application.module" text "INCLUDE" nil) ("local.application.attrib" text "" nil) ("application.role.attrib" text "role CDATA #IMPLIED" nil) ("application.element" text "INCLUDE" nil) ("application.attlist" text "INCLUDE" nil) ("classname.module" text "INCLUDE" nil) ("local.classname.attrib" text "" nil) ("classname.role.attrib" text "role CDATA #IMPLIED" nil) ("classname.element" text "INCLUDE" nil) ("classname.attlist" text "INCLUDE" nil) ("co.module" text "INCLUDE" nil) ("local.co.attrib" text "" nil) ("co.role.attrib" text "role CDATA #IMPLIED" nil) ("co.element" text "INCLUDE" nil) ("co.attlist" text "INCLUDE" nil) ("command.module" text "INCLUDE" nil) ("local.command.attrib" text "" nil) ("command.role.attrib" text "role CDATA #IMPLIED" nil) ("command.element" text "INCLUDE" nil) ("command.attlist" text "INCLUDE" nil) ("computeroutput.module" text "INCLUDE" nil) ("local.computeroutput.attrib" text "" nil) ("computeroutput.role.attrib" text "role CDATA #IMPLIED" nil) ("computeroutput.element" text "INCLUDE" nil) ("computeroutput.attlist" text "INCLUDE" nil) ("database.module" text "INCLUDE" nil) ("local.database.attrib" text "" nil) ("database.role.attrib" text "role CDATA #IMPLIED" nil) ("database.element" text "INCLUDE" nil) ("database.attlist" text "INCLUDE" nil) ("email.module" text "INCLUDE" nil) ("local.email.attrib" text "" nil) ("email.role.attrib" text "role CDATA #IMPLIED" nil) ("email.element" text "INCLUDE" nil) ("email.attlist" text "INCLUDE" nil) ("envar.module" text "INCLUDE" nil) ("local.envar.attrib" text "" nil) ("envar.role.attrib" text "role CDATA #IMPLIED" nil) ("envar.element" text "INCLUDE" nil) ("envar.attlist" text "INCLUDE" nil) ("errorcode.module" text "INCLUDE" nil) ("local.errorcode.attrib" text "" nil) ("errorcode.role.attrib" text "role CDATA #IMPLIED" nil) ("errorcode.element" text "INCLUDE" nil) ("errorcode.attlist" text "INCLUDE" nil) ("errorname.module" text "INCLUDE" nil) ("local.errorname.attrib" text "" nil) ("errorname.role.attrib" text "role CDATA #IMPLIED" nil) ("errorname.element" text "INCLUDE" nil) ("errorname.attlist" text "INCLUDE" nil) ("errortype.module" text "INCLUDE" nil) ("local.errortype.attrib" text "" nil) ("errortype.role.attrib" text "role CDATA #IMPLIED" nil) ("errortype.element" text "INCLUDE" nil) ("errortype.attlist" text "INCLUDE" nil) ("filename.module" text "INCLUDE" nil) ("local.filename.attrib" text "" nil) ("filename.role.attrib" text "role CDATA #IMPLIED" nil) ("filename.element" text "INCLUDE" nil) ("filename.attlist" text "INCLUDE" nil) ("function.module" text "INCLUDE" nil) ("local.function.attrib" text "" nil) ("function.role.attrib" text "role CDATA #IMPLIED" nil) ("function.element" text "INCLUDE" nil) ("function.attlist" text "INCLUDE" nil) ("guibutton.module" text "INCLUDE" nil) ("local.guibutton.attrib" text "" nil) ("guibutton.role.attrib" text "role CDATA #IMPLIED" nil) ("guibutton.element" text "INCLUDE" nil) ("guibutton.attlist" text "INCLUDE" nil) ("guiicon.module" text "INCLUDE" nil) ("local.guiicon.attrib" text "" nil) ("guiicon.role.attrib" text "role CDATA #IMPLIED" nil) ("guiicon.element" text "INCLUDE" nil) ("guiicon.attlist" text "INCLUDE" nil) ("guilabel.module" text "INCLUDE" nil) ("local.guilabel.attrib" text "" nil) ("guilabel.role.attrib" text "role CDATA #IMPLIED" nil) ("guilabel.element" text "INCLUDE" nil) ("guilabel.attlist" text "INCLUDE" nil) ("guimenu.module" text "INCLUDE" nil) ("local.guimenu.attrib" text "" nil) ("guimenu.role.attrib" text "role CDATA #IMPLIED" nil) ("guimenu.element" text "INCLUDE" nil) ("guimenu.attlist" text "INCLUDE" nil) ("guimenuitem.module" text "INCLUDE" nil) ("local.guimenuitem.attrib" text "" nil) ("guimenuitem.role.attrib" text "role CDATA #IMPLIED" nil) ("guimenuitem.element" text "INCLUDE" nil) ("guimenuitem.attlist" text "INCLUDE" nil) ("guisubmenu.module" text "INCLUDE" nil) ("local.guisubmenu.attrib" text "" nil) ("guisubmenu.role.attrib" text "role CDATA #IMPLIED" nil) ("guisubmenu.element" text "INCLUDE" nil) ("guisubmenu.attlist" text "INCLUDE" nil) ("hardware.module" text "INCLUDE" nil) ("local.hardware.attrib" text "" nil) ("hardware.role.attrib" text "role CDATA #IMPLIED" nil) ("hardware.element" text "INCLUDE" nil) ("hardware.attlist" text "INCLUDE" nil) ("interface.module" text "INCLUDE" nil) ("local.interface.attrib" text "" nil) ("interface.role.attrib" text "role CDATA #IMPLIED" nil) ("interface.element" text "INCLUDE" nil) ("interface.attlist" text "INCLUDE" nil) ("keycap.module" text "INCLUDE" nil) ("local.keycap.attrib" text "" nil) ("keycap.role.attrib" text "role CDATA #IMPLIED" nil) ("keycap.element" text "INCLUDE" nil) ("keycap.attlist" text "INCLUDE" nil) ("keycode.module" text "INCLUDE" nil) ("local.keycode.attrib" text "" nil) ("keycode.role.attrib" text "role CDATA #IMPLIED" nil) ("keycode.element" text "INCLUDE" nil) ("keycode.attlist" text "INCLUDE" nil) ("keycombo.module" text "INCLUDE" nil) ("local.keycombo.attrib" text "" nil) ("keycombo.role.attrib" text "role CDATA #IMPLIED" nil) ("keycombo.element" text "INCLUDE" nil) ("keycombo.attlist" text "INCLUDE" nil) ("keysym.module" text "INCLUDE" nil) ("local.keysym.attrib" text "" nil) ("keysysm.role.attrib" text "role CDATA #IMPLIED" nil) ("keysym.element" text "INCLUDE" nil) ("keysym.attlist" text "INCLUDE" nil) ("lineannotation.module" text "INCLUDE" nil) ("local.lineannotation.attrib" text "" nil) ("lineannotation.role.attrib" text "role CDATA #IMPLIED" nil) ("lineannotation.element" text "INCLUDE" nil) ("lineannotation.attlist" text "INCLUDE" nil) ("literal.module" text "INCLUDE" nil) ("local.literal.attrib" text "" nil) ("literal.role.attrib" text "role CDATA #IMPLIED" nil) ("literal.element" text "INCLUDE" nil) ("literal.attlist" text "INCLUDE" nil) ("constant.module" text "INCLUDE" nil) ("local.constant.attrib" text "" nil) ("constant.role.attrib" text "role CDATA #IMPLIED" nil) ("constant.element" text "INCLUDE" nil) ("constant.attlist" text "INCLUDE" nil) ("varname.module" text "INCLUDE" nil) ("local.varname.attrib" text "" nil) ("varname.role.attrib" text "role CDATA #IMPLIED" nil) ("varname.element" text "INCLUDE" nil) ("varname.attlist" text "INCLUDE" nil) ("markup.module" text "INCLUDE" nil) ("local.markup.attrib" text "" nil) ("markup.role.attrib" text "role CDATA #IMPLIED" nil) ("markup.element" text "INCLUDE" nil) ("markup.attlist" text "INCLUDE" nil) ("medialabel.module" text "INCLUDE" nil) ("local.medialabel.attrib" text "" nil) ("medialabel.role.attrib" text "role CDATA #IMPLIED" nil) ("medialabel.element" text "INCLUDE" nil) ("medialabel.attlist" text "INCLUDE" nil) ("menuchoice.content.module" text "INCLUDE" nil) ("menuchoice.module" text "INCLUDE" nil) ("local.menuchoice.attrib" text "" nil) ("menuchoice.role.attrib" text "role CDATA #IMPLIED" nil) ("menuchoice.element" text "INCLUDE" nil) ("menuchoice.attlist" text "INCLUDE" nil) ("shortcut.module" text "INCLUDE" nil) ("local.shortcut.attrib" text "" nil) ("shortcut.role.attrib" text "role CDATA #IMPLIED" nil) ("shortcut.element" text "INCLUDE" nil) ("shortcut.attlist" text "INCLUDE" nil) ("mousebutton.module" text "INCLUDE" nil) ("local.mousebutton.attrib" text "" nil) ("mousebutton.role.attrib" text "role CDATA #IMPLIED" nil) ("mousebutton.element" text "INCLUDE" nil) ("mousebutton.attlist" text "INCLUDE" nil) ("msgtext.module" text "INCLUDE" nil) ("local.msgtext.attrib" text "" nil) ("msgtext.role.attrib" text "role CDATA #IMPLIED" nil) ("msgtext.element" text "INCLUDE" nil) ("msgtext.attlist" text "INCLUDE" nil) ("option.module" text "INCLUDE" nil) ("local.option.attrib" text "" nil) ("option.role.attrib" text "role CDATA #IMPLIED" nil) ("option.element" text "INCLUDE" nil) ("option.attlist" text "INCLUDE" nil) ("optional.module" text "INCLUDE" nil) ("local.optional.attrib" text "" nil) ("optional.role.attrib" text "role CDATA #IMPLIED" nil) ("optional.element" text "INCLUDE" nil) ("optional.attlist" text "INCLUDE" nil) ("parameter.module" text "INCLUDE" nil) ("local.parameter.attrib" text "" nil) ("parameter.role.attrib" text "role CDATA #IMPLIED" nil) ("parameter.element" text "INCLUDE" nil) ("parameter.attlist" text "INCLUDE" nil) ("prompt.module" text "INCLUDE" nil) ("local.prompt.attrib" text "" nil) ("prompt.role.attrib" text "role CDATA #IMPLIED" nil) ("prompt.element" text "INCLUDE" nil) ("prompt.attlist" text "INCLUDE" nil) ("property.module" text "INCLUDE" nil) ("local.property.attrib" text "" nil) ("property.role.attrib" text "role CDATA #IMPLIED" nil) ("property.element" text "INCLUDE" nil) ("property.attlist" text "INCLUDE" nil) ("replaceable.module" text "INCLUDE" nil) ("local.replaceable.attrib" text "" nil) ("replaceable.role.attrib" text "role CDATA #IMPLIED" nil) ("replaceable.element" text "INCLUDE" nil) ("replaceable.attlist" text "INCLUDE" nil) ("returnvalue.module" text "INCLUDE" nil) ("local.returnvalue.attrib" text "" nil) ("returnvalue.role.attrib" text "role CDATA #IMPLIED" nil) ("returnvalue.element" text "INCLUDE" nil) ("returnvalue.attlist" text "INCLUDE" nil) ("sgmltag.module" text "INCLUDE" nil) ("local.sgmltag.attrib" text "" nil) ("sgmltag.role.attrib" text "role CDATA #IMPLIED" nil) ("sgmltag.element" text "INCLUDE" nil) ("sgmltag.attlist" text "INCLUDE" nil) ("structfield.module" text "INCLUDE" nil) ("local.structfield.attrib" text "" nil) ("structfield.role.attrib" text "role CDATA #IMPLIED" nil) ("structfield.element" text "INCLUDE" nil) ("structfield.attlist" text "INCLUDE" nil) ("structname.module" text "INCLUDE" nil) ("local.structname.attrib" text "" nil) ("structname.role.attrib" text "role CDATA #IMPLIED" nil) ("structname.element" text "INCLUDE" nil) ("structname.attlist" text "INCLUDE" nil) ("symbol.module" text "INCLUDE" nil) ("local.symbol.attrib" text "" nil) ("symbol.role.attrib" text "role CDATA #IMPLIED" nil) ("symbol.element" text "INCLUDE" nil) ("symbol.attlist" text "INCLUDE" nil) ("systemitem.module" text "INCLUDE" nil) ("local.systemitem.attrib" text "" nil) ("systemitem.role.attrib" text "role CDATA #IMPLIED" nil) ("systemitem.element" text "INCLUDE" nil) ("systemitem.attlist" text "INCLUDE" nil) ("token.module" text "INCLUDE" nil) ("local.token.attrib" text "" nil) ("token.role.attrib" text "role CDATA #IMPLIED" nil) ("token.element" text "INCLUDE" nil) ("token.attlist" text "INCLUDE" nil) ("type.module" text "INCLUDE" nil) ("local.type.attrib" text "" nil) ("type.role.attrib" text "role CDATA #IMPLIED" nil) ("type.element" text "INCLUDE" nil) ("type.attlist" text "INCLUDE" nil) ("userinput.module" text "INCLUDE" nil) ("local.userinput.attrib" text "" nil) ("userinput.role.attrib" text "role CDATA #IMPLIED" nil) ("userinput.element" text "INCLUDE" nil) ("userinput.attlist" text "INCLUDE" nil) ("abbrev.module" text "INCLUDE" nil) ("local.abbrev.attrib" text "" nil) ("abbrev.role.attrib" text "role CDATA #IMPLIED" nil) ("abbrev.element" text "INCLUDE" nil) ("abbrev.attlist" text "INCLUDE" nil) ("acronym.module" text "INCLUDE" nil) ("local.acronym.attrib" text "" nil) ("acronym.role.attrib" text "role CDATA #IMPLIED" nil) ("acronym.element" text "INCLUDE" nil) ("acronym.attlist" text "INCLUDE" nil) ("citation.module" text "INCLUDE" nil) ("local.citation.attrib" text "" nil) ("citation.role.attrib" text "role CDATA #IMPLIED" nil) ("citation.element" text "INCLUDE" nil) ("citation.attlist" text "INCLUDE" nil) ("citerefentry.module" text "INCLUDE" nil) ("local.citerefentry.attrib" text "" nil) ("citerefentry.role.attrib" text "role CDATA #IMPLIED" nil) ("citerefentry.element" text "INCLUDE" nil) ("citerefentry.attlist" text "INCLUDE" nil) ("refentrytitle.module" text "INCLUDE" nil) ("local.refentrytitle.attrib" text "" nil) ("refentrytitle.role.attrib" text "role CDATA #IMPLIED" nil) ("refentrytitle.element" text "INCLUDE" nil) ("refentrytitle.attlist" text "INCLUDE" nil) ("manvolnum.module" text "INCLUDE" nil) ("local.manvolnum.attrib" text "" nil) ("namvolnum.role.attrib" text "role CDATA #IMPLIED" nil) ("manvolnum.element" text "INCLUDE" nil) ("manvolnum.attlist" text "INCLUDE" nil) ("citetitle.module" text "INCLUDE" nil) ("local.citetitle.attrib" text "" nil) ("citetitle.role.attrib" text "role CDATA #IMPLIED" nil) ("citetitle.element" text "INCLUDE" nil) ("citetitle.attlist" text "INCLUDE" nil) ("emphasis.module" text "INCLUDE" nil) ("local.emphasis.attrib" text "" nil) ("emphasis.role.attrib" text "role CDATA #IMPLIED" nil) ("emphasis.element" text "INCLUDE" nil) ("emphasis.attlist" text "INCLUDE" nil) ("firstterm.module" text "INCLUDE" nil) ("local.firstterm.attrib" text "" nil) ("firstterm.role.attrib" text "role CDATA #IMPLIED" nil) ("firstterm.element" text "INCLUDE" nil) ("firstterm.attlist" text "INCLUDE" nil) ("foreignphrase.module" text "INCLUDE" nil) ("local.foreignphrase.attrib" text "" nil) ("foreignphrase.role.attrib" text "role CDATA #IMPLIED" nil) ("foreignphrase.element" text "INCLUDE" nil) ("foreignphrase.attlist" text "INCLUDE" nil) ("glossterm.module" text "INCLUDE" nil) ("local.glossterm.attrib" text "" nil) ("glossterm.role.attrib" text "role CDATA #IMPLIED" nil) ("glossterm.element" text "INCLUDE" nil) ("glossterm.attlist" text "INCLUDE" nil) ("phrase.module" text "INCLUDE" nil) ("local.phrase.attrib" text "" nil) ("phrase.role.attrib" text "role CDATA #IMPLIED" nil) ("phrase.element" text "INCLUDE" nil) ("phrase.attlist" text "INCLUDE" nil) ("quote.module" text "INCLUDE" nil) ("local.quote.attrib" text "" nil) ("quote.role.attrib" text "role CDATA #IMPLIED" nil) ("quote.element" text "INCLUDE" nil) ("quote.attlist" text "INCLUDE" nil) ("ssscript.module" text "INCLUDE" nil) ("local.ssscript.attrib" text "" nil) ("ssscript.role.attrib" text "role CDATA #IMPLIED" nil) ("subscript.element" text "INCLUDE" nil) ("subscript.attlist" text "INCLUDE" nil) ("superscript.element" text "INCLUDE" nil) ("superscript.attlist" text "INCLUDE" nil) ("trademark.module" text "INCLUDE" nil) ("local.trademark.attrib" text "" nil) ("trademark.role.attrib" text "role CDATA #IMPLIED" nil) ("trademark.element" text "INCLUDE" nil) ("trademark.attlist" text "INCLUDE" nil) ("wordasword.module" text "INCLUDE" nil) ("local.wordasword.attrib" text "" nil) ("wordasword.role.attrib" text "role CDATA #IMPLIED" nil) ("wordasword.element" text "INCLUDE" nil) ("wordasword.attlist" text "INCLUDE" nil) ("link.module" text "INCLUDE" nil) ("local.link.attrib" text "" nil) ("link.role.attrib" text "role CDATA #IMPLIED" nil) ("link.element" text "INCLUDE" nil) ("link.attlist" text "INCLUDE" nil) ("olink.module" text "INCLUDE" nil) ("local.olink.attrib" text "" nil) ("olink.role.attrib" text "role CDATA #IMPLIED" nil) ("olink.element" text "INCLUDE" nil) ("olink.attlist" text "INCLUDE" nil) ("ulink.module" text "INCLUDE" nil) ("local.ulink.attrib" text "" nil) ("ulink.role.attrib" text "role CDATA #IMPLIED" nil) ("ulink.element" text "INCLUDE" nil) ("ulink.attlist" text "INCLUDE" nil) ("footnoteref.module" text "INCLUDE" nil) ("local.footnoteref.attrib" text "" nil) ("footnoteref.role.attrib" text "role CDATA #IMPLIED" nil) ("footnoteref.element" text "INCLUDE" nil) ("footnoteref.attlist" text "INCLUDE" nil) ("xref.module" text "INCLUDE" nil) ("local.xref.attrib" text "" nil) ("xref.role.attrib" text "role CDATA #IMPLIED" nil) ("xref.element" text "INCLUDE" nil) ("xref.attlist" text "INCLUDE" nil) ("anchor.module" text "INCLUDE" nil) ("local.anchor.attrib" text "" nil) ("anchor.role.attrib" text "role CDATA #IMPLIED" nil) ("anchor.element" text "INCLUDE" nil) ("anchor.attlist" text "INCLUDE" nil) ("beginpage.module" text "INCLUDE" nil) ("local.beginpage.attrib" text "" nil) ("beginpage.role.attrib" text "role CDATA #IMPLIED" nil) ("beginpage.element" text "INCLUDE" nil) ("beginpage.attlist" text "INCLUDE" nil) ("indexterm.content.module" text "INCLUDE" nil) ("indexterm.module" text "INCLUDE" nil) ("local.indexterm.attrib" text "" nil) ("indexterm.role.attrib" text "role CDATA #IMPLIED" nil) ("indexterm.element" text "INCLUDE" nil) ("indexterm.attlist" text "INCLUDE" nil) ("primsecter.module" text "INCLUDE" nil) ("local.primsecter.attrib" text "" nil) ("primsecter.role.attrib" text "role CDATA #IMPLIED" nil) ("primary.element" text "INCLUDE" nil) ("primary.attlist" text "INCLUDE" nil) ("secondary.element" text "INCLUDE" nil) ("secondary.attlist" text "INCLUDE" nil) ("tertiary.element" text "INCLUDE" nil) ("tertiary.attlist" text "INCLUDE" nil) ("seeseealso.module" text "INCLUDE" nil) ("local.seeseealso.attrib" text "" nil) ("seeseealso.role.attrib" text "role CDATA #IMPLIED" nil) ("see.element" text "INCLUDE" nil) ("see.attlist" text "INCLUDE" nil) ("seealso.element" text "INCLUDE" nil) ("seealso.attlist" text "INCLUDE" nil) ("intermod.redecl.module" text "IGNORE" nil) ("dbhier.module" text "INCLUDE" nil) ("dbhier" text ("-//OASIS//ELEMENTS DocBook XML Document Hierarchy V4.1.2//EN" "dbhierx.mod" . "/usr/share/sgml/docbook/dtd/xml/4.1.2/") nil) ("dbhier.redecl.module" text "IGNORE" nil) ("dbhier.redecl2.module" text "IGNORE" nil) ("local.appendix.class" text "" nil) ("appendix.class" text "appendix " nil) ("local.article.class" text "" nil) ("article.class" text "article " nil) ("local.book.class" text "" nil) ("book.class" text "book " nil) ("local.chapter.class" text "" nil) ("chapter.class" text "chapter " nil) ("local.index.class" text "" nil) ("index.class" text "index|setindex " nil) ("local.refentry.class" text "" nil) ("refentry.class" text "refentry " nil) ("local.nav.class" text "" nil) ("nav.class" text "toc|lot|index|glossary|bibliography + " nil) ("forms.hook" text "" nil) ("local.divcomponent.mix" text "" nil) ("divcomponent.mix" text "calloutlist|glosslist|itemizedlist|orderedlist|segmentedlist + |simplelist|variablelist |caution|important|note|tip|warning + |literallayout|programlisting|programlistingco|screen + |screenco|screenshot |synopsis|cmdsynopsis|funcsynopsis + |classsynopsis|fieldsynopsis + |constructorsynopsis + |destructorsynopsis + |methodsynopsis + |formalpara|para|simpara |address|blockquote + |graphic|graphicco|mediaobject|mediaobjectco + |informalequation + |informalexample + |informalfigure + |informaltable + |equation|example|figure|table |msgset|procedure|sidebar|qandaset + + + |anchor|bridgehead|remark|highlights + |abstract|authorblurb|epigraph + + |indexterm |beginpage + + " nil) ("local.refcomponent.mix" text "" nil) ("refcomponent.mix" text "calloutlist|glosslist|itemizedlist|orderedlist|segmentedlist + |simplelist|variablelist |caution|important|note|tip|warning + |literallayout|programlisting|programlistingco|screen + |screenco|screenshot |synopsis|cmdsynopsis|funcsynopsis + |classsynopsis|fieldsynopsis + |constructorsynopsis + |destructorsynopsis + |methodsynopsis + |formalpara|para|simpara |address|blockquote + |graphic|graphicco|mediaobject|mediaobjectco + |informalequation + |informalexample + |informalfigure + |informaltable + |equation|example|figure|table |msgset|procedure|sidebar|qandaset + + + |anchor|bridgehead|remark|highlights + |abstract|authorblurb|epigraph + + |indexterm |beginpage + " nil) ("local.indexdivcomponent.mix" text "" nil) ("indexdivcomponent.mix" text "itemizedlist|orderedlist|variablelist|simplelist + |literallayout|programlisting|programlistingco|screen + |screenco|screenshot |synopsis|cmdsynopsis|funcsynopsis + |classsynopsis|fieldsynopsis + |constructorsynopsis + |destructorsynopsis + |methodsynopsis + |formalpara|para|simpara |address|blockquote + |graphic|graphicco|mediaobject|mediaobjectco + |informalequation + |informalexample + |informalfigure + |informaltable + |anchor|remark + |link|olink|ulink + |beginpage + " nil) ("local.refname.char.mix" text "" nil) ("refname.char.mix" text "#PCDATA + |action|application + |classname|methodname|interfacename|exceptionname + |ooclass|oointerface|ooexception + |command|computeroutput + |database|email|envar|errorcode|errorname|errortype|filename + |function|guibutton|guiicon|guilabel|guimenu|guimenuitem + |guisubmenu|hardware|interface|keycap + |keycode|keycombo|keysym|literal|constant|markup|medialabel + |menuchoice|mousebutton|option|optional|parameter + |prompt|property|replaceable|returnvalue|sgmltag|structfield + |structname|symbol|systemitem|token|type|userinput|varname + + + " nil) ("local.partcontent.mix" text "" nil) ("partcontent.mix" text "appendix |chapter |toc|lot|index|glossary|bibliography + |article + |preface|refentry |reference " nil) ("local.refinline.char.mix" text "" nil) ("refinline.char.mix" text "#PCDATA + |footnoteref|xref |abbrev|acronym|citation|citerefentry|citetitle|emphasis + |firstterm|foreignphrase|glossterm|footnote|phrase + |quote|trademark|wordasword + |link|olink|ulink |action|application + |classname|methodname|interfacename|exceptionname + |ooclass|oointerface|ooexception + |command|computeroutput + |database|email|envar|errorcode|errorname|errortype|filename + |function|guibutton|guiicon|guilabel|guimenu|guimenuitem + |guisubmenu|hardware|interface|keycap + |keycode|keycombo|keysym|literal|constant|markup|medialabel + |menuchoice|mousebutton|option|optional|parameter + |prompt|property|replaceable|returnvalue|sgmltag|structfield + |structname|symbol|systemitem|token|type|userinput|varname + + + |anchor |author|authorinitials|corpauthor|modespec|othercredit + |productname|productnumber|revhistory + + |remark|subscript|superscript + |indexterm |beginpage + " nil) ("local.refclass.char.mix" text "" nil) ("refclass.char.mix" text "#PCDATA + |application + " nil) ("div.title.content" text "title, subtitle?, titleabbrev?" nil) ("bookcomponent.title.content" text "title, subtitle?, titleabbrev?" nil) ("sect.title.content" text "title, subtitle?, titleabbrev?" nil) ("refsect.title.content" text "title, subtitle?, titleabbrev?" nil) ("bookcomponent.content" text "((calloutlist|glosslist|itemizedlist|orderedlist|segmentedlist + |simplelist|variablelist |caution|important|note|tip|warning + |literallayout|programlisting|programlistingco|screen + |screenco|screenshot |synopsis|cmdsynopsis|funcsynopsis + |classsynopsis|fieldsynopsis + |constructorsynopsis + |destructorsynopsis + |methodsynopsis + |formalpara|para|simpara |address|blockquote + |graphic|graphicco|mediaobject|mediaobjectco + |informalequation + |informalexample + |informalfigure + |informaltable + |equation|example|figure|table |msgset|procedure|sidebar|qandaset + + + |anchor|bridgehead|remark|highlights + |abstract|authorblurb|epigraph + + |indexterm |beginpage + + )+, + (sect1*|(refentry )*|simplesect*|section*)) + | (sect1+|(refentry )+|simplesect+|section+)" nil) ("set.content.module" text "INCLUDE" nil) ("set.module" text "INCLUDE" nil) ("local.set.attrib" text "" nil) ("set.role.attrib" text "role CDATA #IMPLIED" nil) ("set.element" text "INCLUDE" nil) ("set.attlist" text "INCLUDE" nil) ("setinfo.module" text "INCLUDE" nil) ("local.setinfo.attrib" text "" nil) ("setinfo.role.attrib" text "role CDATA #IMPLIED" nil) ("setinfo.element" text "INCLUDE" nil) ("setinfo.attlist" text "INCLUDE" nil) ("book.content.module" text "INCLUDE" nil) ("book.module" text "INCLUDE" nil) ("local.book.attrib" text "" nil) ("book.role.attrib" text "role CDATA #IMPLIED" nil) ("book.element" text "INCLUDE" nil) ("book.attlist" text "INCLUDE" nil) ("bookinfo.module" text "INCLUDE" nil) ("local.bookinfo.attrib" text "" nil) ("bookinfo.role.attrib" text "role CDATA #IMPLIED" nil) ("bookinfo.element" text "INCLUDE" nil) ("bookinfo.attlist" text "INCLUDE" nil) ("dedication.module" text "INCLUDE" nil) ("local.dedication.attrib" text "" nil) ("dedication.role.attrib" text "role CDATA #IMPLIED" nil) ("dedication.element" text "INCLUDE" nil) ("dedication.attlist" text "INCLUDE" nil) ("colophon.module" text "INCLUDE" nil) ("local.colophon.attrib" text "" nil) ("colophon.role.attrib" text "role CDATA #IMPLIED" nil) ("colophon.element" text "INCLUDE" nil) ("colophon.attlist" text "INCLUDE" nil) ("toc.content.module" text "INCLUDE" nil) ("toc.module" text "INCLUDE" nil) ("local.toc.attrib" text "" nil) ("toc.role.attrib" text "role CDATA #IMPLIED" nil) ("toc.element" text "INCLUDE" nil) ("toc.attlist" text "INCLUDE" nil) ("tocfront.module" text "INCLUDE" nil) ("local.tocfront.attrib" text "" nil) ("tocfront.role.attrib" text "role CDATA #IMPLIED" nil) ("tocfront.element" text "INCLUDE" nil) ("tocfront.attlist" text "INCLUDE" nil) ("tocentry.module" text "INCLUDE" nil) ("local.tocentry.attrib" text "" nil) ("tocentry.role.attrib" text "role CDATA #IMPLIED" nil) ("tocentry.element" text "INCLUDE" nil) ("tocentry.attlist" text "INCLUDE" nil) ("tocpart.module" text "INCLUDE" nil) ("local.tocpart.attrib" text "" nil) ("tocpart.role.attrib" text "role CDATA #IMPLIED" nil) ("tocpart.element" text "INCLUDE" nil) ("tocpart.attlist" text "INCLUDE" nil) ("tocchap.module" text "INCLUDE" nil) ("local.tocchap.attrib" text "" nil) ("tocchap.role.attrib" text "role CDATA #IMPLIED" nil) ("tocchap.element" text "INCLUDE" nil) ("tocchap.attlist" text "INCLUDE" nil) ("toclevel1.module" text "INCLUDE" nil) ("local.toclevel1.attrib" text "" nil) ("toclevel1.role.attrib" text "role CDATA #IMPLIED" nil) ("toclevel1.element" text "INCLUDE" nil) ("toclevel1.attlist" text "INCLUDE" nil) ("toclevel2.module" text "INCLUDE" nil) ("local.toclevel2.attrib" text "" nil) ("toclevel2.role.attrib" text "role CDATA #IMPLIED" nil) ("toclevel2.element" text "INCLUDE" nil) ("toclevel2.attlist" text "INCLUDE" nil) ("toclevel3.module" text "INCLUDE" nil) ("local.toclevel3.attrib" text "" nil) ("toclevel3.role.attrib" text "role CDATA #IMPLIED" nil) ("toclevel3.element" text "INCLUDE" nil) ("toclevel3.attlist" text "INCLUDE" nil) ("toclevel4.module" text "INCLUDE" nil) ("local.toclevel4.attrib" text "" nil) ("toclevel4.role.attrib" text "role CDATA #IMPLIED" nil) ("toclevel4.element" text "INCLUDE" nil) ("toclevel4.attlist" text "INCLUDE" nil) ("toclevel5.module" text "INCLUDE" nil) ("local.toclevel5.attrib" text "" nil) ("toclevel5.role.attrib" text "role CDATA #IMPLIED" nil) ("toclevel5.element" text "INCLUDE" nil) ("toclevel5.attlist" text "INCLUDE" nil) ("tocback.module" text "INCLUDE" nil) ("local.tocback.attrib" text "" nil) ("tocback.role.attrib" text "role CDATA #IMPLIED" nil) ("tocback.element" text "INCLUDE" nil) ("tocback.attlist" text "INCLUDE" nil) ("lot.content.module" text "INCLUDE" nil) ("lot.module" text "INCLUDE" nil) ("local.lot.attrib" text "" nil) ("lot.role.attrib" text "role CDATA #IMPLIED" nil) ("lot.element" text "INCLUDE" nil) ("lot.attlist" text "INCLUDE" nil) ("lotentry.module" text "INCLUDE" nil) ("local.lotentry.attrib" text "" nil) ("lotentry.role.attrib" text "role CDATA #IMPLIED" nil) ("lotentry.element" text "INCLUDE" nil) ("lotentry.attlist" text "INCLUDE" nil) ("appendix.module" text "INCLUDE" nil) ("local.appendix.attrib" text "" nil) ("appendix.role.attrib" text "role CDATA #IMPLIED" nil) ("appendix.element" text "INCLUDE" nil) ("appendix.attlist" text "INCLUDE" nil) ("chapter.module" text "INCLUDE" nil) ("local.chapter.attrib" text "" nil) ("chapter.role.attrib" text "role CDATA #IMPLIED" nil) ("chapter.element" text "INCLUDE" nil) ("chapter.attlist" text "INCLUDE" nil) ("part.module" text "INCLUDE" nil) ("local.part.attrib" text "" nil) ("part.role.attrib" text "role CDATA #IMPLIED" nil) ("part.element" text "INCLUDE" nil) ("part.attlist" text "INCLUDE" nil) ("preface.module" text "INCLUDE" nil) ("local.preface.attrib" text "" nil) ("preface.role.attrib" text "role CDATA #IMPLIED" nil) ("preface.element" text "INCLUDE" nil) ("preface.attlist" text "INCLUDE" nil) ("reference.module" text "INCLUDE" nil) ("local.reference.attrib" text "" nil) ("reference.role.attrib" text "role CDATA #IMPLIED" nil) ("reference.element" text "INCLUDE" nil) ("reference.attlist" text "INCLUDE" nil) ("partintro.module" text "INCLUDE" nil) ("local.partintro.attrib" text "" nil) ("partintro.role.attrib" text "role CDATA #IMPLIED" nil) ("partintro.element" text "INCLUDE" nil) ("partintro.attlist" text "INCLUDE" nil) ("appendixinfo.module" text "INCLUDE" nil) ("local.appendixinfo.attrib" text "" nil) ("appendixinfo.role.attrib" text "role CDATA #IMPLIED" nil) ("appendixinfo.element" text "INCLUDE" nil) ("appendixinfo.attlist" text "INCLUDE" nil) ("bibliographyinfo.module" text "INCLUDE" nil) ("local.bibliographyinfo.attrib" text "" nil) ("bibliographyinfo.role.attrib" text "role CDATA #IMPLIED" nil) ("bibliographyinfo.element" text "INCLUDE" nil) ("bibliographyinfo.attlist" text "INCLUDE" nil) ("chapterinfo.module" text "INCLUDE" nil) ("local.chapterinfo.attrib" text "" nil) ("chapterinfo.role.attrib" text "role CDATA #IMPLIED" nil) ("chapterinfo.element" text "INCLUDE" nil) ("chapterinfo.attlist" text "INCLUDE" nil) ("glossaryinfo.module" text "INCLUDE" nil) ("local.glossaryinfo.attrib" text "" nil) ("glossaryinfo.role.attrib" text "role CDATA #IMPLIED" nil) ("glossaryinfo.element" text "INCLUDE" nil) ("glossaryinfo.attlist" text "INCLUDE" nil) ("indexinfo.module" text "INCLUDE" nil) ("local.indexinfo.attrib" text "" nil) ("indexinfo.role.attrib" text "role CDATA #IMPLIED" nil) ("indexinfo.element" text "INCLUDE" nil) ("indexinfo.attlist" text "INCLUDE" nil) ("setindexinfo.module" text "INCLUDE" nil) ("local.setindexinfo.attrib" text "" nil) ("setindexinfo.role.attrib" text "role CDATA #IMPLIED" nil) ("setindexinfo.element" text "INCLUDE" nil) ("setindexinfo.attlist" text "INCLUDE" nil) ("partinfo.module" text "INCLUDE" nil) ("local.partinfo.attrib" text "" nil) ("partinfo.role.attrib" text "role CDATA #IMPLIED" nil) ("partinfo.element" text "INCLUDE" nil) ("partinfo.attlist" text "INCLUDE" nil) ("prefaceinfo.module" text "INCLUDE" nil) ("local.prefaceinfo.attrib" text "" nil) ("prefaceinfo.role.attrib" text "role CDATA #IMPLIED" nil) ("prefaceinfo.element" text "INCLUDE" nil) ("prefaceinfo.attlist" text "INCLUDE" nil) ("refentryinfo.module" text "INCLUDE" nil) ("local.refentryinfo.attrib" text "" nil) ("refentryinfo.role.attrib" text "role CDATA #IMPLIED" nil) ("refentryinfo.element" text "INCLUDE" nil) ("refentryinfo.attlist" text "INCLUDE" nil) ("refsect1info.module" text "INCLUDE" nil) ("local.refsect1info.attrib" text "" nil) ("refsect1info.role.attrib" text "role CDATA #IMPLIED" nil) ("refsect1info.element" text "INCLUDE" nil) ("refsect1info.attlist" text "INCLUDE" nil) ("refsect2info.module" text "INCLUDE" nil) ("local.refsect2info.attrib" text "" nil) ("refsect2info.role.attrib" text "role CDATA #IMPLIED" nil) ("refsect2info.element" text "INCLUDE" nil) ("refsect2info.attlist" text "INCLUDE" nil) ("refsect3info.module" text "INCLUDE" nil) ("local.refsect3info.attrib" text "" nil) ("refsect3info.role.attrib" text "role CDATA #IMPLIED" nil) ("refsect3info.element" text "INCLUDE" nil) ("refsect3info.attlist" text "INCLUDE" nil) ("refsynopsisdivinfo.module" text "INCLUDE" nil) ("local.refsynopsisdivinfo.attrib" text "" nil) ("refsynopsisdivinfo.role.attrib" text "role CDATA #IMPLIED" nil) ("refsynopsisdivinfo.element" text "INCLUDE" nil) ("refsynopsisdivinfo.attlist" text "INCLUDE" nil) ("referenceinfo.module" text "INCLUDE" nil) ("local.referenceinfo.attrib" text "" nil) ("referenceinfo.role.attrib" text "role CDATA #IMPLIED" nil) ("referenceinfo.element" text "INCLUDE" nil) ("referenceinfo.attlist" text "INCLUDE" nil) ("local.sect1info.attrib" text "" nil) ("sect1info.role.attrib" text "role CDATA #IMPLIED" nil) ("sect1info.element" text "INCLUDE" nil) ("sect1info.attlist" text "INCLUDE" nil) ("local.sect2info.attrib" text "" nil) ("sect2info.role.attrib" text "role CDATA #IMPLIED" nil) ("sect2info.element" text "INCLUDE" nil) ("sect2info.attlist" text "INCLUDE" nil) ("local.sect3info.attrib" text "" nil) ("sect3info.role.attrib" text "role CDATA #IMPLIED" nil) ("sect3info.element" text "INCLUDE" nil) ("sect3info.attlist" text "INCLUDE" nil) ("local.sect4info.attrib" text "" nil) ("sect4info.role.attrib" text "role CDATA #IMPLIED" nil) ("sect4info.element" text "INCLUDE" nil) ("sect4info.attlist" text "INCLUDE" nil) ("local.sect5info.attrib" text "" nil) ("sect5info.role.attrib" text "role CDATA #IMPLIED" nil) ("sect5info.element" text "INCLUDE" nil) ("sect5info.attlist" text "INCLUDE" nil) ("section.content.module" text "INCLUDE" nil) ("section.module" text "INCLUDE" nil) ("local.section.attrib" text "" nil) ("section.role.attrib" text "role CDATA #IMPLIED" nil) ("section.element" text "INCLUDE" nil) ("section.attlist" text "INCLUDE" nil) ("sectioninfo.module" text "INCLUDE" nil) ("sectioninfo.role.attrib" text "role CDATA #IMPLIED" nil) ("local.sectioninfo.attrib" text "" nil) ("sectioninfo.element" text "INCLUDE" nil) ("sectioninfo.attlist" text "INCLUDE" nil) ("sect1.module" text "INCLUDE" nil) ("local.sect1.attrib" text "" nil) ("sect1.role.attrib" text "role CDATA #IMPLIED" nil) ("sect1.element" text "INCLUDE" nil) ("sect1.attlist" text "INCLUDE" nil) ("sect2.module" text "INCLUDE" nil) ("local.sect2.attrib" text "" nil) ("sect2.role.attrib" text "role CDATA #IMPLIED" nil) ("sect2.element" text "INCLUDE" nil) ("sect2.attlist" text "INCLUDE" nil) ("sect3.module" text "INCLUDE" nil) ("local.sect3.attrib" text "" nil) ("sect3.role.attrib" text "role CDATA #IMPLIED" nil) ("sect3.element" text "INCLUDE" nil) ("sect3.attlist" text "INCLUDE" nil) ("sect4.module" text "INCLUDE" nil) ("local.sect4.attrib" text "" nil) ("sect4.role.attrib" text "role CDATA #IMPLIED" nil) ("sect4.element" text "INCLUDE" nil) ("sect4.attlist" text "INCLUDE" nil) ("sect5.module" text "INCLUDE" nil) ("local.sect5.attrib" text "" nil) ("sect5.role.attrib" text "role CDATA #IMPLIED" nil) ("sect5.element" text "INCLUDE" nil) ("sect5.attlist" text "INCLUDE" nil) ("simplesect.module" text "INCLUDE" nil) ("local.simplesect.attrib" text "" nil) ("simplesect.role.attrib" text "role CDATA #IMPLIED" nil) ("simplesect.element" text "INCLUDE" nil) ("simplesect.attlist" text "INCLUDE" nil) ("bibliography.content.module" text "INCLUDE" nil) ("bibliography.module" text "INCLUDE" nil) ("local.bibliography.attrib" text "" nil) ("bibliography.role.attrib" text "role CDATA #IMPLIED" nil) ("bibliography.element" text "INCLUDE" nil) ("bibliography.attlist" text "INCLUDE" nil) ("bibliodiv.module" text "INCLUDE" nil) ("local.bibliodiv.attrib" text "" nil) ("bibliodiv.role.attrib" text "role CDATA #IMPLIED" nil) ("bibliodiv.element" text "INCLUDE" nil) ("bibliodiv.attlist" text "INCLUDE" nil) ("glossary.content.module" text "INCLUDE" nil) ("glossary.module" text "INCLUDE" nil) ("local.glossary.attrib" text "" nil) ("glossary.role.attrib" text "role CDATA #IMPLIED" nil) ("glossary.element" text "INCLUDE" nil) ("glossary.attlist" text "INCLUDE" nil) ("glossdiv.module" text "INCLUDE" nil) ("local.glossdiv.attrib" text "" nil) ("glossdiv.role.attrib" text "role CDATA #IMPLIED" nil) ("glossdiv.element" text "INCLUDE" nil) ("glossdiv.attlist" text "INCLUDE" nil) ("index.content.module" text "INCLUDE" nil) ("indexes.module" text "INCLUDE" nil) ("local.indexes.attrib" text "" nil) ("indexes.role.attrib" text "role CDATA #IMPLIED" nil) ("index.element" text "INCLUDE" nil) ("index.attlist" text "INCLUDE" nil) ("setindex.element" text "INCLUDE" nil) ("setindex.attlist" text "INCLUDE" nil) ("indexdiv.module" text "INCLUDE" nil) ("local.indexdiv.attrib" text "" nil) ("indexdiv.role.attrib" text "role CDATA #IMPLIED" nil) ("indexdiv.element" text "INCLUDE" nil) ("indexdiv.attlist" text "INCLUDE" nil) ("indexentry.module" text "INCLUDE" nil) ("local.indexentry.attrib" text "" nil) ("indexentry.role.attrib" text "role CDATA #IMPLIED" nil) ("indexentry.element" text "INCLUDE" nil) ("indexentry.attlist" text "INCLUDE" nil) ("primsecterie.module" text "INCLUDE" nil) ("local.primsecterie.attrib" text "" nil) ("primsecterie.role.attrib" text "role CDATA #IMPLIED" nil) ("primaryie.element" text "INCLUDE" nil) ("primaryie.attlist" text "INCLUDE" nil) ("secondaryie.element" text "INCLUDE" nil) ("secondaryie.attlist" text "INCLUDE" nil) ("tertiaryie.element" text "INCLUDE" nil) ("tertiaryie.attlist" text "INCLUDE" nil) ("seeie.module" text "INCLUDE" nil) ("local.seeie.attrib" text "" nil) ("seeie.role.attrib" text "role CDATA #IMPLIED" nil) ("seeie.element" text "INCLUDE" nil) ("seeie.attlist" text "INCLUDE" nil) ("seealsoie.module" text "INCLUDE" nil) ("local.seealsoie.attrib" text "" nil) ("seealsoie.role.attrib" text "role CDATA #IMPLIED" nil) ("seealsoie.element" text "INCLUDE" nil) ("seealsoie.attlist" text "INCLUDE" nil) ("refentry.content.module" text "INCLUDE" nil) ("refentry.module" text "INCLUDE" nil) ("local.refentry.attrib" text "" nil) ("refentry.role.attrib" text "role CDATA #IMPLIED" nil) ("refentry.element" text "INCLUDE" nil) ("refentry.attlist" text "INCLUDE" nil) ("refmeta.module" text "INCLUDE" nil) ("local.refmeta.attrib" text "" nil) ("refmeta.role.attrib" text "role CDATA #IMPLIED" nil) ("refmeta.element" text "INCLUDE" nil) ("refmeta.attlist" text "INCLUDE" nil) ("refmiscinfo.module" text "INCLUDE" nil) ("local.refmiscinfo.attrib" text "" nil) ("refmiscinfo.role.attrib" text "role CDATA #IMPLIED" nil) ("refmiscinfo.element" text "INCLUDE" nil) ("refmiscinfo.attlist" text "INCLUDE" nil) ("refnamediv.module" text "INCLUDE" nil) ("local.refnamediv.attrib" text "" nil) ("refnamediv.role.attrib" text "role CDATA #IMPLIED" nil) ("refnamediv.element" text "INCLUDE" nil) ("refnamediv.attlist" text "INCLUDE" nil) ("refdescriptor.module" text "INCLUDE" nil) ("local.refdescriptor.attrib" text "" nil) ("refdescriptor.role.attrib" text "role CDATA #IMPLIED" nil) ("refdescriptor.element" text "INCLUDE" nil) ("refdescriptor.attlist" text "INCLUDE" nil) ("refname.module" text "INCLUDE" nil) ("local.refname.attrib" text "" nil) ("refname.role.attrib" text "role CDATA #IMPLIED" nil) ("refname.element" text "INCLUDE" nil) ("refname.attlist" text "INCLUDE" nil) ("refpurpose.module" text "INCLUDE" nil) ("local.refpurpose.attrib" text "" nil) ("refpurpose.role.attrib" text "role CDATA #IMPLIED" nil) ("refpurpose.element" text "INCLUDE" nil) ("refpurpose.attlist" text "INCLUDE" nil) ("refclass.module" text "INCLUDE" nil) ("local.refclass.attrib" text "" nil) ("refclass.role.attrib" text "role CDATA #IMPLIED" nil) ("refclass.element" text "INCLUDE" nil) ("refclass.attlist" text "INCLUDE" nil) ("refsynopsisdiv.module" text "INCLUDE" nil) ("local.refsynopsisdiv.attrib" text "" nil) ("refsynopsisdiv.role.attrib" text "role CDATA #IMPLIED" nil) ("refsynopsisdiv.element" text "INCLUDE" nil) ("refsynopsisdiv.attlist" text "INCLUDE" nil) ("refsect1.module" text "INCLUDE" nil) ("local.refsect1.attrib" text "" nil) ("refsect1.role.attrib" text "role CDATA #IMPLIED" nil) ("refsect1.element" text "INCLUDE" nil) ("refsect1.attlist" text "INCLUDE" nil) ("refsect2.module" text "INCLUDE" nil) ("local.refsect2.attrib" text "" nil) ("refsect2.role.attrib" text "role CDATA #IMPLIED" nil) ("refsect2.element" text "INCLUDE" nil) ("refsect2.attlist" text "INCLUDE" nil) ("refsect3.module" text "INCLUDE" nil) ("local.refsect3.attrib" text "" nil) ("refsect3.role.attrib" text "role CDATA #IMPLIED" nil) ("refsect3.element" text "INCLUDE" nil) ("refsect3.attlist" text "INCLUDE" nil) ("article.module" text "INCLUDE" nil) ("local.article.attrib" text "" nil) ("article.role.attrib" text "role CDATA #IMPLIED" nil) ("article.element" text "INCLUDE" nil) ("article.attlist" text "INCLUDE" nil) ("dbgenent.module" text "INCLUDE" nil) ("dbgenent" text ("-//OASIS//ENTITIES DocBook XML Additional General Entities V4.1.2//EN" "dbgenent.mod" . "/usr/share/sgml/docbook/dtd/xml/4.1.2/") nil)) +"chapter" +}"qandaset" +"caution" +"refsynopsisdiv" +"funcdef" +"subjectterm" +"surname" +"bibliomisc" +"parameter" +"itemizedlist" +"releaseinfo" +"isbn" +"date" +"citerefentry" +"bookinfo" +"confsponsor" +"arg" +"ulink" +"mediaobjectco" +"msgtext" +"issuenum" +"refclass" +"contractsponsor" +"inlinemediaobject" +"authorinitials" +"markup" +"refsect3info" +"partinfo" +"tocback" +"tocchap" +"otheraddr" +"qandaentry" +"option" +"article" +"callout" +"orderedlist" +"bibliomixed" +"chapterinfo" +"paramdef" +"computeroutput" +"tertiaryie" +"prefaceinfo" +"tocpart" +"setinfo" +"refsynopsisdivinfo" +"simplesect" +"year" +"conftitle" +"funcparams" +"screeninfo" +"para" +"biblioset" +"guiicon" +"methodname" +"sect5" +"lineannotation" +"programlistingco" +"inlinegraphic" +"ooclass" +"refmeta" +"seealsoie" +"sect4" +"appendix" +"revnumber" +"affiliation" +"publisher" +"issn" +"sect3" +"msgaud" +"pubdate" +"sect2" +"refsect2info" +"refentry" +"tocfront" +"modifier" +"audiodata" +"textobject" +"figure" +"informaltable" +"firstname" +"guimenuitem" +"sect1" +"seealso" +"substeps" +"highlights" +"procedure" +"screenshot" +"subject" +"type" +"acronym" +"thead" +"constant" +"abbrev" +"primaryie" +"section" +"book" +"varargs" +"row" +"tip" +"keycode" +"oointerface" +"footnoteref" +"secondaryie" +"revdescription" +"printhistory" +"footnote" +"partintro" +"shortcut" +"fax" +"pob" +"synopfragmentref" +"label" +"glosslist" +"address" +"refsect1info" +"dedication" +"synopfragment" +"copyright" +"corpauthor" +"token" +"colophon" +"preface" +"imageobject" +"member" +"mousebutton" +"email" +"indexinfo" +"warning" +"beginpage" +"volumenum" +"pagenums" +"artpagenums" +"guimenu" +"guilabel" +"trademark" +"areaspec" +"answer" +"msginfo" +"inlineequation" +"productname" +"othercredit" +"prompt" +"medialabel" +"errortype" +"refname" +"glossseealso" +"abstract" +"foreignphrase" +"sect5info" +"audioobject" +"areaset" +"glosssee" +"glossentry" +"msgmain" +"authorblurb" +"revhistory" +"structfield" +"guisubmenu" +"initializer" +"group" +"term" +"listitem" +"example" +"msg" +"wordasword" +"bibliography" +"sidebarinfo" +"msgsub" +"contrib" +"lotentry" +"varlistentry" +"literallayout" +"application" +"sidebar" +"keyword" +"corpname" +"tocentry" +"glossary" +"phone" +"question" +"msgexplan" +"informalexample" +"important" +"remark" +"ooexception" +"link" +"xref" +"seeie" +"sect4info" +"classsynopsisinfo" +"funcsynopsisinfo" +"entry" +"spanspec" +"formalpara" +"authorgroup" +"sgmltag" +"keycap" +"refentryinfo" +"chapter" +"set" +"simplemsgentry" +"mediaobject" +"varname" +"refmiscinfo" +"index" +"alt" +"glossdef" +"modespec" +"systemitem" +"quote" +"tertiary" +"methodsynopsis" +"keycombo" +"function" +"emphasis" +"lot" +"manvolnum" +"ackno" +"methodparam" +"caption" +"co" +"msgorig" +"bibliomset" +"segtitle" +"simpara" +"confdates" +"postcode" +"entrytbl" +"calloutlist" +"productnumber" +"glossaryinfo" +"reference" +"accel" +"state" +"cmdsynopsis" +"superscript" +"citetitle" +"refnamediv" +"sect3info" +"videodata" +"blockquote" +"indexentry" +"note" +"constructorsynopsis" +"synopsis" +"legalnotice" +"invpartnumber" +"editor" +"screen" +"author" +"anchor" +"programlisting" +"confnum" +"step" +"destructorsynopsis" +"edition" +"epigraph" +"msgentry" +"filename" +"errorcode" +"sectioninfo" +"setindexinfo" +"bibliographyinfo" +"country" +"street" +"imageobjectco" +"seg" +"qandadiv" +"confgroup" +"interface" +"referenceinfo" +"biblioentry" +"publishername" +"contractnum" +"envar" +"olink" +"sect2info" +"see" +"collabname" +"honorific" +"indexdiv" +"void" +"fieldsynopsis" +"othername" +"articleinfo" +"subtitle" +"tfoot" +"table" +"hardware" +"refdescriptor" +"city" +"screenco" +"subjectset" +"appendixinfo" +"toc" +"tgroup" +"seglistitem" +"menuchoice" +"revision" +"equation" +"graphicco" +"seriesvolnums" +"action" +"refentrytitle" +"jobtitle" +"indexterm" +"property" +"itermset" +"structname" +"errorname" +"interfacename" +"phrase" +"bibliodiv" +"sect1info" +"variablelist" +"refpurpose" +"setindex" +"funcprototype" +"colspec" +"pubsnumber" +"guibutton" +"classname" +"toclevel5" +"videoobject" +"bridgehead" +"lineage" +"title" +"symbol" +"literal" +"glossdiv" +"toclevel4" +"primary" +"holder" +"sbr" +"area" +"exceptionname" +"refsect3" +"toclevel3" +"part" +"msglevel" +"keysym" +"refsect2" +"toclevel2" +"segmentedlist" +"classsynopsis" +"collab" +"replaceable" +"glossterm" +"refsect1" +"toclevel1" +"attribution" +"informalequation" +"keywordset" +"orgname" +"returnvalue" +"secondary" +"informalfigure" +"msgrel" +"tbody" +"msgset" +"funcsynopsis" +"database" +"shortaffil" +"imagedata" +"objectinfo" +"titleabbrev" +"optional" +"firstterm" +"revremark" +"subscript" +"command" +"orgdiv" +"simplelist" +"graphic" +"userinput" +"citation" +}(attlist (("defaultlabel" (name-token-group ("qanda" "number" "none")) IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +2p #]z@b8)Vn^ 2q{2ejN1M%UJT7L17TJU%M1Nje2{q2 ^nV)8b@z]# p2p #]z@b8)Vn^ 2q{2ejN1M%UJT7s1p #]z@b8)Vn^ 2q{2ejN1M%UJT7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +L-p #]z@8)Vn^ 2q{2ejN1M%UJ7-7JU%M1Nje2{q2 ^nV)8@z]# p-p #]z@8)Vn^ 2q{2ejN1M%UJ7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +L,9p #]z@b8)Vn^ 2q{2ejN1M%mUJT7[s#9p #]z@b8)Vn^ 2q{2ejN1M%mUJT7[L9p #]z@b8)Vn^ 2q{2ejN1M%mUJT7[9[p #]z@b8)Vn^ 2q{2ejN1M%mUJT7[9p #]z@b8)Vn^ 2q{2ejN1M%mUJT7[s9p #]z@b8)Vn^ 2q{2ejN1M%mUJT7[[(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +b7 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("class" (name-token-group ("command" "function" "option")) IMPLIED) ("moreinfo" (name-token-group ("refentry" "none")) (nil "none")) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("spacing" (name-token-group ("normal" "compact")) IMPLIED) ("mark" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +Ls(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +5(attlist (("contents" IDREFS IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +97@!KOsL#3 +EAEhgB  vu_3q\9f*{9{*f9\q3_uv  BghEAE +3#LsOK!@7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("choice" (name-token-group ("opt" "req" "plain")) (nil "opt")) ("rep" (name-token-group ("norepeat" "repeat")) (nil "norepeat")) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +S`n (attlist (("url" CDATA REQUIRED) ("type" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +b7 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +rL(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +87TJUm%M1Nje2{q2 ^nV)8b@z]# p8p #]z@b8)Vn^ 2q{2ejN1M%mUJT7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +rIzzIIzL(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +97@!KOsL#3 +EAEhgB  vu_3q\9f*{9{*f9\q3_uv  BghEAE +3#LsOK!@7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +97@!KOsL#3 +EAEhgB  vu_3q\9f*{9{*f9\q3_uv  BghEAE +3#LsOK!@7(attlist (("label" CDATA IMPLIED) ("linkend" IDREF IMPLIED) ("pagenum" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +b7 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("label" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +cc(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("class" (name-token-group ("journalarticle" "productsheet" "whitepaper" "techreport" "specification" "faq")) IMPLIED) ("parentbook" IDREF IMPLIED) ("status" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +"L<p #]z@b8)Vn^ 2q{2ejN1M%mUJT7^-HQ <p #]z@b8)Vn^ 2q{2ejN1M%mUJT7^-HQ <p #]z@b8)Vn^ 2q{2ejN1M%mUJT7^-HQ <p #]z@b8)Vn^ 2q{2ejN1M%mUJT7^-HQ "s +# <p #]z@b8)Vn^ 2q{2ejN1M%mUJT7^-HQ C, > Q H-^p #]z@b8)Vn^ 2q{2ejN1M%mUJT7, > ^, > -, > H, > Q "<p #]z@b8)Vn^ 2q{2ejN1M%mUJT7^-HQ "s +<p #]z@b8)Vn^ 2q{2ejN1M%mUJT7^-HQ  > , , > ^-HQ , > H, > -, > ^(attlist (("arearefs" IDREFS REQUIRED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +87TJUm%M1Nje2{q2 ^nV)8b@z]# p8p #]z@b8)Vn^ 2q{2ejN1M%mUJT7(attlist (("numeration" (name-token-group ("arabic" "upperalpha" "loweralpha" "upperroman" "lowerroman")) IMPLIED) ("inheritnum" (name-token-group ("inherit" "ignore")) (nil "ignore")) ("continuation" (name-token-group ("continues" "restarts")) (nil "restarts")) ("spacing" (name-token-group ("normal" "compact")) IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +Ls(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +47@!KOsL#3 +EAEhgB  vu_3q\(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +97@!KOsL#3 +EAEhgB  vu_3q\9f*{9{*f9\q3_uv  BghEAE +3#LsOK!@7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +0`(attlist (("moreinfo" (name-token-group ("refentry" "none")) (nil "none")) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +A79w|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4(attlist (("linkends" IDREFS IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +W9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +97@!KOsL#3 +EAEhgB  vu_3q\9f*{9{*f9\q3_uv  BghEAE +3#LsOK!@7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("contents" IDREFS IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +97@!KOsL#3 +EAEhgB  vu_3q\9f*{9{*f9\q3_uv  BghEAE +3#LsOK!@7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +97@!KOsL#3 +EAEhgB  vu_3q\9f*{9{*f9\q3_uv  BghEAE +3#LsOK!@7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +Ls#8p #]z@b8)Vn^ 2q{2ejN1M%mUJT78p #]z@b8)Vn^ 2q{2ejN1M%mUJT7s8p #]z@b8)Vn^ 2q{2ejN1M%mUJT78p #]z@b8)Vn^ 2q{2ejN1M%mUJT7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +A79w|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +b7 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +%M1Nje2{qV)8b@z]# p7 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("relation" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +27@!KOsL#3 +EAEhgB  vu_3q\2\q3_uv  BghEAE +3#LsOK!@7(attlist (("moreinfo" (name-token-group ("refentry" "none")) (nil "none")) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("renderas" (name-token-group ("sect1" "sect2" "sect3" "sect4")) IMPLIED) ("label" CDATA IMPLIED) ("status" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + LL,s#:p #]z@b8)Vn^ 2q{2ejN1M%mUJT7H-,:p #]z@b8)Vn^ 2q{2ejN1M%mUJT7H-,:p #]z@b8)Vn^ 2q{2ejN1M%mUJT7H-,s:p #]z@b8)Vn^ 2q{2ejN1M%mUJT7H-?, H +- p #]z@b8)Vn^ 2q{2ejN1M%mUJT7, H, - , , - H +, - (attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +b7 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("entityref" ENTITY IMPLIED) ("fileref" CDATA IMPLIED) ("format" (name-token-group ("BMP" "CGM-CHAR" "CGM-BINARY" "CGM-CLEAR" "DITROFF" "DVI" "EPS" "EQN" "FAX" "GIF" "GIF87a" "GIF89a" "JPG" "JPEG" "IGES" "PCX" "PIC" "PNG" "PS" "SGML" "TBL" "TEX" "TIFF" "WMF" "WPG" "linespecific")) IMPLIED) ("srccredit" CDATA IMPLIED) ("width" CDATA IMPLIED) ("depth" CDATA IMPLIED) ("align" (name-token-group ("left" "right" "center")) IMPLIED) ("scale" CDATA IMPLIED) ("scalefit" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +JG(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +757777(attlist (("linkends" IDREFS IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +W9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("renderas" (name-token-group ("sect1" "sect2" "sect3" "sect5")) IMPLIED) ("label" CDATA IMPLIED) ("status" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +LL,s#;p #]z@b8)Vn^ 2q{2ejN1M%mUJT7H6- ,;p #]z@b8)Vn^ 2q{2ejN1M%mUJT7H6- ,;p #]z@b8)Vn^ 2q{2ejN1M%mUJT7H6- ,s;p #]z@b8)Vn^ 2q{2ejN1M%mUJT7H6- @, + + + + +H 6 - p #]z@b8)Vn^ 2q{2ejN1M%mUJT7, + + + + +H, + + + + +6, + + + + +-  + + + +, +, + + + + +- 6 H , + + + + +6 , + + + + +- (attlist (("label" CDATA IMPLIED) ("status" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) ++LL,s#<p #]z@b8)Vn^ 2q{2ejN1M%mUJT7^- H +Q <p #]z@b8)Vn^ 2q{2ejN1M%mUJT7^- H +Q ,<p #]z@b8)Vn^ 2q{2ejN1M%mUJT7^- H +Q ,<p #]z@b8)Vn^ 2q{2ejN1M%mUJT7^- H +Q ,s<p #]z@b8)Vn^ 2q{2ejN1M%mUJT7^- H +Q A, Q H-^p #]z@b8)Vn^ 2q{2ejN1M%mUJT7, ^, - , H +, Q  , , ^-HQ , H, -, ^(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +qyg6pqqyqyqyg6(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +q(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("renderas" (name-token-group ("sect1" "sect2" "sect4" "sect5")) IMPLIED) ("label" CDATA IMPLIED) ("status" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +LL,s#;p #]z@b8)Vn^ 2q{2ejN1M%mUJT7H=- ,;p #]z@b8)Vn^ 2q{2ejN1M%mUJT7H=- ,;p #]z@b8)Vn^ 2q{2ejN1M%mUJT7H=- ,s;p #]z@b8)Vn^ 2q{2ejN1M%mUJT7H=- @, + + + + +H = - p #]z@b8)Vn^ 2q{2ejN1M%mUJT7, + + + + +H, + + + + +=, + + + + +-  + + + +, +, + + + + +- = H , + + + + += , + + + + +- (attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +b7 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("renderas" (name-token-group ("sect1" "sect3" "sect4" "sect5")) IMPLIED) ("label" CDATA IMPLIED) ("status" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +LL,s#;p #]z@b8)Vn^ 2q{2ejN1M%mUJT7HC- ,;p #]z@b8)Vn^ 2q{2ejN1M%mUJT7HC- ,;p #]z@b8)Vn^ 2q{2ejN1M%mUJT7HC- ,s;p #]z@b8)Vn^ 2q{2ejN1M%mUJT7HC- @, + + + + +H C - p #]z@b8)Vn^ 2q{2ejN1M%mUJT7, + + + + +H, + + + + +C, + + + + +-  + + + +, +, + + + + +- C H , + + + + +C , + + + + +- (attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +97@!KOsL#3 +EAEhgB  vu_3q\9f*{9{*f9\q3_uv  BghEAE +3#LsOK!@7(attlist (("status" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +;7;bbb(attlist (("label" CDATA IMPLIED) ("linkend" IDREF IMPLIED) ("pagenum" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +b7 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("entityref" ENTITY IMPLIED) ("fileref" CDATA IMPLIED) ("format" (name-token-group ("BMP" "CGM-CHAR" "CGM-BINARY" "CGM-CLEAR" "DITROFF" "DVI" "EPS" "EQN" "FAX" "GIF" "GIF87a" "GIF89a" "JPG" "JPEG" "IGES" "PCX" "PIC" "PNG" "PS" "SGML" "TBL" "TEX" "TIFF" "WMF" "WPG" "linespecific")) IMPLIED) ("srccredit" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +r=2V)8b@z]# pp #]z@b8)V2=p #]z@b8)V2(attlist (("float" CDATA (nil "0")) ("pgwide" CDATA IMPLIED) ("label" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +Ls8)Vn^ q{2ejN78)Vn^ q{2ejN78)Vn^ q{2ejN7(attlist (("frame" (name-token-group ("top" "bottom" "topbot" "all" "sides" "none")) IMPLIED) ("colsep" CDATA IMPLIED) ("rowsep" CDATA IMPLIED) ("label" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED) ("tabstyle" CDATA IMPLIED) ("tocentry" CDATA IMPLIED) ("shortentry" CDATA IMPLIED) ("orient" (name-token-group ("port" "land")) IMPLIED) ("pgwide" CDATA IMPLIED))) +-{-{(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("moreinfo" (name-token-group ("refentry" "none")) (nil "none")) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("renderas" (name-token-group ("sect2" "sect3" "sect4" "sect5")) IMPLIED) ("label" CDATA IMPLIED) ("status" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +?LL,s#;p #]z@b8)Vn^ 2q{2ejN1M%mUJT7HF- ,;p #]z@b8)Vn^ 2q{2ejN1M%mUJT7HF- ,;p #]z@b8)Vn^ 2q{2ejN1M%mUJT7HF- ,s;p #]z@b8)Vn^ 2q{2ejN1M%mUJT7HF- @, + + + + +H F - p #]z@b8)Vn^ 2q{2ejN1M%mUJT7, + + + + +H, + + + + +F, + + + + +-  + + + +, +, + + + + +- F H , + + + + +F , + + + + +- (attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +W9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("performance" (name-token-group ("optional" "required")) (nil "required")) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +72b@z]# pp #]z@b27(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +9p #]z@b8)Vn^ 2q{2ejN1M%mUJT7L87TJUm%M1Nje2{q2 ^nV)8b@z]# p9p #]z@b8)Vn^ 2q{2ejN1M%mUJT7s8p #]z@b8)Vn^ 2q{2ejN1M%mUJT7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +1{22{(attlist (("weight" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79wY(attlist (("valign" (name-token-group ("top" "middle" "bottom")) IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +Daa(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED) ("class" (name-token-group ("limit")) IMPLIED))) +79`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79wY(attlist (("linkends" IDREFS IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +W9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("label" CDATA IMPLIED) ("status" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +  +LL,s#:p #]z@b8)Vn^ 2q{2ejN1M%mUJT7H^,:p #]z@b8)Vn^ 2q{2ejN1M%mUJT7H^,:p #]z@b8)Vn^ 2q{2ejN1M%mUJT7H^,s:p #]z@b8)Vn^ 2q{2ejN1M%mUJT7H^?, H +^ p #]z@b8)Vn^ 2q{2ejN1M%mUJT7, H, ^ , , ^ H +, ^ (attlist (("fpi" CDATA IMPLIED) ("label" CDATA IMPLIED) ("status" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +s,yX!>BxLxB>!Xy,ss,yX!>Bxs,yX!>Bxs#s,yX!>Bxs,yX!>Bxs(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("rowsep" CDATA IMPLIED) ("valign" (name-token-group ("top" "middle" "bottom")) IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +L-p #]z@8)Vn^ 2q{2ejN1M%UJ7-7JU%M1Nje2{q2 ^nV)8@z]# p-p #]z@8)Vn^ 2q{2ejN1M%UJ7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +J<(attlist (("linkend" IDREF REQUIRED) ("label" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("linkends" IDREFS IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +W9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +17TJU%M1Nje2{q2 ^nV)8b@z]# p1p #]z@b8)Vn^ 2q{2ejN1M%UJT7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +22(attlist (("label" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +"Nje2{q2 ^nV)8@z]# p"p #]z@8)Vn^ 2q{2ejN(attlist (("label" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + L<p #]z@b8)Vn^ 2q{2ejN1M%mUJT7^-HQs#<p #]z@b8)Vn^ 2q{2ejN1M%mUJT7^-HQ$87TJUm%M1Nje2{q2 ^nV)8b@z]# p>$:p #]z@b8)Vn^ 2q{2ejN1M%mUJT7s#>$9p #]z@b8)Vn^ 2q{2ejN1M%mUJT7L>$>$8p #]z@b8)Vn^ 2q{2ejN1M%mUJT7>$9p #]z@b8)Vn^ 2q{2ejN1M%mUJT7s>$(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +97@!KOsL#3 +EAEhgB  vu_3q\9f*{9{*f9\q3_uv  BghEAE +3#LsOK!@7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +L(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("srccredit" CDATA IMPLIED) ("pagenum" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("linkend" IDREF IMPLIED) ("role" CDATA IMPLIED))) +b7 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("width" CDATA IMPLIED) ("format" (NOTATION ("linespecific")) (nil "linespecific")) ("linenumbering" (name-token-group ("numbered" "unnumbered")) IMPLIED) ("class" (name-token-group ("monospaced" "normal")) (nil "normal")) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +d77 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("class" (name-token-group ("hardware" "software")) IMPLIED) ("moreinfo" (name-token-group ("refentry" "none")) (nil "none")) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +b7 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +L2p #]z@b8)Vn^ 2q{2ejN1M%UJT7s2p #]z@b8)Vn^ 2q{2ejN1M%UJT7L2p #]z@b8)Vn^ 2q{2ejN1M%UJT72p #]z@b8)Vn^ 2q{2ejN1M%UJT72p #]z@b8)Vn^ 2q{2ejN1M%UJT7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("linkend" IDREF IMPLIED) ("pagenum" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +b7 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("status" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + :p #]z@b8)Vn^ 2q{2ejN1M%mUJT7LO87TJUm%M1Nje2{q2 ^nV)8b@z]# pO:p #]z@b8)Vn^ 2q{2ejN1M%mUJT7s#O9p #]z@b8)Vn^ 2q{2ejN1M%mUJT7LOO8p #]z@b8)Vn^ 2q{2ejN1M%mUJT7O9p #]z@b8)Vn^ 2q{2ejN1M%mUJT7sO(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +o1p #]z@b8)Vn^ 2q{2ejN1M%UJT717TJU%M1Nje2{q2 ^nV)8b@z]# p1p #]z@b8)Vn^ 2q{2ejN1M%UJT7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +L8p #]z@b8)Vn^ 2q{2ejN1M%mUJT787TJUm%M1Nje2{q2 ^nV)8b@z]# p8p #]z@b8)Vn^ 2q{2ejN1M%mUJT7(attlist (("width" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +$7Nje2{q2 ^nV)8@z]# p$p #]z@8)Vn^ 2q{2ejN7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +L-p #]z@8)Vn^ 2q{2ejN1M%UJ7-7JU%M1Nje2{q2 ^nV)8@z]# p-p #]z@8)Vn^ 2q{2ejN1M%UJ7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +b7 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +JU(attlist (("endterm" IDREF IMPLIED) ("linkend" IDREF REQUIRED) ("type" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +b7 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("endterm" IDREF IMPLIED) ("linkend" IDREF REQUIRED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("linkend" IDREF IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +W9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +97@!KOsL#3 +EAEhgB  vu_3q\9f*{9{*f9\q3_uv  BghEAE +3#LsOK!@7(attlist (("format" (NOTATION ("linespecific")) (nil "linespecific")) ("linenumbering" (name-token-group ("numbered" "unnumbered")) IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +B779w|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4(attlist (("format" (NOTATION ("linespecific")) (nil "linespecific")) ("linenumbering" (name-token-group ("numbered" "unnumbered")) IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +B779w|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4(attlist (("colname" CDATA IMPLIED) ("namest" CDATA IMPLIED) ("nameend" CDATA IMPLIED) ("spanname" CDATA IMPLIED) ("morerows" CDATA IMPLIED) ("colsep" CDATA IMPLIED) ("rowsep" CDATA IMPLIED) ("align" (name-token-group ("left" "right" "center" "justify" "char")) IMPLIED) ("char" CDATA IMPLIED) ("charoff" CDATA IMPLIED) ("rotate" CDATA IMPLIED) ("valign" (name-token-group ("top" "middle" "bottom")) IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +y{2V)8b@z]# p7 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("namest" CDATA REQUIRED) ("nameend" CDATA REQUIRED) ("spanname" CDATA REQUIRED) ("colsep" CDATA IMPLIED) ("rowsep" CDATA IMPLIED) ("align" (name-token-group ("left" "right" "center" "justify" "char")) IMPLIED) ("char" CDATA IMPLIED) ("charoff" CDATA IMPLIED))) +(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +L72(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +v__v(attlist (("class" (name-token-group ("attribute" "attvalue" "element" "endtag" "emptytag" "genentity" "numcharref" "paramentity" "pi" "xmlpi" "starttag" "sgmlcomment")) IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("moreinfo" (name-token-group ("refentry" "none")) (nil "none")) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +97@!KOsL#3 +EAEhgB  vu_3q\9f*{9{*f9\q3_uv  BghEAE +3#LsOK!@7(attlist (("label" CDATA IMPLIED) ("status" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +%LL,s#<p #]z@b8)Vn^ 2q{2ejN1M%mUJT7^- H +Q <p #]z@b8)Vn^ 2q{2ejN1M%mUJT7^- H +Q ,<p #]z@b8)Vn^ 2q{2ejN1M%mUJT7^- H +Q ,<p #]z@b8)Vn^ 2q{2ejN1M%mUJT7^- H +Q ,s<p #]z@b8)Vn^ 2q{2ejN1M%mUJT7^- H +Q A, Q H-^p #]z@b8)Vn^ 2q{2ejN1M%mUJT7, ^, - , H +, Q  , , ^-HQ , H, -, ^(attlist (("fpi" CDATA IMPLIED) ("status" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +,+L__,_,+s#_B_,+_,+s_(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED) ("audience" CDATA IMPLIED) ("level" CDATA IMPLIED) ("origin" CDATA IMPLIED))) +(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +rIzzIIzL(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("class" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +<p #]z@b8)Vn^ 2q{2ejN1M%mUJT7L~:7TJUm%M1Nje2{q2 ^nV)8b@z]# p<p #]z@b8)Vn^ 2q{2ejN1M%mUJT7s#;p #]z@b8)Vn^ 2q{2ejN1M%mUJT7L:p #]z@b8)Vn^ 2q{2ejN1M%mUJT7;p #]z@b8)Vn^ 2q{2ejN1M%mUJT7s(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("subject" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +)7%M1Nje2{q2 ^nV)8@z]# p*p #]z@8)Vn^ 2q{2ejN1M%7(attlist (("application" (NOTATION ("BMP" "CGM-CHAR" "CGM-BINARY" "CGM-CLEAR" "DITROFF" "DVI" "EPS" "EQN" "FAX" "GIF" "GIF87a" "GIF89a" "JPG" "JPEG" "IGES" "PCX" "PIC" "PNG" "PS" "SGML" "TBL" "TEX" "TIFF" "WMF" "WPG" "linespecific")) IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("class" (name-token-group ("constant" "groupname" "library" "macro" "osname" "resource" "systemname" "username")) IMPLIED) ("moreinfo" (name-token-group ("refentry" "none")) (nil "none")) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +Y79`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +b7 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("sortas" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +W9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +XJ55JUJUJJU(attlist (("action" (name-token-group ("click" "double-click" "press" "seq" "simul" "other")) IMPLIED) ("otheraction" CDATA IMPLIED) ("moreinfo" (name-token-group ("refentry" "none")) (nil "none")) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +|ZZ|(attlist (("moreinfo" (name-token-group ("refentry" "none")) (nil "none")) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +A79w|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +b7 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("label" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +Ls#s(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79wY(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED) ("choice" (name-token-group ("opt" "req" "plain")) (nil "req")) ("rep" (name-token-group ("norepeat" "repeat")) (nil "norepeat")))) +XJ00JJJJ(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +2V)8b@z]# p(attlist (("label" CDATA IMPLIED) ("linkends" IDREFS IMPLIED) ("id" ID REQUIRED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("relation" CDATA IMPLIED) ("role" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED))) +47@!KOsL#3 +EAEhgB  vu_3q\(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +Y79wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +b7 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("cols" CDATA REQUIRED) ("tgroupstyle" CDATA IMPLIED) ("colname" CDATA IMPLIED) ("spanname" CDATA IMPLIED) ("namest" CDATA IMPLIED) ("nameend" CDATA IMPLIED) ("colsep" CDATA IMPLIED) ("rowsep" CDATA IMPLIED) ("align" (name-token-group ("left" "right" "center" "justify" "char")) IMPLIED) ("char" CDATA IMPLIED) ("charoff" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +ZDllZl(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +L"s"""(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +97@!KOsL#3 +EAEhgB  vu_3q\9f*{9{*f9\q3_uv  BghEAE +3#LsOK!@7(attlist (("label" CDATA IMPLIED) ("status" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +LLjs#HHjHjsHH(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("label" CDATA IMPLIED) ("sepchar" CDATA (nil " ")) ("cmdlength" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +SxtxSt(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + w9M`(attlist (("pubwork" (name-token-group ("article" "book" "chapter" "part" "refentry" "section" "journal" "series" "set" "manuscript")) IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +b7 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +'A(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +97@!KOsL#3 +EAEhgB  vu_3q\9f*{9{*f9\q3_uv  BghEAE +3#LsOK!@7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("entityref" ENTITY IMPLIED) ("fileref" CDATA IMPLIED) ("format" (name-token-group ("BMP" "CGM-CHAR" "CGM-BINARY" "CGM-CLEAR" "DITROFF" "DVI" "EPS" "EQN" "FAX" "GIF" "GIF87a" "GIF89a" "JPG" "JPEG" "IGES" "PCX" "PIC" "PNG" "PS" "SGML" "TBL" "TEX" "TIFF" "WMF" "WPG" "linespecific")) IMPLIED) ("srccredit" CDATA IMPLIED) ("width" CDATA IMPLIED) ("depth" CDATA IMPLIED) ("align" (name-token-group ("left" "right" "center")) IMPLIED) ("scale" CDATA IMPLIED) ("scalefit" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +dL8p #]z@b8)Vn^ 2q{2ejN1M%mUJT78p #]z@b8)Vn^ 2q{2ejN1M%mUJT7d8p #]z@b8)Vn^ 2q{2ejN1M%mUJT78p #]z@b8)Vn^ 2q{2ejN1M%mUJT7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +]f<f(<(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +L-p #]z@8)Vn^ 2q{2ejN1M%UJ7-7JU%M1Nje2{q2 ^nV)8@z]# p-p #]z@8)Vn^ 2q{2ejN1M%UJ7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +5JUUU(attlist (("label" CDATA IMPLIED) ("format" (NOTATION ("linespecific")) (nil "linespecific")) ("linenumbering" (name-token-group ("numbered" "unnumbered")) IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +f7{7 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +Lp #]z@b8)V2772V)8b@z]# pp #]z@b8)V27(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +@!KOOK!@(attlist (("width" CDATA IMPLIED) ("format" (NOTATION ("linespecific")) (nil "linespecific")) ("linenumbering" (name-token-group ("numbered" "unnumbered")) IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +d77 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +@!KOOK!@(attlist (("id" ID REQUIRED) ("pagenum" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("width" CDATA IMPLIED) ("format" (NOTATION ("linespecific")) (nil "linespecific")) ("linenumbering" (name-token-group ("numbered" "unnumbered")) IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +d77 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("performance" (name-token-group ("optional" "required")) (nil "required")) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +L9p #]z@b8)Vn^ 2q{2ejN1M%mUJT7S9S7TJUm%M1Nje2{q2 ^nV)8b@z]# p9Sp #]z@b8)Vn^ 2q{2ejN1M%mUJT787TJUm%M1Nje2{q2 ^nV)8b@z]# p87TJUm%M1Nje2{q2 ^nV)8b@z]# p(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +5JUUU(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +d222(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("class" (name-token-group ("headerfile" "devicefile" "libraryfile" "directory" "symlink")) IMPLIED) ("path" CDATA IMPLIED) ("moreinfo" (name-token-group ("refentry" "none")) (nil "none")) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("moreinfo" (name-token-group ("refentry" "none")) (nil "none")) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +97@!KOsL#3 +EAEhgB  vu_3q\9f*{9{*f9\q3_uv  BghEAE +3#LsOK!@7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +97@!KOsL#3 +EAEhgB  vu_3q\9f*{9{*f9\q3_uv  BghEAE +3#LsOK!@7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +97@!KOsL#3 +EAEhgB  vu_3q\9f*{9{*f9\q3_uv  BghEAE +3#LsOK!@7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +z(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +b7 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +2p #]z@b8)Vn^ 2q{2ejN1M%UJT7L17TJU%M1Nje2{q2 ^nV)8b@z]# p2p #]z@b8)Vn^ 2q{2ejN1M%UJT7s1p #]z@b8)Vn^ 2q{2ejN1M%UJT7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +q/(attlist (("moreinfo" (name-token-group ("refentry" "none")) (nil "none")) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +97@!KOsL#3 +EAEhgB  vu_3q\9f*{9{*f9\q3_uv  BghEAE +3#LsOK!@7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +3\q3_uv  BghEAE +3#LsOK!@7"3"7@!KOsL#3 +EAEhgB  vu_3q\(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("targetdocent" ENTITY IMPLIED) ("linkmode" IDREF IMPLIED) ("localinfo" CDATA IMPLIED) ("type" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +b7 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +97@!KOsL#3 +EAEhgB  vu_3q\9f*{9{*f9\q3_uv  BghEAE +3#LsOK!@7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +W9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +& #@z8)Vn^ 2q{2ejNL]%Nje2{q2 ^nV)8z@# ]' #@z8)Vn^ 2q{2ejNs#]% #@z8)Vn^ 2q{2ejN]& #@z8)Vn^ 2q{2ejNs](attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +XJ(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +97@!KOsL#3 +EAEhgB  vu_3q\9f*{9{*f9\q3_uv  BghEAE +3#LsOK!@7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +Y79wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("valign" (name-token-group ("top" "middle" "bottom")) IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +Daa(attlist (("frame" (name-token-group ("top" "bottom" "topbot" "all" "sides" "none")) IMPLIED) ("colsep" CDATA IMPLIED) ("rowsep" CDATA IMPLIED) ("tabstyle" CDATA IMPLIED) ("tocentry" CDATA IMPLIED) ("shortentry" CDATA IMPLIED) ("orient" (name-token-group ("port" "land")) IMPLIED) ("pgwide" CDATA IMPLIED) ("label" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +L7s{-7{-7{-{-(attlist (("moreinfo" (name-token-group ("refentry" "none")) (nil "none")) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +6|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("scheme" NMTOKEN IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +WW(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +97@!KOsL#3 +EAEhgB  vu_3q\9f*{9{*f9\q3_uv  BghEAE +3#LsOK!@7(attlist (("pagenum" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +*IL**I*Is#*I*Is(attlist (("cols" CDATA REQUIRED) ("tgroupstyle" CDATA IMPLIED) ("colsep" CDATA IMPLIED) ("rowsep" CDATA IMPLIED) ("align" (name-token-group ("left" "right" "center" "justify" "char")) IMPLIED) ("char" CDATA IMPLIED) ("charoff" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +$ZDll$l$Zl(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("moreinfo" (name-token-group ("refentry" "none")) (nil "none")) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +kF4PP4FF4P(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +? vg(attlist (("label" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +Le{{se{{e{(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +{(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("moreinfo" (name-token-group ("refentry" "none")) (nil "none")) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +b7 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("pagenum" CDATA IMPLIED) ("scope" (name-token-group ("all" "global" "local")) IMPLIED) ("significance" (name-token-group ("preferred" "normal")) (nil "normal")) ("class" (name-token-group ("singular" "startofrange" "endofrange")) IMPLIED) ("startref" IDREF IMPLIED) ("zone" IDREFS IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + +iRQRRRiRR R(attlist (("moreinfo" (name-token-group ("refentry" "none")) (nil "none")) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +77(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +b7 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("status" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +9p #]z@b8)Vn^ 2q{2ejN1M%mUJT7L$87TJUm%M1Nje2{q2 ^nV)8b@z]# p$:p #]z@b8)Vn^ 2q{2ejN1M%mUJT7s#$$8p #]z@b8)Vn^ 2q{2ejN1M%mUJT7$9p #]z@b8)Vn^ 2q{2ejN1M%mUJT7s$(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +97@!KOsL#3 +EAEhgB  vu_3q\9f*{9{*f9\q3_uv  BghEAE +3#LsOK!@7(attlist (("termlength" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +Ls(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +W7wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +<p #]z@b8)Vn^ 2q{2ejN1M%mUJT7L :7TJUm%M1Nje2{q2 ^nV)8b@z]# p<p #]z@b8)Vn^ 2q{2ejN1M%mUJT7s#;p #]z@b8)Vn^ 2q{2ejN1M%mUJT7L:p #]z@b8)Vn^ 2q{2ejN1M%mUJT7;p #]z@b8)Vn^ 2q{2ejN1M%mUJT7s(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +&`&(attlist (("colnum" CDATA IMPLIED) ("colname" CDATA IMPLIED) ("colwidth" CDATA IMPLIED) ("colsep" CDATA IMPLIED) ("rowsep" CDATA IMPLIED) ("align" (name-token-group ("left" "right" "center" "justify" "char")) IMPLIED) ("char" CDATA IMPLIED) ("charoff" CDATA IMPLIED))) +(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("moreinfo" (name-token-group ("refentry" "none")) (nil "none")) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +r(attlist (("renderas" (name-token-group ("other" "sect1" "sect2" "sect3" "sect4" "sect5")) IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +Y79wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("pagenum" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +Y79wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("class" (name-token-group ("limit")) IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("moreinfo" (name-token-group ("refentry" "none")) (nil "none")) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +A79w|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4(attlist (("status" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +L:p #]z@b8)Vn^ 2q{2ejN1M%mUJT7s#87TJUm%M1Nje2{q2 ^nV)8b@z]# p8p #]z@b8)Vn^ 2q{2ejN1M%mUJT79p #]z@b8)Vn^ 2q{2ejN1M%mUJT7s(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +HH(attlist (("sortas" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +W9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("label" CDATA IMPLIED) ("linkends" IDREFS IMPLIED) ("units" (name-token-group ("calspair" "linecolumn" "linerange" "linecolumnpair" "other")) IMPLIED) ("otherunits" NMTOKEN IMPLIED) ("coords" CDATA REQUIRED) ("id" ID REQUIRED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("status" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +LLs#8p #]z@b8)Vn^ 2q{2ejN1M%mUJT78p #]z@b8)Vn^ 2q{2ejN1M%mUJT7s8p #]z@b8)Vn^ 2q{2ejN1M%mUJT78p #]z@b8)Vn^ 2q{2ejN1M%mUJT7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +PP(attlist (("label" CDATA IMPLIED) ("status" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +LLjs# >,!yH >,!yHj >,!yHjs >,!yH >,!yH(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("status" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +GLLs#9p #]z@b8)Vn^ 2q{2ejN1M%mUJT7V9p #]z@b8)Vn^ 2q{2ejN1M%mUJT7Vs9p #]z@b8)Vn^ 2q{2ejN1M%mUJT7V9Vp #]z@b8)Vn^ 2q{2ejN1M%mUJT7VV(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +WW(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +Ls..(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED) ("language" CDATA IMPLIED) ("class" (name-token-group ("class" "interface")) (nil "class")))) +d: :d (attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +@(attlist (("class" (name-token-group ("command" "function" "option" "parameter")) IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 9wt(attlist (("linkend" IDREF IMPLIED) ("baseform" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +b7 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("status" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +rLLs#9p #]z@b8)Vn^ 2q{2ejN1M%mUJT7[9p #]z@b8)Vn^ 2q{2ejN1M%mUJT7[s9p #]z@b8)Vn^ 2q{2ejN1M%mUJT7[9[p #]z@b8)Vn^ 2q{2ejN1M%mUJT7[[(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +\\(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +b7 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +{{{(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("sortas" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +W9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("float" CDATA (nil "0")) ("pgwide" CDATA IMPLIED) ("label" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +7Nje2{q ^nV)88)Vn^ q{2ejN7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +L(attlist (("valign" (name-token-group ("top" "middle" "bottom")) IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +aa(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +Ls(attlist (("label" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +CC(attlist (("class" (name-token-group ("name" "table" "field" "key1" "key2" "record")) IMPLIED) ("moreinfo" (name-token-group ("refentry" "none")) (nil "none")) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("entityref" ENTITY IMPLIED) ("fileref" CDATA IMPLIED) ("format" (name-token-group ("BMP" "CGM-CHAR" "CGM-BINARY" "CGM-CLEAR" "DITROFF" "DVI" "EPS" "EQN" "FAX" "GIF" "GIF87a" "GIF89a" "JPG" "JPEG" "IGES" "PCX" "PIC" "PNG" "PS" "SGML" "TBL" "TEX" "TIFF" "WMF" "WPG" "linespecific")) IMPLIED) ("srccredit" CDATA IMPLIED) ("width" CDATA IMPLIED) ("depth" CDATA IMPLIED) ("align" (name-token-group ("left" "right" "center")) IMPLIED) ("scale" CDATA IMPLIED) ("scalefit" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +97@!KOsL#3 +EAEhgB  vu_3q\9f*{9{*f9\q3_uv  BghEAE +3#LsOK!@7(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +Y79wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +A79w|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4(attlist (("linkend" IDREF IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +79wY(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + w9M`(attlist (("moreinfo" (name-token-group ("refentry" "none")) (nil "none")) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +A79w|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) + 79w`(attlist (("columns" CDATA IMPLIED) ("type" (name-token-group ("inline" "vert" "horiz")) (nil "vert")) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +{{(attlist (("entityref" ENTITY IMPLIED) ("fileref" CDATA IMPLIED) ("format" (name-token-group ("BMP" "CGM-CHAR" "CGM-BINARY" "CGM-CLEAR" "DITROFF" "DVI" "EPS" "EQN" "FAX" "GIF" "GIF87a" "GIF89a" "JPG" "JPEG" "IGES" "PCX" "PIC" "PNG" "PS" "SGML" "TBL" "TEX" "TIFF" "WMF" "WPG" "linespecific")) IMPLIED) ("srccredit" CDATA IMPLIED) ("width" CDATA IMPLIED) ("depth" CDATA IMPLIED) ("align" (name-token-group ("left" "right" "center")) IMPLIED) ("scale" CDATA IMPLIED) ("scalefit" CDATA IMPLIED) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +(attlist (("moreinfo" (name-token-group ("refentry" "none")) (nil "none")) ("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +A79w|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4(attlist (("id" ID IMPLIED) ("lang" CDATA IMPLIED) ("remap" CDATA IMPLIED) ("xreflabel" CDATA IMPLIED) ("revisionflag" (name-token-group ("changed" "added" "deleted" "off")) IMPLIED) ("arch" CDATA IMPLIED) ("condition" CDATA IMPLIED) ("conformance" NMTOKENS IMPLIED) ("os" CDATA IMPLIED) ("revision" CDATA IMPLIED) ("security" CDATA IMPLIED) ("userlevel" CDATA IMPLIED) ("vendor" CDATA IMPLIED) ("role" CDATA IMPLIED))) +b7 ^n9wv|XwM:h`8t |/[NZc&P4F; }o'xd:U<5G4=iau }Y\e(nil ("progeny.inc" text "Progeny Linux Systems, Inc." nil) ("debconf" text "debconf" nil) ("gnome" text "GNOME" nil) ("kde" text "KDE" nil) ("psgml" text "PSGML" nil) ("users.root" text "root" nil) ("lsb" text "LSB" nil) ("glsb" text "gLSB" nil) ("elf" text "ELF" nil) ("rpm" text "RPM" nil) ("gcc" text "gcc" nil) ("prompt.root" text "#" nil) ("prompt.sh" text "$" nil) ("prompt.csh" text ">" nil) ("dhcp" text "DHCP" nil) ("dns" text "DNS" nil) ("ftp" text "FTP" nil) ("http" text "HTTP" nil) ("ip" text "IP" nil) ("nfs" text "NFS" nil) ("snmp" text "SNMP" nil) ("tcp" text "TCP" nil) ("tcpip" text "TCP/IP" nil) ("udp" text "UDP" nil) ("api" text "API" nil) ("dtd" text "DTD" nil) ("html" text "HTML" nil) ("url" text "URL" nil) ("xml" text "XML" nil) ("configlet" text "Configlet" nil) ("discover" text "Discover" nil) ("pgi" text "PGI" nil) ("lpm" text "LPM" nil) ("discover-command" text "discover" nil) ("debootstrap" text "debootstrap" nil) ("authorinfo.branden" text " + G. + Branden + Robinson" nil) ("authorinfo.bress" text " + Josh + Bressers" nil) ("authorinfo.darrint" text " + Darrin + Thompson" nil) ("authorinfo.dsp" text " + Douglas + S. + Porter" nil) ("authorinfo.epg" text " + Eric + Gillespie" nil) ("authorinfo.imurdock" text " + Ian + Murdock" nil) ("authorinfo.jdaily" text " + John + R. + Daily" nil) ("authorinfo.jhh" text " + John + H. + Hartman" nil) ("authorinfo.jlicquia" text " + Jeff + Licquia" nil) ("authorinfo.laz" text " + Adam + Lazur" nil) ("authorinfo.rdrake" text " + Robin + Drake" nil) ("authorinfo.schultmc" text " + Michael + C. + Schultheiss" nil) ("authorinfo.shunger" text " + Steve + Hunger" nil) ("authorinfo.sschafer" text " + Steven + M. + Schafer" nil) ("authorinfo.stenhoff" text " + Aaron + T. + Stenhoff" nil) ("author.branden" text "&authorinfo.branden;" nil) ("author.bress" text "&authorinfo.bress;" nil) ("author.darrint" text "&authorinfo.darrint;" nil) ("author.dsp" text "&authorinfo.dsp;" nil) ("author.epg" text "&authorinfo.epg;" nil) ("author.imurdock" text "&authorinfo.imurdock;" nil) ("author.jdaily" text "&authorinfo.jdaily;" nil) ("author.jhh" text "&authorinfo.jhh;" nil) ("author.jlicquia" text "&authorinfo.jlicquia;" nil) ("author.laz" text "&authorinfo.laz;" nil) ("author.rdrake" text "&authorinfo.rdrake;" nil) ("author.schultmc" text "&authorinfo.schultmc;" nil) ("author.shunger" text "&authorinfo.shunger;" nil) ("author.sschafer" text "&authorinfo.sschafer;" nil) ("author.stenhoff" text "&authorinfo.stenhoff;" nil) ("editor.rdrake" text "&authorinfo.rdrake;" nil) ("name.branden" text "G. Branden Robinson" nil) ("name.bress" text "Josh Bressers" nil) ("name.darrint" text "Darrin Thompson" nil) ("name.dsp" text "Douglas S. Porter" nil) ("name.epg" text "Eric Gillespie" nil) ("name.imurdock" text "Ian Murdock" nil) ("name.jdaily" text "John R. Daily" nil) ("name.jhh" text "John H. Hartman" nil) ("name.jlicquia" text "Jeff Licquia" nil) ("name.laz" text "Adam Lazur" nil) ("name.rdrake" text "Robin Drake" nil) ("name.schultmc" text "Michael C. Schultheiss" nil) ("name.shunger" text "Steve Hunger" nil) ("name.sschafer" text "Steven M. Schafer" nil) ("name.stenhoff" text "Aaron T. Stenhoff" nil) ("license.gnu.traditional-doc" text " + + Permission is granted to make and distribute verbatim + copies of this manual provided the copyright notice and + this permission notice are preserved on all copies. + + Permission is granted to copy and distribute modified + versions of this manual under the conditions for verbatim + copying, provided also that the entire resulting derived + work is distributed under the terms of a permission notice + identical to this one. + + Permission is granted to copy and distribute + translations of this manual into another language, under + the above conditions for modified versions. +" nil) ("license.mit" text " + + Permission is hereby granted, free of charge, to any + person obtaining a copy of this software and associated + documentation files (the "Software"), to deal in + the Software without restriction, including without + limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to + do so, subject to the following conditions: + + The above copyright notice and this permission notice + shall be included in all copies or substantial portions of + the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT + WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT + LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + THE COPYRIGHT HOLDER(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR + OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +" nil) ("euro" text "€" nil) ("cularr" text "↶" nil) ("curarr" text "↷" nil) ("dArr" text "⇓" nil) ("darr2" text "⇊" nil) ("dharl" text "⇃" nil) ("dharr" text "⇂" nil) ("lAarr" text "⇚" nil) ("Larr" text "↞" nil) ("larr2" text "⇇" nil) ("larrhk" text "↩" nil) ("larrlp" text "↫" nil) ("larrtl" text "↢" nil) ("lhard" text "↽" nil) ("lharu" text "↼" nil) ("hArr" text "⇔" nil) ("harr" text "↔" nil) ("lrarr2" text "⇆" nil) ("rlarr2" text "⇄" nil) ("harrw" text "↭" nil) ("rlhar2" text "⇌" nil) ("lrhar2" text "⇋" nil) ("lsh" text "↰" nil) ("map" text "↦" nil) ("mumap" text "⊸" nil) ("nearr" text "↗" nil) ("nlArr" text "⇍" nil) ("nlarr" text "↚" nil) ("nhArr" text "⇎" nil) ("nharr" text "↮" nil) ("nrarr" text "↛" nil) ("nrArr" text "⇏" nil) ("nwarr" text "↖" nil) ("olarr" text "↺" nil) ("orarr" text "↻" nil) ("rAarr" text "⇛" nil) ("Rarr" text "↠" nil) ("rarr2" text "⇉" nil) ("rarrhk" text "↪" nil) ("rarrlp" text "↬" nil) ("rarrtl" text "↣" nil) ("rarrw" text "↝" nil) ("rhard" text "⇁" nil) ("rharu" text "⇀" nil) ("rsh" text "↱" nil) ("drarr" text "↘" nil) ("dlarr" text "↙" nil) ("uArr" text "⇑" nil) ("uarr2" text "⇈" nil) ("vArr" text "⇕" nil) ("varr" text "↕" nil) ("uharl" text "↿" nil) ("uharr" text "↾" nil) ("xlArr" text "" nil) ("xhArr" text "" nil) ("xharr" text "" nil) ("xrArr" text "" nil) ("amalg" text "" nil) ("Barwed" text "⌆" nil) ("barwed" text "⊼" nil) ("Cap" text "⋒" nil) ("Cup" text "⋓" nil) ("cuvee" text "⋎" nil) ("cuwed" text "⋏" nil) ("diam" text "⋄" nil) ("divonx" text "⋇" nil) ("intcal" text "⊺" nil) ("lthree" text "⋋" nil) ("ltimes" text "⋉" nil) ("minusb" text "⊟" nil) ("oast" text "⊛" nil) ("ocir" text "⊚" nil) ("odash" text "⊝" nil) ("odot" text "⊙" nil) ("ominus" text "⊖" nil) ("oplus" text "⊕" nil) ("osol" text "⊘" nil) ("otimes" text "⊗" nil) ("plusb" text "⊞" nil) ("plusdo" text "∔" nil) ("rthree" text "⋌" nil) ("rtimes" text "⋊" nil) ("sdot" text "⋅" nil) ("sdotb" text "⊡" nil) ("setmn" text "∖" nil) ("sqcap" text "⊓" nil) ("sqcup" text "⊔" nil) ("ssetmn" text "" nil) ("sstarf" text "⋆" nil) ("timesb" text "⊠" nil) ("top" text "⊤" nil) ("uplus" text "⊎" nil) ("wreath" text "≀" nil) ("xcirc" text "○" nil) ("xdtri" text "▽" nil) ("xutri" text "△" nil) ("coprod" text "∐" nil) ("prod" text "∏" nil) ("sum" text "∑" nil) ("rceil" text "⌉" nil) ("rfloor" text "⌋" nil) ("rpargt" text "" nil) ("urcorn" text "⌝" nil) ("drcorn" text "⌟" nil) ("lceil" text "⌈" nil) ("lfloor" text "⌊" nil) ("ulcorn" text "⌜" nil) ("dlcorn" text "⌞" nil) ("gnap" text "" nil) ("gne" text "≩" nil) ("gnE" text "≩" nil) ("gnsim" text "⋧" nil) ("gvnE" text "" nil) ("lnap" text "" nil) ("lnE" text "≨" nil) ("lne" text "≨" nil) ("lnsim" text "⋦" nil) ("lvnE" text "" nil) ("nap" text "≉" nil) ("ncong" text "≇" nil) ("nequiv" text "≢" nil) ("ngE" text "≱" nil) ("nge" text "" nil) ("nges" text "≱" nil) ("ngt" text "≯" nil) ("nle" text "" nil) ("nlE" text "≰" nil) ("nles" text "≰" nil) ("nlt" text "≮" nil) ("nltri" text "⋪" nil) ("nltrie" text "⋬" nil) ("nmid" text "∤" nil) ("npar" text "∦" nil) ("npr" text "⊀" nil) ("npre" text "" nil) ("nrtri" text "⋫" nil) ("nrtrie" text "⋭" nil) ("nsc" text "⊁" nil) ("nsce" text "" nil) ("nsim" text "≁" nil) ("nsime" text "≄" nil) ("nsmid" text "" nil) ("nspar" text "" nil) ("nsub" text "⊄" nil) ("nsube" text "⊈" nil) ("nsubE" text "⊈" nil) ("nsup" text "⊅" nil) ("nsupE" text "⊉" nil) ("nsupe" text "⊉" nil) ("nvdash" text "⊬" nil) ("nvDash" text "⊭" nil) ("nVDash" text "⊯" nil) ("nVdash" text "⊮" nil) ("prnap" text "⋨" nil) ("prnE" text "" nil) ("prnsim" text "⋨" nil) ("scnap" text "⋩" nil) ("scnE" text "" nil) ("scnsim" text "⋩" nil) ("subne" text "⊊" nil) ("subnE" text "⊊" nil) ("supne" text "⊋" nil) ("supnE" text "⊋" nil) ("vsubnE" text "" nil) ("vsubne" text "" nil) ("vsupne" text "" nil) ("vsupnE" text "" nil) ("ang" text "∠" nil) ("angmsd" text "∡" nil) ("beth" text "ℶ" nil) ("bprime" text "‵" nil) ("comp" text "∁" nil) ("daleth" text "ℸ" nil) ("ell" text "ℓ" nil) ("empty" text "" nil) ("gimel" text "ℷ" nil) ("image" text "ℑ" nil) ("inodot" text "ı" nil) ("nexist" text "∄" nil) ("oS" text "" nil) ("planck" text "ℏ" nil) ("real" text "ℜ" nil) ("sbsol" text "﹨" nil) ("weierp" text "℘" nil) ("ape" text "≊" nil) ("asymp" text "≍" nil) ("bcong" text "≌" nil) ("bepsi" text "" nil) ("bowtie" text "⋈" nil) ("bsim" text "∽" nil) ("bsime" text "⋍" nil) ("bump" text "≎" nil) ("bumpe" text "≏" nil) ("cire" text "≗" nil) ("colone" text "≔" nil) ("cuepr" text "⋞" nil) ("cuesc" text "⋟" nil) ("cupre" text "≼" nil) ("dashv" text "⊣" nil) ("ecir" text "≖" nil) ("ecolon" text "≕" nil) ("eDot" text "≑" nil) ("esdot" text "≐" nil) ("efDot" text "≒" nil) ("egs" text "⋝" nil) ("els" text "⋜" nil) ("erDot" text "≓" nil) ("fork" text "⋔" nil) ("frown" text "⌢" nil) ("gap" text "≳" nil) ("gsdot" text "⋗" nil) ("gE" text "≧" nil) ("gel" text "⋛" nil) ("gEl" text "⋛" nil) ("ges" text "" nil) ("Gg" text "⋙" nil) ("gl" text "≷" nil) ("gsim" text "≳" nil) ("Gt" text "≫" nil) ("lap" text "≲" nil) ("ldot" text "⋖" nil) ("lE" text "≦" nil) ("lEg" text "⋚" nil) ("leg" text "⋚" nil) ("les" text "" nil) ("lg" text "≶" nil) ("Ll" text "⋘" nil) ("lsim" text "≲" nil) ("Lt" text "≪" nil) ("ltrie" text "⊴" nil) ("mid" text "∣" nil) ("models" text "⊧" nil) ("pr" text "≺" nil) ("prap" text "≾" nil) ("pre" text "≼" nil) ("prsim" text "≾" nil) ("rtrie" text "⊵" nil) ("sc" text "≻" nil) ("scap" text "≿" nil) ("sccue" text "≽" nil) ("sce" text "≽" nil) ("scsim" text "≿" nil) ("sfrown" text "" nil) ("smid" text "" nil) ("smile" text "⌣" nil) ("spar" text "" nil) ("sqsub" text "⊏" nil) ("sqsube" text "⊑" nil) ("sqsup" text "⊐" nil) ("sqsupe" text "⊒" nil) ("ssmile" text "" nil) ("Sub" text "⋐" nil) ("subE" text "⊆" nil) ("Sup" text "⋑" nil) ("supE" text "⊇" nil) ("thkap" text "" nil) ("thksim" text "" nil) ("trie" text "≜" nil) ("twixt" text "≬" nil) ("vdash" text "⊢" nil) ("Vdash" text "⊩" nil) ("vDash" text "⊨" nil) ("veebar" text "⊻" nil) ("vltri" text "⊲" nil) ("vprop" text "∝" nil) ("vrtri" text "⊳" nil) ("Vvdash" text "⊪" nil) ("boxh" text "─" nil) ("boxv" text "│" nil) ("boxur" text "└" nil) ("boxul" text "┘" nil) ("boxdl" text "┐" nil) ("boxdr" text "┌" nil) ("boxvr" text "├" nil) ("boxhu" text "┴" nil) ("boxvl" text "┤" nil) ("boxhd" text "┬" nil) ("boxvh" text "┼" nil) ("boxvR" text "╞" nil) ("boxhU" text "╧" nil) ("boxvL" text "╡" nil) ("boxhD" text "╤" nil) ("boxvH" text "╪" nil) ("boxH" text "═" nil) ("boxV" text "║" nil) ("boxUR" text "╘" nil) ("boxUL" text "╛" nil) ("boxDL" text "╕" nil) ("boxDR" text "╒" nil) ("boxVR" text "╟" nil) ("boxHU" text "╨" nil) ("boxVL" text "╢" nil) ("boxHD" text "╥" nil) ("boxVH" text "╫" nil) ("boxVr" text "╠" nil) ("boxHu" text "╩" nil) ("boxVl" text "╣" nil) ("boxHd" text "╦" nil) ("boxVh" text "╬" nil) ("boxuR" text "╙" nil) ("boxUl" text "╜" nil) ("boxdL" text "╖" nil) ("boxDr" text "╓" nil) ("boxUr" text "╚" nil) ("boxuL" text "╝" nil) ("boxDl" text "╗" nil) ("boxdR" text "╔" nil) ("acy" text "а" nil) ("Acy" text "А" nil) ("bcy" text "б" nil) ("Bcy" text "Б" nil) ("vcy" text "в" nil) ("Vcy" text "В" nil) ("gcy" text "г" nil) ("Gcy" text "Г" nil) ("dcy" text "д" nil) ("Dcy" text "Д" nil) ("iecy" text "е" nil) ("IEcy" text "Е" nil) ("iocy" text "ё" nil) ("IOcy" text "Ё" nil) ("zhcy" text "ж" nil) ("ZHcy" text "Ж" nil) ("zcy" text "з" nil) ("Zcy" text "З" nil) ("icy" text "и" nil) ("Icy" text "И" nil) ("jcy" text "й" nil) ("Jcy" text "Й" nil) ("kcy" text "к" nil) ("Kcy" text "К" nil) ("lcy" text "л" nil) ("Lcy" text "Л" nil) ("mcy" text "м" nil) ("Mcy" text "М" nil) ("ncy" text "н" nil) ("Ncy" text "Н" nil) ("ocy" text "о" nil) ("Ocy" text "О" nil) ("pcy" text "п" nil) ("Pcy" text "П" nil) ("rcy" text "р" nil) ("Rcy" text "Р" nil) ("scy" text "с" nil) ("Scy" text "С" nil) ("tcy" text "т" nil) ("Tcy" text "Т" nil) ("ucy" text "у" nil) ("Ucy" text "У" nil) ("fcy" text "ф" nil) ("Fcy" text "Ф" nil) ("khcy" text "х" nil) ("KHcy" text "Х" nil) ("tscy" text "ц" nil) ("TScy" text "Ц" nil) ("chcy" text "ч" nil) ("CHcy" text "Ч" nil) ("shcy" text "ш" nil) ("SHcy" text "Ш" nil) ("shchcy" text "щ" nil) ("SHCHcy" text "Щ" nil) ("hardcy" text "ъ" nil) ("HARDcy" text "Ъ" nil) ("ycy" text "ы" nil) ("Ycy" text "Ы" nil) ("softcy" text "ь" nil) ("SOFTcy" text "Ь" nil) ("ecy" text "э" nil) ("Ecy" text "Э" nil) ("yucy" text "ю" nil) ("YUcy" text "Ю" nil) ("yacy" text "я" nil) ("YAcy" text "Я" nil) ("numero" text "№" nil) ("djcy" text "ђ" nil) ("DJcy" text "Ђ" nil) ("gjcy" text "ѓ" nil) ("GJcy" text "Ѓ" nil) ("jukcy" text "є" nil) ("Jukcy" text "Є" nil) ("dscy" text "ѕ" nil) ("DScy" text "Ѕ" nil) ("iukcy" text "і" nil) ("Iukcy" text "І" nil) ("yicy" text "ї" nil) ("YIcy" text "Ї" nil) ("jsercy" text "ј" nil) ("Jsercy" text "Ј" nil) ("ljcy" text "љ" nil) ("LJcy" text "Љ" nil) ("njcy" text "њ" nil) ("NJcy" text "Њ" nil) ("tshcy" text "ћ" nil) ("TSHcy" text "Ћ" nil) ("kjcy" text "ќ" nil) ("KJcy" text "Ќ" nil) ("ubrcy" text "ў" nil) ("Ubrcy" text "Ў" nil) ("dzcy" text "џ" nil) ("DZcy" text "Џ" nil) ("acute" text "´" nil) ("breve" text "˘" nil) ("caron" text "ˇ" nil) ("cedil" text "¸" nil) ("circ" text "∘" nil) ("dblac" text "˝" nil) ("die" text "¨" nil) ("dot" text "˙" nil) ("grave" text "`" nil) ("macr" text "¯" nil) ("ogon" text "˛" nil) ("ring" text "˚" nil) ("tilde" text "~" nil) ("uml" text "¨" nil) ("agr" text "α" nil) ("Agr" text "Α" nil) ("bgr" text "β" nil) ("Bgr" text "Β" nil) ("ggr" text "γ" nil) ("Ggr" text "Γ" nil) ("dgr" text "δ" nil) ("Dgr" text "Δ" nil) ("egr" text "ε" nil) ("Egr" text "Ε" nil) ("zgr" text "ζ" nil) ("Zgr" text "Ζ" nil) ("eegr" text "η" nil) ("EEgr" text "Η" nil) ("thgr" text "θ" nil) ("THgr" text "Θ" nil) ("igr" text "ι" nil) ("Igr" text "Ι" nil) ("kgr" text "κ" nil) ("Kgr" text "Κ" nil) ("lgr" text "λ" nil) ("Lgr" text "Λ" nil) ("mgr" text "μ" nil) ("Mgr" text "Μ" nil) ("ngr" text "ν" nil) ("Ngr" text "Ν" nil) ("xgr" text "ξ" nil) ("Xgr" text "Ξ" nil) ("ogr" text "ο" nil) ("Ogr" text "Ο" nil) ("pgr" text "π" nil) ("Pgr" text "Π" nil) ("rgr" text "ρ" nil) ("Rgr" text "Ρ" nil) ("sgr" text "σ" nil) ("Sgr" text "Σ" nil) ("sfgr" text "ς" nil) ("tgr" text "τ" nil) ("Tgr" text "Τ" nil) ("ugr" text "υ" nil) ("Ugr" text "Υ" nil) ("phgr" text "φ" nil) ("PHgr" text "Φ" nil) ("khgr" text "χ" nil) ("KHgr" text "Χ" nil) ("psgr" text "ψ" nil) ("PSgr" text "Ψ" nil) ("ohgr" text "ω" nil) ("OHgr" text "Ω" nil) ("aacgr" text "ά" nil) ("Aacgr" text "Ά" nil) ("eacgr" text "έ" nil) ("Eacgr" text "Έ" nil) ("eeacgr" text "ή" nil) ("EEacgr" text "Ή" nil) ("idigr" text "ϊ" nil) ("Idigr" text "Ϊ" nil) ("iacgr" text "ί" nil) ("Iacgr" text "Ί" nil) ("idiagr" text "ΐ" nil) ("oacgr" text "ό" nil) ("Oacgr" text "Ό" nil) ("udigr" text "ϋ" nil) ("Udigr" text "Ϋ" nil) ("uacgr" text "ύ" nil) ("Uacgr" text "Ύ" nil) ("udiagr" text "ΰ" nil) ("ohacgr" text "ώ" nil) ("OHacgr" text "Ώ" nil) ("alpha" text "α" nil) ("beta" text "β" nil) ("gamma" text "γ" nil) ("Gamma" text "Γ" nil) ("gammad" text "Ϝ" nil) ("delta" text "δ" nil) ("Delta" text "Δ" nil) ("epsi" text "∊" nil) ("epsiv" text "ε" nil) ("epsis" text "∊" nil) ("zeta" text "ζ" nil) ("eta" text "η" nil) ("thetas" text "θ" nil) ("Theta" text "Θ" nil) ("thetav" text "ϑ" nil) ("iota" text "ι" nil) ("kappa" text "κ" nil) ("kappav" text "ϰ" nil) ("lambda" text "λ" nil) ("Lambda" text "Λ" nil) ("mu" text "μ" nil) ("nu" text "ν" nil) ("xi" text "ξ" nil) ("Xi" text "Ξ" nil) ("pi" text "π" nil) ("piv" text "ϖ" nil) ("Pi" text "Π" nil) ("rho" text "ρ" nil) ("rhov" text "ϱ" nil) ("sigma" text "σ" nil) ("Sigma" text "Σ" nil) ("sigmav" text "ς" nil) ("tau" text "τ" nil) ("upsi" text "υ" nil) ("Upsi" text "ϒ" nil) ("phis" text "φ" nil) ("Phi" text "Φ" nil) ("phiv" text "ϕ" nil) ("chi" text "χ" nil) ("psi" text "ψ" nil) ("Psi" text "Ψ" nil) ("omega" text "ω" nil) ("Omega" text "Ω" nil) ("b.alpha" text "α" nil) ("b.beta" text "β" nil) ("b.gamma" text "γ" nil) ("b.Gamma" text "Γ" nil) ("b.gammad" text "Ϝ" nil) ("b.delta" text "δ" nil) ("b.Delta" text "Δ" nil) ("b.epsi" text "ε" nil) ("b.epsiv" text "ε" nil) ("b.epsis" text "ε" nil) ("b.zeta" text "ζ" nil) ("b.eta" text "η" nil) ("b.thetas" text "θ" nil) ("b.Theta" text "Θ" nil) ("b.thetav" text "ϑ" nil) ("b.iota" text "ι" nil) ("b.kappa" text "κ" nil) ("b.kappav" text "ϰ" nil) ("b.lambda" text "λ" nil) ("b.Lambda" text "Λ" nil) ("b.mu" text "μ" nil) ("b.nu" text "ν" nil) ("b.xi" text "ξ" nil) ("b.Xi" text "Ξ" nil) ("b.pi" text "π" nil) ("b.Pi" text "Π" nil) ("b.piv" text "ϖ" nil) ("b.rho" text "ρ" nil) ("b.rhov" text "ϱ" nil) ("b.sigma" text "σ" nil) ("b.Sigma" text "Σ" nil) ("b.sigmav" text "ς" nil) ("b.tau" text "τ" nil) ("b.upsi" text "υ" nil) ("b.Upsi" text "ϒ" nil) ("b.phis" text "φ" nil) ("b.Phi" text "Φ" nil) ("b.phiv" text "ϕ" nil) ("b.chi" text "χ" nil) ("b.psi" text "ψ" nil) ("b.Psi" text "Ψ" nil) ("b.omega" text "ω" nil) ("b.Omega" text "Ω" nil) ("aacute" text "á" nil) ("Aacute" text "Á" nil) ("acirc" text "â" nil) ("Acirc" text "Â" nil) ("agrave" text "à" nil) ("Agrave" text "À" nil) ("aring" text "å" nil) ("Aring" text "Å" nil) ("atilde" text "ã" nil) ("Atilde" text "Ã" nil) ("auml" text "ä" nil) ("Auml" text "Ä" nil) ("aelig" text "æ" nil) ("AElig" text "Æ" nil) ("ccedil" text "ç" nil) ("Ccedil" text "Ç" nil) ("eth" text "Ð" nil) ("ETH" text "ð" nil) ("eacute" text "é" nil) ("Eacute" text "É" nil) ("ecirc" text "ê" nil) ("Ecirc" text "Ê" nil) ("egrave" text "è" nil) ("Egrave" text "È" nil) ("euml" text "ë" nil) ("Euml" text "Ë" nil) ("iacute" text "í" nil) ("Iacute" text "Í" nil) ("icirc" text "î" nil) ("Icirc" text "Î" nil) ("igrave" text "ì" nil) ("Igrave" text "Ì" nil) ("iuml" text "ï" nil) ("Iuml" text "Ï" nil) ("ntilde" text "ñ" nil) ("Ntilde" text "Ñ" nil) ("oacute" text "ó" nil) ("Oacute" text "Ó" nil) ("ocirc" text "ô" nil) ("Ocirc" text "Ô" nil) ("ograve" text "ò" nil) ("Ograve" text "Ò" nil) ("oslash" text "⊘" nil) ("Oslash" text "Ø" nil) ("otilde" text "õ" nil) ("Otilde" text "Õ" nil) ("ouml" text "ö" nil) ("Ouml" text "Ö" nil) ("szlig" text "ß" nil) ("thorn" text "þ" nil) ("THORN" text "Þ" nil) ("uacute" text "ú" nil) ("Uacute" text "Ú" nil) ("ucirc" text "Û" nil) ("Ucirc" text "û" nil) ("ugrave" text "ù" nil) ("Ugrave" text "Ù" nil) ("uuml" text "ü" nil) ("Uuml" text "Ü" nil) ("yacute" text "ý" nil) ("Yacute" text "Ý" nil) ("yuml" text "ÿ" nil) ("abreve" text "ă" nil) ("Abreve" text "Ă" nil) ("amacr" text "ā" nil) ("Amacr" text "Ā" nil) ("aogon" text "ą" nil) ("Aogon" text "Ą" nil) ("cacute" text "ć" nil) ("Cacute" text "Ć" nil) ("ccaron" text "č" nil) ("Ccaron" text "Č" nil) ("ccirc" text "ĉ" nil) ("Ccirc" text "Ĉ" nil) ("cdot" text "⋅" nil) ("Cdot" text "Ċ" nil) ("dcaron" text "ď" nil) ("Dcaron" text "Ď" nil) ("dstrok" text "đ" nil) ("Dstrok" text "Đ" nil) ("ecaron" text "ě" nil) ("Ecaron" text "Ě" nil) ("edot" text "ė" nil) ("Edot" text "Ė" nil) ("emacr" text "ē" nil) ("Emacr" text "Ē" nil) ("eogon" text "ę" nil) ("Eogon" text "Ę" nil) ("gacute" text "ǵ" nil) ("gbreve" text "ğ" nil) ("Gbreve" text "Ğ" nil) ("Gcedil" text "Ģ" nil) ("gcirc" text "ĝ" nil) ("Gcirc" text "Ĝ" nil) ("gdot" text "ġ" nil) ("Gdot" text "Ġ" nil) ("hcirc" text "ĥ" nil) ("Hcirc" text "Ĥ" nil) ("hstrok" text "ħ" nil) ("Hstrok" text "Ħ" nil) ("Idot" text "İ" nil) ("Imacr" text "Ī" nil) ("imacr" text "ī" nil) ("ijlig" text "ij" nil) ("IJlig" text "IJ" nil) ("iogon" text "į" nil) ("Iogon" text "Į" nil) ("itilde" text "ĩ" nil) ("Itilde" text "Ĩ" nil) ("jcirc" text "ĵ" nil) ("Jcirc" text "Ĵ" nil) ("kcedil" text "ķ" nil) ("Kcedil" text "Ķ" nil) ("kgreen" text "ĸ" nil) ("lacute" text "ĺ" nil) ("Lacute" text "Ĺ" nil) ("lcaron" text "ľ" nil) ("Lcaron" text "Ľ" nil) ("lcedil" text "ļ" nil) ("Lcedil" text "Ļ" nil) ("lmidot" text "ŀ" nil) ("Lmidot" text "Ŀ" nil) ("lstrok" text "ł" nil) ("Lstrok" text "Ł" nil) ("nacute" text "ń" nil) ("Nacute" text "Ń" nil) ("eng" text "ŋ" nil) ("ENG" text "Ŋ" nil) ("napos" text "ʼn" nil) ("ncaron" text "ň" nil) ("Ncaron" text "Ň" nil) ("ncedil" text "ņ" nil) ("Ncedil" text "Ņ" nil) ("odblac" text "ő" nil) ("Odblac" text "Ő" nil) ("Omacr" text "Ō" nil) ("omacr" text "ō" nil) ("oelig" text "œ" nil) ("OElig" text "Œ" nil) ("racute" text "ŕ" nil) ("Racute" text "Ŕ" nil) ("rcaron" text "ř" nil) ("Rcaron" text "Ř" nil) ("rcedil" text "ŗ" nil) ("Rcedil" text "Ŗ" nil) ("sacute" text "ś" nil) ("Sacute" text "Ś" nil) ("scaron" text "š" nil) ("Scaron" text "Š" nil) ("scedil" text "ş" nil) ("Scedil" text "Ş" nil) ("scirc" text "ŝ" nil) ("Scirc" text "Ŝ" nil) ("tcaron" text "ť" nil) ("Tcaron" text "Ť" nil) ("tcedil" text "ţ" nil) ("Tcedil" text "Ţ" nil) ("tstrok" text "ŧ" nil) ("Tstrok" text "Ŧ" nil) ("ubreve" text "ŭ" nil) ("Ubreve" text "Ŭ" nil) ("udblac" text "ű" nil) ("Udblac" text "Ű" nil) ("umacr" text "ū" nil) ("Umacr" text "Ū" nil) ("uogon" text "ų" nil) ("Uogon" text "Ų" nil) ("uring" text "ů" nil) ("Uring" text "Ů" nil) ("utilde" text "ũ" nil) ("Utilde" text "Ũ" nil) ("wcirc" text "ŵ" nil) ("Wcirc" text "Ŵ" nil) ("ycirc" text "ŷ" nil) ("Ycirc" text "Ŷ" nil) ("Yuml" text "Ÿ" nil) ("zacute" text "ź" nil) ("Zacute" text "Ź" nil) ("zcaron" text "ž" nil) ("Zcaron" text "Ž" nil) ("zdot" text "ż" nil) ("Zdot" text "Ż" nil) ("half" text "½" nil) ("frac12" text "½" nil) ("frac14" text "¼" nil) ("frac34" text "¾" nil) ("frac18" text "⅛" nil) ("frac38" text "⅜" nil) ("frac58" text "⅝" nil) ("frac78" text "⅞" nil) ("sup1" text "¹" nil) ("sup2" text "²" nil) ("sup3" text "³" nil) ("plus" text "+" nil) ("plusmn" text "±" nil) ("equals" text "=" nil) ("gt" text ">" nil) ("divide" text "÷" nil) ("times" text "×" nil) ("curren" text "¤" nil) ("pound" text "£" nil) ("dollar" text "$" nil) ("cent" text "¢" nil) ("yen" text "¥" nil) ("num" text "#" nil) ("percnt" text "%" nil) ("ast" text "∗" nil) ("commat" text "@" nil) ("lsqb" text "[" nil) ("bsol" text "\" nil) ("rsqb" text "]" nil) ("lcub" text "{" nil) ("horbar" text "―" nil) ("verbar" text "|" nil) ("rcub" text "}" nil) ("micro" text "µ" nil) ("ohm" text "Ω" nil) ("deg" text "°" nil) ("ordm" text "º" nil) ("ordf" text "ª" nil) ("sect" text "§" nil) ("para" text "¶" nil) ("middot" text "·" nil) ("larr" text "←" nil) ("rarr" text "→" nil) ("uarr" text "↑" nil) ("darr" text "↓" nil) ("copy" text "©" nil) ("reg" text "¯" nil) ("trade" text "™" nil) ("brvbar" text "¦" nil) ("not" text "¬" nil) ("sung" text "♩" nil) ("excl" text "!" nil) ("iexcl" text "¡" nil) ("quot" text """ nil) ("apos" text "'" nil) ("lpar" text "(" nil) ("rpar" text ")" nil) ("comma" text "," nil) ("lowbar" text "_" nil) ("hyphen" text "" nil) ("period" text "." nil) ("sol" text "/" nil) ("colon" text ":" nil) ("semi" text ";" nil) ("quest" text "?" nil) ("iquest" text "¿" nil) ("laquo" text "«" nil) ("raquo" text "»" nil) ("lsquo" text "‘" nil) ("rsquo" text "’" nil) ("ldquo" text "“" nil) ("rdquo" text "”" nil) ("nbsp" text " " nil) ("shy" text "­" nil) ("emsp" text " " nil) ("ensp" text " " nil) ("emsp13" text " " nil) ("emsp14" text " " nil) ("numsp" text " " nil) ("puncsp" text " " nil) ("thinsp" text " " nil) ("hairsp" text " " nil) ("mdash" text "—" nil) ("ndash" text "–" nil) ("dash" text "‐" nil) ("blank" text "␣" nil) ("hellip" text "…" nil) ("nldr" text "‥" nil) ("frac13" text "⅓" nil) ("frac23" text "⅔" nil) ("frac15" text "⅕" nil) ("frac25" text "⅖" nil) ("frac35" text "⅗" nil) ("frac45" text "⅘" nil) ("frac16" text "⅙" nil) ("frac56" text "⅚" nil) ("incare" text "℅" nil) ("block" text "█" nil) ("uhblk" text "▀" nil) ("lhblk" text "▄" nil) ("blk14" text "░" nil) ("blk12" text "▒" nil) ("blk34" text "▓" nil) ("marker" text "▮" nil) ("cir" text "○" nil) ("squ" text "□" nil) ("rect" text "▭" nil) ("utri" text "▵" nil) ("dtri" text "▿" nil) ("star" text "⋆" nil) ("bull" text "•" nil) ("squf" text "▪" nil) ("utrif" text "▴" nil) ("dtrif" text "▾" nil) ("ltrif" text "◂" nil) ("rtrif" text "▸" nil) ("clubs" text "♣" nil) ("diams" text "♦" nil) ("hearts" text "♥" nil) ("spades" text "♠" nil) ("malt" text "✠" nil) ("dagger" text "†" nil) ("Dagger" text "‡" nil) ("check" text "✓" nil) ("cross" text "✗" nil) ("sharp" text "♯" nil) ("flat" text "♭" nil) ("male" text "♂" nil) ("female" text "♀" nil) ("phone" text "☎" nil) ("telrec" text "⌕" nil) ("copysr" text "℗" nil) ("caret" text "⁁" nil) ("lsquor" text "‚" nil) ("ldquor" text "„" nil) ("fflig" text "ff" nil) ("filig" text "fi" nil) ("ffilig" text "ffi" nil) ("ffllig" text "ffl" nil) ("fllig" text "fl" nil) ("mldr" text "…" nil) ("rdquor" text "“" nil) ("rsquor" text "‘" nil) ("vellip" text "⋮" nil) ("hybull" text "⁃" nil) ("loz" text "◊" nil) ("lozf" text "✦" nil) ("ltri" text "◃" nil) ("rtri" text "▹" nil) ("starf" text "★" nil) ("natur" text "♮" nil) ("rx" text "℞" nil) ("sext" text "✶" nil) ("target" text "⌖" nil) ("dlcrop" text "⌍" nil) ("drcrop" text "⌌" nil) ("ulcrop" text "⌏" nil) ("urcrop" text "⌎" nil) ("aleph" text "ℵ" nil) ("and" text "∧" nil) ("ang90" text "∟" nil) ("angsph" text "∢" nil) ("ap" text "≈" nil) ("becaus" text "∵" nil) ("bottom" text "⊥" nil) ("cap" text "∩" nil) ("cong" text "≅" nil) ("conint" text "∮" nil) ("cup" text "∪" nil) ("equiv" text "≡" nil) ("exist" text "∃" nil) ("forall" text "∀" nil) ("fnof" text "ƒ" nil) ("ge" text "≥" nil) ("iff" text "" nil) ("infin" text "∞" nil) ("int" text "∫" nil) ("isin" text "∊" nil) ("lang" text "〈" nil) ("lArr" text "⇐" nil) ("le" text "≤" nil) ("minus" text "−" nil) ("mnplus" text "∓" nil) ("nabla" text "∇" nil) ("ne" text "≠" nil) ("ni" text "∍" nil) ("or" text "∨" nil) ("par" text "∥" nil) ("part" text "∂" nil) ("permil" text "‰" nil) ("perp" text "⊥" nil) ("prime" text "′" nil) ("Prime" text "″" nil) ("prop" text "∝" nil) ("radic" text "√" nil) ("rang" text "〉" nil) ("rArr" text "⇒" nil) ("sim" text "∼" nil) ("sime" text "≃" nil) ("square" text "□" nil) ("sub" text "⊂" nil) ("sube" text "⊆" nil) ("sup" text "⊃" nil) ("supe" text "⊇" nil) ("there4" text "∴" nil) ("Verbar" text "‖" nil) ("angst" text "Å" nil) ("bernou" text "ℬ" nil) ("compfn" text "∘" nil) ("Dot" text "̈" nil) ("DotDot" text "⃜" nil) ("hamilt" text "ℋ" nil) ("lagran" text "ℒ" nil) ("lowast" text "∗" nil) ("notin" text "∉" nil) ("order" text "ℴ" nil) ("phmmat" text "ℳ" nil) ("tdot" text "⃛" nil) ("tprime" text "‴" nil) ("wedgeq" text "≙" nil)) +(nil) +nil --- discover-2.1.2.orig/scripts/discover-pkginstall +++ discover-2.1.2/scripts/discover-pkginstall @@ -40,7 +40,7 @@ db_go db_get discover/install_hw_packages db_stop - echo $RET | sed 's/,//g' 1>&15 + echo $RET | sed 's/,//g' 1>&8 exit 0 fi @@ -75,6 +75,17 @@ { cat <$tempfile + DISCOVER_PKGINSTALL_ASKING=true $0 $packages 8>$tempfile packages=$(cat $tempfile) rm $tempfile if [ "$packages" ] ; then - $nop aptitude install -y $packages + if [ -x /usr/bin/debconf-apt-progress ] ; then + if [ "$DI_PROGRESS_BAR_VISIBLE" ]; then + debconf_apt_progress_opts=--no-progress + else + debconf_apt_progress_opts= + fi + $nop debconf-apt-progress $debconf_apt_progress_opts -- aptitude install -q -y $packages + else + $nop aptitude install -y $packages + fi assist_modules fi fi else - ${verbose} && echo "No hardware specific packages found for this machine" + ${verbose} && echo "info: no hardware specific packages found for this machine" fi exit 0 --- discover-2.1.2.orig/sysdeps/linux/ata.c +++ discover-2.1.2/sysdeps/linux/ata.c @@ -22,6 +22,7 @@ #include "config.h" +#include #include #include #include