[jira] [Closed] (OFBIZ-5088) Remove GenericPortlet from OFBiz

2012-12-26 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-5088?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-5088.
-

Resolution: Fixed
  Assignee: Erwan de FERRIERES

done at rev 1425523

 Remove GenericPortlet from OFBiz
 

 Key: OFBIZ-5088
 URL: https://issues.apache.org/jira/browse/OFBIZ-5088
 Project: OFBiz
  Issue Type: Sub-task
  Components: framework
Reporter: Olivier Heintz
Assignee: Erwan de FERRIERES
Priority: Minor
 Attachments: OFBIZ-5088.patch, OFBIZ-5088.patch, OFBIZ-5088.patch


 GenericPortlet are some portlet ready to use, working with attributes 
 (parameters) to give formName, menuName, ...
 It's currently not used in ofbiz and with portletWidget it is no more 
 necessary because now it's very simple to define a simple portlet and it's 
 more clear that having formName as a attribute.
 Generic portlet was the first test to simplify using portlet in ofbiz.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (OFBIZ-5097) jquery language mapping fix for japanese

2012-12-11 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-5097?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13529051#comment-13529051
 ] 

Erwan de FERRIERES commented on OFBIZ-5097:
---

Hi Naofumi,
please create a patch and attach it to the jira issue so it can be included.

Thanks,

 jquery language mapping fix for japanese
 

 Key: OFBIZ-5097
 URL: https://issues.apache.org/jira/browse/OFBIZ-5097
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk
Reporter: Naofumi Fukue
Priority: Minor

 jQuery language mapping is not collect for japanese (datepicker). So date 
 format is wrong in japanese.
 Index: framework/common/src/org/ofbiz/common/JsLanguageFilesMapping.java
 ===
 --- framework/common/src/org/ofbiz/common/JsLanguageFilesMapping.java 
 (revision 1419381)
 +++ framework/common/src/org/ofbiz/common/JsLanguageFilesMapping.java 
 (working copy)
 @@ -120,9 +120,9 @@
  localeFiles.put(it, 
 /images/jquery/plugins/datejs/date-it-IT.js);
  localeFiles.put(it_IT, 
 /images/jquery/plugins/datejs/date-it-IT.js);
  localeFiles.put(it_CH, 
 /images/jquery/plugins/datejs/date-it-CH.js);
 -localeFiles.put(ja, 
 /images/jquery/plugins/datejs/date-en-US.js);
 +localeFiles.put(ja, 
 /images/jquery/plugins/datejs/date-ja-JP.js);
  localeFiles.put(ja_JP, 
 /images/jquery/plugins/datejs/date-ja-JP.js);
 -localeFiles.put(ja_JP_JP, 
 /images/jquery/plugins/datejs/date-en-US.js);
 +localeFiles.put(ja_JP_JP, 
 /images/jquery/plugins/datejs/date-ja-JP.js);
  localeFiles.put(ko, 
 /images/jquery/plugins/datejs/date-en-US.js);
  localeFiles.put(ko_KR, 
 /images/jquery/plugins/datejs/date-ko-KR.js);
  localeFiles.put(lv, 
 /images/jquery/plugins/datejs/date-lv-LV.js);

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (OFBIZ-5098) javascript error in hidden form

2012-12-11 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-5098?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13529050#comment-13529050
 ] 

Erwan de FERRIERES commented on OFBIZ-5098:
---

Hi Naofumi,
please create a patch and attach it to the jira issue so it can be included.

Thanks,

 javascript error in hidden form
 ---

 Key: OFBIZ-5098
 URL: https://issues.apache.org/jira/browse/OFBIZ-5098
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: Release 10.04, SVN trunk
Reporter: Naofumi Fukue
Priority: Minor

 HtmlMenuRenderer generates like bellow form tags. It generates double 
 target=_BLANK , then cause javascript error.
   liform method=post action=/ar/control/invoice.pdf target=_BLANK 
 name=InvoiceSubTabBar_pdf_LF_8input name=invoiceId value=8010 
 type=hidden//forma target=_BLANK 
 href=javascript:document.InvoiceSubTabBar_pdf_LF_8.submit()PDF/a/li
  
 document.InvoiceSubTabBar_pdf_LF_8 is undefined @ 
 javascript:document.InvoiceSubTabBar_pdf_LF_8.submit()
 Index: framework/widget/src/org/ofbiz/widget/html/HtmlMenuRenderer.java
 ===
 --- framework/widget/src/org/ofbiz/widget/html/HtmlMenuRenderer.java  
 (revision 1419381)
 +++ framework/widget/src/org/ofbiz/widget/html/HtmlMenuRenderer.java  
 (working copy)
 @@ -455,10 +455,12 @@
  writer.append(name);
  writer.append(\);
  }
 -if (UtilValidate.isNotEmpty(targetWindow)) {
 -writer.append( target=\);
 -writer.append(targetWindow);
 -writer.append(\);
 +if (!hidden-form.equals(linkType)) {
 +if (UtilValidate.isNotEmpty(targetWindow)) {
 +writer.append( target=\);
 +writer.append(targetWindow);
 +writer.append(\);
 +}
  }
  
  writer.append( href=\);

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (OFBIZ-4872) Functional Test Implementation

2012-11-22 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4872?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES updated OFBIZ-4872:
--

Attachment: OFBIZ-4872.patch

newer version :
no more tests in framework
misisng license headers corrected
file names corrected
removed ant tasks in webdriver.xml to build.xml

 Functional Test Implementation
 --

 Key: OFBIZ-4872
 URL: https://issues.apache.org/jira/browse/OFBIZ-4872
 Project: OFBiz
  Issue Type: Improvement
  Components: framework
Reporter: Nguyen Hoang Thanh Duc
Priority: Trivial
  Labels: gsoc2012, webdriver
 Attachments: OFBIZ-4872.patch, OFBIZ-4872.patch, OFBIZ-4872.patch

   Original Estimate: 2,184h
  Remaining Estimate: 2,184h

 This issue covers progressively implementation of the functional test for the 
 OFBiz.
 The implementation relies mainly on the WebDriver, and assist developers with 
 ease to add/remove/edit test cases and obtain a complete test report then. 
 For more information: 
 https://cwiki.apache.org/confluence/display/OFBIZ/Implementation+Documentation

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (OFBIZ-4872) Functional Test Implementation

2012-11-11 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-4872?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13494881#comment-13494881
 ] 

Erwan de FERRIERES commented on OFBIZ-4872:
---

Hi,

yes, there is an error, as you found...
in applications/product/testdef/functionaltests.xml, it should be 
junit-test-suite 
class-name=org.ofbiz.product.test.webdriver.CatalogAppFunctionalTest/
and not 
junit-test-suite 
class-name=org.ofbiz.base.test.webdriver.CatalogAppFunctionalTest/

I'm uploading the corrected patch.
For the warnings, I have no answer at the moment.

Cheers,

 Functional Test Implementation
 --

 Key: OFBIZ-4872
 URL: https://issues.apache.org/jira/browse/OFBIZ-4872
 Project: OFBiz
  Issue Type: Improvement
  Components: framework
Reporter: Nguyen Hoang Thanh Duc
Priority: Trivial
  Labels: gsoc2012, webdriver
 Attachments: OFBIZ-4872.patch

   Original Estimate: 2,184h
  Remaining Estimate: 2,184h

 This issue covers progressively implementation of the functional test for the 
 OFBiz.
 The implementation relies mainly on the WebDriver, and assist developers with 
 ease to add/remove/edit test cases and obtain a complete test report then. 
 For more information: 
 https://cwiki.apache.org/confluence/display/OFBIZ/Implementation+Documentation

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (OFBIZ-4872) Functional Test Implementation

2012-11-11 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4872?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES updated OFBIZ-4872:
--

Attachment: OFBIZ-4872.patch

 Functional Test Implementation
 --

 Key: OFBIZ-4872
 URL: https://issues.apache.org/jira/browse/OFBIZ-4872
 Project: OFBiz
  Issue Type: Improvement
  Components: framework
Reporter: Nguyen Hoang Thanh Duc
Priority: Trivial
  Labels: gsoc2012, webdriver
 Attachments: OFBIZ-4872.patch, OFBIZ-4872.patch

   Original Estimate: 2,184h
  Remaining Estimate: 2,184h

 This issue covers progressively implementation of the functional test for the 
 OFBiz.
 The implementation relies mainly on the WebDriver, and assist developers with 
 ease to add/remove/edit test cases and obtain a complete test report then. 
 For more information: 
 https://cwiki.apache.org/confluence/display/OFBIZ/Implementation+Documentation

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Closed] (OFBIZ-5015) Update Lucene 3.5 to 4.0

2012-11-03 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-5015?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-5015.
-

Assignee: Erwan de FERRIERES

Hi Mirko,

upgrade to 4.0.0 has been done at rev 1405428

Cheers,

 Update Lucene 3.5 to 4.0
 

 Key: OFBIZ-5015
 URL: https://issues.apache.org/jira/browse/OFBIZ-5015
 Project: OFBiz
  Issue Type: Improvement
  Components: content
Affects Versions: SVN trunk
Reporter: Mirko Vogelsmeier
Assignee: Erwan de FERRIERES
 Attachments: lucene-4.0.patch, 
 lucene-analyzers-common-4.0.0-ALPHA.jar, lucene-core-4.0.0-ALPHA.jar, 
 lucene-queryparser-4.0.0-ALPHA.jar


 Hi,
 i did update from lucene-3.5 to lucene-4.0.
 As soime Objects are now seperated into another packages, i had to add 2 more 
 libs.
 Just add the libs to application/content/lib and apply the patch.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (OFBIZ-4872) Functional Test Implementation

2012-10-08 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4872?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES updated OFBIZ-4872:
--

Attachment: OFBIZ-4872.patch

 Functional Test Implementation
 --

 Key: OFBIZ-4872
 URL: https://issues.apache.org/jira/browse/OFBIZ-4872
 Project: OFBiz
  Issue Type: Improvement
  Components: framework
Reporter: Nguyen Hoang Thanh Duc
Priority: Trivial
  Labels: gsoc2012, webdriver
 Attachments: OFBIZ-4872.patch

   Original Estimate: 2,184h
  Remaining Estimate: 2,184h

 This issue covers progressively implementation of the functional test for the 
 OFBiz.
 The implementation relies mainly on the WebDriver, and assist developers with 
 ease to add/remove/edit test cases and obtain a complete test report then. 
 For more information: 
 https://cwiki.apache.org/confluence/display/OFBIZ/Implementation+Documentation

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (OFBIZ-4872) Functional Test Implementation

2012-10-08 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-4872?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13471821#comment-13471821
 ] 

Erwan de FERRIERES commented on OFBIZ-4872:
---

Steps to test:
* apply patch
* run ./ant download-webdriver load-demo
-- OFBiz is now loaded and ready to run the tests
* run ./ant run-webdriver

 Functional Test Implementation
 --

 Key: OFBIZ-4872
 URL: https://issues.apache.org/jira/browse/OFBIZ-4872
 Project: OFBiz
  Issue Type: Improvement
  Components: framework
Reporter: Nguyen Hoang Thanh Duc
Priority: Trivial
  Labels: gsoc2012, webdriver
 Attachments: OFBIZ-4872.patch

   Original Estimate: 2,184h
  Remaining Estimate: 2,184h

 This issue covers progressively implementation of the functional test for the 
 OFBiz.
 The implementation relies mainly on the WebDriver, and assist developers with 
 ease to add/remove/edit test cases and obtain a complete test report then. 
 For more information: 
 https://cwiki.apache.org/confluence/display/OFBIZ/Implementation+Documentation

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Assigned] (OFBIZ-5032) Complete French traduction for common component

2012-09-11 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-5032?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES reassigned OFBIZ-5032:
-

Assignee: Erwan de FERRIERES

 Complete French traduction for common component
 ---

 Key: OFBIZ-5032
 URL: https://issues.apache.org/jira/browse/OFBIZ-5032
 Project: OFBiz
  Issue Type: Improvement
  Components: framework
Affects Versions: SVN trunk
Reporter: Nicolas Malin
Assignee: Erwan de FERRIERES
Priority: Trivial
  Labels: label
 Attachments: OFBIZ-5032.patch


 all in title ;)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Closed] (OFBIZ-5032) Complete French traduction for common component

2012-09-11 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-5032?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-5032.
-

   Resolution: Fixed
Fix Version/s: SVN trunk

Hi Nicolas,
I reviewed your patch and committed it at rev 1383340

Thanks,

 Complete French traduction for common component
 ---

 Key: OFBIZ-5032
 URL: https://issues.apache.org/jira/browse/OFBIZ-5032
 Project: OFBiz
  Issue Type: Improvement
  Components: framework
Affects Versions: SVN trunk
Reporter: Nicolas Malin
Assignee: Erwan de FERRIERES
Priority: Trivial
  Labels: label
 Fix For: SVN trunk

 Attachments: OFBIZ-5032.patch


 all in title ;)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (OFBIZ-4975) updatePortletSeqDragDrop is not working in PortalPage management

2012-09-07 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-4975?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13450913#comment-13450913
 ] 

Erwan de FERRIERES commented on OFBIZ-4975:
---

Olivier,
have you some steps to reproduce the error ?

Thanks,

 updatePortletSeqDragDrop is not working in PortalPage management
 

 Key: OFBIZ-4975
 URL: https://issues.apache.org/jira/browse/OFBIZ-4975
 Project: OFBiz
  Issue Type: Bug
  Components: specialpurpose/myportal
Reporter: Olivier Heintz
Assignee: Erwan de FERRIERES
Priority: Minor
 Attachments: OFBIZ-4975.patch


 When you try to change Portlet order in a PortalPage, most of the time it 
 does'nt work.
 To show why, I start to change in minilang service, calculate attribute by a 
 set
 {code}
  iterate entry=modifyPp list=modifyPpList
  if-empty field=modifyPp.sequenceNum
  set field=modifyPp.sequenceNum value=newSequenceNo/
  else
 -calculate field=modifyPp.sequenceNum type=Long
 -calcop operator=add field=newSequenceNo
 -calcop operator=get field=increase/
 -/calcop
 -/calculate
 -calculate field=increase type=Long
 -calcop operator=add field=increase
 -calcop operator=get field=increase/
 -/calcop
 -/calculate
 +  set field=modifyPp.sequenceNum 
 from=newSequenceNo+increase /
 +  set field=increase from=increase+increase /
  /else
  /if-empty
  store-value value-field=modifyPp/
  /iterate
 {code}
 the error was to not use a second field, the correct code should be
 {code}
  iterate entry=modifyPp list=modifyPpList
  if-empty field=modifyPp.sequenceNum
  set field=modifyPp.sequenceNum value=newSequenceNo/
  else
   if-empty field=newValue
   set field=newValue from=increase/
   /if-empty
   set field=modifyPp.sequenceNum 
 from=newSequenceNo+newValue /
   set field=newValue from=newValue+increase/
  /else
  /if-empty
  store-value value-field=modifyPp/
  /iterate
 {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Closed] (OFBIZ-5021) Add screen to manage productStoreGroup Hierarchy

2012-09-05 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-5021?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-5021.
-

   Resolution: Fixed
Fix Version/s: SVN trunk

Nicolas, thanks for your patch.
Committed at rev 1381093

I slightly changed the menu to use a menu in the 
CommonProductStoreGroupDecorator instead of buttons.

Cheers

 Add screen to manage productStoreGroup Hierarchy
 

 Key: OFBIZ-5021
 URL: https://issues.apache.org/jira/browse/OFBIZ-5021
 Project: OFBiz
  Issue Type: New Feature
  Components: product
Affects Versions: SVN trunk
Reporter: Nicolas Malin
Assignee: Erwan de FERRIERES
Priority: Minor
 Fix For: SVN trunk

 Attachments: OFBIZ-5021.patch, OFBIZ-5021-screenshot.png


 At this time, a productStore hierarchy is possible in OFBiz through 
 ProductStoreGroup and ProductStoreGroupRollup but no screen existing.
 I added some screen and process to create/update productStoreGroup and manage 
 a hierarchy with a ftl treejs.
 functionality :
  * Create/Edit a productStoreGroup
  * Associate a productStoreGroup to a parentGroup
  * Associate a productStore to a productStoreGroup
  * Navigation on tree productStoreGroup
  * Disable a productStoreGroupRollup
 You can see patch and screenshot for more information

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Closed] (OFBIZ-5026) org.ofbiz.webapp.event.EventHandlerException: Problems getting the service model (Cannot locate service by name (learningFirstService))

2012-09-05 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-5026?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-5026.
-

Resolution: Invalid

Hi tripti,

this seems to be a question for the user mailing-list.
Jira is only for bugs/... related to trunk and released versions and not for 
the custom developments.

https://cwiki.apache.org/OFBADMIN/mailing-lists.html

Thanks, 

 org.ofbiz.webapp.event.EventHandlerException: Problems getting the service 
 model (Cannot locate service by name (learningFirstService))
 ---

 Key: OFBIZ-5026
 URL: https://issues.apache.org/jira/browse/OFBIZ-5026
 Project: OFBiz
  Issue Type: Bug
Reporter: tripti



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Closed] (OFBIZ-5025) jquery validator localization looks for messages_cn.js for locale zh_CN and _tw for zh_TW

2012-09-05 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-5025?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-5025.
-

Resolution: Fixed

done at rev 1381146
Thanks Leon

 jquery validator localization looks for messages_cn.js for locale zh_CN and 
 _tw for zh_TW
 -

 Key: OFBIZ-5025
 URL: https://issues.apache.org/jira/browse/OFBIZ-5025
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk
Reporter: Leon
Assignee: Erwan de FERRIERES
Priority: Minor
 Fix For: SVN trunk

 Attachments: OFBIZ-5025.patch


 it's weird that jquery validator localization does not treat zh_CN as zhcn 
 or zh-cn but cn, neither does zh_TW.
 Trivial update to JsLanguageFileMappingCreator.java to make it generate 
 correct file url for zh_CN and zh_TW. Besides, a uptodate 
 JsLanguageFilesMapping.java created by service createJsLanguageFileMapping is 
 also packaged into patch.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Closed] (OFBIZ-4976) method-name orderSequence-enforced, is not correct for simple-methods-v2.xsd

2012-09-05 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4976?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-4976.
-

Resolution: Implemented
  Assignee: Erwan de FERRIERES

Hi Olivier,

I already did it, so closing it.
Sorry for not having seen it...

Cheers,

 method-name orderSequence-enforced, is not correct for simple-methods-v2.xsd
 

 Key: OFBIZ-4976
 URL: https://issues.apache.org/jira/browse/OFBIZ-4976
 Project: OFBiz
  Issue Type: Bug
Reporter: Olivier Heintz
Assignee: Erwan de FERRIERES
Priority: Minor
 Fix For: SVN trunk

 Attachments: OFBIZ-4976.patch


 now the - is not authorized in a method-name so orderSequence-enforced 
 generate a validation error
 {code}
 2012-07-24 17:06:57,722 (http-bio-0.0.0.0-8443-exec-2) [
 UtilXml.java:1062:ERROR] XmlFileLoader: File 
 file:/usr/local/devel/oheOfbizUneCorrection/ofbiz/applications/order/script/org/ofbiz/order/order/OrderServices.xml
  process error. Line: 530. Error message: cvc-pattern-valid: Value 
 'orderSequence-enforced' is not facet-valid with respect to pattern 
 '[a-zA-Z_]{1}[a-zA-Z0-9_$.]+' for type 'javaClassName'.
 2012-07-24 17:06:57,723 (http-bio-0.0.0.0-8443-exec-2) [
 UtilXml.java:1062:ERROR] XmlFileLoader: File 
 file:/usr/local/devel/oheOfbizUneCorrection/ofbiz/applications/order/script/org/ofbiz/order/order/OrderServices.xml
  process error. Line: 530. Error message: cvc-attribute.3: The value 
 'orderSequence-enforced' of attribute 'method-name' on element 
 'simple-method' is not valid with respect to its type, 'javaClassName'.
 {code}
 I propose to change it to orderSequenceEnforced.
 The join patch change in OrderServices.xml and in the service definition file

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Assigned] (OFBIZ-4975) updatePortletSeqDragDrop is not working in PortalPage management

2012-09-05 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4975?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES reassigned OFBIZ-4975:
-

Assignee: Erwan de FERRIERES

 updatePortletSeqDragDrop is not working in PortalPage management
 

 Key: OFBIZ-4975
 URL: https://issues.apache.org/jira/browse/OFBIZ-4975
 Project: OFBiz
  Issue Type: Bug
  Components: specialpurpose/myportal
Reporter: Olivier Heintz
Assignee: Erwan de FERRIERES
Priority: Minor
 Attachments: OFBIZ-4975.patch


 When you try to change Portlet order in a PortalPage, most of the time it 
 does'nt work.
 To show why, I start to change in minilang service, calculate attribute by a 
 set
 {code}
  iterate entry=modifyPp list=modifyPpList
  if-empty field=modifyPp.sequenceNum
  set field=modifyPp.sequenceNum value=newSequenceNo/
  else
 -calculate field=modifyPp.sequenceNum type=Long
 -calcop operator=add field=newSequenceNo
 -calcop operator=get field=increase/
 -/calcop
 -/calculate
 -calculate field=increase type=Long
 -calcop operator=add field=increase
 -calcop operator=get field=increase/
 -/calcop
 -/calculate
 +  set field=modifyPp.sequenceNum 
 from=newSequenceNo+increase /
 +  set field=increase from=increase+increase /
  /else
  /if-empty
  store-value value-field=modifyPp/
  /iterate
 {code}
 the error was to not use a second field, the correct code should be
 {code}
  iterate entry=modifyPp list=modifyPpList
  if-empty field=modifyPp.sequenceNum
  set field=modifyPp.sequenceNum value=newSequenceNo/
  else
   if-empty field=newValue
   set field=newValue from=increase/
   /if-empty
   set field=modifyPp.sequenceNum 
 from=newSequenceNo+newValue /
   set field=newValue from=newValue+increase/
  /else
  /if-empty
  store-value value-field=modifyPp/
  /iterate
 {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Assigned] (OFBIZ-5021) Add screen to manage productStoreGroup Hierarchy

2012-09-04 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-5021?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES reassigned OFBIZ-5021:
-

Assignee: Erwan de FERRIERES

 Add screen to manage productStoreGroup Hierarchy
 

 Key: OFBIZ-5021
 URL: https://issues.apache.org/jira/browse/OFBIZ-5021
 Project: OFBiz
  Issue Type: New Feature
  Components: product
Affects Versions: SVN trunk
Reporter: Nicolas Malin
Assignee: Erwan de FERRIERES
Priority: Minor
 Attachments: OFBIZ-5021.patch, OFBIZ-5021-screenshot.png


 At this time, a productStore hierarchy is possible in OFBiz through 
 ProductStoreGroup and ProductStoreGroupRollup but no screen existing.
 I added some screen and process to create/update productStoreGroup and manage 
 a hierarchy with a ftl treejs.
 functionality :
  * Create/Edit a productStoreGroup
  * Associate a productStoreGroup to a parentGroup
  * Associate a productStore to a productStoreGroup
  * Navigation on tree productStoreGroup
  * Disable a productStoreGroupRollup
 You can see patch and screenshot for more information

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Assigned] (OFBIZ-4986) French uilabels for Marketing components

2012-09-04 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4986?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES reassigned OFBIZ-4986:
-

Assignee: Erwan de FERRIERES

 French uilabels for Marketing components
 

 Key: OFBIZ-4986
 URL: https://issues.apache.org/jira/browse/OFBIZ-4986
 Project: OFBiz
  Issue Type: Improvement
  Components: marketing
Affects Versions: SVN trunk
Reporter: Nicolas Malin
Assignee: Erwan de FERRIERES
Priority: Trivial
 Attachments: OFBIZ-4986.patch




--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Closed] (OFBIZ-4986) French uilabels for Marketing components

2012-09-04 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4986?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-4986.
-

   Resolution: Fixed
Fix Version/s: SVN trunk

done at rev 1380900
Thanks Nicolas

 French uilabels for Marketing components
 

 Key: OFBIZ-4986
 URL: https://issues.apache.org/jira/browse/OFBIZ-4986
 Project: OFBiz
  Issue Type: Improvement
  Components: marketing
Affects Versions: SVN trunk
Reporter: Nicolas Malin
Assignee: Erwan de FERRIERES
Priority: Trivial
 Fix For: SVN trunk

 Attachments: OFBIZ-4986.patch




--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Assigned] (OFBIZ-5025) jquery validator localization looks for messages_cn.js for locale zh_CN and _tw for zh_TW

2012-09-03 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-5025?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES reassigned OFBIZ-5025:
-

Assignee: Erwan de FERRIERES

 jquery validator localization looks for messages_cn.js for locale zh_CN and 
 _tw for zh_TW
 -

 Key: OFBIZ-5025
 URL: https://issues.apache.org/jira/browse/OFBIZ-5025
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk
Reporter: Leon
Assignee: Erwan de FERRIERES
Priority: Minor
 Fix For: SVN trunk

 Attachments: OFBIZ-5025.patch


 it's weird that jquery validator localization does not treat zh_CN as zhcn 
 or zh-cn but cn, neither does zh_TW.
 Trivial update to JsLanguageFileMappingCreator.java to make it generate 
 correct file url for zh_CN and zh_TW. Besides, a uptodate 
 JsLanguageFilesMapping.java created by service createJsLanguageFileMapping is 
 also packaged into patch.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (OFBIZ-5025) jquery validator localization looks for messages_cn.js for locale zh_CN and _tw for zh_TW

2012-09-03 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-5025?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13447396#comment-13447396
 ] 

Erwan de FERRIERES commented on OFBIZ-5025:
---

Hi Leon,

your patch doesn't apply on latest trunk. Could you please recreate it ?
[erwan@thinkpad:~/workspace/ofbiz]$ patch -p0  OFBIZ-5025.patch 
(Stripping trailing CRs from patch.)
patching file 
framework/common/src/org/ofbiz/common/JsLanguageFileMappingCreator.java
Hunk #1 FAILED at 72.
Hunk #2 FAILED at 115.
2 out of 2 hunks FAILED -- saving rejects to file 
framework/common/src/org/ofbiz/common/JsLanguageFileMappingCreator.java.rej
(Stripping trailing CRs from patch.)
patching file framework/common/src/org/ofbiz/common/JsLanguageFilesMapping.java
Hunk #1 FAILED at 399.
Hunk #2 FAILED at 490.
Hunk #3 FAILED at 514.
Hunk #4 FAILED at 563.
Hunk #5 FAILED at 593.
Hunk #6 FAILED at 623.
Hunk #7 FAILED at 638.
Hunk #8 FAILED at 655.
Hunk #9 FAILED at 680.
9 out of 9 hunks FAILED -- saving rejects to file 
framework/common/src/org/ofbiz/common/JsLanguageFilesMapping.java.rej

Thanks

 jquery validator localization looks for messages_cn.js for locale zh_CN and 
 _tw for zh_TW
 -

 Key: OFBIZ-5025
 URL: https://issues.apache.org/jira/browse/OFBIZ-5025
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk
Reporter: Leon
Assignee: Erwan de FERRIERES
Priority: Minor
 Fix For: SVN trunk

 Attachments: OFBIZ-5025.patch


 it's weird that jquery validator localization does not treat zh_CN as zhcn 
 or zh-cn but cn, neither does zh_TW.
 Trivial update to JsLanguageFileMappingCreator.java to make it generate 
 correct file url for zh_CN and zh_TW. Besides, a uptodate 
 JsLanguageFilesMapping.java created by service createJsLanguageFileMapping is 
 also packaged into patch.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Closed] (OFBIZ-5022) i wanted to insert my link in dropdown list ....how can i add ....in sfa menu...

2012-08-30 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-5022?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-5022.
-

Resolution: Invalid

Please use the user mailing-list for such questions.

Regards,

 i wanted to insert my link in dropdown list how can i add in sfa 
 menu...
 

 Key: OFBIZ-5022
 URL: https://issues.apache.org/jira/browse/OFBIZ-5022
 Project: OFBiz
  Issue Type: Task
Reporter: tripti



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Closed] (OFBIZ-5023) i m study ofbiz..but i do not understand how can i create my own link in marketing ,sfa,accounting etc..where is the codinf for this...plz tell me step by step...

2012-08-30 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-5023?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-5023.
-

Resolution: Fixed

Please use the user mailing-list for questions.

Regards,

 i m study ofbiz..but i do not understand how can i create my own link in 
 marketing ,sfa,accounting etc..where is the codinf for this...plz tell me 
 step by step...
 --

 Key: OFBIZ-5023
 URL: https://issues.apache.org/jira/browse/OFBIZ-5023
 Project: OFBiz
  Issue Type: Task
Reporter: tripti



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (OFBIZ-5022) i wanted to insert my link in dropdown list ....how can i add ....in sfa menu...

2012-08-30 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-5022?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13444891#comment-13444891
 ] 

Erwan de FERRIERES commented on OFBIZ-5022:
---

You'll find all you need on this page:
https://cwiki.apache.org/OFBADMIN/mailing-lists.html

 i wanted to insert my link in dropdown list how can i add in sfa 
 menu...
 

 Key: OFBIZ-5022
 URL: https://issues.apache.org/jira/browse/OFBIZ-5022
 Project: OFBiz
  Issue Type: Task
Reporter: tripti



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Closed] (OFBIZ-5011) Complete French traduction for accounting component

2012-08-27 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-5011?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-5011.
-

   Resolution: Fixed
Fix Version/s: SVN trunk

done at rev 1377654

I found some typos and errors, which were corrected.

Thanks Nicolas for your work,

 Complete French traduction for accounting component
 ---

 Key: OFBIZ-5011
 URL: https://issues.apache.org/jira/browse/OFBIZ-5011
 Project: OFBiz
  Issue Type: Improvement
  Components: accounting
Affects Versions: SVN trunk
Reporter: Nicolas Malin
Assignee: Erwan de FERRIERES
Priority: Trivial
 Fix For: SVN trunk

 Attachments: OFBIZ-5011.patch, OFBIZ-5011.patch, 
 OFBIZ-5011.patch.patch


 all in title ;)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (OFBIZ-5011) Complete French traduction for accounting component

2012-08-27 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-5011?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13442644#comment-13442644
 ] 

Erwan de FERRIERES commented on OFBIZ-5011:
---

Hi Jacques,

I think refund is remboursement and redeem is rachat.
Quite the same thing, but there is a distinction here.

I committed the corrections at rev 1377800. Thanks for your review.

Cheers,

 Complete French traduction for accounting component
 ---

 Key: OFBIZ-5011
 URL: https://issues.apache.org/jira/browse/OFBIZ-5011
 Project: OFBiz
  Issue Type: Improvement
  Components: accounting
Affects Versions: SVN trunk
Reporter: Nicolas Malin
Assignee: Erwan de FERRIERES
Priority: Trivial
 Fix For: SVN trunk

 Attachments: OFBIZ-5011.patch, OFBIZ-5011.patch, 
 OFBIZ-5011.patch.patch


 all in title ;)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (OFBIZ-5015) Update Lucene 3.5 to 4.0

2012-08-22 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-5015?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13439493#comment-13439493
 ] 

Erwan de FERRIERES commented on OFBIZ-5015:
---

Mirko,
thanks for your patch.
As Jacques said, we may wait for the lucene 4.0 final release before upgrading.

Cheers,

 Update Lucene 3.5 to 4.0
 

 Key: OFBIZ-5015
 URL: https://issues.apache.org/jira/browse/OFBIZ-5015
 Project: OFBiz
  Issue Type: Improvement
  Components: content
Affects Versions: SVN trunk
Reporter: Mirko Vogelsmeier
 Attachments: lucene-4.0.patch, 
 lucene-analyzers-common-4.0.0-ALPHA.jar, lucene-core-4.0.0-ALPHA.jar, 
 lucene-queryparser-4.0.0-ALPHA.jar


 Hi,
 i did update from lucene-3.5 to lucene-4.0.
 As soime Objects are now seperated into another packages, i had to add 2 more 
 libs.
 Just add the libs to application/content/lib and apply the patch.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Assigned] (OFBIZ-5011) Complete French traduction for accounting component

2012-08-15 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-5011?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES reassigned OFBIZ-5011:
-

Assignee: Erwan de FERRIERES

 Complete French traduction for accounting component
 ---

 Key: OFBIZ-5011
 URL: https://issues.apache.org/jira/browse/OFBIZ-5011
 Project: OFBiz
  Issue Type: Improvement
  Components: accounting
Affects Versions: SVN trunk
Reporter: Nicolas Malin
Assignee: Erwan de FERRIERES
Priority: Trivial
 Attachments: OFBIZ-5011.patch


 all in title ;)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Commented] (OFBIZ-5011) Complete French traduction for accounting component

2012-08-15 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-5011?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13435184#comment-13435184
 ] 

Erwan de FERRIERES commented on OFBIZ-5011:
---

No problem Jacques !

 Complete French traduction for accounting component
 ---

 Key: OFBIZ-5011
 URL: https://issues.apache.org/jira/browse/OFBIZ-5011
 Project: OFBiz
  Issue Type: Improvement
  Components: accounting
Affects Versions: SVN trunk
Reporter: Nicolas Malin
Assignee: Erwan de FERRIERES
Priority: Trivial
 Attachments: OFBIZ-5011.patch


 all in title ;)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Closed] (OFBIZ-4809) move seleniumXml to extra

2012-07-07 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4809?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-4809.
-

Resolution: Fixed

component removed at rev 1354380 by Jacopo

 move seleniumXml to extra
 -

 Key: OFBIZ-4809
 URL: https://issues.apache.org/jira/browse/OFBIZ-4809
 Project: OFBiz
  Issue Type: Task
  Components: framework
Affects Versions: SVN trunk
Reporter: Erwan de FERRIERES
 Fix For: SlimDown




--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Commented] (OFBIZ-4904) Addition of ID Attributes for Web Component in the OFBIZ

2012-06-05 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-4904?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13289230#comment-13289230
 ] 

Erwan de FERRIERES commented on OFBIZ-4904:
---

please work on generated pages (ie forms and screens), not on the static ones.
The login page is a ftl, adding ids there will be simple and quick.


 Addition of ID Attributes for Web Component in the OFBIZ
 

 Key: OFBIZ-4904
 URL: https://issues.apache.org/jira/browse/OFBIZ-4904
 Project: OFBiz
  Issue Type: Improvement
  Components: site
Reporter: Nguyen Hoang Thanh Duc
Priority: Trivial
 Attachments: Suggestion for Login Page.jpg


 This page would be updated constantly along with the progression of below 
 project: 
 https://cwiki.apache.org/confluence/display/OFBIZ/Functional+testing+in+the+OFBiz+-+Implementation+using+pure+Java+WebDriver
 At present, there are some components (div, input, ...) that have not their 
 IDs or name declared, and I suggest we have them. 
 As a result, a list of those items will be created, maintained and discussed 
 as which would/would not be modified.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Commented] (OFBIZ-4904) Addition of ID Attributes for Web Component in the OFBIZ

2012-06-04 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-4904?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13288395#comment-13288395
 ] 

Erwan de FERRIERES commented on OFBIZ-4904:
---

Mono,

you should suggest a naming convention for the blank fields and try to 
implement it.

Cheers,

 Addition of ID Attributes for Web Component in the OFBIZ
 

 Key: OFBIZ-4904
 URL: https://issues.apache.org/jira/browse/OFBIZ-4904
 Project: OFBiz
  Issue Type: Improvement
  Components: site
Reporter: Nguyen Hoang Thanh Duc
Priority: Trivial

 This page would be updated constantly along with the progression of below 
 project: 
 https://cwiki.apache.org/confluence/display/OFBIZ/Functional+testing+in+the+OFBiz+-+Implementation+using+pure+Java+WebDriver
 At present, there are some components (div, input, ...) that have not their 
 IDs or name declared, and I suggest we have them. 
 As a result, a list of those items will be created, maintained and discussed 
 as which would/would not be modified.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (OFBIZ-4862) View scrum product (product backlog shows )an error

2012-05-08 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4862?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES updated OFBIZ-4862:
--

Issue Type: Sub-task  (was: Bug)
Parent: OFBIZ-4849

 View scrum product (product backlog shows )an error
 ---

 Key: OFBIZ-4862
 URL: https://issues.apache.org/jira/browse/OFBIZ-4862
 Project: OFBiz
  Issue Type: Sub-task
  Components: specialpurpose/scrum
Affects Versions: SVN trunk, Release 11.04.01
Reporter: Pierre Smits
 Fix For: SVN trunk, Release 11.04.01


 When accessing a the product overview from the product backlog following 
 error is shown:
 The following items have errors:
 Chart (id = 10):
 + A BIRT exception occurred. See next exception for more information.
 Invalid javascript expression: row[DataName] (Element ID:10) 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (OFBIZ-4863) Scrum productstatistics shows errors

2012-05-08 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4863?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES updated OFBIZ-4863:
--

Issue Type: Sub-task  (was: Bug)
Parent: OFBIZ-4849

 Scrum productstatistics shows errors
 

 Key: OFBIZ-4863
 URL: https://issues.apache.org/jira/browse/OFBIZ-4863
 Project: OFBiz
  Issue Type: Sub-task
  Components: specialpurpose/scrum
Affects Versions: SVN trunk, Release 11.04.01
Reporter: Pierre Smits
 Fix For: SVN trunk, Release 11.04.01


 When accesssing the product statistics page in scrum following errors are 
 shown
 On the Project and Sprint Information Chart:
 The following items have errors:
 Chart (id = 10):
 + A BIRT exception occurred. See next exception for more information.
 Invalid javascript expression: row[DataName] (Element ID:10)
 The following items have errors:
 Chart (id = 7):
 + A BIRT exception occurred. See next exception for more information.
 Invalid javascript expression: row[ProjectName] (Element ID:7) 
 On the Backlogs Information Chart:
 The following items have errors:
 Chart (id = 10):
 + A BIRT exception occurred. See next exception for more information.
 Invalid javascript expression: row[DataName] (Element ID:10) 
 The following items have errors:
 Chart (id = 10):
 + A BIRT exception occurred. See next exception for more information.
 Invalid javascript expression: row[DataName] (Element ID:10)
 On the Tasks Information Chart:
 The following items have errors:
 Chart (id = 10):
 + A BIRT exception occurred. See next exception for more information.
 Invalid javascript expression: row[TaskName] (Element ID:10) 
 The following items have errors:
 Chart (id = 12):
 + A BIRT exception occurred. See next exception for more information.
 Invalid javascript expression: row[TaskType] (Element ID:12) 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (OFBIZ-4861) view sprint overview has errors

2012-05-08 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4861?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES updated OFBIZ-4861:
--

Issue Type: Sub-task  (was: Bug)
Parent: OFBIZ-4849

 view sprint overview has errors
 ---

 Key: OFBIZ-4861
 URL: https://issues.apache.org/jira/browse/OFBIZ-4861
 Project: OFBiz
  Issue Type: Sub-task
  Components: specialpurpose/scrum
Affects Versions: SVN trunk, Release 11.04.01
Reporter: Pierre Smits
 Fix For: SVN trunk, Release 11.04.01


 When viewing the sprint overview page errors are shown related to burndown 
 chart and the sprint backlog list
 Regarding the burndown chart:
 The following items have errors:
 Chart (id = 113):
 + A BIRT exception occurred. See next exception for more information.
 Invalid javascript expression: row[sprintDay] (Element ID:113) 
 Regarding the sprint backlog list
 org.ofbiz.widget.screen.ScreenRenderException: Error rendering screen 
 [component://common/widget/CommonScreens.xml#GlobalDecorator]: 
 java.lang.IllegalArgumentException: Error evaluating BeanShell use-when 
 condition [showPosition1RF_PROD_BACKLOG==RF_SCRUM_MEETINGS] on the 
 field custRequestId of form sprintBacklogListItems: Sourced file: inline 
 evaluation of: ``showPosition1RF_PROD_BACKLOG==RF_SCRUM_MEETINGS;'' : 
 illegal use of null value or 'null' literal : at Line: 1 : in file: inline 
 evaluation of: ``showPosition1RF_PROD_BACKLOG==RF_SCRUM_MEETINGS;'' : ;
 (Error evaluating BeanShell use-when condition 
 [showPosition1RF_PROD_BACKLOG==RF_SCRUM_MEETINGS] on the field 
 custRequestId of form sprintBacklogListItems: Sourced file: inline evaluation 
 of: ``showPosition1RF_PROD_BACKLOG==RF_SCRUM_MEETINGS;'' : illegal use 
 of null value or 'null' literal : at Line: 1 : in file: inline evaluation of: 
 ``showPosition1RF_PROD_BACKLOG==RF_SCRUM_MEETINGS;'' : ;
 )

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Assigned] (OFBIZ-4845) Apache Commons Compress is missing for Tika

2012-04-26 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4845?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES reassigned OFBIZ-4845:
-

Assignee: Erwan de FERRIERES

 Apache Commons Compress is missing for Tika
 ---

 Key: OFBIZ-4845
 URL: https://issues.apache.org/jira/browse/OFBIZ-4845
 Project: OFBiz
  Issue Type: Bug
  Components: content
Affects Versions: SVN trunk
 Environment: Ubuntu 10.04
Reporter: Chatree Srichart
Assignee: Erwan de FERRIERES
 Attachments: commons-compress-1.4.jar

   Original Estimate: 3h
  Remaining Estimate: 3h

 I got a problem when I called createDataResource service for a zip file.
 421240 [http-bio-0.0.0.0-8443-exec-2] ERROR 
 org.ofbiz.service.group.GroupModel - Grouped service [createDataResource] 
 failed.
 421240 [http-bio-0.0.0.0-8443-exec-2] ERROR 
 org.ofbiz.service.ServiceDispatcher - Error in Service 
 [createContentFromUploadedFile]: ERROR: Could not complete the Create a Data 
 Resource 
 [file:/path/to/ofbiz/applications/content/script/org/ofbiz/content/data/DataServices.xml#createDataResource]
  process [Method to execute named getMimeTypeWithByteBuffer threw an 
 exception: java.lang.NoClassDefFoundError: 
 org/apache/commons/compress/archivers/zip/ZipFile]
 The problem was OFBiz is missing Apache Commons Compress library which is 
 required for Tika. When I added commons-compress-1.4.jar into 
 framework/base/lib/commons directory then it worked.
 Regards,
 Chatree Srichart

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Closed] (OFBIZ-4845) Apache Commons Compress is missing for Tika

2012-04-26 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4845?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-4845.
-

   Resolution: Fixed
Fix Version/s: SVN trunk

Done at rev 1331060

Thanks Chatree for reporting.

 Apache Commons Compress is missing for Tika
 ---

 Key: OFBIZ-4845
 URL: https://issues.apache.org/jira/browse/OFBIZ-4845
 Project: OFBiz
  Issue Type: Bug
  Components: content
Affects Versions: SVN trunk
 Environment: Ubuntu 10.04
Reporter: Chatree Srichart
Assignee: Erwan de FERRIERES
 Fix For: SVN trunk

 Attachments: commons-compress-1.4.jar

   Original Estimate: 3h
  Remaining Estimate: 3h

 I got a problem when I called createDataResource service for a zip file.
 421240 [http-bio-0.0.0.0-8443-exec-2] ERROR 
 org.ofbiz.service.group.GroupModel - Grouped service [createDataResource] 
 failed.
 421240 [http-bio-0.0.0.0-8443-exec-2] ERROR 
 org.ofbiz.service.ServiceDispatcher - Error in Service 
 [createContentFromUploadedFile]: ERROR: Could not complete the Create a Data 
 Resource 
 [file:/path/to/ofbiz/applications/content/script/org/ofbiz/content/data/DataServices.xml#createDataResource]
  process [Method to execute named getMimeTypeWithByteBuffer threw an 
 exception: java.lang.NoClassDefFoundError: 
 org/apache/commons/compress/archivers/zip/ZipFile]
 The problem was OFBiz is missing Apache Commons Compress library which is 
 required for Tika. When I added commons-compress-1.4.jar into 
 framework/base/lib/commons directory then it worked.
 Regards,
 Chatree Srichart

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Closed] (OFBIZ-4790) move example to specialpurpose

2012-04-24 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4790?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-4790.
-

   Resolution: Fixed
Fix Version/s: SVN trunk

done at rev 1328503

 move example to specialpurpose
 --

 Key: OFBIZ-4790
 URL: https://issues.apache.org/jira/browse/OFBIZ-4790
 Project: OFBiz
  Issue Type: Task
Affects Versions: SVN trunk
Reporter: Erwan de FERRIERES
Assignee: Erwan de FERRIERES
 Fix For: SVN trunk, SlimDown




--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Commented] (OFBIZ-4837) Separator Error in data file tools

2012-04-23 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-4837?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13259955#comment-13259955
 ] 

Erwan de FERRIERES commented on OFBIZ-4837:
---

Hi Gil,

there is no need to rename your patches, Jira is directly deactivating the 
oldest one.
Also, maybe the best test to explain your work is to add unit tests.

thanks

 Separator Error in data file tools
 --

 Key: OFBIZ-4837
 URL: https://issues.apache.org/jira/browse/OFBIZ-4837
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk
Reporter: Gil Portenseigne
Priority: Minor
  Labels: data, parsing
 Attachments: OFBIZ-4837.patch, OFBIZ-4837_2.patch, 
 dataDefinition.xml, dataSample.csv, result.xml, resultBefore.xml

   Original Estimate: 0.5h
  Remaining Estimate: 0.5h

 In https://demo-trunk.ofbiz.apache.org/webtools/control/viewdatafile 
 There is a bug when defining simple separator (for instance ,) in 
 definition file, and when in data file a string data contains the separator. 
 This one sould not be interpreted in data parsing.
 To illustrate a bit more, i add small sample files to reproduce the problem. 
 And the patch which fix the bug.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Closed] (OFBIZ-4829) Missing decorator location in ExampleExt component:

2012-04-22 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4829?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-4829.
-

Resolution: Fixed
  Assignee: Erwan de FERRIERES

10.04 1328802
11.04 1328799
trunk 1328793

I had to change a bit the trunk version, as the component moved to 
specialpurpose

 Missing decorator location in ExampleExt component:
 ---

 Key: OFBIZ-4829
 URL: https://issues.apache.org/jira/browse/OFBIZ-4829
 Project: OFBiz
  Issue Type: Bug
Affects Versions: Release 10.04, Release Branch 11.04, SVN trunk
Reporter: yashwant dhakad
Assignee: Erwan de FERRIERES
Priority: Trivial
 Fix For: Release Branch 11.04, SVN trunk, Release 10.04

 Attachments: OFBIZ-4829-10.04.patch, OFBIZ-4829-11.04.patch, 
 OFBIZ-4829-Trunk.patch


 Missing following decorator location in ExampleExt component:
 1. CommonExampleGeoLocationDecorator.
 2. CommonExampleOsmGeoLocationDecorator.
 3. CommonBirtDecorator.
 4. CommonExampleChartsDecorator.
 5. CommonExampleJackrabbitDecorator.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Reopened] (OFBIZ-4827) Release branch doesn't test in Jenkins

2012-04-21 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4827?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES reopened OFBIZ-4827:
---


 Release branch doesn't test in Jenkins
 --

 Key: OFBIZ-4827
 URL: https://issues.apache.org/jira/browse/OFBIZ-4827
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: Release Branch 11.04, Release 11.04.01
Reporter: Pierre Smits
Assignee: Erwan de FERRIERES
Priority: Critical
 Fix For: Release 11.04.01

 Attachments: OFBIZ-4827-r1104-testport.patch

   Original Estimate: 0.5h
  Remaining Estimate: 0.5h

 As with trunk was, R11.04 doesn't test in CI (Jenkins) as ports are already 
 in use.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Resolved] (OFBIZ-4827) Release branch doesn't test in Jenkins

2012-04-21 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4827?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES resolved OFBIZ-4827.
---

Resolution: Won't Fix

Not a bug fix, but an improvement which should not go in release branch

 Release branch doesn't test in Jenkins
 --

 Key: OFBIZ-4827
 URL: https://issues.apache.org/jira/browse/OFBIZ-4827
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: Release Branch 11.04, Release 11.04.01
Reporter: Pierre Smits
Assignee: Erwan de FERRIERES
Priority: Critical
 Fix For: Release 11.04.01

 Attachments: OFBIZ-4827-r1104-testport.patch

   Original Estimate: 0.5h
  Remaining Estimate: 0.5h

 As with trunk was, R11.04 doesn't test in CI (Jenkins) as ports are already 
 in use.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Reopened] (OFBIZ-4828) R10.04 testports in use when testing in CI (Jenkins)

2012-04-21 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4828?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES reopened OFBIZ-4828:
---


 R10.04 testports in use when testing in CI (Jenkins)
 

 Key: OFBIZ-4828
 URL: https://issues.apache.org/jira/browse/OFBIZ-4828
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: Release Branch 10.04, Release 10.04
Reporter: Pierre Smits
Assignee: Erwan de FERRIERES
 Fix For: Release Branch 10.04, Release 10.04

 Attachments: OFBIZ-4828-r10.04-testports.patch

   Original Estimate: 0.5h
  Remaining Estimate: 0.5h

 As with trunk was, R10.04 doesn't test in CI (Jenkins) as ports are already 
 in use.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Resolved] (OFBIZ-4828) R10.04 testports in use when testing in CI (Jenkins)

2012-04-21 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4828?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES resolved OFBIZ-4828.
---

Resolution: Won't Fix

Not a bug fix, but an improvement which should not go in release branch

 R10.04 testports in use when testing in CI (Jenkins)
 

 Key: OFBIZ-4828
 URL: https://issues.apache.org/jira/browse/OFBIZ-4828
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: Release Branch 10.04, Release 10.04
Reporter: Pierre Smits
Assignee: Erwan de FERRIERES
 Fix For: Release Branch 10.04, Release 10.04

 Attachments: OFBIZ-4828-r10.04-testports.patch

   Original Estimate: 0.5h
  Remaining Estimate: 0.5h

 As with trunk was, R10.04 doesn't test in CI (Jenkins) as ports are already 
 in use.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Closed] (OFBIZ-4828) R10.04 testports in use when testing in CI (Jenkins)

2012-04-21 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4828?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-4828.
-


 R10.04 testports in use when testing in CI (Jenkins)
 

 Key: OFBIZ-4828
 URL: https://issues.apache.org/jira/browse/OFBIZ-4828
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: Release Branch 10.04, Release 10.04
Reporter: Pierre Smits
Assignee: Erwan de FERRIERES
 Fix For: Release Branch 10.04, Release 10.04

 Attachments: OFBIZ-4828-r10.04-testports.patch

   Original Estimate: 0.5h
  Remaining Estimate: 0.5h

 As with trunk was, R10.04 doesn't test in CI (Jenkins) as ports are already 
 in use.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Closed] (OFBIZ-4827) Release branch doesn't test in Jenkins

2012-04-21 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4827?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-4827.
-


 Release branch doesn't test in Jenkins
 --

 Key: OFBIZ-4827
 URL: https://issues.apache.org/jira/browse/OFBIZ-4827
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: Release Branch 11.04, Release 11.04.01
Reporter: Pierre Smits
Assignee: Erwan de FERRIERES
Priority: Critical
 Fix For: Release 11.04.01

 Attachments: OFBIZ-4827-r1104-testport.patch

   Original Estimate: 0.5h
  Remaining Estimate: 0.5h

 As with trunk was, R11.04 doesn't test in CI (Jenkins) as ports are already 
 in use.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Commented] (OFBIZ-4829) Missing decorator location in ExampleExt component:

2012-04-21 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-4829?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13258997#comment-13258997
 ] 

Erwan de FERRIERES commented on OFBIZ-4829:
---

trunk done at 1328793

 Missing decorator location in ExampleExt component:
 ---

 Key: OFBIZ-4829
 URL: https://issues.apache.org/jira/browse/OFBIZ-4829
 Project: OFBiz
  Issue Type: Bug
Affects Versions: Release 10.04, Release Branch 11.04, SVN trunk
Reporter: yashwant dhakad
Priority: Trivial
 Fix For: Release 10.04, Release Branch 11.04, SVN trunk

 Attachments: OFBIZ-4829-10.04.patch, OFBIZ-4829-11.04.patch, 
 OFBIZ-4829-Trunk.patch


 Missing following decorator location in ExampleExt component:
 1. CommonExampleGeoLocationDecorator.
 2. CommonExampleOsmGeoLocationDecorator.
 3. CommonBirtDecorator.
 4. CommonExampleChartsDecorator.
 5. CommonExampleJackrabbitDecorator.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Closed] (OFBIZ-4828) R10.04 testports in use when testing in CI (Jenkins)

2012-04-20 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4828?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-4828.
-

Resolution: Fixed
  Assignee: Erwan de FERRIERES

done at rev 1328517

 R10.04 testports in use when testing in CI (Jenkins)
 

 Key: OFBIZ-4828
 URL: https://issues.apache.org/jira/browse/OFBIZ-4828
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: Release Branch 10.04, Release 10.04
Reporter: Pierre Smits
Assignee: Erwan de FERRIERES
 Fix For: Release Branch 10.04, Release 10.04

 Attachments: OFBIZ-4828-r10.04-testports.patch

   Original Estimate: 0.5h
  Remaining Estimate: 0.5h

 As with trunk was, R10.04 doesn't test in CI (Jenkins) as ports are already 
 in use.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Closed] (OFBIZ-4827) Release branch doesn't test in Jenkins

2012-04-20 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4827?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-4827.
-

Resolution: Fixed
  Assignee: Erwan de FERRIERES

done at rev 1328518

 Release branch doesn't test in Jenkins
 --

 Key: OFBIZ-4827
 URL: https://issues.apache.org/jira/browse/OFBIZ-4827
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: Release Branch 11.04, Release 11.04.01
Reporter: Pierre Smits
Assignee: Erwan de FERRIERES
Priority: Critical
 Fix For: Release 11.04.01

 Attachments: OFBIZ-4827-r1104-testport.patch

   Original Estimate: 0.5h
  Remaining Estimate: 0.5h

 As with trunk was, R11.04 doesn't test in CI (Jenkins) as ports are already 
 in use.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Assigned] (OFBIZ-4448) Date time field with input method set to time-drop-down is not working correctly

2011-09-25 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4448?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES reassigned OFBIZ-4448:
-

Assignee: Erwan de FERRIERES

 Date time field with input method set to time-drop-down is not working 
 correctly
 

 Key: OFBIZ-4448
 URL: https://issues.apache.org/jira/browse/OFBIZ-4448
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk
Reporter: youssef khaye
Assignee: Erwan de FERRIERES
Priority: Minor
 Attachments: date-time-drop-down.patch


 when a field of type date-time with input method set to time-dropandown and 
 it's step attibute set to 5 (for example).
 It shows a wroing default value in minutes drop-down in when minutes are 
 greater than (60 - step/2)
 for 11:58 it show 11:00 instead of 12 : 00.
 a solution for that particular case is to show 11:55

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Closed] (OFBIZ-4448) Date time field with input method set to time-drop-down is not working correctly

2011-09-25 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4448?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-4448.
-

   Resolution: Fixed
Fix Version/s: SVN trunk

done at 1175474

thanks Youssef

 Date time field with input method set to time-drop-down is not working 
 correctly
 

 Key: OFBIZ-4448
 URL: https://issues.apache.org/jira/browse/OFBIZ-4448
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk
Reporter: youssef khaye
Assignee: Erwan de FERRIERES
Priority: Minor
 Fix For: SVN trunk

 Attachments: date-time-drop-down.patch, date-time-drop-down.patch


 when a field of type date-time with input method set to time-dropandown and 
 it's step attibute set to 5 (for example).
 It shows a wroing default value in minutes drop-down in when minutes are 
 greater than (60 - step/2)
 for 11:58 it show 11:00 instead of 12 : 00.
 a solution for that particular case is to show 11:55

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Assigned] (OFBIZ-4442) French translation missing in portal pages management

2011-09-22 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4442?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES reassigned OFBIZ-4442:
-

Assignee: Erwan de FERRIERES

 French translation missing in portal pages management
 -

 Key: OFBIZ-4442
 URL: https://issues.apache.org/jira/browse/OFBIZ-4442
 Project: OFBiz
  Issue Type: Improvement
  Components: framework
Reporter: Charles STELTZLEN
Assignee: Erwan de FERRIERES
Priority: Trivial
  Labels: patch
 Attachments: CommonUiLabels.xml.patch

   Original Estimate: 0.5h
  Remaining Estimate: 0.5h

 Somes labels are not translated in Portal Pages management.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Assigned] (OFBIZ-4349) commit r1077940 breaks the function to retrieve i18n translation from real entity underlying a view

2011-09-22 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4349?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES reassigned OFBIZ-4349:
-

Assignee: Erwan de FERRIERES

 commit r1077940 breaks the function to retrieve i18n translation from real 
 entity underlying a view
 ---

 Key: OFBIZ-4349
 URL: https://issues.apache.org/jira/browse/OFBIZ-4349
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk
Reporter: Leon
Assignee: Erwan de FERRIERES
 Attachments: OFBIZ-4349.patch


 in r1077940 changeset 
 ([https://fisheye6.atlassian.com/changelog/ofbiz?cs=1077940]), it gets the pk 
 fiels from view entity instead of previous real entity. I cannot understand 
 what author erwan commented: When using a view and fields with different 
 names than in the original entity, the model was taking the original names so 
 this could lead to warnings. The consequence of this commit is it cannot 
 retrieve i18n translation from real entity now because the pks of view entity 
 is usually different than that of its base tables.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Closed] (OFBIZ-4442) French translation missing in portal pages management

2011-09-22 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4442?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-4442.
-

   Resolution: Fixed
Fix Version/s: SVN trunk

thanks Charles,

done at r1174274

 French translation missing in portal pages management
 -

 Key: OFBIZ-4442
 URL: https://issues.apache.org/jira/browse/OFBIZ-4442
 Project: OFBiz
  Issue Type: Improvement
  Components: framework
Reporter: Charles STELTZLEN
Assignee: Erwan de FERRIERES
Priority: Trivial
  Labels: patch
 Fix For: SVN trunk

 Attachments: CommonUiLabels.xml.patch

   Original Estimate: 0.5h
  Remaining Estimate: 0.5h

 Somes labels are not translated in Portal Pages management.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Closed] (OFBIZ-4349) commit r1077940 breaks the function to retrieve i18n translation from real entity underlying a view

2011-09-22 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4349?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-4349.
-

   Resolution: Fixed
Fix Version/s: SVN trunk

done at 1174308

Thanks Olivier and Leon

 commit r1077940 breaks the function to retrieve i18n translation from real 
 entity underlying a view
 ---

 Key: OFBIZ-4349
 URL: https://issues.apache.org/jira/browse/OFBIZ-4349
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk
Reporter: Leon
Assignee: Erwan de FERRIERES
 Fix For: SVN trunk

 Attachments: OFBIZ-4349.patch


 in r1077940 changeset 
 ([https://fisheye6.atlassian.com/changelog/ofbiz?cs=1077940]), it gets the pk 
 fiels from view entity instead of previous real entity. I cannot understand 
 what author erwan commented: When using a view and fields with different 
 names than in the original entity, the model was taking the original names so 
 this could lead to warnings. The consequence of this commit is it cannot 
 retrieve i18n translation from real entity now because the pks of view entity 
 is usually different than that of its base tables.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Commented] (OFBIZ-4172) Managing of lot number and tracking

2011-09-04 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-4172?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13096866#comment-13096866
 ] 

Erwan de FERRIERES commented on OFBIZ-4172:
---

Jacques,

Pierre was a trainee at Néréide, and is no more working on this. You can make 
all changes to want before commiting it to OFBiz, if you want.

Cheers,

 Managing of lot number and tracking
 ---

 Key: OFBIZ-4172
 URL: https://issues.apache.org/jira/browse/OFBIZ-4172
 Project: OFBiz
  Issue Type: New Feature
  Components: manufacturing, product
Affects Versions: SVN trunk
Reporter: Pierre TALLOTTE
Assignee: Christian Geisert
Priority: Minor
  Labels: lot, tracking
 Attachments: OFBIZ-4172-facility-tracking.patch, 
 OFBIZ-4172-facility-tracking.patch, facility-tracking.patch, 
 facility-tracking.patch


 This patch adds features who allows a user to managing all product by lot id :
  - when he buys a product, he can specify the lot id ;
  - at each time he produces an inventory item in manufacturing,  he can 
 specify the lot id ;
  - he can choose the lot he wants when he makes a sale order or a 
 manufacturing process ;
  - there is a new screen who allows the user to realize the tracking of their 
 lots. 

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Commented] (OFBIZ-4383) CommonUILabels.xml has labels regarding applications

2011-08-31 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-4383?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13094474#comment-13094474
 ] 

Erwan de FERRIERES commented on OFBIZ-4383:
---

Pierre,

As commonUiLabels.xml is always loaded, no matter the component, labels for 
applications are in it. These way the menus are always translated. If you put 
each translation in the related application label file, it won't work anymore.

Cheers,

 CommonUILabels.xml has labels regarding applications
 

 Key: OFBIZ-4383
 URL: https://issues.apache.org/jira/browse/OFBIZ-4383
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: Release 10.04, Release Branch 11.04, SVN trunk
Reporter: Pierre Smits
 Attachments: ofbiz-4384-commonUiLabels.patch

   Original Estimate: 2m
  Remaining Estimate: 2m

 Currently CommonUILabels.xml contains the UIlabels of the menu items of 
 several components or applications, e.g. AR, AP, Project and others. These 
 should, however, be in the UILables.xml of the individual components.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Closed] (OFBIZ-4353) Add missing french label on OrderUiLabels file

2011-07-28 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4353?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-4353.
-

Resolution: Fixed

done at r 1151376 by Hans

 Add missing french label on OrderUiLabels file
 --

 Key: OFBIZ-4353
 URL: https://issues.apache.org/jira/browse/OFBIZ-4353
 Project: OFBiz
  Issue Type: Improvement
  Components: order
Affects Versions: SVN trunk
Reporter: Nicolas Malin
Assignee: Erwan de FERRIERES
Priority: Trivial
  Labels: label
 Fix For: SVN trunk

 Attachments: OFBIZ-4353-2.patch, OFBIZ-4353.patch

   Original Estimate: 10m
  Remaining Estimate: 10m

 Add french missing label on order

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Closed] (OFBIZ-4353) Add missing french label on OrderUiLabels file

2011-07-26 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4353?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-4353.
-

Resolution: Fixed

Done at r1151221.
Thanks Nicolas

PS: I had to review it and correct some typos (...)

 Add missing french label on OrderUiLabels file
 --

 Key: OFBIZ-4353
 URL: https://issues.apache.org/jira/browse/OFBIZ-4353
 Project: OFBiz
  Issue Type: Improvement
  Components: order
Affects Versions: SVN trunk
Reporter: Nicolas Malin
Assignee: Erwan de FERRIERES
Priority: Trivial
  Labels: label
 Fix For: SVN trunk

 Attachments: OFBIZ-4353.patch

   Original Estimate: 10m
  Remaining Estimate: 10m

 Add french missing label on order

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (OFBIZ-4349) commit r1077940 breaks the function to retrieve i18n translation from real entity underlying a view

2011-07-25 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4349?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES updated OFBIZ-4349:
--

Attachment: OFBIZ-4349.patch

The previous commit was to correct the problem occuring when realEntity 
pkFieldName is different from viewEntity pkColName, but it's only working with 
simple view and it breaks retrieving i18n for view with multiple entity and 
pkColName == pkFieldName.
So this new patch solves the two situations. Now the method :
   use pkField of realEntity
and retrieve for each pkField the correct colAlias 

I'm waiting for your comments.

Cheers,

 commit r1077940 breaks the function to retrieve i18n translation from real 
 entity underlying a view
 ---

 Key: OFBIZ-4349
 URL: https://issues.apache.org/jira/browse/OFBIZ-4349
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk
Reporter: Leon
 Attachments: OFBIZ-4349.patch


 in r1077940 changeset 
 ([https://fisheye6.atlassian.com/changelog/ofbiz?cs=1077940]), it gets the pk 
 fiels from view entity instead of previous real entity. I cannot understand 
 what author erwan commented: When using a view and fields with different 
 names than in the original entity, the model was taking the original names so 
 this could lead to warnings. The consequence of this commit is it cannot 
 retrieve i18n translation from real entity now because the pks of view entity 
 is usually different than that of its base tables.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Assigned] (OFBIZ-4348) Add missing french label on ContentUiLabel file

2011-07-25 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4348?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES reassigned OFBIZ-4348:
-

Assignee: Erwan de FERRIERES

 Add missing french label on ContentUiLabel file
 ---

 Key: OFBIZ-4348
 URL: https://issues.apache.org/jira/browse/OFBIZ-4348
 Project: OFBiz
  Issue Type: Improvement
  Components: content
Affects Versions: SVN trunk
Reporter: Nicolas Malin
Assignee: Erwan de FERRIERES
Priority: Trivial
  Labels: label
 Fix For: SVN trunk

 Attachments: OFBIZ-4348.patch

   Original Estimate: 10m
  Remaining Estimate: 10m

 Add missing french label.
 I remove space end line on 3 nl label

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Closed] (OFBIZ-4348) Add missing french label on ContentUiLabel file

2011-07-25 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4348?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-4348.
-

Resolution: Fixed

Done at r1150856, Thanks Nicolas.
BTW, I've reworked some of your translations.

Cheers,

 Add missing french label on ContentUiLabel file
 ---

 Key: OFBIZ-4348
 URL: https://issues.apache.org/jira/browse/OFBIZ-4348
 Project: OFBiz
  Issue Type: Improvement
  Components: content
Affects Versions: SVN trunk
Reporter: Nicolas Malin
Assignee: Erwan de FERRIERES
Priority: Trivial
  Labels: label
 Fix For: SVN trunk

 Attachments: OFBIZ-4348.patch

   Original Estimate: 10m
  Remaining Estimate: 10m

 Add missing french label.
 I remove space end line on 3 nl label

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Assigned] (OFBIZ-4350) Secondary dropdown role not works on viewrole screen

2011-07-25 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4350?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES reassigned OFBIZ-4350:
-

Assignee: Erwan de FERRIERES

 Secondary dropdown role not works on viewrole screen
 

 Key: OFBIZ-4350
 URL: https://issues.apache.org/jira/browse/OFBIZ-4350
 Project: OFBiz
  Issue Type: Bug
  Components: party
Affects Versions: SVN trunk
Reporter: Nicolas Malin
Assignee: Erwan de FERRIERES
Priority: Trivial
 Fix For: SVN trunk

 Attachments: OFBIZ-4350.patch

   Original Estimate: 10m
  Remaining Estimate: 10m

 With jquery migration this dropdown refresh don't receive parameter when main 
 drop-down change

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Closed] (OFBIZ-4350) Secondary dropdown role not works on viewrole screen

2011-07-25 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4350?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-4350.
-

Resolution: Fixed

Done at r1150859

Thanks Nicolas

 Secondary dropdown role not works on viewrole screen
 

 Key: OFBIZ-4350
 URL: https://issues.apache.org/jira/browse/OFBIZ-4350
 Project: OFBiz
  Issue Type: Bug
  Components: party
Affects Versions: SVN trunk
Reporter: Nicolas Malin
Assignee: Erwan de FERRIERES
Priority: Trivial
 Fix For: SVN trunk

 Attachments: OFBIZ-4350.patch

   Original Estimate: 10m
  Remaining Estimate: 10m

 With jquery migration this dropdown refresh don't receive parameter when main 
 drop-down change

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Closed] (OFBIZ-4324) When creating a customer from the shopping cart the selected country has to be the default one (with patch)

2011-06-24 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4324?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-4324.
-

   Resolution: Fixed
Fix Version/s: SVN trunk

Done in trunk at r1139291
Thanks Stephane

 When creating a customer from the shopping cart the selected country has to 
 be the default one (with patch)
 ---

 Key: OFBIZ-4324
 URL: https://issues.apache.org/jira/browse/OFBIZ-4324
 Project: OFBiz
  Issue Type: Improvement
  Components: order
Affects Versions: SVN trunk
Reporter: Stéphane DUCAS
Assignee: Erwan de FERRIERES
Priority: Minor
 Fix For: SVN trunk

 Attachments: Patch_country, SelectionPaysParDefaut (2).patch


 When creating a new customer from the shopping cart of the ordermgr 
 application, the country field is initialized to Afghanistan. It make sense 
 that the country field should be the default country defined in 
 general.properties.
 Here is the patch:
 Index: framework/common/webcommon/includes/countries.ftl
 ===
 --- framework/common/webcommon/includes/countries.ftl (revision 1137569)
 +++ framework/common/webcommon/includes/countries.ftl (working copy)
 @@ -18,6 +18,6 @@
  --
  #assign countries = 
 Static[org.ofbiz.common.CommonWorkers].getCountryList(delegator)
  #list countries as country
 -option 
 value='${country.geoId}'${country.get(geoName,locale)?default(country.geoId)}/option
 +option value='${country.geoId}' 
 ${(country.geoId==defaultCountryGeoId)?string(selected=\selected\,)}${country.get(geoName,locale)?default(country.geoId)}/option
  /#list
  
 Index: applications/order/widget/ordermgr/OrderEntryOrderScreens.xml
 ===
 --- applications/order/widget/ordermgr/OrderEntryOrderScreens.xml 
 (revision 1137569)
 +++ applications/order/widget/ordermgr/OrderEntryOrderScreens.xml 
 (working copy)
 @@ -109,6 +109,7 @@
  set field=stepTitleId 
 value=OrderOrderEntryShipToSettings/
  set field=stepLabelId value=FacilityShipping/
  script 
 location=component://order/webapp/ordermgr/WEB-INF/actions/entry/ShipSettings.groovy/
 +  property-to-field field=defaultCountryGeoId 
 resource=general property=country.geo.id.default default=USA/
  /actions
  widgets
  decorator-screen name=CommonOrderCheckoutDecorator

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Commented] (OFBIZ-4324) When creating a customer from the shopping cart the selected country has to be the default one (with patch)

2011-06-23 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-4324?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13053860#comment-13053860
 ] 

Erwan de FERRIERES commented on OFBIZ-4324:
---

Hi Stephane,
you should attach your patch as a file to the issue and accept the license. If 
it's just a description, then it couldn't be included.

Thanks,

 When creating a customer from the shopping cart the selected country has to 
 be the default one (with patch)
 ---

 Key: OFBIZ-4324
 URL: https://issues.apache.org/jira/browse/OFBIZ-4324
 Project: OFBiz
  Issue Type: Improvement
  Components: order
Affects Versions: SVN trunk
Reporter: Stéphane DUCAS
Priority: Minor

 When creating a new customer from the shopping cart of the ordermgr 
 application, the country field is initialized to Afghanistan. It make sense 
 that the country field should be the default country defined in 
 general.properties.
 Here is the patch:
 Index: framework/common/webcommon/includes/countries.ftl
 ===
 --- framework/common/webcommon/includes/countries.ftl (revision 1137569)
 +++ framework/common/webcommon/includes/countries.ftl (working copy)
 @@ -18,6 +18,6 @@
  --
  #assign countries = 
 Static[org.ofbiz.common.CommonWorkers].getCountryList(delegator)
  #list countries as country
 -option 
 value='${country.geoId}'${country.get(geoName,locale)?default(country.geoId)}/option
 +option value='${country.geoId}' 
 ${(country.geoId==defaultCountryGeoId)?string(selected=\selected\,)}${country.get(geoName,locale)?default(country.geoId)}/option
  /#list
  
 Index: applications/order/widget/ordermgr/OrderEntryOrderScreens.xml
 ===
 --- applications/order/widget/ordermgr/OrderEntryOrderScreens.xml 
 (revision 1137569)
 +++ applications/order/widget/ordermgr/OrderEntryOrderScreens.xml 
 (working copy)
 @@ -109,6 +109,7 @@
  set field=stepTitleId 
 value=OrderOrderEntryShipToSettings/
  set field=stepLabelId value=FacilityShipping/
  script 
 location=component://order/webapp/ordermgr/WEB-INF/actions/entry/ShipSettings.groovy/
 +  property-to-field field=defaultCountryGeoId 
 resource=general property=country.geo.id.default default=USA/
  /actions
  widgets
  decorator-screen name=CommonOrderCheckoutDecorator

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Assigned] (OFBIZ-4324) When creating a customer from the shopping cart the selected country has to be the default one (with patch)

2011-06-23 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4324?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES reassigned OFBIZ-4324:
-

Assignee: Erwan de FERRIERES

 When creating a customer from the shopping cart the selected country has to 
 be the default one (with patch)
 ---

 Key: OFBIZ-4324
 URL: https://issues.apache.org/jira/browse/OFBIZ-4324
 Project: OFBiz
  Issue Type: Improvement
  Components: order
Affects Versions: SVN trunk
Reporter: Stéphane DUCAS
Assignee: Erwan de FERRIERES
Priority: Minor
 Attachments: SelectionPaysParDefaut (2).patch


 When creating a new customer from the shopping cart of the ordermgr 
 application, the country field is initialized to Afghanistan. It make sense 
 that the country field should be the default country defined in 
 general.properties.
 Here is the patch:
 Index: framework/common/webcommon/includes/countries.ftl
 ===
 --- framework/common/webcommon/includes/countries.ftl (revision 1137569)
 +++ framework/common/webcommon/includes/countries.ftl (working copy)
 @@ -18,6 +18,6 @@
  --
  #assign countries = 
 Static[org.ofbiz.common.CommonWorkers].getCountryList(delegator)
  #list countries as country
 -option 
 value='${country.geoId}'${country.get(geoName,locale)?default(country.geoId)}/option
 +option value='${country.geoId}' 
 ${(country.geoId==defaultCountryGeoId)?string(selected=\selected\,)}${country.get(geoName,locale)?default(country.geoId)}/option
  /#list
  
 Index: applications/order/widget/ordermgr/OrderEntryOrderScreens.xml
 ===
 --- applications/order/widget/ordermgr/OrderEntryOrderScreens.xml 
 (revision 1137569)
 +++ applications/order/widget/ordermgr/OrderEntryOrderScreens.xml 
 (working copy)
 @@ -109,6 +109,7 @@
  set field=stepTitleId 
 value=OrderOrderEntryShipToSettings/
  set field=stepLabelId value=FacilityShipping/
  script 
 location=component://order/webapp/ordermgr/WEB-INF/actions/entry/ShipSettings.groovy/
 +  property-to-field field=defaultCountryGeoId 
 resource=general property=country.geo.id.default default=USA/
  /actions
  widgets
  decorator-screen name=CommonOrderCheckoutDecorator

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Assigned] (OFBIZ-4320) can't select good phase into task edit form

2011-06-21 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4320?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES reassigned OFBIZ-4320:
-

Assignee: Erwan de FERRIERES

 can't select good phase into task edit form
 ---

 Key: OFBIZ-4320
 URL: https://issues.apache.org/jira/browse/OFBIZ-4320
 Project: OFBiz
  Issue Type: Bug
  Components: specialpurpose/projectmgr
Affects Versions: SVN trunk
Reporter: Gaudin Pierre
Assignee: Erwan de FERRIERES
 Attachments: 
 OFBIZ-4320_can_t_select_good_phase_into_task_edit_form.patch


 In the project management module, in the view of task, if we want to add a 
 new task, it is necessary to select a phase. The phases appear in a drop-down 
 list. The list of the phases is not correct because they do not correspond to 
 the current project.
 To see the error it is necessary to go on this page as admin:
 https://demo-trunk.ofbiz.apache.org/projectmgr/control/EditProjectTasks?projectId=9200
 In the form Add Task look at fields Parent Phase the list does not 
 correspond has phases of the project
 Once the patch is applied, the list of phases corresponds to the actual 
 project.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Closed] (OFBIZ-4320) can't select good phase into task edit form

2011-06-21 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4320?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-4320.
-

   Resolution: Fixed
Fix Version/s: SVN trunk

Thanks Pierre, done at r1137986 in trunk

 can't select good phase into task edit form
 ---

 Key: OFBIZ-4320
 URL: https://issues.apache.org/jira/browse/OFBIZ-4320
 Project: OFBiz
  Issue Type: Bug
  Components: specialpurpose/projectmgr
Affects Versions: SVN trunk
Reporter: Gaudin Pierre
Assignee: Erwan de FERRIERES
 Fix For: SVN trunk

 Attachments: 
 OFBIZ-4320_can_t_select_good_phase_into_task_edit_form.patch


 In the project management module, in the view of task, if we want to add a 
 new task, it is necessary to select a phase. The phases appear in a drop-down 
 list. The list of the phases is not correct because they do not correspond to 
 the current project.
 To see the error it is necessary to go on this page as admin:
 https://demo-trunk.ofbiz.apache.org/projectmgr/control/EditProjectTasks?projectId=9200
 In the form Add Task look at fields Parent Phase the list does not 
 correspond has phases of the project
 Once the patch is applied, the list of phases corresponds to the actual 
 project.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Assigned] (OFBIZ-4298) fix js Gantt display for milestone and associated workeffort

2011-06-01 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4298?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES reassigned OFBIZ-4298:
-

Assignee: Erwan de FERRIERES

 fix js Gantt display for milestone and associated workeffort
 

 Key: OFBIZ-4298
 URL: https://issues.apache.org/jira/browse/OFBIZ-4298
 Project: OFBiz
  Issue Type: Bug
  Components: specialpurpose/projectmgr
Affects Versions: SVN trunk
Reporter: Gaudin Pierre
Assignee: Erwan de FERRIERES
 Fix For: SVN trunk

 Attachments: 
 OFBIZ-4298_fix_js_Gantt_display_for_milestone_and_associated_workeffort.patch


 The aim of this patch is to fix the display of the milestones and the task on 
 the diagram of gantt.
 Here are the errors at present:
  1 - If a task has several associated tasks only the last one appears as 
 bound 
  2 - the milestones seem systematically ended even if the status is not ended 
  3 - duration is not display for milestone in ressource column
 The patch corrects these three points.
 To validate the patch it is necessary to:
  1 - Create a new project
  2 - Create 1 phase 
  3 - Create 3 tasks 
  4 - Associated first task with the last two tasks 
 Result =  the first task appears connected to both following ones on the 
 diagram of gantt
  5 - Edit one of the task and set the type to milestone
 Result =  it appears as not ended on the diagram
 Result =  the column ressource contains the number the estimated duration 
 of the task
   5 - Put the status of the milestone as ended
 Result =  it appears as ended on the diagram

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Closed] (OFBIZ-4298) fix js Gantt display for milestone and associated workeffort

2011-06-01 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4298?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-4298.
-

Resolution: Fixed

Done at r1130143

Thanks Pierre

 fix js Gantt display for milestone and associated workeffort
 

 Key: OFBIZ-4298
 URL: https://issues.apache.org/jira/browse/OFBIZ-4298
 Project: OFBiz
  Issue Type: Bug
  Components: specialpurpose/projectmgr
Affects Versions: SVN trunk
Reporter: Gaudin Pierre
Assignee: Erwan de FERRIERES
 Fix For: SVN trunk

 Attachments: 
 OFBIZ-4298_fix_js_Gantt_display_for_milestone_and_associated_workeffort.patch


 The aim of this patch is to fix the display of the milestones and the task on 
 the diagram of gantt.
 Here are the errors at present:
  1 - If a task has several associated tasks only the last one appears as 
 bound 
  2 - the milestones seem systematically ended even if the status is not ended 
  3 - duration is not display for milestone in ressource column
 The patch corrects these three points.
 To validate the patch it is necessary to:
  1 - Create a new project
  2 - Create 1 phase 
  3 - Create 3 tasks 
  4 - Associated first task with the last two tasks 
 Result =  the first task appears connected to both following ones on the 
 diagram of gantt
  5 - Edit one of the task and set the type to milestone
 Result =  it appears as not ended on the diagram
 Result =  the column ressource contains the number the estimated duration 
 of the task
   5 - Put the status of the milestone as ended
 Result =  it appears as ended on the diagram

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (OFBIZ-4211) [GSoC] code/test separation

2011-05-31 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-4211?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13041467#comment-13041467
 ] 

Erwan de FERRIERES commented on OFBIZ-4211:
---

Hi Ganath,

everything is here : http://help.github.com/linux-set-up-git/ and 
http://help.github.com/troubleshooting-ssh/

I found it well explained, it should help you !

 [GSoC] code/test separation
 ---

 Key: OFBIZ-4211
 URL: https://issues.apache.org/jira/browse/OFBIZ-4211
 Project: OFBiz
  Issue Type: Improvement
Affects Versions: SVN trunk
Reporter: Erwan de FERRIERES
Priority: Minor
  Labels: gsoc2011, mentor
 Attachments: trees-tructures.zip, treeview.txt


 One for the maven practices is to separate code and test code source. We are 
 not using maven with OFBiz, but this separation can be beneficial.
 {code}
 src/main/java Application/Library sources
 src/test/java Test sources
 {code}
 http://stackoverflow.com/questions/2388253/separation-of-junit-classes-into-special-test-package

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (OFBIZ-4211) [GSoC] code/test separation

2011-05-30 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-4211?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13041237#comment-13041237
 ] 

Erwan de FERRIERES commented on OFBIZ-4211:
---

Ganath,

you may commit directly in your git repo. These way we could also track your 
changes.
Adding new messages to this issue is a good practice, keep it this way !

 [GSoC] code/test separation
 ---

 Key: OFBIZ-4211
 URL: https://issues.apache.org/jira/browse/OFBIZ-4211
 Project: OFBiz
  Issue Type: Improvement
Affects Versions: SVN trunk
Reporter: Erwan de FERRIERES
Priority: Minor
  Labels: gsoc2011, mentor
 Attachments: trees-tructures.zip, treeview.txt


 One for the maven practices is to separate code and test code source. We are 
 not using maven with OFBiz, but this separation can be beneficial.
 {code}
 src/main/java Application/Library sources
 src/test/java Test sources
 {code}
 http://stackoverflow.com/questions/2388253/separation-of-junit-classes-into-special-test-package

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (OFBIZ-4287) Webpos2 improved version

2011-05-21 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-4287?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13037278#comment-13037278
 ] 

Erwan de FERRIERES commented on OFBIZ-4287:
---

Hi Marco,

screenshot is looking very nice !

Good work !

 Webpos2 improved version
 

 Key: OFBIZ-4287
 URL: https://issues.apache.org/jira/browse/OFBIZ-4287
 Project: OFBiz
  Issue Type: Improvement
  Components: specialpurpose/webpos
Affects Versions: SVN trunk
 Environment: Tested only on Firefox 4 with Tomahawk.
Reporter: Marco Risaliti
Assignee: Marco Risaliti
Priority: Minor
  Labels: webpos2
 Fix For: SVN trunk

 Attachments: webpos2.patch, webpos2_screenshot1.png


 That's a new version of webpos fully rewritten and using a lot of jQuery for 
 speed up the user interaction.
 I will attach a screenshot and if all agree I will commit it in the trunk.
 Thanks
 Marco

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Created] (OFBIZ-4275) localization for jQuery validate plugin is not working

2011-05-10 Thread Erwan de FERRIERES (JIRA)
localization for jQuery validate plugin is not working
--

 Key: OFBIZ-4275
 URL: https://issues.apache.org/jira/browse/OFBIZ-4275
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk
Reporter: Erwan de FERRIERES
Assignee: Sascha Rodekamp
Priority: Minor
 Fix For: SVN trunk


Sacha,

the validate plugin is not using the localized files.
Everything needed seems to be there, could you take a look ?

Thanks

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (OFBIZ-4275) localization for jQuery validate plugin is not working

2011-05-10 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-4275?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13031445#comment-13031445
 ] 

Erwan de FERRIERES commented on OFBIZ-4275:
---

Hi,

Ok, no problem. Just waiting for your patch,

Cheers,

 localization for jQuery validate plugin is not working
 --

 Key: OFBIZ-4275
 URL: https://issues.apache.org/jira/browse/OFBIZ-4275
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk
Reporter: Erwan de FERRIERES
Assignee: Sascha Rodekamp
Priority: Minor
 Fix For: SVN trunk


 Sacha,
 the validate plugin is not using the localized files.
 Everything needed seems to be there, could you take a look ?
 Thanks

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (OFBIZ-4014) i18n from DateTime display fields

2011-04-29 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-4014?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13026907#comment-13026907
 ] 

Erwan de FERRIERES commented on OFBIZ-4014:
---

Hi Jonas,

you may take a look to datejs which is the framework used for dates: 
http://www.datejs.com/ There is an input box on the main page where you can 
make your tests.

I think the problem is more coming from datejs than OFBiz.

Cheers,

 i18n from DateTime display fields 
 --

 Key: OFBIZ-4014
 URL: https://issues.apache.org/jira/browse/OFBIZ-4014
 Project: OFBiz
  Issue Type: Improvement
  Components: framework
Affects Versions: SVN trunk
Reporter: Sascha Rodekamp
Assignee: Sascha Rodekamp
 Fix For: SVN trunk

 Attachments: OFBIZ-4014_ModelFormField_DateTimeField_i18n.patch, 
 OFBIZ-4014_ModelFormField_DateTimeField_i18n.patch, OFBIZ-4014_dateJs.zip, 
 OFBIZ-4014_dateJs.zip, OFBIZ-4014_dateJs.zip, 
 OFBIZ-4014_i18nTimepicker.patch, 
 OFBIZ-4014_i18nTimepicker_And_DateTimeField.patch, 
 OFBIZ-4014_i18nTimepicker_And_DateTimeField.patch, 
 OFBIZ-4014_i18nTimepicker_And_DateTimeField.patch, 
 OFBIZ-4014_languageFileLoading.zip, OFBIZ-4014_lazyLoadJsLanguageFiles.patch, 
 OFBIZ-4014_lazyLoadJsLanguageFiles.patch


 Hi everybody,
 i did a little improvement in the display form fields from type date and 
 date-time. 
 In the past the timestamps where read from the DB and the string was simply 
 cut, that didn't match with (i.e.) German date pattern. I changed this 
 substring stuff and used the locale and timezone with the dateFormatter to 
 create a i18n date string.
 This patch works for: display type=date / and display type=date-time /
 Hope that helps.
 Have a nice day
 Sascha

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (OFBIZ-4014) i18n from DateTime display fields

2011-04-29 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-4014?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13026999#comment-13026999
 ] 

Erwan de FERRIERES commented on OFBIZ-4014:
---

hi,

I don't think this is the same basecode. From 
http://www.datejs.com/2007/11/27/getting-started-with-datejs/
??Datejs has traveled to many lands and returns with knowledge of over 150 
individual Cultures. Supporting your language of choice is simple, just swap 
out the date.js file for another culture-specific file.??

So I think your datejs localized file is not loaded, if it exists.

 i18n from DateTime display fields 
 --

 Key: OFBIZ-4014
 URL: https://issues.apache.org/jira/browse/OFBIZ-4014
 Project: OFBiz
  Issue Type: Improvement
  Components: framework
Affects Versions: SVN trunk
Reporter: Sascha Rodekamp
Assignee: Sascha Rodekamp
 Fix For: SVN trunk

 Attachments: OFBIZ-4014_ModelFormField_DateTimeField_i18n.patch, 
 OFBIZ-4014_ModelFormField_DateTimeField_i18n.patch, OFBIZ-4014_dateJs.zip, 
 OFBIZ-4014_dateJs.zip, OFBIZ-4014_dateJs.zip, 
 OFBIZ-4014_i18nTimepicker.patch, 
 OFBIZ-4014_i18nTimepicker_And_DateTimeField.patch, 
 OFBIZ-4014_i18nTimepicker_And_DateTimeField.patch, 
 OFBIZ-4014_i18nTimepicker_And_DateTimeField.patch, 
 OFBIZ-4014_languageFileLoading.zip, OFBIZ-4014_lazyLoadJsLanguageFiles.patch, 
 OFBIZ-4014_lazyLoadJsLanguageFiles.patch


 Hi everybody,
 i did a little improvement in the display form fields from type date and 
 date-time. 
 In the past the timestamps where read from the DB and the string was simply 
 cut, that didn't match with (i.e.) German date pattern. I changed this 
 substring stuff and used the locale and timezone with the dateFormatter to 
 create a i18n date string.
 This patch works for: display type=date / and display type=date-time /
 Hope that helps.
 Have a nice day
 Sascha

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (OFBIZ-4257) add a parameter to forbid order decimal quantity

2011-04-29 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-4257?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13027004#comment-13027004
 ] 

Erwan de FERRIERES commented on OFBIZ-4257:
---

Hi Pierre,

could you secure your modifications with unit tests ?

TIA

 add a parameter to forbid order decimal quantity
 

 Key: OFBIZ-4257
 URL: https://issues.apache.org/jira/browse/OFBIZ-4257
 Project: OFBiz
  Issue Type: Improvement
  Components: order, specialpurpose/ecommerce
Affects Versions: SVN trunk
Reporter: Gaudin Pierre
Assignee: Jacques Le Roux
 Fix For: SVN trunk

 Attachments: 
 OFBIZ-4257_add_a_parameter_to_forbid_order_decimal_quantity.patch, 
 OFBIZ-4257_add_a_parameter_to_forbid_order_decimal_quantity_v2.patch


 This is a patch to add a parameter to forbid order decimal quantity
 Behavior before the patch :
- you can add decimal quantity on shopping cart item (front office and 
 back office) even if the product is a unit
- there is no rounding on quantity on shopping cart item thus you get 
 amount with a large number of decimal
- reorder widget display quantity to reorder with a large number of decimal
 What does this patch :
- a new field orderDecimalQuantity is added into ProducStore entity. The 
 value of this field can be set from EditProducStore form (into shopping cart 
 section). Value can be Y, N or empty.
- a new field orderDecimalQuantity is added into Product entity. The 
 value of this field can be set from EditProduc form (into shopping cart 
 section). Value can be Y, N or empty.
- a new method isDecimalQuantityOrderAllowed have been add into 
 productWorker class. This method test if order decimal quantity is allow for 
 a product and a productStore. Product is superior on producStore. Here is the 
 table of value :
 - ProductStore.orderDecimalQuantity = Y
 Product.orderDecimalQuantity = Y = return True
 - ProductStore.orderDecimalQuantity = N
 Product.orderDecimalQuantity = Y = return True
 - ProductStore.orderDecimalQuantity = empty
 Product.orderDecimalQuantity = Y = return True
 - ProductStore.orderDecimalQuantity = Y
 Product.orderDecimalQuantity = N = return False
 - ProductStore.orderDecimalQuantity = N
 Product.orderDecimalQuantity = N = return False
 - ProductStore.orderDecimalQuantity = empty
 Product.orderDecimalQuantity = N = return False
 - ProductStore.orderDecimalQuantity = Y
 Product.orderDecimalQuantity = empty = return True
 - ProductStore.orderDecimalQuantity = N
 Product.orderDecimalQuantity = empty = return False
 - ProductStore.orderDecimalQuantity = empty
 Product.orderDecimalQuantity = empty = return True
- addToCat and modifyCart car method have been modify to call 
 isDecimalQuantityOrderAllowed. If result is true then quantity is rounding 
 with order config value. If result is false then quantity is rounding to 0. 
 No message is return.
- to fix reorder quantity, then getQuickReorderProducts method have been 
 modify to call isDecimalQuantityOrderAllowed. If result is true then quantity 
 is rounding with order config value. If result is false then quantity is 
 rounding to 0.
 What the result :
- You can forbid or accept to manage order decimal quantity for all product
- You can forbid or accept to manage order decimal quantity for one product
- Decimal quantity are now rounded with order config value.
- reorder quantity is rounded with order config value or rounding to 0

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Closed] (OFBIZ-4249) error in pagination target with on-event-update-area parameters

2011-04-26 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4249?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-4249.
-


 error in pagination target with on-event-update-area parameters
 ---

 Key: OFBIZ-4249
 URL: https://issues.apache.org/jira/browse/OFBIZ-4249
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk
Reporter: Gaudin Pierre
Assignee: Erwan de FERRIERES
 Fix For: SVN trunk

 Attachments: MacroFormRenderer.java.patch


 In forms, when we use the tag on-event-update-area with parameters, in 
 certain case the parameters of the tag are not taken back in the links of 
 pagination.
 This is due to the fact that in certain case the url of pagination contains 
 an anchor at the end of the link and parameters of the tag 
 on-event-update-area  are added after this anchor.
 This patch corrects this problem by adding the parameters of the tag 
 on-event-update-area before parameter of the form and thus before those of 
 the anchor.
 This is the old url : portalPortletId is a parameter of tag 
 on-event-update-area
 javascript:ajaxUpdateAreas('hhh,/myportal/control/ggg,portalPageId=MYPORTAL_EMPLOYEE1parentPortalPageId=MYPORTAL_EMPLOYEEpartyId=adminnoConditionFind=NVIEW_SIZE_2=3VIEW_INDEX_2=1#portalPortletId=ListProduct')
 This is the url patched :portalPortletId is a parameter of tag 
 on-event-update-area
 javascript:ajaxUpdateAreas('hhh,/myportal/control/ggg,portalPortletId=ListProductportalPageId=MYPORTAL_EMPLOYEE1parentPortalPageId=MYPORTAL_EMPLOYEEpartyId=adminnoConditionFind=NVIEW_SIZE_2=3VIEW_INDEX_2=1#')

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Closed] (OFBIZ-4232) Agreement item product price should be display as per the currencyUomId set for respective agreement item.

2011-04-14 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4232?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-4232.
-


 Agreement item product price should be display as per the currencyUomId set 
 for respective agreement item.
 --

 Key: OFBIZ-4232
 URL: https://issues.apache.org/jira/browse/OFBIZ-4232
 Project: OFBiz
  Issue Type: Improvement
  Components: accounting
Reporter: Deepak Dixit
Assignee: Erwan de FERRIERES
Priority: Minor
 Fix For: SVN trunk

 Attachments: OFBIZ-4232.patch




--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (OFBIZ-4232) Agreement item product price should be display as per the currencyUomId set for respective agreement item.

2011-04-14 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4232?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES updated OFBIZ-4232:
--

Issue Type: Improvement  (was: Bug)

 Agreement item product price should be display as per the currencyUomId set 
 for respective agreement item.
 --

 Key: OFBIZ-4232
 URL: https://issues.apache.org/jira/browse/OFBIZ-4232
 Project: OFBiz
  Issue Type: Improvement
  Components: accounting
Reporter: Deepak Dixit
Assignee: Erwan de FERRIERES
Priority: Minor
 Fix For: SVN trunk

 Attachments: OFBIZ-4232.patch




--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Closed] (OFBIZ-4253) GeoData for Poland (file included)

2011-04-14 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4253?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-4253.
-

Resolution: Fixed

Done at rev 1092320
Thanks Seweryn. BTW I added the file's loading to ofbiz-component.

 GeoData for Poland (file included)
 --

 Key: OFBIZ-4253
 URL: https://issues.apache.org/jira/browse/OFBIZ-4253
 Project: OFBiz
  Issue Type: Improvement
  Components: framework
Affects Versions: SVN trunk
Reporter: Seweryn Niemiec
Assignee: Erwan de FERRIERES
Priority: Minor
  Labels: geodata,, poland,
 Fix For: SVN trunk

 Attachments: OFBIZ-4253_GeoData_for_Poland.patch

   Original Estimate: 1h
  Remaining Estimate: 1h

 I have created GeoData_PL.xml file with Polish provinces.
 {code:xml|title=GeoData_PL.xml}
 ?xml version=1.0 encoding=UTF-8?
 !--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
 distributed with this work for additional information
 regarding copyright ownership.  The ASF licenses this file
 to you under the Apache License, Version 2.0 (the
 License); you may not use this file except in compliance
 with the License.  You may obtain a copy of the License at
 http://www.apache.org/licenses/LICENSE-2.0
 Unless required by applicable law or agreed to in writing,
 software distributed under the License is distributed on an
 AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
 --
 entity-engine-xml
 Geo abbreviation=DŚ geoCode=DŚ geoId=PL-DŚ geoName=dolnośląskie 
 geoTypeId=STATE/
 Geo abbreviation=KP geoCode=KP geoId=PL-KP 
 geoName=kujawsko-pomorskie geoTypeId=STATE/
 Geo abbreviation=LB geoCode=LB geoId=PL-LB geoName=lubelskie 
 geoTypeId=STATE/
 Geo abbreviation=LS geoCode=LS geoId=PL-LS geoName=lubuskie 
 geoTypeId=STATE/
 Geo abbreviation=ŁD geoCode=ŁD geoId=PL-ŁD geoName=łódzkie 
 geoTypeId=STATE/
 Geo abbreviation=MP geoCode=MP geoId=PL-MP geoName=małopolskie 
 geoTypeId=STATE/
 Geo abbreviation=MZ geoCode=MZ geoId=PL-MZ geoName=mazowieckie 
 geoTypeId=STATE/
 Geo abbreviation=OP geoCode=OP geoId=PL-OP geoName=opolskie 
 geoTypeId=STATE/
 Geo abbreviation=PK geoCode=PK geoId=PL-PK geoName=podkarpackie 
 geoTypeId=STATE/
 Geo abbreviation=PL geoCode=PL geoId=PL-PL geoName=podlaskie 
 geoTypeId=STATE/
 Geo abbreviation=PM geoCode=PM geoId=PL-PM geoName=pomorskie 
 geoTypeId=STATE/
 Geo abbreviation=ŚL geoCode=ŚL geoId=PL-ŚL geoName=śląskie 
 geoTypeId=STATE/
 Geo abbreviation=ŚK geoCode=ŚK geoId=PL-ŚK 
 geoName=świętokrzyskie geoTypeId=STATE/
 Geo abbreviation=WM geoCode=WM geoId=PL-WM 
 geoName=warmińsko-mazurskie geoTypeId=STATE/
 Geo abbreviation=WP geoCode=WP geoId=PL-WP geoName=wielkopolskie 
 geoTypeId=STATE/
 Geo abbreviation=ZP geoCode=ZP geoId=PL-ZP 
 geoName=zachodniopomorskie geoTypeId=STATE/
 GeoAssoc geoId=POL geoIdTo=PL-DŚ geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-KP geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-LB geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-LS geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-ŁD geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-MP geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-MZ geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-OP geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-PK geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-PL geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-PM geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-ŚL geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-ŚK geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-WM geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-WP geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-ZP geoAssocTypeId=REGIONS/ 
 /entity-engine-xml
 {code}

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Assigned] (OFBIZ-4249) error in pagination target with on-event-update-area parameters

2011-04-13 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4249?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES reassigned OFBIZ-4249:
-

Assignee: Erwan de FERRIERES

 error in pagination target with on-event-update-area parameters
 ---

 Key: OFBIZ-4249
 URL: https://issues.apache.org/jira/browse/OFBIZ-4249
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk
Reporter: Gaudin Pierre
Assignee: Erwan de FERRIERES
 Attachments: MacroFormRenderer.java.patch


 In forms, when we use the tag on-event-update-area with parameters, in 
 certain case the parameters of the tag are not taken back in the links of 
 pagination.
 This is due to the fact that in certain case the url of pagination contains 
 an anchor at the end of the link and parameters of the tag 
 on-event-update-area  are added after this anchor.
 This patch corrects this problem by adding the parameters of the tag 
 on-event-update-area before parameter of the form and thus before those of 
 the anchor.
 This is the old url : portalPortletId is a parameter of tag 
 on-event-update-area
 javascript:ajaxUpdateAreas('hhh,/myportal/control/ggg,portalPageId=MYPORTAL_EMPLOYEE1parentPortalPageId=MYPORTAL_EMPLOYEEpartyId=adminnoConditionFind=NVIEW_SIZE_2=3VIEW_INDEX_2=1#portalPortletId=ListProduct')
 This is the url patched :portalPortletId is a parameter of tag 
 on-event-update-area
 javascript:ajaxUpdateAreas('hhh,/myportal/control/ggg,portalPortletId=ListProductportalPageId=MYPORTAL_EMPLOYEE1parentPortalPageId=MYPORTAL_EMPLOYEEpartyId=adminnoConditionFind=NVIEW_SIZE_2=3VIEW_INDEX_2=1#')

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Assigned] (OFBIZ-4253) GeoData for Poland (file included)

2011-04-13 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4253?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES reassigned OFBIZ-4253:
-

Assignee: Erwan de FERRIERES

 GeoData for Poland (file included)
 --

 Key: OFBIZ-4253
 URL: https://issues.apache.org/jira/browse/OFBIZ-4253
 Project: OFBiz
  Issue Type: Improvement
  Components: framework
Affects Versions: Release Branch 10.04
Reporter: Seweryn Niemiec
Assignee: Erwan de FERRIERES
Priority: Minor
  Labels: geodata,, poland,
   Original Estimate: 1h
  Remaining Estimate: 1h

 I have created GeoData_PL.xml file with Polish provinces.
 {code:xml|title=GeoData_PL.xml}
 ?xml version=1.0 encoding=UTF-8?
 !--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
 distributed with this work for additional information
 regarding copyright ownership.  The ASF licenses this file
 to you under the Apache License, Version 2.0 (the
 License); you may not use this file except in compliance
 with the License.  You may obtain a copy of the License at
 http://www.apache.org/licenses/LICENSE-2.0
 Unless required by applicable law or agreed to in writing,
 software distributed under the License is distributed on an
 AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
 --
 entity-engine-xml
 Geo abbreviation=DŚ geoCode=DŚ geoId=PL-DŚ geoName=dolnośląskie 
 geoTypeId=STATE/
 Geo abbreviation=KP geoCode=KP geoId=PL-KP 
 geoName=kujawsko-pomorskie geoTypeId=STATE/
 Geo abbreviation=LB geoCode=LB geoId=PL-LB geoName=lubelskie 
 geoTypeId=STATE/
 Geo abbreviation=LS geoCode=LS geoId=PL-LS geoName=lubuskie 
 geoTypeId=STATE/
 Geo abbreviation=ŁD geoCode=ŁD geoId=PL-ŁD geoName=łódzkie 
 geoTypeId=STATE/
 Geo abbreviation=MP geoCode=MP geoId=PL-MP geoName=małopolskie 
 geoTypeId=STATE/
 Geo abbreviation=MZ geoCode=MZ geoId=PL-MZ geoName=mazowieckie 
 geoTypeId=STATE/
 Geo abbreviation=OP geoCode=OP geoId=PL-OP geoName=opolskie 
 geoTypeId=STATE/
 Geo abbreviation=PK geoCode=PK geoId=PL-PK geoName=podkarpackie 
 geoTypeId=STATE/
 Geo abbreviation=PL geoCode=PL geoId=PL-PL geoName=podlaskie 
 geoTypeId=STATE/
 Geo abbreviation=PM geoCode=PM geoId=PL-PM geoName=pomorskie 
 geoTypeId=STATE/
 Geo abbreviation=ŚL geoCode=ŚL geoId=PL-ŚL geoName=śląskie 
 geoTypeId=STATE/
 Geo abbreviation=ŚK geoCode=ŚK geoId=PL-ŚK 
 geoName=świętokrzyskie geoTypeId=STATE/
 Geo abbreviation=WM geoCode=WM geoId=PL-WM 
 geoName=warmińsko-mazurskie geoTypeId=STATE/
 Geo abbreviation=WP geoCode=WP geoId=PL-WP geoName=wielkopolskie 
 geoTypeId=STATE/
 Geo abbreviation=ZP geoCode=ZP geoId=PL-ZP 
 geoName=zachodniopomorskie geoTypeId=STATE/
 GeoAssoc geoId=POL geoIdTo=PL-DŚ geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-KP geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-LB geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-LS geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-ŁD geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-MP geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-MZ geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-OP geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-PK geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-PL geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-PM geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-ŚL geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-ŚK geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-WM geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-WP geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-ZP geoAssocTypeId=REGIONS/ 
 /entity-engine-xml
 {code}

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (OFBIZ-4253) GeoData for Poland (file included)

2011-04-13 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4253?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES updated OFBIZ-4253:
--

Affects Version/s: (was: Release Branch 10.04)
   SVN trunk
Fix Version/s: SVN trunk

Hi Seweryn,
I will commit this only in trunk, as the release branch only gets bug 
corrections, and no new functionalities.

Cheers,

 GeoData for Poland (file included)
 --

 Key: OFBIZ-4253
 URL: https://issues.apache.org/jira/browse/OFBIZ-4253
 Project: OFBiz
  Issue Type: Improvement
  Components: framework
Affects Versions: SVN trunk
Reporter: Seweryn Niemiec
Assignee: Erwan de FERRIERES
Priority: Minor
  Labels: geodata,, poland,
 Fix For: SVN trunk

   Original Estimate: 1h
  Remaining Estimate: 1h

 I have created GeoData_PL.xml file with Polish provinces.
 {code:xml|title=GeoData_PL.xml}
 ?xml version=1.0 encoding=UTF-8?
 !--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
 distributed with this work for additional information
 regarding copyright ownership.  The ASF licenses this file
 to you under the Apache License, Version 2.0 (the
 License); you may not use this file except in compliance
 with the License.  You may obtain a copy of the License at
 http://www.apache.org/licenses/LICENSE-2.0
 Unless required by applicable law or agreed to in writing,
 software distributed under the License is distributed on an
 AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
 --
 entity-engine-xml
 Geo abbreviation=DŚ geoCode=DŚ geoId=PL-DŚ geoName=dolnośląskie 
 geoTypeId=STATE/
 Geo abbreviation=KP geoCode=KP geoId=PL-KP 
 geoName=kujawsko-pomorskie geoTypeId=STATE/
 Geo abbreviation=LB geoCode=LB geoId=PL-LB geoName=lubelskie 
 geoTypeId=STATE/
 Geo abbreviation=LS geoCode=LS geoId=PL-LS geoName=lubuskie 
 geoTypeId=STATE/
 Geo abbreviation=ŁD geoCode=ŁD geoId=PL-ŁD geoName=łódzkie 
 geoTypeId=STATE/
 Geo abbreviation=MP geoCode=MP geoId=PL-MP geoName=małopolskie 
 geoTypeId=STATE/
 Geo abbreviation=MZ geoCode=MZ geoId=PL-MZ geoName=mazowieckie 
 geoTypeId=STATE/
 Geo abbreviation=OP geoCode=OP geoId=PL-OP geoName=opolskie 
 geoTypeId=STATE/
 Geo abbreviation=PK geoCode=PK geoId=PL-PK geoName=podkarpackie 
 geoTypeId=STATE/
 Geo abbreviation=PL geoCode=PL geoId=PL-PL geoName=podlaskie 
 geoTypeId=STATE/
 Geo abbreviation=PM geoCode=PM geoId=PL-PM geoName=pomorskie 
 geoTypeId=STATE/
 Geo abbreviation=ŚL geoCode=ŚL geoId=PL-ŚL geoName=śląskie 
 geoTypeId=STATE/
 Geo abbreviation=ŚK geoCode=ŚK geoId=PL-ŚK 
 geoName=świętokrzyskie geoTypeId=STATE/
 Geo abbreviation=WM geoCode=WM geoId=PL-WM 
 geoName=warmińsko-mazurskie geoTypeId=STATE/
 Geo abbreviation=WP geoCode=WP geoId=PL-WP geoName=wielkopolskie 
 geoTypeId=STATE/
 Geo abbreviation=ZP geoCode=ZP geoId=PL-ZP 
 geoName=zachodniopomorskie geoTypeId=STATE/
 GeoAssoc geoId=POL geoIdTo=PL-DŚ geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-KP geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-LB geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-LS geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-ŁD geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-MP geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-MZ geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-OP geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-PK geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-PL geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-PM geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-ŚL geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-ŚK geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-WM geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-WP geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-ZP geoAssocTypeId=REGIONS/ 
 /entity-engine-xml
 {code}

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (OFBIZ-4253) GeoData for Poland (file included)

2011-04-13 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-4253?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13019411#comment-13019411
 ] 

Erwan de FERRIERES commented on OFBIZ-4253:
---

Sure, thanks Adrian for telling  it !

 GeoData for Poland (file included)
 --

 Key: OFBIZ-4253
 URL: https://issues.apache.org/jira/browse/OFBIZ-4253
 Project: OFBiz
  Issue Type: Improvement
  Components: framework
Affects Versions: SVN trunk
Reporter: Seweryn Niemiec
Assignee: Erwan de FERRIERES
Priority: Minor
  Labels: geodata,, poland,
 Fix For: SVN trunk

   Original Estimate: 1h
  Remaining Estimate: 1h

 I have created GeoData_PL.xml file with Polish provinces.
 {code:xml|title=GeoData_PL.xml}
 ?xml version=1.0 encoding=UTF-8?
 !--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
 distributed with this work for additional information
 regarding copyright ownership.  The ASF licenses this file
 to you under the Apache License, Version 2.0 (the
 License); you may not use this file except in compliance
 with the License.  You may obtain a copy of the License at
 http://www.apache.org/licenses/LICENSE-2.0
 Unless required by applicable law or agreed to in writing,
 software distributed under the License is distributed on an
 AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
 --
 entity-engine-xml
 Geo abbreviation=DŚ geoCode=DŚ geoId=PL-DŚ geoName=dolnośląskie 
 geoTypeId=STATE/
 Geo abbreviation=KP geoCode=KP geoId=PL-KP 
 geoName=kujawsko-pomorskie geoTypeId=STATE/
 Geo abbreviation=LB geoCode=LB geoId=PL-LB geoName=lubelskie 
 geoTypeId=STATE/
 Geo abbreviation=LS geoCode=LS geoId=PL-LS geoName=lubuskie 
 geoTypeId=STATE/
 Geo abbreviation=ŁD geoCode=ŁD geoId=PL-ŁD geoName=łódzkie 
 geoTypeId=STATE/
 Geo abbreviation=MP geoCode=MP geoId=PL-MP geoName=małopolskie 
 geoTypeId=STATE/
 Geo abbreviation=MZ geoCode=MZ geoId=PL-MZ geoName=mazowieckie 
 geoTypeId=STATE/
 Geo abbreviation=OP geoCode=OP geoId=PL-OP geoName=opolskie 
 geoTypeId=STATE/
 Geo abbreviation=PK geoCode=PK geoId=PL-PK geoName=podkarpackie 
 geoTypeId=STATE/
 Geo abbreviation=PL geoCode=PL geoId=PL-PL geoName=podlaskie 
 geoTypeId=STATE/
 Geo abbreviation=PM geoCode=PM geoId=PL-PM geoName=pomorskie 
 geoTypeId=STATE/
 Geo abbreviation=ŚL geoCode=ŚL geoId=PL-ŚL geoName=śląskie 
 geoTypeId=STATE/
 Geo abbreviation=ŚK geoCode=ŚK geoId=PL-ŚK 
 geoName=świętokrzyskie geoTypeId=STATE/
 Geo abbreviation=WM geoCode=WM geoId=PL-WM 
 geoName=warmińsko-mazurskie geoTypeId=STATE/
 Geo abbreviation=WP geoCode=WP geoId=PL-WP geoName=wielkopolskie 
 geoTypeId=STATE/
 Geo abbreviation=ZP geoCode=ZP geoId=PL-ZP 
 geoName=zachodniopomorskie geoTypeId=STATE/
 GeoAssoc geoId=POL geoIdTo=PL-DŚ geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-KP geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-LB geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-LS geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-ŁD geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-MP geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-MZ geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-OP geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-PK geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-PL geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-PM geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-ŚL geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-ŚK geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-WM geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-WP geoAssocTypeId=REGIONS/
 GeoAssoc geoId=POL geoIdTo=PL-ZP geoAssocTypeId=REGIONS/ 
 /entity-engine-xml
 {code}

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (OFBIZ-4239) The framework/base tests fail

2011-04-04 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-4239?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13015368#comment-13015368
 ] 

Erwan de FERRIERES commented on OFBIZ-4239:
---

there is a failure from this test :

{code}
   [java] 2011-04-04 10:19:26,102 (main) [   TestRunContainer.java:175:INFO ] 
[JUNIT]  FAILURES  
[JUNIT]
 [java] 2011-04-04 10:19:26,102 (main) [   TestRunContainer.java:182:INFO ] 
-- testExpire(org.ofbiz.base.util.cache.test.UtilCacheTests): empty
 [java] 2011-04-04 10:19:26,103 (main) [   TestRunContainer.java:184:INFO ] 
junit.framework.AssertionFailedError: empty
 [java] at junit.framework.Assert.fail(Assert.java:47)
 [java] at junit.framework.Assert.assertTrue(Assert.java:20)
 [java] at 
org.ofbiz.base.util.cache.test.UtilCacheTests.testExpire(UtilCacheTests.java:410)
 [java] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 [java] at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
 [java] at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
 [java] at java.lang.reflect.Method.invoke(Method.java:597)
 [java] at junit.framework.TestCase.runTest(TestCase.java:154)
 [java] at junit.framework.TestCase.runBare(TestCase.java:127)
 [java] at junit.framework.TestResult$1.protect(TestResult.java:106)
 [java] at junit.framework.TestResult.runProtected(TestResult.java:124)
 [java] at junit.framework.TestResult.run(TestResult.java:109)
 [java] at junit.framework.TestCase.run(TestCase.java:118)
 [java] at junit.framework.TestSuite.runTest(TestSuite.java:208)
 [java] at junit.framework.TestSuite.run(TestSuite.java:203)
 [java] at junit.framework.TestSuite.runTest(TestSuite.java:208)
 [java] at junit.framework.TestSuite.run(TestSuite.java:203)
 [java] at 
org.ofbiz.testtools.TestRunContainer.start(TestRunContainer.java:146)
 [java] at 
org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java:231)
 [java] at org.ofbiz.base.start.Start.startStartLoaders(Start.java:247)
 [java] at org.ofbiz.base.start.Start.start(Start.java:226)
 [java] at org.ofbiz.base.start.Start.main(Start.java:70)
 [java] 
{code}


 The framework/base tests fail
 -

 Key: OFBIZ-4239
 URL: https://issues.apache.org/jira/browse/OFBIZ-4239
 Project: OFBiz
  Issue Type: Test
  Components: framework
Affects Versions: SVN trunk
Reporter: Jacques Le Roux
Priority: Trivial
 Fix For: SVN trunk


 Thanks to Adrian's explanation in http://markmail.org/message/ihpdviifcnmk2mhz
 {quote}
 1. The framework/base component unit tests ran successfully.
 2. A new testing framework was introduced and that framework skipped the 
 framework/base unit tests.
 3. Over time, changes were made to framework/base code that caused the 
 tests to fail, but no one noticed because the tests were not being run.
 4. Rev 1085735 fixed the issue that was preventing the framework/base 
 tests from being run.
 5. Now the framework/base tests run, but they fail due to #3.
 {quote}

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Assigned] (OFBIZ-4232) Agreement item product price should be display as per the currencyUomId set for respective agreement item.

2011-03-28 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4232?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES reassigned OFBIZ-4232:
-

Assignee: Erwan de FERRIERES

 Agreement item product price should be display as per the currencyUomId set 
 for respective agreement item.
 --

 Key: OFBIZ-4232
 URL: https://issues.apache.org/jira/browse/OFBIZ-4232
 Project: OFBiz
  Issue Type: Bug
  Components: accounting
Reporter: Deepak Dixit
Assignee: Erwan de FERRIERES
Priority: Minor
 Fix For: Release Branch 10.04, SVN trunk

 Attachments: OFBIZ-4232.patch




--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (OFBIZ-3391) error in JUnit reports generation

2011-03-28 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-3391?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13012067#comment-13012067
 ] 

Erwan de FERRIERES commented on OFBIZ-3391:
---

{code}
[junitreport] the file 
/home/erwan/workspace/Apache_OFBiz/ofbiz/runtime/logs/test-results/TESTS-TestSuites.xml
 is not a valid testsuite XML document
[junitreport] Processing 
/home/erwan/workspace/Apache_OFBiz/ofbiz/runtime/logs/test-results/TESTS-TestSuites.xml
 to /tmp/null1211551636
[junitreport] Loading stylesheet 
jar:file:/usr/share/ant/lib/ant-junit.jar!/org/apache/tools/ant/taskdefs/optional/junit/xsl/junit-frames.xsl
{code}

error message when running the junitreport task

 error in JUnit reports generation
 -

 Key: OFBIZ-3391
 URL: https://issues.apache.org/jira/browse/OFBIZ-3391
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk
Reporter: Erwan de FERRIERES
 Fix For: SVN trunk


 the junitreport task is generating bad links for displaying the tests result.
 Steps to reproduce : 
 # ant run-install then ant run-tests
 # open in a  browser the runtime/logs/test-results/html/index.html file
 # click on the all tests link, wich is displaying 135
 # then try to get into a class or a test name.
 It should display an error message, saying that there is no file. 
 The link is calling file:///0_accountingtests.html#accounting-tests-data-load 
 but should be file://path to ofbiz 
 instance/runtime/logs/test-results/html/0_accountingtests.html#accounting-tests-data-load
 When looking a the generated html files, there is an unneeded  / at the 
 beginning of the file :
 {code}
 tda href=/0_accountingtests.htmlaccountingtests/a/tdtda 
 name=auto-accounting-transaction-tests.testAcctgTransOnPaymentSentToSupplier/aa
  href=/0_accountingtes
 {code}
 which should be :
 {code}
 tda href=0_accountingtests.htmlaccountingtests/a/tdtda 
 name=auto-accounting-transaction-tests.testAcctgTransOnPaymentSentToSupplier/aa
  href=0_accountingtes
 {code}

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Closed] (OFBIZ-4220) Current implementation of UtilCache has a memory leak if maxInMemory is set

2011-03-24 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4220?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES closed OFBIZ-4220.
-


 Current implementation of UtilCache has a memory leak if maxInMemory is set
 ---

 Key: OFBIZ-4220
 URL: https://issues.apache.org/jira/browse/OFBIZ-4220
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk
 Environment: ALL
Reporter: Philippe Mouawad
Assignee: Erwan de FERRIERES
Priority: Critical
  Labels: CACHE, LEAK, MEMORY
 Fix For: SVN trunk

 Attachments: TestMemoryLeak.java, leak.png, patch-4220.patch


 If maxInMemory is set on caches, then current implementation will leak if 
 many puts are done in cache.
 We made some load testing and current implementation ends very rapidly in an 
 OutOfMemory.
 Philippe Mouawad
 http://www.ubik-ingenierie.com

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Assigned] (OFBIZ-4220) Current implementation of UtilCache has a memory leak if maxInMemory is set

2011-03-22 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4220?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES reassigned OFBIZ-4220:
-

Assignee: Erwan de FERRIERES

 Current implementation of UtilCache has a memory leak if maxInMemory is set
 ---

 Key: OFBIZ-4220
 URL: https://issues.apache.org/jira/browse/OFBIZ-4220
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk
 Environment: ALL
Reporter: Philippe Mouawad
Assignee: Erwan de FERRIERES
Priority: Critical
  Labels: CACHE, LEAK, MEMORY
 Attachments: TestMemoryLeak.java, leak.png, patch-4220.patch


 If maxInMemory is set on caches, then current implementation will leak if 
 many puts are done in cache.
 We made some load testing and current implementation ends very rapidly in an 
 OutOfMemory.
 Philippe Mouawad
 http://www.ubik-ingenierie.com

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (OFBIZ-4220) Current implementation of UtilCache has a memory leak if maxInMemory is set

2011-03-22 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-4220?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13009606#comment-13009606
 ] 

Erwan de FERRIERES commented on OFBIZ-4220:
---

No problem. I will work with your patch directly. If later you think this would 
need a lib migration you tell me.

Anyway, if a migration is needed or benefits the project, maybe switching to 
guava http://code.google.com/p/guava-libraries/ should be a better idea, as the 
1.1 version is integrated in it.

cheers,

 Current implementation of UtilCache has a memory leak if maxInMemory is set
 ---

 Key: OFBIZ-4220
 URL: https://issues.apache.org/jira/browse/OFBIZ-4220
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk
 Environment: ALL
Reporter: Philippe Mouawad
Assignee: Erwan de FERRIERES
Priority: Critical
  Labels: CACHE, LEAK, MEMORY
 Attachments: TestMemoryLeak.java, leak.png, patch-4220.patch


 If maxInMemory is set on caches, then current implementation will leak if 
 many puts are done in cache.
 We made some load testing and current implementation ends very rapidly in an 
 OutOfMemory.
 Philippe Mouawad
 http://www.ubik-ingenierie.com

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (OFBIZ-4220) Current implementation of UtilCache has a memory leak if maxInMemory is set

2011-03-21 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-4220?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13009164#comment-13009164
 ] 

Erwan de FERRIERES commented on OFBIZ-4220:
---

Hi Philippe,

I just saw there is also a newer lib version at 
http://code.google.com/p/concurrentlinkedhashmap/.
Is there any point in updating too ?

Change log:
This version provides incremental improvements based on user feedback.

* Fixes  issue 20 , which identified a race condition when updating a 
value's weight.
* Reduces memory usage by optimizing the buffering of recency operations.
* Reduces read contention by improving how a recency buffer is selected.
* Strict LRU reordering by a more intelligent draining algorithm.
* Support for limiting the capacity through a plug-in strategy. 

 Current implementation of UtilCache has a memory leak if maxInMemory is set
 ---

 Key: OFBIZ-4220
 URL: https://issues.apache.org/jira/browse/OFBIZ-4220
 Project: OFBiz
  Issue Type: Bug
  Components: framework
Affects Versions: SVN trunk
 Environment: ALL
Reporter: Philippe Mouawad
Priority: Critical
  Labels: CACHE, LEAK, MEMORY
 Attachments: TestMemoryLeak.java, leak.png, patch-4220.patch


 If maxInMemory is set on caches, then current implementation will leak if 
 many puts are done in cache.
 We made some load testing and current implementation ends very rapidly in an 
 OutOfMemory.
 Philippe Mouawad
 http://www.ubik-ingenierie.com

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] Commented: (OFBIZ-4211) [GSoC] code/test separation

2011-03-11 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-4211?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13005592#comment-13005592
 ] 

Erwan de FERRIERES commented on OFBIZ-4211:
---

no problem, I'm starting a thread right now.

 [GSoC] code/test separation
 ---

 Key: OFBIZ-4211
 URL: https://issues.apache.org/jira/browse/OFBIZ-4211
 Project: OFBiz
  Issue Type: Improvement
Affects Versions: SVN trunk
Reporter: Erwan de FERRIERES
Priority: Minor
  Labels: gsoc2011, mentor

 One for the maven practices is to separate code and test code source. We are 
 not using maven with OFBiz, but this separation can be beneficial.
 {code}
 src/main/java Application/Library sources
 src/test/java Test sources
 {code}
 http://stackoverflow.com/questions/2388253/separation-of-junit-classes-into-special-test-package

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] Created: (OFBIZ-4211) [GSoC] code/test separation

2011-03-10 Thread Erwan de FERRIERES (JIRA)
[GSoC] code/test separation
---

 Key: OFBIZ-4211
 URL: https://issues.apache.org/jira/browse/OFBIZ-4211
 Project: OFBiz
  Issue Type: Improvement
Affects Versions: SVN trunk
Reporter: Erwan de FERRIERES
Priority: Minor


One for the maven practices is to separate code and test code source. We are 
not using maven with OFBiz, but this separation can be beneficial.

{code}
src/main/java   Application/Library sources
src/test/java   Test sources
{code}

http://stackoverflow.com/questions/2388253/separation-of-junit-classes-into-special-test-package


--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] Commented: (OFBIZ-4189) [GSOC] Pure webdriver integration in OFBiz

2011-02-28 Thread Erwan de FERRIERES (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-4189?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13000316#comment-13000316
 ] 

Erwan de FERRIERES commented on OFBIZ-4189:
---

quick intro : 
http://www.slideshare.net/AutomatedTester/selenium-2-the-future-of-selenium-is-now

 [GSOC] Pure webdriver integration in OFBiz
 --

 Key: OFBIZ-4189
 URL: https://issues.apache.org/jira/browse/OFBIZ-4189
 Project: OFBiz
  Issue Type: Improvement
  Components: framework
Reporter: Erwan de FERRIERES
Priority: Trivial
  Labels: gsoc, gsoc2011, mentor

 This issue will be completed from time to time, with the expected results for 
 webdriver in OFBiz.
 basically, it's using webdriver (selenium 2.0) to add functional testing in 
 OFBiz, and writing tests directly in java.

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Reopened: (OFBIZ-4200) The New Flat Grey theme hides the right part of large screens in Webtools/Entity Maintenance

2011-02-25 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4200?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES reopened OFBIZ-4200:
---


I've got no horizontal scrollbar

 The New Flat Grey theme hides the right part of large screens in 
 Webtools/Entity Maintenance
 

 Key: OFBIZ-4200
 URL: https://issues.apache.org/jira/browse/OFBIZ-4200
 Project: OFBiz
  Issue Type: Sub-task
  Components: ALL APPLICATIONS
Reporter: Jacques Le Roux
Assignee: Adrian Crum
 Fix For: SVN trunk

 Attachments: OFBIZ-4199.png


 The New Flat Grey theme hides the right part of large screens in 
 Webtools/Entity Maintenance when looking at entities values

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Updated: (OFBIZ-4200) The New Flat Grey theme hides the right part of large screens in Webtools/Entity Maintenance

2011-02-25 Thread Erwan de FERRIERES (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-4200?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erwan de FERRIERES updated OFBIZ-4200:
--

Attachment: OFBIZ-4199.png

 The New Flat Grey theme hides the right part of large screens in 
 Webtools/Entity Maintenance
 

 Key: OFBIZ-4200
 URL: https://issues.apache.org/jira/browse/OFBIZ-4200
 Project: OFBiz
  Issue Type: Sub-task
  Components: ALL APPLICATIONS
Reporter: Jacques Le Roux
Assignee: Adrian Crum
 Fix For: SVN trunk

 Attachments: OFBIZ-4199.png


 The New Flat Grey theme hides the right part of large screens in 
 Webtools/Entity Maintenance when looking at entities values

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




  1   2   3   4   5   6   7   >