Re: How to use Includes in CSS files

2009-10-26 Thread rowlando
quests. Thanks for your help everyone. -- View this message in context: http://www.nabble.com/How-to-use-Includes-in-CSS-files-tp26024235p26063842.html Sent from the Tomcat - User mailing list archive at Nabble.com. - To unsubsc

Re: How to use Includes in CSS files

2009-10-26 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Nick, On 10/26/2009 9:21 AM, rowlando wrote: > I suggest you read the links I posted if you're interested in the why. Ouch. Maybe /you/ should read your own links: " [Comment from reader "Murray":] I’ve also heard that when using @import, browsers m

Re: How to use Includes in CSS files

2009-10-26 Thread rowlando
your global.css as shown below and then >>> link the global.css file to your pages (as you mentioned)...this will >>> give you ability to seperate your css but avoid the bother with the >>> jsp includes. >>> >>> @import url(../global/i_base.css); >

Re: How to use Includes in CSS files

2009-10-26 Thread Curtis Garman
;> @import url(../global/i_header.css); >> @import url(../global/i_footer.css); >> @import url(../global/i_layout.css); >> @import url(../global/i_button.css); >> >> > > -- > View this message in context: > http://www.nabble.com/How-to-use-Includes-in-CS

Re: How to use Includes in CSS files

2009-10-23 Thread rowlando
> @import url(../global/i_base.css); > @import url(../global/i_header.css); > @import url(../global/i_footer.css); > @import url(../global/i_layout.css); > @import url(../global/i_button.css); > > -- View this message in context: http://www.nabble.com/How-to-use-Includes-in-CSS-f

Re: How to use Includes in CSS files

2009-10-23 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hassan, On 10/23/2009 10:31 AM, Hassan Schroeder wrote: > On Fri, Oct 23, 2009 at 3:50 AM, rowlando wrote: > >> For maintenance purposes I want to keep stylesheets in separate files. >> However, when served, they should be concatenated together as a

Re: How to use Includes in CSS files

2009-10-23 Thread Curtis Garman
servlet risks preventing the browser from caching it as >> effectively. >> >> > > I am building a static site. I'm using JSPs purely for Includes. The build > process is a simple web crawl, where every HTML page is saved as a file. > -- > View this message in cont

Re: How to use Includes in CSS files

2009-10-23 Thread rowlando
g it via a servlet risks preventing the browser from caching it as > effectively. > > I am building a static site. I'm using JSPs purely for Includes. The build process is a simple web crawl, where every HTML page is saved as a file. -- View this message in context: h

Re: How to use Includes in CSS files

2009-10-23 Thread Pid
On 23/10/2009 11:50, rowlando wrote: Hi there, For maintenance purposes I want to keep stylesheets in separate files. However, when served, they should be concatenated together as a single file. Why? - Why do this with a JSP/Servlet? - Why not concatenate it into a single CSS file at build

Re: How to use Includes in CSS files

2009-10-23 Thread Hassan Schroeder
On Fri, Oct 23, 2009 at 3:50 AM, rowlando wrote: > For maintenance purposes I want to keep stylesheets in separate files. > However, when served, they should be concatenated together as a single file. > Simply, I have a file called global.css with the following: > > <%@ include file="../global/i_

How to use Includes in CSS files

2009-10-23 Thread rowlando
isn't processed by the JSP servlet. What do I need to configure to allow the CSS file to process the include directives? Thanks, Nick. -- View this message in context: http://www.nabble.com/How-to-use-Includes-in-CSS-files-tp