Users - Ofbiz url

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Users - Ofbiz url

G Venkata Phanindra
Hi.......
        At any places in ofbiz *.ftl files to specify links <a> tags i came across with the following lines of code,,,,,
<a href="<@ofbizUrl>viewcontent?contentId=${subContentId}&amp;nodeTrailCsv=${subContentId}</@ofbizUrl>" class="browsecategorybutton">${content.contentName}</a>

the <@ofbizUrl> refers to /control....... i want to change this
how can i configure this <@ofbizUrl>

Thanks and Regards

phani


With Regards,

G Venkata Phanindra.
Mobile :9849852989.


Yahoo! India Answers: Share what you know. Learn something new. Click here
 
_______________________________________________
Users mailing list
[hidden email]
http://lists.ofbiz.org/mailman/listinfo/users
Reply | Threaded
Open this post in threaded view
|

Re: Users - Ofbiz url

Ashish Vijaywargiya-2
Hi,

Check the following entry in the related web.xml file :
    <servlet-mapping>
        <servlet-name>ControlServlet</servlet-name>
        <url-pattern>/control/*</url-pattern>
    </servlet-mapping>

I think it may help you.