jwong-d2l / sessionweb

Automatically exported from code.google.com/p/sessionweb
1 stars 0 forks source link

bugs/req/sessionid added with . and , is not possible to delete #154

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
bugs/req/sessionid added with . and , is not possible to delete

Reason: an id used by Jquery can not contain , or . 
We need to escape these chars to be able to use ., in bug/req...

Original issue reported on code.google.com by mcyr...@gmail.com on 5 Aug 2013 at 11:28

GoogleCodeExporter commented 8 years ago
currently we in the ui escape  
    var aReqID = aReq.replace("#", "--");
    aReqID = aReqID.replace(",", "--");
    aReqID = aReqID.replace(".", "--");
    aReqID = aReqID.replace(";", "--");
    aReqID = aReqID.replace(":", "--");
 but in db we have the orginal text (with .#...)
we need to solve this one in a proper way with urlencoding in both client and 
server.

Original comment by mcyr...@gmail.com on 8 Mar 2014 at 7:20