Mark Proctor wrote:
> How can I set the the param img.src.path for XMLMind?

See http://www.xmlmind.com/xmleditor/_distrib/doc/configure/customizing.html
and especially, section
http://www.xmlmind.com/xmleditor/_distrib/doc/configure/custom_params.html

Downloading and installing add-on called "A customized configuration for
the DocBook DTD" using "Options|Install Add-ons" should give you a quick
start.




---
PS: [[[May be irrelevant!]]] Processing of image files referenced in a
DocBook document to be converted to HTML is not performed by the XSLT
style sheets. This processing is specified in:

---
  <command name="docb.toHTML">
    <process>
      <mkdir dir="resources" />
      <mkdir dir="raw" />
      <copyDocument to="__doc.xml">

        <!-- Do *not* declare the svg namespace.  We want svg:svg to be
             a Name, not a QName. -->
        <cfg:extract xmlns="" xpath="//imageobject/svg:svg" toDir="raw">
          <imagedata fileref="resources/{$url.rootName}.png" />
        </cfg:extract>

        <resources match="(https|http|ftp)://.*" /> <-- *THESE RULES*
        <resources match=".+\.(png|jpg|jpeg|gif)"
                   copyTo="resources" />
        <resources match="(?:.+/)?(.+)\.(\w+)"
                   copyTo="raw" referenceAs="resources/$1.png" />
        <resources match=".+"
                   copyTo="resources" />
      </copyDocument>

      <convertImage from="raw" to="resources" format="png" />

      ...
---

found in XXE_install_dir/addon/config/docbook/xslMenu.incl

Reply via email to