[Lift] Re: scaladocs

2009-12-01 Thread E. Biggs
hi, thanks.. i'm looking for the API documentation??? On Dec 1, 5:08 pm, Ross Mellgren wrote: > Tryhttp://scala-tools.org/mvnsites-snapshots/liftweb/instead of with > index.html > > -Ross > > On Dec 1, 2009, at 8:01 PM, E. Biggs wrote: > > > > > shouldhtt

[Lift] scaladocs

2009-12-01 Thread E. Biggs
should http://scala-tools.org/mvnsites-snapshots/liftweb/scaladocs/index.html be something other than nothing? Is there a better way to get snapshot scaladocs? -- You received this message because you are subscribed to the Google Groups "Lift" group. To post to this group, send email to lift...

[Lift] Re: 1.1-SNAPSHOT issue?

2009-08-27 Thread E. Biggs
Many thanks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Lift" group. To post to this group, send email to liftweb@googlegroups.com To unsubscribe from this group, send email to liftweb+unsubscr...@googlegroups

[Lift] Re: 1.1-SNAPSHOT issue?

2009-08-27 Thread E. Biggs
Inner // <![CDATA[ jQuery(document).ready(function() {liftAjax.lift_successRegisterGC ();}); var lift_page = "F9839766178183WH"; // ]]> On Aug 26, 9:58 pm, David Pollak wrote: > On Wed, Aug 26, 2009 at 8:32 PM, E. Biggs wrote: > > > Thanks David! My

[Lift] Re: 1.1-SNAPSHOT issue?

2009-08-26 Thread E. Biggs
f the > xsd cannot be loaded. > > On Wed, Aug 26, 2009 at 7:39 PM, Justin Reardon > wrote: > > > > > > > > > Probably caused by this if you're in a dev environment: > >http://groups.google.com/group/liftweb/t/90750187a6c29c2c > > > On Au

[Lift] 1.1-SNAPSHOT issue?

2009-08-26 Thread E. Biggs
Hi there, I just did a mvn -U jetty:run and my site that I know was working fine before is now broken with this error displayed in the browser for any url: org.xml.sax.SAXParseException: schema_reference.4: Failed to read schema document 'http://www.w3.org/2002/08/xhtml/xhtml1- transitional.xsd

[Lift] Re: Mega*ProtoUser extensibility - a suggestion.

2009-08-05 Thread E. Biggs
it's easier to copy the > MegaProtoUser code into your own User class and go from there. > > > > > > On Tue, Aug 4, 2009 at 10:27 AM, E. Biggs wrote: > > > I have extended Mega*ProtoUser to achieve cookie-based perpetual > > login..  and it was fairly easy to d

[Lift] Re: Mega*ProtoUser extensibility - a suggestion.

2009-08-04 Thread E. Biggs
serId, and currentUser? > > --------- > > E. Biggs wrote: > > I have extended Mega*ProtoUser to achieve cookie-based perpetual > login..  and it was fairly easy to do except I ended up having to do > something hackish simply because there are two

[Lift] Mega*ProtoUser extensibility - a suggestion.

2009-08-04 Thread E. Biggs
I have extended Mega*ProtoUser to achieve cookie-based perpetual login.. and it was fairly easy to do except I ended up having to do something hackish simply because there are two private object members in the class that are core to the functionality I've extended. Namely: private object curUse

[Lift] Re: Interrupting sleeping actors on ctrl-c

2009-08-02 Thread E. Biggs
Ah good advice and analysis guys, thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Lift" group. To post to this group, send email to liftweb@googlegroups.com To unsubscribe from this group, send email to lif

[Lift] Re: Interrupting sleeping actors on ctrl-c

2009-08-01 Thread E. Biggs
t repeats the process > > Br's, > Marius > > On Aug 1, 3:40 pm, "E. Biggs" wrote: > > > > > attn beautiful, generous lift gurus, > > > I've spawned off a scheduling actor that spend most of its time > > asleep; it just wakes up to tel

[Lift] Interrupting sleeping actors on ctrl-c

2009-08-01 Thread E. Biggs
attn beautiful, generous lift gurus, I've spawned off a scheduling actor that spend most of its time asleep; it just wakes up to tell another actor when to do things i.e: actor{ loop{ sleep( an hour ); mainActor ! "do something" }}. Works like a champ except for one thing: jetty can't get clobber

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

2009-06-19 Thread E. Biggs
an indication at this point that somebody cares about this besides me would be like gold At this point, I'm assuming it's a bug and am fumbling through the mapping code which is taking me a bit of time to understand --~--~-~--~~~---~--~~ You received this

[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] Re: Is something up with applying By to a MappedBoolean?

2009-06-04 Thread E. Biggs
eIdling(Unknown Source) at scala.actors.FJTaskRunner.run(Unknown Source) Cleanup action completed On Jun 3, 12:46 am, Timothy Perrett wrote: > Is there an exception? If so could you post the entire trace? > > Cheers, Tim > > On Jun 3, 3:24 am, "E. Biggs"

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

2009-06-02 Thread E. Biggs
When I try to apply By to a MappedBoolean like so: Table.findAll(By(Table.booleanField, false)); derby is unhappy and bombs out on some sql with this kind of where clause: WHERE Table.booleanfield = ? Is this a bug or am I doing something wrong? I'm using 1.1-SNAPSHOT --~--~-~--~~-

[Lift] Re: Firefox issue: anybody seen this?

2009-01-19 Thread E. Biggs
Jan 19, 10:04 am, "Charles F. Munat" wrote: > I use Google maps (but very basically) on several sites with lift using > XHTML 1.1 with no problem. What is it hassling you with? > > Chas. > > E. Biggs wrote: > > Hey thanks for the suggestions..  although I

[Lift] Re: Firefox issue: anybody seen this?

2009-01-19 Thread E. Biggs
Hey thanks for the suggestions.. although I figured out what my problem is and it's a bit frustrating... What happened was that lift, as you probably know is all about xhtml.. which is incompatible with google maps (supposedly because it doesn't support document.write or something supposedly?) S

[Lift] Firefox issue: anybody seen this?

2009-01-19 Thread E. Biggs
Hello, So I'm getting an error on liftajax.js() [Line 110] in firefox saying "jQuery is not defined." I'm puzzled because it works just fine safari, and the AJAX Samples on demo.liftweb.net works fine for me in firefox - and the order the scripts are included in the head are the same as my code