[Lift] Re: ajax-loader not showing?

2009-11-09 Thread CodeSlave9000

Is this in M7?  It wasn't mentioned in the release notes, and I'm not
sure I'm seeing it working...
Chris


On Nov 2, 6:20 pm, David Pollak feeder.of.the.be...@gmail.com wrote:
 Fixed

 On Sat, Oct 31, 2009 at 9:04 AM, Jeppe Nejsum Madsen je...@ingolfs.dkwrote:



  David Pollak feeder.of.the.be...@gmail.com writes:

   It's a bug.  Please file a ticket.

  Done.http://github.com/dpp/liftweb/issues/#issue/152

  /Jeppe

 --
 Lift, the simply functional web frameworkhttp://liftweb.net
 Beginning Scalahttp://www.apress.com/book/view/1430219890
 Follow me:http://twitter.com/dpp
 Surf the harmonics

--~--~-~--~~~---~--~~
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.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Re: How quick is webdev with Lift?

2009-11-09 Thread CodeSlave9000


Even without JRebel the cycle isn't that bad, especially if you don't
need to alter Snippets.  Often I'm only tweaking the xhtml, in which
case I don't even have to restart the server.
Chris


On Nov 8, 11:43 pm, harryh har...@gmail.com wrote:
 I use JRebel and SBT (http://code.google.com/p/simple-build-tool/) and
 very rarely have to restart my server when doing development.  It's a
 very quick dev-cycle.  No big tips really.  I save the code and reload
 the page and see the results of my work.

 -harryh

--~--~-~--~~~---~--~~
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.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] reCaptcha integration

2009-10-20 Thread CodeSlave9000

Hi - I think I'm following the rules in integrating reCaptcha into a
page, but I'm not seeing anything in the hidden fields when the form
is submitted.  Am I making some kind of assumption I shouldn't be? I'm
rather new to Lift (and web development), so something on the simple
example side would probably be best understood.

Here's some stuff I have:
(in html form)
script type='text/javascript' src='https://api-secure.recaptcha.net/
challenge?k=code here'
/script

noscript
iframe 
src=https://api-secure.recaptcha.net/noscript?k=code
here height=300 width=500 frameborder=0/iframebr/
textarea name=recaptcha_challenge_field rows=3 
cols=40
/textarea
u:captcha/
!-- input type=hidden 
name=recaptcha_response_field
value=manual_challenge/ --
/noscript

And in my snippet, the captcha is bound to:
captcha - SHtml.text(model.captcha.value, model.captcha.value = _,
type - hidden, name - recaptcha_response_field),

model.captcha.value is always empty after form submission.  Nothing
fancy here - just a regular form.
Thanks,
Chris



--~--~-~--~~~---~--~~
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.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Re: reCaptcha integration

2009-10-20 Thread CodeSlave9000

replying to myself a bit here - starting to figure some of this out:

  Turns out it doesn't submit the values in the form, but rather as
parameters to the submission.  I see I can get at those through
  S.param(recaptcha_challenge_field), etc.   This returns a Box
(Full), which I now need to figure out...  I suspect I need to do some
kind of matching on it...

On Oct 20, 12:09 pm, CodeSlave9000 ccebelen...@gmail.com wrote:
 Hi - I think I'm following the rules in integrating reCaptcha into a
 page, but I'm not seeing anything in the hidden fields when the form
 is submitted.  Am I making some kind of assumption I shouldn't be? I'm
 rather new to Lift (and web development), so something on the simple
 example side would probably be best understood.

 Here's some stuff I have:
 (in html form)
 script type='text/javascript' src='https://api-secure.recaptcha.net/
 challenge?k=code here'
                 /script

                 noscript
                         iframe 
 src=https://api-secure.recaptcha.net/noscript?k=code
 here height=300 width=500 frameborder=0/iframebr/
                         textarea name=recaptcha_challenge_field rows=3 
 cols=40
                         /textarea
                         u:captcha/
                         !-- input type=hidden 
 name=recaptcha_response_field
 value=manual_challenge/ --
                 /noscript

 And in my snippet, the captcha is bound to:
 captcha - SHtml.text(model.captcha.value, model.captcha.value = _,
 type - hidden, name - recaptcha_response_field),

 model.captcha.value is always empty after form submission.  Nothing
 fancy here - just a regular form.
 Thanks,
 Chris

--~--~-~--~~~---~--~~
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.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---