I'm not real clear where the various errors are happening, so I'm just guessing.
Just based on what I'm seeing here, it looks like you're having javascript (client-side) issues. Something about DTC? Maybe it's a variable that isn't getting initialized? Or maybe a constant that needs quotes around it? Just a guess, and I'm probably totally wrong. Good luck, James On Jan 4, 6:10 am, thebrianschott <[email protected]> wrote: > Niklas, > > Thanks for the idea, but I get the same behavior with that change. > > I have even more information that I did not notice > before. When the following line is in process(form) an error > message is thrown in the Firefox error console that reports > the error message below. So somehow the POST and the > self.redirect("/?place=%s" % g_place) are not behaving > right together. > > form.place.value = String({{place|addslashes}}); > > Error: DTC is not defined > Source File:http://localhost:8082/?place=DTCLine: 108 > > Line 108 is the following one. > > form.place.value = String({{place|addslashes}}); > > On Jan 4, 6:27 am, niklasr <[email protected]> wrote: > > > Hey Brian, > > Maybe it's as easy as > > g_place = self.request.POST.get('place') > > instead of > > g_place = self.request.get('place') > > > Cheers > > Niklas Stockholm --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" 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/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
