On Thu, Jan 21, 2010 at 5:31 PM, Walt <tufelkin...@gmail.com> wrote: > Okay... The latest release of django that I downloaded has this: > <script type="text/javascript" src="/admin/jsi18n/"></script> > > A previous version that is currently working is this: > <script type="text/javascript" src="../../../jsi18n/"></script> > > How can I modify or specify that path? And why would it have > changed?
Because in the development version that was [1]changed to use an absolute path that are derived from the real location of such resource instead of having a hardwired relative path ("../../../jsi18n/") that would break when used from pages located in places different from two levels deeper in the path hierarchy, and so it was made more usable from anywhere. I've just tested this and it is working correctly here for a standard admin app installation, so we should find why it is faling for you. Do you have customized admin views? Why isn't the /admin/jsi18n/ URL a correct one in your installation? What do you get when you access it with your browser? -- Ramiro Morales | http://rmorales.net PS: Also, if you are using the development version it would be a good idea to get accustomed to read the changelog and/or follow the Django Trac timeline so you can anticipate, detect and solve issues of this type for youself. 1. http://code.djangoproject.com/ticket/11478 -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@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.