I'm delighted to announce the immediate availability of another Lift book,"Lift Web Applications How-to".It is available from PACKT Publishing (http://www.packtpub.com/lift-web-applications/book) and retailers (http://amzn.to/XXpx8M) in electronic and paper format.The book is targeted towards developers keen on getting started with Lift development. It's a collection of tutorials that explain different aspects of Lift development, from setting up your (Eclipse) environment, to working with templates, snippets and selectors, to integrating with Bootstrap, MongoDB or Rogue.I want to thank Diego, Richard and Marius for reviewing the book! There was another reviewer who's name I don't know- thank you for your valuable feedback.Come forth and show yourself :)
--
--
Lift, the simply functional web framework: http://liftweb.net
Code: http://github.com/lift
Discussion: http://groups.google.com/group/liftweb
Stuck? Help us help you: https://www.assembla.com/wiki/show/liftweb/Posting_example_code
---
You received this message because you are subscribed to the Google Groups "Lift" group.
To unsubscribe from this group and stop receiving emails from it, send an email to liftweb+u...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Congratulations!
Diego
Sent from my android cell
--
--
Lift, the simply functional web framework: http://liftweb.net
Code: http://github.com/lift
Discussion: http://groups.google.com/group/liftweb
Stuck? Help us help you: https://www.assembla.com/wiki/show/liftweb/Posting_example_code
---
You received this message because you are subscribed to the Google Groups "Lift" group.
To unsubscribe from this group and stop receiving emails from it, send an email to liftweb+u...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
I think it's a great idea, specially if you keep them short (so we can skip thru some of them)
Diego
Sent from my android cell
I have finished Odersky's Functional Programming in Scala course a couple months ago, and I am a newbie to Lift. I want to apologize in advance for my newbie questions.Thanks for writing this book, I picked up the Kindle version 2 days ago on Amazon.There may be a better place to discuss book, but I will start here for lack of a better place.For now just for starters, I cannot get my application to look anything like yours in the book. I installed scala using Homebrew. I figured out how to remove 3.10 and install 2.9.1 as spec'd in the book../sbt seems to run. container:start gives me some warnings:> container:start[info] Compiling 23 Scala sources to /Users/tucker/develop/packt-lift-howto/lift_howto_9786_sql_tpl/target/scala-2.9.1/classes...[warn] there were 3 deprecation warnings; re-run with -deprecation for details[warn] there were 2 unchecked warnings; re-run with -unchecked for details[warn] two warnings found[info] jetty-7.6.0.v20120127[info] NO JSP Support for /, did not find org.apache.jasper.servlet.JspServlet[info] started o.e.j.w.WebAppContext{/,[file:/Users/tucker/develop/packt-lift-howto/lift_howto_9786_sql_tpl/src/main/webapp/]}968 [pool-6-thread-3] INFO net.liftweb.mapper.Schemifier - CREATE TABLE users (id BIGINT NOT NULL AUTO_INCREMENT , firstname VARCHAR(32) , lastname VARCHAR(32) , email VARCHAR(48) , locale VARCHAR(16) , timezone VARCHAR(32) , password_pw VARCHAR(48) , password_slt VARCHAR(20) , textarea VARCHAR(2048) , validated BOOLEAN , uniqueid VARCHAR(32) , superuser BOOLEAN)974 [pool-6-thread-3] INFO net.liftweb.mapper.Schemifier - ALTER TABLE users ADD CONSTRAINT users_PK PRIMARY KEY(id)980 [pool-6-thread-3] INFO net.liftweb.mapper.Schemifier - CREATE TABLE userpost (contents_c LONGVARCHAR , id BIGINT NOT NULL AUTO_INCREMENT , title VARCHAR(140) , userid BIGINT)981 [pool-6-thread-3] INFO net.liftweb.mapper.Schemifier - ALTER TABLE userpost ADD CONSTRAINT userpost_PK PRIMARY KEY(id)1100 [pool-6-thread-3] INFO net.liftweb.mapper.Schemifier - CREATE INDEX users_email ON users ( email )1105 [pool-6-thread-3] INFO net.liftweb.mapper.Schemifier - CREATE INDEX users_uniqueid ON users ( uniqueid )1108 [pool-6-thread-3] INFO net.liftweb.mapper.Schemifier - CREATE INDEX userpost_userid ON userpost ( userid )[info] Started SelectChann...@0.0.0.0:8080[success] Total time: 19 s, completed Feb 14, 2013 3:09:07 PMAny help would be appreciated.Greg