[Lift] Re: derby

2009-11-26 Thread opyate
these examples: http://wiki.github.com/opyate/yauser Good luck, Juan On Nov 26, 6:48 am, jack jack.wid...@gmail.com wrote: Could somebody point me to a quickstart or tutorial about how to use Derby with Lift? -- You received this message because you are subscribed to the Google Groups Lift group

[Lift] Re: overriding ConnectionManager.newSuperConnection

2009-11-24 Thread opyate
, opyate opy...@gmail.com wrote: Hello Lifters, I overrode newSuperConnection like so: --START--      object DBVendor extends ConnectionManager {        def newConnection(name: ConnectionIdentifier): Box[Connection] = {          try {            Class.forName(dbDriver

[Lift] Re: Empty Box exception in MetaMapper

2009-11-19 Thread opyate
PS reproducible issue created here: http://github.com/dpp/liftweb/issues/#issue/199 On Nov 13, 11:43 pm, David Pollak feeder.of.the.be...@gmail.com wrote: On Thu, Nov 12, 2009 at 9:08 PM, Jim McBeath goo...@j.jimmc.org wrote: Assuming I prune it down to an example that requires only a few

[Lift] MetaMapper trying to open Empty Box - best practice?

2009-11-18 Thread opyate
Hello Lifters, I'm overriding my model's primary key like so, because the id field is non-autoincrement: (taken from Derek's suggestion on http://groups.google.com/group/liftweb/browse_thread/thread/41650fc1eb0098bd/cd93612309878979?lnk=gstq=primary+key#) --START-- override def primaryKeyField

[Lift] Re: MetaMapper trying to open Empty Box - best practice?

2009-11-18 Thread opyate
, there is no easy way to see what the SQL is that is causing the problem. -- Jim On Wed, Nov 18, 2009 at 05:37:46AM -0800, opyate wrote: Date: Wed, 18 Nov 2009 05:37:46 -0800 (PST) From: opyate opy...@gmail.com To: Lift liftweb@googlegroups.com Subject: [Lift]MetaMappertrying to open Empty

[Lift] Re: MetaMapper trying to open Empty Box - best practice?

2009-11-18 Thread opyate
Issue created: http://github.com/dpp/liftweb/issues/#issue/199 The markdown went ballistic, and I don't know how to edit, but I'm sure the gist is communicated. Thanks guys! On Nov 18, 3:04 pm, opyate opy...@gmail.com wrote: I'll create the test app momentarily. Thanks Mr. Pollak - you're

[Lift] replay prevention tokens

2009-11-17 Thread opyate
Hello Lifters, Could someone please point out which part of the Lift code takes care of generating unique names for form elements? (I'll delve in in the interim) I'm bleeding edge at the moment (1.1-SNAPSHOT and mvn -U clean always) and since about an hour ago my login form doesn't render with

[Lift] Re: How to use Box

2009-11-17 Thread opyate
On Nov 12, 1:55 pm, Ferdinand Chan unique...@gmail.com wrote: Opyate, Thanks for the example. But my scala knowledge seems not good enough to understand it. Here's an excerpt from Box's Javadoc (http://scala-tools.org/scaladocs/ liftweb/1.0/net/liftweb/util/Box.html - this is v1.0 so I

[Lift] Re: replay prevention tokens

2009-11-17 Thread opyate
in net/liftweb/http/S.scala (lift-webkit). Cheers, Indrajit On 17/11/09 5:25 PM, opyate wrote: Hello Lifters, Could someone please point out which part of the Lift code takes care of generating unique names for form elements? (I'll delve in in the interim) I'm bleeding edge

[Lift] Re: replay prevention tokens

2009-11-17 Thread opyate
Ah, thanks Jeppe :-) I'll pop over to 1.1-SNAPSHOT later this week, then. On Nov 17, 1:45 pm, opyate opy...@gmail.com wrote: Thanks Indrajit. It could have very well been a code change introduced in the past day or so, because I reverted my POM to 1.1-M7 (from 1.1-SNAPSHOT) and all is fine

[Lift] overriding ConnectionManager.newSuperConnection

2009-11-17 Thread opyate
Hello Lifters, I overrode newSuperConnection like so: --START-- object DBVendor extends ConnectionManager { def newConnection(name: ConnectionIdentifier): Box[Connection] = { try { Class.forName(dbDriver) val dm =

[Lift] Re: How to use Box

2009-11-12 Thread opyate
Hey Ferdinand, Here are a couple of examples: import _root_.net.liftweb.common._ val boxExample: Box[Int] = Int = { case Full(x) = x case Empty = 0 } def boxExample2(boxedInt: Box[Int]): Int = { boxedInt.map({i = i }) openOr 0 } On Nov 12, 12:28 am, Naftoli

[Lift] Re: S.uri not including query params

2009-11-09 Thread opyate
Hello guys, I thought the purpose of loginRedirect was to be able to override where the newly logged-in user gets redirected to. I'm doing it like so, in model/User: loginRedirect(Full(/loadPrivateKey)) ..but it just goes to the page I accessed before I clicked on / user_mgt/login Is there

[Lift] multiple datasources and/or JNDI definitions

2009-10-21 Thread opyate
Hello Lift committers, I have a quick question about defining a datasource. I usually do it like this: DefaultConnectionIdentifier.jndiName = jdbc/myApp // use default internal Derby DB if there's not already a JNDI connection defined if (!DB.jndiJdbcConnAvailable_?) { // looks at

[Lift] Re: multiple datasources and/or JNDI definitions

2009-10-21 Thread opyate
will automatically handle retrieving the data source via JNDI if you specify a ConnectionIdentifier and you don't have a connection manager defined. Derek On Wed, Oct 21, 2009 at 10:38 AM, opyate opy...@gmail.com wrote: Hello Lift committers, I have a quick question about defining

[Lift] Re: Why the liftweb doesn't use mysql as the default database ?

2009-10-19 Thread opyate
Hi Neil, Lift as a web framework is agnostic of the underlying database type. That allows you, the developer, to choose which database type to use, e.g. PostgresQL (far superior ;-) or even Oracle, MSSQL. Thanks, Juan On Oct 19, 9:10 am, Neil.Lv anim...@gmail.com wrote: Hi all,    Why the

[Lift] reverse-Schemifier: generating BaseMapper instances from schema/SQL/JPA

2009-10-19 Thread opyate
Hello Lifters, Related: http://groups.google.com/group/liftweb/browse_thread/thread/20051762b58f0083/b3329f33e8f3dc73?lnk=gstq=existing+database#b3329f33e8f3dc73 I would like to generate (at run-time) BaseMapper instances of a schema. I know I can generate the JPA beans from a schema (using

[Lift] Re: How much Scala knowledge is needed to start coding a simple blog with Lift?

2009-10-15 Thread opyate
, in a nutshell: learn the Scala basics, and get your hands dirty. Open a console and faff about, then start writing apps! :-) What I've done so far can be found here: http://github.com/opyate/Ken http://github.com/opyate/yauser Happy coding! Juan On Oct 15, 6:07 am, ngocdaothanh ngocdaoth...@gmail.com

[Lift] Re: how to add DatePicker?

2009-10-08 Thread opyate
Hi Tweek, Have a look at the pocketchangeapp example: http://github.com/tjweir/pocketchangeapp/ Regards, Juan On Oct 8, 11:43 am, Tweek d.sztwio...@gmail.com wrote: Hi. I'm totally beginer in Lift and i've never used JQuery. Can Anybody tell me how to add DatePicker to my DateTime field in

[Lift] Re: RESTful JSON server that supports jQuery or JSONP callback

2009-10-07 Thread opyate
Hey guys, I managed to build in callback support, and I draw your attention to the implementation here: http://github.com/opyate/Ken/blob/master/ken-server/src/main/scala/com/opyate/ken/lib/API.scala Excerpt: snip override def dispatch: LiftRules.DispatchPF = { // modify the returned

[Lift] Re: RESTful JSON server that supports jQuery or JSONP callback

2009-10-06 Thread opyate
Sorry - APIResponse code not borrowed from skittr, but ESME (http:// incubator.apache.org/esme/) Thus, depending on your call's extension (.json or .xml) you can serve the response in the required format. Anyhoo, back to the question... :-) Thanks, Juan On Oct 6, 5:48 pm, Juan M Uys

[Lift] Re: ProtoUser superUser versus Role

2009-09-26 Thread opyate
I have a bad habit of posting before investigating. net.liftweb.http.auth.AuthRole ...does exactly what I need. Thanks guys! On Sep 25, 5:12 pm, Juan M Uys opy...@gmail.com wrote: Hello, I'm implementing a Role in my model to ultimately replace the functionality provided by