Re: Super!

2005-10-20 Thread Mathias Brökelmann
IMO saving the state like jsf does is a very nice solution for this problem. I like it because it perfectly follows the OO paradigms and is easy to implement. I use it for our applications too. Whenever I have to handle table data where some fields needs to maintain a state for each row it is

Re: Super!

2005-10-20 Thread Werner Punz
Simon Kitching wrote: I'm still on the JSF learning curve, but I believe we're talking here about saving the UIComponent tree state, and that that is done via a custom approach in JSF. Firstly the JSF framework saves the classnames of the UIComponent object tree, so that it can build an

Re: Super!

2005-10-20 Thread Mathias Brökelmann
I´ve added two context parameters: org.apache.myfaces.NUMBER_OF_VIEWS_IN_SESSION defines the number of the latest views stored in the session with a default of 20 (like RI) org.apache.myfaces.SERIALIZE_STATE_IN_SESSION if true (default) the state will be serialized to a byte array, otherwise it

RE: Super!

2005-10-20 Thread Jesse Alexander \(KBSA 21\)
-Original Message- org.apache.myfaces.NUMBER_OF_VIEWS_IN_SESSION defines the number of the latest views stored in the session with a default of 20 (like RI) -/Original Message- Great... one less test/investigation I have to do before being able to request that JSF gets mandatory

[jira] Commented: (MYFACES-716) Problem using JSF input components with DataList

2005-10-20 Thread Sharath Reddy (JIRA)
[ http://issues.apache.org/jira/browse/MYFACES-716?page=comments#action_12332565 ] Sharath Reddy commented on MYFACES-716: --- Hi Vinnie, I tried to reproduce your setup exactly. This is my JSF: f:subview id=results h:form x:dataList

Re: Super!

2005-10-20 Thread Mathias Brökelmann
IMO having a max number of views stored in the session is quite adequate for this. If the user navigates to other pages the oldest view is dropped if the max number is reached. Correct me if I´m wrong but this is different to the RI. AFAIK RI stores the last n views based on a view. So you can end

[jira] Commented: (MYFACES-320) selectOneRadio does not properly persist its value

2005-10-20 Thread Sharath Reddy (JIRA)
[ http://issues.apache.org/jira/browse/MYFACES-320?page=comments#action_12332566 ] Sharath Reddy commented on MYFACES-320: --- I tested with the same setup. Looks like this is no longer a problem. selectOneRadio does not properly persist its value

[jira] Closed: (MYFACES-723) ApplicationImpl: German ist instead of is in error messages

2005-10-20 Thread Mathias Broekelmann (JIRA)
[ http://issues.apache.org/jira/browse/MYFACES-723?page=all ] Mathias Broekelmann closed MYFACES-723: --- Fix Version: Nightly Resolution: Fixed patch is applied. Thanks Mike! Just a note for the relative path´s. I use eclipse which is

RE: Super!

2005-10-20 Thread Jesse Alexander \(KBSA 21\)
-Original Message- IMO having a max number of views stored in the session is quite adequate for this. If the user navigates to other pages the oldest view is dropped if the max number is reached. Correct me if I´m wrong but this is different to the RI. AFAIK RI stores the last n views

How to run Forrest to generate the documentation?

2005-10-20 Thread sharath reddy
Hello, I tried the usual 'ant dist' command, but I got the following error: C:\development\myfaces\forrest\build\build.xml:49: The following error occurred while executing this line: java.io.FileNotFoundException: F:\apache-forrest-0.7\forrest.build.xml (The system cannot find the file specified)

Re: How to run Forrest to generate the documentation?

2005-10-20 Thread Mathias Brökelmann
I don´t know if forrest 0.7 is working but try to define your FORREST_HOME to f:\apache-forrest-0.7\main of use forrest-0.6 with f:\apache-forrest-0.6\src\core as FORREST_HOME 2005/10/20, sharath reddy [EMAIL PROTECTED]: Hello, I tried the usual 'ant dist' command, but I got the following

[jira] Commented: (MYFACES-703) Invalid rederer under RI

2005-10-20 Thread Darren Jensen (JIRA)
[ http://issues.apache.org/jira/browse/MYFACES-703?page=comments#action_12332571 ] Darren Jensen commented on MYFACES-703: --- I have the same issue. I am creating the working the extended HtmlDataTable. I am working directly with java class,

[jira] Commented: (MYFACES-716) Problem using JSF input components with DataList

2005-10-20 Thread Vinnie Fazio (JIRA)
[ http://issues.apache.org/jira/browse/MYFACES-716?page=comments#action_12332575 ] Vinnie Fazio commented on MYFACES-716: -- Thank you Sharath! I do not know what to think of this. You're example looks exactly like mine. Are you using the MyFaces

[jira] Closed: (MYFACES-320) selectOneRadio does not properly persist its value

2005-10-20 Thread Martin Marinschek (JIRA)
[ http://issues.apache.org/jira/browse/MYFACES-320?page=all ] Martin Marinschek closed MYFACES-320: - Fix Version: Nightly Resolution: Cannot Reproduce Assign To: Martin Marinschek selectOneRadio does not properly persist its value

[jira] Closed: (MYFACES-724) ClassNotFoundException: org.apache.myfaces.examples.inputSuggestAjax.InputSuggestAjaxBean

2005-10-20 Thread Martin Marinschek (JIRA)
[ http://issues.apache.org/jira/browse/MYFACES-724?page=all ] Martin Marinschek closed MYFACES-724: - Fix Version: Nightly Resolution: Fixed Assign To: Martin Marinschek thanks ClassNotFoundException:

Re: Super!

2005-10-20 Thread Mike Kienenberger
I'd like to agree with Alexander on this one. Sometimes, it's better to be able to tell end users that their pages will expire after 5 minutes (or 5 hours) rather than saying they can only backtrack 15 views (most end-users have no idea what a view means). Not all of us need to tune our

[jira] Closed: (MYFACES-715) ArrayStoreException in _SharedRendererUtils.getConvertedUISelectManyValue()

2005-10-20 Thread Martin Marinschek (JIRA)
[ http://issues.apache.org/jira/browse/MYFACES-715?page=all ] Martin Marinschek closed MYFACES-715: - Fix Version: Nightly Resolution: Fixed Assign To: Martin Marinschek ArrayStoreException in

[jira] Commented: (MYFACES-715) ArrayStoreException in _SharedRendererUtils.getConvertedUISelectManyValue()

2005-10-20 Thread Martin Marinschek (JIRA)
[ http://issues.apache.org/jira/browse/MYFACES-715?page=comments#action_12332595 ] Martin Marinschek commented on MYFACES-715: --- I did not use your patch - there is a reason in using the arrayComponentType to create the Array whenever possible.

Re: Super!

2005-10-20 Thread Mathias Brökelmann
This sounds good to me. Any idea how we can implement it. The only solution I have is too have an additional thread running somewhere which checks for timeouts. 2005/10/20, Mike Kienenberger [EMAIL PROTECTED]: I'd like to agree with Alexander on this one. Sometimes, it's better to be able to

Re: [jira] Created: (MYFACES-724) ClassNotFoundException: org.apache.myfaces.examples.inputSuggestAjax.InputSuggestAjaxBean

2005-10-20 Thread Werner Punz
Well I fixed and reverted it, because it worked anyway on my machine, and the fix would have involved too many changes very close to the rollout of a release candidate, it looked to critical for me to fix now because nothing was broken on my machine and it was not code I checked in. And yes there

[jira] Commented: (MYFACES-700) incompatible change to jscookMenu

2005-10-20 Thread Martin Marinschek (JIRA)
[ http://issues.apache.org/jira/browse/MYFACES-700?page=comments#action_12332596 ] Martin Marinschek commented on MYFACES-700: --- Sorry to not let you out, but it seems that your new patch was not made from the version currently on SVN head...

RE: Super!

2005-10-20 Thread Jesse Alexander \(KBSA 21\)
-Original Message- This sounds good to me. Any idea how we can implement it. The only solution I have is too have an additional thread running somewhere which checks for timeouts. -/Original Message- Put a bean into application context, which gets the info about actual sessions

JIRA still sending out email from myfaces-dev@incubator.apache.org

2005-10-20 Thread Mike Kienenberger
Should JIRA be reconfigured with a different from/return-path value? It's still sending out email as myfaces-dev@incubator.apache.org. Return-Path: myfaces-dev@incubator.apache.org Received-SPF: pass (gmail.com: domain of myfaces-dev@incubator.apache.org designates 209.237.227.199 as permitted

Re: JIRA still sending out email from myfaces-dev@incubator.apache.org

2005-10-20 Thread Sean Schofield
Fixed. Thanks for reporting. sean On 10/20/05, Mike Kienenberger [EMAIL PROTECTED] wrote: Should JIRA be reconfigured with a different from/return-path value? It's still sending out email as myfaces-dev@incubator.apache.org. Return-Path: myfaces-dev@incubator.apache.org Received-SPF: pass

RE: Help! How to set focus on a form?

2005-10-20 Thread CONNER, BRENDAN \(SBCSI\)
FYI: I checked into how Struts renders html:form focus=fieldName ..., and it simply adds the following lines after the end of the form: script language=JavaScript type=text/javascript !-- document.forms[viewName:formName].elements[viewName:formName:fieldNam e].focus(); // -- /script Is

[ANNOUNCE] MyFaces 1.1.1 RC3 is now available

2005-10-20 Thread Sean Schofield
The release candidate can be found at http://cvs.apache.org/builds/myfaces/release/. Please download it and help us with the testing if you are interested. Please report all JIRA issues against version 1.1.1.

Re: svn commit: r326946 - /myfaces/tomahawk/trunk/src/java/org/apache/myfaces/component/html/util/ReducedHTMLParser.java

2005-10-20 Thread Martin Marinschek
But what do we do with whitespace before head? then the parsing won't work as well... regards, Martin On 10/20/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Author: prophecy Date: Thu Oct 20 10:08:33 2005 New Revision: 326946 URL: http://svn.apache.org/viewcvs?rev=326946view=rev Log:

[jira] Closed: (MYFACES-728) Error message in LocaleUtils should be info level

2005-10-20 Thread Stan Silvert (JIRA)
[ http://issues.apache.org/jira/browse/MYFACES-728?page=all ] Stan Silvert closed MYFACES-728: fixed Error message in LocaleUtils should be info level - Key: MYFACES-728 URL:

[jira] Resolved: (MYFACES-728) Error message in LocaleUtils should be info level

2005-10-20 Thread Stan Silvert (JIRA)
[ http://issues.apache.org/jira/browse/MYFACES-728?page=all ] Stan Silvert resolved MYFACES-728: -- Resolution: Fixed Error message in LocaleUtils should be info level - Key: MYFACES-728

Re: svn commit: r326946 - /myfaces/tomahawk/trunk/src/java/org/apache/myfaces/component/html/util/ReducedHTMLParser.java

2005-10-20 Thread Travis Reeder
I'll change it to this: (lastChars[3]=='' || Character.isWhitespace(lastChars[3])) Is it valid xml to have whitespace after the opening bracket? Travis On 10/20/05, Martin Marinschek [EMAIL PROTECTED] wrote: But what do we do with whitespace before head? then the parsing won't work as

[jira] Created: (MYFACES-727) AddResource is outputting the resource under the thead if it exists in a datatable

2005-10-20 Thread Travis Reeder (JIRA)
AddResource is outputting the resource under the thead if it exists in a datatable Key: MYFACES-727 URL: http://issues.apache.org/jira/browse/MYFACES-727 Project: MyFaces Type: Bug

Re: Getting an item in the component tree

2005-10-20 Thread Mike Kienenberger
UIComponent.findComponent(String expr) is one way. I thought there was a method on Application as well, but I can't seem to find it again. On 10/20/05, Travis Reeder [EMAIL PROTECTED] wrote: I am wondering if there is a simple function somewhere to get an item by id in the component tree?

inputSuggestAjax

2005-10-20 Thread SOSA, Pablo
Hi People, I'm not sure if this is the right place for this, please correct me if not :D I'd tried the sandbox:inputSuggestAjax, successfuly by checking the sources from the repositorythe 13/10/05and following the example I manage to get it working. It was very very easy.However

Re: inputSuggestAjax

2005-10-20 Thread Sean Schofield
RC3 is being built on a branch so its definitely possible that a bug has been fixed/introduced on the trunk/branch and not on the other. sean On 10/20/05, SOSA, Pablo [EMAIL PROTECTED] wrote: Hi People, I'm not sure if this is the right place for this, please correct me if not :D

RE: inputSuggestAjax

2005-10-20 Thread SOSA, Pablo
I've got the sources from the trunk. URL: https://svn.apache.org/repos/asf/myfaces/[build|sandbox|impl|api|...]/tr unk Does anybody have this problem with RC3? Any suggestion on how to get it working again? Cheers -Original Message- From: Sean Schofield [mailto:[EMAIL PROTECTED] Sent:

positive press

2005-10-20 Thread Bill Dudney
Hi All, I'm not sure you all follow this type of stuff but I was reading Matt Assay's blog http://asay.blogspot.com/2005/10/little-more-detail-intranet-journal- on.html And the intranet journal article he references here; http://www.intranetjournal.com/articles/200510/ij_10_19_05a.html