[Lift] Re: Proposed URL Shortening widget

2009-04-04 Thread Chad Skinner
We do it in ESME. It's 1 class (the model) and 1 object. What is ESME? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Lift group. To post to this group, send email to liftweb@googlegroups.com To unsubscribe

[Lift] Re: The Lift 1.1 list

2009-04-04 Thread Chad Skinner
Also, it would be great it Lift1.1 included all of the necessary .js, .css and class files for the new MenuWidget I have not had the chance to actually work with lift yet and have been doing a lot of reading, but I have not read how lift currently handles script and css resources? Does it

[Lift] chadwskinner

2009-03-29 Thread Chad Skinner
Yes. I've got a backlog of stuff to do a mile long. Don't expect anything on this item before Wednesday. David, Is this backlog something that is public or something we can read. I'm hoping to get a better idea of how things work (Lift, OSGi, application architecture / design, integration,

[Lift] Re: Lift as a UI in server side OSGi

2009-03-29 Thread Chad Skinner
Yes. I've got a backlog of stuff to do a mile long. Don't expect anything on this item before Wednesday. David, Is this backlog something that is public or something we can read. I'm hoping to get a better idea of how things work (Lift, OSGi, application architecture / design,

[Lift] Re: chadwskinner

2009-03-29 Thread Chad Skinner
Sorry, about double posting this. I am not certain how I replied in google and got the subject goofed up so it posted in the wrong thread. Normally, when you reply you don't even have a field to set the subject. Weird. On Sat, Mar 28, 2009 at 5:54 PM, Chad Skinner chadwskin...@gmail.comwrote

[Lift] Re: Lift as a UI in server side OSGi

2009-03-28 Thread Chad Skinner
On Sat, Mar 21, 2009 at 10:51 AM, David Pollak feeder.of.the.be...@gmail.com wrote: On Fri, Mar 20, 2009 at 8:35 PM, Chad Skinner chadwskin...@gmail.comwrote: I may be greatly overcomplicating things... I have been trying to read some of the source code for the LiftServlet.scala

[Lift] Re: State and binding

2009-03-25 Thread Chad Skinner
So, in my experience and to my mind, the tenet of minimizing server-side state is broken and wrong. State should placed where it is (1) most secure and (2) leads to the most responsive apps. Not know much about lift yet and wanting to learn more, what is stored in the server session for a

[Lift] Lift Authentication

2009-03-25 Thread Chad Skinner
I have been reading about Lift Authentication and the Authentication mechanism in OSGi and have a couple of questions and possibly feature requests. Is it possible to inspect a request to perform authentication before sending the 401 if a user is not authenticated? We use an authentication server

[Lift] Re: State and binding

2009-03-25 Thread Chad Skinner
in providing an API for you to use, for ROA/REST needs. From what you may gather from this e-mail, I strongly believe in using the right tools for each job. Does this answer help you? Cheers, Viktor On Wed, Mar 25, 2009 at 2:46 PM, Chad Skinner chadwskin...@gmail.comwrote: Not know much about

[Lift] Re: Lift Authentication

2009-03-25 Thread Chad Skinner
is this: user request (no auth) == challenge user request (with auth) == sucsess (or challenge if incorrect) HTTP Digest is a lot more complex, if you need info on that, let me know. Thanks Tim On Mar 25, 2:42 pm, Chad Skinner chadwskin...@gmail.com wrote: Humm, I am

[Lift] Re: Lift Authentication

2009-03-25 Thread Chad Skinner
Ohh... Right my apologies. I saw the post with Tyler and presumed you specifically wanted to know about HTTP auth. My bad! You can do form-based authentication just perfectly in lift... Its no problem at all. No apologies required at all. I am reading a lot and am trying to wrap my head

[Lift] Re: Lift Authentication

2009-03-25 Thread Chad Skinner
an existing JAAS auth module. Derek On Wed, Mar 25, 2009 at 10:56 AM, Chad Skinner chadwskin...@gmail.comwrote: All of our applications are currently using form based authentication in the EJB container .. am I correct that this (Form based authentication) is not supported in Lift? As I

[Lift] Re: Lift as a UI in server side OSGi

2009-03-23 Thread Chad Skinner
I'm working with a couple of the OSGi gurus on this issue. They're in town for EclipseCon this week and I'll be meeting with them on Thursday. Don't worry about doing anything... we'll get OSGi support into Lift. David and everyone, Thanks for all of your help on this and your effort on

[Lift] Re: Lift as a UI in server side OSGi

2009-03-21 Thread Chad Skinner
I may be greatly overcomplicating things... I have been trying to read some of the source code for the LiftServlet.scala and the class comment is: /** * An implementation of HttpServlet. Just drop this puppy into * your Java web container, do a little magic in web.xml, and * ta-da, you've got

[Lift] Re: Lift as a UI in server side OSGi

2009-03-20 Thread Chad Skinner
I might only have 8 years of experience with working with the Servlet-stack, but the main reason that Lift is hooked into a Filter is that Lift filters requests... ;) But, if OSGi does not support filters then another solution will need to be identified. For example, what if all requests are

[Lift] Lift as a UI in server side OSGi

2009-03-19 Thread chad skinner
I am trying to redesign our web applications into a more services / component based system that would allow us to add features without having to worry about breaking other components. I have been investigating OSGi as a framework utilizing EJB3 and JPA. So far I have (at least I believe) all of

[Lift] Re: Lift as a UI in server side OSGi

2009-03-19 Thread Chad Skinner
On Thu, Mar 19, 2009 at 5:44 PM, David Pollak feeder.of.the.be...@gmail.com wrote: Chad, What would be most helpful is if you could mock up and example with servlets (written in Scala or Java). If I have something that I can run and test, then I can figure out how to shim Lift into it.