[Lift] Re: Tail merge?

2009-05-16 Thread marius d.

Done! ... very sorry about this.

On May 16, 8:23 pm, "marius d."  wrote:
> ooops .. checking it right now :(
>
> On May 16, 7:53 pm, David Pollak 
> wrote:
>
> > I think you missed a file during your checkin.  The Tail object is missing
> > :-(
>
> > On Sat, May 16, 2009 at 7:15 AM, marius d.  wrote:
>
> > > Folks,
>
> > > I just added  builtin snippet support. 

[Lift] Re: Tail merge?

2009-05-16 Thread marius d.

ooops .. checking it right now :(


On May 16, 7:53 pm, David Pollak 
wrote:
> I think you missed a file during your checkin.  The Tail object is missing
> :-(
>
>
>
> On Sat, May 16, 2009 at 7:15 AM, marius d.  wrote:
>
> > Folks,
>
> > I just added  builtin snippet support. 

[Lift] Re: Tail merge?

2009-05-16 Thread David Pollak
I think you missed a file during your checkin.  The Tail object is missing
:-(

On Sat, May 16, 2009 at 7:15 AM, marius d.  wrote:

>
> Folks,
>
> I just added  builtin snippet support. 

[Lift] Re: Tail merge?

2009-05-16 Thread marius d.

Folks,

I just added  builtin snippet support. 

[Lift] Re: Tail merge?

2009-05-11 Thread Viktor Klang
On Sun, May 10, 2009 at 10:39 PM, marius d.  wrote:

>
>
>
> On May 10, 10:08 pm, Viktor Klang  wrote:
> > What I've been noodling about for some time is to have dependency
> management
> > as a part of the framework. That could be easily obtained by having
> widgets
> > etc register their dependencies in a SessionVar[List[Dependency]] and
> then
> > simply add a DispatchPF to serve those dependencies as one package with
> the
> > separate GET.
>
> So what would this solve? ... I mean there is the ResourceServer used
> currently by widgets so that widget's dependencies to be served ...
> perhaps I'm missing something?


Nevermind; I'll see if I can make a PoC using ResourceServer.


>
>
> >
> > The downsides I've come up with are:
> >
> > * Adds a reasonable amount of complexity
> > * The order of the dependencies is hard to get right
> > * Premature optimization
> > * Moves away from idea to have JS libraries served by third party hosts
> > * Kind of defeats the purpose of caching JS
> >
> > Just my 2 cents,
> > Viktor
> >
> > On Sun, May 10, 2009 at 8:35 PM, Timothy Perrett  >wrote:
> >
> >
> >
> >
> >
> > > Yeah google analytics is a good use case. I think talking about
> > > smashing static files is off topic, but there is some value in having
> > > a tail merge for when you want to put stuff in just before the body
> > > tag. My only thinking right now is that why do we need a specific
> > > snippet to do this? Right now,  and  > > param> would work perfectly for this right?
> >
> > > Cheers, Tim
> >
> > > On May 10, 3:21 pm, "Bryan."  wrote:
> > > > A nice use for this "tail merge" would be for the Google Analytics
> > > > tracking code, especially the ecommerce tracking code.
> >
> > > > Here's something to keep an eye on as well:
> http://blog.digg.com/?p=621
> > > > -- still very new and in development.
> >
> > > > --Bryan
> >
> > > > On May 10, 9:57 am, David Pollak 
> > > > wrote:
> >
> > > > > On Sun, May 10, 2009 at 6:55 AM, marius d. <
> marius.dan...@gmail.com>
> > > wrote:
> >
> > > > > > People can choose to "smash" multiple js/css files into a single
> one,
> > > > > > in fact it is a common practice. However for scripts that can be
> > > > > > deferred putting them at the bottom of the page can improve
> > > rendering.
> >
> > > > > Okay.. so we're not actually putting the scripts on the page, we're
> > > just
> > > > > putting them right about the  tag?
> >
> > > > > > Br's,
> > > > > > Marius
> >
> > > > > > On May 10, 4:42 pm, David Pollak 
> > > > > > wrote:
> > > > > > > On Fri, May 8, 2009 at 5:26 PM, Timothy Perrett
> > >  > > > > > >wrote:
> >
> > > > > > > > Sounds like this could be a neat addition. Looking forward to
> see
> > > what
> > > > > > you
> > > > > > > > come up with :-)
> >
> > > > > > > I'm not 100% keen on it.  Loading a ton of stuff into the HTML
> page
> > > > > > (rather
> > > > > > > than having stuff cached by the browser) makes for larger page
> > > sizes.
> > > > > >  I'd
> > > > > > > much rather see a tool that would analyze the scripts and css
> that
> > > was
> > > > > > > included across lots of pages and recommending to the developer
> to
> > > make
> > > > > > 10
> > > > > > > CSS files or 20 script files into 1.  But that's just me.
> >
> > > > > > > > Cheers, Tim
> >
> > > > > > > > On 08/05/2009 20:19, "marius d." 
> > > wrote:
> >
> > > > > > > > > A  built in snippet might me a good addition. I
> > > could
> > > > > > > > > probably allocate some time to noodle on it.
> >
> > > > > > > > > Br's,
> > > > > > > > > Marius
> >
> > > > > > > > > On May 8, 5:05 pm, KWright 
> > > wrote:
> > > > > > > > >> It's becoming an established best practice that scripts
> should
> > > be
> > > > > > put
> > > > > > > > >> at the END of a page, where possible, in order to speed up
> > > download
> > > > > > > > >> times
> >
> > > > > > > > >> Good article here:
> > >http://developer.yahoo.com/performance/rules.html
> >
> > > > > > > > >> It would be nice if Lift could help encourage and support
> this
> > > by
> > > > > > > > >> allowing a  (or ?) element that could be
> > > merged in
> > > > > > > > >> the same fashion as the head element, perhaps also
> removing
> > > > > > > > >> duplicates, etc.
> >
> > > > > > > > >> This element would then disappear and expose only its
> content
> > > when
> > > > > > the
> > > > > > > > >> page is ultimately sent to the browser.
> >
> > > > > > > --
> > > > > > > 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
> >
> > > > > --
> > > > > 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
> >
> > --
> > Viktor Klang
> > Senior Systems Analyst
> >
>


-- 
Viktor Klang
Senior Systems Analyst


[Lift] Re: Tail merge?

2009-05-11 Thread marius d.



On May 10, 9:35 pm, Timothy Perrett  wrote:
> Yeah google analytics is a good use case. I think talking about
> smashing static files is off topic, but there is some value in having
> a tail merge for when you want to put stuff in just before the body
> tag. My only thinking right now is that why do we need a specific
> snippet to do this? Right now,  and  param> would work perfectly for this right?


Well it would work but but you have to explicitly put the bind in
there and for dynamic (potentially 3-rd party) views (such as widgets)
it get more awkward because a generic widget would have to know about
the application specific bind name. Of course the bind name could be
parameterized but this seems unsound to me here. Whereas 
seems to me a trivial thing to use essentially from any view, snippet
etc.

>
> Cheers, Tim
>
> On May 10, 3:21 pm, "Bryan."  wrote:
>
> > A nice use for this "tail merge" would be for the Google Analytics
> > tracking code, especially the ecommerce tracking code.
>
> > Here's something to keep an eye on as well:  http://blog.digg.com/?p=621
> > -- still very new and in development.
>
> > --Bryan
>
> > On May 10, 9:57 am, David Pollak 
> > wrote:
>
> > > On Sun, May 10, 2009 at 6:55 AM, marius d.  
> > > wrote:
>
> > > > People can choose to "smash" multiple js/css files into a single one,
> > > > in fact it is a common practice. However for scripts that can be
> > > > deferred putting them at the bottom of the page can improve rendering.
>
> > > Okay.. so we're not actually putting the scripts on the page, we're just
> > > putting them right about the  tag?
>
> > > > Br's,
> > > > Marius
>
> > > > On May 10, 4:42 pm, David Pollak 
> > > > wrote:
> > > > > On Fri, May 8, 2009 at 5:26 PM, Timothy Perrett 
> > > > >  > > > >wrote:
>
> > > > > > Sounds like this could be a neat addition. Looking forward to see 
> > > > > > what
> > > > you
> > > > > > come up with :-)
>
> > > > > I'm not 100% keen on it.  Loading a ton of stuff into the HTML page
> > > > (rather
> > > > > than having stuff cached by the browser) makes for larger page sizes.
> > > >  I'd
> > > > > much rather see a tool that would analyze the scripts and css that was
> > > > > included across lots of pages and recommending to the developer to 
> > > > > make
> > > > 10
> > > > > CSS files or 20 script files into 1.  But that's just me.
>
> > > > > > Cheers, Tim
>
> > > > > > On 08/05/2009 20:19, "marius d."  wrote:
>
> > > > > > > A  built in snippet might me a good addition. I could
> > > > > > > probably allocate some time to noodle on it.
>
> > > > > > > Br's,
> > > > > > > Marius
>
> > > > > > > On May 8, 5:05 pm, KWright  wrote:
> > > > > > >> It's becoming an established best practice that scripts should be
> > > > put
> > > > > > >> at the END of a page, where possible, in order to speed up 
> > > > > > >> download
> > > > > > >> times
>
> > > > > > >> Good article 
> > > > > > >> here:http://developer.yahoo.com/performance/rules.html
>
> > > > > > >> It would be nice if Lift could help encourage and support this by
> > > > > > >> allowing a  (or ?) element that could be merged 
> > > > > > >> in
> > > > > > >> the same fashion as the head element, perhaps also removing
> > > > > > >> duplicates, etc.
>
> > > > > > >> This element would then disappear and expose only its content 
> > > > > > >> when
> > > > the
> > > > > > >> page is ultimately sent to the browser.
>
> > > > > --
> > > > > 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
>
> > > --
> > > 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: Tail merge?

2009-05-10 Thread KWright

Been thinking about this more, just trying to explore where this idea
leads:

- Where tail merge would really shine is that a snippet could be
embedded inside a div tag, for example, but still have a tail pushed
to the end of the page body.
- Script entries in the head and tail blocks could be quickly analysed
and duplicate scripts removed.
- Possibly some additional elements/attributes on scripts inside head
and tail blocks could ultimately evolve into part of a richer
dependency management framework.

On May 10, 9:39 pm, "marius d."  wrote:
> On May 10, 10:08 pm, Viktor Klang  wrote:
>
> > What I've been noodling about for some time is to have dependency management
> > as a part of the framework. That could be easily obtained by having widgets
> > etc register their dependencies in a SessionVar[List[Dependency]] and then
> > simply add a DispatchPF to serve those dependencies as one package with the
> > separate GET.
>
> So what would this solve? ... I mean there is the ResourceServer used
> currently by widgets so that widget's dependencies to be served ...
> perhaps I'm missing something?
>
>
>
>
>
> > The downsides I've come up with are:
>
> > * Adds a reasonable amount of complexity
> > * The order of the dependencies is hard to get right
> > * Premature optimization
> > * Moves away from idea to have JS libraries served by third party hosts
> > * Kind of defeats the purpose of caching JS
>
> > Just my 2 cents,
> > Viktor
>
> > On Sun, May 10, 2009 at 8:35 PM, Timothy Perrett 
> > wrote:
>
> > > Yeah google analytics is a good use case. I think talking about
> > > smashing static files is off topic, but there is some value in having
> > > a tail merge for when you want to put stuff in just before the body
> > > tag. My only thinking right now is that why do we need a specific
> > > snippet to do this? Right now,  and  > > param> would work perfectly for this right?
>
> > > Cheers, Tim
>
> > > On May 10, 3:21 pm, "Bryan."  wrote:
> > > > A nice use for this "tail merge" would be for the Google Analytics
> > > > tracking code, especially the ecommerce tracking code.
>
> > > > Here's something to keep an eye on as well:  http://blog.digg.com/?p=621
> > > > -- still very new and in development.
>
> > > > --Bryan
>
> > > > On May 10, 9:57 am, David Pollak 
> > > > wrote:
>
> > > > > On Sun, May 10, 2009 at 6:55 AM, marius d. 
> > > wrote:
>
> > > > > > People can choose to "smash" multiple js/css files into a single 
> > > > > > one,
> > > > > > in fact it is a common practice. However for scripts that can be
> > > > > > deferred putting them at the bottom of the page can improve
> > > rendering.
>
> > > > > Okay.. so we're not actually putting the scripts on the page, we're
> > > just
> > > > > putting them right about the  tag?
>
> > > > > > Br's,
> > > > > > Marius
>
> > > > > > On May 10, 4:42 pm, David Pollak 
> > > > > > wrote:
> > > > > > > On Fri, May 8, 2009 at 5:26 PM, Timothy Perrett
> > >  > > > > > >wrote:
>
> > > > > > > > Sounds like this could be a neat addition. Looking forward to 
> > > > > > > > see
> > > what
> > > > > > you
> > > > > > > > come up with :-)
>
> > > > > > > I'm not 100% keen on it.  Loading a ton of stuff into the HTML 
> > > > > > > page
> > > > > > (rather
> > > > > > > than having stuff cached by the browser) makes for larger page
> > > sizes.
> > > > > >  I'd
> > > > > > > much rather see a tool that would analyze the scripts and css that
> > > was
> > > > > > > included across lots of pages and recommending to the developer to
> > > make
> > > > > > 10
> > > > > > > CSS files or 20 script files into 1.  But that's just me.
>
> > > > > > > > Cheers, Tim
>
> > > > > > > > On 08/05/2009 20:19, "marius d." 
> > > wrote:
>
> > > > > > > > > A  built in snippet might me a good addition. I
> > > could
> > > > > > > > > probably allocate some time to noodle on it.
>
> > > > > > > > > Br's,
> > > > > > > > > Marius
>
> > > > > > > > > On May 8, 5:05 pm, KWright 
> > > wrote:
> > > > > > > > >> It's becoming an established best practice that scripts 
> > > > > > > > >> should
> > > be
> > > > > > put
> > > > > > > > >> at the END of a page, where possible, in order to speed up
> > > download
> > > > > > > > >> times
>
> > > > > > > > >> Good article here:
> > >http://developer.yahoo.com/performance/rules.html
>
> > > > > > > > >> It would be nice if Lift could help encourage and support 
> > > > > > > > >> this
> > > by
> > > > > > > > >> allowing a  (or ?) element that could be
> > > merged in
> > > > > > > > >> the same fashion as the head element, perhaps also removing
> > > > > > > > >> duplicates, etc.
>
> > > > > > > > >> This element would then disappear and expose only its content
> > > when
> > > > > > the
> > > > > > > > >> page is ultimately sent to the browser.
>
> > > > > > > --
> > > > > > > Lift, the simply functional web frameworkhttp://liftweb.net
> > > > > > > Beginning Scalahttp://www.apress.com/book/view/1430219890
> > > > > > > Follow me:http://twitter.

[Lift] Re: Tail merge?

2009-05-10 Thread marius d.



On May 10, 10:08 pm, Viktor Klang  wrote:
> What I've been noodling about for some time is to have dependency management
> as a part of the framework. That could be easily obtained by having widgets
> etc register their dependencies in a SessionVar[List[Dependency]] and then
> simply add a DispatchPF to serve those dependencies as one package with the
> separate GET.

So what would this solve? ... I mean there is the ResourceServer used
currently by widgets so that widget's dependencies to be served ...
perhaps I'm missing something?

>
> The downsides I've come up with are:
>
> * Adds a reasonable amount of complexity
> * The order of the dependencies is hard to get right
> * Premature optimization
> * Moves away from idea to have JS libraries served by third party hosts
> * Kind of defeats the purpose of caching JS
>
> Just my 2 cents,
> Viktor
>
> On Sun, May 10, 2009 at 8:35 PM, Timothy Perrett 
> wrote:
>
>
>
>
>
> > Yeah google analytics is a good use case. I think talking about
> > smashing static files is off topic, but there is some value in having
> > a tail merge for when you want to put stuff in just before the body
> > tag. My only thinking right now is that why do we need a specific
> > snippet to do this? Right now,  and  > param> would work perfectly for this right?
>
> > Cheers, Tim
>
> > On May 10, 3:21 pm, "Bryan."  wrote:
> > > A nice use for this "tail merge" would be for the Google Analytics
> > > tracking code, especially the ecommerce tracking code.
>
> > > Here's something to keep an eye on as well:  http://blog.digg.com/?p=621
> > > -- still very new and in development.
>
> > > --Bryan
>
> > > On May 10, 9:57 am, David Pollak 
> > > wrote:
>
> > > > On Sun, May 10, 2009 at 6:55 AM, marius d. 
> > wrote:
>
> > > > > People can choose to "smash" multiple js/css files into a single one,
> > > > > in fact it is a common practice. However for scripts that can be
> > > > > deferred putting them at the bottom of the page can improve
> > rendering.
>
> > > > Okay.. so we're not actually putting the scripts on the page, we're
> > just
> > > > putting them right about the  tag?
>
> > > > > Br's,
> > > > > Marius
>
> > > > > On May 10, 4:42 pm, David Pollak 
> > > > > wrote:
> > > > > > On Fri, May 8, 2009 at 5:26 PM, Timothy Perrett
> >  > > > > >wrote:
>
> > > > > > > Sounds like this could be a neat addition. Looking forward to see
> > what
> > > > > you
> > > > > > > come up with :-)
>
> > > > > > I'm not 100% keen on it.  Loading a ton of stuff into the HTML page
> > > > > (rather
> > > > > > than having stuff cached by the browser) makes for larger page
> > sizes.
> > > > >  I'd
> > > > > > much rather see a tool that would analyze the scripts and css that
> > was
> > > > > > included across lots of pages and recommending to the developer to
> > make
> > > > > 10
> > > > > > CSS files or 20 script files into 1.  But that's just me.
>
> > > > > > > Cheers, Tim
>
> > > > > > > On 08/05/2009 20:19, "marius d." 
> > wrote:
>
> > > > > > > > A  built in snippet might me a good addition. I
> > could
> > > > > > > > probably allocate some time to noodle on it.
>
> > > > > > > > Br's,
> > > > > > > > Marius
>
> > > > > > > > On May 8, 5:05 pm, KWright 
> > wrote:
> > > > > > > >> It's becoming an established best practice that scripts should
> > be
> > > > > put
> > > > > > > >> at the END of a page, where possible, in order to speed up
> > download
> > > > > > > >> times
>
> > > > > > > >> Good article here:
> >http://developer.yahoo.com/performance/rules.html
>
> > > > > > > >> It would be nice if Lift could help encourage and support this
> > by
> > > > > > > >> allowing a  (or ?) element that could be
> > merged in
> > > > > > > >> the same fashion as the head element, perhaps also removing
> > > > > > > >> duplicates, etc.
>
> > > > > > > >> This element would then disappear and expose only its content
> > when
> > > > > the
> > > > > > > >> page is ultimately sent to the browser.
>
> > > > > > --
> > > > > > 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
>
> > > > --
> > > > 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
>
> --
> Viktor Klang
> Senior Systems Analyst
--~--~-~--~~~---~--~~
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: Tail merge?

2009-05-10 Thread Viktor Klang
What I've been noodling about for some time is to have dependency management
as a part of the framework. That could be easily obtained by having widgets
etc register their dependencies in a SessionVar[List[Dependency]] and then
simply add a DispatchPF to serve those dependencies as one package with the
separate GET.

The downsides I've come up with are:

* Adds a reasonable amount of complexity
* The order of the dependencies is hard to get right
* Premature optimization
* Moves away from idea to have JS libraries served by third party hosts
* Kind of defeats the purpose of caching JS

Just my 2 cents,
Viktor

On Sun, May 10, 2009 at 8:35 PM, Timothy Perrett wrote:

>
> Yeah google analytics is a good use case. I think talking about
> smashing static files is off topic, but there is some value in having
> a tail merge for when you want to put stuff in just before the body
> tag. My only thinking right now is that why do we need a specific
> snippet to do this? Right now,  and  param> would work perfectly for this right?
>
> Cheers, Tim
>
>
>
> On May 10, 3:21 pm, "Bryan."  wrote:
> > A nice use for this "tail merge" would be for the Google Analytics
> > tracking code, especially the ecommerce tracking code.
> >
> > Here's something to keep an eye on as well:  http://blog.digg.com/?p=621
> > -- still very new and in development.
> >
> > --Bryan
> >
> > On May 10, 9:57 am, David Pollak 
> > wrote:
> >
> >
> >
> > > On Sun, May 10, 2009 at 6:55 AM, marius d. 
> wrote:
> >
> > > > People can choose to "smash" multiple js/css files into a single one,
> > > > in fact it is a common practice. However for scripts that can be
> > > > deferred putting them at the bottom of the page can improve
> rendering.
> >
> > > Okay.. so we're not actually putting the scripts on the page, we're
> just
> > > putting them right about the  tag?
> >
> > > > Br's,
> > > > Marius
> >
> > > > On May 10, 4:42 pm, David Pollak 
> > > > wrote:
> > > > > On Fri, May 8, 2009 at 5:26 PM, Timothy Perrett
>  > > > >wrote:
> >
> > > > > > Sounds like this could be a neat addition. Looking forward to see
> what
> > > > you
> > > > > > come up with :-)
> >
> > > > > I'm not 100% keen on it.  Loading a ton of stuff into the HTML page
> > > > (rather
> > > > > than having stuff cached by the browser) makes for larger page
> sizes.
> > > >  I'd
> > > > > much rather see a tool that would analyze the scripts and css that
> was
> > > > > included across lots of pages and recommending to the developer to
> make
> > > > 10
> > > > > CSS files or 20 script files into 1.  But that's just me.
> >
> > > > > > Cheers, Tim
> >
> > > > > > On 08/05/2009 20:19, "marius d." 
> wrote:
> >
> > > > > > > A  built in snippet might me a good addition. I
> could
> > > > > > > probably allocate some time to noodle on it.
> >
> > > > > > > Br's,
> > > > > > > Marius
> >
> > > > > > > On May 8, 5:05 pm, KWright 
> wrote:
> > > > > > >> It's becoming an established best practice that scripts should
> be
> > > > put
> > > > > > >> at the END of a page, where possible, in order to speed up
> download
> > > > > > >> times
> >
> > > > > > >> Good article here:
> http://developer.yahoo.com/performance/rules.html
> >
> > > > > > >> It would be nice if Lift could help encourage and support this
> by
> > > > > > >> allowing a  (or ?) element that could be
> merged in
> > > > > > >> the same fashion as the head element, perhaps also removing
> > > > > > >> duplicates, etc.
> >
> > > > > > >> This element would then disappear and expose only its content
> when
> > > > the
> > > > > > >> page is ultimately sent to the browser.
> >
> > > > > --
> > > > > 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
> >
> > > --
> > > 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
> >
>


-- 
Viktor Klang
Senior Systems Analyst

--~--~-~--~~~---~--~~
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: Tail merge?

2009-05-10 Thread David Pollak
On Sun, May 10, 2009 at 7:02 AM, marius d.  wrote:

>
>
>
> On May 10, 4:57 pm, David Pollak 
> wrote:
> > On Sun, May 10, 2009 at 6:55 AM, marius d. 
> wrote:
> >
> > > People can choose to "smash" multiple js/css files into a single one,
> > > in fact it is a common practice. However for scripts that can be
> > > deferred putting them at the bottom of the page can improve rendering.
> >
> > Okay.. so we're not actually putting the scripts on the page, we're just
> > putting them right about the  tag?
>
> Yes ... for instance:
>
>
> 
>  
> 
>
> would yield:
>
>
> 
>   
>
>  
>
>
>  
> 
>
>
> At least this is what I'm referring to.


Okay.. that sounds good to me.


>
>
> >
> >
> >
> >
> >
> > > Br's,
> > > Marius
> >
> > > On May 10, 4:42 pm, David Pollak 
> > > wrote:
> > > > On Fri, May 8, 2009 at 5:26 PM, Timothy Perrett
>  > > >wrote:
> >
> > > > > Sounds like this could be a neat addition. Looking forward to see
> what
> > > you
> > > > > come up with :-)
> >
> > > > I'm not 100% keen on it.  Loading a ton of stuff into the HTML page
> > > (rather
> > > > than having stuff cached by the browser) makes for larger page sizes.
> > >  I'd
> > > > much rather see a tool that would analyze the scripts and css that
> was
> > > > included across lots of pages and recommending to the developer to
> make
> > > 10
> > > > CSS files or 20 script files into 1.  But that's just me.
> >
> > > > > Cheers, Tim
> >
> > > > > On 08/05/2009 20:19, "marius d."  wrote:
> >
> > > > > > A  built in snippet might me a good addition. I could
> > > > > > probably allocate some time to noodle on it.
> >
> > > > > > Br's,
> > > > > > Marius
> >
> > > > > > On May 8, 5:05 pm, KWright 
> wrote:
> > > > > >> It's becoming an established best practice that scripts should
> be
> > > put
> > > > > >> at the END of a page, where possible, in order to speed up
> download
> > > > > >> times
> >
> > > > > >> Good article here:
> http://developer.yahoo.com/performance/rules.html
> >
> > > > > >> It would be nice if Lift could help encourage and support this
> by
> > > > > >> allowing a  (or ?) element that could be merged
> in
> > > > > >> the same fashion as the head element, perhaps also removing
> > > > > >> duplicates, etc.
> >
> > > > > >> This element would then disappear and expose only its content
> when
> > > the
> > > > > >> page is ultimately sent to the browser.
> >
> > > > --
> > > > 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
> >
> > --
> > 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
> >
>


-- 
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: Tail merge?

2009-05-10 Thread Timothy Perrett

Yeah google analytics is a good use case. I think talking about
smashing static files is off topic, but there is some value in having
a tail merge for when you want to put stuff in just before the body
tag. My only thinking right now is that why do we need a specific
snippet to do this? Right now,  and  would work perfectly for this right?

Cheers, Tim



On May 10, 3:21 pm, "Bryan."  wrote:
> A nice use for this "tail merge" would be for the Google Analytics
> tracking code, especially the ecommerce tracking code.
>
> Here's something to keep an eye on as well:  http://blog.digg.com/?p=621
> -- still very new and in development.
>
> --Bryan
>
> On May 10, 9:57 am, David Pollak 
> wrote:
>
>
>
> > On Sun, May 10, 2009 at 6:55 AM, marius d.  wrote:
>
> > > People can choose to "smash" multiple js/css files into a single one,
> > > in fact it is a common practice. However for scripts that can be
> > > deferred putting them at the bottom of the page can improve rendering.
>
> > Okay.. so we're not actually putting the scripts on the page, we're just
> > putting them right about the  tag?
>
> > > Br's,
> > > Marius
>
> > > On May 10, 4:42 pm, David Pollak 
> > > wrote:
> > > > On Fri, May 8, 2009 at 5:26 PM, Timothy Perrett  > > >wrote:
>
> > > > > Sounds like this could be a neat addition. Looking forward to see what
> > > you
> > > > > come up with :-)
>
> > > > I'm not 100% keen on it.  Loading a ton of stuff into the HTML page
> > > (rather
> > > > than having stuff cached by the browser) makes for larger page sizes.
> > >  I'd
> > > > much rather see a tool that would analyze the scripts and css that was
> > > > included across lots of pages and recommending to the developer to make
> > > 10
> > > > CSS files or 20 script files into 1.  But that's just me.
>
> > > > > Cheers, Tim
>
> > > > > On 08/05/2009 20:19, "marius d."  wrote:
>
> > > > > > A  built in snippet might me a good addition. I could
> > > > > > probably allocate some time to noodle on it.
>
> > > > > > Br's,
> > > > > > Marius
>
> > > > > > On May 8, 5:05 pm, KWright  wrote:
> > > > > >> It's becoming an established best practice that scripts should be
> > > put
> > > > > >> at the END of a page, where possible, in order to speed up download
> > > > > >> times
>
> > > > > >> Good article here:http://developer.yahoo.com/performance/rules.html
>
> > > > > >> It would be nice if Lift could help encourage and support this by
> > > > > >> allowing a  (or ?) element that could be merged in
> > > > > >> the same fashion as the head element, perhaps also removing
> > > > > >> duplicates, etc.
>
> > > > > >> This element would then disappear and expose only its content when
> > > the
> > > > > >> page is ultimately sent to the browser.
>
> > > > --
> > > > 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
>
> > --
> > 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: Tail merge?

2009-05-10 Thread Bryan.

A nice use for this "tail merge" would be for the Google Analytics
tracking code, especially the ecommerce tracking code.

Here's something to keep an eye on as well:  http://blog.digg.com/?p=621
-- still very new and in development.

--Bryan

On May 10, 9:57 am, David Pollak 
wrote:
> On Sun, May 10, 2009 at 6:55 AM, marius d.  wrote:
>
> > People can choose to "smash" multiple js/css files into a single one,
> > in fact it is a common practice. However for scripts that can be
> > deferred putting them at the bottom of the page can improve rendering.
>
> Okay.. so we're not actually putting the scripts on the page, we're just
> putting them right about the  tag?
>
>
>
>
>
> > Br's,
> > Marius
>
> > On May 10, 4:42 pm, David Pollak 
> > wrote:
> > > On Fri, May 8, 2009 at 5:26 PM, Timothy Perrett  > >wrote:
>
> > > > Sounds like this could be a neat addition. Looking forward to see what
> > you
> > > > come up with :-)
>
> > > I'm not 100% keen on it.  Loading a ton of stuff into the HTML page
> > (rather
> > > than having stuff cached by the browser) makes for larger page sizes.
> >  I'd
> > > much rather see a tool that would analyze the scripts and css that was
> > > included across lots of pages and recommending to the developer to make
> > 10
> > > CSS files or 20 script files into 1.  But that's just me.
>
> > > > Cheers, Tim
>
> > > > On 08/05/2009 20:19, "marius d."  wrote:
>
> > > > > A  built in snippet might me a good addition. I could
> > > > > probably allocate some time to noodle on it.
>
> > > > > Br's,
> > > > > Marius
>
> > > > > On May 8, 5:05 pm, KWright  wrote:
> > > > >> It's becoming an established best practice that scripts should be
> > put
> > > > >> at the END of a page, where possible, in order to speed up download
> > > > >> times
>
> > > > >> Good article here:http://developer.yahoo.com/performance/rules.html
>
> > > > >> It would be nice if Lift could help encourage and support this by
> > > > >> allowing a  (or ?) element that could be merged in
> > > > >> the same fashion as the head element, perhaps also removing
> > > > >> duplicates, etc.
>
> > > > >> This element would then disappear and expose only its content when
> > the
> > > > >> page is ultimately sent to the browser.
>
> > > --
> > > 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
>
> --
> 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: Tail merge?

2009-05-10 Thread Alexander Kellett

fyi. if you smash css into a single file but continue using relative
urls in the css you'll end up with a slower page in the case that
you're using asset hosts to work around the browsers http connection
limit. when smashing into one file make sure to also apply the asset
host trick to any url() statements in the css by rewriting them to be
absolute urls rather than merely paths. commonly made mistake in the
ruby world at least, saddens me.

On Sun, May 10, 2009 at 3:55 PM, marius d.  wrote:
>
> People can choose to "smash" multiple js/css files into a single one,
> in fact it is a common practice. However for scripts that can be
> deferred putting them at the bottom of the page can improve rendering.
>
> Br's,
> Marius
>
> On May 10, 4:42 pm, David Pollak 
> wrote:
>> On Fri, May 8, 2009 at 5:26 PM, Timothy Perrett 
>> wrote:
>>
>>
>>
>> > Sounds like this could be a neat addition. Looking forward to see what you
>> > come up with :-)
>>
>> I'm not 100% keen on it.  Loading a ton of stuff into the HTML page (rather
>> than having stuff cached by the browser) makes for larger page sizes.  I'd
>> much rather see a tool that would analyze the scripts and css that was
>> included across lots of pages and recommending to the developer to make 10
>> CSS files or 20 script files into 1.  But that's just me.
>>
>>
>>
>>
>>
>> > Cheers, Tim
>>
>> > On 08/05/2009 20:19, "marius d."  wrote:
>>
>> > > A  built in snippet might me a good addition. I could
>> > > probably allocate some time to noodle on it.
>>
>> > > Br's,
>> > > Marius
>>
>> > > On May 8, 5:05 pm, KWright  wrote:
>> > >> It's becoming an established best practice that scripts should be put
>> > >> at the END of a page, where possible, in order to speed up download
>> > >> times
>>
>> > >> Good article here:http://developer.yahoo.com/performance/rules.html
>>
>> > >> It would be nice if Lift could help encourage and support this by
>> > >> allowing a  (or ?) element that could be merged in
>> > >> the same fashion as the head element, perhaps also removing
>> > >> duplicates, etc.
>>
>> > >> This element would then disappear and expose only its content when the
>> > >> page is ultimately sent to the browser.
>>
>> --
>> 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: Tail merge?

2009-05-10 Thread marius d.



On May 10, 4:57 pm, David Pollak 
wrote:
> On Sun, May 10, 2009 at 6:55 AM, marius d.  wrote:
>
> > People can choose to "smash" multiple js/css files into a single one,
> > in fact it is a common practice. However for scripts that can be
> > deferred putting them at the bottom of the page can improve rendering.
>
> Okay.. so we're not actually putting the scripts on the page, we're just
> putting them right about the  tag?

Yes ... for instance:



  


would yield:



   

  


  



At least this is what I'm referring to.

>
>
>
>
>
> > Br's,
> > Marius
>
> > On May 10, 4:42 pm, David Pollak 
> > wrote:
> > > On Fri, May 8, 2009 at 5:26 PM, Timothy Perrett  > >wrote:
>
> > > > Sounds like this could be a neat addition. Looking forward to see what
> > you
> > > > come up with :-)
>
> > > I'm not 100% keen on it.  Loading a ton of stuff into the HTML page
> > (rather
> > > than having stuff cached by the browser) makes for larger page sizes.
> >  I'd
> > > much rather see a tool that would analyze the scripts and css that was
> > > included across lots of pages and recommending to the developer to make
> > 10
> > > CSS files or 20 script files into 1.  But that's just me.
>
> > > > Cheers, Tim
>
> > > > On 08/05/2009 20:19, "marius d."  wrote:
>
> > > > > A  built in snippet might me a good addition. I could
> > > > > probably allocate some time to noodle on it.
>
> > > > > Br's,
> > > > > Marius
>
> > > > > On May 8, 5:05 pm, KWright  wrote:
> > > > >> It's becoming an established best practice that scripts should be
> > put
> > > > >> at the END of a page, where possible, in order to speed up download
> > > > >> times
>
> > > > >> Good article here:http://developer.yahoo.com/performance/rules.html
>
> > > > >> It would be nice if Lift could help encourage and support this by
> > > > >> allowing a  (or ?) element that could be merged in
> > > > >> the same fashion as the head element, perhaps also removing
> > > > >> duplicates, etc.
>
> > > > >> This element would then disappear and expose only its content when
> > the
> > > > >> page is ultimately sent to the browser.
>
> > > --
> > > 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
>
> --
> 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: Tail merge?

2009-05-10 Thread David Pollak
On Sun, May 10, 2009 at 6:55 AM, marius d.  wrote:

>
> People can choose to "smash" multiple js/css files into a single one,
> in fact it is a common practice. However for scripts that can be
> deferred putting them at the bottom of the page can improve rendering.


Okay.. so we're not actually putting the scripts on the page, we're just
putting them right about the  tag?


>
>
> Br's,
> Marius
>
> On May 10, 4:42 pm, David Pollak 
> wrote:
> > On Fri, May 8, 2009 at 5:26 PM, Timothy Perrett  >wrote:
> >
> >
> >
> > > Sounds like this could be a neat addition. Looking forward to see what
> you
> > > come up with :-)
> >
> > I'm not 100% keen on it.  Loading a ton of stuff into the HTML page
> (rather
> > than having stuff cached by the browser) makes for larger page sizes.
>  I'd
> > much rather see a tool that would analyze the scripts and css that was
> > included across lots of pages and recommending to the developer to make
> 10
> > CSS files or 20 script files into 1.  But that's just me.
> >
> >
> >
> >
> >
> > > Cheers, Tim
> >
> > > On 08/05/2009 20:19, "marius d."  wrote:
> >
> > > > A  built in snippet might me a good addition. I could
> > > > probably allocate some time to noodle on it.
> >
> > > > Br's,
> > > > Marius
> >
> > > > On May 8, 5:05 pm, KWright  wrote:
> > > >> It's becoming an established best practice that scripts should be
> put
> > > >> at the END of a page, where possible, in order to speed up download
> > > >> times
> >
> > > >> Good article here:http://developer.yahoo.com/performance/rules.html
> >
> > > >> It would be nice if Lift could help encourage and support this by
> > > >> allowing a  (or ?) element that could be merged in
> > > >> the same fashion as the head element, perhaps also removing
> > > >> duplicates, etc.
> >
> > > >> This element would then disappear and expose only its content when
> the
> > > >> page is ultimately sent to the browser.
> >
> > --
> > 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
> >
>


-- 
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: Tail merge?

2009-05-10 Thread marius d.

People can choose to "smash" multiple js/css files into a single one,
in fact it is a common practice. However for scripts that can be
deferred putting them at the bottom of the page can improve rendering.

Br's,
Marius

On May 10, 4:42 pm, David Pollak 
wrote:
> On Fri, May 8, 2009 at 5:26 PM, Timothy Perrett 
> wrote:
>
>
>
> > Sounds like this could be a neat addition. Looking forward to see what you
> > come up with :-)
>
> I'm not 100% keen on it.  Loading a ton of stuff into the HTML page (rather
> than having stuff cached by the browser) makes for larger page sizes.  I'd
> much rather see a tool that would analyze the scripts and css that was
> included across lots of pages and recommending to the developer to make 10
> CSS files or 20 script files into 1.  But that's just me.
>
>
>
>
>
> > Cheers, Tim
>
> > On 08/05/2009 20:19, "marius d."  wrote:
>
> > > A  built in snippet might me a good addition. I could
> > > probably allocate some time to noodle on it.
>
> > > Br's,
> > > Marius
>
> > > On May 8, 5:05 pm, KWright  wrote:
> > >> It's becoming an established best practice that scripts should be put
> > >> at the END of a page, where possible, in order to speed up download
> > >> times
>
> > >> Good article here:http://developer.yahoo.com/performance/rules.html
>
> > >> It would be nice if Lift could help encourage and support this by
> > >> allowing a  (or ?) element that could be merged in
> > >> the same fashion as the head element, perhaps also removing
> > >> duplicates, etc.
>
> > >> This element would then disappear and expose only its content when the
> > >> page is ultimately sent to the browser.
>
> --
> 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: Tail merge?

2009-05-10 Thread David Pollak
On Fri, May 8, 2009 at 5:26 PM, Timothy Perrett wrote:

>
>
> Sounds like this could be a neat addition. Looking forward to see what you
> come up with :-)
>

I'm not 100% keen on it.  Loading a ton of stuff into the HTML page (rather
than having stuff cached by the browser) makes for larger page sizes.  I'd
much rather see a tool that would analyze the scripts and css that was
included across lots of pages and recommending to the developer to make 10
CSS files or 20 script files into 1.  But that's just me.


>
> Cheers, Tim
>
> On 08/05/2009 20:19, "marius d."  wrote:
>
> >
> > A  built in snippet might me a good addition. I could
> > probably allocate some time to noodle on it.
> >
> > Br's,
> > Marius
> >
> > On May 8, 5:05 pm, KWright  wrote:
> >> It's becoming an established best practice that scripts should be put
> >> at the END of a page, where possible, in order to speed up download
> >> times
> >>
> >> Good article here:http://developer.yahoo.com/performance/rules.html
> >>
> >> It would be nice if Lift could help encourage and support this by
> >> allowing a  (or ?) element that could be merged in
> >> the same fashion as the head element, perhaps also removing
> >> duplicates, etc.
> >>
> >> This element would then disappear and expose only its content when the
> >> page is ultimately sent to the browser.
> > >
> >
>
>
>
> >
>


-- 
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: Tail merge?

2009-05-10 Thread KWright

Me or marius? Personally, I'm full of ideas :)


On May 9, 1:26 am, Timothy Perrett  wrote:
> Sounds like this could be a neat addition. Looking forward to see what you
> come up with :-)
>
> Cheers, Tim
>
> On 08/05/2009 20:19, "marius d."  wrote:
>
>
>
>
>
> > A  built in snippet might me a good addition. I could
> > probably allocate some time to noodle on it.
>
> > Br's,
> > Marius
>
> > On May 8, 5:05 pm, KWright  wrote:
> >> It's becoming an established best practice that scripts should be put
> >> at the END of a page, where possible, in order to speed up download
> >> times
>
> >> Good article here:http://developer.yahoo.com/performance/rules.html
>
> >> It would be nice if Lift could help encourage and support this by
> >> allowing a  (or ?) element that could be merged in
> >> the same fashion as the head element, perhaps also removing
> >> duplicates, etc.
>
> >> This element would then disappear and expose only its content when the
> >> page is ultimately sent to the browser.

--~--~-~--~~~---~--~~
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: Tail merge?

2009-05-08 Thread Timothy Perrett


Sounds like this could be a neat addition. Looking forward to see what you
come up with :-)

Cheers, Tim

On 08/05/2009 20:19, "marius d."  wrote:

> 
> A  built in snippet might me a good addition. I could
> probably allocate some time to noodle on it.
> 
> Br's,
> Marius
> 
> On May 8, 5:05 pm, KWright  wrote:
>> It's becoming an established best practice that scripts should be put
>> at the END of a page, where possible, in order to speed up download
>> times
>> 
>> Good article here:http://developer.yahoo.com/performance/rules.html
>> 
>> It would be nice if Lift could help encourage and support this by
>> allowing a  (or ?) element that could be merged in
>> the same fashion as the head element, perhaps also removing
>> duplicates, etc.
>> 
>> This element would then disappear and expose only its content when the
>> page is ultimately sent to the browser.
> > 
> 



--~--~-~--~~~---~--~~
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: Tail merge?

2009-05-08 Thread Charles F. Munat

I like it.

Chas.

marius d. wrote:
> A  built in snippet might me a good addition. I could
> probably allocate some time to noodle on it.
> 
> Br's,
> Marius
> 
> On May 8, 5:05 pm, KWright  wrote:
>> It's becoming an established best practice that scripts should be put
>> at the END of a page, where possible, in order to speed up download
>> times
>>
>> Good article here:http://developer.yahoo.com/performance/rules.html
>>
>> It would be nice if Lift could help encourage and support this by
>> allowing a  (or ?) element that could be merged in
>> the same fashion as the head element, perhaps also removing
>> duplicates, etc.
>>
>> This element would then disappear and expose only its content when the
>> page is ultimately sent to the browser.
> > 

--~--~-~--~~~---~--~~
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: Tail merge?

2009-05-08 Thread marius d.

A  built in snippet might me a good addition. I could
probably allocate some time to noodle on it.

Br's,
Marius

On May 8, 5:05 pm, KWright  wrote:
> It's becoming an established best practice that scripts should be put
> at the END of a page, where possible, in order to speed up download
> times
>
> Good article here:http://developer.yahoo.com/performance/rules.html
>
> It would be nice if Lift could help encourage and support this by
> allowing a  (or ?) element that could be merged in
> the same fashion as the head element, perhaps also removing
> duplicates, etc.
>
> This element would then disappear and expose only its content when the
> page is ultimately sent to the browser.
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---