Pierrick Brihaye wrote:
> 
> Cursor doesn't change on collapse/expand arrows.

Just after releasing XXE 2.1, we have implemented something like this:
cursor changes to the text cursor (i.e. the vertical bar) only if it is
over editable text, otherwise it is always the default arrow cursor. We
are currently testing this feature to see if is comfortable to use.



> Installer doesn't seem to work everytime on Win 98 (it asks for a temp
> directory in what seems to be an endless loop). Workaround : use the zip
> distribution :-)
> 
> Still on Win 98 (I know it's not supported) : could you provide a .bat
> file ? An .ico file (for the shorcut) ?

We don't have a PC running Win 9.x so I cannot send you a .bat file that
works with this OS. 

May be it is easier to use the installer after creating a C:\temp
directory and ``declaring'' it with "set TEMP=C:\temp"?




> No native support for Docbook 4.2 ? Website ?

The DocBook 4.2 DTD will be included in next release.




> Do you think it would be possible to natively embed xrefs' text into the
> dedicated widget (which is nice) ? Possibly xreflabels ?

I'm not sure to understand.

The bundled style sheet specifies this:

xref {
    content: icon(right-link) attr(linkend) " "; 
    vertical-align: text-top; 
    color: navy; 
}

Do you want to see the xreflabel of the element which is the target of
the link instead of just seeing its ID (the value of "attr(linkend)" is
the ID of the target of the link)?

If you want to do this, please confirm and I'll send you the piece of
BeanShell or JavaScript (tell me what you prefer) script that must be
added to the style sheet in order to implement this.




> Do you think it would be possible to make links active (possibly with
> the right mouse button) ?

The right mouse button is already used to display the Edit popup menu
but you can do this (add this to xxe_distrib/config/docbook/common.incl)

  <command name="docb.followLink">
    <macro>
      <sequence>
        <command name="selectNodeAt" />
        <command name="selectById" parameter="id" />
      </sequence>
    </macro>
  </command>

  <binding>
    <mouseClicked button="3" modifiers="ctrl" />
    <command name="docb.followLink" />
  </binding>

(I hope I have understood what you want.)




> Do you think it would be possible to localize names in .xxe files ? e.g. :
> 
> <css name="DocBook (collapsible sections)"
> location="css/docbook-collapsible.css"/>
> 
> would become :
> 
> <css name="DocBook (collapsible sections)"
> location="css/docbook-collapsible.css">
>    <name xml:lang="fr">DocBook (sections r?tractables)</name>
> </css>

This is an omission. You can fix that yourself if you want, add 

    <message>
      <text>DocBook (collapsible sections)</text>
      <text>DocBook (sections r?tractables)</text>
    </message>
 
at the end of the <localize languages="en fr"> element contained in the
xxe_distrib/config/docbook/common.incl file.

See also
http://www.xmlmind.com/xmleditor/_distrib/docs/poweruser/ar01s04s12.html



> In "Edition" tab, would it be possible to have grayed, possibly stroked,
> elements ? i.e. elements that are theorically pertinent in the current
> element but are not in the current *position* ? Of course, this should
> be cutomizable : people that have a good knowledge of Docbook (or
> whatever) shouldn't need this feature...

Sorry. I don't understand this. Please give me an example.

Reply via email to