You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ofbiz.apache.org by amit charaya <of...@palinfocom.net> on 2007/06/16 10:06:19 UTC

free marker

from where did data structures as UiLabelMap etc. comes from
when we give https://localhost:8443/Catalog/control/main in browser
which servlet interprate it and where it is located
-- 
View this message in context: http://www.nabble.com/free-marker-tf3931861.html#a11151915
Sent from the OFBiz - User mailing list archive at Nabble.com.


Re: free marker

Posted by Scott Gray <le...@gmail.com>.
Hi Amit

They are generally loaded in the main-decorator of each application, look
for tags like this:
                <property-map resource="ManufacturingUiLabels"
map-name="uiLabelMap" global="true"/>
                <property-map resource="OrderUiLabels" map-name="uiLabelMap"
global="true"/>
                <property-map resource="ProductUiLabels"
map-name="uiLabelMap" global="true"/>
                <property-map resource="PartyUiLabels" map-name="uiLabelMap"
global="true"/>
                <property-map resource="CommonUiLabels"
map-name="uiLabelMap" global="true"/>

The resources live in the config directory of each application.

Regards
Scott

On 16/06/07, amit charaya <of...@palinfocom.net> wrote:
>
>
> from where did data structures as UiLabelMap etc. comes from
> when we give https://localhost:8443/Catalog/control/main in browser
> which servlet interprate it and where it is located
> --
> View this message in context:
> http://www.nabble.com/free-marker-tf3931861.html#a11151915
> Sent from the OFBiz - User mailing list archive at Nabble.com.
>
>

Re: free marker

Posted by Kane Lo <ka...@spacesolutions.com>.
First you have to know where is the component load from. You can get this 
info in ofbiz-component.xml.
Below is from ofbiz-component.xml in product directory
    <webapp name="catalog" title="Catalog" server="default-server" 
location="webapp/catalog"
        base-permission="OFBTOOLS,CATALOG" mount-point="/catalog"/>
Next you look into widget directory. For ofbiz standard, it is usually put 
in CommonScreen.xml.
For catalog case, it is under CatalogCommonScreens.xml.

If you really cannot find it, use your linux find and grep command. Then you 
should have no problem with that.
----- Original Message ----- 
From: "amit charaya" <of...@palinfocom.net>
To: <us...@ofbiz.apache.org>
Sent: Saturday, June 16, 2007 4:06 PM
Subject: free marker


>
> from where did data structures as UiLabelMap etc. comes from
> when we give https://localhost:8443/Catalog/control/main in browser
> which servlet interprate it and where it is located
> -- 
> View this message in context: 
> http://www.nabble.com/free-marker-tf3931861.html#a11151915
> Sent from the OFBiz - User mailing list archive at Nabble.com.
>
>