OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: Re: Relative Paths?


Relative paths are relative to the base URI which--in the
absence of other info (such as in your case)--is the resource 
in which they were found.

So in the first case, images-db/schema_picture.bmp is relative
to dbms/docs/database.xmldoc and in the second case it is
relative to your document.

paul

At 22:19 2003 03 18 -0800, Galen Boyer wrote:
>I have
>
><!DOCTYPE book PUBLIC "...."
>[
><!ENTITY database SYSTEM "dbms/docs/database.xmldoc">
>]>
><book>
>  <title>Project</title>
>    <chapter>
>      <title>Database</title>
>        &database;
>    </chapter>
></book>
>
>Then, I the dbms/docs/database.xmldoc file has its code as:
><sect1>
>   <imageobject>
>      <imagedata fileref="images-db/schema_picture.bmp"/>
>   </imageobject>
></sect1>
>
>When I publish the book, Project, I don't see the bmp although the text
>of dbms/docs/database.xmldoc is found in the book.
>
>When I redo the document like so,
>
><!DOCTYPE book PUBLIC "...." []>
><book>
>  <title>Project</title>
>    <chapter>
>      <title>Database</title>
>        <sect1>
>           <imageobject>
>              <imagedata fileref="images-db/schema_picture.bmp"/>
>           </imageobject>
>        </sect1>
>    </chapter>
></book>
>
>I see the image.
>
>What "relative path" issue with XML am I missing out on?
>
>Thanks.
>-- 
>Galen deForest Boyer
>Sweet dreams and flying machines in pieces on the ground.



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]