Hi folks,
After using django for a number of more conventional projects, I'm
toying around with trying to use it to drive a XUL application. Using
django's template system to generate XUL views is easy enough, as is
passing serialized objects around with AJAX. However, most of XUL's
widgets use RDF data bindings, and I'm not finding a lot of resources
for working with them.
Does anyone have experience translating django models into RDF graphs?
My ideal views would look something like this:
def person_list_rdf(request, filter):
pl = Person.objects.filter(lname__icontains=filter) # or whatever else
I'm doing
rdf_list = translate_to_rdf_graph(pl)
return HTTPResponse(rdf_list)
I doubt anything will actually be that simple, but at this point I
don't even know where to start. Can anyone share experience, ideas, or
pointers?
Thanks,
Benj
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
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
-~----------~----~----~----~------~----~------~--~---