> I solved this problem in the following way:
> 1) Set thestylesheetlink tag to <link rel="stylesheet" type="text/
> css" href="/styles.css" />
> 2) Created a rule in urls.py where r"^styles\.css" points to an
> appropriately written view.
> 3) Created a view that output the desired CSS code as plain text
> (using a template)

Hi, I'm pretty new to django, and brand new to this list.  I am having
problems getting this to work.

My base.html template starts with this...

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
<html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
<head>
    <link rel="stylesheet" type="text/css" href="/styles.css" />
    <!--style> #content {margin-left: 25%;} body { background-color:
#eeffee; } </style-->
   ...

Note that if I remove the comments around the inline style sheet it
works.

My urls.py has this for "urlpatterns"...

urlpatterns = patterns('',
    (r'^styles\.css', 'views.styles'),
   ...
)

My views.py has this...

def styles(request):
    return HttpResponse(content_type = 'text/plain', content = 'body
{background-color: #eeffee;}')

When I run I get happy messages like these...

[29/Sep/2007 17:59:38] "GET / HTTP/1.1" 200 1138
[29/Sep/2007 17:59:38] "GET /styles.css HTTP/1.1" 200 33

If I go to http://localhost:8000/styles.css I see 'body {background-
color: #eeffee;}' as plain text in the browser.

What am I missing?  Note that I did originally have the css as a
template, but reduced it to just return a hard-coded HttpResponse for
testing.

Thanks,
Steve


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to