[core] best way for editable table

2011-06-07 Thread Martin Koci
Hi, how to do editable table in JSF? Not with all rows/cell in editable state, only with those ones which user switch with icon to update state. Example: a:column id=emailColumn a:inputText id=email value=#{rowData.email} / /a:column a:column h:commandButton value=Switch to update

Re: [core] best way for editable table

2011-06-07 Thread Martin Koci
Hi, yes I use 1. for small tables, but consider table 200 x 200. Then you must have required, displayValueOnly, disabled etc for each component - that means 200x200x3 evaluated expression during *one* JSF phase. Regards, Kočičák Werner Punz píše v Út 07. 06. 2011 v 22:05 +0200: opted

Re: [VOTE] release for myfaces core 2.1.1

2011-06-08 Thread Martin Koci
+1 Gerhard Petracek píše v St 08. 06. 2011 v 11:30 +0200: +1 regards, gerhard 2011/6/8, Werner Punz werner.p...@gmail.com: +1 Am 08.06.11 08:04, schrieb Leonardo Uribe: Hi, I was running the needed tasks to get the 2.1.1 release of Apache MyFaces core out. This is a

Re: Problem with Trinidad's uploads

2011-06-08 Thread Martin Koci
forward from us...@myfaces.apache.org: Hi, I tried you project and: 1) faces-config.xml is wrong, it needs faces-config as root element, not root 2) trinidad-config is wrong, it has filter element - this one belongs to web.xml and element uploaded-file-processor-settings with children does not

Re: Upload of folder content

2011-06-08 Thread Martin Koci
I think upload of folder is not possible with HTML4, so you must zip it. With HTML5 there will be some support for folder upload (I hope) and dragdrop upload. You can try also Cagatay's excellent primefaces - they have multiple Flash-based upload I think. Regards, Kočíčák jitechno píše v So

Re: [core] best way for editable table

2011-06-09 Thread Martin Koci
of the lifecycle to avoid unnecessary saves and restores. Werner Am 07.06.11 21:29, schrieb Martin Koci: Hi, how to do editable table in JSF? Not with all rows/cell in editable state, only with those ones which user switch with icon to update state

[core] performance: preinitialize facelets and analyze views (during startup)

2011-06-13 Thread Martin Koci
Hi, Can we find a way how to pre-initialize all .xhtml (Facelet instances) during startup? I think that can bring many improvements, for example: -- Minimize sychronized: populate all cached Value|MethodExpression on TagAttributeImpl (MYFACES-3160) - than we can remove volatile keyword

Re: [core] implicit object 'component' in rendered expression (myfaces and spec bug)

2011-06-18 Thread Martin Koci
); component.pushComponentToEL(context, null); Will be the same component pushed twice on stack? Regards, Kočičák Martin Koci píše v St 25. 05. 2011 v 22:12 +0200: Hi, there are such cases but not many of them: in myfaces code after quick search I guess about 10 such cases. The main

[core] Firefox 4 - script in XHR executed 2x?

2011-06-20 Thread Martin Koci
Hi, I'm not very familiar with JavaScript, so I ask first if it is bug or not: If script element is in XHR response, who is responsible for execute that script? I found [1] so I suppose that runScripts function does it in MyFaces. With Firefox 4 it seems that script is executed 2x: first time

Re: [core] Firefox 4 - script in XHR executed 2x?

2011-06-21 Thread Martin Koci
Hi, ok, I'll investigate it more; I'll try isolate the problem in small reproducible example, if possible. Most likely is problem in my code. Thanks, Kočičák Werner Punz píše v Po 20. 06. 2011 v 22:33 +0200: Am 20.06.11 21:18, schrieb Martin Koci: Hi, I'm not very familiar

[core] three issues with ViewExpiredException navigation

2011-06-25 Thread Martin Koci
Hi, please take a look at: https://issues.apache.org/jira/browse/MYFACES-3189 https://issues.apache.org/jira/browse/MYFACES-3188 https://issues.apache.org/jira/browse/MYFACES-3105 I'm not very familiar with navigation implementation - I cannot provide meaningful patches here. Thanks,

Re: [core] three issues with ViewExpiredException navigation

2011-06-26 Thread Martin Koci
2011/6/25 Martin Koci martin.kocicak.k...@gmail.com Hi, please take a look at: https://issues.apache.org/jira/browse/MYFACES-3189 https://issues.apache.org/jira/browse/MYFACES-3188 https://issues.apache.org/jira/browse

Re: [core] three issues with ViewExpiredException navigation

2011-06-27 Thread Martin Koci
, but anyway we can expect more reports about ViewExpiredException in the future, because it is a common exception that occur in typical scenarios. regards, Leonardo Uribe 2011/6/26 Martin Koci martin.kocicak.k...@gmail.com: Hi, MYFACES-3189 and MYFACES-3188 are reproducible : please see

[core] h:form in h:form detection

2011-06-27 Thread Martin Koci
Hi, common problem: in multilevel templating developer losts context easily and puts a new h:form into exiting one. T thought that was already solved in myfaces codebase with some warning but I cannot find in now. Can you point me to the right direction? Thanks, Kočičák

Re: [core] three issues with ViewExpiredException navigation

2011-06-28 Thread Martin Koci
an ExceptionHandler handle exceptions thrown by itself without the risk of get stuck in a loop? regards, Leonardo Uribe 2011/6/27 Leonardo Uribe lu4...@gmail.com: Hi 2011/6/27 Martin Koci martin.kocicak.k...@gmail.com: Hi, Leonardo Uribe píše v Ne 26. 06. 2011 v 21:29 -0500: Hi I

Re: [core] three issues with ViewExpiredException navigation

2011-06-29 Thread Martin Koci
Leonardo Uribe píše v Út 28. 06. 2011 v 16:11 -0500: Hi 2011/6/28 Martin Koci martin.kocicak.k...@gmail.com: Hi, to make things not so easy: https://issues.apache.org/jira/browse/MYFACES-3191 Maybe it is related, maybe not, but now it is not possible to perform navigation

[core] Purpose and usage of AbortProcessingException (MYFACES-3199)

2011-07-07 Thread Martin Koci
Hi, what is purpose of AbortProcessingException in JSF API? Please see https://issues.apache.org/jira/browse/MYFACES-3199 Currently specification and myfaces work with it unconsistently. Do you have example of usage in your JSF applications? Regards, Kočičák

[core] Improve error reporting and logging / General ErrorPage improvements (MYFACES-3213)

2011-07-08 Thread Martin Koci
Hi, please see attached screenshots at [1] and let me know what you think. What info do you find useful during development (and debugging) ? Thanks, Kočičák [1] https://issues.apache.org/jira/browse/MYFACES-3213

Re: [core] Improve error reporting and logging / General ErrorPage improvements (MYFACES-3213)

2011-07-11 Thread Martin Koci
Summary of proposed changes for ErrorPage: In header: - viewId, - location of facelet in filesystem - PhaseId In body: - info about component (that triggered the problem) - EL expression being evaluated, it's location, name of attribute/value pair - caused by: output first line of StackTrace

Re: [core] Purpose and usage of AbortProcessingException (MYFACES-3199)

2011-07-11 Thread Martin Koci
can introduce new param rethrowEveryListenerExceptionAsAPE to preserve current behaviour. Martin Koci píše v Čt 07. 07. 2011 v 14:10 +0200: Hi, what is purpose of AbortProcessingException in JSF API? Please see https://issues.apache.org/jira/browse/MYFACES-3199 Currently

[core] pushComponentToEL and #{component}

2011-07-24 Thread Martin Koci
Hi, please review patches for: https://issues.apache.org/jira/browse/MYFACES-3157 https://issues.apache.org/jira/browse/MYFACES-3126 Thanks, Kočičák

[core] code in ConverterTagHandlerDelegate.applyAttachedObject

2011-07-24 Thread Martin Koci
Hi, I'm doing some logging improvements for f:converter tag and I noticed folowing weird code - line 157: Object lv = vh.getLocalValue(); FacesContext faces = faceletContext.getFacesContext(); if (lv instanceof String) { vh.setValue(c.getAsObject(faces, parent, (String) lv)); } What

Re: MyFaces PMC += Martin Kočičák

2011-07-25 Thread Martin Koci
Hi, thanks Gerhard, but I'm not now sure if this += change is valid because my full (and real) name not Martin Kočičák :) :) but only Martin Kočí (haha). It is explained here: http://www.mail-archive.com/dev@myfaces.apache.org/msg48802.html Kočičák is only nickname, because Martin Kočí is

Re: [core] pushComponentToEL and #{component}

2011-07-25 Thread Martin Koci
between MyFaces and Mojarra. In my opinion what patches propose is correct, but we should ping the EG to see what they think about it and if it is valid to apply these changes on 2.0.x / 2.1.x branches. regards, Leonardo Uribe 2011/7/24 Martin Koci martin.kocicak.k...@gmail.com: Hi

Re: [core] pushComponentToEL and #{component}

2011-07-25 Thread Martin Koci
is not rendered (wrong) Leonardo Uribe píše v Po 25. 07. 2011 v 14:09 -0500: Hi 2011/7/25 Martin Koci martin.kocicak.k...@gmail.com: Hi, how can I help to ping EG? It seems that JSF-spec team has own working plan and no time for issues with no vote. About interoperability: I've double

[core] lock profiling results for current myfaces

2011-07-27 Thread Martin Koci
Hi, I'm doing some profiling for a view, where thousand of concurrent users is planned. Configuration myfaces trunk, juel, tomcat 6.0.26, OWB trunk Here are the top blocking locks: 1) java.util.Collections$SynchronizedMap.get(Object) de.odysseus.el.tree.impl.Cache.get(String)

[core] dynamic script before /body (an equivalent for DialogRequest from Trinidad)

2011-08-02 Thread Martin Koci
Hi, has JSF an official API to achieve similar functionality as [1] ? Purpose and use case: 1) JSF process partially view 2) JSF artifact creates and queues a request render this script ... before /body 3) new element script is created and rendered before /body this is not same same

Re: [core] dynamic script before /body (an equivalent for DialogRequest from Trinidad)

2011-08-03 Thread Martin Koci
3, 2011, at 11:39 AM, Jakob Korherr wrote: Hi, Nope, I don't think so. Maybe you can achieve it via a javascript event-handler on the client, but I actually don't know for sure. Maybe Werner can help you out! Regards, Jakob 2011/8/2 Martin Koci martin.kocicak.k...@gmail.com

[core] performance: synchronized access for java.beans.PropertyDescriptor.getReadMethod()

2011-08-04 Thread Martin Koci
Hi, I'm testing a view where hundreds of concurrent users are expected. I noticed that java.beans.PropertyDescriptor.getReadMethod() is sychronized method and many times are other threads blocked with same lock (java.beans.PropertyDescriptor instance). Myfaces use it in _ComponentAttributesMap:

[core] performance: custom implicit objects

2011-08-08 Thread Martin Koci
Hi, if user uses plain old JSF style with managed beans like: #{sessionScope.mySessionScopedBean} or #{requestScope.myRequestScopedBean} or #{requestScope.varFromDataTable.property} it can achieve excellent performance during render response phase, because every EL resolution takes only two

Re: [core] performance: custom implicit objects

2011-08-08 Thread Martin Koci
powerhouse - JSF Consulting, Development and Courses in English and German Professional Support for Apache MyFaces 2011/8/8 Martin Koci martin.kocicak.k...@gmail.com Hi, if user uses plain old JSF style with managed beans like

Re: [core] performance: custom implicit objects

2011-08-08 Thread Martin Koci
://cwiki.apache.org/confluence/display/MYFACES/ELResolver +ordering http://www.irian.at Your JSF powerhouse - JSF Consulting, Development and Courses in English and German Professional Support for Apache MyFaces 2011/8/8 Martin Koci martin.kocicak.k...@gmail.com Hi

Re: [core] performance: custom implicit objects

2011-08-09 Thread Martin Koci
Professional Support for Apache MyFaces 2011/8/8 Martin Koci martin.kocicak.k...@gmail.com Gerhard Petracek píše v Po 08. 08. 2011 v 16:36 +0200: hi martin, i think most users will be fine with the OpenWebBeansELResolverComparator [1] yes, this comparator moves OWB

Re: [VOTE] release of myfaces core 2.1.2

2011-08-24 Thread Martin Koci
+1 Leonardo Uribe píše v Po 22. 08. 2011 v 23:28 -0500: Hi, I was running the needed tasks to get the 2.1.2 release of Apache MyFaces core out. The artifacts passed all TCK tests. Please note that this vote concerns all of the following parts: 1. Maven artifact group

Re: [VOTE] Release of Extensions CDI (CODI) 1.0.3

2012-01-09 Thread Martin Koci
+1 Gerhard Petracek píše v Ne 08. 01. 2012 v 21:21 +0100: Hi, I was running the needed tasks to get the 10th release of Apache MyFaces Extensions CDI (aka MyFaces CODI) out. The artifacts are deployed to Nexus [1] (and [2]). The release contains the following modules: - CODI Core

Re: [VOTE] release for myfaces master pom v 13

2012-01-23 Thread Martin Koci
+1 Leonardo Uribe píše v St 18. 01. 2012 v 09:18 -0500: Hi, I was running the needed tasks to get the version 13 release of Apache MyFaces Master POM. This release is necessary to update the site information about MyFaces contributors. Please note that this vote concerns all of the

Re: [VOTE] Release of Extensions CDI (CODI) 1.0.4

2012-02-13 Thread Martin Koci
+1 Gerhard Petracek píše v Po 13. 02. 2012 v 17:59 +0100: Hi, I was running the needed tasks to get the 11th release of Apache MyFaces Extensions CDI (aka MyFaces CODI) out. The artifacts are deployed to Nexus [1] (and [2]). The release contains the following modules: - CODI Core

[core] performance: cache infos for views without build time modifications

2012-02-17 Thread Martin Koci
Hi, in situation, where no build-time tags (c:if, co:foreach, ...) and no ui:include src=#{} are used (and no direct component.getChildren() manipulation of course), builds VDL.buildView every time the same component structure (same graph). In this case compute myfaces some informations again

Re: [core] performance: cache infos for views without build time modifications

2012-02-20 Thread Martin Koci
and involves: findParentNamingContainer namingContainer.getContainerClientId stringBuilder appends renderer.convertClientId Martin Koci píše v Pá 17. 02. 2012 v 18:56 +0100: Hi, in situation, where no build-time tags (c:if, co:foreach, ...) and no ui:include src=#{} are used (and no direct

Re: [core] performance: cache infos for views without build time modifications

2012-02-21 Thread Martin Koci
implementation and that can minimize String allocation in stateless/thread safe cases. Regards, Kočičák regards, Leonardo Uribe 2012/2/20 Martin Koci martin.kocicak.k...@gmail.com: Same situation for clientId: in stable component tree is clientId always the same (state saving depends

Re: [core] discussion about stateless jsf implementation

2012-02-21 Thread Martin Koci
Leonardo Uribe píše v Po 20. 02. 2012 v 19:04 -0500: Hi Hi, I did check only the original source code from blog some time ago and it I have found practically same problems as you. I have been studying the proposed code attached to MYFACES-3465. Unfortunately, I have found some issues with

Re: [core] performance: cache infos for views without build time modifications

2012-02-21 Thread Martin Koci
always find others 10 minor ;) (in every code) Leonardo Uribe píše v Út 21. 02. 2012 v 11:32 -0500: Hi 2012/2/21 Martin Koci martin.kocicak.k...@gmail.com: Leonardo Uribe píše v Po 20. 02. 2012 v 17:51 -0500: Hi Unfortunately we can't cache facelets generated unique ids

Re: [VOTE] Release of Extensions CDI (CODI) 1.0.5

2012-04-05 Thread Martin Koci
+1 Gerhard Petracek píše v Čt 05. 04. 2012 v 10:36 +0200: Hi, I was running the needed tasks to get the 12th release of Apache MyFaces Extensions CDI (aka MyFaces CODI) out. The artifacts are deployed to Nexus [1] (and [2]). The release contains the following modules: - CODI Core

Re: [VOTE] release of myfaces core 2.1.7

2012-04-05 Thread Martin Koci
+1 Leonardo Uribe píše v St 04. 04. 2012 v 00:42 -0500: Hi, I was running the needed tasks to get the 2.1.7 release of Apache MyFaces core out. The artifacts passed all TCK tests. Please note that this vote concerns all of the following parts: 1. Maven artifact group

Re: [core] steps for release of myfaces core 2.1.8 / 2.0.14

2012-06-12 Thread Martin Koci
Hi, it would be nice to solve https://issues.apache.org/jira/browse/MYFACES-3191 - users ask for it, topic Weird partial-response behavior with 2 partial-response tags in user list. And a trivial one: https://issues.apache.org/jira/browse/MYFACES-3243 Leonardo Uribe píše v Po 11. 06. 2012 v

Re: [VOTE] release of MyFaces Core 2.1.8

2012-06-13 Thread Martin Koci
+1 Leonardo Uribe píše v St 13. 06. 2012 v 18:41 +0200: Hi, I was running the needed tasks to get the 2.1.8 release of Apache MyFaces core out. The artifacts passed all TCK tests. Please note that this vote concerns all of the following parts: 1. Maven artifact group

[jira] Commented: (MYFACES-218) Javascript alert Should not display UnicodeEncoder dispose result

2005-04-28 Thread Martin Koci (JIRA)
[ http://issues.apache.org/jira/browse/MYFACES-218?page=comments#action_63961 ] Martin Koci commented on MYFACES-218: - I have same problem with custom messages renderer with optional layout alert which is rendering messages in javascript alert

[jira] Created: (MYFACES-1171) Dont render clear_formName if not in MyFacesForm

2006-03-13 Thread Martin Koci (JIRA)
Dont render clear_formName if not in MyFacesForm -- Key: MYFACES-1171 URL: http://issues.apache.org/jira/browse/MYFACES-1171 Project: MyFaces Core Type: Bug Versions: 1.1.3-SNAPSHOT Reporter: Martin Koci

[jira] Created: (MYFACES-1304) DigesterFacesConfigDispenserImpl shuld respect order of registered renderkits

2006-05-10 Thread Martin Koci (JIRA)
Versions: 1.1.3 Reporter: Martin Koci Priority: Critical Fix For: 1.1.4-SNAPSHOT org.apache.myfaces.config.impl.digester.DigesterFacesConfigDispenserImpl uses HashMap instance for registered renderkits. But when calling method getRenderKitIds() returned render kid ids

[jira] Updated: (MYFACES-1304) DigesterFacesConfigDispenserImpl shuld respect order of registered renderkits

2006-05-10 Thread Martin Koci (JIRA)
[ http://issues.apache.org/jira/browse/MYFACES-1304?page=all ] Martin Koci updated MYFACES-1304: - Status: Patch Available (was: Open) DigesterFacesConfigDispenserImpl shuld respect order of registered renderkits

[jira] Updated: (MYFACES-1304) DigesterFacesConfigDispenserImpl shuld respect order of registered renderkits

2006-05-10 Thread Martin Koci (JIRA)
[ http://issues.apache.org/jira/browse/MYFACES-1304?page=all ] Martin Koci updated MYFACES-1304: - Status: Open (was: Patch Available) DigesterFacesConfigDispenserImpl shuld respect order of registered renderkits

[jira] Updated: (MYFACES-1304) DigesterFacesConfigDispenserImpl shuld respect order of registered renderkits

2006-05-10 Thread Martin Koci (JIRA)
[ http://issues.apache.org/jira/browse/MYFACES-1304?page=all ] Martin Koci updated MYFACES-1304: - Status: Patch Available (was: Open) DigesterFacesConfigDispenserImpl shuld respect order of registered renderkits

[jira] Created: (TRINIDAD-28) MessageFactory.BindingFacesMessage resolves parameters only once

2007-05-22 Thread Martin Koci (JIRA)
: Improvement Components: Components Affects Versions: 1.0.1-incubating-core-SNAPSHOT Reporter: Martin Koci Priority: Minor I probably found a problem with BindingFacesMessage class. If calling getMessage() it resolves value binding only once and then cache

[jira] Updated: (TRINIDAD-28) MessageFactory.BindingFacesMessage resolves parameters only once

2007-05-22 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/TRINIDAD-28?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Martin Koci updated TRINIDAD-28: Status: Patch Available (was: Open) MessageFactory.BindingFacesMessage resolves parameters only

[jira] Updated: (TRINIDAD-923) SortableModel should deliver DataModelEvent

2008-01-27 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/TRINIDAD-923?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Martin Koci updated TRINIDAD-923: - Status: Patch Available (was: Open) SortableModel should deliver DataModelEvent

[jira] Created: (TRINIDAD-923) SortableModel should deliver DataModelEvent

2008-01-27 Thread Martin Koci (JIRA)
Environment: JSF RI 1.2, Trinidad 1.2.x trunk Reporter: Martin Koci It is possible to register DataModelListsners to SortableModel but events are never delivered. The reason is: SortableModel uses delegation, not inheritance and methods for working with DataModelListeners

[jira] Created: (TRINIDAD-930) tr:selectOneChoice resets value if not in form

2008-01-31 Thread Martin Koci (JIRA)
: Components Affects Versions: 1.2.6-core Environment: JSF RI 1.2, Trinidad 1.2 trunk Reporter: Martin Koci Priority: Critical Fix For: 1.2.5-core If tr:selectOneChoice is outside a h:form, it resets value used in value=#{}. Test case: JSP snippet

[jira] Updated: (TRINIDAD-930) tr:selectOneChoice resets value if not in form

2008-01-31 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/TRINIDAD-930?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Martin Koci updated TRINIDAD-930: - Status: Patch Available (was: Open) tr:selectOneChoice resets value if not in form

[jira] Commented: (TRINIDAD-930) tr:selectOneChoice resets value if not in form

2008-05-23 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/TRINIDAD-930?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12599321#action_12599321 ] Martin Koci commented on TRINIDAD-930: -- I think this is unambiguously a bug: 1

[jira] Created: (TRINIDAD-1117) Allow String converters

2008-06-12 Thread Martin Koci (JIRA)
Reporter: Martin Koci JSF 1.2 allows converters for Strings. See https://javaserverfaces-spec-public.dev.java.net/issues/show_bug.cgi?id=131. Trinidad should do the same (1.2 branch only) -- This message is automatically generated by JIRA. - You can reply to this email to add a comment

[jira] Updated: (TRINIDAD-1117) Allow String converters

2008-06-12 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/TRINIDAD-1117?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Martin Koci updated TRINIDAD-1117: -- Status: Patch Available (was: Open) Allow String converters

[jira] Updated: (TRINIDAD-1591) [Trinidad2] Make trinidad runnable on JSF 2.0

2009-10-08 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/TRINIDAD-1591?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Martin Koci updated TRINIDAD-1591: -- Status: Patch Available (was: Open) [Trinidad2] Make trinidad runnable on JSF 2.0

[jira] Created: (TRINIDAD-1591) [Trinidad2] Make trinidad runnable on JSF 2.0

2009-10-08 Thread Martin Koci (JIRA)
Affects Versions: 2.0.0-core Environment: trinidad 2.0 branch, JSF 2.0 Mojarra Reporter: Martin Koci - org.apache.myfaces.trinidadinternal.application.StateManagerImpl - make getWrapped public - org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl - make

[jira] Updated: (TRINIDAD-1591) [Trinidad2] Make trinidad runnable on JSF 2.0

2009-10-13 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/TRINIDAD-1591?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Martin Koci updated TRINIDAD-1591: -- Resolution: Duplicate Fix Version/s: 2.0.0-core Status: Resolved

[jira] Created: (TRINIDAD-1596) Trinidad2 - support for the implicit object resource

2009-10-16 Thread Martin Koci (JIRA)
Affects Versions: 2.0.0-core Reporter: Martin Koci Priority: Trivial With JSF 2.0 is possible to use new implicit object 'resource' for obtaining a resource URL - see 5.6.2.5 Resource ELResolver in spec. That URL already contains context path for the current web application

[jira] Updated: (TRINIDAD-1596) Trinidad2 - support for the implicit object resource

2009-10-16 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/TRINIDAD-1596?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Martin Koci updated TRINIDAD-1596: -- Status: Patch Available (was: Open) Trinidad2 - support for the implicit object resource

[jira] Created: (TRINIDAD-1598) Trinidad2 - Make dialog compatible with JSF 2.0

2009-10-18 Thread Martin Koci (JIRA)
: 2.0.0-core Environment: trinidad 2 branch, RI 2.0.0RC2 Reporter: Martin Koci The dialog framework does not work with JSF 2.0: opening new window shows ___ADF___ cannot be found. Problem can be reproduced with trinidad-demo, dialog example (launchDialog.jspx) Causation

[jira] Updated: (TRINIDAD-1598) Trinidad2 - Make dialog compatible with JSF 2.0

2009-10-18 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/TRINIDAD-1598?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Martin Koci updated TRINIDAD-1598: -- Status: Patch Available (was: Open) Trinidad2 - Make dialog compatible with JSF 2.0

[jira] Commented: (TRINIDAD-1600) Trinidad2 - Dialog navigation clears View Scope

2009-10-20 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/TRINIDAD-1600?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12767915#action_12767915 ] Martin Koci commented on TRINIDAD-1600: --- According to spec The handleNavigation

[jira] Issue Comment Edited: (TRINIDAD-1600) Trinidad2 - Dialog navigation clears View Scope

2009-10-21 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/TRINIDAD-1600?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12767915#action_12767915 ] Martin Koci edited comment on TRINIDAD-1600 at 10/21/09 5:35 PM

[jira] Commented: (TRINIDAD-1611) implement new setParent() behavior on UIXComponent base in order to trigger PostAddToViewEvent(s)

2009-10-29 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/TRINIDAD-1611?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12771639#action_12771639 ] Martin Koci commented on TRINIDAD-1611: --- With mojarra 2.0.1 and: tr:document

[jira] Updated: (TRINIDAD-1638) Trindad 2 - support for name/library attributes as an alternative to icon or image

2009-11-15 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/TRINIDAD-1638?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Martin Koci updated TRINIDAD-1638: -- Status: Patch Available (was: Open) Trindad 2 - support for name/library attributes

[jira] Created: (TRINIDAD-1638) Trindad 2 - support for name/library attributes as an alternative to icon or image

2009-11-15 Thread Martin Koci (JIRA)
: MyFaces Trinidad Issue Type: New Feature Affects Versions: 2.0.0-core Environment: Trinidad 2.0 branch, mojarra 2.0.1 Reporter: Martin Koci Priority: Minor JSF 2.0 introduced Resource API and new attributes name/library for resource name/library

[jira] Created: (MYFACES-2526) javax.faces.view.facelets.ResourceResolver support

2010-01-30 Thread Martin Koci (JIRA)
-314 Affects Versions: 2.0.0-beta-2 Environment: myfaces core trunk Reporter: Martin Koci Currently DefaultResourceResolver in myfaces implements a interface ResourceResolver from o.a.m.v.f.i (probably copy from old facelts 1.x). JSF 2.0 introduce

[jira] Updated: (MYFACES-2526) javax.faces.view.facelets.ResourceResolver support

2010-01-30 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-2526?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Martin Koci updated MYFACES-2526: - Status: Patch Available (was: Open) javax.faces.view.facelets.ResourceResolver support

[jira] Created: (MYFACES-2527) Support for decorator design pattern: RenderKit(s)

2010-01-31 Thread Martin Koci (JIRA)
-314 Reporter: Martin Koci Spec. 11.4.6 Delegating Implementation Support - The runtime must support the decorator design pattern .. for .. RenderKit. This is especially true for HTML_BASIC, following example should work: faces-config.xml render-kit render-kit

[jira] Commented: (MYFACES-2527) Support for decorator design pattern: RenderKit(s)

2010-01-31 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-2527?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12806819#action_12806819 ] Martin Koci commented on MYFACES-2527: -- Possible patch

[jira] Commented: (MYFACES-2526) javax.faces.view.facelets.ResourceResolver support

2010-02-03 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-2526?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12829030#action_12829030 ] Martin Koci commented on MYFACES-2526: -- Oh, I didn't have src/test/java on build

[jira] Created: (MYFACES-2531) Support for name/library attributes with h:commandButton

2010-02-03 Thread Martin Koci (JIRA)
Components: JSR-314 Affects Versions: 2.0.0-beta-2 Environment: myfaces core trunk Reporter: Martin Koci Priority: Minor JSF 2.0 specify new name/library attributes for h:graphicImage, h:outputStylesheet and h:outputScript. But current JSF RI

[jira] Updated: (MYFACES-2531) Support for name/library attributes with h:commandButton

2010-02-03 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-2531?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Martin Koci updated MYFACES-2531: - Status: Patch Available (was: Open) Support for name/library attributes with h:commandButton

[jira] Commented: (MYFACES-2531) Support for name/library attributes with h:commandButton

2010-02-03 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-2531?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12829278#action_12829278 ] Martin Koci commented on MYFACES-2531: -- Patch also switch order of rendering url

[jira] Created: (MYFACES-2536) converterId and validatorId should not be required

2010-02-04 Thread Martin Koci (JIRA)
-314 Affects Versions: 2.0.0-beta-2 Environment: myfaces core trunk Reporter: Martin Koci Priority: Trivial With JSF 2.0 attributes converterId resp. validatorId (tags f:converter resp. f:validator) aren't required. See: https://javaserverfaces.dev.java.net

[jira] Updated: (MYFACES-2536) converterId and validatorId should not be required

2010-02-04 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-2536?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Martin Koci updated MYFACES-2536: - Status: Patch Available (was: Open) converterId and validatorId should not be required

[jira] Created: (MYFACES-2540) Facelets server state saving does not work

2010-02-09 Thread Martin Koci (JIRA)
Versions: 2.0.0-beta-2 Environment: myfaces core trunk Reporter: Martin Koci Facelets server state saving does not work: StateManager.saveView in not called during ViewDeclarationLanguage.renderView in case of server state saving. Please see attached patch for details

[jira] Updated: (MYFACES-2540) Facelets server state saving does not work

2010-02-09 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-2540?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Martin Koci updated MYFACES-2540: - Status: Patch Available (was: Open) Facelets server state saving does not work

[jira] Created: (MYFACES-2541) Support for actionlistener method without ActionEvent parameter

2010-02-09 Thread Martin Koci (JIRA)
Components: JSR-314 Affects Versions: 2.0.0-beta-2 Environment: myfaces trunk Reporter: Martin Koci With JSF 2.0 is possible to have actionListener method without ActionEvent param: https://javaserverfaces.dev.java.net/nonav/docs/2.0/javadocs/javax/faces/event

[jira] Updated: (MYFACES-2541) Support for actionlistener method without ActionEvent parameter

2010-02-09 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-2541?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Martin Koci updated MYFACES-2541: - Status: Patch Available (was: Open) Support for actionlistener method without ActionEvent

[jira] Created: (MYFACES-2542) Don't throw exception if no SelectItems found

2010-02-09 Thread Martin Koci (JIRA)
: General Affects Versions: 2.0.0-beta-2 Environment: myfaces trunk Reporter: Martin Koci Priority: Trivial Attachments: MYFACES-2542.patch if f:selectItems value=#{aNonExistentModel} / resolves in runtime to null a expection is throw. But having

[jira] Commented: (MYFACES-2542) Don't throw exception if no SelectItems found

2010-02-09 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-2542?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12831493#action_12831493 ] Martin Koci commented on MYFACES-2542: -- First the changed class is duplicated

[jira] Updated: (MYFACES-2544) UIViewRoot skips uncorrectly encodeBegin

2010-02-09 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-2544?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Martin Koci updated MYFACES-2544: - Status: Patch Available (was: Open) UIViewRoot skips uncorrectly encodeBegin

[jira] Created: (MYFACES-2544) UIViewRoot skips uncorrectly encodeBegin

2010-02-09 Thread Martin Koci (JIRA)
Versions: 2.0.0-beta-2 Environment: myfaces trunk Reporter: Martin Koci javax.faces.component.UIViewRoot.encodeBegin(FacesContext) contains: if (!skipPhase) { super.encodeBegin(context); } but skipPhase = context.getRenderResponse() || context.getResponseComplete

[jira] Commented: (MYFACES-2544) UIViewRoot skips uncorrectly encodeBegin

2010-02-10 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-2544?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12831966#action_12831966 ] Martin Koci commented on MYFACES-2544: -- This is probably bug in spec. https

[jira] Commented: (MYFACES-2536) converterId and validatorId should not be required

2010-02-10 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-2536?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12831994#action_12831994 ] Martin Koci commented on MYFACES-2536: -- Yes, ugly exceptions happen with f:converter

[jira] Commented: (MYFACES-2544) UIViewRoot skips uncorrectly encodeBegin

2010-02-10 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-2544?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12832185#action_12832185 ] Martin Koci commented on MYFACES-2544: -- when there is an error on a beforePhase

[jira] Created: (MYFACES-2546) Conversion rules for obtaing renderable String from the value property of SelectItem

2010-02-10 Thread Martin Koci (JIRA)
Project: MyFaces Core Issue Type: Improvement Components: JSR-314 Affects Versions: 2.0.0-beta-2 Environment: myfaces trunk Reporter: Martin Koci Priority: Minor h:selectOneMenu f:selectItems value=#{model.selectItemsWithNonStringValue

[jira] Updated: (MYFACES-2546) Conversion rules for obtaing renderable String from the value property of SelectItem

2010-02-10 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-2546?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Martin Koci updated MYFACES-2546: - Status: Patch Available (was: Open) Conversion rules for obtaing renderable String from

[jira] Commented: (MYFACES-2546) Conversion rules for obtaing renderable String from the value property of SelectItem

2010-02-10 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-2546?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12832227#action_12832227 ] Martin Koci commented on MYFACES-2546: -- Trinidad also renders item.value.toString

[jira] Commented: (MYFACES-2541) Support for actionlistener method without ActionEvent parameter

2010-02-11 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-2541?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12832459#action_12832459 ] Martin Koci commented on MYFACES-2541: -- Yes, this patch was done before you directed

[jira] Commented: (MYFACES-2541) Support for actionlistener method without ActionEvent parameter

2010-02-11 Thread Martin Koci (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-2541?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12832475#action_12832475 ] Martin Koci commented on MYFACES-2541: -- Problem with variableMapper: 1) template

[jira] Created: (MYFACES-2594) Facelets state saving doesn't handle well programmatic component manipulation

2010-03-09 Thread Martin Koci (JIRA)
Core Issue Type: Bug Components: General Affects Versions: 2.0.0-beta-3 Environment: myfaces trunk Reporter: Martin Koci Priority: Minor Simple tests (code pasted below) outputs following results: 1) JSP: switchs colums at every click

<    1   2   3   >