[jira] [Commented] (OFBIZ-4430) Replace OFBiz HttpClient either by org.apache.commons.httpclient.HttpClient or rewrite it using NIO

2011-09-21 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4430:
---

Found the Apache HttpClient has been in SVN in 8/2009 last upated by Adrian 
this year.
So I will bow out since I have already converted my SVN to nio and my code will 
not work on the Ofbiz SVN

> Replace OFBiz HttpClient either by org.apache.commons.httpclient.HttpClient 
> or rewrite it using NIO
> ---
>
> Key: OFBIZ-4430
> URL: https://issues.apache.org/jira/browse/OFBIZ-4430
> Project: OFBiz
>  Issue Type: Improvement
>  Components: framework
>Affects Versions: SVN trunk
>Reporter: Jacques Le Roux
> Fix For: SVN trunk
>
>
> The main problem with current implementation is that it does not handle 
> connections release. You must rely on the SO to release them (timeout).
> Related thread: http://markmail.org/message/qgmdgqqxakio6fja

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




[jira] [Commented] (OFBIZ-4430) Replace OFBiz HttpClient either by org.apache.commons.httpclient.HttpClient or rewrite it using NIO

2011-09-21 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4430:
---

LOL punctuation does make a difference
Not a working solution. Working on a working solution.

> Replace OFBiz HttpClient either by org.apache.commons.httpclient.HttpClient 
> or rewrite it using NIO
> ---
>
> Key: OFBIZ-4430
> URL: https://issues.apache.org/jira/browse/OFBIZ-4430
> Project: OFBiz
>  Issue Type: Improvement
>  Components: framework
>Affects Versions: SVN trunk
>Reporter: Jacques Le Roux
> Fix For: SVN trunk
>
>
> The main problem with current implementation is that it does not handle 
> connections release. You must rely on the SO to release them (timeout).
> Related thread: http://markmail.org/message/qgmdgqqxakio6fja

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




[jira] [Commented] (OFBIZ-4430) Replace OFBiz HttpClient either by org.apache.commons.httpclient.HttpClient or rewrite it using NIO

2011-09-20 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4430:
---

yup that was to easy working on solution

> Replace OFBiz HttpClient either by org.apache.commons.httpclient.HttpClient 
> or rewrite it using NIO
> ---
>
> Key: OFBIZ-4430
> URL: https://issues.apache.org/jira/browse/OFBIZ-4430
> Project: OFBiz
>  Issue Type: Improvement
>  Components: framework
>Affects Versions: SVN trunk
>Reporter: Jacques Le Roux
> Fix For: SVN trunk
>
>
> The main problem with current implementation is that it does not handle 
> connections release. You must rely on the SO to release them (timeout).
> Related thread: http://markmail.org/message/qgmdgqqxakio6fja

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




[jira] [Commented] (OFBIZ-4430) Replace OFBiz HttpClient either by org.apache.commons.httpclient.HttpClient or rewrite it using NIO

2011-09-19 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4430:
---

in current httpClient.sendHttpRequest()
   while ((line = post.readLine()) != null) {
if (Debug.verboseOn() || debug) Debug.log("[HttpClient] : " + 
line, module);
buf.append(line);
if (lineFeed) {
buf.append("\n");
}
}
//have to set org.ofbiz.base.util.URLConnector.close() to protected.
//add the following line. 
con.close();//sent request got back response so close connection.


> Replace OFBiz HttpClient either by org.apache.commons.httpclient.HttpClient 
> or rewrite it using NIO
> ---
>
> Key: OFBIZ-4430
> URL: https://issues.apache.org/jira/browse/OFBIZ-4430
> Project: OFBiz
>  Issue Type: Improvement
>  Components: framework
>Affects Versions: SVN trunk
>Reporter: Jacques Le Roux
> Fix For: SVN trunk
>
>
> The main problem with current implementation is that it does not handle 
> connections release. You must rely on the SO to release them (timeout).
> Related thread: http://markmail.org/message/qgmdgqqxakio6fja

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




[jira] [Commented] (OFBIZ-4430) Replace OFBiz HttpClient either by org.apache.commons.httpclient.HttpClient or rewrite it using NIO

2011-09-19 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4430:
---

Quick review there are two possible solutions with current code.
1)modify  org.ofbiz.base.util.URLConnector to handle the close automatically.
2)Call org.ofbiz.base.util.URLConnector.close in HttpClient. 
The way Commons does this is when the stream is closed the connector is closed.
will look at it again shortly to see if I agree with what I just wrote.

> Replace OFBiz HttpClient either by org.apache.commons.httpclient.HttpClient 
> or rewrite it using NIO
> ---
>
> Key: OFBIZ-4430
> URL: https://issues.apache.org/jira/browse/OFBIZ-4430
> Project: OFBiz
>  Issue Type: Improvement
>  Components: framework
>Affects Versions: SVN trunk
>Reporter: Jacques Le Roux
> Fix For: SVN trunk
>
>
> The main problem with current implementation is that it does not handle 
> connections release. You must rely on the SO to release them (timeout).
> Related thread: http://markmail.org/message/qgmdgqqxakio6fja

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




[jira] [Commented] (OFBIZ-4430) Replace OFBiz HttpClient either by org.apache.commons.httpclient.HttpClient or rewrite it using NIO

2011-09-19 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4430:
---

My suggestion to use NIO was more for all of Ofbiz.
I don't see adding another package that has the same basic function as the 
java.net just for HttpClient.
So will review the commons package to see what can be down with current 
httpClient.

> Replace OFBiz HttpClient either by org.apache.commons.httpclient.HttpClient 
> or rewrite it using NIO
> ---
>
> Key: OFBIZ-4430
> URL: https://issues.apache.org/jira/browse/OFBIZ-4430
> Project: OFBiz
>  Issue Type: Improvement
>  Components: framework
>Affects Versions: SVN trunk
>Reporter: Jacques Le Roux
> Fix For: SVN trunk
>
>
> The main problem with current implementation is that it does not handle 
> connections release. You must rely on the SO to release them (timeout).
> Related thread: http://markmail.org/message/qgmdgqqxakio6fja

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




[jira] [Commented] (OFBIZ-3403) webtools xml data export to browser not working

2011-09-16 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-3403:
---

Firefox will not show xml have to do view source.

I suggest an option to create a zip file and download.

> webtools xml data export to browser not working
> ---
>
> Key: OFBIZ-3403
> URL: https://issues.apache.org/jira/browse/OFBIZ-3403
> Project: OFBiz
>  Issue Type: Bug
>  Components: framework
>Affects Versions: SVN trunk
>Reporter: chris snow
>Assignee: Jacques Le Roux
>
> Assumption, demo data is installed.
> Steps:
> 1) Select webtools
> 2) Select XML Data Export
> 3) Select "OR to Browser"
> 4) Select an entity
> 5) Click export
> 6) Click Click Here to Get Data (or save to file)
> Empty screen is shown.
> In the console, the following is seen:
> 2010-01-10 08:31:08,437 (TP-Processor8) [ RequestHandler.java:733:INFO ] 
> Rendering View [xmldsrawdump], sessionId=6B8CA710E0CBF49D7E0ED5169918187F.jvm1
> 2010-01-10 08:31:08,467 (TP-Processor8) [TransactionUtil.java:269:WARN ] 
> [TransactionUtil.commit] Not committing transaction, status is No Transaction 
> (6)
> 2010-01-10 08:31:08,482 (TP-Processor8) [ ControlServlet.java:321:INFO ] 
> [[[xmldsrawdump] Request Done- total:0.183,since last([xmldsrawdump] 
> Re...):0.183]]

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




[jira] [Commented] (OFBIZ-4412) Set initial ecommerce Locale/Currency based on mount point specified in specialpurpose/ecommerce/ofbiz-component.xm

2011-09-14 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4412:
---

Goggle search is pretty intelligent
from my logs it looks like it changes the locale before reading the page.

> Set initial ecommerce Locale/Currency based on mount point specified in 
> specialpurpose/ecommerce/ofbiz-component.xm
> ---
>
> Key: OFBIZ-4412
> URL: https://issues.apache.org/jira/browse/OFBIZ-4412
> Project: OFBiz
>  Issue Type: Improvement
>  Components: specialpurpose/ecommerce
>Affects Versions: Release Branch 10.04, Release Branch 11.04, SVN trunk
> Environment: Not specific
>Reporter: mz4wheeler
>Priority: Trivial
>  Labels: patch
> Fix For: Release Branch 10.04, Release Branch 11.04, SVN trunk
>
> Attachments: OFBIZ-4412.patch
>
>   Original Estimate: 2h
>  Remaining Estimate: 2h
>
> Using the specified patch, it is now possible to set a users initial Locale 
> (and even currency) based on the webapp mount point.  This works with a 
> single store, and does not require the use virtual hosts.  This is especially 
> useful when setting up sitemap.xml, which allows crawlers (like google) to 
> correctly locate and traverse products and services in multiple languages.
> Here is an example where "ecomclone" has been modified to Locale=fr with a 
> mount point of "/fr".
> specialpurpose/ecommerce/ofbiz-component.xml:
> 
>  title="eCommerce"
> server="default-server"
> location="webapp/ecommerce"
> mount-point="/ecommerce"
> app-bar-display="false">
> 
>  title="eCommerce Clone"
> server="default-server"
> location="webapp/ecomclone"
> mount-point="/fr"<--- SPECIFY MOUNT
> app-bar-display="false">
>   <--- SPECIFY LOCALE
> 
> The below sitemap.xml would allow products with the "/fr" path to be indexed 
> in french.
> 
> http://www.sitemaps.org/schemas/sitemap/0.9";>
> http://ofbizsite.com/ecommerce/products/10002/p_1001TANGRAMPUZ
> http://ofbizsite.com/fr/products/10002/p_1001TANGRAMPUZ
> 
> The patch:
> The attached patch modifies setDefaultStoreSettings in ProductEvents.java, 
> which is called once during the initial session creation.  
> After a user enters the URL, they are still free to modify the language, as 
> long as the page supports it (like the default demo store).  The patch also 
> allows the Currency to be forced as well, and it does appear to work, but 
> should be more throughly tested.
> Although this patch bypasses the requirement for multiple stores, there may 
> be issues with other aspects of the store, like emails.  However, it is no 
> different than a user who enters your English-based ecommerce store, selects 
> "french", and attempts a checkout.

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




[jira] [Commented] (OFBIZ-3894) Refactor Email handling

2011-09-12 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-3894:
---

the patterned used to date is to rename the old entity create a new entity with 
the new fields or without previous fields, the use simple-methods or java with 
delegate to migrate the data.

> Refactor Email handling
> ---
>
> Key: OFBIZ-3894
> URL: https://issues.apache.org/jira/browse/OFBIZ-3894
> Project: OFBiz
>  Issue Type: Improvement
>  Components: ALL COMPONENTS
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>Priority: Minor
> Fix For: SVN trunk
>
> Attachments: OFBIZ-3894.patch
>
>   Original Estimate: 1,344h
>  Remaining Estimate: 1,344h
>
> with the addition of the Website for each component 
> 1) create product store for Order entry, or use the B2C product store.
> 2) move the email  widgets from ecommerce to order compontent.
> 3) modify the seed data so that Order entry has it own emails from order 
> component.this would be to add emails to 
> note: as I go through the different items  this is turning out to be a bigger 
> project than I first anticipated.
> so consider this so far just ideas.
> Maybe break down in to small tasks as I have time to do something.

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




[jira] [Commented] (OFBIZ-3169) Implementation of Budget functionality.

2011-09-12 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-3169:
---

EmplPosition rel EMPL_POS_BGTITM 
is uses to Authorize the position when the BudgetStatus for the Budget is set 
to approved.
This is done with a BudgetType =OPERATING_BUDGET 
Though the Logic for this is in HR, the logic for the when the Budget is 
approved an ECA is triggered that would Call the HR logic.

> Implementation of Budget functionality.
> ---
>
> Key: OFBIZ-3169
> URL: https://issues.apache.org/jira/browse/OFBIZ-3169
> Project: OFBiz
>  Issue Type: New Feature
>  Components: accounting
>Affects Versions: SVN trunk
>Reporter: ashish tiwari
>Priority: Minor
> Fix For: SVN trunk
>
>
> This is regarding Budget functionality implementation in OFBiz. I have found 
> that enitities related to budget functionality are present in OFbiz but I
>  was not able to find the functional implementation for the same. So I needed 
> to confirm is this functionality implemented or not.
> In case it is not I am interested in implementing the same in OFbiz. I have 
> found a general flow of the budget process and i am mentioning the steps in 
> this mail. So please go throurgh the steps and you are requested to give in 
> your comments regarding the same.
> 1. Request for the budget is generated by the Deptartment.
> 2. Budget request is submitted to board of directors/higher officials for 
> approval.
> 3. Budget request is either approved or rejected.
> 4. If the budget is approved it is created as annual budget(Total cost in the 
> budget is alloted to Department).
> 5. Now item wise budget is allocated to different items by Department Head.
> 6. Profits achieved can be calculated on the basis of fiscal years for a 
> budget by compairing the proposed budget and the actual budget.
> 7. All the data regarding the budgets created are maintained.
> Waiting for your comments.

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




[jira] [Commented] (OFBIZ-3169) Implementation of Budget functionality.

2011-09-12 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-3169:
---

What is the progress on this?

> Implementation of Budget functionality.
> ---
>
> Key: OFBIZ-3169
> URL: https://issues.apache.org/jira/browse/OFBIZ-3169
> Project: OFBiz
>  Issue Type: New Feature
>  Components: accounting
>Affects Versions: SVN trunk
>Reporter: ashish tiwari
>Priority: Minor
> Fix For: SVN trunk
>
>
> This is regarding Budget functionality implementation in OFBiz. I have found 
> that enitities related to budget functionality are present in OFbiz but I
>  was not able to find the functional implementation for the same. So I needed 
> to confirm is this functionality implemented or not.
> In case it is not I am interested in implementing the same in OFbiz. I have 
> found a general flow of the budget process and i am mentioning the steps in 
> this mail. So please go throurgh the steps and you are requested to give in 
> your comments regarding the same.
> 1. Request for the budget is generated by the Deptartment.
> 2. Budget request is submitted to board of directors/higher officials for 
> approval.
> 3. Budget request is either approved or rejected.
> 4. If the budget is approved it is created as annual budget(Total cost in the 
> budget is alloted to Department).
> 5. Now item wise budget is allocated to different items by Department Head.
> 6. Profits achieved can be calculated on the basis of fiscal years for a 
> budget by compairing the proposed budget and the actual budget.
> 7. All the data regarding the budgets created are maintained.
> Waiting for your comments.

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




[jira] [Commented] (OFBIZ-4396) Project Manager Gantt chart does not display correctly using any of the visual themes

2011-09-08 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4396:
---

Yes, and I integrated it in my version that is based on ofbiz Architecture and 
modeling.
Most of my UI is SWT. And like the GNATT.JS used a ftl to pass data to the JS I 
use widgets to pass data to the SWT client.


> Project Manager Gantt chart does not display correctly using any of the 
> visual themes
> -
>
> Key: OFBIZ-4396
> URL: https://issues.apache.org/jira/browse/OFBIZ-4396
> Project: OFBiz
>  Issue Type: Bug
>  Components: specialpurpose/projectmgr
>Affects Versions: Release 10.04
> Environment: RHEL 5.5 
> JDK 1.6 
> MySQL 5
>Reporter: Tolulope Aganga-Williams
>Priority: Minor
>  Labels: jsgantt, projectmgr
>
> The Gannt chart displays incorrectly in every browser and using any visual 
> theme. The chart does not align the task on the left to the progress bar on 
> the right. The problem is bad to severe depending on which visual theme you 
> have enabled. I have even updated to the latest JSGantt some improvement but 
> does not fix it.

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




[jira] [Commented] (OFBIZ-4396) Project Manager Gantt chart does not display correctly using any of the visual themes

2011-09-08 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4396:
---

I use 
http://sourceforge.net/projects/openproj/
so i will not be much more help.

> Project Manager Gantt chart does not display correctly using any of the 
> visual themes
> -
>
> Key: OFBIZ-4396
> URL: https://issues.apache.org/jira/browse/OFBIZ-4396
> Project: OFBiz
>  Issue Type: Bug
>  Components: specialpurpose/projectmgr
>Affects Versions: Release 10.04
> Environment: RHEL 5.5 
> JDK 1.6 
> MySQL 5
>Reporter: Tolulope Aganga-Williams
>Priority: Minor
>  Labels: jsgantt, projectmgr
>
> The Gannt chart displays incorrectly in every browser and using any visual 
> theme. The chart does not align the task on the left to the progress bar on 
> the right. The problem is bad to severe depending on which visual theme you 
> have enabled. I have even updated to the latest JSGantt some improvement but 
> does not fix it.

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




[jira] [Commented] (OFBIZ-4396) Project Manager Gantt chart does not display correctly using any of the visual themes

2011-09-08 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4396:
---

component://projectmgr/webapp/projectmgr/project/gantChart.ftl

is where I would start.
Look in the CSS file to see what is being used.

> Project Manager Gantt chart does not display correctly using any of the 
> visual themes
> -
>
> Key: OFBIZ-4396
> URL: https://issues.apache.org/jira/browse/OFBIZ-4396
> Project: OFBiz
>  Issue Type: Bug
>  Components: specialpurpose/projectmgr
>Affects Versions: Release 10.04
> Environment: RHEL 5.5 
> JDK 1.6 
> MySQL 5
>Reporter: Tolulope Aganga-Williams
>Priority: Minor
>  Labels: jsgantt, projectmgr
>
> The Gannt chart displays incorrectly in every browser and using any visual 
> theme. The chart does not align the task on the left to the progress bar on 
> the right. The problem is bad to severe depending on which visual theme you 
> have enabled. I have even updated to the latest JSGantt some improvement but 
> does not fix it.

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




[jira] [Commented] (OFBIZ-4400) Minor code style improvement

2011-09-08 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4400:
---

I am out of my league here but can be make the UTF-8 a variable that is passed 
down from the view-map?
If it is null then Defualt to UTF-8

> Minor code style improvement
> 
>
> Key: OFBIZ-4400
> URL: https://issues.apache.org/jira/browse/OFBIZ-4400
> Project: OFBiz
>  Issue Type: Improvement
>  Components: framework
>Reporter: Dimitri Unruh
>Priority: Minor
> Attachments: OFBIZ-4400.patch
>
>
> In the createJsLanguageFileMapping service, the catch blocks have assigns to 
> a local variable in a return statement.

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




[jira] [Commented] (OFBIZ-4396) Project Manager Gantt chart does not display correctly using any of the visual themes

2011-09-08 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4396:
---

I suggest you either upgrade to trunk or go through the commits to see what has 
been added that fixed this.
I also use eclipse and view the SVN history for a component, this helps in 
tracking down the commit(s) that I need.

> Project Manager Gantt chart does not display correctly using any of the 
> visual themes
> -
>
> Key: OFBIZ-4396
> URL: https://issues.apache.org/jira/browse/OFBIZ-4396
> Project: OFBiz
>  Issue Type: Bug
>  Components: specialpurpose/projectmgr
>Affects Versions: Release 10.04
> Environment: RHEL 5.5 
> JDK 1.6 
> MySQL 5
>Reporter: Tolulope Aganga-Williams
>Priority: Minor
>  Labels: jsgantt, projectmgr
>
> The Gannt chart displays incorrectly in every browser and using any visual 
> theme. The chart does not align the task on the left to the progress bar on 
> the right. The problem is bad to severe depending on which visual theme you 
> have enabled. I have even updated to the latest JSGantt some improvement but 
> does not fix it.

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




[jira] [Commented] (OFBIZ-4396) Project Manager Gantt chart does not display correctly using any of the visual themes

2011-09-07 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4396:
---

does what you see look like:
https://demo-trunk.ofbiz.apache.org:8443/projectmgr/control/ganttChart?projectId=9000



> Project Manager Gantt chart does not display correctly using any of the 
> visual themes
> -
>
> Key: OFBIZ-4396
> URL: https://issues.apache.org/jira/browse/OFBIZ-4396
> Project: OFBiz
>  Issue Type: Bug
>  Components: specialpurpose/projectmgr
>Affects Versions: Release 10.04
> Environment: RHEL 5.5 
> JDK 1.6 
> MySQL 5
>Reporter: Tolulope Aganga-Williams
>Priority: Minor
>  Labels: jsgantt, projectmgr
>
> The Gannt chart displays incorrectly in every browser and using any visual 
> theme. The chart does not align the task on the left to the progress bar on 
> the right. The problem is bad to severe depending on which visual theme you 
> have enabled. I have even updated to the latest JSGantt some improvement but 
> does not fix it.

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




[jira] [Commented] (OFBIZ-4120) Umbrella task for features which use javascript to degrade gracefully

2011-09-04 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4120:
---

What I think best fits this and other UI requirments is to use multiple 
view-maps and let the renderer select which one.
this would allow many types. I am still investigating this.
Another Ideas is to tie it into the Themes so they specify the type of output 
they use.
I don't see changing the current pages, since they work fine for those that 
want to use JS.


> Umbrella task for features which use javascript to degrade gracefully 
> --
>
> Key: OFBIZ-4120
> URL: https://issues.apache.org/jira/browse/OFBIZ-4120
> Project: OFBiz
>  Issue Type: Bug
>  Components: ALL APPLICATIONS
>Affects Versions: SVN trunk
>Reporter: Jacques Le Roux
>
> By using more an more javascript we forget sometimes that it may not 
> available and OFBiz features should continue to work even it's not as easier 
> for users than wih javascript.

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




[jira] [Commented] (OFBIZ-3406) Adding party relationship roles - error message is confusing.

2011-09-04 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-3406:
---

Ok, seems that once the PartyRelationshipType is specified that the 
PartyRelationshipType.roleTypeIdValidFrom and 
PartyRelationshipType.roleTypeIdValidto can be done with a EECA
Then the only Screen that is available is the PartyRelationshipType 

> Adding party relationship roles - error message is confusing.
> -
>
> Key: OFBIZ-3406
> URL: https://issues.apache.org/jira/browse/OFBIZ-3406
> Project: OFBiz
>  Issue Type: Improvement
>  Components: party
>Affects Versions: SVN trunk
>Reporter: chris snow
>Assignee: Jacques Le Roux
>
> On a few occasions I have tried to add party relationships, but have failed 
> with an error message similar to the following.  The error message provided 
> no help in identifying the problem:
> {code}
> Error trying to begin transaction, could not process method: The current 
> transaction is marked for rollback, not beginning a new transaction and 
> aborting 
> current operation; the rollbackOnly was caused by: Failure in create 
> operation for entity [PartyRole]: org.ofbiz.entity.GenericEntityException: 
> Error while 
> inserting: [GenericEntity:PartyRole][createdStamp,2010-01-11 
> 14:04:02.002(java.sql.Timestamp)][createdTxStamp,2010-01-11 
> 14:04:01.966(java.sql.Timestamp)][lastUpdatedStamp,2010-01-11 
> 14:04:02.002(java.sql.Timestamp)][lastUpdatedTxStamp,2010-01-11 
> 14:04:01.966(java.sql.Timestamp)][partyId,11(java.lang.String)][roleTypeId,_NA_(java.lang.String)]
>  (SQL Exception while executing the 
> following:INSERT INTO OFBIZ.PARTY_ROLE (PARTY_ID, ROLE_TYPE_ID, 
> LAST_UPDATED_STAMP, LAST_UPDATED_TX_STAMP, CREATED_STAMP, 
> CREATED_TX_STAMP) VALUES (?, ?, ?, ?, ?, ?) (INSERT on table 'PARTY_ROLE' 
> caused a violation of foreign key constraint 'PARTY_RLE_PARTY' for 
> key (11). The statement has been rolled back.)). Rolling back 
> transaction.org.ofbiz.entity.GenericEntityException: Error while inserting: 
> [GenericEntity:PartyRole][createdStamp,2010-01-11 
> 14:04:02.002(java.sql.Timestamp)][createdTxStamp,2010-01-11 
> 14:04:01.966(java.sql.Timestamp)]
> [lastUpdatedStamp,2010-01-11 
> 14:04:02.002(java.sql.Timestamp)][lastUpdatedTxStamp,2010-01-11 
> 14:04:01.966(java.sql.Timestamp)]
> [partyId,11(java.lang.String)][roleTypeId,_NA_(java.lang.String)] (SQL 
> Exception while executing the following:INSERT INTO OFBIZ.PARTY_ROLE 
> (PARTY_ID, ROLE_TYPE_ID, LAST_UPDATED_STAMP, LAST_UPDATED_TX_STAMP, 
> CREATED_STAMP, CREATED_TX_STAMP) VALUES (?, ?, ?, ?, 
> ?, ?) (INSERT on table 'PARTY_ROLE' caused a violation of foreign key 
> constraint 'PARTY_RLE_PARTY' for key (11). The statement has been rolled 
> back.)) (Error while inserting: 
> [GenericEntity:PartyRole][createdStamp,2010-01-11 
> 14:04:02.002(java.sql.Timestamp)][createdTxStamp,2010-01-11 
> 14:04:01.966(java.sql.Timestamp)][lastUpdatedStamp,2010-01-11 
> 14:04:02.002(java.sql.Timestamp)][lastUpdatedTxStamp,2010-01-11 
> 14:04:01.966(java.sql.Timestamp)][partyId,11(java.lang.String)][roleTypeId,_NA_(java.lang.String)]
>  (SQL Exception while executing the 
> following:INSERT INTO OFBIZ.PARTY_ROLE (PARTY_ID, ROLE_TYPE_ID, 
> LAST_UPDATED_STAMP, LAST_UPDATED_TX_STAMP, CREATED_STAMP, 
> CREATED_TX_STAMP) VALUES (?, ?, ?, ?, ?, ?) (INSERT on table 'PARTY_ROLE' 
> caused a violation of foreign key constraint 'PARTY_RLE_PARTY' for 
> key (11). The statement has been rolled back.)))
> {code}
> If validation code was put into the createPartyRelationship service, a more 
> friendly error message could be returned to the user:
> {code}
>  short-description="createPartyRelationship">
>  field="parameters.roleTypeIdFrom" value="_NA_"/>
>  field="parameters.roleTypeIdTo" value="_NA_"/>
>  field="parameters.partyIdFrom" from-field="userLogin.partyId"/>
>  field="parameters.fromDate"/>
> 
>  filter-by-date="true">
>  from-field="parameters.partyIdFrom"/>
>  from-field="parameters.roleTypeIdFrom"/>
>  from-field="parameters.partyIdTo"/>
>  from-field="parameters.roleTypeIdTo"/>
> 
> 
>operator="not-equals" value="_NA_">
>value-field="lookedUpToPartyRole">
>from-field="parameters.partyIdTo"/>
>from-field="parameters.roleTypeIdTo"/>
>   
>   
>   
>   
>   
>message="${failMessage}"/>
>   
>   
> 

[jira] [Commented] (OFBIZ-4120) Umbrella task for features which use javascript to degrade gracefully

2011-09-04 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4120:
---

For sometime I have been promoting ofbiz to a larger Company.
it is National with headquarters in One City and Multiple manufacturing
and Assembly Plants in multiple States.
They use VPN to tie all together.

My contact was impressed in ofbiz I showed him on the Demo site, while
he was at home. He went to show others at work and it did not work well.
His Company has a security rule that does not allow any JavaScript into
their computers, as well all their internal websites can not use javascript.

You can See the results by disabling JavaScript in your browser and look
at the Ofbiz Demo.

I have been given to the end of Sept to come up with a proposal on
delivering the functionality but without JavaScript.
The staffing for doing this is an additional 10-20 positions for 1-5 years.

My problem is I have not found  enough people that:
1)Understand the Design of Ofbiz
2)Understand the Modeling used based on the videos David did
3)willing to work with the tools that was developed in Ofbiz.
4)Know Ofbiz well enough to reuse code already available.
5)be able to develop code that will do the what is done in JavaScript
but no use javascript.

This project is worth 100's thousand US dollars. Of that, I am willing
of use 10% to fund those working on the project to augment ofbiz in the
same spirit.

The focus of this email is maybe the ofbiz team should re-think the
direction OFbiz is going.


> Umbrella task for features which use javascript to degrade gracefully 
> --
>
> Key: OFBIZ-4120
> URL: https://issues.apache.org/jira/browse/OFBIZ-4120
> Project: OFBiz
>  Issue Type: Bug
>  Components: ALL APPLICATIONS
>Affects Versions: SVN trunk
>Reporter: Jacques Le Roux
>Assignee: Jacques Le Roux
>
> By using more an more javascript we forget sometimes that it may not 
> available and OFBiz features should continue to work even it's not as easier 
> for users than wih javascript.

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




[jira] [Updated] (OFBIZ-3851) this is the main Jira for emplementing the partyRelationship as defined in Data model book

2011-09-02 Thread BJ Freeman (JIRA)

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

BJ Freeman updated OFBIZ-3851:
--

Attachment: OFBIZ-3851-PartyrelationshiptypeID.patch

OFBIZ-3851-PartyrelationshiptypeID.patch
adds partyRelationshipTypeId" value="EMPLOYMENT" to CreateEmployee 

> this is the main Jira for emplementing the partyRelationship as defined in 
> Data model book
> --
>
> Key: OFBIZ-3851
> URL: https://issues.apache.org/jira/browse/OFBIZ-3851
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: party
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
> Attachments: OFBIZ-3851-PartyrelationshiptypeID.patch
>
>   Original Estimate: 504h
>  Remaining Estimate: 504h
>
> though the data model is in ofbiz there is no code that implements it. 
> so this is a multi stage project, to implement in code.
> 1) add seed data for all the partyrelationshipsthypes not already covered.
> 2) define company seed data for party relationships using  _na_ as the 
> toparty this allows agreements to be generated without a specific toparty. 
> Used in setting up a company.
> 3) add services to each Company Party relationship. makes it simpler to write 
> high level code for different agreements and others that use the 
> PartyRelationship entity.

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




[jira] [Commented] (OFBIZ-4390) Ecommerce Error Page Does Not Work

2011-09-01 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4390:
---

this is do to the fact that allowed paths 
 org.ofbiz.webapp.control.ContextFilter

disableContextSecurity
N


allowedPaths

/error:/control:/products:/select:/index.html:/index.jsp:/default.html:/default.jsp:/images


errorCode
403


redirectPath
/control/main




> Ecommerce Error Page Does Not Work
> --
>
> Key: OFBIZ-4390
> URL: https://issues.apache.org/jira/browse/OFBIZ-4390
> Project: OFBiz
>  Issue Type: Bug
>  Components: specialpurpose/ecommerce
>Reporter: Sam Hamilton
>Priority: Minor
> Attachments: OFBIZ-4390-error.txt
>
>
> If you are using the ecommerce app and you force it to generate a 404 error 
> page it defaults to the tomcat error page rather than using what I think it 
> should be using - /error/error.jsp? 
> You can test the 404 error out here - 
> http://demo-trunk.ofbiz.apache.org/ecommerce/error/ 
> The expected error page code is here 
> https://github.com/apache/ofbiz/blob/trunk/specialpurpose/ecommerce/webapp/ecommerce/error/error.jsp
> As pointed out by Bilgin on the mailing list adding the following code into 
> web.xml should resolve the problem however it just generates more errors
> 
>404
>/error/error.jsp
> 

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




[jira] [Commented] (OFBIZ-4390) Ecommerce Error Page Does Not Work

2011-09-01 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4390:
---

this only happens with /error
try http://demo-trunk.ofbiz.apache.org/ecommerce/happy and you get a redirect 
to /control/main

> Ecommerce Error Page Does Not Work
> --
>
> Key: OFBIZ-4390
> URL: https://issues.apache.org/jira/browse/OFBIZ-4390
> Project: OFBiz
>  Issue Type: Bug
>  Components: specialpurpose/ecommerce
>Reporter: Sam Hamilton
>Priority: Minor
> Attachments: OFBIZ-4390-error.txt
>
>
> If you are using the ecommerce app and you force it to generate a 404 error 
> page it defaults to the tomcat error page rather than using what I think it 
> should be using - /error/error.jsp? 
> You can test the 404 error out here - 
> http://demo-trunk.ofbiz.apache.org/ecommerce/error/ 
> The expected error page code is here 
> https://github.com/apache/ofbiz/blob/trunk/specialpurpose/ecommerce/webapp/ecommerce/error/error.jsp
> As pointed out by Bilgin on the mailing list adding the following code into 
> web.xml should resolve the problem however it just generates more errors
> 
>404
>/error/error.jsp
> 

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




[jira] [Commented] (OFBIZ-3851) this is the main Jira for emplementing the partyRelationship as defined in Data model book

2011-09-01 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-3851:
---

https://cwiki.apache.org/confluence/display/OFBIZ/Implementation+of+PartyRelationship


> this is the main Jira for emplementing the partyRelationship as defined in 
> Data model book
> --
>
> Key: OFBIZ-3851
> URL: https://issues.apache.org/jira/browse/OFBIZ-3851
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: party
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>   Original Estimate: 504h
>  Remaining Estimate: 504h
>
> though the data model is in ofbiz there is no code that implements it. 
> so this is a multi stage project, to implement in code.
> 1) add seed data for all the partyrelationshipsthypes not already covered.
> 2) define company seed data for party relationships using  _na_ as the 
> toparty this allows agreements to be generated without a specific toparty. 
> Used in setting up a company.
> 3) add services to each Company Party relationship. makes it simpler to write 
> high level code for different agreements and others that use the 
> PartyRelationship entity.

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




[jira] [Commented] (OFBIZ-149) Better describe complex party relationships

2011-09-01 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-149:
--

there has been a lot of changes since this issue.
can this be closed and use 
https://issues.apache.org/jira/browse/OFBIZ-3851

> Better describe complex party relationships
> ---
>
> Key: OFBIZ-149
> URL: https://issues.apache.org/jira/browse/OFBIZ-149
> Project: OFBiz
>  Issue Type: Improvement
>  Components: party
>Reporter: Chris Howe
>Assignee: David E. Jones
> Attachments: PartyRelationship.patch, necessaryChangeLog.txt
>
>
> Change to the party data model to support relationships where parties act in 
> several capacities (roles) and allowing polynary relationships. 
> If someone could describe a situation where the direcition of the role 
> matters (partyIdTo/partyIdFrom) and  where the roleType is insuficient to 
> understand the direction I will try to come up with a solution.  I'm trying 
> to understand if simply better role designations would alleviate ambiguity or 
> if there is a real need to support direction.
> I began a discussion on this topic, there has yet to be any response
> http://mail-archives.apache.org/mod_mbox/incubator-ofbiz-dev/200608.mbox/%3c20060809155147.18528.qm...@web80615.mail.yahoo.com%3e

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




[jira] [Commented] (OFBIZ-3406) Adding party relationship roles - error message is confusing.

2011-09-01 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-3406:
---

There are two ECAS that make sure the to and from Relationships have _NA_ for 
roles if null.
can this be closed.

> Adding party relationship roles - error message is confusing.
> -
>
> Key: OFBIZ-3406
> URL: https://issues.apache.org/jira/browse/OFBIZ-3406
> Project: OFBiz
>  Issue Type: Improvement
>  Components: party
>Affects Versions: SVN trunk
>Reporter: chris snow
>Assignee: Jacques Le Roux
>
> On a few occasions I have tried to add party relationships, but have failed 
> with an error message similar to the following.  The error message provided 
> no help in identifying the problem:
> {code}
> Error trying to begin transaction, could not process method: The current 
> transaction is marked for rollback, not beginning a new transaction and 
> aborting 
> current operation; the rollbackOnly was caused by: Failure in create 
> operation for entity [PartyRole]: org.ofbiz.entity.GenericEntityException: 
> Error while 
> inserting: [GenericEntity:PartyRole][createdStamp,2010-01-11 
> 14:04:02.002(java.sql.Timestamp)][createdTxStamp,2010-01-11 
> 14:04:01.966(java.sql.Timestamp)][lastUpdatedStamp,2010-01-11 
> 14:04:02.002(java.sql.Timestamp)][lastUpdatedTxStamp,2010-01-11 
> 14:04:01.966(java.sql.Timestamp)][partyId,11(java.lang.String)][roleTypeId,_NA_(java.lang.String)]
>  (SQL Exception while executing the 
> following:INSERT INTO OFBIZ.PARTY_ROLE (PARTY_ID, ROLE_TYPE_ID, 
> LAST_UPDATED_STAMP, LAST_UPDATED_TX_STAMP, CREATED_STAMP, 
> CREATED_TX_STAMP) VALUES (?, ?, ?, ?, ?, ?) (INSERT on table 'PARTY_ROLE' 
> caused a violation of foreign key constraint 'PARTY_RLE_PARTY' for 
> key (11). The statement has been rolled back.)). Rolling back 
> transaction.org.ofbiz.entity.GenericEntityException: Error while inserting: 
> [GenericEntity:PartyRole][createdStamp,2010-01-11 
> 14:04:02.002(java.sql.Timestamp)][createdTxStamp,2010-01-11 
> 14:04:01.966(java.sql.Timestamp)]
> [lastUpdatedStamp,2010-01-11 
> 14:04:02.002(java.sql.Timestamp)][lastUpdatedTxStamp,2010-01-11 
> 14:04:01.966(java.sql.Timestamp)]
> [partyId,11(java.lang.String)][roleTypeId,_NA_(java.lang.String)] (SQL 
> Exception while executing the following:INSERT INTO OFBIZ.PARTY_ROLE 
> (PARTY_ID, ROLE_TYPE_ID, LAST_UPDATED_STAMP, LAST_UPDATED_TX_STAMP, 
> CREATED_STAMP, CREATED_TX_STAMP) VALUES (?, ?, ?, ?, 
> ?, ?) (INSERT on table 'PARTY_ROLE' caused a violation of foreign key 
> constraint 'PARTY_RLE_PARTY' for key (11). The statement has been rolled 
> back.)) (Error while inserting: 
> [GenericEntity:PartyRole][createdStamp,2010-01-11 
> 14:04:02.002(java.sql.Timestamp)][createdTxStamp,2010-01-11 
> 14:04:01.966(java.sql.Timestamp)][lastUpdatedStamp,2010-01-11 
> 14:04:02.002(java.sql.Timestamp)][lastUpdatedTxStamp,2010-01-11 
> 14:04:01.966(java.sql.Timestamp)][partyId,11(java.lang.String)][roleTypeId,_NA_(java.lang.String)]
>  (SQL Exception while executing the 
> following:INSERT INTO OFBIZ.PARTY_ROLE (PARTY_ID, ROLE_TYPE_ID, 
> LAST_UPDATED_STAMP, LAST_UPDATED_TX_STAMP, CREATED_STAMP, 
> CREATED_TX_STAMP) VALUES (?, ?, ?, ?, ?, ?) (INSERT on table 'PARTY_ROLE' 
> caused a violation of foreign key constraint 'PARTY_RLE_PARTY' for 
> key (11). The statement has been rolled back.)))
> {code}
> If validation code was put into the createPartyRelationship service, a more 
> friendly error message could be returned to the user:
> {code}
>  short-description="createPartyRelationship">
>  field="parameters.roleTypeIdFrom" value="_NA_"/>
>  field="parameters.roleTypeIdTo" value="_NA_"/>
>  field="parameters.partyIdFrom" from-field="userLogin.partyId"/>
>  field="parameters.fromDate"/>
> 
>  filter-by-date="true">
>  from-field="parameters.partyIdFrom"/>
>  from-field="parameters.roleTypeIdFrom"/>
>  from-field="parameters.partyIdTo"/>
>  from-field="parameters.roleTypeIdTo"/>
> 
> 
>operator="not-equals" value="_NA_">
>value-field="lookedUpToPartyRole">
>from-field="parameters.partyIdTo"/>
>from-field="parameters.roleTypeIdTo"/>
>   
>   
>   
>   
>   
>message="${failMessage}"/>
>   
>   
>operator="not-equals" value="_NA_">
>value-field="lookedUpFromPartyRole">
>f

[jira] [Commented] (OFBIZ-4361) Any ecommerce user has the ability to reset anothers password (including admin) via "Forget Your Password"

2011-08-05 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4361:
---

as some history

I have five instances of ofbiz running including one demo.
I have yet, in 4 years, to have this happen.



> Any ecommerce user has the ability to reset anothers password (including 
> admin) via "Forget Your Password"
> --
>
> Key: OFBIZ-4361
> URL: https://issues.apache.org/jira/browse/OFBIZ-4361
> Project: OFBiz
>  Issue Type: Bug
>  Components: framework
>Affects Versions: Release Branch 11.04, SVN trunk
> Environment: Ubuntu and others
>Reporter: mz4wheeler
>Priority: Critical
>  Labels: security
>
> Currently, any user (via ecommerce "Forget Your Password") has the ability to 
> reset another users password, including "admin" without permission.  By 
> simply entering "admin" and clicking "Email Password", the following is 
> displayed.
> The following occurred:
> A new password has been created and sent to you. Please check your Email.
> This now forces the user of the ERP to change their password.  It is also 
> possible to generate a dictionary attack against ofbiz because there is no 
> capta code required.  This is serious security risk.
> This feature could be reduced to a certain sub-set of users, whose login name 
> is optionally in the format of an email address, and maybe require a capta 
> code to prevent dictionary attacks.
> For example, limit the feature to role "Customer" of type "Person" which was 
> generated via an ecommerce transaction.

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




[jira] [Commented] (OFBIZ-4361) Any ecommerce user has the ability to reset anothers password (including admin) via "Forget Your Password"

2011-08-05 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4361:
---

as was addressed in the email thread on the user mailing list, forget password 
resets the password if passwords are set to be encrypted
so if someone maliciously puts in a forget password the user is blocked till 
they fnd the email and complete the process.
Captcha was suggested
http://svn.apache.org/viewvc?view=revision&revision=735965
could be implement but won't stop a person.
So If I understand Sam, The actual change password should happen on server. 
then email should have a https: URL to the server with a unique Key to identify 
the user.
The Key is good till the user activated it or it times out.
This way no password is effected till the user goes to the URL..


> Any ecommerce user has the ability to reset anothers password (including 
> admin) via "Forget Your Password"
> --
>
> Key: OFBIZ-4361
> URL: https://issues.apache.org/jira/browse/OFBIZ-4361
> Project: OFBiz
>  Issue Type: Bug
>  Components: framework
>Affects Versions: Release Branch 11.04, SVN trunk
> Environment: Ubuntu and others
>Reporter: mz4wheeler
>Priority: Critical
>  Labels: security
>
> Currently, any user (via ecommerce "Forget Your Password") has the ability to 
> reset another users password, including "admin" without permission.  By 
> simply entering "admin" and clicking "Email Password", the following is 
> displayed.
> The following occurred:
> A new password has been created and sent to you. Please check your Email.
> This now forces the user of the ERP to change their password.  It is also 
> possible to generate a dictionary attack against ofbiz because there is no 
> capta code required.  This is serious security risk.
> This feature could be reduced to a certain sub-set of users, whose login name 
> is optionally in the format of an email address, and maybe require a capta 
> code to prevent dictionary attacks.
> For example, limit the feature to role "Customer" of type "Person" which was 
> generated via an ecommerce transaction.

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




[jira] [Commented] (OFBIZ-3894) Refactor Email handling

2011-07-26 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-3894:
---

I would like the current service be left in place and stubbed out with calls to 
the new code.
thanks for your effort.

> Refactor Email handling
> ---
>
> Key: OFBIZ-3894
> URL: https://issues.apache.org/jira/browse/OFBIZ-3894
> Project: OFBiz
>  Issue Type: Improvement
>  Components: ALL COMPONENTS
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>Priority: Minor
> Fix For: SVN trunk
>
>   Original Estimate: 1,344h
>  Remaining Estimate: 1,344h
>
> with the addition of the Website for each component 
> 1) create product store for Order entry, or use the B2C product store.
> 2) move the email  widgets from ecommerce to order compontent.
> 3) modify the seed data so that Order entry has it own emails from order 
> component.this would be to add emails to 
> note: as I go through the different items  this is turning out to be a bigger 
> project than I first anticipated.
> so consider this so far just ideas.
> Maybe break down in to small tasks as I have time to do something.

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




[jira] [Commented] (OFBIZ-4336) Can not upload pdf content for a task

2011-07-11 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4336:
---

at this point this is not a bug so the jira can be closed and the conversation 
moved to the user mailing list.
I suggest you take the working copy of 10.04 and copy it to a new folder then 
do 
./ant clean all
./ant run-install
and see if the problem shows up.


> Can not upload pdf content for a task
> -
>
> Key: OFBIZ-4336
> URL: https://issues.apache.org/jira/browse/OFBIZ-4336
> Project: OFBiz
>  Issue Type: Bug
>  Components: content
>Affects Versions: SVN trunk
> Environment: java version "1.6.0_26"
> Java(TM) SE Runtime Environment (build 1.6.0_26-b03)
> Java HotSpot(TM) 64-Bit Server VM (build 20.1-b02, mixed mode)
> Linux localhost 2.6.38-gentoo-r6 #2 SMP PREEMPT Sun Jun 19 09:31:24 EDT 2011 
> x86_64 Intel(R) Core(TM) i5 CPU M 430 @ 2.27GHz GenuineIntel GNU/Linux
>Reporter: Mansour Al Akeel
>
> some mime-types can not be uploaded with a task. An error messages is 
> displayed when attempting to upload a PDF.
> Error: No uploaded content found in context  calling service 
> createContentFromUploadedFile in createWorkEffortContent.
> The same applies to JPEG, ZIP, JAR (possibly other formats I didn't test). 
> Some formats can be uploaded with no problem like (png images, text, xml).
> This issue appears from SVN trunk but not in 10.04 Release. And it doesn't 
> appear on ofbiz trunk-demo either.
> This is the log for the error:
> [java] 
> org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:554)
> [java] 
> org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
> [java] 
> org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859)
> [java] 
> org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:588)
> [java] 
> org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
> [java] java.lang.Thread.run(Thread.java:662)
> [java] 
> 
> [java]
> [java] 2011-07-09 00:01:53,847 (http-0.0.0.0-8443-2) [   
> CallSimpleMethod.java:109:WARN ] Got error [error] calling inline 
> simple-method named [saveLocalFileDataResource] in resource [], message is 
> null, and the error message list is: {No uploaded content found in context}
> [java] 2011-07-09 00:01:53,848 (http-0.0.0.0-8443-2) [
> TransactionUtil.java:383:INFO ] [TransactionUtil.setRollbackOnly] transaction 
> rollback only not set, rollback only is already set.
> [java] 2011-07-09 00:01:53,849 (http-0.0.0.0-8443-2) [  
> ServiceDispatcher.java:543:ERROR] Error in Service 
> [attachUploadToDataResource]: No uploaded content found in context
> [java] 2011-07-09 00:01:53,850 (http-0.0.0.0-8443-2) [
> TransactionUtil.java:383:INFO ] [TransactionUtil.setRollbackOnly] transaction 
> rollback only not set, rollback only is already set.
> [java] 2011-07-09 00:01:53,850 (http-0.0.0.0-8443-2) [ 
> GroupModel.java:165:ERROR] Grouped service [attachUploadToDataResource] 
> failed.
> [java] 2011-07-09 00:01:53,851 (http-0.0.0.0-8443-2) [  
> ServiceDispatcher.java:543:ERROR] Error in Service 
> [createContentFromUploadedFile]: No uploaded content found in context
> [java] 2011-07-09 00:01:53,851 (http-0.0.0.0-8443-2) [
> TransactionUtil.java:383:INFO ] [TransactionUtil.setRollbackOnly] transaction 
> rollback only not set, rollback only is already set.
> [java] 2011-07-09 00:01:53,852 (http-0.0.0.0-8443-2) [  
> ServiceDispatcher.java:604:INFO ] Sync service 
> [projectmgr/createContentFromUploadedFile] finished in [1067] milliseconds 
> with response [{errorMessageList={No uploaded content found in context}, 
> responseMessage=error}]
> [java] 2011-07-09 00:01:53,864 (http-0.0.0.0-8443-2) [ 
> UtilProperties.java:1056:INFO ] ResourceBundle DefaultMessages (en) created 
> in 0.01s with 11 properties
> [java] 2011-07-09 00:01:53,879 (http-0.0.0.0-8443-2) [ 
> UtilProperties.java:1056:INFO ] ResourceBundle MiniLangErrorUiLabels (en) 
> created in 0.014s with 4 properties
> [java] 2011-07-09 00:01:53,881 (http-0.0.0.0-8443-2) [
> TransactionUtil.java:341:ERROR]
> [java]  exception report 
> --
> [java] [TransactionUtil.rollback]
> [java] Exception: java.lang.Exception
> [java] Message: Stack Trace
> [java]  stack trace 
> ---
> [java] java.lang.Exception: Stack Trace
> [java] 
> org.ofbiz.entity.transaction.TransactionUtil.rollback(TransactionUtil.java:340)
> [java] 

[jira] [Commented] (OFBIZ-4336) Can not upload pdf content for a task

2011-07-11 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4336:
---

the difference is that the zip file has the db initialized with the demo data.
the repo(SVN) needs not only to be compiled but the data loaded.
so this can be closed?

> Can not upload pdf content for a task
> -
>
> Key: OFBIZ-4336
> URL: https://issues.apache.org/jira/browse/OFBIZ-4336
> Project: OFBiz
>  Issue Type: Bug
>  Components: content
>Affects Versions: SVN trunk
> Environment: java version "1.6.0_26"
> Java(TM) SE Runtime Environment (build 1.6.0_26-b03)
> Java HotSpot(TM) 64-Bit Server VM (build 20.1-b02, mixed mode)
> Linux localhost 2.6.38-gentoo-r6 #2 SMP PREEMPT Sun Jun 19 09:31:24 EDT 2011 
> x86_64 Intel(R) Core(TM) i5 CPU M 430 @ 2.27GHz GenuineIntel GNU/Linux
>Reporter: Mansour Al Akeel
>
> some mime-types can not be uploaded with a task. An error messages is 
> displayed when attempting to upload a PDF.
> Error: No uploaded content found in context  calling service 
> createContentFromUploadedFile in createWorkEffortContent.
> The same applies to JPEG, ZIP, JAR (possibly other formats I didn't test). 
> Some formats can be uploaded with no problem like (png images, text, xml).
> This issue appears from SVN trunk but not in 10.04 Release. And it doesn't 
> appear on ofbiz trunk-demo either.
> This is the log for the error:
> [java] 
> org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:554)
> [java] 
> org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
> [java] 
> org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859)
> [java] 
> org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:588)
> [java] 
> org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
> [java] java.lang.Thread.run(Thread.java:662)
> [java] 
> 
> [java]
> [java] 2011-07-09 00:01:53,847 (http-0.0.0.0-8443-2) [   
> CallSimpleMethod.java:109:WARN ] Got error [error] calling inline 
> simple-method named [saveLocalFileDataResource] in resource [], message is 
> null, and the error message list is: {No uploaded content found in context}
> [java] 2011-07-09 00:01:53,848 (http-0.0.0.0-8443-2) [
> TransactionUtil.java:383:INFO ] [TransactionUtil.setRollbackOnly] transaction 
> rollback only not set, rollback only is already set.
> [java] 2011-07-09 00:01:53,849 (http-0.0.0.0-8443-2) [  
> ServiceDispatcher.java:543:ERROR] Error in Service 
> [attachUploadToDataResource]: No uploaded content found in context
> [java] 2011-07-09 00:01:53,850 (http-0.0.0.0-8443-2) [
> TransactionUtil.java:383:INFO ] [TransactionUtil.setRollbackOnly] transaction 
> rollback only not set, rollback only is already set.
> [java] 2011-07-09 00:01:53,850 (http-0.0.0.0-8443-2) [ 
> GroupModel.java:165:ERROR] Grouped service [attachUploadToDataResource] 
> failed.
> [java] 2011-07-09 00:01:53,851 (http-0.0.0.0-8443-2) [  
> ServiceDispatcher.java:543:ERROR] Error in Service 
> [createContentFromUploadedFile]: No uploaded content found in context
> [java] 2011-07-09 00:01:53,851 (http-0.0.0.0-8443-2) [
> TransactionUtil.java:383:INFO ] [TransactionUtil.setRollbackOnly] transaction 
> rollback only not set, rollback only is already set.
> [java] 2011-07-09 00:01:53,852 (http-0.0.0.0-8443-2) [  
> ServiceDispatcher.java:604:INFO ] Sync service 
> [projectmgr/createContentFromUploadedFile] finished in [1067] milliseconds 
> with response [{errorMessageList={No uploaded content found in context}, 
> responseMessage=error}]
> [java] 2011-07-09 00:01:53,864 (http-0.0.0.0-8443-2) [ 
> UtilProperties.java:1056:INFO ] ResourceBundle DefaultMessages (en) created 
> in 0.01s with 11 properties
> [java] 2011-07-09 00:01:53,879 (http-0.0.0.0-8443-2) [ 
> UtilProperties.java:1056:INFO ] ResourceBundle MiniLangErrorUiLabels (en) 
> created in 0.014s with 4 properties
> [java] 2011-07-09 00:01:53,881 (http-0.0.0.0-8443-2) [
> TransactionUtil.java:341:ERROR]
> [java]  exception report 
> --
> [java] [TransactionUtil.rollback]
> [java] Exception: java.lang.Exception
> [java] Message: Stack Trace
> [java]  stack trace 
> ---
> [java] java.lang.Exception: Stack Trace
> [java] 
> org.ofbiz.entity.transaction.TransactionUtil.rollback(TransactionUtil.java:340)
> [java] 
> org.ofbiz.entity.transaction.TransactionUtil.rollback(TransactionUtil.java:317)
> [java] 

[jira] [Commented] (OFBIZ-4336) Can not upload pdf content for a task

2011-07-09 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4336:
---

as you mentioned this works on the demo-trunk.
so what is different between the demo-trunk and the svn?

> Can not upload pdf content for a task
> -
>
> Key: OFBIZ-4336
> URL: https://issues.apache.org/jira/browse/OFBIZ-4336
> Project: OFBiz
>  Issue Type: Bug
>  Components: content
>Affects Versions: SVN trunk
> Environment: java version "1.6.0_26"
> Java(TM) SE Runtime Environment (build 1.6.0_26-b03)
> Java HotSpot(TM) 64-Bit Server VM (build 20.1-b02, mixed mode)
> Linux localhost 2.6.38-gentoo-r6 #2 SMP PREEMPT Sun Jun 19 09:31:24 EDT 2011 
> x86_64 Intel(R) Core(TM) i5 CPU M 430 @ 2.27GHz GenuineIntel GNU/Linux
>Reporter: Mansour Al Akeel
>
> some mime-types can not be uploaded with a task. An error messages is 
> displayed when attempting to upload a PDF.
> Error: No uploaded content found in context  calling service 
> createContentFromUploadedFile in createWorkEffortContent.
> The same applies to JPEG, ZIP, JAR (possibly other formats I didn't test). 
> Some formats can be uploaded with no problem like (png images, text, xml).
> This issue appears from SVN trunk but not in 10.04 Release. And it doesn't 
> appear on ofbiz trunk-demo either.
> This is the log for the error:
> [java] 
> org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:554)
> [java] 
> org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
> [java] 
> org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859)
> [java] 
> org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:588)
> [java] 
> org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
> [java] java.lang.Thread.run(Thread.java:662)
> [java] 
> 
> [java]
> [java] 2011-07-09 00:01:53,847 (http-0.0.0.0-8443-2) [   
> CallSimpleMethod.java:109:WARN ] Got error [error] calling inline 
> simple-method named [saveLocalFileDataResource] in resource [], message is 
> null, and the error message list is: {No uploaded content found in context}
> [java] 2011-07-09 00:01:53,848 (http-0.0.0.0-8443-2) [
> TransactionUtil.java:383:INFO ] [TransactionUtil.setRollbackOnly] transaction 
> rollback only not set, rollback only is already set.
> [java] 2011-07-09 00:01:53,849 (http-0.0.0.0-8443-2) [  
> ServiceDispatcher.java:543:ERROR] Error in Service 
> [attachUploadToDataResource]: No uploaded content found in context
> [java] 2011-07-09 00:01:53,850 (http-0.0.0.0-8443-2) [
> TransactionUtil.java:383:INFO ] [TransactionUtil.setRollbackOnly] transaction 
> rollback only not set, rollback only is already set.
> [java] 2011-07-09 00:01:53,850 (http-0.0.0.0-8443-2) [ 
> GroupModel.java:165:ERROR] Grouped service [attachUploadToDataResource] 
> failed.
> [java] 2011-07-09 00:01:53,851 (http-0.0.0.0-8443-2) [  
> ServiceDispatcher.java:543:ERROR] Error in Service 
> [createContentFromUploadedFile]: No uploaded content found in context
> [java] 2011-07-09 00:01:53,851 (http-0.0.0.0-8443-2) [
> TransactionUtil.java:383:INFO ] [TransactionUtil.setRollbackOnly] transaction 
> rollback only not set, rollback only is already set.
> [java] 2011-07-09 00:01:53,852 (http-0.0.0.0-8443-2) [  
> ServiceDispatcher.java:604:INFO ] Sync service 
> [projectmgr/createContentFromUploadedFile] finished in [1067] milliseconds 
> with response [{errorMessageList={No uploaded content found in context}, 
> responseMessage=error}]
> [java] 2011-07-09 00:01:53,864 (http-0.0.0.0-8443-2) [ 
> UtilProperties.java:1056:INFO ] ResourceBundle DefaultMessages (en) created 
> in 0.01s with 11 properties
> [java] 2011-07-09 00:01:53,879 (http-0.0.0.0-8443-2) [ 
> UtilProperties.java:1056:INFO ] ResourceBundle MiniLangErrorUiLabels (en) 
> created in 0.014s with 4 properties
> [java] 2011-07-09 00:01:53,881 (http-0.0.0.0-8443-2) [
> TransactionUtil.java:341:ERROR]
> [java]  exception report 
> --
> [java] [TransactionUtil.rollback]
> [java] Exception: java.lang.Exception
> [java] Message: Stack Trace
> [java]  stack trace 
> ---
> [java] java.lang.Exception: Stack Trace
> [java] 
> org.ofbiz.entity.transaction.TransactionUtil.rollback(TransactionUtil.java:340)
> [java] 
> org.ofbiz.entity.transaction.TransactionUtil.rollback(TransactionUtil.java:317)
> [java] org.ofbiz.minilang.SimpleMethod.exec(SimpleMethod.java:870)
>  

[jira] [Commented] (OFBIZ-4333) Refactoring send email engine

2011-07-07 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4333:
---

there is a Jira open already
https://issues.apache.org/jira/browse/OFBIZ-3894


> Refactoring send email engine
> -
>
> Key: OFBIZ-4333
> URL: https://issues.apache.org/jira/browse/OFBIZ-4333
> Project: OFBiz
>  Issue Type: Improvement
>  Components: ALL COMPONENTS, content, framework
>Affects Versions: SVN trunk
>Reporter: Nicolas Malin
>  Labels: content, mail, notification
> Fix For: SVN trunk
>
> Attachments: OFBIZ-4333.patch
>
>   Original Estimate: 48h
>  Remaining Estimate: 48h
>
> In OFBiz history, the first entity used was ProductStoreEmailSetting, for 
> automatic email during ecommerce process and in last time the 
> EmailTemplateSetting for specific notification.
> Both entities have the same field : bodyScreenLocation, 
> xslfoAttachScreenLocation, fromAddress, ccAddress, bccAddress, subject, 
> contentType. Just primary key are differents.
> To simplify the notification system, I will suggest :
> * use only EmailTemplateSetting to edit email configuration
> * associate ProductStoreEmailSetting to EmailTemplateSetting
> * convert all service and screen that use ProductStoreEmailSetting
> * create convert service.
> * add contentId on EmailTemplateSetting (or templaceContentId) to use a 
> content for rendering email 

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




[jira] [Updated] (OFBIZ-4329) update tree widget xsd

2011-07-04 Thread BJ Freeman (JIRA)

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

BJ Freeman updated OFBIZ-4329:
--

Attachment: OFBIZ-4329-widget-tree.patch

> update tree widget xsd
> --
>
> Key: OFBIZ-4329
> URL: https://issues.apache.org/jira/browse/OFBIZ-4329
> Project: OFBiz
>  Issue Type: Improvement
>  Components: framework
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>Priority: Trivial
> Attachments: OFBIZ-4329-widget-tree.patch
>
>
> the  example was out of date and there are plenty of examples in code.
> working on documenting in widget-tree.xsd.

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




[jira] [Created] (OFBIZ-4329) update tree widget xsd

2011-07-04 Thread BJ Freeman (JIRA)
update tree widget xsd
--

 Key: OFBIZ-4329
 URL: https://issues.apache.org/jira/browse/OFBIZ-4329
 Project: OFBiz
  Issue Type: Improvement
  Components: framework
Affects Versions: SVN trunk
Reporter: BJ Freeman
Priority: Trivial


the  example was out of date and there are plenty of examples in code.
working on documenting in widget-tree.xsd.


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




[jira] [Commented] (OFBIZ-4327) deny list

2011-07-03 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4327:
---

what you call give up I call taking the path of least resistance.
I see the difference in being most want stuff in ofbiz svn so they can use the 
svn to further their business.
>From the get go my view was I would like to contribute what I am already 
>planning 
Now I don't mind  someone doing a Code review, to maintain best practices. But 
when the overhead to contributed exceeds a limit of what I want to do, I cut if 
off so I can direct my energy to those things the have a higher priority.

It is NOT important to me to have what I contribute in the SVN.



> deny list
> -
>
> Key: OFBIZ-4327
> URL: https://issues.apache.org/jira/browse/OFBIZ-4327
> Project: OFBiz
>  Issue Type: New Feature
>  Components: framework
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>Priority: Minor
>  Labels: deny, list, obiz
> Attachments: VisitFllter.xml, VisitFllterIP.xml
>
>
> the allows on the fly addition of deny parms before a lot of resources are 
> allocated.
> The goal is to filter out the requests that are not relevant to the site.
> Like the image bots that just want you images.
> or someone that copies you content.
> the two seed data are from mod rewrite for bots(171) and Ip's that are known 
> to attempt to hack, or do unnecessary requests.

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




[jira] [Commented] (OFBIZ-4327) deny list

2011-07-03 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4327:
---

though some messages of broken pipes comes from the handling of errors in 
Controlserverlet.java, there are some AJP broken pipes messages of data that 
does not get transfer to the Browser. I have not address it specifically here 
because I can not pinpoint the cause.

> deny list
> -
>
> Key: OFBIZ-4327
> URL: https://issues.apache.org/jira/browse/OFBIZ-4327
> Project: OFBiz
>  Issue Type: New Feature
>  Components: framework
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>Priority: Minor
>  Labels: deny, list, obiz
> Attachments: VisitFllter.xml, VisitFllterIP.xml
>
>
> the allows on the fly addition of deny parms before a lot of resources are 
> allocated.
> The goal is to filter out the requests that are not relevant to the site.
> Like the image bots that just want you images.
> or someone that copies you content.
> the two seed data are from mod rewrite for bots(171) and Ip's that are known 
> to attempt to hack, or do unnecessary requests.

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




[jira] [Commented] (OFBIZ-4327) deny list

2011-07-02 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4327:
---

Yes, that assumes using AJP.
I am migrating from that since it seems the AJP gets clogged up.
we can close this and I will put it on my site.


> deny list
> -
>
> Key: OFBIZ-4327
> URL: https://issues.apache.org/jira/browse/OFBIZ-4327
> Project: OFBiz
>  Issue Type: New Feature
>  Components: framework
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>Priority: Minor
>  Labels: deny, list, obiz
> Attachments: VisitFllter.xml, VisitFllterIP.xml
>
>
> the allows on the fly addition of deny parms before a lot of resources are 
> allocated.
> The goal is to filter out the requests that are not relevant to the site.
> Like the image bots that just want you images.
> or someone that copies you content.
> the two seed data are from mod rewrite for bots(171) and Ip's that are known 
> to attempt to hack, or do unnecessary requests.

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




[jira] [Commented] (OFBIZ-4327) deny list

2011-07-02 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4327:
---

I did not find the way to delete the patches.
I did not expect it to be put in trunk.
and yes the filter of the web.xml is where it programmaticly go.
my understanding, is in ofbiz, unlike TC it takes a restart.
This is not acceptable for productions.

> deny list
> -
>
> Key: OFBIZ-4327
> URL: https://issues.apache.org/jira/browse/OFBIZ-4327
> Project: OFBiz
>  Issue Type: New Feature
>  Components: framework
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>Priority: Minor
>  Labels: deny, list, obiz
> Attachments: VisitFllter.xml, VisitFllterIP.xml
>
>
> the allows on the fly addition of deny parms before a lot of resources are 
> allocated.
> The goal is to filter out the requests that are not relevant to the site.
> Like the image bots that just want you images.
> or someone that copies you content.
> the two seed data are from mod rewrite for bots(171) and Ip's that are known 
> to attempt to hack, or do unnecessary requests.

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




[jira] [Commented] (OFBIZ-4318) No ElectronicText record is generated when there is no text in message for forums

2011-07-02 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4318:
---

the step about  "enter a subject but do not put anything in the Message Body 
text." was not followed.
you added text "Zorba"


> No ElectronicText record is generated when there is no text in message for 
> forums
> -
>
> Key: OFBIZ-4318
> URL: https://issues.apache.org/jira/browse/OFBIZ-4318
> Project: OFBiz
>  Issue Type: Bug
>  Components: content
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>Assignee: Jacques Le Roux
>  Labels: ElectronicText, content, forums
>
> https://demo-trunk.ofbiz.apache.org/content/control/findForums?forumGroupId=WebStoreFORUM
> select a forum
> enter a subject but do not put anything in the Message Body text.
> click on add.
> select the forum 
> http://demo-trunk.ofbiz.apache.org/ecommerce/control/main
> Select the message
> get the ID
> https://demo-trunk.ofbiz.apache.org/webtools/control/FindGeneric?entityName=ElectronicText&find=true&VIEW_SIZE=50&VIEW_INDEX=0
> no record for that ID is found.

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




[jira] [Created] (OFBIZ-4328) Projectmgr Tree

2011-07-02 Thread BJ Freeman (JIRA)
Projectmgr Tree
---

 Key: OFBIZ-4328
 URL: https://issues.apache.org/jira/browse/OFBIZ-4328
 Project: OFBiz
  Issue Type: New Feature
  Components: specialpurpose/projectmgr
Affects Versions: SVN trunk
Reporter: BJ Freeman
Priority: Minor


This organizes the projects and sub-project with a tree so it is easier to 
navigate them.
I put this as the main screen. the current main screen is now on the appbar 
menus as Projects Summary.

should work back through 9.04 for those that want to manually do it.
vote and comment if you want me to add those patches.

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




[jira] [Commented] (OFBIZ-4327) deny list

2011-06-28 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4327:
---

thought I had eclipse set to 4 spaces though it would not have caught ==

#3 if the VisitFllter entity is empty it returns a false so not action taken. 
an indirect option. putting in code to disable would have about the same time 
as the way it is set up now.

Note this is not ready yet. I thought it was working but it was not loaded.
once loaded I found errors I am working on.
that is why I removed the patch provided flag




> deny list
> -
>
> Key: OFBIZ-4327
> URL: https://issues.apache.org/jira/browse/OFBIZ-4327
> Project: OFBiz
>  Issue Type: New Feature
>  Components: framework
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>Priority: Minor
>  Labels: deny, list, obiz
> Attachments: OFBIZ-4327.patch, OFBIZ-4327.patch, VisitFllter.xml, 
> VisitFllterIP.xml
>
>
> the allows on the fly addition of deny parms before a lot of resources are 
> allocated.
> The goal is to filter out the requests that are not relevant to the site.
> Like the image bots that just want you images.
> or someone that copies you content.
> the two seed data are from mod rewrite for bots(171) and Ip's that are known 
> to attempt to hack, or do unnecessary requests.

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




[jira] [Updated] (OFBIZ-4327) deny list

2011-06-26 Thread BJ Freeman (JIRA)

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

BJ Freeman updated OFBIZ-4327:
--

Attachment: VisitFllterIP.xml

> deny list
> -
>
> Key: OFBIZ-4327
> URL: https://issues.apache.org/jira/browse/OFBIZ-4327
> Project: OFBiz
>  Issue Type: New Feature
>  Components: framework
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>Priority: Minor
>  Labels: deny, list, obiz
> Attachments: OFBIZ-4327.patch, OFBIZ-4327.patch, VisitFllter.xml, 
> VisitFllterIP.xml
>
>
> the allows on the fly addition of deny parms before a lot of resources are 
> allocated.
> The goal is to filter out the requests that are not relevant to the site.
> Like the image bots that just want you images.
> or someone that copies you content.
> the two seed data are from mod rewrite for bots(171) and Ip's that are known 
> to attempt to hack, or do unnecessary requests.

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




[jira] [Updated] (OFBIZ-4327) deny list

2011-06-25 Thread BJ Freeman (JIRA)

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

BJ Freeman updated OFBIZ-4327:
--

Attachment: OFBIZ-4327.patch

typo

> deny list
> -
>
> Key: OFBIZ-4327
> URL: https://issues.apache.org/jira/browse/OFBIZ-4327
> Project: OFBiz
>  Issue Type: New Feature
>  Components: framework
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>Priority: Minor
>  Labels: deny, list, obiz
> Attachments: OFBIZ-4327.patch, OFBIZ-4327.patch, VisitFllter.xml
>
>
> the allows on the fly addition of deny parms before a lot of resources are 
> allocated.
> The goal is to filter out the requests that are not relevant to the site.
> Like the image bots that just want you images.
> or someone that copies you content.
> the two seed data are from mod rewrite for bots(171) and Ip's that are known 
> to attempt to hack, or do unnecessary requests.

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




[jira] [Updated] (OFBIZ-4327) deny list

2011-06-25 Thread BJ Freeman (JIRA)

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

BJ Freeman updated OFBIZ-4327:
--

Attachment: VisitFllter.xml

> deny list
> -
>
> Key: OFBIZ-4327
> URL: https://issues.apache.org/jira/browse/OFBIZ-4327
> Project: OFBiz
>  Issue Type: New Feature
>  Components: framework
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>Priority: Minor
>  Labels: deny, list, obiz
> Attachments: OFBIZ-4327.patch, VisitFllter.xml
>
>
> the allows on the fly addition of deny parms before a lot of resources are 
> allocated.
> The goal is to filter out the requests that are not relevant to the site.
> Like the image bots that just want you images.
> or someone that copies you content.
> the two seed data are from mod rewrite for bots(171) and Ip's that are known 
> to attempt to hack, or do unnecessary requests.

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




[jira] [Updated] (OFBIZ-4327) deny list

2011-06-25 Thread BJ Freeman (JIRA)

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

BJ Freeman updated OFBIZ-4327:
--

Attachment: OFBIZ-4327.patch

> deny list
> -
>
> Key: OFBIZ-4327
> URL: https://issues.apache.org/jira/browse/OFBIZ-4327
> Project: OFBiz
>  Issue Type: New Feature
>  Components: framework
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>Priority: Minor
>  Labels: deny, list, obiz
> Attachments: OFBIZ-4327.patch
>
>
> the allows on the fly addition of deny parms before a lot of resources are 
> allocated.
> The goal is to filter out the requests that are not relevant to the site.
> Like the image bots that just want you images.
> or someone that copies you content.
> the two seed data are from mod rewrite for bots(171) and Ip's that are known 
> to attempt to hack, or do unnecessary requests.

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




[jira] [Commented] (OFBIZ-4327) deny list

2011-06-25 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4327:
---

I left some hooks and parms in to expand this further.
as I get time i will add to it. 
It does what I want now so I doubt I will do anything more till next year.

> deny list
> -
>
> Key: OFBIZ-4327
> URL: https://issues.apache.org/jira/browse/OFBIZ-4327
> Project: OFBiz
>  Issue Type: New Feature
>  Components: framework
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>Priority: Minor
>  Labels: deny, list, obiz
>
> the allows on the fly addition of deny parms before a lot of resources are 
> allocated.
> The goal is to filter out the requests that are not relevant to the site.
> Like the image bots that just want you images.
> or someone that copies you content.
> the two seed data are from mod rewrite for bots(171) and Ip's that are known 
> to attempt to hack, or do unnecessary requests.

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




[jira] [Created] (OFBIZ-4327) deny list

2011-06-25 Thread BJ Freeman (JIRA)
deny list
-

 Key: OFBIZ-4327
 URL: https://issues.apache.org/jira/browse/OFBIZ-4327
 Project: OFBiz
  Issue Type: New Feature
  Components: framework
Affects Versions: SVN trunk
Reporter: BJ Freeman
Priority: Minor


the allows on the fly addition of deny parms before a lot of resources are 
allocated.
The goal is to filter out the requests that are not relevant to the site.
Like the image bots that just want you images.
or someone that copies you content.
the two seed data are from mod rewrite for bots(171) and Ip's that are known to 
attempt to hack, or do unnecessary requests.

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




[jira] [Commented] (OFBIZ-4316) Widget $() escapes HTML. StringUtil.wrapString(contentText) throw an error

2011-06-22 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4316:
---

thanks for the clarification.
however for formus I run they are moderated.
so malicious html/js content is not possible.
I do understand that ofbiz must go for worst case.


> Widget $() escapes HTML. StringUtil.wrapString(contentText) throw an error
> --
>
> Key: OFBIZ-4316
> URL: https://issues.apache.org/jira/browse/OFBIZ-4316
> Project: OFBiz
>  Issue Type: Bug
>  Components: content, framework, specialpurpose/ecommerce
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>  Labels: html, rendering, widget
> Fix For: SVN trunk
>
>
> from the ForumScreens.xml#ViewForumMessage
> {code}
> 
>${contentText}
> {code}
> show escaped html
> {code}
> * Data Source * Marketing Campaign * Tracking Affiliate 
> programs * Segment * Contact List * Reports  class="postlink" 
> href="https://demo-trunk.ofbiz.apache.org/marketing/control/main"USERNAME=flexadmin&PASSWORD=ofbiz&JavaScriptEnabled=Y";>Demo
>  Marketing 
> {code}
> replacing 
> {code}${contentText}{code}
> with
> {code}${StringUtil.wrapString(contentText).toString()}{code}
> give this error
> 2011-06-15 18:16:43,200 (TP-Processor13) [ UtilXml.java:1043:ERROR]
> XmlFileLoader: File
> file:specialpurpose/ecommerce/widget/ForumScreens.xml
> process error. Line: 151. Error message: cvc-complex-type.2.3: Element
> 'condition' cannot have character [children], because the type's content
> type is element-only.

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




[jira] [Commented] (OFBIZ-4318) No ElectronicText record is generated when there is no text in message for forums

2011-06-22 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4318:
---

and it gives a 404 error to the client.

> No ElectronicText record is generated when there is no text in message for 
> forums
> -
>
> Key: OFBIZ-4318
> URL: https://issues.apache.org/jira/browse/OFBIZ-4318
> Project: OFBiz
>  Issue Type: Bug
>  Components: content
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>  Labels: ElectronicText, content, forums
>
> https://demo-trunk.ofbiz.apache.org/content/control/findForums?forumGroupId=WebStoreFORUM
> select a forum
> enter a subject but do not put anything in the Message Body text.
> click on add.
> select the forum 
> http://demo-trunk.ofbiz.apache.org/ecommerce/control/main
> Select the message
> get the ID
> https://demo-trunk.ofbiz.apache.org/webtools/control/FindGeneric?entityName=ElectronicText&find=true&VIEW_SIZE=50&VIEW_INDEX=0
> no record for that ID is found.

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




[jira] [Resolved] (OFBIZ-4318) No ElectronicText record is generated when there is no text in message for forums

2011-06-22 Thread BJ Freeman (JIRA)

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

BJ Freeman resolved OFBIZ-4318.
---

Resolution: Won't Fix

No one is interested.

> No ElectronicText record is generated when there is no text in message for 
> forums
> -
>
> Key: OFBIZ-4318
> URL: https://issues.apache.org/jira/browse/OFBIZ-4318
> Project: OFBiz
>  Issue Type: Bug
>  Components: content
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>  Labels: ElectronicText, content, forums
>
> https://demo-trunk.ofbiz.apache.org/content/control/findForums?forumGroupId=WebStoreFORUM
> select a forum
> enter a subject but do not put anything in the Message Body text.
> click on add.
> select the forum 
> http://demo-trunk.ofbiz.apache.org/ecommerce/control/main
> Select the message
> get the ID
> https://demo-trunk.ofbiz.apache.org/webtools/control/FindGeneric?entityName=ElectronicText&find=true&VIEW_SIZE=50&VIEW_INDEX=0
> no record for that ID is found.

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




[jira] [Commented] (OFBIZ-4318) No ElectronicText record is generated when there is no text in message for forums

2011-06-22 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4318:
---

Returning null because found incomplete primary key in find: 
[GenericEntity:ElectronicText][dataResourceId,null()] 
is the error in the logs.
this was more an FYI so will close.
my solution will not work with current trunk.

> No ElectronicText record is generated when there is no text in message for 
> forums
> -
>
> Key: OFBIZ-4318
> URL: https://issues.apache.org/jira/browse/OFBIZ-4318
> Project: OFBiz
>  Issue Type: Bug
>  Components: content
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>  Labels: ElectronicText, content, forums
>
> https://demo-trunk.ofbiz.apache.org/content/control/findForums?forumGroupId=WebStoreFORUM
> select a forum
> enter a subject but do not put anything in the Message Body text.
> click on add.
> select the forum 
> http://demo-trunk.ofbiz.apache.org/ecommerce/control/main
> Select the message
> get the ID
> https://demo-trunk.ofbiz.apache.org/webtools/control/FindGeneric?entityName=ElectronicText&find=true&VIEW_SIZE=50&VIEW_INDEX=0
> no record for that ID is found.

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




[jira] [Commented] (OFBIZ-4316) Widget $() escapes HTML. StringUtil.wrapString(contentText) throw an error

2011-06-16 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4316:
---

I am using a ftl with 
${StringUtil.wrapString(contentText)}
https://issues.apache.org/jira/browse/OFBIZ-4318  is the bug about no recored 
being generated
but this has to do with the stringUtil handling that problem so put this here
{code}
2011-06-16 20:23:26,453 (TP-Processor36) [ RequestHandler.java:741:INFO ] 
Rendering View [ViewForumMessage], 
sessionId=ED6F3D30F1C23C6DBA1C64EC46B2534A.jvm1
2011-06-16 20:23:26,460 (TP-Processor36) [ PrimaryKeyFinder.java:153:INFO ] 
Returning null because found incomplete primary key in find: 
[GenericEntity:ElectronicText][dataResourceId,null()]
2011-06-16 20:23:26,696 (TP-Processor36) [ Log4JLoggerFactory.java:96 :ERROR]
Expression StringUtil.wrapString(contentText) is undefined on line 2, column 3 
in component://publicface/webapp/businessesnetwork/forum/tmpmsgworkaround.ftl. 
The problematic instruction: -- ==> 
${StringUtil.wrapString(contentText)} [on line 2, column 1 in 
component://publicface/webapp/businessesnetwork/forum/tmpmsgworkaround.ftl] 
-- Java backtrace for programmers: -- 
freemarker.core.InvalidReferenceException: Expression 
StringUtil.wrapString(contentText) is undefined on line 2, column 3 in 
component://publicface/webapp/businessesnetwork/forum/tmpmsgworkaround.ftl. at 
freemarker.core.TemplateObject.assertNonNull(TemplateObject.java:124) at 
freemarker.core.Expression.getStringValue(Expression.java:118) at 
freemarker.core.Expression.getStringValue(Expression.java:93) at 
freemarker.core.DollarVariable.accept(DollarVariable.java:76) at 
freemarker.core.Environment.visit(Environment.java:209) at 
freemarker.core.MixedContent.accept(MixedContent.java:92) at 
freemarker.core.Environment.visit(Environment.java:209) at 
freemarker.core.Environment.process(Environment.java:189) at 
org.ofbiz.base.util.template.FreeMarkerWorker.renderTemplate(FreeMarkerWorker.java:216)
 at org.ofbiz.widget.screen.HtmlWidget.renderHtmlTemplate(HtmlWidget.java:205) 
at 
org.ofbiz.widget.screen.HtmlWidget$HtmlTemplate.renderWidgetString(HtmlWidget.java:250)
 at org.ofbiz.widget.screen.HtmlWidget.renderWidgetString(HtmlWidget.java:110) 
at 
org.ofbiz.widget.screen.ModelScreenWidget$PlatformSpecific.renderWidgetString(ModelScreenWidget.java:971)
 at 
org.ofbiz.widget.screen.ModelScreenWidget.renderSubWidgetsString(ModelScreenWidget.java:100)
 at 
org.ofbiz.widget.screen.ModelScreenWidget$Container.renderWidgetString(ModelScreenWidget.java:256)
 at 
org.ofbiz.widget.screen.ModelScreenWidget.renderSubWidgetsString(ModelScreenWidget.java:100)
 at 
org.ofbiz.widget.screen.ModelScreenWidget$DecoratorSection.renderWidgetString(ModelScreenWidget.java:669)
 at 
org.ofbiz.widget.screen.ModelScreenWidget$SectionsRenderer.render(ModelScreenWidget.java:125)
 at 
org.ofbiz.widget.screen.ModelScreenWidget$DecoratorSectionInclude.renderWidgetString(ModelScreenWidget.java:702)
 at 
org.ofbiz.widget.screen.ModelScreenWidget.renderSubWidgetsString(ModelScreenWidget.java:100)
 at 
org.ofbiz.widget.screen.ModelScreenWidget$Container.renderWidgetString(ModelScreenWidget.java:256)
 at 
org.ofbiz.widget.screen.ModelScreenWidget.renderSubWidgetsString(ModelScreenWidget.java:100)
 at 
org.ofbiz.widget.screen.ModelScreenWidget$Container.renderWidgetString(ModelScreenWidget.java:256)
 at 
org.ofbiz.widget.screen.ModelScreenWidget.renderSubWidgetsString(ModelScreenWidget.java:100)
 at 
org.ofbiz.widget.screen.ModelScreenWidget$Container.renderWidgetString(ModelScreenWidget.java:256)
 at 
org.ofbiz.widget.screen.ModelScreenWidget.renderSubWidgetsString(ModelScreenWidget.java:100)
 at 
org.ofbiz.widget.screen.ModelScreenWidget$Container.renderWidgetString(ModelScreenWidget.java:256)
 at 
org.ofbiz.widget.screen.ModelScreenWidget.renderSubWidgetsString(ModelScreenWidget.java:100)
 at 
org.ofbiz.widget.screen.ModelScreenWidget$Container.renderWidgetString(ModelScreenWidget.java:256)
 at 
org.ofbiz.widget.screen.ModelScreenWidget.renderSubWidgetsString(ModelScreenWidget.java:100)
 at 
org.ofbiz.widget.screen.ModelScreenWidget$Section.renderWidgetString(ModelScreenWidget.java:187)
 at 
org.ofbiz.widget.screen.ModelScreenWidget.renderSubWidgetsString(ModelScreenWidget.java:100)
 at 
org.ofbiz.widget.screen.ModelScreenWidget$Section.renderWidgetString(ModelScreenWidget.java:187)
 at 
org.ofbiz.widget.screen.ModelScreen.renderScreenString(ModelScreen.java:392) at 
org.ofbiz.widget.screen.ModelScreenWidget$DecoratorScreen.renderWidgetString(ModelScreenWidget.java:636)
 at 
org.ofbiz.widget.screen.ModelScreenWidget.renderSubWidgetsString(ModelScreenWidget.java:100)
 at 
org.ofbiz.widget.screen.ModelScreenWidget$Section.renderWidgetString(ModelScreenWidget.java:187)
 at 
org.ofbiz.widget.screen.ModelScreen.renderScreenString(ModelScreen.java:

[jira] [Created] (OFBIZ-4318) No ElectronicText record is generated when there is no text in message for forums

2011-06-16 Thread BJ Freeman (JIRA)
No ElectronicText record is generated when there is no text in message for 
forums
-

 Key: OFBIZ-4318
 URL: https://issues.apache.org/jira/browse/OFBIZ-4318
 Project: OFBiz
  Issue Type: Bug
  Components: content
Affects Versions: SVN trunk
Reporter: BJ Freeman


https://demo-trunk.ofbiz.apache.org/content/control/findForums?forumGroupId=WebStoreFORUM
select a forum
enter a subject but do not put anything in the Message Body text.
click on add.
select the forum 
http://demo-trunk.ofbiz.apache.org/ecommerce/control/main
Select the message
get the ID
https://demo-trunk.ofbiz.apache.org/webtools/control/FindGeneric?entityName=ElectronicText&find=true&VIEW_SIZE=50&VIEW_INDEX=0
no record for that ID is found.


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




[jira] [Created] (OFBIZ-4317) javascript Update button does not work in content, forum message. see link

2011-06-16 Thread BJ Freeman (JIRA)
javascript Update button does not work in content, forum message. see link
--

 Key: OFBIZ-4317
 URL: https://issues.apache.org/jira/browse/OFBIZ-4317
 Project: OFBiz
  Issue Type: Bug
  Components: content
Affects Versions: SVN trunk
Reporter: BJ Freeman


https://demo-trunk.ofbiz.apache.org/content/control/findForumMessages?forumGroupId=WebStoreFORUM&forumId=GIZMOS
change data in message and click on Updtate button. refresh and new data is not 
there.


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




[jira] [Commented] (OFBIZ-4316) Widget $() escapes HTML. StringUtil.wrapString(contentText) throw an error

2011-06-15 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4316:
---

also check the trunk demo just to be sure, that the code had not been changed 
since my version.



> Widget $() escapes HTML. StringUtil.wrapString(contentText) throw an error
> --
>
> Key: OFBIZ-4316
> URL: https://issues.apache.org/jira/browse/OFBIZ-4316
> Project: OFBiz
>  Issue Type: Bug
>  Components: content, framework, specialpurpose/ecommerce
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>  Labels: html, rendering, widget
> Fix For: SVN trunk
>
>
> from the ForumScreens.xml#ViewForumMessage
> {code}
> 
>${contentText}
> {code}
> show escaped html
> {code}
> * Data Source * Marketing Campaign * Tracking Affiliate 
> programs * Segment * Contact List * Reports  class="postlink" 
> href="https://demo-trunk.ofbiz.apache.org/marketing/control/main"USERNAME=flexadmin&PASSWORD=ofbiz&JavaScriptEnabled=Y";>Demo
>  Marketing 
> {code}
> replacing 
> {code}${contentText}{code}
> with
> {code}${StringUtil.wrapString(contentText).toString()}{code}
> give this error
> 2011-06-15 18:16:43,200 (TP-Processor13) [ UtilXml.java:1043:ERROR]
> XmlFileLoader: File
> file:specialpurpose/ecommerce/widget/ForumScreens.xml
> process error. Line: 151. Error message: cvc-complex-type.2.3: Element
> 'condition' cannot have character [children], because the type's content
> type is element-only.

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




[jira] [Commented] (OFBIZ-4316) Widget $() escapes HTML. StringUtil.wrapString(contentText) throw an error

2011-06-15 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4316:
---

quick work around is to use
{code}
{code}

> Widget $() escapes HTML. StringUtil.wrapString(contentText) throw an error
> --
>
> Key: OFBIZ-4316
> URL: https://issues.apache.org/jira/browse/OFBIZ-4316
> Project: OFBiz
>  Issue Type: Bug
>  Components: content, framework, specialpurpose/ecommerce
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>  Labels: html, rendering, widget
> Fix For: SVN trunk
>
>
> from the ForumScreens.xml#ViewForumMessage
> {code}
> 
>${contentText}
> {code}
> show escaped html
> {code}
> * Data Source * Marketing Campaign * Tracking Affiliate 
> programs * Segment * Contact List * Reports  class="postlink" 
> href="https://demo-trunk.ofbiz.apache.org/marketing/control/main"USERNAME=flexadmin&PASSWORD=ofbiz&JavaScriptEnabled=Y";>Demo
>  Marketing 
> {code}
> replacing 
> {code}${contentText}{code}
> with
> {code}${StringUtil.wrapString(contentText).toString()}{code}
> give this error
> 2011-06-15 18:16:43,200 (TP-Processor13) [ UtilXml.java:1043:ERROR]
> XmlFileLoader: File
> file:specialpurpose/ecommerce/widget/ForumScreens.xml
> process error. Line: 151. Error message: cvc-complex-type.2.3: Element
> 'condition' cannot have character [children], because the type's content
> type is element-only.

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




[jira] [Updated] (OFBIZ-4316) Widget $() escapes HTML. StringUtil.wrapString(contentText) throw an error

2011-06-15 Thread BJ Freeman (JIRA)

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

BJ Freeman updated OFBIZ-4316:
--

  Component/s: specialpurpose/ecommerce
   framework
   content
Fix Version/s: SVN trunk
  Description: 
from the ForumScreens.xml#ViewForumMessage
{code}

   ${contentText}
{code}
show escaped html
{code}
* Data Source * Marketing Campaign * Tracking Affiliate programs * Segment * Contact List * Reports https://demo-trunk.ofbiz.apache.org/marketing/control/main"USERNAME=flexadmin&PASSWORD=ofbiz&JavaScriptEnabled=Y";>Demo
 Marketing 
{code}
replacing 
{code}${contentText}{code}
with
{code}${StringUtil.wrapString(contentText).toString()}{code}
give this error
2011-06-15 18:16:43,200 (TP-Processor13) [ UtilXml.java:1043:ERROR]
XmlFileLoader: File
file:specialpurpose/ecommerce/widget/ForumScreens.xml
process error. Line: 151. Error message: cvc-complex-type.2.3: Element
'condition' cannot have character [children], because the type's content
type is element-only.


  was:
from the ForumScreens.xml#ViewForumMessage
[code]

   ${contentText}
[code]
show escaped html
[code]
* Data Source * Marketing Campaign * Tracking Affiliate programs * Segment * Contact List * Reports https://demo-trunk.ofbiz.apache.org/marketing/control/main"USERNAME=flexadmin&PASSWORD=ofbiz&JavaScriptEnabled=Y";>Demo
 Marketing 
[code]
replacing 
[code]${contentText}[code]
with
[code]${StringUtil.wrapString(contentText).toString()}[code]
give this error
2011-06-15 18:16:43,200 (TP-Processor13) [ UtilXml.java:1043:ERROR]
XmlFileLoader: File
file:specialpurpose/ecommerce/widget/ForumScreens.xml
process error. Line: 151. Error message: cvc-complex-type.2.3: Element
'condition' cannot have character [children], because the type's content
type is element-only.


Affects Version/s: SVN trunk

used wrong tag for code

> Widget $() escapes HTML. StringUtil.wrapString(contentText) throw an error
> --
>
> Key: OFBIZ-4316
> URL: https://issues.apache.org/jira/browse/OFBIZ-4316
> Project: OFBiz
>  Issue Type: Bug
>  Components: content, framework, specialpurpose/ecommerce
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>  Labels: html, rendering, widget
> Fix For: SVN trunk
>
>
> from the ForumScreens.xml#ViewForumMessage
> {code}
> 
>${contentText}
> {code}
> show escaped html
> {code}
> * Data Source * Marketing Campaign * Tracking Affiliate 
> programs * Segment * Contact List * Reports  class="postlink" 
> href="https://demo-trunk.ofbiz.apache.org/marketing/control/main"USERNAME=flexadmin&PASSWORD=ofbiz&JavaScriptEnabled=Y";>Demo
>  Marketing 
> {code}
> replacing 
> {code}${contentText}{code}
> with
> {code}${StringUtil.wrapString(contentText).toString()}{code}
> give this error
> 2011-06-15 18:16:43,200 (TP-Processor13) [ UtilXml.java:1043:ERROR]
> XmlFileLoader: File
> file:specialpurpose/ecommerce/widget/ForumScreens.xml
> process error. Line: 151. Error message: cvc-complex-type.2.3: Element
> 'condition' cannot have character [children], because the type's content
> type is element-only.

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




[jira] [Created] (OFBIZ-4316) Widget $() escapes HTML. StringUtil.wrapString(contentText) throw an error

2011-06-15 Thread BJ Freeman (JIRA)
Widget $() escapes HTML. StringUtil.wrapString(contentText) throw an error
--

 Key: OFBIZ-4316
 URL: https://issues.apache.org/jira/browse/OFBIZ-4316
 Project: OFBiz
  Issue Type: Bug
Reporter: BJ Freeman


from the ForumScreens.xml#ViewForumMessage
[code]

   ${contentText}
[code]
show escaped html
[code]
* Data Source * Marketing Campaign * Tracking Affiliate programs * Segment * Contact List * Reports https://demo-trunk.ofbiz.apache.org/marketing/control/main"USERNAME=flexadmin&PASSWORD=ofbiz&JavaScriptEnabled=Y";>Demo
 Marketing 
[code]
replacing 
[code]${contentText}[code]
with
[code]${StringUtil.wrapString(contentText).toString()}[code]
give this error
2011-06-15 18:16:43,200 (TP-Processor13) [ UtilXml.java:1043:ERROR]
XmlFileLoader: File
file:specialpurpose/ecommerce/widget/ForumScreens.xml
process error. Line: 151. Error message: cvc-complex-type.2.3: Element
'condition' cannot have character [children], because the type's content
type is element-only.


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




[jira] [Commented] (OFBIZ-4299) Make Ofbiz HTML5 ready

2011-05-28 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4299:
---

the design criteria that ofbiz was originally setup on was that the entity 
controlled creation and management of the persistence layer  as well as the UI 
layer.
I was the biggest reason I adopted ofbiz.reduced maintainence, in the software 
life cycle.

This means that all of the things related to HTML5 will have to be sent through 
the webapp rendering component. That is a major effort.

On top of this Microsoft will do something to change the spec so only thier 
browser will work best with their Web server apps.
This would mean re-work of things once they release thier HTML5 compatible 
browser.

so if this happens I suggest it be a branch like the js rework.




> Make Ofbiz HTML5 ready
> --
>
> Key: OFBIZ-4299
> URL: https://issues.apache.org/jira/browse/OFBIZ-4299
> Project: OFBiz
>  Issue Type: Task
>Reporter: Patrick Antivackis
>Priority: Minor
>  Labels: html5
>
> The idea is to create as many subtasks as needed to achieve this goal.

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


[jira] Commented: (OFBIZ-4130) Tenant super user (tenant admin) can view all database details of all tenants

2011-02-14 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4130:
---

I found this thread
http://osdir.com/ml/dev.ofbiz.apache.org/2010-03/msg01665.html

> Tenant super user (tenant admin) can view all database details of all tenants
> -
>
> Key: OFBIZ-4130
> URL: https://issues.apache.org/jira/browse/OFBIZ-4130
> Project: OFBiz
>  Issue Type: Bug
>  Components: framework
>Affects Versions: Release Branch 10.04, SVN trunk
>Reporter: Pierre Smits
>Priority: Critical
> Fix For: Release Branch 10.04, SVN trunk
>
>
> When a new tenant is created and the super user of the tenant (the 
> tenant-admin) logs in to WebTools and views the tables Tenant and 
> TenantDataSource he/she can see all details of the tenant databases, incl 
> TenantName, userID and password of the tenant databases.

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




[jira] Commented: (OFBIZ-4130) Tenant super user (tenant admin) can view all database details of all tenants

2011-02-14 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4130:
---

i did not do a patch so can't tell you what I changed it was last year.
when I get time will review and inform you.

> Tenant super user (tenant admin) can view all database details of all tenants
> -
>
> Key: OFBIZ-4130
> URL: https://issues.apache.org/jira/browse/OFBIZ-4130
> Project: OFBiz
>  Issue Type: Bug
>  Components: framework
>Affects Versions: Release Branch 10.04, SVN trunk
>Reporter: Pierre Smits
>Priority: Critical
> Fix For: Release Branch 10.04, SVN trunk
>
>
> When a new tenant is created and the super user of the tenant (the 
> tenant-admin) logs in to WebTools and views the tables Tenant and 
> TenantDataSource he/she can see all details of the tenant databases, incl 
> TenantName, userID and password of the tenant databases.

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




[jira] Commented: (OFBIZ-4130) Tenant super user (tenant admin) can view all database details of all tenants

2011-02-14 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4130:
---

you might look at this also
http://ofbiz.apache.org/docs/serviceconfig.html#ThreadPool


> Tenant super user (tenant admin) can view all database details of all tenants
> -
>
> Key: OFBIZ-4130
> URL: https://issues.apache.org/jira/browse/OFBIZ-4130
> Project: OFBiz
>  Issue Type: Bug
>  Components: framework
>Affects Versions: Release Branch 10.04, SVN trunk
>Reporter: Pierre Smits
>Priority: Critical
> Fix For: Release Branch 10.04, SVN trunk
>
>
> When a new tenant is created and the super user of the tenant (the 
> tenant-admin) logs in to WebTools and views the tables Tenant and 
> TenantDataSource he/she can see all details of the tenant databases, incl 
> TenantName, userID and password of the tenant databases.

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




[jira] Commented: (OFBIZ-4130) Tenant super user (tenant admin) can view all database details of all tenants

2011-02-14 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4130:
---

actually this is because the same seed data is loaded into each tenant database.
as I commented on the dev ml, there should be separate seed data for tenants 
from the base seed data that gets loaded when ofbiz is first created.
I did this by adding a tenant reader and separating base seed data from tenant 
seed data.

> Tenant super user (tenant admin) can view all database details of all tenants
> -
>
> Key: OFBIZ-4130
> URL: https://issues.apache.org/jira/browse/OFBIZ-4130
> Project: OFBiz
>  Issue Type: Bug
>  Components: framework
>Affects Versions: Release Branch 10.04, SVN trunk
>Reporter: Pierre Smits
>Priority: Critical
> Fix For: Release Branch 10.04, SVN trunk
>
>
> When a new tenant is created and the super user of the tenant (the 
> tenant-admin) logs in to WebTools and views the tables Tenant and 
> TenantDataSource he/she can see all details of the tenant databases, incl 
> TenantName, userID and password of the tenant databases.

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




[jira] Commented: (OFBIZ-4177) Be able to create a product from quick dropdown (Product Jump)

2011-02-12 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4177:
---

thanks for your effort.

> Be able to create a product from quick dropdown (Product Jump)
> --
>
> Key: OFBIZ-4177
> URL: https://issues.apache.org/jira/browse/OFBIZ-4177
> Project: OFBiz
>  Issue Type: Improvement
>  Components: product
>Affects Versions: SVN trunk
> Environment: NA
>Reporter: Jacques Le Roux
>Assignee: Jacques Le Roux
>Priority: Trivial
> Fix For: SVN trunk
>
> Attachments: OFBIZ-4177_Product Jump.patch
>
>
> The behavior was if you put in a productID that did not exist, and did a 
> jump to product, instead of a message No existing Products found, the 
> /catalog/control/EditProduct  enter the ID.
> then all you had to do was do an update to create the new product.
> is there a reason this functionality was removed

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




[jira] Commented: (OFBIZ-4095) Catalog Help docbook files

2011-02-12 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4095:
---

ok that takes the wind out of the sails
thanks for clarification.

> Catalog Help docbook files
> --
>
> Key: OFBIZ-4095
> URL: https://issues.apache.org/jira/browse/OFBIZ-4095
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: product
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>Assignee: Jacques Le Roux
>Priority: Minor
> Fix For: SVN trunk
>
> Attachments: OFBIZ-4095porduct1.patch
>
>
> top sub task for products component.

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




[jira] Commented: (OFBIZ-4175) add anchors to product help files

2011-02-11 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4175:
---

i will do just the files in your list in OFBIZ-4174
be aware applications/product/data/helpdata/HELP_PRODUCT_Features.xml is not 
attached to the help content resources

also non will show up in the cmssite/cms/APACHE_OFBIZ_HTML since no files are 
called out in
applications/product/documents/product.xml

> add anchors to product help files
> -
>
> Key: OFBIZ-4175
> URL: https://issues.apache.org/jira/browse/OFBIZ-4175
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: product
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>Priority: Minor
> Fix For: SVN trunk
>
>   Original Estimate: 4h
>  Remaining Estimate: 4h
>
> put anchors in Chapter, sections.

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




[jira] Commented: (OFBIZ-4095) Catalog Help docbook files

2011-02-11 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4095:
---

what were your expectation when you commented
Fill free to close if you have no more patches for this issue

> Catalog Help docbook files
> --
>
> Key: OFBIZ-4095
> URL: https://issues.apache.org/jira/browse/OFBIZ-4095
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: product
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>Priority: Minor
> Attachments: OFBIZ-4095porduct1.patch
>
>
> top sub task for products component.

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




[jira] Commented: (OFBIZ-3908) ofbiz setup conflict.

2011-02-11 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-3908:
---

as soon a my current backlog is cleared up (ha ha ha) I will turn my attention 
to it

> ofbiz setup conflict.
> -
>
> Key: OFBIZ-3908
> URL: https://issues.apache.org/jira/browse/OFBIZ-3908
> Project: OFBiz
>  Issue Type: Bug
>  Components: commonext/setup
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>Priority: Minor
> Fix For: SVN trunk
>
>
> this is seed only install
> used the ant to create a login
> then created a party for the login and linked them through the webtools.
> while creating the party I also create a postal and email contactmech.
> this created contactMechId 10001 and 10002
> then I went to setup to create the organization.
> on the save I got a error message:
> Error: ERROR: Could not complete the Create Contact Mechanism 
> [file:/applications/party/script/org/ofbiz/party/contact/ContactMechServices.xml#createContactMech]
>  process [problem creating the newValue value: Error while inserting: 
> [GenericEntity:ContactMech][contactMechId,10002(java.lang.String)][contactMechTypeId,POSTAL_ADDRESS(java.lang.String)]
> cut
>  (SQL Exception while executing the following:INSERT INTO public.CONTACT_MECH 
> (CONTACT_MECH_ID, CONTACT_MECH_TYPE_ID, INFO_STRING, LAST_UPDATED_STAMP, 
> LAST_UPDATED_TX_STAMP, CREATED_STAMP, CREATED_TX_STAMP) VALUES (?, ?, ?, ?, 
> ?, ?, ?) (ERROR: duplicate key value violates unique constraint 
> "pk_contact_mech"))]  calling service createPartyPostalAddress in 
> createOrganization
> have not dug into it yet.
> no one responded to email so put it here

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




[jira] Commented: (OFBIZ-4177) Be able to create a product from quick dropdown (Product Jump)

2011-02-11 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4177:
---

sorry when click on create get
The Following Errors Occurred:

The following required parameter is missing: [createProduct.internalName]

was suggesting adding the internalName=productID
but not a bigggy since they get a error and can fill in.

> Be able to create a product from quick dropdown (Product Jump)
> --
>
> Key: OFBIZ-4177
> URL: https://issues.apache.org/jira/browse/OFBIZ-4177
> Project: OFBiz
>  Issue Type: Improvement
>  Components: product
>Affects Versions: SVN trunk
> Environment: NA
>Reporter: Jacques Le Roux
>Assignee: Jacques Le Roux
>Priority: Trivial
> Fix For: SVN trunk
>
> Attachments: OFBIZ-4177_Product Jump.patch
>
>
> The behavior was if you put in a productID that did not exist, and did a 
> jump to product, instead of a message No existing Products found, the 
> /catalog/control/EditProduct  enter the ID.
> then all you had to do was do an update to create the new product.
> is there a reason this functionality was removed

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




[jira] Commented: (OFBIZ-4177) Be able to create a product from quick dropdown (Product Jump)

2011-02-11 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4177:
---

have to set the internalname also


> Be able to create a product from quick dropdown (Product Jump)
> --
>
> Key: OFBIZ-4177
> URL: https://issues.apache.org/jira/browse/OFBIZ-4177
> Project: OFBiz
>  Issue Type: Improvement
>  Components: product
>Affects Versions: SVN trunk
> Environment: NA
>Reporter: Jacques Le Roux
>Assignee: Jacques Le Roux
>Priority: Trivial
> Fix For: SVN trunk
>
> Attachments: OFBIZ-4177_Product Jump.patch
>
>
> The behavior was if you put in a productID that did not exist, and did a 
> jump to product, instead of a message No existing Products found, the 
> /catalog/control/EditProduct  enter the ID.
> then all you had to do was do an update to create the new product.
> is there a reason this functionality was removed

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




[jira] Commented: (OFBIZ-4175) add anchors to product help files

2011-02-10 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4175:
---

check it out here
http://demo-trunk.businessesnetwork.com/cmssite/cms/APACHE_OFBIZ_HTML#ProductCatalogComponent

> add anchors to product help files
> -
>
> Key: OFBIZ-4175
> URL: https://issues.apache.org/jira/browse/OFBIZ-4175
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: product
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>Priority: Minor
> Fix For: SVN trunk
>
>   Original Estimate: 4h
>  Remaining Estimate: 4h
>
> put anchors in Chapter, sections.

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




[jira] Commented: (OFBIZ-4175) add anchors to product help files

2011-02-10 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4175:
---

at  this point I have integrated all the files so they show up in the 
cmssite/cms/APACHE_OFBIZ_HTML
they are not in correct order and some are either shells or have not been 
formatted for docbook.
so do you want the whole batch then others can work on it, or I will when I 
have time 
or just the ones that are finished
as a note I find it hard to type in comments since they are set for larger than 
1024 and don't scroll over.


> add anchors to product help files
> -
>
> Key: OFBIZ-4175
> URL: https://issues.apache.org/jira/browse/OFBIZ-4175
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: product
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>Priority: Minor
> Fix For: SVN trunk
>
>   Original Estimate: 4h
>  Remaining Estimate: 4h
>
> put anchors in Chapter, sections.

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




[jira] Commented: (OFBIZ-4175) add anchors to product help files

2011-02-10 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4175:
---

this may take a few days, need to clean up and link files.
Plus I have some more will submit

> add anchors to product help files
> -
>
> Key: OFBIZ-4175
> URL: https://issues.apache.org/jira/browse/OFBIZ-4175
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: product
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>Priority: Minor
> Fix For: SVN trunk
>
>   Original Estimate: 4h
>  Remaining Estimate: 4h
>
> put anchors in Chapter, sections.

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




[jira] Created: (OFBIZ-4175) add anchors to product help files

2011-02-10 Thread BJ Freeman (JIRA)
add anchors to product help files
-

 Key: OFBIZ-4175
 URL: https://issues.apache.org/jira/browse/OFBIZ-4175
 Project: OFBiz
  Issue Type: Sub-task
  Components: product
Affects Versions: SVN trunk
Reporter: BJ Freeman
Priority: Minor
 Fix For: SVN trunk


put anchors in Chapter, sections.

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




[jira] Commented: (OFBIZ-635) Business Setup Wizard for Ofbiz.

2011-02-10 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-635:
--

I think this link make more sense
https://cwiki.apache.org/confluence/display/OFBREQDES/Quick+Setup

> Business Setup Wizard for Ofbiz.
> 
>
> Key: OFBIZ-635
> URL: https://issues.apache.org/jira/browse/OFBIZ-635
> Project: OFBiz
>  Issue Type: Improvement
>  Components: framework
>Affects Versions: SVN trunk
>Reporter: Anil K Patel
>Assignee: Anil K Patel
> Fix For: SVN trunk
>
>
> It will be nice to have a Business set up wizard that will walk a User 
> through steps for setting up a Business unit. Document located at following 
> link can be used  as Guide/Spec document.
> http://docs.ofbiz.org/display/OFBENDUSER/Apache+OFBiz+Business+Setup+Guide

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




[jira] Commented: (OFBIZ-4174) add anchor to SingleSignOn.xml

2011-02-10 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4174:
---

yeah sorry the docbook.xsd will give an error but will render correctly.
anchors go before what you want to display.
the conversion to books I estimate is about 24 manhours including testing, so 
will not be done for a while.
need to create a Set at toplevel which means updateding the content resources.
then redefine all the chapters in documentation folders to books and put them 
in the set.
as far as anchors 
use

http://www.w3.org/2001/XMLSchema-instance";..
this will show the chapter header with table contents for chapter

this also puts them in the table contents as well as an anchor.

I will submit a patch for all you listed by  tomorrow.

> add anchor to SingleSignOn.xml
> --
>
> Key: OFBIZ-4174
> URL: https://issues.apache.org/jira/browse/OFBIZ-4174
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: framework
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>Assignee: Jacques Le Roux
>Priority: Minor
> Fix For: SVN trunk
>
> Attachments: OFBIZ-4174singlesingon.patch, 
> OFBIZ-4174singlesingon.patch
>
>
> add anchor /cmssite/cms/APACHE_OFBIZ_HTML#CASLDAP so can use it permanent 
> link.

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




[jira] Updated: (OFBIZ-4174) add anchor to SingleSignOn.xml

2011-02-10 Thread BJ Freeman (JIRA)

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

BJ Freeman updated OFBIZ-4174:
--

Attachment: OFBIZ-4174singlesingon.patch

updated patch

> add anchor to SingleSignOn.xml
> --
>
> Key: OFBIZ-4174
> URL: https://issues.apache.org/jira/browse/OFBIZ-4174
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: framework
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>Assignee: Jacques Le Roux
>Priority: Minor
> Fix For: SVN trunk
>
> Attachments: OFBIZ-4174singlesingon.patch, 
> OFBIZ-4174singlesingon.patch
>
>
> add anchor /cmssite/cms/APACHE_OFBIZ_HTML#CASLDAP so can use it permanent 
> link.

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




[jira] Commented: (OFBIZ-4174) add anchor to SingleSignOn.xml

2011-02-10 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4174:
---

yes I did a quick and dirty.
anchors can be multiple so I use the Html standard, since putting them in title 
makes it messy, IHmO
in reality anything below the anchor will be displayed.
so I did an ID in the section for CASLDAP which will be an anchor for the 
chapter.
seperate anchors for CAS and LDAP for the title.

I have a hard time with the new layout of the Jira the grey is hard to see for 
my old  eyes. so could not make out you comment with code.


> add anchor to SingleSignOn.xml
> --
>
> Key: OFBIZ-4174
> URL: https://issues.apache.org/jira/browse/OFBIZ-4174
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: framework
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>Assignee: Jacques Le Roux
>Priority: Minor
> Fix For: SVN trunk
>
> Attachments: OFBIZ-4174singlesingon.patch
>
>
> add anchor /cmssite/cms/APACHE_OFBIZ_HTML#CASLDAP so can use it permanent 
> link.

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




[jira] Commented: (OFBIZ-4174) add anchor to SingleSignOn.xml

2011-02-10 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4174:
---

updated 
http://demo-trunk.businessesnetwork.com/cmssite/cms/APACHE_OFBIZ_HTML#CASLDAP
possibly you did not refresh(reload) the page after adding the patch.

> add anchor to SingleSignOn.xml
> --
>
> Key: OFBIZ-4174
> URL: https://issues.apache.org/jira/browse/OFBIZ-4174
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: framework
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>Priority: Minor
> Attachments: OFBIZ-4174singlesingon.patch
>
>
> add anchor /cmssite/cms/APACHE_OFBIZ_HTML#CASLDAP so can use it permanent 
> link.

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




[jira] Updated: (OFBIZ-4174) add anchor to SingleSignOn.xml

2011-02-09 Thread BJ Freeman (JIRA)

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

BJ Freeman updated OFBIZ-4174:
--

Attachment: OFBIZ-4174singlesingon.patch

> add anchor to SingleSignOn.xml
> --
>
> Key: OFBIZ-4174
> URL: https://issues.apache.org/jira/browse/OFBIZ-4174
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: framework
>Affects Versions: SVN trunk
>Reporter: BJ Freeman
>Priority: Minor
> Attachments: OFBIZ-4174singlesingon.patch
>
>
> add anchor /cmssite/cms/APACHE_OFBIZ_HTML#CASLDAP so can use it permanent 
> link.

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




[jira] Created: (OFBIZ-4174) add anchor to SingleSignOn.xml

2011-02-09 Thread BJ Freeman (JIRA)
add anchor to SingleSignOn.xml
--

 Key: OFBIZ-4174
 URL: https://issues.apache.org/jira/browse/OFBIZ-4174
 Project: OFBiz
  Issue Type: Sub-task
  Components: framework
Affects Versions: SVN trunk
Reporter: BJ Freeman
Priority: Minor


add anchor /cmssite/cms/APACHE_OFBIZ_HTML#CASLDAP so can use it permanent link.

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




[jira] Commented: (OFBIZ-4159) subscription resources page not alinged properly

2011-02-03 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4159:
---

in the version I support, people do this for me.
unfortunately it does not fallow the format of using field names but more 
business terms. So is not usable in the trunck
guess just have to wait till someone that is motivated to do it.:D

> subscription resources page not alinged properly
> 
>
> Key: OFBIZ-4159
> URL: https://issues.apache.org/jira/browse/OFBIZ-4159
> Project: OFBiz
>  Issue Type: Bug
>  Components: product
>Affects Versions: Release Branch 10.04, SVN trunk
>Reporter: BJ Freeman
> Fix For: Release Branch 10.04, SVN trunk
>
>
> select a product
> jump to Subscription Resources
> https://demo-trunk.ofbiz.apache.org/catalog/control/EditProductSubscriptionResources
> scroll down to the add portion.
> the input fields are on the far right, out of sight for a 1024X800 screen
> Flatgrey and thomahawk.

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




[jira] Commented: (OFBIZ-4159) subscription resources page not alinged properly

2011-02-02 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4159:
---

I grew up in typewriter world. when my mind says left I use my right hand and 
move it right.
that is more physiological.
I stuttered  verbally till 11, but still stutter when I write.
Code is the only place I know I am correct since it checks.
when I am tired or stressed, I might as well forget written communications.
as you have seen in the past.
 

> subscription resources page not alinged properly
> 
>
> Key: OFBIZ-4159
> URL: https://issues.apache.org/jira/browse/OFBIZ-4159
> Project: OFBiz
>  Issue Type: Bug
>  Components: product
>Affects Versions: Release Branch 10.04, SVN trunk
>Reporter: BJ Freeman
> Fix For: Release Branch 10.04, SVN trunk
>
>
> select a product
> jump to Subscription Resources
> https://demo-trunk.ofbiz.apache.org/catalog/control/EditProductSubscriptionResources
> scroll down to the add portion.
> the input fields are on the far right, out of sight for a 1024X800 screen
> Flatgrey and thomahawk.

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




[jira] Commented: (OFBIZ-4159) subscription resources page not alinged properly

2011-02-02 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-4159:
---

your are asking a dyslexic to put text in. LOL
I am sure you see my writing.

> subscription resources page not alinged properly
> 
>
> Key: OFBIZ-4159
> URL: https://issues.apache.org/jira/browse/OFBIZ-4159
> Project: OFBiz
>  Issue Type: Bug
>  Components: product
>Affects Versions: Release Branch 10.04, SVN trunk
>Reporter: BJ Freeman
> Fix For: Release Branch 10.04, SVN trunk
>
>
> select a product
> jump to Subscription Resources
> https://demo-trunk.ofbiz.apache.org/catalog/control/EditProductSubscriptionResources
> scroll down to the add portion.
> the input fields are on the far right, out of sight for a 1024X800 screen
> Flatgrey and thomahawk.

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




[jira] Created: (OFBIZ-4159) subscription resources page not alinged properly

2011-01-31 Thread BJ Freeman (JIRA)
subscription resources page not alinged properly


 Key: OFBIZ-4159
 URL: https://issues.apache.org/jira/browse/OFBIZ-4159
 Project: OFBiz
  Issue Type: Bug
  Components: product
Affects Versions: Release Branch 10.04, SVN trunk
Reporter: BJ Freeman
 Fix For: Release Branch 10.04, SVN trunk


select a product
jump to Subscription Resources
https://demo-trunk.ofbiz.apache.org/catalog/control/EditProductSubscriptionResources
scroll down to the add portion.
the input fields are on the far right, out of sight for a 1024X800 screen
Flatgrey and thomahawk.

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




[jira] Commented: (OFBIZ-3971) enhancement to create new tenants easier

2011-01-29 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-3971:
---

also check if this does not happen
https://issues.apache.org/jira/browse/OFBIZ-3908

> enhancement to create new tenants easier
> 
>
> Key: OFBIZ-3971
> URL: https://issues.apache.org/jira/browse/OFBIZ-3971
> Project: OFBiz
>  Issue Type: Improvement
>  Components: commonext/setup, framework
>Affects Versions: SVN trunk
> Environment: All
>Reporter: Pierre Smits
>Assignee: Jacques Le Roux
> Fix For: SVN trunk
>
> Attachments: OFBIZ-3971-multitenant-improvement-20110121.patch
>
>
> This modification enables backend admins to easier create new tenants. 
> It first enters data about the tenant (tenantID and tenantName) in entity 
> Tenant and TenantDataSource.
> Subsequently it creates the databases (derby only) for the new delegator. The 
> backend-admin can state which datafiles must be loaded in the newly created 
> databases (seed, seed-initial, ext, etc...)
> Finally it creates the tenant-admin and its password in the newly created 
> database. The name of tenant-admin is based on the tenantId given (i.e. 
> tenantId-admin). The password of the tenant-admin must be changed on first 
> login.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (OFBIZ-3971) enhancement to create new tenants easier

2011-01-29 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-3971:
---

please use the jira for comments it is easier to keep track.
I a not sure I can afford time before end of feb.
have a lot on my plate.
I  am on a simular track
http://mail-archives.apache.org/mod_mbox/ofbiz-dev/201008.mbox/ajax/%3c4c76f7b4.4090...@free-man.net%3E

> enhancement to create new tenants easier
> 
>
> Key: OFBIZ-3971
> URL: https://issues.apache.org/jira/browse/OFBIZ-3971
> Project: OFBiz
>  Issue Type: Improvement
>  Components: commonext/setup, framework
>Affects Versions: SVN trunk
> Environment: All
>Reporter: Pierre Smits
>Assignee: Jacques Le Roux
> Fix For: SVN trunk
>
> Attachments: OFBIZ-3971-multitenant-improvement-20110121.patch
>
>
> This modification enables backend admins to easier create new tenants. 
> It first enters data about the tenant (tenantID and tenantName) in entity 
> Tenant and TenantDataSource.
> Subsequently it creates the databases (derby only) for the new delegator. The 
> backend-admin can state which datafiles must be loaded in the newly created 
> databases (seed, seed-initial, ext, etc...)
> Finally it creates the tenant-admin and its password in the newly created 
> database. The name of tenant-admin is based on the tenantId given (i.e. 
> tenantId-admin). The password of the tenant-admin must be changed on first 
> login.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (OFBIZ-2535) entity import through webtools dies not import string decimal

2011-01-24 Thread BJ Freeman (JIRA)

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

BJ Freeman commented on OFBIZ-2535:
---

thanks will check out soon


> entity import through webtools dies not import string decimal
> -
>
> Key: OFBIZ-2535
> URL: https://issues.apache.org/jira/browse/OFBIZ-2535
> Project: OFBiz
>  Issue Type: Bug
>  Components: framework
>Affects Versions: Release Branch 09.04
> Environment: 9.04 framework/webtools
>Reporter: BJ Freeman
>Priority: Minor
> Fix For: Release Branch 09.04
>
>
> using the webtools import
>  productTypeId="FINISHED_GOOD" description="Stereo Pre Amplifier" 
> brandName="AudioSource" longDescription="
  • 6 stereo line level > inputs, 2 stereo line outputs
  • Control center for your AV > system
  • Versatile switching and dubbing capabilities
  • Bass, > treble, balance and volume controls
  • 1 switched and one un-switched > AC power outlet
  • 10Hz-10kHz frequency response
  • Less than > 0.008% THD
  • 110dB signal-to-noise ratio
  • Tape loop for > outboard processors
  • 16 1/2 W x 2 1/2 H x 11 1/2 D" > weight="9.146185" weightUomId="WT_lb" productName="Stereo Pre Amplifier" > quantityIncluded="12" isVirtual="Y" isVariant="N" /> > the weight="9.146185" > does not show up in the > webtools/control/ViewGeneric?entityName=Product&productId=3721 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.

  • [jira] Commented: (OFBIZ-4132) Not all pdf rendering links render to a new (_blank) target_window

    2011-01-22 Thread BJ Freeman (JIRA)
    
    [ 
    https://issues.apache.org/jira/browse/OFBIZ-4132?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12985201#action_12985201
     ] 
    
    BJ Freeman commented on OFBIZ-4132:
    ---
    
    steps reproduce 
    
    > Not all pdf rendering links render to a new (_blank) target_window
    > --
    >
    > Key: OFBIZ-4132
    > URL: https://issues.apache.org/jira/browse/OFBIZ-4132
    > Project: OFBiz
    >  Issue Type: Improvement
    >  Components: ALL APPLICATIONS
    >Affects Versions: SVN trunk
    >Reporter: Pierre Smits
    >Priority: Minor
    > Fix For: SVN trunk
    >
    >
    > In various application pdf files can be rendered. However, not all statements 
    > include a target-window="_BLANK" instruction. Without this instruction te 
    > pdf's are rendered in the browser window where the user accessing the ofbiz 
    > environment. This is an undesirable situation as it lessens the user 
    > experience
    
    -- 
    This message is automatically generated by JIRA.
    -
    You can reply to this email to add a comment to the issue online.
    
    
    

    [jira] Commented: (OFBIZ-3435) Ebay intergation

    2011-01-21 Thread BJ Freeman (JIRA)
    
    [ 
    https://issues.apache.org/jira/browse/OFBIZ-3435?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12985060#action_12985060
     ] 
    
    BJ Freeman commented on OFBIZ-3435:
    ---
    
    please submit as a patch so committer can review code and  data.
    
    > Ebay intergation 
    > -
    >
    > Key: OFBIZ-3435
    > URL: https://issues.apache.org/jira/browse/OFBIZ-3435
    > Project: OFBiz
    >  Issue Type: Improvement
    >  Components: specialpurpose/ebay
    >Affects Versions: SVN trunk
    >Reporter: Florin Popa
    >Priority: Minor
    > Fix For: SVN trunk
    >
    > Attachments: ebay resources.zip, ofbiz-dbseed.jar
    >
    >
    > It is an almost full implementation of latest Ebay API
    
    -- 
    This message is automatically generated by JIRA.
    -
    You can reply to this email to add a comment to the issue online.
    
    
    

    [jira] Commented: (OFBIZ-2437) Add the ability to select different front end themes from the ecommerce store.

    2011-01-21 Thread BJ Freeman (JIRA)
    
    [ 
    https://issues.apache.org/jira/browse/OFBIZ-2437?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12984971#action_12984971
     ] 
    
    BJ Freeman commented on OFBIZ-2437:
    ---
    
    I would suggest if the this form of selection only be available to admin roles.
    
    
    > Add the ability to select different front end themes from the ecommerce store.
    > --
    >
    > Key: OFBIZ-2437
    > URL: https://issues.apache.org/jira/browse/OFBIZ-2437
    > Project: OFBiz
    >  Issue Type: New Feature
    >  Components: specialpurpose/ecommerce
    >Affects Versions: SVN trunk
    >Reporter: Rob Schapper
    >Priority: Minor
    > Fix For: SVN trunk
    >
    > Attachments: ChangeEcommerceTheme.patch
    >
    >
    > This patch adds a drop down on the ecommerce site to allow the user to select 
    > different front end themes on the fly much like the back end themes
    
    -- 
    This message is automatically generated by JIRA.
    -
    You can reply to this email to add a comment to the issue online.
    
    
    

    [jira] Commented: (OFBIZ-2437) Add the ability to select different front end themes from the ecommerce store.

    2011-01-21 Thread BJ Freeman (JIRA)
    
    [ 
    https://issues.apache.org/jira/browse/OFBIZ-2437?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12984924#action_12984924
     ] 
    
    BJ Freeman commented on OFBIZ-2437:
    ---
    
    Yes would have to put in configuration to allow this to satisfied those that 
    don't want that ability to happen.
    
    
    > Add the ability to select different front end themes from the ecommerce store.
    > --
    >
    > Key: OFBIZ-2437
    > URL: https://issues.apache.org/jira/browse/OFBIZ-2437
    > Project: OFBiz
    >  Issue Type: New Feature
    >  Components: specialpurpose/ecommerce
    >Affects Versions: SVN trunk
    >Reporter: Rob Schapper
    >Priority: Minor
    > Fix For: SVN trunk
    >
    > Attachments: ChangeEcommerceTheme.patch
    >
    >
    > This patch adds a drop down on the ecommerce site to allow the user to select 
    > different front end themes on the fly much like the back end themes
    
    -- 
    This message is automatically generated by JIRA.
    -
    You can reply to this email to add a comment to the issue online.
    
    
    

    [jira] Commented: (OFBIZ-4116) Ecommerce Help docbook files

    2011-01-18 Thread BJ Freeman (JIRA)
    
    [ 
    https://issues.apache.org/jira/browse/OFBIZ-4116?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12983259#action_12983259
     ] 
    
    BJ Freeman commented on OFBIZ-4116:
    ---
    
    I am going to re-submit based on email.
    Yes it will be both user explaination and tech info.
    Both will be individual books and included in the master list for Users an Tech.
    
    I may find some time to add some info in both.
    
    > Ecommerce Help docbook files
    > 
    >
    > Key: OFBIZ-4116
    > URL: https://issues.apache.org/jira/browse/OFBIZ-4116
    > Project: OFBiz
    >  Issue Type: Sub-task
    >  Components: specialpurpose/ecommerce
    >Affects Versions: SVN trunk
    >Reporter: BJ Freeman
    >Priority: Minor
    > Fix For: SVN trunk
    >
    > Attachments: OFBIZ-4116Ecommercerhelpdoc.patch
    >
    >
    > help files for ecommerce
    
    -- 
    This message is automatically generated by JIRA.
    -
    You can reply to this email to add a comment to the issue online.
    
    
    

    [jira] Commented: (OFBIZ-4120) Umbrella task for features which use javascript to degrade gracefully

    2011-01-17 Thread BJ Freeman (JIRA)
    
    [ 
    https://issues.apache.org/jira/browse/OFBIZ-4120?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12982832#action_12982832
     ] 
    
    BJ Freeman commented on OFBIZ-4120:
    ---
    
    guess I am the lonely decenter I had to turn on my browser java script to see 
    what I was missing.
    looks like I will have to do more manual appliation of commits from now on.
    
    why do I keep the JS off
    a lot of sites are showing up that use js to override pop ups and install 
    applications that are usually viruses or trojans.
    
    
    
    > Umbrella task for features which use javascript to degrade gracefully 
    > --
    >
    > Key: OFBIZ-4120
    > URL: https://issues.apache.org/jira/browse/OFBIZ-4120
    > Project: OFBiz
    >  Issue Type: Bug
    >  Components: ALL APPLICATIONS
    >Affects Versions: SVN trunk
    >Reporter: Jacques Le Roux
    >Assignee: Jacques Le Roux
    >
    > By using more an more javascript we forget sometimes that it may not 
    > available and OFBiz features should continue to work even it's not as easier 
    > for users than wih javascript.
    
    -- 
    This message is automatically generated by JIRA.
    -
    You can reply to this email to add a comment to the issue online.
    
    
    

    [jira] Commented: (OFBIZ-4117) To reject a new created order, the order status does not change

    2011-01-15 Thread BJ Freeman (JIRA)
    
    [ 
    https://issues.apache.org/jira/browse/OFBIZ-4117?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12982163#action_12982163
     ] 
    
    BJ Freeman commented on OFBIZ-4117:
    ---
    
    would look at  changeOrderStatus.
    
    > To reject a new created order, the order status does not change
    > ---
    >
    > Key: OFBIZ-4117
    > URL: https://issues.apache.org/jira/browse/OFBIZ-4117
    > Project: OFBiz
    >  Issue Type: Bug
    >  Components: order
    >Affects Versions: SVN trunk
    > Environment: OFBiz trunk
    >Reporter: Leon
    >Priority: Minor
    > Fix For: SVN trunk
    >
    >
    > Via order manager web application, after I create a order, the order status 
    > is "ORDER_CREATED". If I approve this order, the order status will become 
    > "ORDER_APPROVED" just as expected. But if I reject it, the order status is 
    > still "ORDER_CREATED" while all the order item status is changed to 
    > "rejected".
    > Is it a bug or is there any particular business consideration?
    > btw, IMHO, if the order is rejected, user who created this order can 
    > re-submit the order for approval after review the rejected reason and modify 
    > the order as required. But it seems there's no such 
    > create-reject-update-approve workflow in current order management application.
    
    -- 
    This message is automatically generated by JIRA.
    -
    You can reply to this email to add a comment to the issue online.
    
    
    

    [jira] Updated: (OFBIZ-4116) Ecommerce Help docbook files

    2011-01-13 Thread BJ Freeman (JIRA)
    
     [ 
    https://issues.apache.org/jira/browse/OFBIZ-4116?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
     ]
    
    BJ Freeman updated OFBIZ-4116:
    --
    
    Attachment: OFBIZ-4116Ecommercerhelpdoc.patch
    
    hopefully someone will fill these in
    
    
    > Ecommerce Help docbook files
    > 
    >
    > Key: OFBIZ-4116
    > URL: https://issues.apache.org/jira/browse/OFBIZ-4116
    > Project: OFBiz
    >  Issue Type: Sub-task
    >  Components: specialpurpose/ecommerce
    >Affects Versions: SVN trunk
    >Reporter: BJ Freeman
    >Priority: Minor
    > Fix For: SVN trunk
    >
    > Attachments: OFBIZ-4116Ecommercerhelpdoc.patch
    >
    >
    > help files for ecommerce
    
    -- 
    This message is automatically generated by JIRA.
    -
    You can reply to this email to add a comment to the issue online.
    
    
    

    [jira] Created: (OFBIZ-4116) Ecommerce Help docbook files

    2011-01-13 Thread BJ Freeman (JIRA)
    Ecommerce Help docbook files
    
    
     Key: OFBIZ-4116
     URL: https://issues.apache.org/jira/browse/OFBIZ-4116
     Project: OFBiz
      Issue Type: Sub-task
      Components: specialpurpose/ecommerce
    Affects Versions: SVN trunk
    Reporter: BJ Freeman
    Priority: Minor
     Fix For: SVN trunk
    
    
    help files for ecommerce
    
    -- 
    This message is automatically generated by JIRA.
    -
    You can reply to this email to add a comment to the issue online.
    
    
    

    [jira] Commented: (OFBIZ-4089) USPS use the new Shipment Gateway Config features

    2011-01-13 Thread BJ Freeman (JIRA)
    
    [ 
    https://issues.apache.org/jira/browse/OFBIZ-4089?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12981421#action_12981421
     ] 
    
    BJ Freeman commented on OFBIZ-4089:
    ---
    
    marco I created a HELP_FACILITY_ShippingInerface.xml
    for you to fillin if you would be so kind.
    
    https://issues.apache.org/jira/browse/OFBIZ-4115
    
    > USPS use the new Shipment Gateway Config features
    > -
    >
    > Key: OFBIZ-4089
    > URL: https://issues.apache.org/jira/browse/OFBIZ-4089
    > Project: OFBiz
    >  Issue Type: Sub-task
    >Reporter: Marco Risaliti
    >Assignee: Marco Risaliti
    > Fix For: SVN trunk
    >
    > Attachments: usps.patch
    >
    >
    
    
    -- 
    This message is automatically generated by JIRA.
    -
    You can reply to this email to add a comment to the issue online.
    
    
    

    [jira] Updated: (OFBIZ-4115) Product Help docbook files

    2011-01-13 Thread BJ Freeman (JIRA)
    
     [ 
    https://issues.apache.org/jira/browse/OFBIZ-4115?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
     ]
    
    BJ Freeman updated OFBIZ-4115:
    --
    
    Attachment: OFBIZ-4115_facilityhelp.patch
    
    this is a roughed out files to help marco document the USPS use the new 
    Shipment Gateway Config features for config.OFBIZ-4089
    
    > Product Help docbook files
    > --
    >
    > Key: OFBIZ-4115
    > URL: https://issues.apache.org/jira/browse/OFBIZ-4115
    > Project: OFBiz
    >  Issue Type: Sub-task
    >Affects Versions: SVN trunk
    >Reporter: BJ Freeman
    >Priority: Minor
    > Fix For: SVN trunk
    >
    > Attachments: OFBIZ-4115_facilityhelp.patch
    >
    >
    > Docbook files for product component.
    
    -- 
    This message is automatically generated by JIRA.
    -
    You can reply to this email to add a comment to the issue online.
    
    
    

      1   2   3   4   5   6   7   8   9   10   >