(path string)
| 126 | var dummyModTime = time.Unix(1276213335, 0) |
| 127 | |
| 128 | func blobFromURLPath(path string) blob.Ref { |
| 129 | matches := getPattern.FindStringSubmatch(path) |
| 130 | if len(matches) != 3 { |
| 131 | return blob.Ref{} |
| 132 | } |
| 133 | return blob.ParseOrZero(strings.TrimPrefix(matches[0], "/camli/")) |
| 134 | } |