On 12/11/2012 10:43 AM, nobili, philippe wrote:
Dear M. Shafie,

Something we did quite often in the past in our addons; the problem is
certainly obvious, but we cannot see what is wrong...

The context: our add-on uses an XML-schema, but there is no namespace
associated to it; i.e., in the add-on we have something like:

<schema>
<noNamespaceLocation>myschema.xsd</noNamespaceLocation>
</schema>

We have added a couple of templates to override default ones, e.g.:

<elementTemplate xmlns="" name="mytemplate" selectable="override">
<MyElement Myattr="thisvalue"/>
</elementTemplate>

It's:

---
<elementTemplate name="mytemplate" selectable="override">
   <MyElement  xmlns="" Myattr="thisvalue"/>
</elementTemplate>
---


or:

---
<cfg:elementTemplate
   xmlns:cfg="http://www.xmlmind.com/xmleditor/schema/configuration";
   xmlns="" name="mytemplate" selectable="override">
   <MyElement Myattr="thisvalue"/>
</cfg:elementTemplate>
---




The template -- which should replace the default one for all <MyElement>
elements -- is never invoked.

If we replace *selectable="override"* by *selectable="true",* the
template is now displayed in the list of elements (as expected) and
works fine.

Did we miss something here ?

If the mistake I've found above just happens to be a typo in your email, then I don't see what could cause this issue.

May be <MyElement Myattr="thisvalue"/> is invalid, which causes XXE to ignore it when selectable="override".


--
XMLmind XML Editor Support List
xmleditor-support@xmlmind.com
http://www.xmlmind.com/mailman/listinfo/xmleditor-support

Reply via email to