-
Notifications
You must be signed in to change notification settings - Fork 675
Open
Labels
Description
When i use Tomcat to load Gitblit,use Tortoisegit to download project with Chinese name,the url is like ...%98%45%.git., than return 404 page not found.
Than I add fullUrl = URLDecoder.decode(fullUrl, "UTF-8") in the 145th line at com.gitblit.servlet.AuthenticationFilter, and add URIEncoding="UTF-8" in tomcat's server.xml.
Although tortoisegit can return the correct path name, the clone returns the requested URL returned error:500,even the english path.but run project in eclipse is success.
I think it's a decoding problem,but I don't know how to solve the problem.can u help me?