Re: [Lift] [ANN] Lift 1.1-M8

2009-12-15 Thread Jim McBeath
It looks like the source jars are missing from the M8 repository, at least for some of the libraries (for example, http://scala-tools.org/repo-releases/net/liftweb/lift-util/1.1-M8/). Are these perhaps located somewhere else now? Or do they typically get added a bit later? -- Jim On Mon, Dec

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

2009-11-18 Thread Jim McBeath
Juan, I ran into this same bug. I have not yet had time to put together a test app to demonstrate it. That's on my to-do list, but if you get to it first, that would be great. Re not seeing the INSERT statement in your log file: the SQL is only logged after it is executed, and the log info

[Lift] Empty Box exception in MetaMapper

2009-11-12 Thread Jim McBeath
When I try to save a record in my table from the Create form built by CRUDify, I am getting a Trying to open an empty Box exception from within MetaMapper.scala, line 617 (in 1.1M7), which is this line: findApplier(indexMap.open_!, rs.getObject(1)) match { It appears that indexMap is

[Lift] Re: Empty Box exception in MetaMapper

2009-11-12 Thread Jim McBeath
Pollak feeder.of.the.be...@gmail.com To: liftweb@googlegroups.com Subject: [Lift] Re: Empty Box exception in MetaMapper If you can create a reproducible case, we're look into it. On Thu, Nov 12, 2009 at 5:43 PM, Jim McBeath goo...@j.jimmc.org wrote: When I try to save

[Lift] Re: New Milestone coming soon

2009-11-11 Thread Jim McBeath
OracleDriver doesn't work with CRUDify when attempting to view a list of entries, it gets an SQL error due to use of LIMIT/OFFSET, which Oracle does not support. Defining brokenLimit_? = true in OracleDriver makes it work for me. I can do this myself by including my own copy of Driver.scala, so

[Lift] Re: CRUDify view pages not working correctly

2009-11-03 Thread Jim McBeath
I have not added anything that seems unusual to me. My code looks just like what I have listed below except for the table and column names. I am putting Foo.menus into another menu in the SiteMap, that part seems to be working properly. I have some other tables that reference this one as a

[Lift] Re: CRUDify view pages not working correctly

2009-11-03 Thread Jim McBeath
, 2009 at 8:34 AM, Jim McBeath goo...@j.jimmc.org wrote: I have not added anything that seems unusual to me. My code looks just like what I have listed below except for the table and column names. I am putting Foo.menus into another menu in the SiteMap, that part seems

[Lift] CRUDify view pages not working correctly

2009-11-02 Thread Jim McBeath
I have recently started using Lift (1.1-M6) to create a simple data editing application. I have a small table with a char(1) key column (on which I set dbDisplay_? to true) and a name column for which I created mapper code following the sample in the Exploring Lift book. When my app displays the