Saturday, September 27, 2014

Re: Rendering XML using XSLT

Do you have a URL conf that matches the /get_xsd/ccd-description.xsl stylesheet? You have to match and serve that as well.

Taking a step back though. It looks like you are serving static files that would be best served from a webserver, perhaps with some symlinks, so that the overhead of Django is not required at all.

John

On 27/09/14 12:37, Timothy W. Cook wrote:
Some details I forgot are that this is Django 1.6.4, Python 3.4.1.

On Sat, Sep 27, 2014 at 8:10 AM, Timothy W. Cook <tim@mlhim.org> wrote:
I have a view that opens an XML file (it happens to be a schema but that doesn't matter) that specifies a stylesheet.
It works as expected when opening the XML file locally.

​The stylesheet isn't applied when viewing the file via Django and I see in Firebug that I am getting a 404 on the stylesheet. The stylesheet is in the same directory as the XML file.

So how do I setup a view or add this file to my existing view so it is found? 

The view:
def get_ccddetails(request, id):

    ccd = CCD.objects.get(pk=id)
    ccdid= ccd.ct_id

    CWD = os.getcwd()
    if CWD == '/':    # Live site
        frm_dir = "/home/ccdgen/ccdlib/CCD_"+ ccdid
    else:             # development
        frm_dir = "ccdlib/CCD_"+ ccdid

    filename = frm_dir+"/ccd-"+ccdid+".xsd"
    if os.path.isfile(filename):
        response = HttpResponse(mimetype="application/xml; charset=utf-8")
        f = open(filename, encoding="utf-8")
        for line in f:
            response.write(line)
        f.close()
    else:
        response = HttpResponseNotFound("<h1>XSD: "+filename+" was not found.</h1>")
    return response

​The URL:
​    url(r'^get_xsd/(?P<id>\d+)$', "ccdgen.views.get_ccddetails", name='getxsd'),



​ Thanks,
Tim ​





 

============================================
Timothy Cook
LinkedIn Profile:http://www.linkedin.com/in/timothywaynecook




--

============================================
Timothy Cook
LinkedIn Profile:http://www.linkedin.com/in/timothywaynecook

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CA%2B%3DOU3VLaAHC8bv-S9sQfKLY8efgZOrQjnq4LPUKfB3r%3D3e0_g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment