[ 
https://issues.apache.org/jira/browse/OFBIZ-7061?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15339427#comment-15339427
 ] 

Jacques Le Roux edited comment on OFBIZ-7061 at 6/21/16 5:02 AM:
-----------------------------------------------------------------

Assuming the above namespace schemas are made available, we can change
{code}
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/site-conf.xsd";
to
xmlns="http://ofbiz.apache.org/Site-Conf"; 
targetNamespace="http://ofbiz.apache.org/Site-Conf 
http://ofbiz.apache.org/dtds/site-conf-ns.xsd";

xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd";
to
xmlns="http://ofbiz.apache.org/Simple-Method"; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd";

xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd";
to
xmlns="http://ofbiz.apache.org/Widget-Screen"; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd";

xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-form.xsd";
to
xmlns="http://ofbiz.apache.org/Widget-Form"; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form-ns.xsd";

xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-menu.xsd";
to
xmlns="http://ofbiz.apache.org/Widget-Menu"; 
targetNamespace="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu-ns.xsd";

xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-tree.xsd";
to
xmlns="http://ofbiz.apache.org/Widget-Tree"; 
targetNamespace="http://ofbiz.apache.org/Widget-Tree 
http://ofbiz.apache.org/dtds/widget-tree-ns.xsd";
{code}


was (Author: jamesyong):
Assuming the above namespace schemas are made available, we can change
{code}
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/site-conf.xsd”
to
xmlns="http://ofbiz.apache.org/Site-Conf"; 
targetNamespace="http://ofbiz.apache.org/Site-Conf 
http://ofbiz.apache.org/dtds/site-conf-ns.xsd”

xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd”
to
xmlns="http://ofbiz.apache.org/Simple-Method"; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd”

xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd”
to
xmlns="http://ofbiz.apache.org/Widget-Screen"; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd”

xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-form.xsd”
to
xmlns="http://ofbiz.apache.org/Widget-Form"; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form-ns.xsd”

xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-menu.xsd”
to
xmlns="http://ofbiz.apache.org/Widget-Menu"; 
targetNamespace="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu-ns.xsd”

xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-tree.xsd”
to
xmlns="http://ofbiz.apache.org/Widget-Tree"; 
targetNamespace="http://ofbiz.apache.org/Widget-Tree 
http://ofbiz.apache.org/dtds/widget-tree-ns.xsd”
{code}

> Autocompletion for Compound Widget
> ----------------------------------
>
>                 Key: OFBIZ-7061
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-7061
>             Project: OFBiz
>          Issue Type: Improvement
>          Components: framework
>    Affects Versions: Trunk
>            Reporter: james yong
>            Assignee: Jacques Le Roux
>            Priority: Minor
>             Fix For: Upcoming Branch
>
>         Attachments: OFBIZ-7061.patch, OFBIZ-7061.patch, OFBIZ-7061.patch
>
>
> I am trying to enable auto-completion when coding compound widget.
> My plan as follows:
> 1. The following xsd will be modified to use namespace
> site-conf.xsd
> widget-form.xsd
> widget-screen.xsd
> widget-menu.xsd
> simple-methods.xsd
> For example, in site-conf.xsd, we add the following document level attribute
> {code}
> xmlns="http://ofbiz.apache.org/sc"; 
> targetNamespace="http://ofbiz.apache.org/sc";
> {code}
> 2. Import the above schema into compound-widgets.xsd so that compound widgets 
> use only one consolidated schema. 
> 3. Update ExampleCompoundWidgets.xml to use the new compound-widgets.xsd. For 
> example
> {code}
> <compound-widgets xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
>         xmlns:sc="http://ofbiz.apache.org/sc";
>         xmlns:m="http://ofbiz.apache.org/m";
>         xmlns:s="http://ofbiz.apache.org/s";
>         xmlns:f="http://ofbiz.apache.org/f";
>         xmlns:sm="http://ofbiz.apache.org/sm";
>         
> xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/compound-widgets.xsd";>
>     <site-conf>
>         <sc:request-map uri="CompoundWidgets1">
>             <sc:security https="true" auth="true"/>
>             <sc:event type="simple" invoke="CompoundWidgetsFunc" 
> path="component://example/widget/example/ExampleCompoundWidgets.xml"/>
>             <sc:response name="success" type="view" value="CompoundWidgets1"/>
>         </sc:request-map>
>         <sc:request-map uri="CompoundWidgets2"><sc:security https="true" 
> auth="true"/><sc:response name="success" type="view" 
> value="CompoundWidgets2"/></sc:request-map>
>         
>         <sc:view-map name="CompoundWidgets1" type="screen" 
> page="component://example/widget/example/ExampleCompoundWidgets.xml#CompoundWidgets1"/>
>         <sc:view-map name="CompoundWidgets2" type="screen" 
> page="component://example/widget/example/ExampleCompoundWidgets.xml#CompoundWidgets2"/>
>     </site-conf>
> ...... the rest
> {code}
> 4. Change java code to support reading xml with namespace (i.e. xml for 
> compound widgets)
> 5. Update the attributes at document level for rest of the controllers, 
> menus, forms, simple methods and screens. Current setting will not work for 
> schema with a namespace. For example, in controller.xml, we will change 
> {code}
> xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/site-conf.xsd”
> {code} 
> to 
> {code}
> xmlns="http://ofbiz.apache.org/sc” 
> xsi:schemaLocation="http://ofbiz.apache.org/dtds/site-conf-ns.xsd”>
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to