Re: Ann: MyFaces Ajax Fileupload and how to use it

2010-08-02 Thread Ganesh
Hi Martin, From what I understand the feature is disabled as long as you don't set myfaces.config[transportAutoSelection] = true; So why have a second param to do the same thing? Best regards, Ganesh Martin Marinschek schrieb: Perfect. Can we talk about having the context param

Re: [GSoC] where to commit ?

2010-08-02 Thread Matthias Wessendorf
Great! Thanks! Matthias On Sat, Jul 31, 2010 at 12:42 AM, Ali Ok al...@aliok.com.tr wrote: Hi, I just created the folder http://svn.apache.org/repos/asf/myfaces/gsoc and put Html5 project into http://svn.apache.org/repos/asf/myfaces/gsoc/html5-comp-lib/trunk/ Greetings, Ali On Wed, Jul

Re: Ann: MyFaces Ajax Fileupload and how to use it

2010-08-02 Thread Werner Punz
Btw. another thing, I tried to enable fileupload via xhr level2 (upcoming xhr extension in html5) I was able to send the form data but unfortunately the sent multipart form request was missing some vital meta information and broke the spec, on both implementations I could grasp (Firefox4 and

Re: Ann: MyFaces Ajax Fileupload and how to use it

2010-08-02 Thread Werner Punz
Hi Martin this would make only sense if we had a bunch of features which can be turned on via such a switch, which we don´t from my perspective because the queue control features which we have internally cannot be turned on switch like but have to be configured with params like

[jira] Created: (MYFACES-2852) jsf.js: preparations for the integration of xhr level2 fileuploads

2010-08-02 Thread Werner Punz (JIRA)
jsf.js: preparations for the integration of xhr level2 fileuploads -- Key: MYFACES-2852 URL: https://issues.apache.org/jira/browse/MYFACES-2852 Project: MyFaces Core Issue

[jira] Resolved: (MYFACES-2852) jsf.js: preparations for the integration of xhr level2 fileuploads

2010-08-02 Thread Werner Punz (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-2852?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Werner Punz resolved MYFACES-2852. -- Fix Version/s: 2.0.2-SNAPSHOT Resolution: Fixed jsf.js: preparations for the

[jira] Commented: (TOBAGO-903) Wrong calculation of suggest box position

2010-08-02 Thread Udo Schnurpfeil (JIRA)
[ https://issues.apache.org/jira/browse/TOBAGO-903?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12894508#action_12894508 ] Udo Schnurpfeil commented on TOBAGO-903: It seems, that this bug is valid for all

Re: [MyFaces Core] Build Failure?

2010-08-02 Thread Matthias Wessendorf
Thanks! On Fri, Jul 30, 2010 at 10:06 PM, Rudy De Busscher rdebussc...@gmail.com wrote: Werner, Matthias, Fixed the problem with the MockCompositeValueExpression in MyFaces test. (adjusted the getValue() method ) The composite EL within Test and all MyFaces testCases works again. Regards

[jira] Resolved: (TOBAGO-509) images doesn't show when in a tabbed pane not visible at page display

2010-08-02 Thread Udo Schnurpfeil (JIRA)
[ https://issues.apache.org/jira/browse/TOBAGO-509?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Udo Schnurpfeil resolved TOBAGO-509. Fix Version/s: 1.5.0-alpha-2 1.0.28 1.5.0

RendererUtils.renderChildren()

2010-08-02 Thread Bashirazad, Wahid
Hi, I'm investigating some time to improve the performance of my application at the moment. My focus is due to reduction of CPU usage. I noticed that the method isRendered() of every UICompoment is called 3 times in the RenderResponse phase (MyFaces 1.2.8). This means 3 executions of the

[jira] Updated: (TRINIDAD-1834) tr:showDetail prompt facet doesn't fire ActionEvents if it's closed

2010-08-02 Thread Markus Dreher (JIRA)
[ https://issues.apache.org/jira/browse/TRINIDAD-1834?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Markus Dreher updated TRINIDAD-1834: Status: Patch Available (was: Open) tr:showDetail prompt facet doesn't fire

[jira] Created: (MYFACES-2853) jsf.js: compression optimum not reached

2010-08-02 Thread Werner Punz (JIRA)
jsf.js: compression optimum not reached --- Key: MYFACES-2853 URL: https://issues.apache.org/jira/browse/MYFACES-2853 Project: MyFaces Core Issue Type: Improvement Affects Versions: 2.0.2-SNAPSHOT

Re: RendererUtils.renderChildren()

2010-08-02 Thread Blake Sullivan
If you do this then the EL will never be evaluated again while the user is on this view as the newly set value will eclipse the ValueExpression and will be state saved with the view state. This is not what you want. -- Blake Sullivan On 8/2/10 7:23 AM, Bashirazad, Wahid wrote: Hi, I'm

[jira] Created: (EXTVAL-112) Make message for @Equals configurable

2010-08-02 Thread JIRA
Make message for @Equals configurable - Key: EXTVAL-112 URL: https://issues.apache.org/jira/browse/EXTVAL-112 Project: MyFaces Extensions Validator Issue Type: Improvement Components: Property

Myfaces vs. mojarra restore view performance

2010-08-02 Thread Martin Koci
Hi, our profiling results show that myfaces are significantly slower in restore view phase: com.sun.faces LifeCycle .. restoreView : 80 ms o.a.m.RestoreViewExecutor : 750ms! This result is perfectly reproducible in our case. I profile it on a application real application - I cannot post

Re: Myfaces vs. mojarra restore view performance

2010-08-02 Thread Jan-Kees van Andel
Hey, I'm very interested in the details behind those 750ms. Can you post the hotspots? Like: number of invocations, ms. self time and ms. total time. Thanks. Regards, Jan-Kees 2010/8/2 Martin Koci martin.k...@aura.cz Hi, our profiling results show that myfaces are significantly slower in

Re: Myfaces vs. mojarra restore view performance

2010-08-02 Thread Michael Concini
Martin, We've been seeing some similar bottlenecks in our testing on Websphere. We've think we have it isolated down to where the largest portion of the impacts are coming from checkResourceExists() in DefaultViewHandlerSupport and DefaultRestoreViewSupport. The problem, at least in our

Re: Myfaces vs. mojarra restore view performance

2010-08-02 Thread Matthias Wessendorf
UIInput is slow, we already have bugs for that -Matthias On Mon, Aug 2, 2010 at 7:18 PM, Jan-Kees van Andel jankeesvanan...@gmail.com wrote: Hey, I'm very interested in the details behind those 750ms. Can you post the hotspots? Like: number of invocations, ms. self time and ms. total time.

Re: Myfaces vs. mojarra restore view performance

2010-08-02 Thread Werner Punz
One thing I noticed while testing my Ajax stuff is that Mojarra has some ViewScope optimizations, in MyFaces a deserialisation method I set on a ViewScoped bean always got called. In Mojarra it never was in the ppr case. I can run my tests again to get the exact behavior. Also have a serious

Re: Myfaces vs. mojarra restore view performance

2010-08-02 Thread Leonardo Uribe
Hi There is an issue open related to checkResourceExists() call: MYFACES-2628 Facelets ResourceSolver cant work : Make this call crash facelets ResourceSolver, it was suggested this issue. The previous evidence suggest the following line: ViewDeclarationLanguage vdl =

[jira] Commented: (MYFACES-2628) Facelets ResourceSolver cant work

2010-08-02 Thread Bernd Bohmann (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-2628?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12894671#action_12894671 ] Bernd Bohmann commented on MYFACES-2628: @Leonardo Why we need a standard way to

[jira] Commented: (MYFACES-2628) Facelets ResourceSolver cant work

2010-08-02 Thread Leonardo Uribe (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-2628?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12894678#action_12894678 ] Leonardo Uribe commented on MYFACES-2628: - Because to resolve suffix mapping when

Re: Myfaces vs. mojarra restore view performance

2010-08-02 Thread Martin Koci
Hi, quick results: yourkitprofiler marks as hot spot UiViewRoot.addComponentResource (3381 invocation count) - that method itself creates 5 710 511 invocations of AbstractIterator.next() Reason probably is that I have custom renderer for UInput with @ResourceDependencies(...many

[jira] Commented: (MYFACES-2628) Facelets ResourceSolver cant work

2010-08-02 Thread Bernd Bohmann (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-2628?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12894722#action_12894722 ] Bernd Bohmann commented on MYFACES-2628: Independent of the suffix mapping

[jira] Commented: (MYFACES-2628) Facelets ResourceSolver cant work

2010-08-02 Thread Leonardo Uribe (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-2628?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12894800#action_12894800 ] Leonardo Uribe commented on MYFACES-2628: - There is no any reason to expose it,

[jira] Issue Comment Edited: (MYFACES-2628) Facelets ResourceSolver cant work

2010-08-02 Thread Leonardo Uribe (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-2628?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12894800#action_12894800 ] Leonardo Uribe edited comment on MYFACES-2628 at 8/2/10 11:19 PM: