Merge pull request #1402 from wqweto/develop

Allow file and directory names to contain percent character
This commit is contained in:
无闻 2015-07-28 17:46:58 +08:00
commit 678700b74d
3 changed files with 4 additions and 4 deletions

View file

@ -178,7 +178,7 @@ var TemplateFuncs template.FuncMap = map[string]interface{}{
"Oauth2Name": Oauth2Name,
"ToUtf8": ToUtf8,
"EscapePound": func(str string) string {
return strings.Replace(str, "#", "%23", -1)
return strings.Replace(strings.Replace(str, "%", "%25", -1), "#", "%23", -1)
},
"RenderCommitMessage": RenderCommitMessage,
}