Return-Path: Delivered-To: apmail-myfaces-users-archive@www.apache.org Received: (qmail 31931 invoked from network); 27 Sep 2006 00:58:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 27 Sep 2006 00:58:44 -0000 Received: (qmail 45675 invoked by uid 500); 27 Sep 2006 00:58:43 -0000 Delivered-To: apmail-myfaces-users-archive@myfaces.apache.org Received: (qmail 44723 invoked by uid 500); 27 Sep 2006 00:58:41 -0000 Mailing-List: contact users-help@myfaces.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "MyFaces Discussion" Delivered-To: mailing list users@myfaces.apache.org Received: (qmail 44712 invoked by uid 99); 27 Sep 2006 00:58:41 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Sep 2006 17:58:41 -0700 Authentication-Results: idunn.apache.osuosl.org header.from=ronald.tetsuo@gmail.com; domainkeys=good Authentication-Results: idunn.apache.osuosl.org smtp.mail=ronald.tetsuo@gmail.com; spf=pass X-ASF-Spam-Status: No, hits=0.5 required=5.0 tests=DNS_FROM_RFC_ABUSE Received-SPF: pass (idunn.apache.osuosl.org: domain gmail.com designates 66.249.82.237 as permitted sender) DomainKey-Status: good X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 Received: from [66.249.82.237] ([66.249.82.237:9703] helo=wx-out-0506.google.com) by idunn.apache.osuosl.org (ecelerity 2.1.1.8 r(12930)) with ESMTP id C0/B1-20516-FBCC9154 for ; Tue, 26 Sep 2006 17:58:39 -0700 Received: by wx-out-0506.google.com with SMTP id s13so21636wxc for ; Tue, 26 Sep 2006 17:58:36 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=IcZh+1fN3KrtscONO1x962LBgxftTp89Z5a7aoRbdZUWAWPCnbWGC296+1+kuF0m55P44pVHga1rCxDe0idXjhGwj1whDlyxZagp1BqGiTD8362ryeR1SZzVONt+KGJn7Ib2pA3LXy8f4f/6tFAtVu0PZJH28GGCmr0vr49aoe4= Received: by 10.90.113.18 with SMTP id l18mr11825agc; Tue, 26 Sep 2006 17:58:36 -0700 (PDT) Received: by 10.90.93.20 with HTTP; Tue, 26 Sep 2006 17:58:36 -0700 (PDT) Message-ID: <8b16d7c10609261758q7f2c9bd1oda9efe164121bc81@mail.gmail.com> Date: Tue, 26 Sep 2006 21:58:36 -0300 From: tetsuo To: "MyFaces Discussion" Subject: Re: [OFFTOPIC] What I wish that JSF 2.0 would be like... In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <5a99335f0609261157g1f514d2fid0c6b946055e1d03@mail.gmail.com> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N All I need is JSP definetely dropped, and a decent exception handling mechanism! :D Have fun, guys! On 9/26/06, Roger Keays wrote: > > One more: > > * New listener for FacesServlet startup/shutdown. Some JSF > extensions may need to do some initial configuration on startup and > shutdown but these extensions can't add a ServletContextListener to > web.xml. ATM you can get similar behaviour by using a PhaseListener and > deregistering it after it is first run, but that is just a workaround > really. > > Roger Keays wrote: > > > > Hi Martin, > > > > Here are a couple of ideas I've jotted down: > > > > * Native support for conversation scope. > > > > * Support for partial requests (i.e. AJAX). I imagine this would be > > along the lines of standardising the request and response formats for > > partial requests, and requiring a javascript implementation. > > > > * Ability to invoke actions on first page request. When you're linked > > from other sites, or from a mail client you can't really expect them to > > send the whole state of the component tree, which would be needed to > > invoke an action from that tree (although this does work). Instead, you > > might be able to create a new action listener type which is invoked when > > the tree it is attached to is created/rendered. Of course, it'd have to > > fit into the lifecycle somehow. A simple use case for this would be a > > "click here to vote for struts" link in an email which should invoke a > > JSF Action{Listener}. Currently you'd probably do this with a > > PhaseListener or ServletFilter. > > > > * Ability to define converters for annotated classes (e.g. @Entity). > > We can do , which also works for interfaces, but > > there are cases where an annotation might indicate that a common > > converter could be used. In the case of @Entity, you might be able to > > use something like EntityManager.getId(entity).toString() to convert the > > class (somebody add getId() to JPA 1.1 please!). > > > > * Ability to use #{foo} as an lvalue. Maybe more specific to the EL > > spec, but ATM only #{foo.bar} can be used as an lvalue. Sometimes I just > > want to keep a simple string in the session scope and do things like > > , but instead I have to make a separate > > bean just containing a String. > > > > * Reinvestigate, as per Jabob's ideas, whether we /really/ need > > component state-saving. I got pretty confused when I wrote a simple > > regexp validator that kept forgetting what the regexp was. It was all > > there in the .xhtml file! That was until I learnt about state-saving > > (which was more than I really wanted to know). > > > > * Dump JSP, and make facelets standard. > > > > Happy Oktoberfest! > > > > Roger > > > > > > Martin Marinschek wrote: > >> Hi there, > >> > >> Ed Burns, Jesse Alexander and me will be heading a discussion on what > >> our users dreamed JSF 2.0 would be like - on friday, 2006/09/29, in > >> Munich, at the Oktoberfest. > >> > >> So it's a good opportunity for both talking about JSF and drinking > >> beer - probably the best of the world. We'll meet up in: > >> > >> http://www.weisses-brauhaus.de/ > >> > >> at 18:00 > >> > >> and if you're interested in coming, reply to this mail and I'll > >> include you in the reservation. > >> > >> regards, > >> > >> Martin > >> > > > > > > > -- > ---------------------------------------- > Ninth Avenue Software > p: +61 7 3137 1351 (UTC +10) > f: +61 7 3102 9141 > w: http://www.ninthavenue.com.au > e: info@ninthavenue.com.au > ---------------------------------------- > >