[jira] Resolved: (TOBAGO-470) menuCheckbox is missing in tobago extension facelets

2007-08-15 Thread Bernd Bohmann (JIRA)
[ https://issues.apache.org/jira/browse/TOBAGO-470?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bernd Bohmann resolved TOBAGO-470. -- Resolution: Fixed menuCheckbox is missing in tobago extension facelets

Re: [TRINIDAD] and portlets - ppr

2007-08-15 Thread Martin Marinschek
Sure, sounds good. Would also be my decision. regards, Martin On 8/13/07, Scott O'Bryan [EMAIL PROTECTED] wrote: I'm all for keeping this as a patch for now. Like I say, I'm reluctant to add native PPR support to a non-portlet 2.0 framework. But I certainly don't have any issues with

[Announce] Release of Apache MyFaces Trinidad 1.0.2

2007-08-15 Thread Matthias Wessendorf
The Apache MyFaces Trinidad team is pleased to announce the release of Apache MyFaces Trinidad Core 1.0.2. Apache MyFaces Trinidad is a JavaServer(tm) Faces 1.1 component library. Trinidad Core 1.0.2 is available in both binary and source distributions: *

[jira] Created: (MYFACES-1706) AUTO_SCROLL isn't working anymore...

2007-08-15 Thread JIRA
AUTO_SCROLL isn't working anymore... Key: MYFACES-1706 URL: https://issues.apache.org/jira/browse/MYFACES-1706 Project: MyFaces Core Issue Type: Bug Affects Versions: 1.1.5 Environment:

[jira] Commented: (MYFACES-1682) MyFaces 1.2 not work properly with value parameter

2007-08-15 Thread Michael Abele (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-1682?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12519936 ] Michael Abele commented on MYFACES-1682: I've put the 1.2.2 tld files into myfaces-impl-1.2.0.jar. Then my

RE: [Announce] Release of Apache MyFaces Trinidad 1.0.2

2007-08-15 Thread William Hoover
The download page still refers to version 1.0.1 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Matthias Wessendorf Sent: Wednesday, August 15, 2007 4:31 AM To: [EMAIL PROTECTED]; MyFaces Development; MyFaces Discussion Subject: [Announce] Release of Apache

[Trinidad] af|inputText:readOnly::content - Does it work for anyone

2007-08-15 Thread Danny Robinson
Has anyone had any success with the following skin entry? There doesn't seem to be any specific style generated for readOnly inputText's. af|inputText:readOnly::content { background-color: red; } I need this so I can remove the border that is added through my usage of .AFFieldText { color:

Re: [Trinidad] af|inputText:readOnly::content - Does it work for anyone

2007-08-15 Thread Simon Lessard
Hello Danny, It works fine for me in Firefox and will work only sometimes in MSIE because it doesn't support composite selectors, so it becaome dependant on the selector order of the generated CSS file. You can probably fix it by using the following selector: .p_AFReadOnly af|inputText::content

Re: [Trinidad] af|inputText:readOnly::content - Does it work for anyone

2007-08-15 Thread Matthias Wessendorf
On 8/15/07, Simon Lessard [EMAIL PROTECTED] wrote: Hello Danny, It works fine for me in Firefox and will work only sometimes in MSIE because it doesn't support composite selectors, so it becaome dependant on the this is IE6 specific, right ? selector order of the generated CSS file. You can

[jira] Created: (TOBAGO-471) Tree should remembers its scroll position

2007-08-15 Thread Helmut Swaczinna (JIRA)
Tree should remembers its scroll position - Key: TOBAGO-471 URL: https://issues.apache.org/jira/browse/TOBAGO-471 Project: MyFaces Tobago Issue Type: Improvement Components: Themes

[jira] Created: (MYFACES-1707) log catched exceptions

2007-08-15 Thread JIRA
log catched exceptions -- Key: MYFACES-1707 URL: https://issues.apache.org/jira/browse/MYFACES-1707 Project: MyFaces Core Issue Type: Bug Affects Versions: 1.1.5 Reporter: Brian Preuß Please log catched

Re: [Trinidad] af|inputText:readOnly::content - Does it work for anyone

2007-08-15 Thread Adam Winer
On 8/15/07, Simon Lessard [EMAIL PROTECTED] wrote: Hello Danny, It works fine for me in Firefox and will work only sometimes in MSIE because it doesn't support composite selectors, so it becaome dependant on the selector order of the generated CSS file. You can probably fix it by using the

Re: [Trinidad] af|inputText:readOnly::content - Does it work for anyone

2007-08-15 Thread Simon Lessard
Probably... Although div does give more room for CSS customization, like dimensions and text positioning, I don't see why it should be needed in that case since it applies only to readOnly fields. DIV are rendered quite fast though, so the only real problem with it here is that it prevents placing

Re: [Trinidad] NavigationPane items are not accessible to the far right

2007-08-15 Thread Chris Hane
Since navigationPane is about to be documented(? TRINIDAD-626) is there any interest in an alternative implementation (see below)? Or is there an option to have the current implementation wrap the navigationPane.tabs? Chris Chris Hane wrote: I ran into the problem I describe below

[jira] Created: (TRINIDAD-627) SelectManyShuttle NullPointerException when not inside a form

2007-08-15 Thread JIRA
SelectManyShuttle NullPointerException when not inside a form - Key: TRINIDAD-627 URL: https://issues.apache.org/jira/browse/TRINIDAD-627 Project: MyFaces Trinidad Issue Type: Bug

[jira] Commented: (TRINIDAD-627) SelectManyShuttle NullPointerException when not inside a form

2007-08-15 Thread JIRA
[ https://issues.apache.org/jira/browse/TRINIDAD-627?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12520016 ] Matthias Weßendorf commented on TRINIDAD-627: - If a component absolutely requires a form, it should

Re: [Announce] Release of Apache MyFaces Trinidad 1.0.2

2007-08-15 Thread Rogers Reilly
couple quick questions. 1) When does the 1.2 branch get synced? I am specifically interested in using the IFrame-less partial updating with 1.2. 2) related to the new PPR code, does anything happen onscreen to show that an update is in progress? I believe Adam posted earlier that the

Re: [Trinidad] af|inputText:readOnly::content - Does it work for anyone

2007-08-15 Thread Jeanne Waldman
This is an aside. Don't use camelCase in pseudo-classes. ng. It should be :read-only. Since the p_AF prefix is a private implementation, do this instead: af|inputText:read-only::content {} That should expand to: .af_inputText.p_AFReadOnly .af_inputText_content {} And like Simon said if it

Re: [Trinidad] af|inputText:readOnly::content - Does it work for anyone

2007-08-15 Thread Simon Lessard
Dang, I missed the camelCase usage. On 8/15/07, Jeanne Waldman [EMAIL PROTECTED] wrote: This is an aside. Don't use camelCase in pseudo-classes. ng. It should be :read-only. Since the p_AF prefix is a private implementation, do this instead: af|inputText:read-only::content {} That

[jira] Created: (TRINIDAD-628) purple skin's navigationPane tabs does not render correctly

2007-08-15 Thread Jeanne Waldman (JIRA)
purple skin's navigationPane tabs does not render correctly --- Key: TRINIDAD-628 URL: https://issues.apache.org/jira/browse/TRINIDAD-628 Project: MyFaces Trinidad Issue Type: Bug

Re: [Announce] Release of Apache MyFaces Trinidad 1.0.2

2007-08-15 Thread Adam Winer
On 8/15/07, Rogers Reilly [EMAIL PROTECTED] wrote: couple quick questions. 1) When does the 1.2 branch get synced? I am specifically interested in using the IFrame-less partial updating with 1.2. It's already been synced. There's a 1.2.2 branch, it just needs to be finalized. 2) related

[jira] Created: (TOMAHAWK-1085) AJAX requests from PPRPanelGroup ignore the Encoding type

2007-08-15 Thread Ernst Fastl (JIRA)
AJAX requests from PPRPanelGroup ignore the Encoding type - Key: TOMAHAWK-1085 URL: https://issues.apache.org/jira/browse/TOMAHAWK-1085 Project: MyFaces Tomahawk Issue Type: Bug

Re: [TRINIDAD] PPR problem with 1.2.2 branch

2007-08-15 Thread Simon Lessard
Please note that there's no white space in the partialTriggers property, I don't know why one showed up in the post. Regards, ~ Simon On 8/15/07, Simon Lessard [EMAIL PROTECTED] wrote: Hello all, The following page fail to update after the PPR event with current 1.2.2branch using RI on

[TRINIDAD] PPR problem with 1.2.2 branch

2007-08-15 Thread Simon Lessard
Hello all, The following page fail to update after the PPR event with current 1.2.2branch using RI on OC4J 11g beta (container should not be the issue here though, nor should RI). test managed bean is a session scoped bean with a single r/w value property. Anyone else can reproduce the issue?

Re: svn commit: r566325 - /myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/ppr/PPRPanelGroupRenderer.java

2007-08-15 Thread Mario Ivankovits
Hi! http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/ppr/PPRPanelGroupRenderer.java?view=diffrev=566325r1=566324r2=566325 + String encoding = UTF-8 ; // Hardcoded default + if(externalContext.getRequest() instanceof

[jira] Created: (MYFACES-1708) duplicate id exception with JSTL conditional tag

2007-08-15 Thread Kenji Nagahashi (JIRA)
duplicate id exception with JSTL conditional tag Key: MYFACES-1708 URL: https://issues.apache.org/jira/browse/MYFACES-1708 Project: MyFaces Core Issue Type: Bug Components: General

Re: svn commit: r566325 - /myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/ppr/PPRPanelGroupRenderer.java

2007-08-15 Thread Ernst Fastl
Hi, Might be an option too. I thought it best to return the client the encoding he requests. Maybe the responseWriter-encoding should be used before the hardcoded default. Where does the responseWriter get the encoding from? Is that configured? cheers Ernst On 8/15/07, Mario Ivankovits [EMAIL

Re: [TRINIDAD] PPR problem with 1.2.2 branch

2007-08-15 Thread Simon Lessard
Please also note that I'm stupid and forgot the always rendered panelGroup around the outputText to set the partialTriggers... However, I do have a PPR issue in a big application using the new XmlHttpRequest that I'll have to investigate further, but for now I'll go open my belly with a daisho and

[jira] Commented: (MYFACES-1244) JSR-252 Issue #95: Allow multiple instances of FacesServlet in a single webapp, mapped with different URI mappings, to use different implementations of Lifecycle

2007-08-15 Thread Bernhard Huemer (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-1244?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12520111 ] Bernhard Huemer commented on MYFACES-1244: -- It still seems that no one has commited this patch yet. Call

[jira] Created: (TRINIDAD-629) .p_OraHiddenLabel style class doesn't work for legends on FF

2007-08-15 Thread Mark Yvanovich (JIRA)
.p_OraHiddenLabel style class doesn't work for legends on FF Key: TRINIDAD-629 URL: https://issues.apache.org/jira/browse/TRINIDAD-629 Project: MyFaces Trinidad Issue Type: Bug

[Trinidad] fixing maximum on tr:DateTimeRangeValidator was (TRINIDAD-61) tr:validateDateTimeRange validation fails on last day of valid range

2007-08-15 Thread Yee-wah Lee
Hi everyone, There is a problem with the Trinidad DateTimeRangeValidator where it incorrectly flags the last date of its range as an error. JIRA: https://issues.apache.org/jira/browse/TRINIDAD-61 Overview of the problem 1) The page contains a DateTimeRangeValidator with a maximum, e.g.

[jira] Created: (TRINIDAD-630) Table stamp state could be greatly optimized for size

2007-08-15 Thread Adam Winer (JIRA)
Table stamp state could be greatly optimized for size - Key: TRINIDAD-630 URL: https://issues.apache.org/jira/browse/TRINIDAD-630 Project: MyFaces Trinidad Issue Type: Improvement

[Trinidad] Skining - strange default value in: base-desktop.xss

2007-08-15 Thread Cristi Toth
Hi Jeane! The problem is that I need to split the skin style-sheet into more files because it's getting huge and harder to maintain So I'm using skin-additions. And the property from the skin-addition is always overriden by the base skin. I really think that the skin-addition should have the same

[jira] Created: (MYFACES-1709) faces-config.xml validation using an XML Schema

2007-08-15 Thread Bernhard Huemer (JIRA)
faces-config.xml validation using an XML Schema --- Key: MYFACES-1709 URL: https://issues.apache.org/jira/browse/MYFACES-1709 Project: MyFaces Core Issue Type: Improvement Components:

[jira] Created: (MYFACES-1710) Improve performance by using Trove fast collections (as optional)

2007-08-15 Thread Mikhail Grushinskiy (JIRA)
Improve performance by using Trove fast collections (as optional) - Key: MYFACES-1710 URL: https://issues.apache.org/jira/browse/MYFACES-1710 Project: MyFaces Core Issue Type:

Re: [TRINIDAD] PPR problem with 1.2.2 branch

2007-08-15 Thread Leonardo Uribe
Hi I have probed the trinidad demo example of 1.2.2 branch of trinidad, running a tomcat 6.0.14 web server, and firefox 2.0.0.6, myfaces 1.2.0 and I have experience a javascript error. I tried to execute the following page (the pom of trinidad demo needs to add jstl 1.2 jar on the war file to