Re: subform and model changes

2007-05-24 Thread Mario Ivankovits
Hi Mike! If you want to change the submitted values to the backing bean, then you need to do so in code just as if you wanted to do it for a regular form. http://wiki.apache.org/myfaces/ClearInputComponents Yep, I am aware of this, but I really hate to use component bindings. This is alway a

Re: subform and model changes

2007-05-24 Thread Mario Ivankovits
Hi ! One of my primary use cases is to do something like set of input field rows add-new-row button inside of a subForm This means you allow the user to add some rows and validate the input at a later save point at once? However, you won :-) So I'll try to develop the attribute with a

Re: subform and model changes

2007-05-25 Thread Mario Ivankovits
Hi! How about keepSubmittedValues which is a bit more specific than keepInput? However, it doesn't matter too much what we call it. t:dataTable has something called preserveRowStates which has a similar purpose, but I can't see how we can use the same name (nor am I sure that

Re: [PROPOSAL] MyFaces JSR-252 Version Number (was MyFaces 2.0.0)

2007-05-25 Thread Mario Ivankovits
Hi Manfred! For me, all in your post result in a simple +1 from my side ;-) A20.5. not solved, but if there is a JSF fix we must join all our influence and convice Ed to call it JSF-1.3 ;-) This only happens if there is a minor release of the spec do we have seen something in the past?

[orchestra] nightly build and continuum

2007-06-15 Thread Mario Ivankovits
Hi! What needs to be done to have a nightly build of orchestra and continuum running? Someone to volunteer? Thanks! Ciao, Mario

Re: [orchestra] nightly build and continuum

2007-06-15 Thread Mario Ivankovits
Hi Mr. Continuum! continuum rocks! here you go: http://people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces/orchestra/ Wow - THAT was bleedingly fast Thanks a lot! Ciao, Mario

Orchestra on code.google.com

2007-06-25 Thread Mario Ivankovits
Hi! code.google.com is fine for that. I'd like to start a project at code.google.com to host any code not allowed (or not easily allowed) by the policy of ASF. e.g. when depending on (L)GPL code. I reserved a name already [1]. Any objections about it? Ciao, Mario [1]

Re: Orchestra on code.google.com

2007-06-26 Thread Mario Ivankovits
Hi! Kito D. Mann schrieb: I don't know -- this might be confusing since Matthias already has FacesGoodies [1] :-). [1] http://code.google.com/p/facesgoodies/ Why not adding it to facesgoodies then? I understand facesgoodies as template for quickstarting an application. I'd

Re: Orchestra on code.google.com

2007-06-26 Thread Mario Ivankovits
of the components are used... regards Alexander -Original Message- From: Mario Ivankovits [mailto:[EMAIL PROTECTED] Sent: Monday, June 25, 2007 3:29 PM To: MyFaces Development Subject: Orchestra on code.google.com Hi! code.google.com is fine for that. I'd like to start

Re: Orchestra on code.google.com

2007-06-26 Thread Mario Ivankovits
Hi Dennis! Perhaps this has been covered already, but does it have binary deps on MyFaces? Or just the JSF API? No deps to MyFaces, else it would be a bug. If Orchstra has no dep on the MyFaces implementation, you may be able to open this up to more users and you wouldn't have to find a new

Re: Orchestra on code.google.com

2007-06-27 Thread Mario Ivankovits
Craig wrote: Doesn't myfaces-goodies have a nice ring? Yepp ... sound nice ;-) Kito D. Mann wrote: I don't know -- this might be confusing since Matthias already has FacesGoodies [1] :-) . would be myfaces-orchestra-goodies, should be enough dissociation between FacesGoodies then, I hope

Re: Orchestra on code.google.com

2007-06-27 Thread Mario Ivankovits
Cagatay Civici wrote: Mario, What about stability of sourceforge lately? I used it in the past, but was disappointed about speed and reachability. I had no problems with sourceforge for a long time when working on jsf-comp. Ok, so lets sum up ... Use the jsf-comp space for

Re: Please create Orchestra JIRA project

2007-07-28 Thread Mario Ivankovits
Thanks! Could one please create the component core. Should be sufficient for now. I'll do the rest when I am back - and - I'll be back ;-) Version unreleased or nightly will make it too. I am on vacation and jira is to heavy-weight to be used from the mobile phone using roaming fees. Thanks

Re: Please create Orchestra JIRA project

2007-08-10 Thread Mario Ivankovits
Hi! Done: Component Core and release 1.0-SNAPSHOT Enjoy your vacation, Mario! Thanks ... but now its over again :-( I've setup the components now Now, its up to the users to file bugs :) Ciao, Mario

[orchestra] first release

2007-08-10 Thread Mario Ivankovits
Hi! Now that I am back from vacation I'll start cutting a first release of MyFaces Orchestra. There is not that much negative feedback, which could mean that it is an awesome piece of code which just works or it is not widely used yet ;-) Anyway, I think a release could help increasing the

Re: [orchestra] introduction

2007-08-11 Thread Mario Ivankovits
Hi Simon! I just wanted to let you know that I'm back working on JSF stuff again, and in particular plan to help Mario with Orchestra. I think it would be fair to tell the list also that we are co-worker for the next (approximately) 2 years. I hope it's ok if I use those existing commit

Re: [orchestra] static log objects

2007-08-11 Thread Mario Ivankovits
Hi! I've noticed that a number of Orchestra classes use private static final Log log = ; See class ConversationManager for an example. I don't think static log objects are a good idea in libraries, as described here: http://wiki.apache.org/jakarta-commons/Logging/StaticLog Yepp,

Re: [orchestra] ConnectionManagerDataSource and java1.6

2007-08-11 Thread Mario Ivankovits
Hi! ConnectionManagerDataSource doesn't compile with java1.6, because Sun added a new ancestor interface (Wrapper) to DataSource:-(. The new methods are isWrapperFor and unwrap. I think the best solution is just to add stub implementations of the new methods that throw

Re: [orchestra] minor issues

2007-08-11 Thread Mario Ivankovits
Hi! MockFrameworkAdapter is checked in twice * core/src/test/java/org/apache/myfaces/orchestra/frameworkAdapter * core/src/main/java/org/apache/myfaces/orchestra/frameworkAdapter This causes Eclipse to complain (as it should). Thanks for the heads up. I'll remove it. There are a number

Re: [orchestra] code spawns thread

2007-08-11 Thread Mario Ivankovits
Hi! I see that currently Orchestra has a feature that allows conversation contexts to be timed out (deleted) automatically. I'm a little curious about why this feature is needed. When a user's session times out the conversation data is discarded anyway. There is not only a singe

Re: [orchestra] ConnectionManagerDataSource and java1.6

2007-08-11 Thread Mario Ivankovits
Hi! ConnectionManagerDataSource doesn't compile with java1.6, because Sun added a new ancestor interface (Wrapper) to DataSource:-(. The new methods are isWrapperFor and unwrap. I think the best solution is just to add stub implementations of the new methods that throw

Re: [orchestra] class Conversation and ThreadLocals

2007-08-11 Thread Mario Ivankovits
Hi! Class Conversation uses a thread-local variable to store the current conversation. Thread-locals are pretty tricky to manage in a container environment; they need to be cleared at the end of each request as the same thread will be reused by the container. Would storing this value in

Re: [orchestra] minor issues

2007-08-11 Thread Mario Ivankovits
Hi! AFAIK there is no way in readObject to get the serialVersionUID of the stored object, is there a way? I'm not sure. Why would you want to? I'd generate the serialVersionUID with any number and use a second local version which will be written first to the the stream. That way,

Re: [orchestra] minor points

2007-08-11 Thread Mario Ivankovits
Hi! The constructor for class ConversationContext takes a ConversationManager object as a parameter (ie a ref to its parent), but never uses it. Is there some future intention to do something with this parameter, or can it be removed? Might be a relict from previous times. Let's remove

Re: [orchestra] question about Spring custom scopes

2007-08-13 Thread Mario Ivankovits
Hi! I would say your assessment is correct. If this is slow, how about caching the connection of bean-name - scope-name somewhere? I've talked to Simon, lets create a test case first to measure the times. Lets see action afterwards. Ciao, Mario smime.p7s Description: S/MIME Cryptographic

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

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

2007-08-16 Thread Mario Ivankovits
cheers Ernst On 8/15/07, Mario Ivankovits [EMAIL PROTECTED] wrote: 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

Re: [orchestra] first release

2007-08-16 Thread Mario Ivankovits
Hi! Do we still plan to cut the first release soon ?? Yes, just hat to do some enhancements (annotations) and had to write an article. Next is to finish some online documentation which should happen during the weekend. Next week is the release week. At least, thats the master plan :-) Ciao,

Re: [orchestra] first release

2007-08-16 Thread Mario Ivankovits
Dan, they are already committed and fixed! Ciao, Mario Anxious to see my patches into the release. Thanks -D Mario Ivankovits wrote: Hi! Do we still plan to cut the first release soon ?? Yes, just hat to do some enhancements (annotations) and had to write

Orchestra dokumentation [was Re: svn commit: r567017 - /myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/jsf/filter/OrchestraServletFilter.java]

2007-08-17 Thread Mario Ivankovits
Hi Simon! Thanks for all the hard work you put into documentation and cleanup of the Orchestra API. This really brings the project even further! Have a nice Weekend! Ciao, Mario [EMAIL PROTECTED] schrieb: Author: skitching Date: Fri Aug 17 04:19:22 2007 New Revision: 567017 URL:

Re: [orchestra] conversation timeouts

2007-08-18 Thread Mario Ivankovits
Hi! Currently orchestra has a feature that causes conversations that have not been accessed within 30 minutes to automatically be deleted. Similarly, conversation-contexts that have not been accessed within 30 minutes also get deleted. I don't personally see the use of this, but have been

Re: [orchestra] ViewController stuff

2007-08-18 Thread Mario Ivankovits
Hi! There is already an implementation of this sort of thing in the Shale project's view-controller module: http://shale.apache.org/shale-view/index.html I do not have any good argument why I didn't go the shale way. Maybe I was just to shy to convince the shale people about the surely

Re: [orchestra] Dependency on tomahawk sandbox

2007-08-18 Thread Mario Ivankovits
Hi! For the release expected this week, is the orchestra core15 module (which includes dynaForm) expected to be in the release? If so, it currently depends on tomahawk sandbox component TypedNumberConverter which will make things difficult. In fact, I thought about NOT releasing the core15

Re: [orchestra] ConnectionManagerDataSource.isWrapperFor

2007-08-18 Thread Mario Ivankovits
Hi! In ConnectionManagerDataSource, method isWrapperFor currently returns false. Perhaps it should throw UnsupportedOperationException instead? And what about a solution using reflection? Maybe the most correct solution could be: public Object unwrap(Class iface) throws SQLException {

Re: [orchestra] EndConversationMethodBindingFacade

2007-08-18 Thread Mario Ivankovits
Hi! The errorOutcome attribute allows nice handling of the case where an action method throws an exception. However it doesn't close the current conversation. Yep, this is intentional. We don't wanted to force the close of an conversation as we don't know if the exception is one which

Re: [orchestra] FrameworkAdapter

2007-08-18 Thread Mario Ivankovits
Hi! The FrameworkAdapter class currently uses a static variable to find its singleton object. However static variables are tricky in unit testing, and are a problem when a library is deployed via a shared classloader. The only thing which comes to mind is using a ThreadLocal, and having a

Re: [orchestra] servlet filters ..

2007-08-18 Thread Mario Ivankovits
Hi! However, I noticed that several filters are already used by orchestra, like to one to wrap the request (RequestParameterResponseWrapper) BTW also something which should make it into a myfaces-commons. Why not using a FacesContextFactoryImpl ? Hehe, we tried several things to make

Re: [orchestra] servlet filters ..

2007-08-18 Thread Mario Ivankovits
Hi! The only advantage of the current way (servlet filter) is, that it works in an mixed webapp environment (JSF/JSP) However, we can provide your's as the default and provide mine as an alternative if we would like to. jo, that's why I think the framework-adapter might be fine in a

Re: [orchestra] servlet filters ..

2007-08-18 Thread Mario Ivankovits
Hi! Ok, I've created a patch for review. My stupid email client wraps lines at 80 chars, so I've attached it instead of providing it inline. Using this place also to configure the FrameworkAdapter was exactly what I thought too :-) Just, maybe we can use frameworkAdapterClass as

Re: [orchestra] conversation timeouts

2007-08-19 Thread Mario Ivankovits
Hi! Currently orchestra has a feature that causes conversations that have not been accessed within 30 minutes to automatically be deleted. Similarly, conversation-contexts that have not been accessed within 30 minutes also get deleted. This came up [1] in relation to Shale dialogs [2],

Re: [orchestra] Shale overlap (was Re: ViewController stuff)

2007-08-19 Thread Mario Ivankovits
Hi! If the view-controller stuff is an optional feature of Orchestra I'd be fine with directing the users to the shale-view stuff. However, there is a single feature (@ConversationRequire) which has to be in Orchestra core15 which requires a view-controller like framework. Given the number of

[orchestra] FrameworkAdapter setup (was Re: [orchestra] servlet filters ..)

2007-08-19 Thread Mario Ivankovits
Hi! So I am fine by adding some Framework-Adapter specified stuff to the OrchestraServletFilter - instead of creating a new filter. Isn't OrchestraServletFilter currently optional [1]? Using it to set up the FrameworkAdapter would make it mandatory... Sorry Mario, I should have

Re: [orchestra] missing emails from me

2007-08-19 Thread Mario Ivankovits
Hi! Simon, I've never received a message with the text Isn't OrchestraServletFilter . I hope there are no other messages I've lost from you :-( Aargh, yes there are. /snip Ouch - I already wondered why you didn't respond to my responses :-) Ciao, Mario

Re: [Fwd: Re: [orchestra] ConnectionManagerDataSource.isWrapperFor]

2007-08-19 Thread Mario Ivankovits
Hi! Hi! In ConnectionManagerDataSource, method isWrapperFor currently returns false. Perhaps it should throw UnsupportedOperationException instead? And what about a solution using reflection? Maybe the most correct solution could be: Yes, I agree that using reflection is

Re: [Fwd: Re: [orchestra] conversation timeouts]

2007-08-19 Thread Mario Ivankovits
Hi! One issue is that garbage collection only happens at some random time after the session is no longer used. So the timeout thread could end up calling into the ConversationManager even after the session has been explicitly removed. Possibly the ConversationManager could implement

Re: [orchestra] ViewController stuff

2007-08-19 Thread Mario Ivankovits
Hi! If, we have to use the (never ;-) ) upcoming myfaces-commons project. Are you willing to volunteer? What, is tomahawk dead? I must check the myfaces archives No, tomahawk is not dead, it is just that tomahawk should be a component library only while myfaces-commons has

Re: [Orchestra] Need ability to reopen jiar issue

2007-08-21 Thread Mario Ivankovits
Dan Tran schrieb: Just sent in another patch for ORCHESTRA-4 Applied - Thanks :-) -D Dan Tran wrote: Please configure Orchestra Jira to allow a closed jira to be reopenned. I just submitted an another patch for ORCHESTRA-4 -D -- mit freundlichen Grüßen Mario

Re: [jira] Created: (ORCHESTRA-5) Unable to load orchestra into eclipse

2007-08-21 Thread Mario Ivankovits
Hi! Unable to load orchestra into eclipse Can someone confirm this too? I'd wonder as this will affect tomahawk too. No one complained about it till today, or? - svn move core myfaces-orchestra-core - svn move core15 myfaces-orchestra-core15 - svn move examples

Re: svn commit: r567449 - in /myfaces/orchestra/trunk: core/src/main/resources/META-INF/LICENSE.txt core15/src/main/resources/META-INF/LICENSE.txt examples/src/main/resources/META-INF/LICENSE.txt

2007-08-21 Thread Mario Ivankovits
Hi Wendy! On 8/19/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Author: imario Date: Sun Aug 19 11:17:41 2007 New Revision: 567449 URL: http://svn.apache.org/viewvc?view=revrev=567449 Log: added license file The remote resources plugin can do this for you. It also generates

myfaces-master release

2007-08-21 Thread Mario Ivankovits
Hi! Is there any need to release the myfaces-master before an orchestra release or can we just use the 1.0.5 release? --- Mario

Re: myfaces-master release

2007-08-21 Thread Mario Ivankovits
: myfaces-master release To: Reply-MyFaces Development dev@myfaces.apache.orgTo: MyFaces Development dev@myfaces.apache.org there is a wiki, created by manfred core 1.1.5 diary (or something like that) -M On 8/21/07, Mario Ivankovits [EMAIL PROTECTED] wrote: Hi! Is there any need

Re: [orchestra] ViewController package.html

2007-08-30 Thread Mario Ivankovits
, so this feature may be phased out when other alternatives are available. p See class ViewControllerManager for further documentation. /body /html Cheers, Simon -- mit freundlichen Grüßen Mario Ivankovits Software Engineering OPS EDV VertriebsgesmbH A-1120 Wien, Michael

Re: [orchestra] package javadoc for requestParameterProvider package

2007-08-30 Thread Mario Ivankovits
Grüßen Mario Ivankovits Software Engineering OPS EDV VertriebsgesmbH A-1120 Wien, Michael-Bernhard-Gasse 10 Firmenbuch Nr.: FN51233v, Handelsgericht Wien Tel.: +43-1-8938810; Fax: +43-1-8938810/3700 http://www.ops.co.at E-Mail: [EMAIL PROTECTED] Skype: mario_ivankovits

[orchestra] Re: no FlashScopeManager found

2007-08-30 Thread Mario Ivankovits
Hi Dan! It is stranged that i have to register that configuration file. Do you know a way how to provide configuration files for spring within an JAR which spring will automatically process? Is there any magic naming scheme? Anyhow, I follow the advice, and run into this another error.

[orchestra] conversation timeout checking thread change

2007-08-30 Thread Mario Ivankovits
Hi! I made some changes to conserve resources regarding the conversation-timeout-checking thread. We had one thread per session which might become heavy-weight if you have to deal with a lot of sessions. Using a listener we are now able to drop down to just one thread per context. Those already

Re: svn commit: r571710 - /myfaces/core/branches/1_2_1/api/src/main/java/javax/faces/webapp/_ErrorPageWriter.java

2007-09-01 Thread Mario Ivankovits
Hi! +//handle JSP-Exceptions - equally long know for swallowing root-causes ;) +if(ex.getClass().getName().equals(javax.servlet.jsp.JspException)) { +initCausePerReflection(ex,getRootCause); +} Why do you check against the class name all over? I think

Re: [Orchestra] Latest snapshot throws UnsupportedException

2007-09-05 Thread Mario Ivankovits
Hi Dan! Changes starting rev 572370 gives me this stack trace java.lang.UnsupportedOperationException I still develop with JSF 1.1 and I think a JSF 1.2 change triggers this exception - odd. Please try the latest version which should solve this problem for now by using a proxy instead of

JSF 1.2 API backward compatible?

2007-09-05 Thread Mario Ivankovits
Hi! Is the JSF 1.2 API backward compatible? An application developed with the JSF 1.2 API should run on 1.1 as long as no 1.2 specific stuff will be used, no? I ask as I had a UOE in orchestra which seems happened after I override the ApplicationFactory (and the Application) but still use JSF

Re: JSF 1.2 API backward compatible?

2007-09-05 Thread Mario Ivankovits
Hi! It's the opposite, as for any backward compatible system. It means that you can, theoretically, run a JSF 1.1 application on a 1.2 system. I haven't looked at it in very detail, but it seems if you provide your own javax.faces.application.Application compiled with JSF1.1 the method

Re: [Orchestra] Latest snapshot throws UnsupportedException

2007-09-05 Thread Mario Ivankovits
Hi! However, the proxy solution does not work either, unforturnately my app crashes at startup with no provided stacktrace. :( Please try again ... hope it works, else I'll have a look at it tomorrow setting up a JSF 1.2 environment. Thanks! Ciao, Mario

Re: JSF 1.2 API backward compatible?

2007-09-05 Thread Mario Ivankovits
Hi! This is, indeed, a compatibility issue. However, I assume it's caused because you did not use the decorator pattern when you applied your custom Application implementation, so now you're inheriting from the default implementation method behavior, which is to throw an

Re: JSF 1.2 API backward compatible?

2007-09-06 Thread Mario Ivankovits
Hi! I found the problem. I requested the to-be-decorated application within my constructor which failed as with an JSF 1.1. compiled class the FacesContext is required to find the JSF 1.2 default application implementation. JSF 1.2 will then dispatch the new methods to the default

Re: [Orchestra] Latest snapshot throws UnsupportedException

2007-09-06 Thread Mario Ivankovits
Hi Dan! Ok, next try please. I've changed Orchestra to use JSF 1.2 during the build process so that I do not need a proxy based solution which seems to be not possible with the RI. Now the decorated application object should also correctly delegate the JSF 1.2 methods to the original

[orchestra] sandbox on continuum

2007-09-06 Thread Mario Ivankovits
Hi! Could someone please setup the myfaces-orchestra-sandbox [1] project on continuum. Currently the continuum build fails due to missing artifacts. Thanks! Ciao, Mario [1] https://svn.apache.org/repos/asf/myfaces/orchestra/trunk/sandbox

Re: [Orchestra] Latest snapshot throws UnsupportedException

2007-09-06 Thread Mario Ivankovits
Hi Dan! However, the example has compilation issue C:\dev\myfaces\orchestra\examples\src\main\java\org\apache\myfaces\examples\mops \backings\PetstoreData.java:[4,44] cannot find symbol symbol : class ShopCustomerDao location: package org.apache.myfaces.examples.mops.dao Hmm ... strange,

Re: JSF 1.2 API backward compatible?

2007-09-06 Thread Mario Ivankovits
Hi Simon! I guess you could use a ServletContextListener to extract the default factory from FactoryFinder and then set your own instance passing it the default implementation, but that would work only if JSF's own ServletContextListener is executed before, and I'm not aware of the listener

[orchestra] changed scope configuration

2007-09-07 Thread Mario Ivankovits
Hi! Today we cleaned up the way how to configure the different scopes. Basically this means: * you HAVE to configure a timeout now. The default is to never timeout a conversation on its own. * the flash scope is now configured through the lifetime property. Please see here an example or refer

Re: [orchestra] unable to persist in sub thread

2007-09-07 Thread Mario Ivankovits
Hi Dan! My thread has the same service bean that is in the main thread has, so I guess both thread sharing the same Persentent Context. Now I need to figure out how to Create my Persitent Context in the child thread which a little disappointed. My goal is to use the same service bean. Is

Re: [orchestra] changed scope configuration

2007-09-08 Thread Mario Ivankovits
no no. I think you are right (if i understand you correctly). By default the conversation lives as long as the session which means a conversation can live far longer than just e.g. 30 min. I'd admit I am also one of those who would like to see a default timeout happening, though others wont

Re: [orchestra] Conversation Timeouts (was changed scope configuration)

2007-09-08 Thread Mario Ivankovits
Hi! If no timeout property is present, then no timeout applies. Otherwise, the specified timeout applies. You are right too with all you said. Hmmm No pc here yet, but, how do a servlet container behave if there is no session timeout configured or is it a required configuration? Ciao,

Re: [orchestra] Conversation Timeouts (was changed scope configuration)

2007-09-08 Thread Mario Ivankovits
On 08.09.2007 18:48, Mario Ivankovits wrote: Hi! If no timeout property is present, then no timeout applies. Otherwise, the specified timeout applies. You are right too with all you said. Hmmm No pc here yet, but, how do a servlet container behave if there is no session

Re: [Orchestra] Does Orchestra work with non web client?

2007-09-09 Thread Mario Ivankovits
Hi! Like a scheduler within the webapp? this way i can have orchestra to keep EntityManager round to do lazy loading of a huge object. No, many of Orchestra's data-structures are kept in the session scope which is not available during a non http request. Is there any reason to use

Re: [orchestra] Conversation Timeouts (was changed scope configuration)

2007-09-10 Thread Mario Ivankovits
Hi! IMHO, a conversation should behave exactly the same as the session does today - per default. There is nothing elementary different just because you can have a multitude of conversations per user. Getting in touch to the servlet timeout means we have to extend the FrameworkAdapter

Re: [orchestra] connectionManager package

2007-09-10 Thread Mario Ivankovits
You are so exact ;-) But you are right, I had a problem in mind to solve which is not part (and should not) of orchestra. So yes, remove the listener stuf - and maybe move the whole stuff into the sandbox? Mario -Original Message- From: Simon Kitching [EMAIL PROTECTED] Date:

Re: [orchestra] wiki

2007-09-10 Thread Mario Ivankovits
Hi! I am not aware that we have an access control for our wiki. Just create a user yourself and you should be done. Mario -Original Message- From: Kito D. Mann [EMAIL PROTECTED] Date: Monday, Sep 10, 2007 6:34 pm Subject: [orchestra] wiki To: Reply-MyFaces Development

Re: [Orchestra] FrameworkAdapter tidyup

2007-09-10 Thread Mario Ivankovits
Hi. I am not sure if this overcomplicates things as then we provide something like yet another filter interface for servlets, but what about simply combining both classes. I have no pc here yet, but I think it could work. Mario -Original Message- From: Simon Kitching [EMAIL

Re: [Orchestra] Does Orchestra work with non web client?

2007-09-10 Thread Mario Ivankovits
Hi! Like a scheduler within the webapp? this way i can have orchestra to keep EntityManager round to do lazy loading of a huge object. No, many of Orchestra's data-structures are kept in the session scope which is not available during a non http request. After thinking

Re: [Orchestra] what happened to snapshot build?

2007-09-11 Thread Mario Ivankovits
yea, our continuum build is broken as the sandbox module is missing. I already raised it, but no luck yet. Will try again. :-) Mario -Original Message- From: Dan Tran [EMAIL PROTECTED] Date: Tuesday, Sep 11, 2007 7:51 am Subject: [Orchestra] what happened to snapshot build? To: Reply-

Re: [orchestra] sandbox on continuum

2007-09-11 Thread Mario Ivankovits
Hi! Could someone please take care of that - or tell me the credentials/infos for the continuum server. Thanks! Ciao, Mario Hi! Could someone please setup the myfaces-orchestra-sandbox [1] project on continuum. Currently the continuum build fails due to missing artifacts. Thanks! Ciao,

release of shared

2007-09-11 Thread Mario Ivankovits
Hi! For the Orchestra release I have to release shared first. Any objections to start the process? Ciao, Mario

[VOTE] myfaces-maven and myfaces-shared release

2007-09-11 Thread Mario Ivankovits
Hi all, this is the official vote for MyFaces Maven 1.0.6 and MyFaces Shared 2.0.7. Please note that this vote concerns all of the following parts: 1. Maven artifact group org.apache.myfaces.maven v1.0.6 [1] 2. Maven artifact group org.apache.myfaces.shared v2.0.7 [2] [1]

Re: [Trinidad] browser build-in autocomplete box (IE 7 issue...)

2007-09-12 Thread Mario Ivankovits
Hi! I noticed that this doesn't show up in IE7, but in FF2 it does. (no Trinidad isn't rendering something like autocomplete=off) Christian Swoboda already posted about a bug in IE His text: Hi! We are developing a new application with myfaces 1.1.5 and discovered that there's a

Re: [jira] Resolved: (TRINIDAD-704) IE7 - AutoComplete Does Not Work When You Use Script to Submit a Form

2007-09-13 Thread Mario Ivankovits
-- mit freundlichen Grüßen Mario Ivankovits Software Engineering OPS EDV VertriebsgesmbH A-1120 Wien, Michael-Bernhard-Gasse 10 Firmenbuch Nr.: FN51233v, Handelsgericht Wien Tel.: +43-1-8938810; Fax: +43-1-8938810/3700 http://www.ops.co.at E-Mail: [EMAIL PROTECTED] Skype

Re: release of shared

2007-09-13 Thread Mario Ivankovits
Matthias Wessendorf wrote: Perhaps we should do things like that on a separate branch and merge back to trunk, when everything is fine. there were some issues on trunk today, hopefully I got all of them... Thanks Matthias! Ciao, Mario

Re: [Orchestra] Does Orchestra work with non web client?

2007-09-14 Thread Mario Ivankovits
Hi! Here is what have have in mind 1. have the JSF backing bean to have the same convesation name. The service bean is singleton scope 2. have the runnable in its own conversation, the conversation ends when the run method ends I also have another instance of same service

[RESULT][VOTE] myfaces-maven and myfaces-shared release

2007-09-14 Thread Mario Ivankovits
Hi! The vote passed with: +1 Matthias Wessendorf Bernd Bohmann Grant Smith +0 Simon Lessard The voting thread can be found here [1]. Thanks for taking the time! Ciao, Mario [1] http://www.mail-archive.com/dev@myfaces.apache.org/msg25507.html

[ANNOUNCE] myfaces-maven and myfaces-shared release

2007-09-14 Thread Mario Ivankovits
Hi! We are proud to announce the availability of myfaces-maven 1.0.6 and myfaces-shared 2.0.7. Ciao, Mario PS: Since this stuff is not that important to the community (I think) I didn't sent this announce to the [EMAIL PROTECTED] address. If you are not fine with this we can forward this

[tomahaw] ppr problems with log and tree2

2007-09-19 Thread Mario Ivankovits
Hi! First, I've commented the using of the log stuff as it seems normally thre is no log object around, at least I don't know where. From our ppr.js: if(formElement) this._addEventHandler(formElement, connectToEventArr, eventHandler); -else + /* where is the log? +

Re: [tomahaw] ppr problems with log and tree2

2007-09-20 Thread Mario Ivankovits
Hi Ernst! Great you picked it up! I must have missed the point where this log got in - my guess is that it can optionally be defined or turned on in dojo or something. However I would think a check wether or not the object is defined before using it cannot hurt. Yea, I tried if (log),

[tomahawk] ppr and subform

2007-09-20 Thread Mario Ivankovits
Hi! It looks like the ppr do not work with subforms if you do not use a command* to trigger the ajax request. With a command* stuff the subform is able to catch the queueEvent stuff and set itself as submitted, but if you use the prr with a trigger pattern like

Re: [tomahawk] ppr and subform

2007-09-20 Thread Mario Ivankovits
to enhance the ppr component to set this special hidden field to the component id of the subform where the ppr is embedded in - but it requires us to depend the ppr on the subform tag. Comments? Ciao, Mario -- mit freundlichen Grüßen Mario Ivankovits Software Engineering OPS EDV

Re: [tomahaw] ppr problems with log and tree2

2007-09-20 Thread Mario Ivankovits
Hi Ernst! I have a relatively tight schedule this week, but I'll try to squeeze it in on the weekend. I decided to have a look at it myself and it looks like I got it working. Please review r577913. Mainly I've cached the partialTrigger(Pattern) configuration and apply it after each ajax

New AddResource handler: DojoAddResource

2007-09-20 Thread Mario Ivankovits
Hi! I've started an experiment with our AddResource stuff - again. As you might know, we provide the StreamingAddResource which allows to add resources like javascript or css to the page without the need to buffer it and parse the response. Performance wise it should be a speedup, but

licensing question

2007-09-21 Thread Mario Ivankovits
Hi! As a try to fix the DojoAddResource stuff I am going to copy small parts out of dojo into its own file to being able to change some behavior. Is this allowed? Which license do I have to use for this small scriptlet then? Can I use the ASF one or do I have to use the same as dojo? Ciao,

Re: New AddResource handler: DojoAddResource

2007-09-21 Thread Mario Ivankovits
Hi! Ok, I've found the first problem, the stylesheets were inserted AFTER all the other stylesheets, so any overloaded stylesheet will be lost. Will think about if this can be fixed Ciao, Mario

Re: New AddResource handler: DojoAddResource

2007-09-21 Thread Mario Ivankovits
Ok, I've found the first problem, the stylesheets were inserted AFTER all the other stylesheets, so any overloaded stylesheet will be lost. Will think about if this can be fixed fixed! Ciao, Mario

Re: New AddResource handler: DojoAddResource

2007-09-23 Thread Mario Ivankovits
Hi! this is actually a pretty simple javascript trick - I would say you could do it without dojo in a few lines, and with this the dojo reference is not necessary! I'll have a look at it On 9/23/07, Ernst Fastl [EMAIL PROTECTED] wrote: I believe this will be helpful in dealing with

Re: New AddResource handler: DojoAddResource

2007-09-23 Thread Mario Ivankovits
Hi! Hi Mario, this link might be helpful. http://cse-mjmcl.cse.bris.ac.uk/blog/2005/08/18/1124396539593.html Ah, looks even easier, does not require any ajax stuff then will have a look at it. Thanks! Ciao, Mario

Re: svn commit: r578709 - /myfaces/core/trunk/api/src/main/java/javax/faces/webapp/_ErrorPageWriter.java

2007-09-24 Thread Mario Ivankovits
)); + } + } else if (vars.equals(ERROR_PARTS[i])) { writeVariables(writer, faces); } else if (cause.equals(ERROR_PARTS[i])) { writeCause(writer, e); -- mit freundlichen Grüßen Mario Ivankovits Software Engineering OPS EDV VertriebsgesmbH

Re: [jira] Commented: (JSR301-2) Coding Standards: This project should adopt coding standards similar to MyFaces for consistancy

2007-09-28 Thread Mario Ivankovits
Hi! There have been a lot of discussions on coding conventions here at MyFaces. I don't think we've reached an agreement so far ;) * indentation is 2 spaces with no tabs I'd say two spaces are too much, one space should be sufficient. ;-) Just kidding. Honestly, if we warm up

<    1   2   3   4   5   6   7   8   9   10   >