On Jul 20, 5:49 pm, WilsonOfCanada <w...@sfu.ca> wrote:
> Well then I will have to try a different approach.  When using
> render_to_response('webpage.html', d), I have d as a dictionary.  I
> was wondering if you send a whole text file as a part of the
> dictionary.
>
> For example:
>
> fileView = open('C://path//main_cities.txt', 'r+')
> d['main_cities'] = fileView
> render_to_response('webpage.html', d)
>
> Thanks

There is probably a way to do this via javascript and relying on the
normal browser cache.

If you make the text file available through your asset server, along
with your css and js files, you could get your javascript to request
it via an Ajax/XMLHTTPRequest call. I'm pretty sure the following
times it was requested, the browser cache would be used - just like
when you request a CSS file which hasn't changed, the version in the
browser cache is used rather than the entire file having to be
transferred again.
--
DR.
--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to