[jira] Created: (MYFACES-2155) HtmlLinkRenderer did not recognize ankers (#)

2009-02-26 Thread Martin Haimberger (JIRA)
HtmlLinkRenderer did not recognize ankers (#)
-

 Key: MYFACES-2155
 URL: https://issues.apache.org/jira/browse/MYFACES-2155
 Project: MyFaces Core
  Issue Type: Bug
Reporter: Martin Haimberger


HtmlLinkRenderer did not recognize ankers (#) and encoded them wrong if there 
were f:params used (- url#anker?paramname=paramvalue instead of 
url?paramname=paramvalue#anker)

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



[jira] Updated: (MYFACES-2155) HtmlLinkRenderer did not recognize ankers (#)

2009-02-26 Thread Martin Haimberger (JIRA)

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

Martin Haimberger updated MYFACES-2155:
---

Status: Patch Available  (was: Open)

 HtmlLinkRenderer did not recognize ankers (#)
 -

 Key: MYFACES-2155
 URL: https://issues.apache.org/jira/browse/MYFACES-2155
 Project: MyFaces Core
  Issue Type: Bug
Reporter: Martin Haimberger

 HtmlLinkRenderer did not recognize ankers (#) and encoded them wrong if there 
 were f:params used (- url#anker?paramname=paramvalue instead of 
 url?paramname=paramvalue#anker)

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



[jira] Commented: (TOMAHAWK-1190) Exception in t:columns

2008-02-08 Thread Martin Haimberger (JIRA)

[ 
https://issues.apache.org/jira/browse/TOMAHAWK-1190?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12566991#action_12566991
 ] 

Martin Haimberger commented on TOMAHAWK-1190:
-

Hi Martin,

i have corrected the problem with patch v2. Now they are Boolean Objects (the 
convention is stays for a boolean and not a Boolean). 

regards,
Martin Haimberger

 Exception in t:columns
 --

 Key: TOMAHAWK-1190
 URL: https://issues.apache.org/jira/browse/TOMAHAWK-1190
 Project: MyFaces Tomahawk
  Issue Type: Bug
Reporter: Martin Haimberger
Assignee: Martin Haimberger
 Attachments: HtmlColumns-patch_issue_1190_v2.patch


 Hi,
 the setter for the attributes sortable, defaultSorted, groupBy are Boolean 
 instead of boolean, which causes a exception if using this attributes.
 Regards,
 Martin Haimberger

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



[jira] Created: (TOMAHAWK-1190) Exception in t:columns

2008-02-07 Thread Martin Haimberger (JIRA)
Exception in t:columns
--

 Key: TOMAHAWK-1190
 URL: https://issues.apache.org/jira/browse/TOMAHAWK-1190
 Project: MyFaces Tomahawk
  Issue Type: Bug
Reporter: Martin Haimberger
 Attachments: HtmlColumns-patch_issue_1190.patch

Hi,

the setter for the attributes sortable, defaultSorted, groupBy are Boolean 
instead of boolean, which causes a exception if using this attributes.

Regards,
Martin Haimberger

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



[jira] Updated: (TOMAHAWK-1190) Exception in t:columns

2008-02-07 Thread Martin Haimberger (JIRA)

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

Martin Haimberger updated TOMAHAWK-1190:


Status: Patch Available  (was: Open)

 Exception in t:columns
 --

 Key: TOMAHAWK-1190
 URL: https://issues.apache.org/jira/browse/TOMAHAWK-1190
 Project: MyFaces Tomahawk
  Issue Type: Bug
Reporter: Martin Haimberger
Assignee: Martin Haimberger
 Attachments: HtmlColumns-patch_issue_1190.patch


 Hi,
 the setter for the attributes sortable, defaultSorted, groupBy are Boolean 
 instead of boolean, which causes a exception if using this attributes.
 Regards,
 Martin Haimberger

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



[jira] Updated: (TOMAHAWK-160) ADF Renderer Kit and HtmlCommandLink not rendered

2008-02-07 Thread Martin Haimberger (JIRA)

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

Martin Haimberger updated TOMAHAWK-160:
---

Resolution: Fixed
Status: Resolved  (was: Patch Available)

see issue 117

 ADF Renderer Kit and HtmlCommandLink not rendered
 -

 Key: TOMAHAWK-160
 URL: https://issues.apache.org/jira/browse/TOMAHAWK-160
 Project: MyFaces Tomahawk
  Issue Type: Bug
  Components: Data Scroller
Affects Versions: 1.1.2-SNAPSHOT
 Environment: ADF 10.1.3.04, SUN RI 1.1.01
Reporter: Claudio Tasso
Priority: Critical
 Attachments: patch1.patch


 ADF requires the installation of its custom RendererKit (oracle.adf.core), 
 but it does not work well with some Tomahawk components.
 For example, let's examine the HtmlDataScrollerRenderer, which creates a 
 HtmlCommandLink during the  encoding  of the HtmlDataScroller component.
 This is the code which creates the HtmlCommandLink:
 HtmlCommandLink link = (HtmlCommandLink) application
.createComponent(HtmlCommandLink.COMPONENT_TYPE);
 
 scroller.getChildren().add(link);
 It seems to be quite standard: the compoent is created and the it's added to 
 the HtmlDataScroller componet.
 This code works very well when the faces-config.xml DOES NOT contain the 
 following line:
 default-render-kit-idoracle.adf.core/default-render-kit-id
 But when this line is inserted, the HtmlCommandLink does not appear in the 
 rendered page which is sent to the browser as HTML.
 The following JSP code contains an example:
 %@ page language=java pageEncoding=UTF-8%
 %@ taglib uri=http://java.sun.com/jsf/html; prefix=h %
 %@ taglib uri=http://java.sun.com/jsf/core; prefix=f %
 %@ taglib uri=http://myfaces.apache.org/tomahawk; prefix=t% 
 !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN
 html
 head
   
 /head
   
 body
   f:view
   h:form
   t:dataTable id=mytable rows=1 
 preserveDataModel=false value=#{TestBean.persons} var=item
   t:column
   h:outputText 
 value=#{item.name}/h:outputText
   /t:column
   t:column
   h:outputText 
 value=#{item.surname}/h:outputText
   /t:column
   /t:dataTable
   t:dataScroller for=mytable
   f:facet name=next
 %-- When the content of this facet 
 is rendered, it should be surrounded by a link --%
   h:outputText value=Next/
   /f:facet
   /t:dataScroller
   /h:form
   /f:view
 /body
 /html

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



[jira] Commented: (TOMAHAWK-160) ADF Renderer Kit and HtmlCommandLink not rendered

2008-02-07 Thread Martin Haimberger (JIRA)

[ 
https://issues.apache.org/jira/browse/TOMAHAWK-160?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12566539#action_12566539
 ] 

Martin Haimberger commented on TOMAHAWK-160:


Hi,

i will close this issue, because a patch (see issue 117) is already commited 
and this is working again.

Regards,
Martin Haimberger

 ADF Renderer Kit and HtmlCommandLink not rendered
 -

 Key: TOMAHAWK-160
 URL: https://issues.apache.org/jira/browse/TOMAHAWK-160
 Project: MyFaces Tomahawk
  Issue Type: Bug
  Components: Data Scroller
Affects Versions: 1.1.2-SNAPSHOT
 Environment: ADF 10.1.3.04, SUN RI 1.1.01
Reporter: Claudio Tasso
Priority: Critical
 Attachments: patch1.patch


 ADF requires the installation of its custom RendererKit (oracle.adf.core), 
 but it does not work well with some Tomahawk components.
 For example, let's examine the HtmlDataScrollerRenderer, which creates a 
 HtmlCommandLink during the  encoding  of the HtmlDataScroller component.
 This is the code which creates the HtmlCommandLink:
 HtmlCommandLink link = (HtmlCommandLink) application
.createComponent(HtmlCommandLink.COMPONENT_TYPE);
 
 scroller.getChildren().add(link);
 It seems to be quite standard: the compoent is created and the it's added to 
 the HtmlDataScroller componet.
 This code works very well when the faces-config.xml DOES NOT contain the 
 following line:
 default-render-kit-idoracle.adf.core/default-render-kit-id
 But when this line is inserted, the HtmlCommandLink does not appear in the 
 rendered page which is sent to the browser as HTML.
 The following JSP code contains an example:
 %@ page language=java pageEncoding=UTF-8%
 %@ taglib uri=http://java.sun.com/jsf/html; prefix=h %
 %@ taglib uri=http://java.sun.com/jsf/core; prefix=f %
 %@ taglib uri=http://myfaces.apache.org/tomahawk; prefix=t% 
 !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN
 html
 head
   
 /head
   
 body
   f:view
   h:form
   t:dataTable id=mytable rows=1 
 preserveDataModel=false value=#{TestBean.persons} var=item
   t:column
   h:outputText 
 value=#{item.name}/h:outputText
   /t:column
   t:column
   h:outputText 
 value=#{item.surname}/h:outputText
   /t:column
   /t:dataTable
   t:dataScroller for=mytable
   f:facet name=next
 %-- When the content of this facet 
 is rendered, it should be surrounded by a link --%
   h:outputText value=Next/
   /f:facet
   /t:dataScroller
   /h:form
   /f:view
 /body
 /html

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



[jira] Updated: (TOMAHAWK-117) dataScroller bug when using ADF - navigation icons not clickable

2008-01-25 Thread Martin Haimberger (JIRA)

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

Martin Haimberger updated TOMAHAWK-117:
---

Status: Patch Available  (was: Open)

 dataScroller bug when using ADF - navigation icons not clickable
 

 Key: TOMAHAWK-117
 URL: https://issues.apache.org/jira/browse/TOMAHAWK-117
 Project: MyFaces Tomahawk
  Issue Type: Bug
  Components: Data Scroller
 Environment: Windows/Unix/Weblogic
Reporter: James Hickey
Assignee: Martin Haimberger
 Attachments: datascroller_patch_issue_117.patch


 Hi - I have a strange issue with the t:dataScroller component where it 
 renders correctly but is not accessible (i.e. renders no links) for any of 
 the navigation links for forward/back buttons. The parent dataTable renders 
 fine, complete with sortable headers. It seems that this might be an issue 
 when ADF is deployed as deploying the separate samples WAR works fine. Below 
 is a snippet of my JSP - I can replicate the behaviour when surrounding this 
 with an f:view tag - help appreciated!
 PS - same issue both with release 1.1.1 and with 1.1.2 Nightly. Also seems to 
 make no difference whether I use myFaces or the RI
 Thanks
 James
   t:dataTable id=data styleClass=scrollerTable 
 headerClass=standardTable_Header footerClass=standardTable_Header 
 rowClasses=standardTable_Row1,standardTable_Row2 
 columnClasses=standardTable_Column,standardTable_ColumnCentered,standardTable_Column
  var=trade value=#{ipbBuySellQueryController2.queryResultList} 
 preserveDataModel=false rows=25 rowId=#{trade.id} 
 rowOnMouseOver=this.style.backgroundColor='#A5CBFF' 
 rowOnMouseOut=this.style.backgroundColor='#E0' 
 rowOnClick=this.style.backgroundColor='#FFE0E0' 
 rowOnDblClick=this.style.backgroundColor='#E0E0E0' 
 sortColumn=#{ipbBuySellQueryController2.sort} 
 sortAscending=#{ipbBuySellQueryController2.ascending} preserveSort=true
   h:column
   f:facet name=header/
   h:outputText 
 value=#{trade.id}/
   /h:column
   h:column
   f:facet name=header
   
 t:commandSortHeader columnName=client arrow=true immediate=false
   
 h:outputText value=Client/
   
 /t:commandSortHeader
   /f:facet
   h:outputText 
 value=#{trade.clientDescription}/
   /h:column
   h:column
   f:facet name=header
   
 t:commandSortHeader columnName=account arrow=true immediate=false
   
 h:outputText value=Account/
   
 /t:commandSortHeader
   /f:facet
   h:outputText 
 value=#{trade.accountDescription}/
   /h:column
   /t:dataTable
   t:dataScroller id=scroll for=data 
 fastStep=2 pageCountVar=pageCount pageIndexVar=pageIndex 
 styleClass=scroller paginator=true paginatorMaxPages=10 
 paginatorTableClass=paginator 
 paginatorActiveColumnStyle=font-weight:bold;
   f:facet name=first
   t:graphicImage 
 url=/images/arrow-first.gif border=1/
   /f:facet
   f:facet name=last
   t:graphicImage 
 url=/images/arrow-last.gif border=1/
   /f:facet
   f:facet name=previous
   t:graphicImage 
 url=/images/arrow-previous.gif border=1/
   /f:facet
   f:facet name=next
   t:graphicImage 
 url=/images/arrow-next.gif border=1/
   

[jira] Updated: (MYFACES-1809) Linkrenderer with TrinidadForm does not render parameters

2008-01-25 Thread Martin Haimberger (JIRA)

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

Martin Haimberger updated MYFACES-1809:
---

Status: Patch Available  (was: Open)

 Linkrenderer with TrinidadForm does not render parameters
 -

 Key: MYFACES-1809
 URL: https://issues.apache.org/jira/browse/MYFACES-1809
 Project: MyFaces Core
  Issue Type: Bug
  Components: General
Reporter: Martin Haimberger
 Attachments: link_renderer_patch_issue_1809.patch


 Hi,
 If a Trinidad form is used with HtmlCommandLinks, links are rendered, but 
 link-parameters are ignored.
 Regards,
 Martin Haimberger

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



[jira] Created: (MYFACES-1809) Linkrenderer with TrinidadForm does not render parameters

2008-01-25 Thread Martin Haimberger (JIRA)
Linkrenderer with TrinidadForm does not render parameters
-

 Key: MYFACES-1809
 URL: https://issues.apache.org/jira/browse/MYFACES-1809
 Project: MyFaces Core
  Issue Type: Bug
  Components: General
Reporter: Martin Haimberger


Hi,

If a Trinidad form is used with HtmlCommandLinks, links are rendered, but 
link-parameters are ignored.

Regards,
Martin Haimberger

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



[jira] Created: (MYFACES-1628) Migrate Partial State Saving to 1.2

2007-05-11 Thread Martin Haimberger (JIRA)
Migrate Partial State Saving to 1.2
---

 Key: MYFACES-1628
 URL: https://issues.apache.org/jira/browse/MYFACES-1628
 Project: MyFaces Core
  Issue Type: New Feature
  Components: JSR-252
Affects Versions: 1.2.0-SNAPSHOT
Reporter: Martin Haimberger
 Assigned To: Martin Haimberger
 Fix For: 1.2.0-SNAPSHOT


Migrate Partial State Saving to MyFaces 1.2

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



[jira] Created: (MYFACES-1621) ViewResponseWrapper does not wrapped the OutputStreams

2007-05-03 Thread Martin Haimberger (JIRA)
ViewResponseWrapper does not wrapped the OutputStreams
--

 Key: MYFACES-1621
 URL: https://issues.apache.org/jira/browse/MYFACES-1621
 Project: MyFaces Core
  Issue Type: Bug
  Components: JSR-252
Affects Versions: 1.2.0-SNAPSHOT
Reporter: Martin Haimberger
 Assigned To: Martin Haimberger
 Fix For: 1.2.0-SNAPSHOT


If the wrapped Response is used and getOutputStream() is called, a null pointer 
exception or an illegalState Exception is thrown. Thats because of the 
ViewResponseWrapper does not care about OutputStreams and expects that every 
wrapped Response uses the Writer.

Regards,
Martin Haimberger

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



[jira] Updated: (MYFACES-1621) ViewResponseWrapper does not wrapped the OutputStreams

2007-05-03 Thread Martin Haimberger (JIRA)

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

Martin Haimberger updated MYFACES-1621:
---

Status: Patch Available  (was: Open)

 ViewResponseWrapper does not wrapped the OutputStreams
 --

 Key: MYFACES-1621
 URL: https://issues.apache.org/jira/browse/MYFACES-1621
 Project: MyFaces Core
  Issue Type: Bug
  Components: JSR-252
Affects Versions: 1.2.0-SNAPSHOT
Reporter: Martin Haimberger
 Assigned To: Martin Haimberger
 Fix For: 1.2.0-SNAPSHOT

 Attachments: MyFaces-1621.patch


 If the wrapped Response is used and getOutputStream() is called, a null 
 pointer exception or an illegalState Exception is thrown. Thats because of 
 the ViewResponseWrapper does not care about OutputStreams and expects that 
 every wrapped Response uses the Writer.
 Regards,
 Martin Haimberger

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



[jira] Commented: (MYFACES-1563) Re-rendered input components redisplay their locale value on non-immediate action

2007-04-27 Thread Martin Haimberger (JIRA)

[ 
https://issues.apache.org/jira/browse/MYFACES-1563?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12492224
 ] 

Martin Haimberger commented on MYFACES-1563:


Hi,

are u sure that you have tried this with jsf 1.2? The example is not working at 
all with the jsf 1.2 impl right now.

Regards,
Martin Haimberger

 Re-rendered input components redisplay their locale value on non-immediate 
 action
 -

 Key: MYFACES-1563
 URL: https://issues.apache.org/jira/browse/MYFACES-1563
 Project: MyFaces Core
  Issue Type: Bug
  Components: JSR-252
Affects Versions: 1.1.5
 Environment: Tomcat 5.5, Jetty 6.1, Java 1.4.2, Java 1.5.0
Reporter: sarah haas
Priority: Critical
 Fix For: 1.1.5

 Attachments: NonRenderedComp.java, nonRenderedComp.jsp, 
 PersonBean.java


 Since the component was previously not rendered, its submitted value is null. 
 The local value that is set in restoreState is not null.  This does not get 
 reset by validation since non-rendered components are not validated 
 (processValidators). Therefore the associated value-binding expression is not 
 evaluated in getValue,and hence the local value is returned. 
 It seems to me that restoreState should set the local value to null. This 
 would result in the value-binding expression being evaluated and displayed.
 Example:
 I have a number of input text fields and a select-one-menu (which has an 
 immedate valueChangeListener) a command button (with an non-immedate action). 
 The menu switches the rendered mode of some display fields. The button saves 
 the entered text and clears the input fields.
 In addition I have a data-table which displays the saved data and contains a 
 column with a button, whose on-immediate action puts the selected data item 
 into the input fields.   
 I enter data in the input fields and save the data. It is displayed in the 
 table. Then I use the menu to select a mode in which some of the input text 
 fields are no longer rendered. I then select the original data from the 
 table. The fields which remain rendered are displayed and filled correctly. 
 However the fields which were previously NOT rendered are displayed but are 
 EMPTY.
 This bug does not occur with Sun's reference implementation.

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



[jira] Created: (MYFACES-1605) h:selectBooleanCheckbox h:selectManyCheckbox h:selectManyListbox h:selectManyMenu h:selectOneListbox h:selectOneMenu h:selectOneRadio broken

2007-04-27 Thread Martin Haimberger (JIRA)
h:selectBooleanCheckbox h:selectManyCheckbox h:selectManyListbox 
h:selectManyMenu h:selectOneListbox h:selectOneMenu h:selectOneRadio broken


 Key: MYFACES-1605
 URL: https://issues.apache.org/jira/browse/MYFACES-1605
 Project: MyFaces Core
  Issue Type: Bug
  Components: JSR-252
Affects Versions: 1.2.0-SNAPSHOT
 Environment: JSF 1.2 with tomcat 6.0.10
Reporter: Martin Haimberger
Priority: Critical
 Fix For: 1.2.0-SNAPSHOT


Hi,

Following Components are broken:

h:selectBooleanCheckbox
h:selectManyCheckbox 
h:selectManyListbox 
h:selectManyMenu
 h:selectOneListbox 
h:selectOneMenu 
h:selectOneRadio

i used:

 h:select* value=#{testbean.entrie} 
f:selectItems value=#{testbean.entries}/f:selectItems
 /h:select*

the testbean.entires returns a list of SelectItems and entrie is a String.

In the current MyFaces 1.1 Implementation this is working.

the Stacktrace:

javax.servlet.ServletException: /helloWorld.jsp(25,20) Unable to find setter 
method for attribute: value
javax.faces.webapp.FacesServlet.service(FacesServlet.java:152)
root cause

javax.faces.FacesException: /helloWorld.jsp(25,20) Unable to find setter method 
for attribute: value

org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:340)

org.apache.myfaces.application.jsp.JspViewHandlerImpl.renderView(JspViewHandlerImpl.java:260)

org.apache.myfaces.lifecycle.RenderResponseExecutor.execute(RenderResponseExecutor.java:41)

org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:132)
javax.faces.webapp.FacesServlet.service(FacesServlet.java:138)
root cause

org.apache.jasper.JasperException: /helloWorld.jsp(25,20) Unable to find setter 
method for attribute: value

org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:40)

org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:407)

org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:148)

org.apache.jasper.compiler.Generator$GenerateVisitor.evaluateAttribute(Generator.java:2756)

org.apache.jasper.compiler.Generator$GenerateVisitor.generateSetters(Generator.java:2985)

org.apache.jasper.compiler.Generator$GenerateVisitor.generateCustomStart(Generator.java:2169)

org.apache.jasper.compiler.Generator$GenerateVisitor.visit(Generator.java:1689)
org.apache.jasper.compiler.Node$CustomTag.accept(Node.java:1507)
org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2336)
org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2386)

org.apache.jasper.compiler.Generator$GenerateVisitor.visit(Generator.java:1705)
org.apache.jasper.compiler.Node$CustomTag.accept(Node.java:1507)
org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2336)
org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2386)

org.apache.jasper.compiler.Generator$GenerateVisitor.visit(Generator.java:1705)
org.apache.jasper.compiler.Node$CustomTag.accept(Node.java:1507)
org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2336)
org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2386)

org.apache.jasper.compiler.Generator$GenerateVisitor.visit(Generator.java:1705)
org.apache.jasper.compiler.Node$CustomTag.accept(Node.java:1507)
org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2336)
org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2386)
org.apache.jasper.compiler.Node$Visitor.visit(Node.java:2392)
org.apache.jasper.compiler.Node$Root.accept(Node.java:489)
org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2336)
org.apache.jasper.compiler.Generator.generate(Generator.java:3394)
org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:210)
org.apache.jasper.compiler.Compiler.compile(Compiler.java:306)
org.apache.jasper.compiler.Compiler.compile(Compiler.java:286)
org.apache.jasper.compiler.Compiler.compile(Compiler.java:273)

org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:566)

org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:308)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
javax.servlet.http.HttpServlet.service(HttpServlet.java:803)

org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:334)


[jira] Updated: (MYFACES-1605) h:selectBooleanCheckbox h:selectManyCheckbox h:selectManyListbox h:selectManyMenu h:selectOneListbox h:selectOneMenu h:selectOneRadio broken

2007-04-27 Thread Martin Haimberger (JIRA)

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

Martin Haimberger updated MYFACES-1605:
---

Status: Patch Available  (was: Open)

 h:selectBooleanCheckbox h:selectManyCheckbox h:selectManyListbox 
 h:selectManyMenu h:selectOneListbox h:selectOneMenu h:selectOneRadio broken
 

 Key: MYFACES-1605
 URL: https://issues.apache.org/jira/browse/MYFACES-1605
 Project: MyFaces Core
  Issue Type: Bug
  Components: JSR-252
Affects Versions: 1.2.0-SNAPSHOT
 Environment: JSF 1.2 with tomcat 6.0.10
Reporter: Martin Haimberger
 Assigned To: Martin Haimberger
Priority: Critical
 Fix For: 1.2.0-SNAPSHOT

 Attachments: selectitems.MYFACES-1605.patch


 Hi,
 Following Components are broken:
 h:selectBooleanCheckbox
 h:selectManyCheckbox 
 h:selectManyListbox 
 h:selectManyMenu
  h:selectOneListbox 
 h:selectOneMenu 
 h:selectOneRadio
 i used:
  h:select* value=#{testbean.entrie} 
 f:selectItems 
 value=#{testbean.entries}/f:selectItems
  /h:select*
 the testbean.entires returns a list of SelectItems and entrie is a String.
 In the current MyFaces 1.1 Implementation this is working.
 the Stacktrace:
 javax.servlet.ServletException: /helloWorld.jsp(25,20) Unable to find setter 
 method for attribute: value
   javax.faces.webapp.FacesServlet.service(FacesServlet.java:152)
 root cause
 javax.faces.FacesException: /helloWorld.jsp(25,20) Unable to find setter 
 method for attribute: value
   
 org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:340)
   
 org.apache.myfaces.application.jsp.JspViewHandlerImpl.renderView(JspViewHandlerImpl.java:260)
   
 org.apache.myfaces.lifecycle.RenderResponseExecutor.execute(RenderResponseExecutor.java:41)
   
 org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:132)
   javax.faces.webapp.FacesServlet.service(FacesServlet.java:138)
 root cause
 org.apache.jasper.JasperException: /helloWorld.jsp(25,20) Unable to find 
 setter method for attribute: value
   
 org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:40)
   
 org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:407)
   
 org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:148)
   
 org.apache.jasper.compiler.Generator$GenerateVisitor.evaluateAttribute(Generator.java:2756)
   
 org.apache.jasper.compiler.Generator$GenerateVisitor.generateSetters(Generator.java:2985)
   
 org.apache.jasper.compiler.Generator$GenerateVisitor.generateCustomStart(Generator.java:2169)
   
 org.apache.jasper.compiler.Generator$GenerateVisitor.visit(Generator.java:1689)
   org.apache.jasper.compiler.Node$CustomTag.accept(Node.java:1507)
   org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2336)
   org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2386)
   
 org.apache.jasper.compiler.Generator$GenerateVisitor.visit(Generator.java:1705)
   org.apache.jasper.compiler.Node$CustomTag.accept(Node.java:1507)
   org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2336)
   org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2386)
   
 org.apache.jasper.compiler.Generator$GenerateVisitor.visit(Generator.java:1705)
   org.apache.jasper.compiler.Node$CustomTag.accept(Node.java:1507)
   org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2336)
   org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2386)
   
 org.apache.jasper.compiler.Generator$GenerateVisitor.visit(Generator.java:1705)
   org.apache.jasper.compiler.Node$CustomTag.accept(Node.java:1507)
   org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2336)
   org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2386)
   org.apache.jasper.compiler.Node$Visitor.visit(Node.java:2392)
   org.apache.jasper.compiler.Node$Root.accept(Node.java:489)
   org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2336)
   org.apache.jasper.compiler.Generator.generate(Generator.java:3394)
   org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:210)
   org.apache.jasper.compiler.Compiler.compile(Compiler.java:306)
   org.apache.jasper.compiler.Compiler.compile(Compiler.java:286)
   org.apache.jasper.compiler.Compiler.compile(Compiler.java:273)
   
 org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:566)
   
 org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:308)
   org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
   

[jira] Created: (MYFACES-1606) dataTable with facet does not work

2007-04-27 Thread Martin Haimberger (JIRA)
dataTable with facet does not work
--

 Key: MYFACES-1606
 URL: https://issues.apache.org/jira/browse/MYFACES-1606
 Project: MyFaces Core
  Issue Type: Bug
  Components: JSR-252
Affects Versions: 1.2.0-SNAPSHOT
 Environment: Tomcat 6.0.10
Reporter: Martin Haimberger
 Fix For: 1.2.0-SNAPSHOT


Hy,

if i use a h:dataTable and use facet inside it like:

   h:column
  f:facet name=header
h:outputText value=name /
  /f:facet
  h:outputText value=#{item.name} /
/h:column

an exception during the rendering is thrown:

avax.servlet.ServletException: Must be called before the start element is 
closed (attribute 'scope')
javax.faces.webapp.FacesServlet.service(FacesServlet.java:152)
root cause

java.lang.IllegalStateException: Must be called before the start element is 
closed (attribute 'scope')

org.apache.myfaces.shared_impl.renderkit.html.HtmlResponseWriterImpl.writeAttribute(HtmlResponseWriterImpl.java:297)

org.apache.myfaces.shared_impl.renderkit.html.HtmlTableRendererBase.renderColumnHeaderCell(HtmlTableRendererBase.java:835)

org.apache.myfaces.shared_impl.renderkit.html.HtmlTableRendererBase.renderColumnChildHeaderOrFooterRow(HtmlTableRendererBase.java:777)

org.apache.myfaces.shared_impl.renderkit.html.HtmlTableRendererBase.renderColumnHeaderOrFooterRow(HtmlTableRendererBase.java:741)

org.apache.myfaces.shared_impl.renderkit.html.HtmlTableRendererBase.renderColumnHeaderRow(HtmlTableRendererBase.java:671)

org.apache.myfaces.shared_impl.renderkit.html.HtmlTableRendererBase.renderFacet(HtmlTableRendererBase.java:574)

org.apache.myfaces.shared_impl.renderkit.html.HtmlTableRendererBase.beforeBody(HtmlTableRendererBase.java:413)

org.apache.myfaces.shared_impl.renderkit.html.HtmlTableRendererBase.encodeChildren(HtmlTableRendererBase.java:118)

javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:527)

org.apache.myfaces.shared_impl.renderkit.RendererUtils.renderChild(RendererUtils.java:438)

org.apache.myfaces.shared_impl.renderkit.html.HtmlGridRendererBase.renderChildren(HtmlGridRendererBase.java:216)

org.apache.myfaces.shared_impl.renderkit.html.HtmlGridRendererBase.encodeEnd(HtmlGridRendererBase.java:98)

javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:539)
javax.faces.component.UIComponent.encodeAll(UIComponent.java:250)
javax.faces.component.UIComponent.encodeAll(UIComponent.java:247)
javax.faces.component.UIComponent.encodeAll(UIComponent.java:247)

org.apache.myfaces.application.jsp.JspViewHandlerImpl.renderView(JspViewHandlerImpl.java:314)

org.apache.myfaces.lifecycle.RenderResponseExecutor.execute(RenderResponseExecutor.java:41)

org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:132)
javax.faces.webapp.FacesServlet.service(FacesServlet.java:138)

without facets there is no problem.

Regards,
Martin Haimberger

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



[jira] Commented: (MYFACES-1220) JSR-252 Issue # 48: Specify the algorithm used for client id generation as well as provide a way to allow the page author to specify exactly what the client id should

2007-04-24 Thread Martin Haimberger (JIRA)

[ 
https://issues.apache.org/jira/browse/MYFACES-1220?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12491223
 ] 

Martin Haimberger commented on MYFACES-1220:


Hi,

I have looked over this issue and it seems to me that this is implemented 
already.

Regards,
Martin Haimberger

 JSR-252 Issue # 48: Specify the algorithm used for client id generation as 
 well as provide a way to allow the page author to specify exactly what the 
 client id should be, and preventing Faces from altering it.
 -

 Key: MYFACES-1220
 URL: https://issues.apache.org/jira/browse/MYFACES-1220
 Project: MyFaces Core
  Issue Type: New Feature
  Components: JSR-252
Reporter: Stan Silvert

 Specify the algorithm used for client id generation as well as provide a way 
 to allow the page author to specify exactly what the client id should be, and 
 preventing Faces from altering it.
 See https://javaserverfaces-spec-public.dev.java.net/issues/show_bug.cgi?id=48

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



[jira] Commented: (MYFACES-1253) JSR-252 Issue #147: Clarified grammer with respect to component id.

2007-04-24 Thread Martin Haimberger (JIRA)

[ 
https://issues.apache.org/jira/browse/MYFACES-1253?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12491302
 ] 

Martin Haimberger commented on MYFACES-1253:


Hi,

the problem described in the bug 147 is not a bug in MyFaces 1.2. 

if a hyphen (-) is used in the id like :

form id=form-test .

the java script which is generated has the following name:

function clear_form_2Dtest() 

so this is ok.

If a dot is used in the id name, an exception is thrown that a dot can not be 
used in an id name.

So i think this is also ok.

For me, it seems, this is no bug in MyFaces.

Regards,
Martin Haimberger

 JSR-252 Issue #147: Clarified grammer with respect to component id.
 ---

 Key: MYFACES-1253
 URL: https://issues.apache.org/jira/browse/MYFACES-1253
 Project: MyFaces Core
  Issue Type: Improvement
  Components: JSR-252
Reporter: Stan Silvert

 Clarified grammer with respect to component id.
 See 
 https://javaserverfaces-spec-public.dev.java.net/issues/show_bug.cgi?id=147

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



[jira] Updated: (MYFACES-1221) JSR-252 Issue #50: Allow an application to specify multiple render kits by introducing an optional renderKitId attribute on f:view.

2007-04-20 Thread Martin Haimberger (JIRA)

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

Martin Haimberger updated MYFACES-1221:
---

Status: Patch Available  (was: Open)

 JSR-252 Issue #50: Allow an application to specify multiple render kits by 
 introducing an optional renderKitId attribute on f:view.
 -

 Key: MYFACES-1221
 URL: https://issues.apache.org/jira/browse/MYFACES-1221
 Project: MyFaces Core
  Issue Type: New Feature
  Components: JSR-252
Reporter: Stan Silvert
 Assigned To: Martin Haimberger
 Attachments: renderkitTest.tar.gz


 Allow an application to specify multiple render kits by introducing an 
 optional renderKitId attribute on f:view.  It is no longer required to 
 write a customer ViewHandler to incorporate a different render kit.  Please 
 refer to Section 8.3 ResponseStateManager and Section 9.4.20 f:view for 
 more details.
 Also see 
 https://javaserverfaces-spec-public.dev.java.net/issues/show_bug.cgi?id=50

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



[jira] Created: (MYFACES-1586) Wrong Name of Partial State Saving Parameter

2007-04-13 Thread Martin Haimberger (JIRA)
Wrong Name of Partial State Saving Parameter


 Key: MYFACES-1586
 URL: https://issues.apache.org/jira/browse/MYFACES-1586
 Project: MyFaces Core
  Issue Type: Improvement
Reporter: Martin Haimberger
 Assigned To: Martin Haimberger
Priority: Minor


The name of the partial state saving parameter should not start with 
javax.faces, because its an myfaces specific parameter.

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



[jira] Updated: (MYFACES-1586) Wrong Name of Partial State Saving Parameter

2007-04-13 Thread Martin Haimberger (JIRA)

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

Martin Haimberger updated MYFACES-1586:
---

Status: Patch Available  (was: Open)

 Wrong Name of Partial State Saving Parameter
 

 Key: MYFACES-1586
 URL: https://issues.apache.org/jira/browse/MYFACES-1586
 Project: MyFaces Core
  Issue Type: Improvement
Reporter: Martin Haimberger
 Assigned To: Martin Haimberger
Priority: Minor

 The name of the partial state saving parameter should not start with 
 javax.faces, because its an myfaces specific parameter.

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



[jira] Updated: (MYFACES-1204) JSR-252 Issue #8: Made UIViewRoot a source of PhaseEvent(s) for all phases of the request processing lifecycle except RestoreView.

2007-04-10 Thread Martin Haimberger (JIRA)

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

Martin Haimberger updated MYFACES-1204:
---

Status: Patch Available  (was: Open)

 JSR-252 Issue #8: Made UIViewRoot a source of PhaseEvent(s) for all phases of 
 the request processing lifecycle except RestoreView.
 --

 Key: MYFACES-1204
 URL: https://issues.apache.org/jira/browse/MYFACES-1204
 Project: MyFaces Core
  Issue Type: New Feature
  Components: JSR-252
Reporter: Stan Silvert
 Assigned To: Martin Haimberger
 Attachments: phaselistenerpatch.tar.gz


 Made UIViewRoot a source of PhaseEvent(s) for all phases of the request 
 processing lifecycle except RestoreView.  Provided additional before and 
 after phase listener attributes for the f:view tag.  Please see Section 
 4.1.17 UIViewRoot for more details.
 See https://javaserverfaces-spec-public.dev.java.net/issues/show_bug.cgi?id=8

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



[jira] Commented: (MYFACES-1436) Add element deferred-value/method for elements in the taglibs

2007-04-06 Thread Martin Haimberger (JIRA)

[ 
https://issues.apache.org/jira/browse/MYFACES-1436?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12487224
 ] 

Martin Haimberger commented on MYFACES-1436:


Hi,

as i can see, this work is already done. The h.tld and the myfaces_core.tld ( 
in the Meta-INF folder) already has the element deferred-value/method for each 
attribute.

Regards,

Martin Haimberger

 Add element deferred-value/method for elements in the taglibs
 ---

 Key: MYFACES-1436
 URL: https://issues.apache.org/jira/browse/MYFACES-1436
 Project: MyFaces Core
  Issue Type: Sub-task
  Components: JSR-252
Reporter: Bruno Aranda
 Assigned To: Martin Haimberger



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



[jira] Updated: (MYFACES-1458) Implement JSR-252 core tag: SubviewTag

2007-03-23 Thread Martin Haimberger (JIRA)

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

Martin Haimberger updated MYFACES-1458:
---

Status: Patch Available  (was: Open)

 Implement JSR-252 core tag: SubviewTag
 --

 Key: MYFACES-1458
 URL: https://issues.apache.org/jira/browse/MYFACES-1458
 Project: MyFaces Core
  Issue Type: Sub-task
  Components: JSR-252
Reporter: Bruno Aranda
 Assigned To: Martin Haimberger
 Attachments: subviewTag.patch




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



[jira] Commented: (MYFACES-1485) Implement JSR-252 core tag: FacetTag

2007-03-23 Thread Martin Haimberger (JIRA)

[ 
https://issues.apache.org/jira/browse/MYFACES-1485?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12483483
 ] 

Martin Haimberger commented on MYFACES-1485:


Hy,

the facettag seams to be implemented already for jsf 1.2.

Regards,
Martin Haimberger

 Implement JSR-252 core tag: FacetTag
 

 Key: MYFACES-1485
 URL: https://issues.apache.org/jira/browse/MYFACES-1485
 Project: MyFaces Core
  Issue Type: Sub-task
Reporter: Andreas Berger



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



[jira] Commented: (MYFACES-1466) Create JSR-252 implementation of ValidatorELTag called ValidatorTag

2007-03-23 Thread Martin Haimberger (JIRA)

[ 
https://issues.apache.org/jira/browse/MYFACES-1466?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12483492
 ] 

Martin Haimberger commented on MYFACES-1466:


Hy,

it seams this issue is implemented already. Can anybody please recheck?

Regards,
Martin Haimberger

 Create JSR-252 implementation of ValidatorELTag called ValidatorTag
 ---

 Key: MYFACES-1466
 URL: https://issues.apache.org/jira/browse/MYFACES-1466
 Project: MyFaces Core
  Issue Type: New Feature
  Components: JSR-252
Reporter: Bruno Aranda

 It should contain the common code for all Validate(...)Tags

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



[jira] Updated: (MYFACES-1571) StringIndexOutOfBoundsException when request forwarded to plain JSP

2007-03-22 Thread Martin Haimberger (JIRA)

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

Martin Haimberger updated MYFACES-1571:
---

Status: Patch Available  (was: Open)

 StringIndexOutOfBoundsException when request forwarded to plain JSP
 ---

 Key: MYFACES-1571
 URL: https://issues.apache.org/jira/browse/MYFACES-1571
 Project: MyFaces Core
  Issue Type: Bug
  Components: JSR-252
Affects Versions: 1.2.0-SNAPSHOT
 Environment: nightly build, tomcat 6
Reporter: Dennis Byrne
 Attachments: statemarker.patch


 I don't have time to look at this right now but here's the stack trace if 
 anyone else wants to take a swing at it.
 javax.servlet.ServletException: String index out of range: -1
   javax.faces.webapp.FacesServlet.service(FacesServlet.java:152)
 root cause
 java.lang.StringIndexOutOfBoundsException: String index out of range: -1
   java.lang.AbstractStringBuilder.replace(AbstractStringBuilder.java:800)
   java.lang.StringBuffer.replace(StringBuffer.java:392)
   
 org.apache.myfaces.application.jsp.JspViewHandlerImpl$StateMarkerAwareWriter.flushToWriter(JspViewHandlerImpl.java:398)
   
 org.apache.myfaces.application.jsp.JspViewHandlerImpl.renderView(JspViewHandlerImpl.java:328)
   
 org.apache.myfaces.lifecycle.RenderResponseExecutor.execute(RenderResponseExecutor.java:41)
   
 org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:132)
   javax.faces.webapp.FacesServlet.service(FacesServlet.java:138)

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



[jira] Commented: (MYFACES-1235) JSR-252 Issue #78: Added a more user-friendly default error message for UIInput update model.

2007-03-19 Thread Martin Haimberger (JIRA)

[ 
https://issues.apache.org/jira/browse/MYFACES-1235?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12482072
 ] 

Martin Haimberger commented on MYFACES-1235:


done for English locale

 JSR-252 Issue #78: Added a more user-friendly default error message for 
 UIInput update model.
 -

 Key: MYFACES-1235
 URL: https://issues.apache.org/jira/browse/MYFACES-1235
 Project: MyFaces Core
  Issue Type: Improvement
  Components: JSR-252
Reporter: Stan Silvert
 Assigned To: Martin Haimberger

 Added a more user-friendly default error message for UIInput update 
 model.  Please see Section 2.5.2.4 Localized Application Messages for more 
 details.
 Also see 
 https://javaserverfaces-spec-public.dev.java.net/issues/show_bug.cgi?id=78

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



[jira] Commented: (MYFACES-1221) JSR-252 Issue #50: Allow an application to specify multiple render kits by introducing an optional renderKitId attribute on f:view.

2007-03-19 Thread Martin Haimberger (JIRA)

[ 
https://issues.apache.org/jira/browse/MYFACES-1221?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12482073
 ] 

Martin Haimberger commented on MYFACES-1221:


it seams that this is implemented yet. Can anyone take also a closer look to 
this issue?

regards,
Martin Haimberger

 JSR-252 Issue #50: Allow an application to specify multiple render kits by 
 introducing an optional renderKitId attribute on f:view.
 -

 Key: MYFACES-1221
 URL: https://issues.apache.org/jira/browse/MYFACES-1221
 Project: MyFaces Core
  Issue Type: New Feature
  Components: JSR-252
Reporter: Stan Silvert

 Allow an application to specify multiple render kits by introducing an 
 optional renderKitId attribute on f:view.  It is no longer required to 
 write a customer ViewHandler to incorporate a different render kit.  Please 
 refer to Section 8.3 ResponseStateManager and Section 9.4.20 f:view for 
 more details.
 Also see 
 https://javaserverfaces-spec-public.dev.java.net/issues/show_bug.cgi?id=50

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



[jira] Updated: (MYFACES-1235) JSR-252 Issue #78: Added a more user-friendly default error message for UIInput update model.

2007-03-19 Thread Martin Haimberger (JIRA)

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

Martin Haimberger updated MYFACES-1235:
---

Status: Patch Available  (was: Open)

 JSR-252 Issue #78: Added a more user-friendly default error message for 
 UIInput update model.
 -

 Key: MYFACES-1235
 URL: https://issues.apache.org/jira/browse/MYFACES-1235
 Project: MyFaces Core
  Issue Type: Improvement
  Components: JSR-252
Reporter: Stan Silvert
 Assigned To: Martin Haimberger

 Added a more user-friendly default error message for UIInput update 
 model.  Please see Section 2.5.2.4 Localized Application Messages for more 
 details.
 Also see 
 https://javaserverfaces-spec-public.dev.java.net/issues/show_bug.cgi?id=78

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



[jira] Updated: (MYFACES-1235) JSR-252 Issue #78: Added a more user-friendly default error message for UIInput update model.

2007-03-19 Thread Martin Haimberger (JIRA)

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

Martin Haimberger updated MYFACES-1235:
---

Status: Open  (was: Patch Available)

 JSR-252 Issue #78: Added a more user-friendly default error message for 
 UIInput update model.
 -

 Key: MYFACES-1235
 URL: https://issues.apache.org/jira/browse/MYFACES-1235
 Project: MyFaces Core
  Issue Type: Improvement
  Components: JSR-252
Reporter: Stan Silvert
 Assigned To: Martin Haimberger

 Added a more user-friendly default error message for UIInput update 
 model.  Please see Section 2.5.2.4 Localized Application Messages for more 
 details.
 Also see 
 https://javaserverfaces-spec-public.dev.java.net/issues/show_bug.cgi?id=78

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



[jira] Commented: (MYFACES-1381) JSR-252 Issue #303: Clarified the use of encodeChildren with no renderer: render not no-op

2007-03-19 Thread Martin Haimberger (JIRA)

[ 
https://issues.apache.org/jira/browse/MYFACES-1381?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12482105
 ] 

Martin Haimberger commented on MYFACES-1381:


Regarding to the jsf 1.2 spezification section 3.1.12 there should nothing be 
done if not rendertype is set.
The resolution of the corresponding jsf ri issue was set to later (jsf 2.0).

I think this is no bug.

 JSR-252 Issue #303: Clarified the use of encodeChildren with no renderer: 
 render not no-op
 --

 Key: MYFACES-1381
 URL: https://issues.apache.org/jira/browse/MYFACES-1381
 Project: MyFaces Core
  Issue Type: Bug
  Components: JSR-252
Affects Versions: 1.2.0-SNAPSHOT
Reporter: Mike Kienenberger
 Assigned To: Martin Haimberger

 JSR-252 Issue #303: Clarified the use of encodeChildren with no renderer: 
 render not no-op
 https://javaserverfaces.dev.java.net/issues/show_bug.cgi?id=303

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



[jira] Commented: (MYFACES-1226) JSR-252 Issue #59: Avoid EL expression evaluation for value attribute on AttributeTag. AttributeTag now passes the expression to UIComponent for evaluation.

2007-03-19 Thread Martin Haimberger (JIRA)

[ 
https://issues.apache.org/jira/browse/MYFACES-1226?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12482113
 ] 

Martin Haimberger commented on MYFACES-1226:


it seams that this is implemented yet. See 
org.apache.myfaces.taglib.core.AttributeTag. 
Can anyone take also a closer look to this issue?

regards,
Martin Haimberger


 JSR-252 Issue #59: Avoid EL expression evaluation for value attribute on 
 AttributeTag.  AttributeTag now passes the expression to UIComponent for 
 evaluation.
 ---

 Key: MYFACES-1226
 URL: https://issues.apache.org/jira/browse/MYFACES-1226
 Project: MyFaces Core
  Issue Type: Improvement
  Components: JSR-252
Reporter: Stan Silvert

 Avoid EL expression evaluation for value attribute on AttributeTag.  
 AttributeTag now passes the expression to UIComponent for evaluation.
 See https://javaserverfaces-spec-public.dev.java.net/issues/show_bug.cgi?id=59

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



[jira] Commented: (MYFACES-1202) JSR-252 Issue #5: Clarified the use of a string literal for the action attribute on ActionSource components.

2007-03-19 Thread Martin Haimberger (JIRA)

[ 
https://issues.apache.org/jira/browse/MYFACES-1202?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12482121
 ] 

Martin Haimberger commented on MYFACES-1202:


Hy,

this was a bug in the JSF RI 1.1 and worked in myfaces 1.1 and 1.2.
In the UIComponent.setValueExpression the expression is checked if it is 
literal and if it is, the literal navigation outcome will be added.

So i think this issue was never a new feature in myfaces, or i have 
missunderstood samething.

Regards,
Martin Haimberger

 JSR-252 Issue #5: Clarified the use of a string literal for the action 
 attribute on ActionSource components.
 --

 Key: MYFACES-1202
 URL: https://issues.apache.org/jira/browse/MYFACES-1202
 Project: MyFaces Core
  Issue Type: New Feature
  Components: JSR-252
Reporter: Stan Silvert

 Clarified the use of a string literal for the action attribute on 
 ActionSource components.
 See https://javaserverfaces-spec-public.dev.java.net/issues/show_bug.cgi?id=5

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



[jira] Commented: (MYFACES-1224) JSR-252 Issue #55: For postback requests, in the RestoreViewPhase, during ValueExpression examination for each component, specify that calling setValue() on each Val

2007-03-19 Thread Martin Haimberger (JIRA)

[ 
https://issues.apache.org/jira/browse/MYFACES-1224?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12482139
 ] 

Martin Haimberger commented on MYFACES-1224:


Hy,

this improvement is already implemented, because the JSF RI took the myfaces 
approach to call the setValue() methode parent first and then traversing the 
children.

Regards,
Martin Haimberger

 JSR-252 Issue #55: For postback requests, in the RestoreViewPhase, during 
 ValueExpression examination for each component, specify that calling 
 setValue() on each ValueExpression should be done parent-first
 -

 Key: MYFACES-1224
 URL: https://issues.apache.org/jira/browse/MYFACES-1224
 Project: MyFaces Core
  Issue Type: Improvement
  Components: JSR-252
Reporter: Stan Silvert

 For postback requests, in the RestoreViewPhase, during ValueExpression 
 examination for each component in the component tree, specify that calling 
 the setValue() method on each ValueExpression, should be done in a 
 parent-first fashion, calling the setValue() method and then traversing the 
 children.
 See https://javaserverfaces-spec-public.dev.java.net/issues/show_bug.cgi?id=55

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



[jira] Commented: (MYFACES-1230) JSR-252 Issue #68: Specify that the component tree may be manipulated throughout the request processing lifecycle, except during render.

2007-03-19 Thread Martin Haimberger (JIRA)

[ 
https://issues.apache.org/jira/browse/MYFACES-1230?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12482143
 ] 

Martin Haimberger commented on MYFACES-1230:


Hy,

is this really an issue or only a clearification request to the jsf spec?

Regards,
Martin Haimberger

 JSR-252 Issue #68: Specify that the component tree may be manipulated 
 throughout the request processing lifecycle, except during render.
 

 Key: MYFACES-1230
 URL: https://issues.apache.org/jira/browse/MYFACES-1230
 Project: MyFaces Core
  Issue Type: Improvement
  Components: JSR-252
Reporter: Stan Silvert

 Specify that the component tree may be manipulated throughout the request 
 processing lifecycle, except during render.  Please see Section 2.2.6 Render 
 Response for more details.
 Also see 
 https://javaserverfaces-spec-public.dev.java.net/issues/show_bug.cgi?id=68

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



[jira] Updated: (MYFACES-1565) Added a more user-friendly default error message for UIInput update model.

2007-03-15 Thread Martin Haimberger (JIRA)

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

Martin Haimberger updated MYFACES-1565:
---

Status: Patch Available  (was: Open)

 Added a more user-friendly default error message for UIInput update 
 model. 
 ---

 Key: MYFACES-1565
 URL: https://issues.apache.org/jira/browse/MYFACES-1565
 Project: MyFaces Core
  Issue Type: Improvement
  Components: JSR-127
Reporter: Martin Haimberger
Priority: Minor
 Attachments: myfaces11_updatedmessage.patch


 Added a more user-friendly default error message for UIInput update 
 model. 

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



[jira] Updated: (MYFACES-1548) UIComponent State change if getValueBinding() is called.

2007-03-01 Thread Martin Haimberger (JIRA)

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

Martin Haimberger updated MYFACES-1548:
---

Status: Patch Available  (was: Open)

 UIComponent State change if getValueBinding() is called.
 

 Key: MYFACES-1548
 URL: https://issues.apache.org/jira/browse/MYFACES-1548
 Project: MyFaces Core
  Issue Type: Bug
  Components: JSR-252
Affects Versions: 1.2.0-SNAPSHOT
Reporter: Martin Haimberger
 Fix For: 1.2.0-SNAPSHOT

 Attachments: UIComponentBase.patch


 The Component State change if getValueBinding() is called and no 
 _valueExpressionMap is present.

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



[jira] Updated: (MYFACES-1548) UIComponent State change if getValueBinding() is called.

2007-03-01 Thread Martin Haimberger (JIRA)

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

Martin Haimberger updated MYFACES-1548:
---

Status: Open  (was: Patch Available)

 UIComponent State change if getValueBinding() is called.
 

 Key: MYFACES-1548
 URL: https://issues.apache.org/jira/browse/MYFACES-1548
 Project: MyFaces Core
  Issue Type: Bug
  Components: JSR-252
Affects Versions: 1.2.0-SNAPSHOT
Reporter: Martin Haimberger
 Fix For: 1.2.0-SNAPSHOT

 Attachments: UIComponentBase.patch


 The Component State change if getValueBinding() is called and no 
 _valueExpressionMap is present.

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



[jira] Created: (MYFACES-1548) UIComponent State change if getValueBinding() is called.

2007-02-28 Thread Martin Haimberger (JIRA)
UIComponent State change if getValueBinding() is called.


 Key: MYFACES-1548
 URL: https://issues.apache.org/jira/browse/MYFACES-1548
 Project: MyFaces Core
  Issue Type: Bug
  Components: JSR-252
Affects Versions: 1.2.0-SNAPSHOT
Reporter: Martin Haimberger
 Fix For: 1.2.0-SNAPSHOT


The Component State change if getValueBinding() is called and no 
_valueExpressionMap is present.

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



[jira] Updated: (MYFACES-1548) UIComponent State change if getValueBinding() is called.

2007-02-28 Thread Martin Haimberger (JIRA)

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

Martin Haimberger updated MYFACES-1548:
---

Status: Patch Available  (was: Open)

 UIComponent State change if getValueBinding() is called.
 

 Key: MYFACES-1548
 URL: https://issues.apache.org/jira/browse/MYFACES-1548
 Project: MyFaces Core
  Issue Type: Bug
  Components: JSR-252
Affects Versions: 1.2.0-SNAPSHOT
Reporter: Martin Haimberger
 Fix For: 1.2.0-SNAPSHOT


 The Component State change if getValueBinding() is called and no 
 _valueExpressionMap is present.

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



[jira] Updated: (MYFACES-1544) Verbatim Components are not created during JSP dispatch

2007-02-26 Thread Martin Haimberger (JIRA)

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

Martin Haimberger updated MYFACES-1544:
---

Status: Patch Available  (was: Open)

 Verbatim Components are not created during JSP dispatch
 ---

 Key: MYFACES-1544
 URL: https://issues.apache.org/jira/browse/MYFACES-1544
 Project: MyFaces Core
  Issue Type: Bug
  Components: JSR-252
Affects Versions: 1.2.0-SNAPSHOT
Reporter: Martin Haimberger
 Fix For: 1.2.0-SNAPSHOT


 Hy,
 Verbatim Components for text in the JSP Page are not created during JSP 
 dispatch
 Regards
 Martin Haimberger

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



[jira] Created: (MYFACES-1543) mbean_source.jsp not working

2007-02-25 Thread Martin Haimberger (JIRA)
mbean_source.jsp not working 
-

 Key: MYFACES-1543
 URL: https://issues.apache.org/jira/browse/MYFACES-1543
 Project: MyFaces Core
  Issue Type: Bug
  Components: website
Reporter: Martin Haimberger
Priority: Minor


the mbean_source is not working if for example the myfaces_simple examples are 
deployed not as docBase. The path the mbean_source.jsp generates is related to 
the docBase directory.

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



[jira] Updated: (MYFACES-1543) mbean_source.jsp not working

2007-02-25 Thread Martin Haimberger (JIRA)

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

Martin Haimberger updated MYFACES-1543:
---

Status: Patch Available  (was: Open)

 mbean_source.jsp not working 
 -

 Key: MYFACES-1543
 URL: https://issues.apache.org/jira/browse/MYFACES-1543
 Project: MyFaces Core
  Issue Type: Bug
  Components: website
Reporter: Martin Haimberger
Priority: Minor

 the mbean_source is not working if for example the myfaces_simple examples 
 are deployed not as docBase. The path the mbean_source.jsp generates is 
 related to the docBase directory.

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



[jira] Updated: (MYFACES-1541) Partial State Saving improvement to myfaces

2007-02-24 Thread Martin Haimberger (JIRA)

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

Martin Haimberger updated MYFACES-1541:
---

Status: Patch Available  (was: Open)

 Partial State Saving improvement to myfaces
 ---

 Key: MYFACES-1541
 URL: https://issues.apache.org/jira/browse/MYFACES-1541
 Project: MyFaces Core
  Issue Type: Improvement
  Components: General
Affects Versions:  1.1.6-SNAPSHOT
Reporter: Martin Haimberger
 Fix For:  1.1.6-SNAPSHOT


 Partial State Saving of the Component Tree to reduce the needed bandwith if 
 client side state saving is activated or the used memory if server side state 
 saving is used. There are two modes in which the partial state saving can 
 be used, the faster one is if the jsp is only rendert once and a template 
 of the component tree is generated and saved. The following request uses this 
 template to construct the UIViewRoot and merge the partial state save. 
 Before the state will get saved, the current UIViewRoot is compared to the 
 template and only the components which differs are saved. In the secound mode 
 the JSP is processed by every request, which is very usefull if Scripts are 
 embedded inside the page. The secound reason is backword compatiblity because 
 for example the f:loadbundle tag will load the bundle if the TAG is 
 processed. The s:loadBundle component solves this problem, but if someone 
 want to use partial state saving and is not willing to include the sandbox 
 for the s:loadBundle component the secound mode will help.

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