multilingual Sub-content and alternate locale

2008-12-11 Thread Eric DE MAULDE
Hi, By exemple for web site policies http://demo.hotwaxmedia.com/ecommerce/control/policies I would like to display multilingual text with alternate locale. Even if I add alternate locale to the policies content, it doesn't work. Policies are always in English ! In

Re: multilingual Sub-content and alternate locale

2008-12-11 Thread Jacques Le Roux
Have a look into DemoProductI18nData.xml Jacques From: Eric DE MAULDE [EMAIL PROTECTED] Hi, By exemple for web site policies http://demo.hotwaxmedia.com/ecommerce/control/policies I would like to display multilingual text with alternate locale. Even if I add alternate locale to the policies

Re: multilingual Sub-content and alternate locale

2008-12-11 Thread Malin Nicolas
Eric DE MAULDE a écrit : Hi, By exemple for web site policies http://demo.hotwaxmedia.com/ecommerce/control/policies I would like to display multilingual text with alternate locale. Even if I add alternate locale to the policies content, it doesn't work. Policies are always in English ! In

Re: xX mM lL ERROR

2008-12-11 Thread nalin chandra
Hi Harish This is very common error. You check your fo table syntex. may be you miss some things. the main problem is common decorator where you create a template for pdf file some time user did the mistake at that place, means you not design the page as per the template. So first you check

Re: the symbol of the folder..

2008-12-11 Thread nalin chandra
Hi build are not part of repository. thats why there are no symbol with that folder. when you run ant build is created. you can check it by command (ant clean). all the build folder is deleted. again use command (ant) all build folder is again created. i hope your confusion is clear now.

Re: the symbol of the folder..

2008-12-11 Thread adithi agarwal
Thankyou so much Nalin...I got it.. --- On Thu, 12/11/08, nalin chandra [EMAIL PROTECTED] wrote: From: nalin chandra [EMAIL PROTECTED] Subject: Re: the symbol of the folder.. To: user@ofbiz.apache.org Date: Thursday, December 11, 2008, 6:01 PM Hi build are not part of repository. thats why

Re: hotwaxmedia.com cert expired 12/3

2008-12-11 Thread Tim Ruppert
Btw, this is fixed - thanks for the heads up. After the server migration - the old cert was on there and hadn't been updated yet. Cheers, Tim -- Tim Ruppert HotWax Media http://www.hotwaxmedia.com o:801.649.6594 f:801.649.6595 - BJ Freeman [EMAIL PROTECTED] wrote: I am sure you want the

How can we show the dynamic catalog and categories on POS?

2008-12-11 Thread Peter Marvell
Hi Everyone, Am working on POS, I want to show product dyanamically on POS terminal from database instead of hard coded them (i.e. in the similar way that are show in ecommerce ). Is it feasible ? How can I do this, Is there any doc available for POS control flow. One more question is that, Can

Customer Account Numbers

2008-12-11 Thread MiltonClark
Is there a best practice around how to represent Customer Account Numbers in OFBiz? In our case, each customer may have a number of accounts, which are designated at order entry time. These accounts may also have multiple ShipTo addresses associated with them. How have others represented the

remove content via BE

2008-12-11 Thread Loki
hi, I'm trying to remove content elements via backend [1], but I don't find a delete or remove button. I'm logged in as admin can anyone help me? bye Thomas __ [1] ./content/control/findContent

Re: How can we show the dynamic catalog and categories on POS?

2008-12-11 Thread Jacques Le Roux
From: Peter Marvell peter.marv...@gmail.com Hi Everyone, Am working on POS, I want to show product dyanamically on POS terminal from database instead of hard coded them (i.e. in the similar way that are show in ecommerce ). Is it feasible ? How can I do this, Is there any doc available for POS

package name in entitymodel.xml

2008-12-11 Thread nachi19
can any one tell me for what purpose the package-name attribute is used in the entitymodel.xml while defining the table... -- View this message in context: http://www.nabble.com/package-name-in-entitymodel.xml-tp20962773p20962773.html Sent from the OFBiz - User mailing list archive at

use of contextfilter.java

2008-12-11 Thread nachi19
Hi can anyone give the brief description of contextfilter.java .. what is its purpose ... and what task it does... -- View this message in context: http://www.nabble.com/use-of-contextfilter.java-tp20962775p20962775.html Sent from the OFBiz - User mailing list archive at Nabble.com.

Re: use of contextfilter.java

2008-12-11 Thread Adrian Crum
http://java.sun.com/blueprints/corej2eepatterns/Patterns/InterceptingFilter.html nachi19 wrote: Hi can anyone give the brief description of contextfilter.java .. what is its purpose ... and what task it does...

Which one is efficient

2008-12-11 Thread nachi19
Hi everyone I am bit confused about the services used in ofbiz... can anyone tell me which one is efficient to use.. is either writing a java programme or just a simple method... please give me the reason... -- View this message in context:

how to retrieve partyId from createCustomer

2008-12-11 Thread Jacek Wagner
All, There is a very complex service implementation createCustomer. Yet there is not a single service definition that defines createCustomer api. What would be the best way to retrieve partyId from this service? Jacek

Re: package name in entitymodel.xml

2008-12-11 Thread Jacques Le Roux
Only organizational purpose (mostly to group in files), entities must have a global unique name independently of package-names. Jacques can any one tell me for what purpose the package-name attribute is used in the entitymodel.xml while defining the table... -- View this message in

Re: Which one is efficient

2008-12-11 Thread guo weizhan
I think java program may be faster, but not so obviously and you shouldn't to care about this, just chose the convenient way to finish your requirements, simple method give your way to finish your program quickly. 2008/12/12 nachi19 nach...@gmail.com: Hi everyone I am bit confused about

Re: Which one is efficient

2008-12-11 Thread Jacques Le Roux
In one sentence : minlilanguage (simple-methods) is CRUD oriented Jacques From: nachi19 nach...@gmail.com Hi everyone I am bit confused about the services used in ofbiz... can anyone tell me which one is efficient to use.. is either writing a java programme or just a simple method...

Re: use of contextfilter.java

2008-12-11 Thread nalin chandra
Hi I think you want to know about use contextfilter.java in ofbiz application. This file is use to set the context path, initial parameter for our servlet. you go through the code written in the contextfilter.java file as well as with logs. few log statement is following:- -12-12 09:15:59,881

Re: use of contextfilter.java

2008-12-11 Thread Ashish
nalin chandra wrote: Hi I think you want to know about use contextfilter.java in ofbiz application. This file is use to set the context path, initial parameter for our servlet. you go through the code written in the contextfilter.java file as well as with logs. few log statement is

Re: use of contextfilter.java

2008-12-11 Thread Amit Sharma
Hi, In OFBiz application, if you give url like http://localhost:8080/application-name/unknown-request will be redirected to the redirectPath specified in Web.xml. In that case, ContextFilter filter out the request and use this redirect path to redirect the request. this file is responsible

The meaning of reader-name

2008-12-11 Thread Nikhil agrawal
Hi, Can anyone tell me what is the meaning of reader-name loader here and what exactly will happen using tag like this: entity-resource type=data reader-name=demo loader=main location=data/DemoBlogEntryData.xml/

Re: how to retrieve partyId from createCustomer

2008-12-11 Thread CJay Horton
Jacek, I am new to ofbiz, but perhaps what you are looking for is here and the lines below it in the method: call-service service-name=createPersonAndUserLogin in-map-name=personUserLoginContext result-to-field result-name=partyId map-name=tempMap/ result-to-field