Re: null EL expression - "ELResolver cannot handle a null base Object with identifier 'nullValue'"

2007-07-18 Thread Bruno Aranda
he.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:634) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:445) at java.lang.Thread.run(Thread.java:619) On 7/5/07, Bruno Aranda <[EMAIL PROTECTED]> wrote: > Ok, found the problem. The

Re: Myfaces 1.2.0 setup issues (again)

2007-07-21 Thread Bruno Aranda
Hi, A lot of testing was done after deciding that MyFaces 1.2 could be released. A part from this, the TCK is passed both in tomcat and in jetty. Tomahawk simple examples can be tested with tomahawk 1.2 right away: - Checkout the tomahawk sources and go to the tomahawk/examples/simple folder - R

Re: tomhowk1.1.3 with trinidad1.0.1 can run in a error!

2007-07-22 Thread Bruno Aranda
This was bug TOMAHAWK-777 and it has been fixed in tomahawk 1.1.7-SNAPSHOT. Cheers! Bruno [1] https://issues.apache.org/jira/browse/TOMAHAWK-777 On 22/07/07, song <[EMAIL PROTECTED]> wrote: errror in jdk1.4 tomcat5.5 song wrote: > > i use the tomhowk1.1.3 with trinidad1.0.1 , > when i use

Re: MyFaces 1.2 + Tomahawk Kickstart was: Re: Myfaces 1.2.0 setup issues (again)

2007-07-24 Thread Bruno Aranda
Hey hey, we are a community here, credits go for all. We all write our bits and pieces here and there and it is the combination of all them what matters :-) Cheers, Bruno On 24/07/07, Werner Punz <[EMAIL PROTECTED]> wrote: Wolf Benz schrieb: > Great work Werner. > A true added value. > This is

Re: [Tomahawk] facelets

2007-07-31 Thread Bruno Aranda
It is probably that the next major version of tomahawk (the one explicitly created for jsf 1.2) will integrate the facelets taglib generation in the build process, as it will take advantage of the code generation of the trinidad's maven-faces-plugin. In the meanwhile, I use this library (implement

Re: [Tomahawk] facelets

2007-07-31 Thread Bruno Aranda
er, > For what Tomahawk version is this? (116/117?) > -Wolf > > On 7/31/07, Bruno Aranda <[EMAIL PROTECTED]> wrote: > > It is probably that the next major version of tomahawk (the one > > explicitly created for jsf 1.2) will integrate the facelets taglib > > gen

Re: MF1.2.0 + Facelets "XML Parsing Error"

2007-07-31 Thread Bruno Aranda
In the login page, where are you opening the ui:composition tag? Seems to be missing right? Hope this is the problem, Cheers, Bruno On 31/07/07, Wolf Benz <[EMAIL PROTECTED]> wrote: > Hi everybody, > > I get this error(@loginPage.xhtml) after my first page(index.xhtml) > renders correctly - any

Re: EL 2 Ref/Tut

2007-08-03 Thread Bruno Aranda
You can use implicit objects such as "request", "session" and "header" with Facelets too, so #{request.requestURI} should be perfectly valid, but of course, you can always go through facesContext which brings a world of possibilities :-) Cheers, Bruno On 03/08/07, Wolf Benz <[EMAIL PROTECTED]> w

Re: Link to a new site

2007-08-27 Thread Bruno Aranda
Welcome Wolfgang, One of the features of the tree2 model is that you can extend its model objects to accommodate the tree to your needs. For example, you can have a specific extension of TreeNodeBase that contains an action method for navigation: public class TreeNodeNavigation extends TreeNodeBa

Re: cambo list with multiple choice

2007-08-27 Thread Bruno Aranda
What about the standard h:selectManyMenu? Cheers, Bruno On 27/08/07, lmk <[EMAIL PROTECTED]> wrote: > > helloo guys; > > Im struggled to find a useful JSF component that looks like a cambo but with > a multiple choice possibility; the myfaces or tomawahk selectManyListbox > can' be rendered as w

Re: cambo list with multiple choice

2007-08-27 Thread Bruno Aranda
mk <[EMAIL PROTECTED]> wrote: > > the standard selectManyMenu render is not like a cambo list.. > see the render ont the right selectManyMenu, on the left selectManyListBox > > > http://www.nabble.com/file/p12350965/debug.jpg > > > > Bruno Aranda wrote: > >

Re: Avoid line break

2007-08-29 Thread Bruno Aranda
Just nest them in the standard h:panelGroup (or use one of the more solutions using Trinidad). Is, by any chance, your inputText nested in a h:panelGrid (a panelGrid renders a table with the value of its "columns" attribute as the number of cells per row). Hope this helps, Bruno

Re: tomahawk radio button

2007-08-29 Thread Bruno Aranda
What kind of errors? Can you show a snippet of your code? Cheers, Bruno On 29/08/2007, Wolfgang <[EMAIL PROTECTED]> wrote: > Hi, > > how can I create a tomahawk radio button or a radio button group? > I can just find examples for the standard html tags, but if I try those > examples > I always g

Re: JSF Newbie needs help with selectOneMenu and valueChangeListener

2007-08-29 Thread Bruno Aranda
Hi, do you have an h:message/s component in your page to see if there is a validation error. Moreover, maybe the great information about the immediate attribute in this page can help you: http://wiki.apache.org/myfaces/How_The_Immediate_Attribute_Works Cheers, Bruno On 28/08/2007, tfuda <[EMAIL

Re: EL problem

2007-08-29 Thread Bruno Aranda
Hi, does it work if you use #{...} instead of ${...}? I seem to recall a bug in myfaces 1.2.0 that has been fixed recently and it should be fixed in the current snaphots (try myfaces-1.2.1-SNAPSHOT)... Cheers, Bruno On 29/08/2007, Raphael Parree <[EMAIL PROTECTED]> wrote: > Hi, > > This problem

Re: Is AUTO_SCROLL broken?

2007-08-31 Thread Bruno Aranda
Doesn't this work for you? It works for me... http://www.irian.at/myfaces/autoscroll.jsf Cheers, Bruno On 31/08/2007, Bjørn T Johansen <[EMAIL PROTECTED]> wrote: > I tried to switch back to myfaces 1.1.4 (from 1.1.5) and to tomahawk 1.1.3 > (from 1.1.6) and now auto_scroll works again, so ther

Re: Is AUTO_SCROLL broken?

2007-08-31 Thread Bruno Aranda
o myfaces 1.1.5 and tomahawk > 1.1.6, then auto_scroll stops working for my webapp (and > that is the only change I need to do to make auto_scroll stop working...) > > BTJ > > On Fri, 31 Aug 2007 10:17:32 +0100 > "Bruno Aranda" <[EMAIL PROTECTED]> wrote: &g

Re: [a4j] Combine commandButton with link

2007-09-28 Thread Bruno Aranda
Use the "action" attribute of commandButtons and commandLinks to handle navigation. It is the same for both and for all the UICommands, Cheers, Bruno On 27/09/2007, Wolfgang <[EMAIL PROTECTED]> wrote: > Hi, > > is there a possibility to combine the a4j:commandButton with the > a4j:commandLink? >

Re: Don't use Facelets + MyFaces 2.0 + Tomahawk

2007-10-11 Thread Bruno Aranda
Hi there, On 11/10/2007, Wolf Benz <[EMAIL PROTECTED]> wrote: > Hi Werner, > > I hope it too. > Toma has some darn fine components if they work. > Perhaps the (MF/Toma)site could add some extra cautions in the mean time. > Bruno estimates that most bugs don't even require too much work > (taglib c

Re: [OFFTOPIC] JSFDays Vienna

2007-10-25 Thread Bruno Aranda
Sounds good! I will try to be there :) Bruno On 25/10/2007, Martin Marinschek <[EMAIL PROTECTED]> wrote: > Hi all, > > we'd like to invite you to a JSF conference in Vienna, Austria from > 12-14th of March. Anyone who wants to present a session or > (pre-)register as an attendee? > > Here is the

Re: [OFFTOPIC] JSFDays Vienna

2007-10-25 Thread Bruno Aranda
-Original Message- > From: Bruno Aranda [mailto:[EMAIL PROTECTED] > Sent: Thursday, October 25, 2007 12:32 PM > To: users@myfaces.apache.org > Subject: Re: [OFFTOPIC] JSFDays Vienna > > Sounds good! I will try to be there :) > > Bruno > > On 25/10/2007, Martin Mar

Re: [OFFTOPIC] JSFDays Vienna

2007-10-25 Thread Bruno Aranda
Good to know! But I will probably stay with one cousin I have there, if I can find her! :) Bruno On 25/10/2007, Matthias Wessendorf <[EMAIL PROTECTED]> wrote: > I am up for room-sharing > > On 10/25/07, Bruno Aranda <[EMAIL PROTECTED]> wrote: > > Hehe, my sentence

Re: Struts-Faces

2007-11-30 Thread Bruno Aranda
I do the same, we have some legacy apps with struts at work, which are being moved slowly to JSF. When they do, there are no middle stages, Cheers, Bruno On 30/11/2007, Mike Kienenberger <[EMAIL PROTECTED]> wrote: > For what it's worth. > > I have a legacy struts app I'm currently maintaining.

[Trinidad] Skinning - :hover state on links

2007-12-04 Thread Bruno Aranda
Hi, I am creating my first skin with trinidad. I have a page with a few tr:commandLinks and I am struggling to add a hover behaviour on them. I am following the wonderful docs (I have skinned a few panelBoxes) but I cannot find the way to just add a hover to all links... Anyone? Is there any comp

Re: [Trinidad] Skinning - :hover state on links

2007-12-05 Thread Bruno Aranda
No hover possible for (command)links in the skin css then? Should I just go with good ole styleClass="someClassWithHover" for this? Thanks! Bruno On 04/12/2007, Bruno Aranda <[EMAIL PROTECTED]> wrote: > Hi, > > I am creating my first skin with trinidad.

Re: [Trinidad] Skinning - :hover state on links

2007-12-05 Thread Bruno Aranda
ver works fine for me, what is your use case so I can try it? > > > Regards, > > ~ Simon > > > On Dec 5, 2007 1:28 PM, Bruno Aranda <[EMAIL PROTECTED] > wrote: > > No hover possible for (command)links in the skin css then? Should I > > just go wit

Re: [Trinidad] Skinning - :hover state on links

2007-12-05 Thread Bruno Aranda
p for this, as well as the following context-param > > > org.apache.myfaces.trinidad.DISABLE_CONTENT_COMPRESSION > true > > > > > On Dec 5, 2007 1:35 PM, Bruno Aranda <[EMAIL PROTECTED]> wrote: > > Thanks Simon, I am starting with this. I have styled the links using > > global selectors but

Re: Iterating over a list of strings or objects

2007-12-06 Thread Bruno Aranda
Facelets: ui:iterate Tomahawk: t:dataList Trinidad: tr:iterator JSTL: c:forEach ... You can use any of these for most cases... Cheers, Bruno On 05/12/2007, Wolfgang Kluge <[EMAIL PROTECTED]> wrote: > Hi, > > is there a possibility to iterate over a list containging Strings or Objects > and dis

Re: Facelet Question

2007-12-06 Thread Bruno Aranda
And IntelliJ 7 On 07/12/2007, Luka Surija <[EMAIL PROTECTED]> wrote: > Kito D. Mann wrote: > > > >> -Original Message- > >> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of > >> Matthias Wessendorf > >> Sent: Thursday, December 06, 2007 3:01 PM > >> To: MyFaces Discussion > >

Re: JFreeChart and JSF

2007-12-13 Thread Bruno Aranda
Using the img you have to set the src attribute to: a) To a graphically already generated (by the previous action) and put on a specific folder b) To a servlet that generates the image Or you can use as well the tomahawk sandbox s:graphicImageDynamic component, like in this example: http://examp

Re: Myfaces on LINUX

2007-12-13 Thread Bruno Aranda
It seems to me that there is something wrong in the classpath with two different versions of myfaces around. Can you list the jars in your classpath? What version of MyFaces are you using? Cheers, Bruno On 13/12/2007, GTrivedi <[EMAIL PROTECTED]> wrote: > > When I request for xhtml page on the l

Re: Myfaces on LINUX

2007-12-14 Thread Bruno Aranda
ce I have pasted coming from > myfaces-commons-1.1.2-SNAPSHOT.jar. > > > > > Bruno Aranda wrote: > > > > It seems to me that there is something wrong in the classpath with two > > different versions of myfaces around. Can you list the jars in your > >

Re: no s:graphicImage available

2007-12-14 Thread Bruno Aranda
Hi, the name is: s:graphicImageDynamic http://myfaces.apache.org/sandbox/graphicImageDynamic.html You can find this and other sandbox components in the sandbox site: http://myfaces.apache.org/sandbox/ Cheers, Bruno On 14/12/2007, Wolfgang <[EMAIL PROTECTED]> wrote: > Hi, > > installed sandbo

Re: newbie: How to start a JSF project

2007-12-15 Thread Bruno Aranda
And check: http://code.google.com/p/facesgoodies/ for a nice working out-of-the-box app that uses MyFaces Core+Trinidad+Spring+Orchestra+JPA+Maven (I am forgetting anything)? This demo app uses JPA with Toplink by default, but it is a matter of configuration to use JPA+Hibernate, Cheers, Bruno

Re: newbie: How to start a JSF project

2007-12-16 Thread Bruno Aranda
... Cheers, Bruno On 16/12/2007, ying lcs <[EMAIL PROTECTED]> wrote: > On Dec 15, 2007 5:50 PM, Bruno Aranda <[EMAIL PROTECTED]> wrote: > > And check: > > > > http://code.google.com/p/facesgoodies/ > > > > for a nice working out-of-the-box app that us

Re: newbie: How to start a JSF project

2007-12-16 Thread Bruno Aranda
Haha, of course, I was missing Facelets (I take it for granted) :) Cheers, Bruno On 16/12/2007, Matthias Wessendorf <[EMAIL PROTECTED]> wrote: > Facelets ;-) > > On Dec 16, 2007 12:50 AM, Bruno Aranda <[EMAIL PROTECTED]> wrote: > > And check: > > > >

Re: newbie: How to start a JSF project

2007-12-16 Thread Bruno Aranda
Hi Andrew, can I know the reason you are using JSF RI 1.2 instead of MyFaces? Is it due to some bug we need to fix? In theory, Seam should work perfectly fine with MyFaces 1.2.1-SNAPSHOT (being released at this moment). Thanks! Cheers, Bruno On 16/12/2007, Andrew Robinson <[EMAIL PROTECTED]> wro

MyFaces benchmarks. was: Re: newbie: How to start a JSF project

2007-12-17 Thread Bruno Aranda
the advantage of using MyFaces instead of > the RI/Mojarra? Has it been benchmarked as being faster or use less > memory? > > -Andrew > > On Dec 16, 2007 1:22 PM, Bruno Aranda <[EMAIL PROTECTED]> wrote: > > Hi Andrew, can I know the reason you are using JSF RI 1.2 ins

Fwd: transformation of tld for JSF Components Archetype doesnt do

2007-03-17 Thread Bruno Aranda
Please, send the messages to the user list and not to the authors directly, as you have far more chances on getting an answer, Thanks, Bruno -- Forwarded message -- From: Torsten Schmeißel <[EMAIL PROTECTED]> Date: 15-Mar-2007 15:33 Subject: transformation of tld for JSF Componen

Re: Access to context of HTTP session

2007-04-28 Thread Bruno Aranda
And what if you try? http://localhost:8080/ce.tests/guess/greeting.jsf Bruno On 28/04/07, Trumml <[EMAIL PROTECTED]> wrote: I guess I'm using the correct URL: http://localhost:8080/ce.tests/guess/greeting.jsp And the servlet(-mapping) in my web.xml look okay for me... I have NO idea what coul

Re: myfaces and jsf 1.2

2007-05-04 Thread Bruno Aranda
Very very soon :-) In my opinion, myfaces 1.2 is completely usable, though not officially compliant yet. There are no releases yet, but it is possible to check out the branch and give it a shot. Cheers, Bruno On 04/05/07, Matthias Wessendorf <[EMAIL PROTECTED]> wrote: Apache MyFaces hasn't p

Re: myfaces and jsf 1.2

2007-05-07 Thread Bruno Aranda
27;t see it on the apache/myfaces website? Thanks Rebecca Peltz Java Developer 1015 3rd Ave 206-674-3400 x4120 *"Bruno Aranda" <[EMAIL PROTECTED]>* 05/04/2007 02:58 PM Please respond to "MyFaces Discussion" To "MyFaces Discussion" cc Subject Re: m

[Announcement] MyFaces 1.2 - 100%

2007-05-10 Thread Bruno Aranda
The MyFaces team is very proud to announce that it seems that MyFaces 1.2 fully implements the JSF 1.2 Specification as we ran the TCK (Technology Compatibility Kit tests) and it passed. We are now seeking formal acknowledgment from Sun that our implementation is conformant with the Specification.

Re: Tomahawk 1.1.5 and MyFaces 1.2 ?

2007-05-10 Thread Bruno Aranda
Hi, you may use tomahawk with JSF 1.2 (at least with the snapshot of MyFaces 1.2). However this is uncharted waters and some components might not work. For instance, a quick test with the snapshot shows that the tree2 or the datascroller seem not to be working. I haven't investigated it yet, but I

Re: Source code of myfaces and tomahawa 1.1.3

2007-05-16 Thread Bruno Aranda
Yes, as Grant says the source packaging was included after 1.1.3 (first version is 1.1.4), as you can see in the source folder [1]. There is a gap from 1.1.1 due to the migration to maven. But you can always get the sources of an specific release from subversion, as all the releases are "tagged".

Re: Source code of myfaces and tomahawa 1.1.3

2007-05-16 Thread Bruno Aranda
removed, Cheers, Bruno On 16/05/07, Bruno Aranda <[EMAIL PROTECTED]> wrote: Yes, as Grant says the source packaging was included after 1.1.3 (first version is 1.1.4), as you can see in the source folder [1]. There is a gap from 1.1.1 due to the migration to maven. But you can always get the s

Re: [Trinidad] faces-1_2-070427 build problem

2007-05-21 Thread Bruno Aranda
Unless it has been fixed, this happens if there is code such as Annotations in the plugin mojos, which the parser is not able to understand... hope that helps, Bruno On 21/05/07, Michael Trompertz <[EMAIL PROTECTED]> wrote: I got the same from trunk. May be this information heps Michael --

Re: MyFaces 1.2 code checkout

2007-05-24 Thread Bruno Aranda
It works for me... can you open that address in a web browser? Or can you ping the server? ping svn.apache.org Or what if you try with https? svn co https://svn.apache.org/repos/asf/myfaces/current12myfaces12 It seems that you have some kind

Re: Submit using the enter key?

2007-05-25 Thread Bruno Aranda
Can you verify if the onkeypress attribute is rendered on the input by looking at the generated source code? Firebug works great to check these things, Cheers, Bruno On 25/05/07, Bjørn T Johansen <[EMAIL PROTECTED]> wrote: I am trying to submit a form using the enter key, but it doesn't work.

Re: Submit using the enter key?

2007-05-25 Thread Bruno Aranda
I press the Enter key og click the submit button... BTJ On Fri, 25 May 2007 11:22:20 +0100 "Bruno Aranda" <[EMAIL PROTECTED]> wrote: > Can you verify if the onkeypress attribute is rendered on the input by > looking at the generated source code? > > Firebug works

Re: Submit using the enter key?

2007-05-25 Thread Bruno Aranda
I think I see a myfaces bug in the onkeypress. It seems that the & have been encoded. As a workaround use a external javascript file with a function for the onkeypress and call it. Could you fill a JIRA also? Thanks! Bruno On 25/05/07, Bjørn T Johansen <[EMAIL PROTECTED]> wrote: That I can...

Re: Submit using the enter key?

2007-05-25 Thread Bruno Aranda
Or you can also use a script tag, like in the third example of this page: http://wiki.apache.org/myfaces/SubmitPageOnValueChange Cheers, Bruno On 25/05/07, Bruno Aranda <[EMAIL PROTECTED]> wrote: I think I see a myfaces bug in the onkeypress. It seems that the & have been enc

Re: Submit using the enter key?

2007-05-25 Thread Bruno Aranda
In the onkeypress I still see the same code, with the encoded &... you should call your function instead. I would recommend using the excellent Firebug [1] plugin if you are using firefox. As it will complain that there are javascript errors in the page and it will ease your pain a little :-) Ch

Re: Unsupported component-family/renderer-type: javax.faces.ViewRoot/javax.faces.Text

2007-05-28 Thread Bruno Aranda
Do you have the view tags in your page? Cheers, Bruno On 28/05/07, Raymund Nickel <[EMAIL PROTECTED]> wrote: Raymund Nickel schrieb: > Hi, > i posted this problem a few weeks ago, but nobody answered. > Now i try it again with some more informations. > > I have a problem with jscook menu. The

Re: Unsupported component-family/renderer-type: javax.faces.ViewRoot/javax.faces.Text

2007-05-28 Thread Bruno Aranda
o On 28/05/07, Raymund Nickel <[EMAIL PROTECTED]> wrote: Bruno Aranda schrieb: > Do you have the view tags in your page? > > Cheers, > > Bruno > > On 28/05/07, Raymund Nickel <[EMAIL PROTECTED]> wrote: >> Raymund Nickel schrieb: >> > Hi, >> &

Re: graphicImageDynamic: Undefined component type

2007-05-28 Thread Bruno Aranda
Hi, the component type is "org.apache.myfaces.GraphicImageDynamic" and the renderer type is "org.apache.myfaces.GraphicImageDynamicRenderer". Maybe changing this solves your problem. Cheers, Bruno On 28/05/07, tintifaxe <[EMAIL PROTECTED]> wrote: Hi, I try to use the sandbox component "s:gra

Re: [COMMUNITY] Ernst Fastl - Committer

2007-05-29 Thread Bruno Aranda
Welcome Ernst! Bruno On 29/05/07, Matthias Wessendorf <[EMAIL PROTECTED]> wrote: Congratulations to Ernst Fastl for becoming the newest Myfaces committer ! Ernst has provided patches and has been active on the mailing list to help other users on how to get up to speed with MyFaces. Thanks Ern

Re: This code works in all other browsers than Firefox, why?

2007-05-29 Thread Bruno Aranda
Are you getting any javascript error? Can you give it a shot with firebug (useful firefox plugin). Maybe you can see what is happening... Cheers, Bruno On 29/05/07, Bjørn T Johansen <[EMAIL PROTECTED]> wrote: