[Lift] Re: JQuery UI Tabs : JqJE.JqTabs ?

2008-12-22 Thread Marius
Looking at the JQuery Tab "widget" it doesn't seem to work ... and tabsClick, tabsSelected functions do not exist. I propose to remove JqTabsXXX objects/case classes and build a tabs widget which will provide both Xhtml and JS artifacts. Br's, Marius On Dec 23, 2:21 am, "David Pollak" wrote: >

[Lift] Re: Loc, trailing slashes, and index files

2008-12-22 Thread Charles F. Munat
Yay! David Pollak wrote: > Derek, > > This commit should take care of it: > http://github.com/dpp/liftweb/commit/2650e10981990eeb08d04d686be27d77da2a5434 > > Also, it takes care of Charles' "I had index at the end of my URLs" problem. > > Thanks, > > David > > On Tue, Dec 9, 2008 at 2:04 PM,

[Lift] Re: Loc, trailing slashes, and index files

2008-12-22 Thread David Pollak
Derek, This commit should take care of it: http://github.com/dpp/liftweb/commit/2650e10981990eeb08d04d686be27d77da2a5434 Also, it takes care of Charles' "I had index at the end of my URLs" problem. Thanks, David On Tue, Dec 9, 2008 at 2:04 PM, Derek Chen-Becker wrote: > This is both a comment

[Lift] Re: Expiring pages via HTTP headers

2008-12-22 Thread David Pollak
Just pushed these changes live: http://github.com/dpp/liftweb/commit/c3d2ec803d0dc1f9aa205be5cbf9c4d327af99c2 Please let me know if Lift is doing the right thing (tm) in terms of never caching a page. On Wed, Dec 10, 2008 at 1:27 PM, Charles F. Munat wrote: > > I guess what I'm looking to do is

[Lift] Re: context path

2008-12-22 Thread David Pollak
If you fully qualify the URL (e.g., http://myserver.com/path";>stuff), then Lift will not rewrite it. Other than that, Lift's going to re-write all URLs. On Mon, Dec 15, 2008 at 8:13 PM, Oliver wrote: > > I have a few links within my pages where I don't want lift to prepend > the context path t

[Lift] Re: JQuery UI Tabs : JqJE.JqTabs ?

2008-12-22 Thread David Pollak
Joachim, These JavaScript helpers are there for you to send JavaScript from the server to do certain things (e.g., select a tab) to the client. There are no helper methods to generate the XHTML. Sorry. David On Sat, Dec 20, 2008 at 9:04 AM, Joachim A. wrote: > > Hi, > I'd like to construct JQ

[Lift] Re: error message tag

2008-12-22 Thread David Pollak
On Mon, Dec 15, 2008 at 3:29 PM, Oliver wrote: > > I have the following to output an error message against > > > When I have an error its all fine, but when I don't have an error I > get the following html > > > Is there any way of getting rid of the empty span? I think you want to keep the e

[Lift] Re: Revised to-do tutorial

2008-12-22 Thread David Pollak
On Sun, Dec 21, 2008 at 2:47 PM, Mark Chadwick wrote: > I'm new to Scala (and consequently Lift), so it's likely an error on my > part. But, the snippet for binding user names to the template on page 13 > tripped me up a bit. Specifying the return type as NodeSeq property > flatMapped the list t

[Lift] Re: Can or Box or something else

2008-12-22 Thread Alex Cruise
Josh Suereth wrote: > In the spirit of LOLCode, I make the following proposal: > > Can becomes Bukkit Just think though, a bit of pimping and... object Can { ... def has[T](t: T) = Full(t) } val gotz = Can has "cheezburger" ... which constitutes my vote for "keep Can" -- it's a comedic noun

[Lift] Using Lift snapshot offline

2008-12-22 Thread Erick Fleming
For those of you who need to work offline for extended periods and are using the SNAPSHOT version of Lift (or any maven project for that matter), then executing "mvn -o" will only working for a day, since maven attempts to update any snapshoted code day. I was able to bypass this via a snapshots

[Lift] Re: Bypassing LiftFilter

2008-12-22 Thread Mark Chadwick
Marius, Thanks! That was just what I needed. It's a web analytics app, so there's a lot of CRUD and reporting pages that are a great fit with Lift. The raw servlet is the tracking pixel that goes down on pages, hence the performance requirements. It really just looks at a couple haders, calls

[Lift] Fwd: [scala] ANNOUNCE: Sublime simpleDB 0.9 (Amazon SimpleDB Binding for Scala)

2008-12-22 Thread David Pollak
This could be a cool backend for the Record/Field stuff! -- Forwarded message -- From: Robin Barooah Date: Sat, Dec 20, 2008 at 9:25 PM Subject: [scala] ANNOUNCE: Sublime simpleDB 0.9 (Amazon SimpleDB Binding for Scala) To: sc...@listes.epfl.ch sublime-simpleDB is a native scal

[Lift] Re: LiftRules.logAndReturnExceptionToBrowser doesnt alway work

2008-12-22 Thread David Pollak
On Sat, Dec 20, 2008 at 11:20 PM, Marius wrote: > > You already got good advices to your particular problem still an > exception thrown from LoanWrapper-s should be caught by and your > function called. I'll look into it tomorrow. Actually, it should not. The loan wrappers execute outside of t

[Lift] Re: Revised to-do tutorial

2008-12-22 Thread David Pollak
On Sun, Dec 21, 2008 at 9:56 PM, Saarela wrote: > > Hi > > Lift looks really beautiful.. > > I tried the demo app, tried following the instructions quite closely > and created a model Todo.scala, but when I try "mvn install > jetty:run", the Scala compiler complains that it can't find the > packa

[Lift] Re: Bypassing LiftFilter

2008-12-22 Thread Marius
On Dec 22, 3:29 am, "Mark Chadwick" wrote: > Howdy. > > From my googling, I'm gathering this is a tall order (due to the servlet > spec), but thought I'd ping the list to see if smarter brains than my own > had an idea.  The idea is that I have particular URL with strict latency > requirements

[Lift] Re: Websites and apps that are using Lift?

2008-12-22 Thread Daniel Cer
> I have six sites, four of them that will be public, that are coming > online over the next few days/weeks. I'll add them four public ones to > your list as they go live. > > Chas. > Thanks, that would be fantastic. -Dan --~--~-~--~~~---~--~~ You received this m

[Lift] Re: Revised to-do tutorial

2008-12-22 Thread Saarela
Hi Lift looks really beautiful.. I tried the demo app, tried following the instructions quite closely and created a model Todo.scala, but when I try "mvn install jetty:run", the Scala compiler complains that it can't find the package IdPK..I wonder if I'm doing something wrong.. Which version o