Krzysztof Drozd wrote:
hi
i hawe make a template 'base.html' and i use it in my apps. but
'base.html' use
CSS and PNG files.
my app template use 'base.html' but can't find my CSS and PNG files.
what can i do? what in settings/template shuld i wrote?
a example...
kd.
<over-complicated answer>
You either need to serve the CSS file in a way that isn't being handled
by django, or create a django application to serve CSS. Note that the
same applies to image files, or any other media - the chances are they
are static and should thus be served statically, but they could be
generated (or merely output by) a django application.
On my server, which runs Apache, static media is served by using the
following configuration directive:
<Location /static/>
SetHandler None
</Location>
This means that anything in /static is served directly by apache and
doesn't touch Django.
However, as my site is fairly fluid and different applications require
different combinations of CSS (and I love the ability to edit CSS online
as well as the actual pages of my site) I created a relatively simple
single-model application, the details of which are below. Simply, it
searches through the database for files to serve from the /css/
'directory' on the server, so my base template includes the CSS using
the following line:
<link rel="stylesheet" type="text/css" href="/css/default/" />
The important details of the CSS application are below. Note the
somewhat hacky way the regex objects are compiled when the models module
is imported and the models are generated. This is necessary because code
in lambda functions isn't evaluated until the function is called and it
is run, meaning that re objects are no longer in the code's scope. I'm
still not happy with this, as it means that the useragents I can check
for and the regexes that I use are statically emplaced into the code,
but it will do until I find a better solution.
project/settings/urls/main.py:
...
urlpatterns = patterns('',
...
(r'^css/', include('project.apps.css.urls.css')),
...
)
project/apps/css/urls/css.py:
from django.conf.urls.defaults import *
urlpatterns = patterns('jaded.apps.css.views.css',
(r'^(?P<css_slug>[^/]+)/$', 'show_css'),
)
project/apps/css/models/css.py:
from django.core import meta
import re
BROWSER_CHOICES = (
(0, 'Default'),
(1, 'Internet Explorer'),
(2, 'Mozilla/Netscape'),
(3, 'Opera'),
)
uare = {1: re.compile('^Mozilla/*.* \((?!compatible;).*$').match,
2: re.compile('^.*Opera.*$').match,
3: re.compile('^Mozilla/.\.. \(compatible; MSIE .\..; .*$').match}
class Stylesheet(meta.Model):
fields = (
meta.IntegerField('browser', 'Browser class',
choices=BROWSER_CHOICES),
meta.SlugField('slug', 'CSS Slug'),
meta.TextField('css', 'Cascading Stylesheet Instructions'),
)
unique_together = (
('slug', 'browser'),
)
admin = meta.Admin()
def get_bname(this):
if this.browser == 0:
return "Default"
if this.browser == 1:
return "Internet Explorer"
if this.browser == 2:
return "Mozilla/Netscape"
return "Opera"
def __repr__(this):
return this.slug + ": " + this.get_bname()
def _module_match_useragent_mozilla(query, matchobj=uare[1]):
return matchobj(query)
def _module_match_useragent_opera(query, matchobj=uare[2]):
return matchobj(query)
def _module_match_useragent_iexplore(query, matchobj=uare[3]):
return matchobj(query)
project/apps/css/views/css.py:
from django.utils.httpwrappers import HttpResponse
from django.models.css import stylesheets
from django.core.exceptions import Http404
def show_css(request, css_slug):
browsers = {0: 'Default', 1: 'Internet Explorer', 2:
'Mozilla/Netscape', 3: 'Opera'}
user_agent = request.META['HTTP_USER_AGENT'].strip()
browser = 0
if stylesheets.match_useragent_mozilla(user_agent):
browser = 2
elif stylesheets.match_useragent_opera(user_agent):
browser = 3
elif stylesheets.match_useragent_iexplore(user_agent):
browser = 1
bName = browsers[browser]
stylesheet = None
try:
stylesheet =
stylesheets.get_object(slug__exact=css_slug, browser__exact=browser)
except:
pass
if not stylesheet and browser:
try:
stylesheet =
stylesheets.get_object(slug__exact=css_slug, browser__exact=0)
bName += " (using default)"
except:
pass
if not stylesheet:
raise Http404
css = "/* Stylesheet generated for %s\n Copyright (c) 2005
Andrew Shaw. */\n\n\n" % bName
css += stylesheet.css
res = HttpResponse(css)
res.headers['Content-Type'] = "text/css"
return res
</over-complicated answer>
HTH.
-Andy