[Lift] Re: Disabling the lift auto-reload on webapp restart?

2009-07-20 Thread Timothy Perrett

@ellis,

I too found this annoying, thats why I use java rebel as the classes
are just replaced wholesale dynamically while the container is running
- no need for a restart (unless its a major class change that it is
unable to swap out).

Cheers, Tim

On Jul 20, 10:32 am, Ellis  wrote:
> > Third, if you want the issue resolved, please open a ticket.
>
> Done
>
> On Jul 16, 6:27 pm, David Pollak 
> wrote:
>
>
>
> > On Thu, Jul 16, 2009 at 3:20 AM, Ellis  wrote:
>
> > > > liftweb auto-reinjects it.
>
> > > Hmm, I know it puts some extra code in, but I stopped the auto-loading
> > > a few weeks ago by just editing the template file...
>
> > > Another possibility is to tell lift not to use jQuery.  It's just a
> > > single command you need to put in Boot.scala, but I don't remember it
> > > off-hand.  It's described in the jQuery section of David's "Exploring
> > > Lift" book, which you can download online.
>
> > First, I didn't write Exploring Lift... better authors than me wrote it.
>
> > Second, don't toss jQuery... it's not jQuery that's causing the problem.
> > Lift has built in GC and Comet support.  One of the two of those is causing
> > the problem that's you are experiencing.  If you pull jQuery, you'll just
> > break a bunch of your application (and Lift puts in jQuery, or YUI or
> > whatever Ajax library you've designated automatically in rendered pages
> > unless you affirmatively disable GC and do not include Comet components in
> > the page.)
>
> > Third, if you want the issue resolved, please open a ticket.
>
> > > On Jul 15, 4:31 pm, fbettag  wrote:
> > > > liftweb auto-reinjects it.
>
> > > > On Jul 15, 2:27 pm, Ellis  wrote:
>
> > > > > This would interest me too.
>
> > > > > (but if you don't need jQuery, you can comment out the  tag
> > > > > in the template, e.g. templates-hidden/default.html)
>
> > > > > On Jul 15, 1:18 pm, fbettag  wrote:
>
> > > > > > The Auto-Reload feature done with jQuery really starts to get on my
> > > > > > nerves, i often find my self going back to the tab in my firefox and
> > > > > > trying to debug the last error i got via ajax in my firebug.. but
> > > it's
> > > > > > all gone thanks to the auto-reload.
>
> > > > > > Is there any way to turn it off?
>
> > --
> > Lift, the simply functional web frameworkhttp://liftweb.net
> > Beginning Scalahttp://www.apress.com/book/view/1430219890
> > Follow me:http://twitter.com/dpp
> > Git some:http://github.com/dpp
--~--~-~--~~~---~--~~
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: Disabling the lift auto-reload on webapp restart?

2009-07-20 Thread Ellis

> Third, if you want the issue resolved, please open a ticket.

Done


On Jul 16, 6:27 pm, David Pollak 
wrote:
> On Thu, Jul 16, 2009 at 3:20 AM, Ellis  wrote:
>
> > > liftweb auto-reinjects it.
>
> > Hmm, I know it puts some extra code in, but I stopped the auto-loading
> > a few weeks ago by just editing the template file...
>
> > Another possibility is to tell lift not to use jQuery.  It's just a
> > single command you need to put in Boot.scala, but I don't remember it
> > off-hand.  It's described in the jQuery section of David's "Exploring
> > Lift" book, which you can download online.
>
> First, I didn't write Exploring Lift... better authors than me wrote it.
>
> Second, don't toss jQuery... it's not jQuery that's causing the problem.
> Lift has built in GC and Comet support.  One of the two of those is causing
> the problem that's you are experiencing.  If you pull jQuery, you'll just
> break a bunch of your application (and Lift puts in jQuery, or YUI or
> whatever Ajax library you've designated automatically in rendered pages
> unless you affirmatively disable GC and do not include Comet components in
> the page.)
>
> Third, if you want the issue resolved, please open a ticket.
>
>
>
>
>
>
>
> > On Jul 15, 4:31 pm, fbettag  wrote:
> > > liftweb auto-reinjects it.
>
> > > On Jul 15, 2:27 pm, Ellis  wrote:
>
> > > > This would interest me too.
>
> > > > (but if you don't need jQuery, you can comment out the  tag
> > > > in the template, e.g. templates-hidden/default.html)
>
> > > > On Jul 15, 1:18 pm, fbettag  wrote:
>
> > > > > The Auto-Reload feature done with jQuery really starts to get on my
> > > > > nerves, i often find my self going back to the tab in my firefox and
> > > > > trying to debug the last error i got via ajax in my firebug.. but
> > it's
> > > > > all gone thanks to the auto-reload.
>
> > > > > Is there any way to turn it off?
>
> --
> Lift, the simply functional web frameworkhttp://liftweb.net
> Beginning Scalahttp://www.apress.com/book/view/1430219890
> Follow me:http://twitter.com/dpp
> Git some:http://github.com/dpp

--~--~-~--~~~---~--~~
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: Disabling the lift auto-reload on webapp restart?

2009-07-16 Thread David Pollak
On Thu, Jul 16, 2009 at 3:20 AM, Ellis  wrote:

>
> > liftweb auto-reinjects it.
>
> Hmm, I know it puts some extra code in, but I stopped the auto-loading
> a few weeks ago by just editing the template file...
>
> Another possibility is to tell lift not to use jQuery.  It's just a
> single command you need to put in Boot.scala, but I don't remember it
> off-hand.  It's described in the jQuery section of David's "Exploring
> Lift" book, which you can download online.
>

First, I didn't write Exploring Lift... better authors than me wrote it.

Second, don't toss jQuery... it's not jQuery that's causing the problem.
Lift has built in GC and Comet support.  One of the two of those is causing
the problem that's you are experiencing.  If you pull jQuery, you'll just
break a bunch of your application (and Lift puts in jQuery, or YUI or
whatever Ajax library you've designated automatically in rendered pages
unless you affirmatively disable GC and do not include Comet components in
the page.)

Third, if you want the issue resolved, please open a ticket.


>
>
> On Jul 15, 4:31 pm, fbettag  wrote:
> > liftweb auto-reinjects it.
> >
> > On Jul 15, 2:27 pm, Ellis  wrote:
> >
> >
> >
> > > This would interest me too.
> >
> > > (but if you don't need jQuery, you can comment out the  tag
> > > in the template, e.g. templates-hidden/default.html)
> >
> > > On Jul 15, 1:18 pm, fbettag  wrote:
> >
> > > > The Auto-Reload feature done with jQuery really starts to get on my
> > > > nerves, i often find my self going back to the tab in my firefox and
> > > > trying to debug the last error i got via ajax in my firebug.. but
> it's
> > > > all gone thanks to the auto-reload.
> >
> > > > Is there any way to turn it off?
>
> >
>


-- 
Lift, the simply functional web framework http://liftweb.net
Beginning Scala http://www.apress.com/book/view/1430219890
Follow me: http://twitter.com/dpp
Git some: http://github.com/dpp

--~--~-~--~~~---~--~~
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: Disabling the lift auto-reload on webapp restart?

2009-07-16 Thread Ellis

> liftweb auto-reinjects it.

Hmm, I know it puts some extra code in, but I stopped the auto-loading
a few weeks ago by just editing the template file...

Another possibility is to tell lift not to use jQuery.  It's just a
single command you need to put in Boot.scala, but I don't remember it
off-hand.  It's described in the jQuery section of David's "Exploring
Lift" book, which you can download online.


On Jul 15, 4:31 pm, fbettag  wrote:
> liftweb auto-reinjects it.
>
> On Jul 15, 2:27 pm, Ellis  wrote:
>
>
>
> > This would interest me too.
>
> > (but if you don't need jQuery, you can comment out the  tag
> > in the template, e.g. templates-hidden/default.html)
>
> > On Jul 15, 1:18 pm, fbettag  wrote:
>
> > > The Auto-Reload feature done with jQuery really starts to get on my
> > > nerves, i often find my self going back to the tab in my firefox and
> > > trying to debug the last error i got via ajax in my firebug.. but it's
> > > all gone thanks to the auto-reload.
>
> > > Is there any way to turn it off?

--~--~-~--~~~---~--~~
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: Disabling the lift auto-reload on webapp restart?

2009-07-15 Thread David Pollak
Please open a ticket for this feature at
http://github.com/dpp/liftweb/issues

On Wed, Jul 15, 2009 at 8:57 AM, Naftoli Gugenhem wrote:

>
> You could always launch jetty without maven...
> Are there options for maven-jetty-plugin?
>
> -
> fbettag wrote:
>
>
> liftweb auto-reinjects it.
>
> On Jul 15, 2:27 pm, Ellis  wrote:
> > This would interest me too.
> >
> > (but if you don't need jQuery, you can comment out the  tag
> > in the template, e.g. templates-hidden/default.html)
> >
> > On Jul 15, 1:18 pm, fbettag  wrote:
> >
> >
> >
> > > The Auto-Reload feature done with jQuery really starts to get on my
> > > nerves, i often find my self going back to the tab in my firefox and
> > > trying to debug the last error i got via ajax in my firebug.. but it's
> > > all gone thanks to the auto-reload.
> >
> > > Is there any way to turn it off?
>
>
> >
>


-- 
Lift, the simply functional web framework http://liftweb.net
Beginning Scala http://www.apress.com/book/view/1430219890
Follow me: http://twitter.com/dpp
Git some: http://github.com/dpp

--~--~-~--~~~---~--~~
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: Disabling the lift auto-reload on webapp restart?

2009-07-15 Thread Naftoli Gugenhem

You could always launch jetty without maven...
Are there options for maven-jetty-plugin?

-
fbettag wrote:


liftweb auto-reinjects it.

On Jul 15, 2:27 pm, Ellis  wrote:
> This would interest me too.
>
> (but if you don't need jQuery, you can comment out the  tag
> in the template, e.g. templates-hidden/default.html)
>
> On Jul 15, 1:18 pm, fbettag  wrote:
>
>
>
> > The Auto-Reload feature done with jQuery really starts to get on my
> > nerves, i often find my self going back to the tab in my firefox and
> > trying to debug the last error i got via ajax in my firebug.. but it's
> > all gone thanks to the auto-reload.
>
> > Is there any way to turn it off?


--~--~-~--~~~---~--~~
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: Disabling the lift auto-reload on webapp restart?

2009-07-15 Thread fbettag

liftweb auto-reinjects it.

On Jul 15, 2:27 pm, Ellis  wrote:
> This would interest me too.
>
> (but if you don't need jQuery, you can comment out the  tag
> in the template, e.g. templates-hidden/default.html)
>
> On Jul 15, 1:18 pm, fbettag  wrote:
>
>
>
> > The Auto-Reload feature done with jQuery really starts to get on my
> > nerves, i often find my self going back to the tab in my firefox and
> > trying to debug the last error i got via ajax in my firebug.. but it's
> > all gone thanks to the auto-reload.
>
> > Is there any way to turn it off?
--~--~-~--~~~---~--~~
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: Disabling the lift auto-reload on webapp restart?

2009-07-15 Thread Ellis

This would interest me too.

(but if you don't need jQuery, you can comment out the  tag
in the template, e.g. templates-hidden/default.html)


On Jul 15, 1:18 pm, fbettag  wrote:
> The Auto-Reload feature done with jQuery really starts to get on my
> nerves, i often find my self going back to the tab in my firefox and
> trying to debug the last error i got via ajax in my firebug.. but it's
> all gone thanks to the auto-reload.
>
> Is there any way to turn it off?

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---