Martin Kolar?k wrote: > > 1. I have found more of lost keyboard focus -- now the focus is lost always > if I switch to "no style" view and back to styled view. After this the focus > is lost. Restoring of focus is also possible using Convert... dialog.
I didn't manage to reproduce total disabling of keyboard input on W2K SP???, using XXE V2.0final, with the actions you described. True, the keyboard focus is sometimes lost but clicking in the document view restores the keyboard focus. > 2. But there I maybe should read the guide precisely :-) -- saying, I have > DTD allowing elements <one> and <two> inside <container> element. Next, > <one> can contain <two>. Simple XML with these tags: > > <container> > <one>1blabla <two>2blabla</two></one> 3blabla <two>4blabla</two> > > Now I want to remove <one> tag to get result: > > <container> > 1blabla <two>2blabla</two> 3blabla <two>4blabla</two> > </container> > > So, what is the simplest way to achieve this? If I try to convert element > <one>, the element <two> is not offered. [1.] Copy all the node contained in <one> to clipboard (Ctrl-click on "1blabla", then Shift-Ctrl-click on "2blabla"). [2.] Explicitely select <one> (for example, click on the node path bar) [3.] Paste content of clipboard, replacing <one> by a copy of its nodes. Alternative: writing a custom command for your DTD. Developer's guide will be released in the next few weeks. (Please note that support to developers is reserved to customers.) > The very similar modification of my example is: how to convert > <one>...</one><two>...</two> to <two>...</two><two>...</two>? > > Summary: the elements <one> and <two> can be siblings, but <two> can be a > child of <one> too. Now, XXE according to DTD offers, when converting > elements, only elements that have the same content. Is it true? Yes, when a *single element* is explicitly or implicitly selected. It is also possible to ``wrap'' *several* elements or nodes in a container element. What you have described is the inverse operation: ``unwrapping'' and this operation is currently not implemented. > And is possible somehow to force XXE to offer another tags? E.g. not the tags > with > same content but the tags that can have the same owner? No.

