[Lift] Re: Is something up with applying By to a MappedBoolean?

2009-06-15 Thread E. Biggs
Any Ideas? I've tried distilling this down to just a most basic example: object BoolTest extends BoolTest with KeyedMetaMapper[Long, BoolTest] { override def dbTableName = "BoolTest" override def fieldOrder = id :: testField :: Nil } class BoolTest extends KeyedMapper[Long, BoolTest] { de

[Lift] links, menu items and mega user

2009-06-15 Thread mr revuza
Just getting started previewing Lift. It looks cool. The demos looks cool as does the todo sample. One thing I do not see is an example of doing a simple link to another page (ie. from page1.html adding an tag to page2.html). Is there an appropriate incantation to link to another page that is n

[Lift] Re: Cheap Hosting

2009-06-15 Thread Mark Lynn
Thanks. That is certainly very reasonable and VPS hosting is definitely a possibility. I guess what I am asking is whether there is shared hosting in the Java realm where you can also install Scala and LIft? I'm assuming the answer is not yet, but I thought I would ask. Mark Lynn On Jun 1

[Lift] Re: Cheap Hosting

2009-06-15 Thread David Pollak
On Mon, Jun 15, 2009 at 6:02 AM, Mark Lynn wrote: > > Thanks. That is certainly very reasonable and VPS hosting is definitely a > possibility. I guess what I am asking is whether there is shared hosting in > the Java realm where you can also install Scala and LIft? I'm assuming the > answer is no

[Lift] Re: Cheap Hosting

2009-06-15 Thread Jeremy Day
Mark, It is my understanding (and this could be incorrect, of course) that you can do whatever you want on a Slicehost Slice. You can install whatever Java applications you like. You have total control. Jeremy On Mon, Jun 15, 2009 at 8:02 AM, Mark Lynn wrote: > > Thanks. That is certainly ve

[Lift] Re: Cheap Hosting

2009-06-15 Thread Mark Lynn
David, Thanks for the links. I agree that $13/mo is not much of a difference, and I like being root as well. :) Mark Lynn On Jun 15, 2009, at 9:33 AM, David Pollak wrote: > > > On Mon, Jun 15, 2009 at 6:02 AM, Mark Lynn wrote: > > Thanks. That is certainly very reasonable and VPS hosting

[Lift] Re: Cheap Hosting

2009-06-15 Thread Mark Lynn
Jeremy, Thanks - I agree that you can do whatever you want on a Slicehost slice. I also would not mind supporting them since I've used some of their install guides when setting up servers elsewhere (in particular their Rails guides were very helpful at a time when Rails was a real nuisanc

[Lift] Re: Cheap Hosting

2009-06-15 Thread Tim Nelson
You might want to also look into Mosso's Cloud Servers. They use Slicehosts' technology (Slicehost was purchased by rackspace, which owns mosso), but don't package the bandwidth in the price. If you have small bandwidth needs, it will be a little cheaper. Another alternative is mor.ph. It is a PaaS

[Lift] Re: A few things about the lift installer

2009-06-15 Thread ph
Hello, I'm new to scala (and java) and I'm trying to start using lift. I have scala installed (2.7.5) and I've ran lift installer and that installed maven. Now I'm trying to create a new project and this don't work: mvn archetype:generate -DarchetypeCatalog=http://scala-tools.org/ [INFO] Scannin

[Lift] Re: A few things about the lift installer

2009-06-15 Thread ph
Hello, I new to scala/lift (and java). I'm trying to start using lift and I've installed scala (2.7.5) and ran lift installer that installed maven. Now I'm trying to create a lift project and getting error: mvn archetype:generate -DarchetypeCatalog=http://scala-tools.org/ [INFO] Scanning for pro

[Lift] Re: Cheap Hosting

2009-06-15 Thread Xavi Ramirez
Another host that's similar to slicehost is http://www.linode.com . Both cost 20$ a month, but you seem to get more bang per buck with linode (360mb vs 256mb of ram, 16GB vs 10Gb of storage, etc...). That said, I haven't personally tried linode, so I'm not sure how good the service is. -Xavi On

[Lift] Re: A few things about the lift installer

2009-06-15 Thread ph
and here is the trace: + Error stacktraces are turned on. [INFO] Scanning for projects... [INFO] Searching repository for plugin with prefix: 'archetype'. [INFO] Searching repository for plugin with prefix: 'http'. [INFO] [E

[Lift] Re: Cheap Hosting

2009-06-15 Thread Derek Williams
I haven't given it a try yet (although I plan to) and there seems to be more restrictions on what you can do on it, but as long as it is a low traffic site Google App Engine should be free. I believe there is an example site or two floating around using GAE. -- Derek Williams --~--~-~--~

[Lift] Develop / Production System

2009-06-15 Thread Tobias Daub
Hi There, I would like to know whats the best way to move an existing Lift installation from one system to another. I ask this, because I had some problems after I just copied the whole directory (I had to edit the pom.xml file and do "mvn clean install"). thanks --~--~-~--~~---

[Lift] scalajpa - while accessing two distincts databases, the second access is made with a connection to the first database

2009-06-15 Thread Jean-Luc
Hello, I have two databases, db1 (a.k.a. Motorbike) and db2 (a.k.a. Motorway) defined with RequestVarEM : - object ModelDb1 extends LocalEMF("db1") with RequestVarEM // Motorbike database - object ModelDb2 extends LocalEMF("db2") with RequestVarEM // Motorway database I thought one could acces

[Lift] [OT] Hiring Lift Developers

2009-06-15 Thread David LaPalomento
Hi all, My team has recently started a project based around Lift and we're looking at bringing on some passionate, full-time developers to make that happen. It's a pretty ambitious effort and we expect to be pushing the technology envelope in real-time communication (CometActors have already

[Lift] Re: [OT] Hiring Lift Developers

2009-06-15 Thread David Pollak
David, It is entirely appropriate (and heartily encouraged) to post job listing on this list. I look forward to seeing your project reach completion. Thanks, David On Mon, Jun 15, 2009 at 10:32 AM, David LaPalomento wrote: > Hi all, > > My team has recently started a project based around Lif

[Lift] Re: Lift Jquery autocomplete *** API CHANGE CANDIDATE ***

2009-06-15 Thread marius d.
Folks, I just made the autocomplete a Lift widget so it does not exist anymore in JqShtml object. Here is an example on how to use it: - For Ajax autocomplete AutoComplete("", (current, limit) => { println("current = " + current) (1 to limit).map(v => "Value_" + v) }, s => pr

[Lift] Re: Hiring Lift Developers

2009-06-15 Thread marius d.
Now that's a temptation :) Br's, Marius On Jun 15, 8:32 pm, "David LaPalomento" wrote: > Hi all, > My team has recently started a project based around Lift and we're looking at > bringing on some passionate, full-time developers to make that happen.  It's > a pretty ambitious effort and we ex

[Lift] Re: file upload

2009-06-15 Thread DavidV
I was able to find the code and have a program ready to parse the files as soon as I can upload them. I tried writing my own version of the code found here: http://github.com/dpp/liftweb/blob/dcc7b064a42832b06e4523d1a35351967d7a46b2/sites/example/src/main/webapp/file_upload.html but I got the fol

[Lift] Re: 3 question Lift quiz

2009-06-15 Thread David Persons
Anyone can help me on this one? Still stuck.. regards, David On Jun 14, 1:56 am, David Persons wrote: > Hello heavy lifters, > > After a couple of late night Lift play-around sessions I thought this > time I might as well ask the questions to you guys and get some > sleep :-) I use a model whic

[Lift] Re: Hiring Lift Developers

2009-06-15 Thread KWright
You forgot to mention where you are in the world, it might be useful to know... :P On 15 June, 18:32, "David LaPalomento" wrote: > Hi all, > My team has recently started a project based around Lift and we're looking at > bringing on some passionate, full-time developers to make that happen.  It

[Lift] Re: Cheap Hosting

2009-06-15 Thread Mark Lynn
I want to thank everyone that replied on this. Derek's suggestion of GAE is intriguing and I am at least going to check it out - I'm a little weary of that persistence situation with GAE since I don't have any experience with JDO or JPA. However, if GAE does not work out, I like the Mosso

[Lift] Getting Started Issue

2009-06-15 Thread Chris Lamey
Heya, I'm on Mac OS X 10.5 using Java 1.6.0_07 and Maven 2.0.10. I'm following the Getting Started guide here: http://liftweb.net/docs/getting_started/mod_master.html And am running into a maven issue with the first application: clameylt:~/tmp/lift > ./apache-maven-2.0.10/bin/mvn -e arche

[Lift] Re: Getting Started Issue

2009-06-15 Thread Chris Lamey
FYI - I had to specify the full name to get it to work: ./apache-maven-2.0.10/bin/mvn -e org.apache.maven.plugins:maven- archetype-plugin:2.0-alpha-4:generate -U - DarchetypeGroupId=net.liftweb -DarchetypeArtifactId=lift-archetype- blank -DarchetypeVersion=1.0 -DremoteRepositories=http://scala- t

[Lift] Re: Cheap Hosting

2009-06-15 Thread Jorge Ortiz
Another option is http://prgmr.com/xen/ You can get as much RAM as Slicehost for only $8/mo (but slightly less storage and data transfer). The support will be much more barebones, though. --j On Mon, Jun 15, 2009 at 2:01 PM, Mark Lynn wrote: > > I want to thank everyone that replied on this.

[Lift] Re: Hiring Lift Developers

2009-06-15 Thread David LaPalomento
Good point, sorry! Most of the team is located in the Boston area, but we'd probably be willing to make exceptions. On Jun 15, 4:14 pm, KWright wrote: > You forgot to mention where you are in the world, it might be useful > to know... :P > > On 15 June, 18:32, "David LaPalomento" > wrote: > >

[Lift] Re: Hiring Lift Developers

2009-06-15 Thread KWright
I suspect that London UK would probably be an exception too far! On 15 June, 23:45, David LaPalomento wrote: > Good point, sorry!  Most of the team is located in the Boston area, > but we'd probably be willing to make exceptions. > > On Jun 15, 4:14 pm, KWright wrote: > > > You forgot to mentio

[Lift]

2009-06-15 Thread Ewan
Hi all I have bind that renders a link and at the moment I want the link to include a couple of query params ie. Click me I figured I'd be able to do something like the following except the additional "key/id" is added which messes it up. "value" -> SHtml.link("/search?q1=v1", () => doSearch,

[Lift] Re:

2009-06-15 Thread Oliver Lambert
I don't think any of the Liftweb's binding is going to survive a server restart, but, why are you worried about a server restart? On Tue, Jun 16, 2009 at 8:59 AM, Ewan wrote: > > Hi all > > I have bind that renders a link and at the moment I want the link to > include a couple of query params ie

[Lift] Re: Hiring Lift Developers

2009-06-15 Thread Oliver Lambert
As probably is Sydney, Australia. It might be useful knowing where people are who are looking for jobs - the company I work for is small, but, might be interested in hiring sometime in the future. On Tue, Jun 16, 2009 at 8:51 AM, KWright wrote: > > I suspect that London UK would probably be an e

[Lift] Re:

2009-06-15 Thread David Pollak
On Mon, Jun 15, 2009 at 3:59 PM, Ewan wrote: > > Hi all > > I have bind that renders a link and at the moment I want the link to > include a couple of query params ie. > > Click me > > I figured I'd be able to do something like the following except the > additional "key/id" is added which messes

[Lift] Re: Lift Jquery autocomplete *** API CHANGE CANDIDATE ***

2009-06-15 Thread Bryan.
Hi Marius, I just updated to the tip and got a build failure: [WARNING] /home/bryan/public-repos/git/liftweb/sites/example/src/main/ scala/net/liftweb/example/snippet/Ajax.scala:65: error: value autocomplete is not a member of object net.liftweb.http.jquery.JqSHtml [WARNING] "auto" -> J

[Lift] Re: Develop / Production System

2009-06-15 Thread Oliver Lambert
Maven stores project dependencies in a repository (by default, its called .m2). When you move a Lift application from one system to another, the repository on the new system may need to be updated, hence your requirement to do a "mvn clean install". Don't know what you changed on the pom.xml (if y

[Lift] Re: Hiring Lift Developers

2009-06-15 Thread David LaPalomento
As much as I'd love an excuse to fly out to London (or Sydney), you're right, it probably is a bit too much of a stretch :) On Jun 15, 6:51 pm, KWright wrote: > I suspect that London UK would probably be an exception too far! > > On 15 June, 23:45, David LaPalomento wrote: > > > Good point, sor

[Lift] Re: Cheap Hosting

2009-06-15 Thread Harshad RJ
Mark, Try VPSLink. http://vpslink.com/?ref=7J32ZZ The cheapest plan is about 6.6$ p/mo and you will get a discount of 10% if you use the above link (referral program). I have successfully run scala based servlets + postgresql db on it, with performance sufficient for my needs. I haven't tried

[Lift] Re: Hiring Lift Developers

2009-06-15 Thread Viktor Klang
Dang! No "Boston, Sweden" :( On Tue, Jun 16, 2009 at 3:02 AM, David LaPalomento wrote: > > As much as I'd love an excuse to fly out to London (or Sydney), you're > right, it probably is a bit too much of a stretch :) > > On Jun 15, 6:51 pm, KWright wrote: > > I suspect that London UK would proba

[Lift] Re: Lift Jquery autocomplete *** API CHANGE CANDIDATE ***

2009-06-15 Thread marius d.
yes yes yes ... entirely my bad as I missed that out ... I'll correct it very soon. Marius On Jun 16, 3:07 am, "Bryan." wrote: > Hi Marius, > > I just updated to the tip and got a build failure: > > [WARNING] /home/bryan/public-repos/git/liftweb/sites/example/src/main/ > scala/net/liftweb/exam