[jira] Commented: (ORCHESTRA-20) single conversation

2008-04-05 Thread Mario Ivankovits (JIRA)
[ https://issues.apache.org/jira/browse/ORCHESTRA-20?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12585944#action_12585944 ] Mario Ivankovits commented on ORCHESTRA-20: --- Committed a fix for that too

[jira] Commented: (ORCHESTRA-19) refactor conversationContext to allow nested conversationContext

2008-04-05 Thread Mario Ivankovits (JIRA)
[ https://issues.apache.org/jira/browse/ORCHESTRA-19?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12586009#action_12586009 ] Mario Ivankovits commented on ORCHESTRA-19: --- First draft committed. Most

[jira] Issue Comment Edited: (ORCHESTRA-19) refactor conversationContext to allow nested conversationContext

2008-04-05 Thread Mario Ivankovits (JIRA)
Key: ORCHESTRA-19 URL: https://issues.apache.org/jira/browse/ORCHESTRA-19 Project: MyFaces Orchestra Issue Type: Improvement Components: Conversation Reporter: Mario Ivankovits

Re: orchestra and richfaces table scroller

2008-04-05 Thread Mario Ivankovits
Hi! Now, when I open the page in two browser windows it seems as if the datascroller is using the model in session scope, because when scrolling in one window, the selected range in the other window is also updated. I've tried to implement a StateManager using the ConversationContext as

Re: [proposal] jsf validation with annotations

2008-04-04 Thread Mario Ivankovits
Hi! sev-en is a new jsf-extension. Looks Cool, I love it to see that a long standing idea now seems to be realized. You posted on the dev list .. cool .. you probably know we are developers too ... so .. where do we find the code? Or is it just a too-late April joke ;-) I think that would make

[jira] Created: (MYFACES-1850) component attributes problem with server side state saving with serialize in state = false

2008-04-04 Thread Mario Ivankovits (JIRA)
Project: MyFaces Core Issue Type: Bug Components: General Affects Versions: 1.2.2, 1.1.5 Reporter: Mario Ivankovits Assignee: Mario Ivankovits Priority: Critical When using server side state saving with serialize state in view

[jira] Created: (ORCHESTRA-20) single conversation

2008-04-04 Thread Mario Ivankovits (JIRA)
single conversation --- Key: ORCHESTRA-20 URL: https://issues.apache.org/jira/browse/ORCHESTRA-20 Project: MyFaces Orchestra Issue Type: Improvement Components: Conversation Reporter: Mario Ivankovits

[jira] Commented: (ORCHESTRA-19) refactor conversationContext to allow nested conversationContext

2008-04-04 Thread Mario Ivankovits (JIRA)
[ https://issues.apache.org/jira/browse/ORCHESTRA-19?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12585648#action_12585648 ] Mario Ivankovits commented on ORCHESTRA-19: --- The conversationContext URL

[jira] Commented: (ORCHESTRA-19) refactor conversationContext to allow nested conversationContext

2008-04-04 Thread Mario Ivankovits (JIRA)
[ https://issues.apache.org/jira/browse/ORCHESTRA-19?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12585651#action_12585651 ] Mario Ivankovits commented on ORCHESTRA-19: --- The conversationContext api needs

nasty problem in server side state saving

2008-04-03 Thread Mario Ivankovits
... with serialize in state disabled. I've create a small test case which shows that the attributes map is just copied over into the state. Which means that each and every Component shares exactly the same map. Any change to this map will be reflected in ALL saved states. Correct would be to

Re: nasty problem in server side state saving

2008-04-03 Thread Mario Ivankovits
Hi! It's because the wrong constructor in api's _ComponentAttributesMap class, it's assigning the map directly: So we do agree that this needs to be fixed? Then I'll do so ... Ciao, Mario

Re: JspStateManagerImpl into shared?

2008-04-02 Thread Mario Ivankovits
Ping! It seems that Orchestra has to implement a StateManager which holds the view state in the conversationContext instead of the session. At the moment it seems that large portions of JspStateManagerImpl can be reused, but requires to copy it over into Orchestra. With slight refactoring of

shared discuss again [was Re: JspStateManagerImpl into shared?]

2008-04-02 Thread Mario Ivankovits
Hi! Mario, you are not alone in hating the shared concept. ;-) Good! 1) has a super stable API That is true, that might be the hardest part. 2) is used (ie. shared) by the myfaces core(!) as well as other myfaces projects Sure! 3) may be used by the experienced JSF app

Re: JspStateManagerImpl into shared?

2008-04-02 Thread Mario Ivankovits
Hi! Orchestra having its own JspStateManagerImpl sounds interesting though. Enabling this on Sun Mojarra for example will quite radically change the way that a JSF app on Mojarra performs. That's not really Orchestra's role. I thought about this like an optional feature one has to

Re: [Orchestra] Mixed evironment installation problem - Complete Mail

2008-04-02 Thread Mario Ivankovits
Hi! However Orchestra does need a proper solution for this. I've created the following JIRA issue to track it: http://issues.apache.org/jira/browse/ORCHESTRA-18 Yes! What about creating a BasicSpringFrameworkAdapter which uses the same trick ApplicationContext appContext =

Re: [Orchestra] Mixed evironment installation problem - Complete Mail

2008-04-02 Thread Mario Ivankovits
Hi! I've committed a SpringBasicFrameworkAdapter, could you please give it a try and see if it works now. At the moment the flash scoped beans are not released after the JSP request! We will have a look how to fix that, but that should not be a major problem for now. Thanks! Ciao, Mario

Re: [Orchestra] Core15 release ?

2008-04-01 Thread Mario Ivankovits
Hi! are there any plans to release the core15 module ? soon :-) I would like open-source the @ConversationName annotation in core15 and then we should be ready. Volunteering doing the release then? Ciao, Mario

JspStateManagerImpl into shared?

2008-04-01 Thread Mario Ivankovits
Hi! Just to reiterate: I hate shared! ;-) Seriously, it seems that Orchestra has to implement a StateManager which holds the view state in the conversationContext instead of the session. At the moment it seems that large portions of JspStateManagerImpl can be reused, but requires to copy it over

Re: [Orchestra] Explicit conversation starting and nested conversations

2008-04-01 Thread Mario Ivankovits
Hi! Thank's a lot for your response. What I would like to do is to be able to share a page (ant its backing bean) between 2 conversations types, like an activity définition can be shared between 2 process definition in BPM. For exemple, the select customer page can be shared between the 'send

Re: [Orchestra] Explicit conversation starting and nested conversations

2008-04-01 Thread Mario Ivankovits
Hi! Use of tag separateConversationContext allows to start a new conversation but it isn't really a nested conversation context, since it has to be done in a new browser window (no context stack). Am I right? Exactly! This is something we might implement in the (near?) future. This will

Re: [Orchestra] Explicit conversation starting and nested conversations

2008-04-01 Thread Mario Ivankovits
Hi! Just to be clear, what you're saying is that you can't use the same view in more than one conversation at a time? At the moment: yes! As I wrote, this is something we will allow in the near future, but it would require to have a page-flow configuration. Hmmm probably the new

Re: orchestra and richfaces table scroller

2008-04-01 Thread Mario Ivankovits
Hi! Now I am wondering, would it theoretically be possible for Orchestra to also intervene in the server side state saving so that the component tree is stored in a conversation context? Theoretically yes. And this is also a wish others expressed already. We will investigate if it is possible

Re: orchestra and richfaces table scroller

2008-04-01 Thread Mario Ivankovits
Hi Now I am wondering, would it theoretically be possible for Orchestra to also intervene in the server side state saving so that the component tree is stored in a conversation context? Theoretically yes. And this is also a wish others expressed already. We will investigate if it is

Re: [Orchestra] Explicit conversation starting and nested conversations

2008-04-01 Thread Mario Ivankovits
Hi! So, for example, while in the Relationships tab, I may want to quickly view or edit a Party. The view/edit Party view is usually in the Party tab. So, essentially I'm reusing the same page in a completely different flow. Now, in reality, I may end up using two different Facelet views

Re: [Orchestra] Explicit conversation starting and nested conversations

2008-04-01 Thread Mario Ivankovits
Mario Ivankovits schrieb: So, for example, while in the Relationships tab, I may want to quickly view or edit a Party. The view/edit Party view is usually in the Party tab. So, essentially I'm reusing the same page in a completely different flow. Oh - and there is a not very well

Re: [Orchestra] Explicit conversation starting and nested conversations

2008-04-01 Thread Mario Ivankovits
Hi! If you're injecting conversation-scoped beans you're actually injecting a bean being tied to a specific conversation (i.e. you'd also have to copy bean definitions just referencing conversation-scoped beans, not only pages!). This is how spring works, no? You always put a bean in a scope

country/zip show city problem [was: partial model update on ppr request]

2008-03-31 Thread Mario Ivankovits
Hi! Sorry for the lengthy mail ... Solving this problem just made me crazy so easy problem, and so complicate if not impossible solution with JSF. Everything I toucht in the last couple of days had some side-effect/influence on something else. My simple country/zip immediate show city ppr

ppr component update funcation hook [was: Re: country/zip show city problem]

2008-03-31 Thread Mario Ivankovits
Hi! What do you think about an enhancement for ppr which allows to customize the DOM update of the response? So, instead of the simple domElement.innerHtml=xx stuff, one is able to hook into that and provide his/hers own dom update. s:pprPanelGroup

Re: JSF 2.0 component set

2008-03-31 Thread Mario Ivankovits
Hi! Now it would be possible to update each component set to JSF 2.0... but a Tomahawk/JSF2 is expected to be backward compatible. So it would be difficult to radically change components or eliminate some duplicates... +1 I'd like to see this too, though, I think Oracle wouldn't give up

myfaces code style - heads up

2008-03-29 Thread Mario Ivankovits
Hi! Something which happend to me too multiple times too, though, it is really hard to read a commit if it comes with a reformat of the source too. So, please: Before starting work on a source reformat it and commit this reformat only! Links to the code format settings can be found here [1] -

build failure due to site dependency

2008-03-29 Thread Mario Ivankovits
Hi! I have a build failure here as the site module can't find the 6-SNAPSHOT version of the (master?) pom. parent groupIdorg.apache.myfaces/groupId artifactIdmyfaces/artifactId version6-SNAPSHOT/version /parent If I change this back to version 5 it works. Do one know

[jira] Commented: (TOMAHAWK-1215) Add a communication channel for FacesMessages to the PPRPanelGroup

2008-03-29 Thread Mario Ivankovits (JIRA)
[ https://issues.apache.org/jira/browse/TOMAHAWK-1215?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12583297#action_12583297 ] Mario Ivankovits commented on TOMAHAWK-1215: Why do you transfer the message

[jira] Commented: (TOMAHAWK-1215) Add a communication channel for FacesMessages to the PPRPanelGroup

2008-03-29 Thread Mario Ivankovits (JIRA)
[ https://issues.apache.org/jira/browse/TOMAHAWK-1215?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12583298#action_12583298 ] Mario Ivankovits commented on TOMAHAWK-1215: Is it true that you collect

Re: partial model update on ppr request

2008-03-29 Thread Mario Ivankovits
Hi! The complicated thing is, that the pprSubmit enhancement would require a custom LifeCycle for PPR requests (why is it a PhaseListener by now?) I am investigating some time into that. In fact, the thing missing now is invokeOnComponent, didn't we have something like this in MyFaces

Re: Orchestra with Request Scope

2008-03-29 Thread Mario Ivankovits
Hi! In my app, there is an org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter that binds an entityManager to each request. With Orchestra do I really have to remove this filter? No. Orchestra does not help with request scoped beans. Mixing OEMIVF with Orchestra should work I

Re: partial model update on ppr request

2008-03-29 Thread Mario Ivankovits
Hi! The complicated thing is, that the pprSubmit enhancement would require a custom LifeCycle for PPR requests (why is it a PhaseListener by now?) I am investigating some time into that. Ok, I've committed something which did the trick. I've not yet fully replace the PhaseListener

Re: orchestra conversation closed by stylesheet

2008-03-29 Thread Mario Ivankovits
Hi! Weblets for instance allows a zeroconf resource loading via phase listeners which trigger, usually this triggering is done before phase1, but there are portlet cases where it happens later. What are the JSF phases executed by weblets then? Probably we find a pattern which allows us to

Re: orchestra conversation closed by stylesheet

2008-03-28 Thread Mario Ivankovits
Hi! many thanks for your tips. I checked the phase-listener solution, but it's a little dirty. The resource request skips phases 2-5. And the after RESTORE_VIEW callback is not called. In the before callback I do not know how to get the view id. As a solution i check the source component of

partial model update on ppr request

2008-03-27 Thread Mario Ivankovits
Hi! I have the need to do a partial model update for given components on ppr submit. (subform won't work here) I have a form with a couple of input fields, lets say FIELD_A, FIELD_B, FIELD_C, FIELD_D - all in one form. FIELD_A is required now, after something has been entered in FIELD_B,

Re: partial model update on ppr request

2008-03-27 Thread Mario Ivankovits
Hi! The pprSubmit is something like a generic autoSubmit feature for command components (see also autoSubmit attribute in trinidad). ? pprSubmit does nothing else than rendering the javascript to hook on the new components too, no? I do not understand what you mean with autoSubmit here.

[jira] Commented: (TOMAHAWK-1214) allow to process form submits in a queue for high-speed input handling

2008-03-19 Thread Mario Ivankovits (JIRA)
[ https://issues.apache.org/jira/browse/TOMAHAWK-1214?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12580264#action_12580264 ] Mario Ivankovits commented on TOMAHAWK-1214: re 1: I'd say we do it like

Re: [Tomahawk] Commit of component generation and 1.2 modules to trunk

2008-03-18 Thread Mario Ivankovits
Hi! Hi, I like the approach. I am not very keen in annotated javadocs (which is error prone IMO) but that is just fine and I would say a better alternative to the XMLs (which are rather error prone too). However, it would be nice to have the builder library generic enough so we could use

[jira] Created: (TOMAHAWK-1214) allow to process form submits in a queue for high-speed input handling

2008-03-18 Thread Mario Ivankovits (JIRA)
Issue Type: New Feature Components: PPRPanelGroup Reporter: Mario Ivankovits Assignee: Ernst Fastl Enhance the PPR stuff in a way which allows to process form input asynchron in a queue for high-speed input handling. Probably by adding a new attribute

Re: AW: AW: Orchestra beginner question: conversation.flash behaves like request scope

2008-03-18 Thread Mario Ivankovits
Hi! Or do I have to define two separate beans in Spring: bean id=timeChainJSF_1 class=com.playoli.timeperiod.jsf.TimeChainJSF bean id=timeChainJSF_2 class=com.playoli.timeperiod.jsf.TimeChainJSF You need to use the two separate bean definitions approach. That gives your EL

Re: AW: AW: Orchestra beginner question: conversation.flash behaves like request scope

2008-03-18 Thread Mario Ivankovits
Mario Ivankovits schrieb: Are you using persistence from within the timeChainJSF bean? If not, you can inject the bean into your controller bean and use it through your controller. This is the solution I'd prefer. Should elaborate a little bit more about what I meant here. If possible

Re: AW: Orchestra beginner question: conversation.flash behaves like request scope

2008-03-18 Thread Mario Ivankovits
Hi! I'll need to ask Matthias to update his example ;-) that is not mine. Mine is kind of up-to-date (facesgoodies) it is mario's project: http://code.google.com/p/myfaces-orchestra-goodies/ I totally forgot that there are examples too :-) I am getting old Ciao, Mario

Re: [Orchestra] Question to myFaces Orchestra configuration (Error on each request)

2008-03-17 Thread Mario Ivankovits
Hi Michael! ERROR 2008-03-17 08:24:35,110 [http-8000-Processor25] org.ajax4jsf.resource.ResourceLifecycle: Exception in PhaseListener, render view : beforePhase java.lang.IllegalArgumentException: No AccessScopeManager found. Probably you forgot to add import

[orchestra] Re: Bean Scope Problems

2008-03-17 Thread Mario Ivankovits
Hi! I already decided before you answered - I just search since 15 minutes for a myFaces + orchestra tutorial or example. Now I have to change my little application (to use spring and orchestra) - theres any archetype to create a myFaces+spring+orchestra webproject with maven? Currently

Re: [Orchestra] Question to myFaces Orchestra configuration (Error on each request)

2008-03-17 Thread Mario Ivankovits
it easy to figure out what was wrong. Ciao, Mario I sent you my application as an attachment. Regards Michael -Ursprüngliche Nachricht- Von: Mario Ivankovits [mailto:[EMAIL PROTECTED] Gesendet: Montag, 17. März 2008 11:42 An: MyFaces Discussion Betreff: Re: [Orchestra] Question

Re: [vfs] VFS 1.0 CIFS

2008-03-14 Thread Mario Ivankovits
Hi! What's the recommended way of using commons-vfs 1.0 with CIFS support? You mean where to get the SMB provider from? Supposed to be in the vfs sandbox ...Mario? Sorry for being late, wasn't able to connect to our mailserver through the JSFDays conference network. Yepp, still in the

Re: [vfs] VFS 1.0 CIFS

2008-03-14 Thread Mario Ivankovits
Hi! Is there a problem with placing the jar in http://people.apache.org/repo/m2-snapshot-repository/ Hmmm shouldn't this be something the nightly build should do already? Ciao, Mario - To unsubscribe, e-mail:

Re: announcement: Orchestra Core 1.1 released

2008-03-12 Thread Mario Ivankovits
Gratulation Simon. Great work :-) Mario -Original Message- From: simon [EMAIL PROTECTED] Date: Wednesday, Mär 12, 2008 8:00 am Subject: announcement: Orchestra Core 1.1 released To: Reply-MyFaces Discussion [EMAIL PROTECTED]To: MyFaces Discussion [EMAIL PROTECTED] The Apache

[jira] Commented: (ORCHESTRA-17) RequestParameterFacesContextFactory only works with HttpServletResponse

2008-03-11 Thread Mario Ivankovits (JIRA)
[ https://issues.apache.org/jira/browse/ORCHESTRA-17?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12577464#action_12577464 ] Mario Ivankovits commented on ORCHESTRA-17: --- If I understand your patch

Re: [vote] [orchestra] release Core 1.1

2008-03-10 Thread Mario Ivankovits
Hi! The tar.gz and zip archives are deployed at [3] LICENSE.txt and NOTICE.txt are missing from, at least, the tar.gz archive. +1 when fixed. Not so important, but, it looks like these archives are a mixture of -bin and -src (which is fine I think), but no class files beside the jar are in

Re: [all] GSoC

2008-03-10 Thread Mario Ivankovits
Hi! Any idea for GSoC [1]? I think it would be worth participating VFS or IO: File Alteration Monitor with native support (I can sponsor some basic code-base for linux). If it is located in IO or in another package it should be possible to plugin VFS. Means, should not deal with plain

Re: [orchestra] plans

2008-03-07 Thread Mario Ivankovits
Hi! +1 very good idea! Are those +1 due to the fact that you think that Orchestra is not the best place where such a component is located (which I understood), or is it that this component is still missunderstood ( :-( ) ? Fact is, that this component is a great timesaver when it comes to

Re: [orchestra] plans

2008-03-05 Thread Mario Ivankovits
Hi! 2) release of orchestra-core15-1.0 We're working on it, but there's quite a lot of effort still needed. It all works (and is being used in production) but needs a lot of polishing before a stable API can be declared. Probably a couple of months away.. Really months? What do

open link in new window prevention

2008-03-05 Thread Mario Ivankovits
Hi! Is there any reason that the MyFaces command link is rendered with href=# and onlclick=return xxx() instead of href=javascript: ? It seems, the latter will make the open link in new window feature of some browsers stopping to work. Which is what I'd like to have. What do you think about

Re: open link in new window prevention

2008-03-05 Thread Mario Ivankovits
Hi! Why do you say that some browsers can't open the link in a new window? No, I do not think that this is what I said, at least, I didn't wanted to say that. You probably know the right mouse click/open link in new window function of the browsers? You probably also know that this is a major

Re: [jira] Resolved: (TOBAGO-619) Avoid usages of javascript:false in iframe src attribute

2008-03-05 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: [jira] Resolved: (TOBAGO-619) Avoid usages of javascript:false in iframe src attribute

2008-03-05 Thread Mario Ivankovits
Versions: 1.0.14 Reporter: Bernd Bohmann Assignee: Bernd Bohmann Priority: Minor Fix For: 1.0.15, 1.1.0 -- mit freundlichen Grüßen Mario Ivankovits Software Engineering OPS EDV VertriebsgesmbH A-1120 Wien, Michael

Re: open link in new window prevention

2008-03-05 Thread Mario Ivankovits
Hi! Is there any reason that the MyFaces command link is rendered with href=# and onlclick=return xxx() instead of href=javascript: ? It seems to me the right thing to do is to simply change the href=# to href=javascript:void(0). I think we can do that, no? Ciao, Mario

[jira] Issue Comment Edited: (MYFACES-1831) JSF12 UIComponentClassicTagBase.getCreated is broken, breaking t:updateActionListener

2008-03-03 Thread Mario Ivankovits (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-1831?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12574694#action_12574694 ] imario edited comment on MYFACES-1831 at 3/3/08 11:31 AM:

[jira] Commented: (MYFACES-1831) JSF12 UIComponentClassicTagBase.getCreated is broken, breaking t:updateActionListener

2008-03-03 Thread Mario Ivankovits (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-1831?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12574694#action_12574694 ] Mario Ivankovits commented on MYFACES-1831: --- Hmmm ... for what I have seen

[jira] Commented: (ORCHESTRA-16) Rendering Problem

2008-03-02 Thread Mario Ivankovits (JIRA)
[ https://issues.apache.org/jira/browse/ORCHESTRA-16?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12574249#action_12574249 ] Mario Ivankovits commented on ORCHESTRA-16: --- What I said ... You should see

Re: commons-vfs current status?

2008-02-28 Thread Mario Ivankovits
Hi! I've been using the project for the last 6 months or so and haven't seen very many commits or activity on JIRA. Is there intention for on going support? As long as no code work needs to be done I think support is still there. Unhappily VFS lacks of developers and my time is limited

[jira] Commented: (ORCHESTRA-16) Rendering Problem

2008-02-27 Thread Mario Ivankovits (JIRA)
[ https://issues.apache.org/jira/browse/ORCHESTRA-16?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12573021#action_12573021 ] Mario Ivankovits commented on ORCHESTRA-16: --- This has nothing to do

Re: Interest in an AjaxTree

2008-02-23 Thread Mario Ivankovits
Hi! public interface AjaxTreeDataProvider { public List getRootNodes(); public List getChildNodes(String nodeString); } Shouldn't this be something like this: public interface AjaxTreeDataProvider { public List getRootNodes(); public List getChildNodes(Object node);

Re: [orchestra] conversation-scoped converters

2008-02-17 Thread Mario Ivankovits
, 2008 9:08 am Subject: Re: [orchestra] conversation-scoped converters To: Reply-MyFaces Development dev@myfaces.apache.orgTo: MyFaces Development dev@myfaces.apache.org On Sun, 2008-02-17 at 08:16 +0100, Mario Ivankovits wrote: If we find a way how these could work I wouldn't mind if we get

Re: [orchestra] conversation-scoped converters

2008-02-17 Thread Mario Ivankovits
Hi! But there is a third way of configuring a converter. This is configuring a converter with its own tag, like dateTimeConverter. This allows you to configure this very instance of the converter. We don't need to support pulling f:dateTimeConverter instances from Spring do we? Those

Re: [orchestra] conversation-scoped converters

2008-02-16 Thread Mario Ivankovits
Hi! It *is* useful to be able to create converters that have access to conversation scopes, which in turn mean they need to be instantiated by pulling them from Spring. But this syntax is already supported by jsf: someComponent id=comp2 converter=#{convId}/ I don't think so. Isnt it that the

Re: [orchestra] conversation-scoped converters

2008-02-16 Thread Mario Ivankovits
Hi! Nice to see you back! Hehe - Thanks! Yea, and in after-ski-mode now ;-) Nope. The EL expression returns a Converter instance ah - wasn't aware from top of my head. Ok, so probably the ony thing we have to take a look at is how those converters work installed as child of a component using

Re: [orchestra] conversation-scoped converters

2008-02-16 Thread Mario Ivankovits
Hi! Go on, rub it in .. I've been spending all my spare time working on an Orchestra release :-) That's fun too, isn't it ;-) If we find a way how these could work I wouldn't mind if we get rid of the current solution. Your wish is my command. When thinking about it, this one wasn't

myfaces template structure [was: svn commit: r627191 - in /myfaces/tomahawk/branches/1_2_0/core/src/main/java/...]

2008-02-14 Thread Mario Ivankovits
Hi! Being on vacation it is hard to follow the actual discussions, so, sorry if I missed something along the lines. While the fact that Leonardo flipped the object hierarchy can be treated as genious idea (kudos!), I am not fully convinced that this is what we want in the end. Please, let me

t:datatable rowId Namespace

2008-02-08 Thread Mario Ivankovits
Hi! The rowId on the t:datatable is rendered without namespace. Following this fact I've added a columnId to the t:column which will be rendered without namespace also. While I know that this is crap, I just have done it that way to be consistent in this area. However, my better half ;-) told

[jira] Resolved: (TOMAHAWK-1193) add columnId to t:column

2008-02-08 Thread Mario Ivankovits (JIRA)
[ https://issues.apache.org/jira/browse/TOMAHAWK-1193?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mario Ivankovits resolved TOMAHAWK-1193. Resolution: Fixed add columnId to t:column

[jira] Created: (TOMAHAWK-1193) add columnId to t:column

2008-02-08 Thread Mario Ivankovits (JIRA)
: Mario Ivankovits Assignee: Mario Ivankovits Fix For: 1.1.7-SNAPSHOT Add a columnId to t:column similar to the rowId on t:datatable the provided id should not render any namespace. Just take the provided user value as is. -- This message is automatically generated

[jira] Commented: (TOMAHAWK-1193) add columnId to t:column

2008-02-08 Thread Mario Ivankovits (JIRA)
[ https://issues.apache.org/jira/browse/TOMAHAWK-1193?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12566953#action_12566953 ] Mario Ivankovits commented on TOMAHAWK-1193: Together wit this bug the rowId

[jira] Commented: (ORCHESTRA-15) Orchestra in Portal Environment

2008-02-07 Thread Mario Ivankovits (JIRA)
[ https://issues.apache.org/jira/browse/ORCHESTRA-15?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12566531#action_12566531 ] Mario Ivankovits commented on ORCHESTRA-15: --- I've commited a try to fix

Re: rowId and columnId on t:column

2008-02-07 Thread Mario Ivankovits
Hi! Would one mind if I add these two new attributes to the t:column tag? Yes Okay RowID already exists on t:table Oh - great. Might work, just, that it is that weird implemented that it wont work with facelets. Anyone has some informations why the tag handler uses

Re: embedded table

2008-02-07 Thread Mario Ivankovits
Hi! It so happens, I have been looking for this sort of a solution. :-) Yea, I wonder why no one else have had a need for this too. It is a common use-case in our application. In my case, I have a table with three columns, with three headings. snip / Do you mean something like this:

rowId and columnId on t:column

2008-02-07 Thread Mario Ivankovits
Hi! Would one mind if I add these two new attributes to the t:column tag? rowId should go to the tr element and colId to the th element. As usual, the row index will be added to the rowId and the thing should follow the default getClientId semantic. (parent namespaces etc) I need this

Re: Portlet Environment and Orchestra

2008-02-07 Thread Mario Ivankovits
Hi! The short answer to your question is no, the bridge won't help you here. Portlet 1.0 didn't define support for filters or wrapping request/response objects. Hence initialization done in filters in the servlet environment should be rewritten/migrated to FacesContextFactory. This document

Re: Portlet Environment and Orchestra

2008-02-07 Thread Mario Ivankovits
Hi! If you wrap the FacesContext, then maybe when FacesContext.release is called? Yep, good idea. Done so. Thanks! Ciao, Mario

Re: [Myfaces Wiki] Update of JSF and MVC by SimonKitching

2008-02-06 Thread Mario Ivankovits
MyFaces -- 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: mario_ivankovits

Re: embedded table

2008-02-06 Thread Mario Ivankovits
Hi! Sounds good - can you send your example again utilizing the detailStamp approach if that fits? So, not it is getting stressy again. I have a bad need for it now. So, using the detailStamp approach it might look like: t:datable var=group1 value=#{bean.data} ... t:column colspan=10

[jira] Commented: (TOMAHAWK-1181) allow to embed a datatable within the parent

2008-02-06 Thread Mario Ivankovits (JIRA)
[ https://issues.apache.org/jira/browse/TOMAHAWK-1181?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12566287#action_12566287 ] Mario Ivankovits commented on TOMAHAWK-1181: Three new attribute

[jira] Resolved: (TOMAHAWK-1181) allow to embed a datatable within the parent

2008-02-06 Thread Mario Ivankovits (JIRA)
[ https://issues.apache.org/jira/browse/TOMAHAWK-1181?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mario Ivankovits resolved TOMAHAWK-1181. Resolution: Fixed Fix Version/s: 1.1.7-SNAPSHOT Assignee: Mario

Re: How can I have more than one bean in an orchestra conversation

2008-02-06 Thread Mario Ivankovits
Hi! I have tried to define a name for my conversation but did not succeed. All I found in the documentation was the hint of some hidden id on page specs. In your spring config add the orchestra xsd beans xmlns=http://www.springframework.org/schema/beans;

Re: Portlet Environment and Orchestra

2008-02-06 Thread Mario Ivankovits
Hi! I have access to FacesContext. The ExternalContext in case of Portlet Environment is - PortletExternalContextImpl and ofcourse in servlet environment it is ServletExternalContextImpl. So then, could you please try the following in your method:

Re: [orchestra] Spring 2.5

2008-02-06 Thread Mario Ivankovits
Hi! I think it would be nice also to see an attractive example application (separated from others) where Orchestra is used in conjunction with Absolutely, you might not being able to imagine how much I'd appreaciate such a demo application. Any plan to volunteer? :-) -minimal

Re: MyFaces-Orchestra-ViewController : NullpointerException

2008-02-06 Thread Mario Ivankovits
Hi! currently I am using Orchestra in Portlet Environment and faced with ViewController exception: java.lang.NullPointerException at org.apache.myfaces.orchestra.conversation.ConversationManager.getInstance(ConversationManager.java:90) at Seems like the same problem as

Re: Portlet Environment and Orchestra

2008-02-06 Thread Mario Ivankovits
Hi! The short answer to your question is no, the bridge won't help you here. Portlet 1.0 didn't define support for filters or wrapping request/response objects. Hence initialization done in filters in the servlet environment should be rewritten/migrated to FacesContextFactory. Yep, I'll try

Re: Interest in an AjaxTree

2008-02-05 Thread Mario Ivankovits
Hi Matt! welcome tree3; Matthias is right. What are the differences to the existing tree2 component? Having tree2 enhanced to do ajaxed-node-fetching would greatly increase the chance that your patch will be accepted. We really would like to avoid to introduce yet another tree. Do

Re: Portlet Environment and Orchestra

2008-02-05 Thread Mario Ivankovits
Hi! currently we're prototyping a portlet application (liferay 4.33) with orchestra , JPA (Hibernate) and myFaces 1.1.5. Unhappily I have zero experience with portlets. If you could provide a simple webapp to test this thing it would greatly help, though, I know how much work it is to setup

Re: [orchestra] Spring 2.5

2008-02-05 Thread Mario Ivankovits
Hi! Are there any plans about migration over Spring 2.5 in Orchestra? Orchestra itself is compatible with Spring 2.5. We use this combination in our projects. I'd like to see if Spring 2.5 can simplify orchestra configuration and if we can now completely declare bean throught annotations. What

Re: Interest in an AjaxTree

2008-02-03 Thread Mario Ivankovits
Matt Tyson schrieb: I've got a Tree component that handles node expansions via Ajax. What do you think the interest would be in having this donated to Tomahawk? I'd say: Yes! Is it an all new component or did you enhance tree2? If you could open a jira ticket and add a patch so that we

Re: submitOnEvent callback

2008-01-31 Thread Mario Ivankovits
Hi! callback=#{bean.callbackFunction} The callback should point to a javascript function name instead of a bean method. callback is meant to be executed on the client. This javascript method then should allow you to return true/false, on false the click should not happen. Ciao, Mario

Re: [vfs] Inconsistent Behavior...

2008-01-31 Thread Mario Ivankovits
Hi James! I have fix for this I believe. Good to hear :-) - and - good catch! final String path = fileInfo != null fileInfo.isSymbolicLink() ? getParent().getName().getPath() + / + fileInfo.getLink() : relPath; final FTPFile[] tmpChildren = client.listFiles(path); Somewhere in

Re: [COMMUNITY] MyFaces += Bernhard Huemer

2008-01-30 Thread Mario Ivankovits
Hi! The Myfaces PMC is proud to announce a new addition to our community. Please welcome Bernhard Huemer as the newest MyFaces committer. Welcome Bernhard ! --- Mario Ciao, Mario

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