Compare commits
No commits in common. "encode-urls" and "go20" have entirely different histories.
encode-url
...
go20
1 changed files with 0 additions and 12 deletions
|
@ -900,22 +900,10 @@ func prepareKeyString (_context *context, _namespace string, _fingerprint string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
func pathEscape (_path string) (final string) {
|
|
||||||
fragments := strings.Split(_path, "/")
|
|
||||||
for i, fragment := range fragments {
|
|
||||||
final = final + url.PathEscape(fragment)
|
|
||||||
if i != len(fragments) - 1 {
|
|
||||||
final = final + "/"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
func walkPath (_context *context, _pathResolved string, _pathInArchive string, _name string, _recursed map[string]uint, _recurse bool, _statusPerhaps uint) (os.FileInfo, error) {
|
func walkPath (_context *context, _pathResolved string, _pathInArchive string, _name string, _recursed map[string]uint, _recurse bool, _statusPerhaps uint) (os.FileInfo, error) {
|
||||||
|
|
||||||
_pathInArchive = pathEscape(_pathInArchive)
|
|
||||||
|
|
||||||
if _recursed == nil {
|
if _recursed == nil {
|
||||||
_recursed = make (map[string]uint, 128)
|
_recursed = make (map[string]uint, 128)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue