[Lift] Re: How to XHTML and embedded snippets

2009-09-16 Thread Timothy Perrett
I think id do: lift:MySnippet.example whatever:demo whatever:src=something.jpg whatever:style=border: black / /lift:MySnippet.example then in the scala: class MySnippet { def example(xhtml: NodeSeq):NodeSeq = bind(whatever, xhtml, demo - img / } Basically, when attributes are

[Lift] Re: Breaking changes in CometActor code vs. continuing instabilities in Scala Actors

2009-09-16 Thread Timothy Perrett
Hey David, Are you saying that scala actors are leaking outside of large rate construction / destruction situations? At least, I remember that was what was tickling the EPFL bug last time :-) This has pretty major ramifications if it is! Personally, I'm happy to move to lift-actor. Cheers

[Lift] Re: How to XHTML and embedded snippets

2009-09-16 Thread Timothy Perrett
, Timothy Perrett timo...@getintheloop.eu wrote: I think id do: lift:MySnippet.example ? whatever:demo whatever:src=something.jpg whatever:style=border: black / /lift:MySnippet.example then in the scala: class MySnippet { ? def example(xhtml: NodeSeq):NodeSeq = bind(whatever, xhtml, ? ? demo

[Lift] Re: Breaking changes in CometActor code vs. continuing instabilities in Scala Actors

2009-09-16 Thread Timothy Perrett
Kevin, To clarify, your talking about akka-actors? The preferred route I think would be to use a fixed EPFL implementation, however, in leu of that i think from a project perspective it would be beneficial for lift to have a corrected actor implementation that we have direct control of. I

[Lift] Re: suggestion: make Mailer use n.l.util.Props

2009-09-16 Thread Timothy Perrett
I think the mailer is some of the oldest code in lift - so its not a huge surprise :-) Im a bit tied up, but which committer should take this on and fix it? Cheers, Tim On 16 Sep 2009, at 21:39, harryh wrote: Rather than using System.getProperties should Mailer use

[Lift] Re: Expires: header value set two times in response header?

2009-09-15 Thread Timothy Perrett
Perhaps one from lift and one from nginx? Cheers, Tim On Sep 15, 7:40 am, jon jonhoff...@gmail.com wrote: Is this ok? $ curl -I demo.liftweb.net HTTP/1.1 200 OK Server: nginx/0.6.32 Date: Tue, 15 Sep 2009 06:37:32 GMT Content-Type: text/html; charset=utf-8 Connection: keep-alive

[Lift] Re: trouble with comet Clock example

2009-09-15 Thread Timothy Perrett
Its telling you that the class Clock could not be found - if i were you, check the package definitions on the clock class to make sure its in the right namespace. Cheers, Tim On Sep 15, 3:38 am, jack jack.wid...@gmail.com wrote: I compiled the comet Clock app and used the following markup

[Lift] Re: trouble with comet Clock example

2009-09-15 Thread Timothy Perrett
to be saying clk is an undeclared namespace? On Tue, Sep 15, 2009 at 4:46 AM, Timothy Perrett timo...@getintheloop.eu wrote: Its telling you that the class Clock could not be found - if i were you, check the package definitions on the clock class to make sure its in the right namespace. Cheers, Tim

[Lift] Re: Spring Security

2009-09-15 Thread Timothy Perrett
Whilst I agree there is certainly a lot very good work in spring security, one has to ask: what is it YOU want from it? You listed a bunch of features there but one would imagine your not going to be using them all. Perhaps look at this another way - what problem do you have that you feel spring

[Lift] Re: [bug(s)?] lift-archetype-jpa-basic

2009-09-15 Thread Timothy Perrett
This is a known problem - Derek origionally created that archetype but we recently made some breaking changes in HEAD. I think the buck is currently living on my door for the maven process stuff so to that end, I'll try to check-in a change tomorrow that should address this for you.

[Lift] Re: Master build failing...

2009-09-14 Thread Timothy Perrett
Just pushed a fix. Cheers, Tim On Sep 14, 9:23 am, Timothy Perrett timo...@getintheloop.eu wrote: Guys, Master build on hudson is now failing Naftoli, it looks like your commit has broken the build. Could you please take a look and correct it asap? We have a process by which you must

[Lift] Re: MappedDate.setFromAny only works with strings?

2009-09-14 Thread Timothy Perrett
java.util.Date isnt thread safe so its probably best we move away from that anyways... Cheers, Tim On 14 Sep 2009, at 17:23, Derek Chen-Becker wrote: Anyone else care to comment? Joda Time and Scala Time are both licensed Apache, so I don't think there would be any issues there, but

[Lift] Re: Why isn't this a trait in lift-json?

2009-09-14 Thread Timothy Perrett
Whilst I cant speak for anyone else - looking at Java these days generally makes me want to be sick and annotations are simply convulsion inducing ;-) There are some issues from a technical perspective with Scala annotations (like deep nested annotations for JPA), but otherwise, in terms of lift

[Lift] Re: Lift deal breakers

2009-09-14 Thread Timothy Perrett
Just wading into the fray here... Looking at people who have responded to this thread, they are mainly people i've not seen on the list before (sorry if your regulars perhaps i should pay more attention!) and that indicates to me that general users dont want *any* js in page (either in the head,

[Lift] Re: Why isn't this a trait in lift-json?

2009-09-14 Thread Timothy Perrett
, annotations in Scala are permissible when having to deal with Java frameworks that need annotations to work. (examples: JAX-RS, JPA et al) On Mon, Sep 14, 2009 at 8:06 PM, Timothy Perrett timo...@getintheloop.eu wrote: Whilst I cant speak for anyone else - looking at Java these days

[Lift] Re: Lift deal breakers

2009-09-13 Thread Timothy Perrett
A synthetic file sounds good to me and would probably be preferable. Cheers, Tim On 13 Sep 2009, at 20:31, marius d. wrote: That looks a little cleaner but we'll have to look more into it if we'd want to go on this path. Perhaps accumulate those function into synthetic js file .. we'll see

[Lift] Why isn't this a trait in lift-json?

2009-09-13 Thread Timothy Perrett
Just had a browse over the latest commit and found the following in path.java: @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) public @interface path { public String value(); } Any reason were not using a trait etc to complete the same functionality? Cheers, Tim

[Lift] Re: Best way to write a wizard

2009-09-13 Thread Timothy Perrett
It just seems to me that you can already do what you detailed using chooseTemplate? My concern about having multiple ways to do a single task IMHO makes it more confusing for n00bs... Much better if there is a clear problem:solution relationship :-) we already have chooseTemplate right?

[Lift] Re: Include jquery.js script

2009-09-11 Thread Timothy Perrett
Errr, thats always been the case, no? It is in the default archetypes for as long as I care to remember :-) Cheers, Tim On 11 Sep 2009, at 14:45, Heiko Seeberger wrote: With the current snapshot one has to explicitly add script type=text/javascript src=/classpath/jquery.js / to the

[Lift] Re: Include jquery.js script

2009-09-11 Thread Timothy Perrett
Sep 2009, at 15:54, Heiko Seeberger wrote: Don't get me wrong: I thought that it was added to the head section automatically, like script type=text/javascript src=/ajax_request/liftAjax.js/ script This would mean that it need not be included in any template. Heiko 2009/9/11 Timothy

[Lift] Re: Milestone 5 now available!

2009-09-10 Thread Timothy Perrett
, Timothy Perrett timo...@getintheloop.eu wrote: Change: version1.1-M4/version to version1.1-M5/version Cheers, Tim On 9 Sep 2009, at 16:22, Xavi Ramirez wrote: Please excuse my ignorance, but how do you upgrade to the latest milestone? I assume it involves updating my POM.xml file

[Lift] Re: testing

2009-09-10 Thread Timothy Perrett
David, Im reading this, understanding it, and thinking that it would be great if it could be written up into a wiki article explaining all the stuff you added in your recent commits (there appear to be a bunch of files and i've not yet looked at the impl) Cheers, Tim On 10 Sep 2009, at

[Lift] Re: This is the official support channel for Lift

2009-09-09 Thread Timothy Perrett
Commits or no commits, we have a great team - one that is responsive and highly intelligent; moreover there is enough diversity of requirement from our various stakes in lift that it will continue grow organically from the needs of both committers and its users - hopefully resulting in a

[Lift] Re: Milestone 5 now available!

2009-09-09 Thread Timothy Perrett
Yes it does, it provides a fixed point in time so that users who are developing against HEAD can have stability if they are going into production for instance, or just want a fixed reference point (as we are far away from 1.0 now) Cheers, Tim On 9 Sep 2009, at 16:02, glenn wrote: Does

[Lift] Re: Milestone 5 now available!

2009-09-09 Thread Timothy Perrett
Change: version1.1-M4/version to version1.1-M5/version Cheers, Tim On 9 Sep 2009, at 16:22, Xavi Ramirez wrote: Please excuse my ignorance, but how do you upgrade to the latest milestone? I assume it involves updating my POM.xml file, but that's all I know. Thanks, Xavi On Wed,

[Lift] Re: Crazy idea for lift's mega proto user: admin panel.

2009-09-08 Thread Timothy Perrett
Agreed - cant help but feel this is a little gimmicky and not really part of lifts core values; that said, as Marius points out this might work as a widget. Cheers, Tim On 8 Sep 2009, at 11:36, marius d. wrote: Nice thoughts but personally I don't think this should be part of Lift core

[Lift] Re: setting user-agent header with Databinder

2009-09-08 Thread Timothy Perrett
IMHO, you'd probably get better traction with such questions in a wider audience on the main scala-user list over at EPFL... Cheers, Tim On 8 Sep 2009, at 17:26, Jack Widman wrote: Right. I will try to keep to the topic :) I actually found him and he quickly answered me. On Tue, Sep 8,

[Lift] Re: solution to jetty:run locks files on windows problem

2009-09-07 Thread Timothy Perrett
Jon, good stuff - perhaps write this up on the wiki: http://wiki.github.com/dpp/liftweb Cheers, Tim On Sep 7, 6:09 pm, jon jonhoff...@gmail.com wrote: Hi all, If you happen to be developing under windows you will notice that mvn jetty:run locks files and prevents editing while the server

[Lift] Re: Hudson build down?

2009-09-07 Thread Timothy Perrett
I've just triggered a manual build - so lets see if it works. Cheers, Tim On Sep 7, 9:19 am, Jeppe Nejsum Madsen je...@ingolfs.dk wrote: Hi, Seems like it's been 5 days without a build, but there has been plenty of action on github. But looking at the maven repo it looks like there

[Lift] Re: Hudson build down?

2009-09-07 Thread Timothy Perrett
OK, so its been running for a while now and it looks like its featuring that same file open problem as before Can one of the admins fix it? Cheers, Tim On Sep 7, 6:54 pm, Timothy Perrett timo...@getintheloop.eu wrote: I've just triggered a manual build - so lets see if it works. Cheers

[Lift] Re: solution to jetty:run locks files on windows problem

2009-09-07 Thread Timothy Perrett
Thanks Jon, thats super. Cheers, Tim On Sep 7, 7:25 pm, jon jonhoff...@gmail.com wrote: Done:http://wiki.github.com/dpp/liftweb/how-to-fix-file-locking-problem-wi... On Sep 7, 1:49 pm, Timothy Perrett timo...@getintheloop.eu wrote: Jon, good stuff - perhaps write this up on the wiki

[Lift] Re: Using Roles and LIftRules.authentication

2009-09-06 Thread Timothy Perrett
this resource. This Loc will be served only if HTTP authentication succeeds and the Role match. So this is an RBAC. Br's, Marius On Sep 5, 7:57 pm, Timothy Perrett timo...@getintheloop.eu wrote: Glenn, its simply not designed to do what your asking - however, the most lift way of doing access

[Lift] Re: Using Roles and LIftRules.authentication

2009-09-05 Thread Timothy Perrett
Glenn, its simply not designed to do what your asking - however, the most lift way of doing access control is with SiteMap, so potentially look into that as a solution. You don't detail your needs, but we've had this conversation several times on-list so just look through the archives and that

[Lift] Re: Lift and Cappuccino integration... a first step

2009-09-05 Thread Timothy Perrett
sense. Apart from the usual configuration and filtering activities, downloading and merging the Cappuccino stuff during archetype:generate could be interesting addition. Cheers, Indrajit On 05/09/09 1:31 AM, Timothy Perrett wrote: Right now there is *a lot* of deep changes going

[Lift] Re: Lift and Cappuccino integration... a first step

2009-09-04 Thread Timothy Perrett
Right now there is *a lot* of deep changes going on in the capp codebase... IMHO, lets wait until 0.8 is released then make an archetype against that. Cheers, Tim On 4 Sep 2009, at 09:39, Indrajit Raychaudhuri wrote: Great stuff. Now how about an archetype for this? Cheers, Indrajit

[Lift] Re: Using Roles and LIftRules.authentication

2009-09-04 Thread Timothy Perrett
Glenn, If Marius doesn't beat ne to it, I'll reply tomorrow morning. The system we implemented for auth was not meant to be composed with matter per-say, not in the way you think however... Presumably you've looked at the http Auth example in the github repo? I'm not sure why on earth you

[Lift] Re: Wizard code in master

2009-09-03 Thread Timothy Perrett
Thought as much ;-) Just something else to throw into discussion, but perhaps it would be great if wizard processes could be serialised into a couple of formats (XML, JSON??)... this is something that I could see myself using to load different wizard steps dynamically from my database or such.

[Lift] Re: Dependency Injection in Lift

2009-09-03 Thread Timothy Perrett
Guys, Can I direct this thread to a previous discussion on DI / IoC that took place on EPFL scala-user list: http://www.nabble.com/Dependency-injection-in-Scala--ts15229956.html Some interesting thoughts on there that appear to be most relevant to this thread :-) Cheers, Tim

[Lift] Re: Syntax Highlighting On Wiki

2009-09-02 Thread Timothy Perrett
+1 this is super and a great addition. How's it going porting content from wiki.liftweb.net? Cheers, Tim On Sep 2, 6:42 pm, David Pollak feeder.of.the.be...@gmail.com wrote: Great stuff!  Please post this to the wiki so it's right there for everyone. On Tue, Sep 1, 2009 at 5:10 PM, Xavi

[Lift] Re: Dependency Injection in Lift

2009-09-02 Thread Timothy Perrett
Chris, I read your comments with interest - just to clarify, are you against changing code / would prefer a configuration file? I sort of got that vibe from some of your posts... Personally, im not down with configuration files and prefer code that configures code. Some of the systems i've got

[Lift] Re: Schemify from command line

2009-09-02 Thread Timothy Perrett
You could possibly configure something with scala:run perhaps... check my blog on how to create launchers: http://is.gd/2OhTl Just a thought :-) Cheers, Tim On 2 Sep 2009, at 20:45, Naftoli Gugenheim wrote: Is there some way to set things up to run a maven command that will Schemify?

[Lift] Re: Snippet inside of a Snippet

2009-09-02 Thread Timothy Perrett
Are you using JavaRebel? Try doing a clean before jetty:run Cheers, Tim On 2 Sep 2009, at 20:57, José María wrote: On 2 sep, 17:27, David Pollak feeder.of.the.be...@gmail.com wrote: Try: lazy val id = S.param(id).flatMap(Helpers.asLong) openOr -1L I get: Exception occured while

[Lift] Wizard code in master

2009-09-02 Thread Timothy Perrett
Hey all, Just taking a look through the wizard code... it looks pretty awesome :-) Just so im clear, this is a work in progress / first pass right? Cheers, Tim --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Lift

[Lift] Re: GAE (google apps engine) Lift Eclipse Setup

2009-09-01 Thread Timothy Perrett
It's on the github wiki: http://wiki.github.com/dpp/liftweb Cheers, Tim Sent from my iPhone On 1 Sep 2009, at 07:23, Andreas andreas.heissenber...@gmail.com wrote: How do I compile the lift snapshot from the git repository? Is there a maven config or wiki entry? On Aug 31, 7:18 pm,

[Lift] Re: Best way to make multi step wizard that needs to hold large chunks of data?

2009-09-01 Thread Timothy Perrett
SWT! Can you post when its pushed? Im getting on the road shortly and want to do a pull before I go offline for a few days Cheers, Tim On 1 Sep 2009, at 16:30, David Pollak wrote: Okay... you've pushed me over the edge... I'll roll out the first bit of Wizard today... ;-) On

[Lift] Re: Question about Lift/Scala Lift Discussion Board

2009-08-30 Thread Timothy Perrett
We recently went through such a debate at work trying to decide between web forum vs mailing list and the end result for us at least was it depends. A lot of this is all highly subjective, there is no right or wrong - both sides need to remember that what works for them might not work for

[Lift] Re: Creating your own tags?

2009-08-29 Thread Timothy Perrett
Hey Viktor, I think you might be right... but how to plug such an XSLT into the template processing pipeline? Cheers, Tim PS: Glad to see your broken keyboard is still producing amusing results lol ;-) On Aug 29, 7:57 am, Viktor Klang viktor.kl...@gmail.com wrote: Tim, if you really want to

[Lift] Re: Creating your own tags?

2009-08-29 Thread Timothy Perrett
Yeah perhaps utilize an xml maven plugin or similar - for the moment (and this proof of concept) think i'll stick to using lift tags and consider doing this sort of XSLT implementation for some IDE integration or whatever... We'll see what happens and how this process evolves over time. Thanks

[Lift] Re: Question about Lift/Scala Lift Discussion Board

2009-08-29 Thread Timothy Perrett
Agreed (and +1) - Personally I actually prefer mailing lists full stop because it involves no web site trawling to get to the topics one is after... Cheers, Tim On 30/08/2009 01:20, TylerWeir tyler.w...@gmail.com wrote: I'm not really sure how splintering the community is going to help. I

[Lift] Re: authentication and access control

2009-08-28 Thread Timothy Perrett
Chris, Are you thinking along the lines of JAAS or similar? As Marius said, we currently don't have a defined way of doing general purpose authentication within Lift apps Cheers, Tim Sent from my iPhone On 28 Aug 2009, at 08:14, marius d. marius.dan...@gmail.com wrote: I'm not sure you

[Lift] Re: error in http authetication and openid

2009-08-28 Thread Timothy Perrett
in we can implicitly know that this user has admin rights. Best On Aug 27, 3:47 pm, Timothy Perrett timo...@getintheloop.eu wrote: Please check: http://is.gd/2BwGf Can you check your code looks like that and if your still getting the problem? Cheers, Tim On 27/08/2009 11:34

[Lift] Re: how to use thread in lift

2009-08-28 Thread Timothy Perrett
Pravin, why not use scala actors? Cheers, Tim On 28/08/2009 10:05, pravin pravinka...@gmail.com wrote: Hi, i want to use thread in my lift application. I have two Lists i.e. List1() and List2(); when i click on submit button i want to do following things - i am executing to

[Lift] Re: authentication and access control

2009-08-28 Thread Timothy Perrett
again for your input! Timothy Perrett wrote: Chris, Are you thinking along the lines of JAAS or similar? As Marius said, we currently don't have a defined way of doing general purpose authentication within Lift apps Cheers, Tim Sent from my iPhone On 28 Aug 2009, at 08:14, marius d

[Lift] Creating your own tags?

2009-08-28 Thread Timothy Perrett
Guys, If I wanted to create my own set of custom tags that looked like: something:notlift attr=whatever / Ive not seen anyone ask this before and I know I cant use LiftTagPF to do it, so how would one go about doing such trickery? Can I still make use of lift goodness for snippets etc?

[Lift] Re: Creating your own tags?

2009-08-28 Thread Timothy Perrett
Hey David, Id like to echo your thoughts - I see no issue with views being tied to plugins or other such arbitrary tags... as you say, they are already tied to snippets. What are your thoughts on how arbitrary tag / prefix support could be implemented? Cheers, Tim There's been some

[Lift] Re: Creating your own tags?

2009-08-28 Thread Timothy Perrett
is that people could overwrite Lift built in snippets with some proprietary implementation. However in practice this is not really needed .. I think. All in all I'd love to see some types of problems where custom tags would be a better fit. Br's, Marius On Aug 28, 7:30 pm, Timothy Perrett timo

[Lift] Re: Creating your own tags?

2009-08-28 Thread Timothy Perrett
Its not that I want to completely stop the normal lift tag processing, I don't, I just want to make it appear to users as if they are not using lift... That might sound crazy, but essentially I want users to only know about that tags they are told about, rather than having obvious access to all

[Lift] Re: some questions on lift

2009-08-27 Thread Timothy Perrett
Checkout my article here on how to localize with Lift: http://is.gd/1NXGN Cheers, Tim On 27/08/2009 14:08, surfman chinasmile...@gmail.com wrote: 3) internationalization support. how does lift support this? --~--~-~--~~~---~--~~ You received this message

[Lift] Re: some questions on lift

2009-08-27 Thread Timothy Perrett
/08/2009 14:32, marius d. marius.dan...@gmail.com wrote: Tim has a magic articles bag :) On Aug 27, 4:20 pm, Timothy Perrett timo...@getintheloop.eu wrote: Checkout my article here on how to localize with Lift:  http://is.gd/1NXGN Cheers, Tim On 27/08/2009 14:08, surfman chinasmile

[Lift] Re: Small wiki contribution for log4j configuration

2009-08-27 Thread Timothy Perrett
Looks great to me! Add it to the lift wiki with the prefix How To: as that follows our convention. Cheers, Tim On 27/08/2009 15:56, Richard Dallaway dalla...@gmail.com wrote: What's the protocol for making a Wiki contribution: just go in and do it? Turns out I'm not that brave. I've

[Lift] Re: Contributing to Lift

2009-08-27 Thread Timothy Perrett
Without doubt the most accesible way would be with writing wiki articles... We really lack documentation. Provided you have a github account you can get cracking straight away :-) Cheers, Tim Sent from my iPhone On 27 Aug 2009, at 17:41, Tim Dion tim_d...@yahoo.com wrote: Hi all,

[Lift] Codebase Organization...

2009-08-26 Thread Timothy Perrett
Chaps, Any objections to me renaming sites to examples? Moreover, I want to move some of these so called examples to be archetypes as it strikes me that they are better starting points than anything else (e.g. HTTP Auth, PayPal etc) Thoughts? Cheers, Tim

[Lift] Re: Codebase Organization...

2009-08-26 Thread Timothy Perrett
To clarify, only some of the examples will become archetypes... Not all. On 26/08/2009 10:39, Timothy Perrett timo...@getintheloop.eu wrote: Chaps, Any objections to me renaming sites to examples? Moreover, I want to move some of these so called examples to be archetypes

[Lift] Re: Codebase Organization...

2009-08-26 Thread Timothy Perrett
. Cheers, Indrajit On Aug 26, 2:59 pm, Timothy Perrett timo...@getintheloop.eu wrote: To clarify, only some of the examples will become archetypes... Not all. On 26/08/2009 10:39, Timothy Perrett timo...@getintheloop.eu wrote: Chaps, Any objections to me renaming sites to examples

[Lift] Re: XHTML gotchas

2009-08-26 Thread Timothy Perrett
Looks right to me - what w3c validation did you have in mind? On 26/08/2009 16:20, David Pollak feeder.of.the.be...@gmail.com wrote: Is this right?  Is it worthwhile to add W3C validation when these constructs are allowed by browsers? --~--~-~--~~~---~--~~

[Lift] Re: XHTML gotchas

2009-08-26 Thread Timothy Perrett
Right, and even if this were the case we already provide a mechanism for users to set the output DocType so one could just read that and change validation mode or whatever. Validation sounds like a good idea to me. Regarding templates i've also been meaning to make a XSLT that smashes together

[Lift] Re: Modularization of Lift code

2009-08-26 Thread Timothy Perrett
Hey Glenn, I actually don't use those features in my libs... For reasons I wont go into that's just not what my kind of work involves... So I cant really comment from experience im afraid. Cheers, Tim On 26/08/2009 18:13, glenn gl...@exmbly.com wrote: Timothy, I'm still not convinced

[Lift] Re: Lift Record Documentation

2009-08-26 Thread Timothy Perrett
Its not the primary ORM at the moment. Although, its developing, and its still simply awesome if you are not using JDBC storage. If you just need regular JDBC style connectivity, then use Mapper for now. Cheers, Tim On 26/08/2009 19:01, inca incarn...@whiteants.net wrote: Is there any

[Lift] Re: Submit to different page

2009-08-25 Thread Timothy Perrett
Marius, So to clarify, your proposing: lift:MySnippet form=post action=??? Cheers, Tim On 25/08/2009 10:24, marius d. marius.dan...@gmail.com wrote: Well you can put a regular lift form that submits to itself in terms or URI, do the computation in your processing function and redirect-

[Lift] Re: Submit to different page

2009-08-25 Thread Timothy Perrett
Sounds good to me :-) On Aug 25, 11:06 am, marius d. marius.dan...@gmail.com wrote: Something like that yes. Of course if action is missing current behavior will apply. Br's, Marius On Aug 25, 12:34 pm, Timothy Perrett timo...@getintheloop.eu wrote: Marius, So to clarify, your

[Lift] Re: Submit to different page

2009-08-25 Thread Timothy Perrett
Ulises, Am I missing something? There is nothing stopping you making a URL like: /search?for=Some+Term You can do that as it stands today... Just read in the parameter using S.param(for) //= Box[String] Seems like this would be the easiest route, no? Cheers, Tim On 25/08/2009 11:15, Ulises

[Lift] Archetype Catalog on scala-tools.org

2009-08-25 Thread Timothy Perrett
Guys, Can we please add this plugin to the Nexus deployment on scala-tools? https://docs.sonatype.org/display/Nexus/Nexus+Archetype+Plugin Seems that if we use this, we could simply get rid of the the need to manually update the archetype-catalog.xml file - which is frankly out of date. DavidB

[Lift] Re: Submit to different page

2009-08-25 Thread Timothy Perrett
Right, I agree we should do it - but I don't think its what he needs for this problem (it seems overkill) Cheers, Tim On 25/08/2009 12:33, marius d. marius.dan...@gmail.com wrote: Sure this is totally doable but I think we should be able to support the case above where a form can submit

[Lift] Re: Submit to different page

2009-08-25 Thread Timothy Perrett
So you have everything you need now? Cheers, Tim On 25/08/2009 12:39, Ulises ulises.cerv...@gmail.com wrote: Indeed! I posted to the list because I wasn't sure whether what I wanted to do was doable or not ... Cheers, Ulises --~--~-~--~~~---~--~~

[Lift] Re: Menu.builder li_item being applied to all?

2009-08-25 Thread Timothy Perrett
Whenever I find myself having thoughts such as these its categorically time to start writing better tests ;-) Cheers, Tim On Aug 25, 9:55 pm, David Pollak feeder.of.the.be...@gmail.com wrote: I think I've fixed my bone-headed attempt to fix another issue.

[Lift] Re: JPA blank archetype

2009-08-24 Thread Timothy Perrett
Derek, Im currently reorganizing the lift archetype codebase as we speak, so I’ll look at it now... Cheers, Tim On 24/08/2009 23:03, Derek Chen-Becker dchenbec...@gmail.com wrote: OK, anyone with some maven-fu know what's going on here? It looks like the build is fine, but the jar is being

[Lift] Re: JPA blank archetype

2009-08-24 Thread Timothy Perrett
think I may have found the issue. I had a packaging element in the pom (none of the other archetypes do, as far as I can tell), so I've removed that and I'm doing a local build to see if that fixes it. Derek 2009/8/24 Timothy Perrett timo...@getintheloop.eu Derek, Im currently reorganizing

[Lift] Re: JPA blank archetype

2009-08-24 Thread Timothy Perrett
doing a local build to see if that fixes it. Derek 2009/8/24 Timothy Perrett timo...@getintheloop.eu Derek, Im currently reorganizing the lift archetype codebase as we speak, so I’ll look at it now... Cheers, Tim On 24/08/2009 23:03, Derek Chen-Becker dchenbec...@gmail.com

[Lift] Re-factored Archetypes

2009-08-24 Thread Timothy Perrett
hopefully Git will be able to figure out a sane merge. Derek 2009/8/24 Timothy Perrett timo...@getintheloop.eu Doh... I see you already committed it... (obviously didn’t see my other post); I’ll attempt to do a merge with my local reorganized and fixed archetypes. Tim On 24/08

[Lift] Re: Problem building my app in Windows

2009-08-23 Thread Timothy Perrett
Have you tried using the windows installer? Cheers, Tim On Aug 23, 6:08 am, DFectuoso santiago1...@gmail.com wrote: Hi, i have been working in linux and mac and having a wonderful time with mvn and everything lift's got to offer =). Sadly i want to teach lift to a person who uses Windows as

[Lift] Re: alternate webroot using Boot?

2009-08-23 Thread Timothy Perrett
Personally id do something a little more complex than have a sink url like /content/ :-) Cant you just write a regex to match various types of static content so its transparently served by NGINX irrespective of resource path? Of course, there are a few exceptions like liftAjax.js, but for the

[Lift] Re: Structuring Web Application

2009-08-23 Thread Timothy Perrett
Can you please be more specific about your app tier that you wish to access - im unfortunately not seeing what hurdle stops you from accessing it just as you would from Java? Cheers, Tim On Aug 22, 9:45 pm, greekscala hellectro...@gmail.com wrote: Hello Lift Community, I want to implement a

[Lift] Re: Include build # in LiftVersion?

2009-08-23 Thread Timothy Perrett
GIT:http://jira.codehaus.org/browse/MOJO-1199. However, Maven plugin for lift activities (creating boilerplate codes - like model, snippet etc.) could be interesting. /Indrajit On Aug 21, 11:51 pm, Timothy Perrett timo...@getintheloop.eu wrote: Perhaps its worth going to market

[Lift] Lift Wizard

2009-08-21 Thread Timothy Perrett
Hey all, I guess im mainly asking this to DPP, as the wizard is his baby, but have you (or do you) intend to make more progress on this soon? Its something that interests me a great deal and i'd like to discuss / help out if possible. Cheers, Tim

[Lift] Re: Include build # in LiftVersion?

2009-08-21 Thread Timothy Perrett
Perhaps its worth going to market (as it were) to check that there is either no single solution, nor a number of other solutions (mojos) that we could string together to get what we want? Im not sure that the effort involved in making our own is warranted given the output... Perhaps someone in

[Lift] Re: lift:with-params deprecation alternatives

2009-08-20 Thread Timothy Perrett
Can I just make an objection to calling it insert - IMO, that's a conflict with the language semantic of embed - I agree with-param is not ideal, but im not sure that insert is ideal either. I also agree with marius, what would you suggest to resolve this issue? I tried to post yesterday but it

[Lift] Re: lift:with-params deprecation alternatives

2009-08-20 Thread Timothy Perrett
other toes. Br's, Marius On Aug 20, 4:34 pm, Timothy Perrett timo...@getintheloop.eu wrote: Can I just make an objection to calling it insert - IMO, that's a conflict with the language semantic of embed - I agree with-param is not ideal, but im not sure that insert is ideal either. I also

[Lift] Re: Relax method scope

2009-08-19 Thread Timothy Perrett
Committed - I also added a dirty_? : Boolean method to Field.scala Cheers, Tim On Aug 18, 6:38 pm, David Pollak feeder.of.the.be...@gmail.com wrote: It's okay to relax it... maybe even make it public. On Tue, Aug 18, 2009 at 8:57 AM, Timothy Perrett timo...@getintheloop.euwrote

[Lift] Re: lift:with-params deprecation alternatives

2009-08-19 Thread Timothy Perrett
Its actually not deprecated! We did deprecate it for a while, then straight away un-deprecated it because people wanted it. So you can use it without any problems or concerns... Cheers, Tim On 19/08/2009 08:55, inca incarn...@whiteants.net wrote: As suggested in

[Lift] Re: CMS for Lift?

2009-08-18 Thread Timothy Perrett
Just my two cents, but I wouldn't use the lift namespace... If you use the lift tags OOTB, you risk designers shoving lots of comet actors on a single page. You would get more granular control if you created a special set of tags: cms:something .. / Cheers, Tim On 18/08/2009 23:00, Ewan

[Lift] Re: How do I add jar files to my app?

2009-08-17 Thread Timothy Perrett
You can specify this in maven, but make sure you set the scope: scopeprovided/scope Cheers, Tim On 17/08/2009 15:04, marius d. marius.dan...@gmail.com wrote: The JDBC driver should not be in the applications class-path (WEB-INF/ lib) but in container's classpath. Say jetty's lib folder.

[Lift] Re: makeUtf8 and HttpServletRequest broken in new build???

2009-08-17 Thread Timothy Perrett
I think his point is that he wants it added by default, rather than there is any problem. Personally, I don¹t see the point of adding it by default... But hey. On this note, I¹ve been thinking of perhaps having a re-shuffle in the code base to group the archetypes together in a module and add a

[Lift] Re: Deploying

2009-08-17 Thread Timothy Perrett
I run several sizable applications with NGINX and Jetty... Works like a dream. On 17/08/2009 18:55, Peter Robinett pe...@bubblefoundry.com wrote: I know David likes running Nginx in front of Jetty --~--~-~--~~~---~--~~ You received this message because

[Lift] Re: makeUtf8 and HttpServletRequest broken in new build???

2009-08-17 Thread Timothy Perrett
They would still output the same of course ­ I just see a need for a few more starting points and I don¹t want to clutter the main codebase so a little bit of housekeeping is in order :-) Cheers, Tim On 17/08/2009 23:43, David Pollak feeder.of.the.be...@gmail.com wrote: As long as you don't

[Lift] Re: CMS for Lift?

2009-08-16 Thread Timothy Perrett
Short answer: no. Long answer: There are a couple of efforts in progress, but this are early, early stages (not even runnable code). Cheers, Tim On Aug 16, 7:08 am, philip philip14...@gmail.com wrote: Hi, Has anyone made a CMS for Liftweb? or I should say, in liftweb. Thanks, Philip

[Lift] Re: CMS for Lift?

2009-08-16 Thread Timothy Perrett
I think Akka / GoatRodeo will make building such developments with Lift even more compelling thanks to persistence systems like Cassandra. @Glenn - is your project public? Cheers, Tim On 16/08/2009 19:13, glenn gl...@exmbly.com wrote: Philip, I'm working on a cms system in Lift. Right

[Lift] Re: ws-generated code in lift

2009-08-15 Thread Timothy Perrett
and sharing of experience. i'm in a situation where i'm working with legacy stuff. i was just wondering how deeply into lift i could push the WSDL-based Java handlers. Best wishes, --greg On Fri, Aug 14, 2009 at 2:54 PM, Timothy Perrett timo...@getintheloop.euwrote: I agree with Viktor

[Lift] Re: ws-generated code in lift

2009-08-15 Thread Timothy Perrett
that I'll be able to tell in a week or so... integrating WS into Lift (rather than running on the side) will, I think, have benefits. On Sat, Aug 15, 2009 at 9:45 AM, Timothy Perrett timo...@getintheloop.euwrote: Sounds like a classic situation what is technically possible is one thing

[Lift] Re: ws-generated code in lift

2009-08-14 Thread Timothy Perrett
I agree with Viktor - in a similar vein, this is exactly what I implemented with Akka; the servlet runs in conjunction with lifts filter and lift just hands off stuff it doesnt know what to do with. So if you want to use AxisServlet or whatever its real easy. From my point of view, you'd need a

[Lift] Re: any idea when we can cut a 1.1-M5 release?

2009-08-13 Thread Timothy Perrett
To what end? Not a lot of code has gone in since the 1.1-m4 Cheers, Tim On 13/08/2009 10:59, James Strachan james.strac...@gmail.com wrote: Now that the APIs have changed to abstract the servlet stuff, I'd really like a 1.1-M5 release. Anyone any objections to cutting one soon?

<    1   2   3   4   5   6   7   8   9   10   >