vote up 2 vote down star
1

Given a stylesheet with a fully qualified reference to an image resource on another server, is there a good way to handle promotions through different environments that require a different base URL?

background-image: url (evironmentSpecificURL/resourceName.foo);

The environmentSpecificURL will vary from environment to environment and I don't want this file to be modified as it progresses from development, qa, staging, production, etc.

I have ideas, but am interested in how others have dealt with this -- I'll post one of my ideas.

Let me underscore (based on another response) that the image resource does not exist on the same server and that is the URL that will change. So relative paths do not work in that situation.

Also, I am trying to avoid the need to modify the css where there could be multiple instances of the URL and centralize that URL to one point of configuration.

flag
Never actually faced such a case, where the same CSS had to be ported across domains. something which came close though was changing domain names. A 'Find >> Replace All' did the trick for me – questzen Oct 8 '08 at 22:47
I'm trying to avoid the need for someone to modify the file once it has been deployed to the first environment in the "road to production". – devmode Oct 8 '08 at 23:02
Can someone put some examples of this? or a link to where it explains it? – Miles Oct 9 '08 at 0:20

8 Answers

vote up 2 vote down

The resources that you reference should really be at a relative level to your css file, that way its just a "..\resourceName.foo" away from working.

Of cource you could also look into build tools that auto-generate the environment specific areas of your site, so all properties such as css file, .properties files, etc... are generated dynamically via a build tool link ANT or MSBuild

link|flag
vote up 1 vote down

You could make a configurable CSS pre-processor which replaces the definitions with urls and caches the result.

link|flag
vote up 1 vote down

Within CSS stylesheets, the base URL is that of the stylesheet, not of the document including it. Make the URLs within the stylesheet relative and locate the stylesheet appropriately.

link|flag
vote up 0 vote down

My idea:

Develop a handler/etc locally on the web application to pull in the image and handle the change in base URL in configuration files:

background-image: url (localHandler.ashx(aspx)/resourceName.foo);

Where the localHandler calls the destination resource and then returns the resource based on content type.

link|flag
vote up 0 vote down

Either be consistent across environments (I would always favour this approach) or generate the CSS dynamically.

link|flag
vote up 0 vote down

Depending on your build environment there is probably a mechanism to process the resource files and replace variables with the desired values.

I use Maven for my Java developemnt and it has this functionality built in.

link|flag
vote up 0 vote down

You might be able to achieve what you are after by using the <base /> tag and setting the base URL to use from which all other relative requests are resolved.

link|flag
vote up 0 vote down

You could do something with our .Less CSS preprocessor to swap out variables at runtime.

That said, how are you deploying? If you used CI tools and scripted your deployments automatically then you could include a post build step to find replace this base path.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.