test

2005-07-06 Thread Mario Ivankovits
Sorry for the test, but my message on myFaces-user did not apper so I tried if it makes it to the developer list. --- Mario

aliasbean and alias usage in binding

2005-07-14 Thread Mario Ivankovits
Hi! I hope its not wrong to post this to the developer list at first, but I think there is a technical problem with the aliasbean. Our jsf looks like this (for sure, we use include for the dataTable): x:aliasBeansScope x:aliasBean alias=#{coTopicEdit} value=#{coAddressEdit} /

inputCalender and other date libraries (joda)

2005-08-03 Thread Mario Ivankovits
Hi! Any plans to make inputCalender work with other date libraries like joda? What would be great is if it could be possible to bind the component not only to a java.util.Date but also to a joda DateTime and make is smart enough to convert it. I see two possible ways for now: a) Having a

Re: inputCalender and other date libraries (joda)

2005-08-03 Thread Mario Ivankovits
Martin Marinschek wrote: we wouldn't want to introduce a dependency on joda, I would say. No other dependency needed. If you find another way not disturbing the other users of this component, go ahead and send in a patch as soon as you are finished! But please give me a direction how

Re: inputCalender and other date libraries (joda)

2005-08-03 Thread Mario Ivankovits
Martin Marinschek wrote: You know that there is something like a converter tag already in JSF, right? Sure, I know. And it is sufficient during setting the value, a custom converter to convert the string to joda-time do the job, ... what would your variant b be different from that? ... but

Re: inputCalender and other date libraries (joda)

2005-08-03 Thread Mario Ivankovits
Martin Marinschek wrote: You know that there is something like a converter tag already in JSF, right? After thinking about it again it turns out the easiest is to extend this converter and move all access to the date-object from the renderer into it. --- Mario

Re: inputCalender and other date libraries (joda)

2005-08-05 Thread Mario Ivankovits
Hi! Well, send me the source as soon as you have found a way how to do that, I will review it... I filed a jira with it. MYFACES-389 Thanks! Mario

Re: Super!

2005-10-18 Thread Mario Ivankovits
Mathias Brökelmann wrote: If server side state is uses the serialized view is now really serialized (this was not the case before) into the session by using the viewid and a sequence number. May I ask if you also add this sequence number to the redirect url if one uses redirect navigation

Re: Super!

2005-10-18 Thread Mario Ivankovits
Mario Ivankovits wrote: http://issues.apache.org/jira/browse/MYFACES-516 Oh, and I tried to survive the messages too. --- Mario

Re: Super!

2005-10-18 Thread Mario Ivankovits
Mathias Brökelmann wrote: Redirection is not handled. Neither by client nor by server side state saving. Its not a question of client or server side state saving. If you do NOT use redirect you are still in the same request and thus have access to beans modified during this request. If

jira comment formatting

2005-11-22 Thread Mario Ivankovits
Hi! What happend to the comment formatting in jira? Was it always that bad and I never noticed it, or is this a new feature? It purges all newlines. --- Mario

Re: Web framework smackdown in Vienna

2005-11-24 Thread Mario Ivankovits
Hi Martin! If there is any chance to leave the office, I'll come. It's worth mentioning that 3 of four presentations will be held by project committers or founders (MyFaces, Ruby on Rails and Cocoon) and I'am the commons-vfs one, just in case someone is interested ;-) Ciao, Mario

Re: [jira] Closed: (MYFACES-856) t:aliasBean + binding + panelGrid causes exception

2005-11-30 Thread Mario Ivankovits
Hi Simon! Ok, it looks like there is simply no easy answer to making t:aliasBean work with component binding. I've therefore added information about this to the AliasBean.java javadoc, and to the wiki. Looks like that is all that can be done. Just a wild guess (didnt find the time to

Re: Maven scripts?

2005-12-01 Thread Mario Ivankovits
Sean Schofield wrote: Quick question. How do you include LICENSE.txt in your jar file. Isn't it supposed to be automatic if its in your top level dir? I am not an expert, but my project.xml contains licenses license nameThe Apache Software License, Version 2.0/name

Faces Freeway

2005-12-03 Thread Mario Ivankovits
Hi! Inspired from the Ruby on Rails Demo in vienna I would like to develop a rapid web-framework, prototyping framework or call it anything else for JSF too. Please have a look at http://wiki.apache.org/myfaces/FacesFreeway I am looking forwar for a vital discussion about it. I hope I

Re: Faces Freeway

2005-12-03 Thread Mario Ivankovits
Hi Werner, Inspired from the Ruby on Rails Demo in vienna I would like to develop a rapid web-framework, prototyping framework or call it anything else for JSF too. Hi Mario, good to hear from you again, Hope you have had a power outlet in your train ;-) Trails currently use Tapestry

Re: Faces Freeway

2005-12-03 Thread Mario Ivankovits
Alberto Molpeceres wrote: I started a time ago a project in SF called Licurgo (http://licurgo.sourceforge.net), altough I haven't take part in its development in the last months. This is a persistence framework based on Ralph Johnson's Dynamic Object Models Do you mean this is a replacement

NavigationHandlerImpl and viewId

2005-12-22 Thread Mario Ivankovits
Hi! In NavigationHandlerImpl around line 145 there is the following code ViewHandler viewHandler = facesContext.getApplication().getViewHandler(); //create new view String newViewId = navigationCase.getToViewId(); UIViewRoot viewRoot = viewHandler.createView(facesContext, newViewId);

Re: NavigationHandlerImpl and viewId

2005-12-22 Thread Mario Ivankovits
viewRoot.setViewId(viewRoot.getViewId()); Silly code, indeed, might have too much Punch today ;-) So can we remove the setViewId() at this place at all? --- Mario

Re: NavigationHandlerImpl and viewId

2005-12-22 Thread Mario Ivankovits
Martin Marinschek wrote: That's what I've done. Thanks! Merry Christmas to you all !! Ciao, Mario BTW: Are you and your fellows subscribed to [EMAIL PROTECTED] Maybe we can organize meetings in austria/vieanna from time to time in the new year?

Re: [jira] Created: (MYFACES-1006) Datatable do not support multple o

2006-01-05 Thread Mario Ivankovits
Hi! For showing selected row it is possible to do: rowOnMouseOver=this.className='reportRowOver' rowOnMouseOut=this.className='reportRowLight' what about rowOnMouseOver=if (!this.oldClassName){this.oldClassName=this.className;} this.className='reportRowOver'

Re: ADF Source drop is available!

2006-01-07 Thread Mario Ivankovits
Hi! What we can do is providing *wrapper* for the package stuff. ADF Faces is software, which is already in use by lot's of people, so... if we change *all* packages, we bother some users IMO. So we can set the *old* as deprecated and provide *new* org.apache.** package. Not sure if it is ok...

JFYI: change session to request bean - the way life

2006-01-11 Thread Mario Ivankovits
Hi! It cost me a couple of hours to figure it out, so I'll share my insights with you. I have had a bean which I declared in session scope at first. After a while I decided to make it a request scoped bean and use the managed-property stuff to inject a request param. I restarted tomcat a

Build failed due to StateUtilsTestCase

2006-01-12 Thread Mario Ivankovits
Hi! I cant build the current svn head due to the class StateUtilsTestCase defined in an file named myfaces/commons/src/test/java/org/apache/myfaces/util/StateUtilsAbstractCase.java After renaming the file to StateUtilsTestCase.java it worked. Ciao, Mario

Re: Build failed due to StateUtilsTestCase

2006-01-12 Thread Mario Ivankovits
Mathias Brökelmann wrote: It´s fixed now. Thanks Mario. resoved, verified! Thanks! Ciao, Mario

managed bean creation factory

2006-01-12 Thread Mario Ivankovits
Hi! Are there plans in the future JSF spec to make the managed bean creation factory configureable? something like: factory managed-bean-factory For some reason I would like to read a managed bean from a serialized store or use a specialized factory to create the bean instead of

test failed

2006-01-15 Thread Mario Ivankovits
Hi! Could someone please confirm that the tests against the current svn head fail? Currently I try to implement the commandLink submit script but after an svn update the following exception occurs during mvn install. I cant see any class I changed being involved ... so I am not sure if its my

Re: test failed

2006-01-15 Thread Mario Ivankovits
Hi! And it works for me too. On Sun, 2006-01-15 at 22:28 +0100, Arvid Hülsebus wrote: I just updated the sources and run a 'mvn clean install' and everything worked out fine. The tests didn't fail. All this is odd. I tried it now on another machine and got the same test failure. I also

Re: test failed

2006-01-15 Thread Mario Ivankovits
Hi Simon! Do you perhaps have some other tests you've written which have not been checked in and which might have this side-effect, and which are run before this test? ;-) No I havent written any tests so far. But thanks for the hints, now I got it. Its the UISelectManyTest which setup a

Re: Myfaces new site design

2006-01-17 Thread Mario Ivankovits
Bruno Aranda schrieb: Ok, proposal C could be something like this Proposal C (aka mixture): http://people.apache.org/~baranda/myfaces-mix.png Not binding, but definitely +1. Ciao, Mario

Re: findComponent, dataTable, messages

2006-01-20 Thread Mario Ivankovits
Hi! It does sound a little fragile, though. It means treating UIData components specially which I don't like. Any use of instanceof in an OO program is a warning sign. Or can the UIData override findComponent on itself to manage that transparently? If so, that would be nice. Possibly

Re: findComponent, dataTable, messages

2006-01-20 Thread Mario Ivankovits
Hi Martin! we won't be able to do this on UIComponent. The problem is, that we can't extend the API - that's fixed. Even if you make it protected? You can use reflection then to call the entry point. Of course not instanceOf for UIData, but some generic marker interface. Marker interface? I

Re: findComponent, dataTable, messages

2006-01-20 Thread Mario Ivankovits
Hi ad 1) no - not even protected is allowed. The problem is that you don't want an application to rely on a certain implementation of the api - you change the api, and nothing works anymore ;) Ok, thats bad. ad 2) yes, well, instanceof to UIData is bad. There I'm completely d'accord with

Re: Fwd: findComponent, dataTable, messages

2006-01-21 Thread Mario Ivankovits
Hi Martin! I don't want to access the data-model. I need to access the component directly, cause I need to access it from another component. I guess I don't get the difference, maybe I havent learned enough yet. irc @ #myfaces now ? --- Mario

Re: Fwd: findComponent, dataTable, messages

2006-01-21 Thread Mario Ivankovits
Hi! I don't want to access the data-model. I need to access the component directly, cause I need to access it from another component. I guess I don't get the difference, maybe I havent learned enough yet. Ok, foget it, thought about it a little bit more, now I know what you mean :-(

Re: findComponent, dataTable, messages

2006-01-21 Thread Mario Ivankovits
Hi Martin! the question is if it is any better than letting the component extend from a marker interface and implement the functionality itself. But I thought its not allowed to change the api. Or do you plan to add this only to the myfaces classes? Then I think the policy solution is better

Re: findComponent, dataTable, messages

2006-01-21 Thread Mario Ivankovits
Yes, only for extended components. Not for API stuff. Ok, so from now on its a matter of personal preferences. Personally I like to use factories/providers and so on ;-) In the current case it will make no difference between the various components just try to lookup and execute. - a third

Re: Bookmarking, History and JSF

2006-01-27 Thread Mario Ivankovits
Hi! JSF - minus complete state-saving + GET-processing + binding into the Navigation-framework of JSF And then ALLOW_JAVASCRIPT=false will start working again too? Ciao, Mario

Re: Bookmarking, History and JSF

2006-01-28 Thread Mario Ivankovits
Hi Now the phase listener has the convention, that foo and bar are the bean properties and populates the bean with the given values. I tried to follow the thread in full, but sometimes I dont get the point of ones objection. Sorry, if this has already been discussed, but: Why cant we use

Re: Bookmarking, History and JSF

2006-01-28 Thread Mario Ivankovits
Hi! - If the bean is request-scoped, it forces you to get this parameter into every request - a major challenge for postback in JSF. Ok, this is really a problem when using param.name - You have to very carefully check incoming parameter values for legitimacy (in a way that JSF

Re: Bookmarking, History and JSF

2006-01-29 Thread Mario Ivankovits
Hi! I don't get it - you usually don't save stuff like id's in the component tree, so how would it help you to apply an id to an item in the component tree? No id? I talked about the same id (client-id) you use to pass the request POST parameters into the view. So I don't talk about

Re: Bookmarking, History and JSF

2006-01-31 Thread Mario Ivankovits
Hi! In proposal 2 (see above) the use-data _and_ the structure is transferred to the client, so by changing the structure, the (hacking) user can try to recreate and set any properties on any bean on the server, if no encryption is used. Regardless of the solution we use, we should

Re: Bookmarking, History and JSF

2006-01-31 Thread Mario Ivankovits
Martin Marinschek schrieb: Yeah - but where do you store these tinyurls? On the server? In a database? Yes, in an database. +1 for making it configurable, -1 for making it the default ;) +1 - thats exactly what I thought! Ciao, Mario

Re: svn commit: r373531 - /myfaces/current/pom.xml

2006-01-31 Thread Mario Ivankovits
Jessas Maria For the english ones: Oh my god! Heaven! ;-) --- Mario

Re: MyFaces += Mario Ivankovits

2006-02-13 Thread Mario Ivankovits
Hi! Simon says Thanks to you and all the other MyFaces people for the warm welcome! - and so do I :-) Looking forward for a great time here in MyFaces land. @Manfred: cool subject ;-) Ciao, Mario

Re: svn commit: r378278 - in /myfaces: commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/ commons/trunk/src/main/java/org/apache/myfaces/util/ tomahawk/trunk/sandbox/core/src/main/jav

2006-02-16 Thread Mario Ivankovits
[EMAIL PROTECTED] schrieb: fixed class loading issue for WebSphere compatibility Gratulation!! Habt ihr es doch noch gefunden. Ciao, Mario smime.p7s Description: S/MIME Cryptographic Signature

Re: svn commit: r378278 - in /myfaces: commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/ commons/trunk/src/main/java/org/apache/myfaces/util/ tomahawk/trunk/sandbox/core/src/main/jav

2006-02-16 Thread Mario Ivankovits
Oops, I wanted to send him per pm but forgot to change the mail address. Mario was saying... congrats!! you found it ... -Matthias On 2/16/06, Mario Ivankovits [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] schrieb: fixed class loading issue for WebSphere compatibility

jira permissions

2006-02-17 Thread Mario Ivankovits
Hi! I tried to mark http://issues.apache.org/jira/browse/MYFACES-1002 as fixed but failed due to the absence of any close/fix or whatever link. Could one please adjust my permissions accordingly. JIRA User: imario Thanks! Ciao, Mario

Re: jira permissions

2006-02-17 Thread Mario Ivankovits
Hi Martin! I added you to the developers group in jira. Thanks! Ciao, Mario

remove unused method

2006-02-17 Thread Mario Ivankovits
Hi! I would like to remove the unused method tomahawk-sandbox/org.apache.myfaces.custom.util.ComponentUtils.findComponent its buggy (didnt traverse through facets) and no longer used. So I would like to get this trap out of line. Any objections? Ciao, Mario

Re: remove unused method

2006-02-17 Thread Mario Ivankovits
Sean Schofield schrieb: +1 done so --- Mario

Re: [jira] Commented: (MYFACES-1146) Impossible to hide footer in dataTable

2006-02-21 Thread Mario Ivankovits
Hi Volker! [ http://issues.apache.org/jira/browse/MYFACES-1146?page=comments#action_12367167 ] Volker Weber commented on MYFACES-1146: --- I prefer to check the rendered attribute of footer/header component over adding extra attributes to

Re: New MyFaces Committer: Craig McClanahan

2006-02-21 Thread Mario Ivankovits
a year now and as an ASF member, has agreed to be the mentor for the ADF incubator project. He has also stated an interest in making the Tomahawk components compatible with Studio Creator. Welcome aboard Craig. We're glad to officially have you on the team now. Sean -- mfg Mario

Re: [jira] Commented: (MYFACES-1146) Impossible to hide footer in dataTable

2006-02-21 Thread Mario Ivankovits
Hi! why not render a empty panelGroup, if so declared in the jsf source? IMO it is intuitive that there *is* a empty panel rendered in your example. So I'll check the rendered attribute of the facet child and if none of the facets are going to be rendered I'll suppress the footer (header) at

Urgent! Problems with type check for *Listener

2006-02-22 Thread Mario Ivankovits
Hi! In UIComponentTagUtils the Void-check for the return-type of the listener cant be evaluated e.g. within an dataTable - or any other component using a var= attribute. This is due to the fact that the var= attribute hasnt processed so far and thus the getType() cant find the method (base is

Re: Urgent! Problems with type check for *Listener

2006-02-22 Thread Mario Ivankovits
Hi Volker! Havend looked into sources yet, but imo we sould not remove this test, but log at warn level and continue processing. Please not at warn level. debug should be sufficient. What should it be good for to log a warning that we cant check the return type of the listener. This warning

Re: svn commit: r379759 - /myfaces/core/trunk/api/src/main/java/javax/faces/convert/DoubleConverter.java

2006-02-22 Thread Mario Ivankovits
Bruno Aranda schrieb: We used the convertedId javax.faces.DoubleTime, due to an error in the spec (or the javadoc) for JSF 1.1. In JSF 1.2 this has been fixed, but I suggest to use the wrong converterId in 1.1 to pass the TCK and to have the same behaviour than the RI... Ups, sorry! I just

Re: svn commit: r379759 - /myfaces/core/trunk/api/src/main/java/javax/faces/convert/DoubleConverter.java

2006-02-22 Thread Mario Ivankovits
Hi! As far as I remember, we ran into some issue with the right field... Can you remove it (the right one) and add some javadoc on that. JSF 1.2 has been fixed. I think there is a Jira ticket on that... Ok, I reverted my change - even if its really odd to have to do it ;-) --- Mario

Re: ExtensionsFilter does not seem to be THREAD SAFE (Again Urgent!!)

2006-02-23 Thread Mario Ivankovits
Hi! Sorry for all my urgent mails, but I address them so only if I really think it IS urgent. ;-) Yes, that is true. This turned out to be a serious problem here. Not only the java.lang.StringIndexOutOfBoundsException problem, but also that it might deliver the content of another request

tomahawk test failed in StylesheetRendererTest and HtmlDataTableTest

2006-02-23 Thread Mario Ivankovits
Hi! This is what I get if I try to build myfaces with tests enabled: [ stacktrace ] --- java.lang.IllegalArgumentException: HTML_BASIC at org.apache.shale.test.mock.MockRenderKitFactory.addRenderKit(MockRenderKitFactory.java:69)

Re: tomahawk test failed in StylesheetRendererTest and HtmlDataTableTest

2006-02-23 Thread Mario Ivankovits
Hi Dennis! Try deleting struts/shale/shale-test.jar in your local repo and running the tests again. I already used mvn -U to update the repository, but it looks like you have to delete it. Now it works. Thanks! Ciao, Mario

Re: svn commit: r380161 - /myfaces/tomahawk/branches/1_1_2/

2006-02-23 Thread Mario Ivankovits
Hi! new tomahawk branch Added: myfaces/tomahawk/branches/1_1_2/ - copied from r380160, myfaces/tomahawk/trunk/ I am already working on a fix for the treading problem with AddResource. Even in myfaces-commons this will influence tomahawk too (testCase and extensionFilter) Without

Re: Error in INPUTCALANDER in DefaultAddResource

2006-02-25 Thread Mario Ivankovits
Hi! It says following way: org.apache.myfaces.renderkit.html.util.DefaultAddResource serveResource SEVERE: Error while serving resource: calendar.HtmlCalendarRenderer/DB/drop1.gif, message : null ClientAbortException: java.net.SocketException: Connection reset by peer: socket

documentTag et al

2006-02-27 Thread Mario Ivankovits
Hi! Sorry for the lenghty mail. I would like to get rid of the ExtensionFilter when it comes to buffer and parse the response. Now there are a couple of methods how to archive this: 1) documentTag Having something like f:view t:document t:documentHead /t:documentHead

Re: documentTag et al

2006-02-27 Thread Mario Ivankovits
Martin Marinschek schrieb: in panelLayout you have HTML, HEAD, BODY, FOOT (ok, you get my point ;) Yes, this is why I put a inc/header.jsp (and footer for sure) outside of panelLayout. So I have a header/footer for the content outside of BODY (but for sure, including the body) and use

Re: documentTag et al

2006-02-27 Thread Mario Ivankovits
Hi! I think we might end up wanting both - the document based approach, _and_ your scripts-tag. What if we implement the state attribute, but having the state optional. So these tags can work with both scenarios. We should only make sure, that no one tries to instrument the children in one

ExtensionFilter: get rid of its buffering

2006-03-01 Thread Mario Ivankovits
Hi! Currently I try to get rid of the buffering of the extension filter. (No code yet, just many many thoughts about it) First of all: Who says we have to render the script src= stuff in html-head? I tried a short XHTML and checked it on http://validator.w3.org/check - it didnt complain about

Re: ExtensionFilter: get rid of its buffering

2006-03-01 Thread Mario Ivankovits
Hi! i'm not sure and have not tested, but AFAIK the link rel=stylesheet .. tags don't work outside html-head. This is where the second idea comes in: We no longer buffer the jsp page, instead we buffer the css. What does this mean? We render a css link in html-head which looks something

Re: [IMPORTANT] Major Changes To Source Code

2006-03-01 Thread Mario Ivankovits
Hi! I got the following error on checkout: Fetching external item into 'current\commons' svn: URL 'https://svn.apache.org/repos/asf/myfaces/commons/trunk' doesn't exist I removed the external link now. --- Mario

Re: Myfaces Wiki Update of Building With Maven by MikeKienenberger

2006-03-01 Thread Mario Ivankovits
Hi Manfred! Is there no easy way to add a jar as Source in eclipse? It looks like this is not possible, at least I dont see how to do it. What will be possible is to add myfaces-shared-impl-2.0.0-SNAPSHOT.jar (the classes) to the classpath and attach

Re: Myfaces Wiki Update of Building With Maven by MikeKienenberger

2006-03-02 Thread Mario Ivankovits
Hi! It looks like this is not possible, at least I dont see how to do it. What will be possible is to add myfaces-shared-impl-2.0.0-SNAPSHOT.jar (the classes) to the classpath and attach myfaces-shared-impl-2.0.0-SNAPSHOT-sources.jar as source to it. Yes, that's exactly what I do (ie.

examples not correctly deployed

2006-03-02 Thread Mario Ivankovits
Hi! It looks like the examples are not correctly deployed. In my directory I find ~/projects/myfaces/tomahawk/examples/simple/target/myfaces-example-simple/WEB-INF/lib these three myfaces jars myfaces-api-1.1.3-SNAPSHOT.jar myfaces-commons-1.1.3-SNAPSHOT.jar myfaces-impl-1.1.3-SNAPSHOT.jar

Re: wrong rev!!! Re: AddResourceFactory wrong version in head?

2006-03-02 Thread Mario Ivankovits
Hi! I found your files and applied them. Thanx! :-) Ciao, Mario

Move AddResource et al to tomahawk?

2006-03-03 Thread Mario Ivankovits
Hi! I know this is not the best timing, but I would like to ask anyway. Also I havent looked at it in every detail, so I dont know if there is any technical reason for not doing so. The question is: Can we move all the AddResource stuff from shared to tomahawk? In fact I talk about the whole

Re: Move AddResource et al to tomahawk?

2006-03-03 Thread Mario Ivankovits
Hi Dennis! The same goes for org.apache.myfaces.shared.webapp.filter.WelcomeFileFilter. WelcomeFileFilter was moved to commons already. From impl to commons to tomahawk ... ;-) A long journey for sure :-) Are you saying this is back in impl ? not impl, to tomahawk! --- Mario

Re: Move AddResource et al to tomahawk?

2006-03-03 Thread Mario Ivankovits
Dennis Byrne schrieb: The same goes for org.apache.myfaces.shared.webapp.filter.WelcomeFileFilter. http://issues.apache.org/jira/browse/MYFACES-1112 JavaScriptDetectorFilter stayed in impl because it depends on ServletExternalContextImpl . Does this mean we cant move the

Re: Move AddResource et al to tomahawk?

2006-03-03 Thread Mario Ivankovits
Hi! BTW, shouldnt it be easily possible to get rid of the dependency to ServletExternalContextImpl? Its used just to set a session attribute, no? I think you are correct. If you don't do this soon (yourself), go ahead and reopen the issue and I'll take a look at it. I think I

How to bundle AddResource.properties?

2006-03-03 Thread Mario Ivankovits
Hi! I am nearly finished with refactoring shared/org.apache.myfaces.shared.renderkit.html.util to tomahawk/org.apache.myfaces.renderkit.html.util Now I have a problem with AddResource.properties. Can one please direct me how to bundle this file with maven? Another problem I have is in directory

Re: How to bundle AddResource.properties?

2006-03-03 Thread Mario Ivankovits
Ok, placed it at the wrong position. Now it works! --- Mario

shared/o.a.m.s.renderkit.html.util refactored

2006-03-03 Thread Mario Ivankovits
Hi! Ok, the refactoring of shared/org.apache.myfaces.shared.renderkit.html.util to tomahawk/org.apache.myfaces.renderkit.html.util is finished. Tests and examples are still working, so looks promising :-) Next is the WelcomeFilter. Ciao, Mario

Did you know? FacesIDE eclipse plugin

2006-03-04 Thread Mario Ivankovits
Hi! Look what a co-worker found: http://amateras.sourceforge.jp/cgi-bin/fswiki_en/wiki.cgi?page=FacesIDE Looks promising - with el code completion and graphical navigation editor. Though, the el code completion didnt work here :-( maybe only local problems. Unhappily this is exactly my most

Re: Testing Progress?

2006-03-04 Thread Mario Ivankovits
Hi Dennis, didn't you read my mails on [EMAIL PROTECTED] Or is there some spamfilter discarding them? Now I send you this via PM too. After discussion last week on the ML I refactored shared in a way that the rest is no longer compatible with branch 1.1.2. I moved some stuff from shared to

Re: refactoring shared finished

2006-03-05 Thread Mario Ivankovits
Sean Schofield schrieb: What shared branch? There is only trunk ... did you mean core branch? Yes, for sure :-o all this shared/core and core/src and so on drives me crazy :-) --- Mario

Re: Testing Progress?

2006-03-05 Thread Mario Ivankovits
Hi Dennis! I was under the impression that we were still going w/ one of Sean's ideas. Basically, if its in the core it should be fixed on the branch . For sure, in this case it was definitely my fault. On the other hand, I came across a couple of classes in core/shared/tomahawk. Doing it

Re: Testing Progress?

2006-03-05 Thread Mario Ivankovits
Hi Dennis! I respect your opinions Mario but I'm afraid we don't see this the same way. Ok. Its just a discussion :-) I tend to lean towards *more* time between branch/tag and release. During that time, no new features - only bug fixes that are moved to trunk after release (at the latest).

Re: Testing Progress?

2006-03-05 Thread Mario Ivankovits
Hi Sean! So lets fix this mess by creating a branch before Mario's changes. We can have the core branch work off this new shared branch and then release shared? Make sense? The commit where the bad started to happen is r382918, so using one before might work. Please do not use any older

Re: Testing Progress?

2006-03-06 Thread Mario Ivankovits
Hi Dennis! Right now the best solution that I see is to tag shared as close to the core tag as possible ( speaking of time here ). I am still trying to find problems with this idea. As I said, AddResource had a massive bug. It is possible to deliver responses to other clients than the

Re: Testing Progress?

2006-03-06 Thread Mario Ivankovits
Hi Sean! Martin's last commit appears to make this work. It doesn't work for me. I get ... Martins commit wasn't meant to fix this problem. D:\open-source\myfaces-core-1.1.2\impl\src\main\java\org\apache\myfaces\webapp\f ilter\_javascript_DetectorFilter.java:[58,23]

Re: svn commit: r383529 - in /myfaces/tomahawk/trunk/sandbox/core/src/main: java/org/apache/myfaces/custom/inputsuggestajax/InputSuggestAjaxRenderer.java resources/org/apache/myfaces/custom/inputsugge

2006-03-06 Thread Mario Ivankovits
Hi! Our new license boilerplate? myfaces/tomahawk/trunk/sandbox/core/src/main/resources/org/apache/myfaces/custom/inputsuggestajax/resource/tableSuggest.js Mon Mar 6 05:25:56 2006 @@ -1,7 +1,15 @@ /** - * Copyright 2006 The Apache Software Foundation. * - * Licensed under the Apache

Re: Testing Progress?

2006-03-06 Thread Mario Ivankovits
Hi Sean! Actually the shared stuff prevents this from being a problem. Since maven will refactor things into their own packages there is no longer the potential to have a shared conflict between tomahawk and core. (non binding) -1 from me, sorry. (Reason: The ExtensionFilter bug) Please

Re: Testing Progress?

2006-03-06 Thread Mario Ivankovits
Hi! Is the ExtensionFilter bug something that already exists in the current 1.1.1 release? IMHO no. This bug were introduced during the creation of AddResourceFactory which was 2006-02-08. So after the 1.1.1 release. If its not a new bug then I don't mind releasing with the bug in place.

Re: Testing Progress?

2006-03-06 Thread Mario Ivankovits
Hi Sean! Ok so should we create a new myfaces core branch then (off the current trunk.) That seems like the best option given the choices ... And here is my +1 for this :-) --- Mario

Re: Testing Progress?

2006-03-06 Thread Mario Ivankovits
Hi Martin! So blame me! It's my fault! No need to stand in first line :-) The bug could have been fixed without tempering the release process. It was me who started the refactoring at the same time as I wasn't aware about the slightly different (and lengthy) release process here in

Drinking beer in Vienna/Austria

2006-03-06 Thread Mario Ivankovits
Hi! I'll invite everyone who has some time to a meeting in vienna/austria. Location: Ma Pitom Date: 28.3.2006 Time: 18:30 We have no free stickers, no t-shirts or any other gift, just a meeting to drink a beer - or two - maximum. You meet me (if this is of any interest) and some guys from the

Re: svn commit: r383888 - in /myfaces: core/trunk/assembly/pom.xml shared/trunk/core/ shared/trunk/shared-impl/ shared/trunk/shared-tomahawk/ tomahawk/trunk/assembly/pom.xml tomahawk/trunk/examples/as

2006-03-07 Thread Mario Ivankovits
Hi! plugin groupIdorg.apache.myfaces.maven/groupId artifactIdwagon-maven-plugin/artifactId -version1.0.1-SNAPSHOT/version +version1.0.2-SNAPSHOT/version Is it possible to use a entity references in an pom.xml? So we can move all the version stuff

Re: Core and JDK 1.3

2006-03-07 Thread Mario Ivankovits
Hi Sean! Dennis mentioned that we are not using JDK 1.3 compile option on the core branch. Its not only to set the target/source options, but also to a) set the bootclasspath for the compiler to the jdk1.3 libraries - see: http://jroller.com/page/scolebourne?entry=compiling_for_older_jdks and

ajaxed datatable

2006-03-08 Thread Mario Ivankovits
Hi! Ok, who would like the one to get the glory for implementing an ajaxed datatable like the stuff you can see on m$ new search site: www.live.com You simply scroll up or down while it refetch the data from the server. Happy coding. - Werner? :-) Such a beast will be really great to have - ok,

Re: ajaxed datatable

2006-03-08 Thread Mario Ivankovits
Hi! Don't see what you're referencing on live.com, The search result, no? but I'd help beta-test a datatable like the following :) http://openrico.org/rico/livegrid.page Might make it too, yes ;-) Ciao, Mario

warning - use of class.getName() in shared

2006-03-08 Thread Mario Ivankovits
Hi! Currently I put some investigation into the problem that the dummy form is no longer rendered. The problem I found is, that some classes use its own class name with some constant added and but this into e.g. the requestMap. So in case of the DummyForm this is

Re: warning - use of class.getName() in shared

2006-03-09 Thread Mario Ivankovits
Hi! Its again me ... somewhat angry, so sorry *g* I CANT SET A BREAKPOINT IN SHARED ANY MORE - or I have to do it twice in shared_impl and shared_tomahawk. Please lets discuss again why this refactoring is needed - PLEASE !!! Now I propose to get rid of all those class.getName() (or

  1   2   3   4   5   6   7   8   9   10   >