tonfa
tonfa

Reputation: 24491

How to use ';' (semicolon) in urls, using Google Appengine

Using the local dev server, I can use ';' in urls, but as soon as I try the live version hosted by Google, it looks like the ';' and everything afterward is stripped (at least according to request.path_qs).

(I would prefer not to encode them if possible, it's much less user friendly if the url cannot be constructed by copy-pasting, especially since other characters works fine, e.g. ':').

Upvotes: 2

Views: 345

Answers (2)

tonfa
tonfa

Reputation: 24491

Issue816 has now been fixed, semi-colons are usable with appengine.

Upvotes: 0

ReinierDG
ReinierDG

Reputation: 885

It is a known issue: http://code.google.com/p/googleappengine/issues/detail?id=816
So I am afraid you need to use a workaround.

Upvotes: 3

Related Questions