Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Sigil > Plugins

Notices

Reply
 
Thread Tools Search this Thread
Old 09-13-2016, 02:08 AM   #1
roger64
Wizard
roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.
 
Posts: 2,608
Karma: 3000161
Join Date: Jan 2009
Device: Kindle PW3 (wifi)
Check PrincePDF output

Hi

I am used to export with PrincePDF and, up to now, this has worked very reliably with both the Calibre and Sigil related plugins. Lately I tried to export with two different display sizes. It worked once but later failed with this consistent error message that I am getting now everytime I try to export.

Code:
.../...
prince: Finished: failure

No pdf file written to: /home/roger/Desktop/Feux_de_paille.pdf
/usr/share/sigil/plugin_launchers/python/sigil_bs4/__init__.py:187: UserWarning: No parser was explicitly specified, so I'm using the best available HTML parser for this system ("lxml"). This usually isn't a problem, but if you run this code on another system, or in a different virtual environment, it may use a different parser and behave differently.

To get rid of this warning, change this:

 BeautifulSoup([your markup])

to this:

 BeautifulSoup([your markup], "lxml")

  markup_type=markup_type))
This is what I checked up to now:

- I tried this export using two different versions of Sigil, one from Arch Linux, the other from sigil-git - Arch too - (so Sigil does not seem to be the culprit).
- Python3.5 is installed on my machine with all needed dependencies. I checked with the testplugin which finds no problem.
-I uninstalled totally the PrincePDF plugin (including prefs) and reinstalled it with the default settings (with only one display size)
-I used EPUB2 and EPUB3 ebooks.

After all these tries, everything failed with the same warning (see above):

B]About dependencies[/B]

Code:
[roger@anterg ~]$ sudo pip3 install lxml bs4
[sudo] Mot de passe de roger*:*
Requirement already satisfied (use --upgrade to upgrade): lxml in /usr/lib/python3.5/site-packages
Requirement already satisfied (use --upgrade to upgrade): bs4 in /usr/lib/python3.5/site-packages
Requirement already satisfied (use --upgrade to upgrade): beautifulsoup4 in /usr/lib/python3.5/site-packages (from bs4)
[roger@anterg ~]$

Last edited by roger64; 09-13-2016 at 02:10 AM.
roger64 is offline   Reply With Quote
Old 09-13-2016, 04:08 AM   #2
Doitsu
Grand Sorcerer
Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.
 
Doitsu's Avatar
 
Posts: 5,585
Karma: 22735033
Join Date: Dec 2010
Device: Kindle PW2
I'm not able to reproduce this error on my Windows and Linux machines, unless I change the interpreter to Python 2.7. Can you please post a sample epub that reliably causes this error.

@roger64:

The error message is missing the last part (marked in Magenta). It should look like this:
Spoiler:

Code:
Status: failed

command line:
C:\Program Files (x86)\Prince\engine\bin\prince.exe -v --page-size=C1 --pdf-title=öäöüöasf -l C:\Users\doitsu\AppData\Local\sigil-ebook\sigil\plugins\PrincePDF\file_list.txt -o C:\Users\doitsu\Desktop\öäöüöasf.pdf

C:\Program Files\Sigil\plugin_launchers\python\sigil_bs4\__init__.py:187: UserWarning: No parser was explicitly specified, so I'm using the best available HTML parser for this system ("lxml"). This usually isn't a problem, but if you run this code on another system, or in a different virtual environment, it may use a different parser and behave differently.

To get rid of this warning, change this:

 BeautifulSoup([your markup])

to this:

 BeautifulSoup([your markup], "lxml")

  markup_type=markup_type))
Traceback (most recent call last):
  File "C:\Program Files\Sigil\plugin_launchers\python\launcher.py", line 135, in launch
    self.exitcode = target_script.run(container)
  File "C:\Users\doitsu\AppData\Local\sigil-ebook\sigil\plugins\PrincePDF\plugin.py", line 232, in run
    result = princeWrapper(*args)
  File "C:\Users\doitsu\AppData\Local\sigil-ebook\sigil\plugins\PrincePDF\plugin.py", line 39, in princeWrapper
    process = Popen(list(args), stdout=PIPE, stderr=PIPE)
  File "C:\Python27\lib\subprocess.py", line 710, in __init__
    errread, errwrite)
  File "C:\Python27\lib\subprocess.py", line 958, in _execute_child
    startupinfo)
UnicodeEncodeError: 'ascii' codec can't encode characters in position 84-88: ordinal not in range(128)
Error: 'ascii' codec can't encode characters in position 84-88: ordinal not in range(128)


Please post the complete error message, including all lines after:

Code:
BeautifulSoup([your markup], "lxml")
For others that are curious about this, the plugin uses the book title as the file name and chokes if Python 2.7 is selected and book title contains accented characters or umlauts.

If you have the plugin installed please test this issue:

1. Create a blank epub.
2. Change the book title to öäöüöasf (or any other title that contains at least one accented character/umlaut)
3. Run the plugin.
Doitsu is offline   Reply With Quote
Advert
Old 09-13-2016, 06:53 AM   #3
roger64
Wizard
roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.
 
Posts: 2,608
Karma: 3000161
Join Date: Jan 2009
Device: Kindle PW3 (wifi)
Hi Doitsu

Here is the full error message. It just ends after "markup_type=markup_type))" I did not suppress any bit. I also join the EPUB2. It failed the same after renaming the EPUB with öäöüöasf with exactly the same error message.

Spoiler:
Code:
Statut :failed

command line:
prince -v --pdf-title=Feux de paille --pdf-author=Richard O'Monroy -l /home/roger/.local/share/sigil-ebook/sigil/plugins/PrincePDF/file_list.txt -o /home/roger/Desktop/Feux_de_paille.pdf

prince: loading document: /usr/local/lib/prince/license/license.dat
prince: /usr/local/lib/prince/license/license.dat: warning: inapplicable license for this version
prince: Loading document...
prince: loading XML input: chapter.xhtml
prince: loading document: chapter.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter1.xhtml
prince: loading document: chapter1.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter2.xhtml
prince: loading document: chapter2.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter3.xhtml
prince: loading document: chapter3.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter4.xhtml
prince: loading document: chapter4.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter5.xhtml
prince: loading document: chapter5.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter6.xhtml
prince: loading document: chapter6.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter7.xhtml
prince: loading document: chapter7.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter8.xhtml
prince: loading document: chapter8.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter9.xhtml
prince: loading document: chapter9.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter10.xhtml
prince: loading document: chapter10.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter11.xhtml
prince: loading document: chapter11.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter12.xhtml
prince: loading document: chapter12.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter13.xhtml
prince: loading document: chapter13.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter14.xhtml
prince: loading document: chapter14.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter15.xhtml
prince: loading document: chapter15.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter16.xhtml
prince: loading document: chapter16.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter17.xhtml
prince: loading document: chapter17.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter18.xhtml
prince: loading document: chapter18.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter19.xhtml
prince: loading document: chapter19.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter20.xhtml
prince: loading document: chapter20.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter21.xhtml
prince: loading document: chapter21.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter22.xhtml
prince: loading document: chapter22.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter23.xhtml
prince: loading document: chapter23.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter24.xhtml
prince: loading document: chapter24.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter25.xhtml
prince: loading document: chapter25.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter26.xhtml
prince: loading document: chapter26.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter27.xhtml
prince: loading document: chapter27.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter28.xhtml
prince: loading document: chapter28.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter29.xhtml
prince: loading document: chapter29.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter30.xhtml
prince: loading document: chapter30.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter31.xhtml
prince: loading document: chapter31.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter32.xhtml
prince: loading document: chapter32.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter33.xhtml
prince: loading document: chapter33.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter34.xhtml
prince: loading document: chapter34.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter35.xhtml
prince: loading document: chapter35.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter36.xhtml
prince: loading document: chapter36.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: loading XML input: chapter37.xhtml
prince: loading document: chapter37.xhtml
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11.dtd
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstyle-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-framework-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-notations-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-datatypes-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-qname-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-events-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-attribs-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml11/xhtml11-model-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-charent-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-lat1.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-symbol.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-special.ent
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-text-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkstruct-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkphras-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-hypertext-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-list-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-edit-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-bdo-1.mod
prince: loading document: /usr/local/lib/prince/dtd/ruby/xhtml-ruby-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-pres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-inlpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-blkpres-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-link-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-meta-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-base-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-script-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-style-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-image-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-csismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-ssismap-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-param-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-object-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-table-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-form-1.mod
prince: loading document: /usr/local/lib/prince/dtd/xhtml-mod/xhtml-struct-1.mod
prince: Applying style sheets...
prince: loading style sheet: ../Styles/styles.css
prince: loading style sheet: ../Styles/styles1.css
prince: Preparing document...
prince: loading image: ../Images/image001.jpg
prince: loading image: ../Images/image002.png
prince: loading image: ../Images/image003.png
prince: Converting document...
prince: used font: Linux Libertine Display, Regular
prince: used font: Linux Libertine, Italic
prince: used font: Linux Libertine O C, Regular
prince: used font: Linux Libertine, Regular
prince: used font: DejaVu Serif, Book
prince: /home/roger/Desktop/Feux_de_paille.pdf: error: can't open output file: No such file or directory
prince: Finished: failure

No pdf file written to: /home/roger/Desktop/Feux_de_paille.pdf
/usr/share/sigil/plugin_launchers/python/sigil_bs4/__init__.py:187: UserWarning: No parser was explicitly specified, so I'm using the best available HTML parser for this system ("lxml"). This usually isn't a problem, but if you run this code on another system, or in a different virtual environment, it may use a different parser and behave differently.

To get rid of this warning, change this:

 BeautifulSoup([your markup])

to this:

 BeautifulSoup([your markup], "lxml")

  markup_type=markup_type))
Attached Files
File Type: epub Feux de paille v2.epub (534.8 KB, 363 views)

Last edited by roger64; 09-13-2016 at 06:55 AM. Reason: öäöüöasf
roger64 is offline   Reply With Quote
Old 09-13-2016, 07:23 AM   #4
Doitsu
Grand Sorcerer
Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.
 
Doitsu's Avatar
 
Posts: 5,585
Karma: 22735033
Join Date: Dec 2010
Device: Kindle PW2
@roger64: The plugin assumes that a Desktop folder exists. If you've installed a French Arch Linux version the Desktop folder is most likely called Bureau, which most likely caused your problem.

If that's the case, please change the following line from:

Code:
        output_dir = os.path.join(expanduser('~'), 'Desktop')
to

Code:
        output_dir = os.path.join(expanduser('~'), 'Bureau')
or whatever the Desktop folder is called in the French Linux version.

Alternatively, you could also change the output folder in PrincePDF.json:

Code:
{
  "page_size": "A4",
  "style": true,
  "output_dir": "/home/roger/Bureau"
}
(The first two lines are optional. If you use them make sure to terminate them with a comma.)
Doitsu is offline   Reply With Quote
Old 09-13-2016, 09:54 AM   #5
roger64
Wizard
roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.roger64 ought to be getting tired of karma fortunes by now.
 
Posts: 2,608
Karma: 3000161
Join Date: Jan 2009
Device: Kindle PW3 (wifi)
Quote:
Originally Posted by Doitsu View Post
.../...

Alternatively, you could also change the output folder in PrincePDF.json:

Code:
{
  "page_size": "A4",
  "style": true,
  "output_dir": "/home/roger/Bureau"
}
(The first two lines are optional. If you use them make sure to terminate them with a comma.)
@Doitsu

I took your second solution and that was it. Thank you for finding this out! I am sorry for giving you trouble. I just hope some other people may learn about this mistake and its consequences.

Thank you very much!

Last edited by roger64; 09-13-2016 at 10:09 AM. Reason: mistake
roger64 is offline   Reply With Quote
Advert
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
[Conversion Output] KePub Output Plugin jgoguen Plugins 551 07-18-2023 06:22 AM
PrincePDF: PDF export Doitsu Plugins 35 05-03-2023 05:40 PM
What does 'Well-Formed Check EPUB' actually check? bookman156 Sigil 21 03-20-2016 06:31 PM
catalogue builder output columns are not in the same order in the output KWhytte Library Management 5 12-04-2012 02:03 AM
Are DRM books with check in/check out allowed? i8abug Library Management 4 05-31-2012 02:27 PM


All times are GMT -4. The time now is 08:28 AM.


MobileRead.com is a privately owned, operated and funded community.