This is the mail archive of the docbook-apps@lists.oasis-open.org mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Problems with (make entity system-id:).


[Follow-ups to docbook-apps, please]

/ Josef Karthauser <joe@tao.org.uk> was heard to say:
| I've tracked the problem down to the following interaction:
|
|     ;; Tests
|     (root
| 	(make sequence
| 	    (make entity
| 		system-id: "testfile1")
| 	    (make entity
| 		system-id: "testfile2")
| 	    (process-children)))

You need a root rule that looks more like this:

(root
 (make sequence
 	    (make entity
 		system-id: "testfile1")
 	    (make entity
 		system-id: "testfile2")
   (process-children)
   (with-mode manifest
     (process-children))
   (if html-index
       (with-mode htmlindex
	 (process-children))
       (empty-sosofo))))


                                        Be seeing you,
                                          norm

-- 
Norman Walsh <ndw@nwalsh.com>      | Unprovided with original learning,
http://www.oasis-open.org/docbook/ | unformed in the habits of
Chair, DocBook Technical Committee | thinking, unskilled in the arts of
                                   | composition, I resolved to write a
                                   | book.--Edward Gibbon


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]