Re: How To Display Non-Modal Popup From Resulting Asynchronous Javascript Request

2012-07-24 Thread curious1
> > Thanks for the help. You revealed some things to me which I hadn't > understood or tried before, but now I have. The 404 problem has been > resolved and things are working much better. Thanks again. -- You received this message because you are subscribed to the Google Groups "Django users

Re: How To Display Non-Modal Popup From Resulting Asynchronous Javascript Request

2012-07-24 Thread Tomas Neme
> The current URL, mediahelp/comphelp/mediaHelpPopup.html, didn't match any of > these. > > The code from the comphelp url view is very basic and looks like this: > def component_help(request): > view = "component_help" > dctnry = {} > reqGET = request.GET.copy() > if reqGET.has_key

Re: How To Display Non-Modal Popup From Resulting Asynchronous Javascript Request

2012-07-24 Thread Daniel Roseman
On Tuesday, 24 July 2012 15:03:49 UTC+1, curious1 wrote: > So is there a problem with the url used above(the href field in the popup > function)? If so what's wrong with it? Previously the call seemed to be > successfull as well as the return, since I was previously able to display > the retu

Re: How To Display Non-Modal Popup From Resulting Asynchronous Javascript Request

2012-07-24 Thread curious1
OK. sorry for not providing more information previously. Currently here's the 404 I'm getting back when I submit the asynchronous request: Page not found (404) Request Method: GET Request URL: http://127.0.0.1:8000/mediahelp/comphelp/mediaHelpPopup.html Using the URLconf defined in streamingm

Re: How To Display Non-Modal Popup From Resulting Asynchronous Javascript Request

2012-07-23 Thread Tomas Neme
your error's got nothing to do with AJAX. As the very helpful error message you're getting, there's no URL that matches your requested path: > Request URL: > > http://127.0.0.1:8000/mediahelp/mediaHelpPopup.html > > Using the URLconf defined in streamingmedia.urls, Django tried these URL > patter

How To Display Non-Modal Popup From Resulting Asynchronous Javascript Request

2012-07-23 Thread curious1
I have a django application already developed which I'm trying to use to experiment with asynchronous javascript without using any of the standard JQuery type libraries, in order to better learn and understand AJAX concepts. The application itself has been written using python 2.7.1 and djang