Revision e411b741

b/webodf/httpserver.js
60 60
}
61 61

  
62 62
http.createServer(function (request, response) {
63
    var uri = url.parse(request.url).pathname,
63
    var uri = unescape(url.parse(request.url).pathname),
64 64
        filename = path.join(process.cwd(), uri);
65 65
    if (uri !== '/favicon.ico') {
66 66
        console.log(request.method + " " + uri);

Also available in: Unified diff