···555555 CommitURLTemplate string
556556557557 // The repository URL for getting to a file. Has access to
558558- // {{Branch}}, {{Path}}
558558+ // {{.Version}}, {{.Path}}
559559 FileURLTemplate string
560560561561 // The URL fragment to add to a file URL for line numbers. has
562562- // access to {{LineNumber}}. The fragment should include the
562562+ // access to {{.LineNumber}}. The fragment should include the
563563 // separator, generally '#' or ';'.
564564 LineFragmentTemplate string
565565
+2-2
grpc/v1/webserver.pb.go
···743743 // URL template to link to the commit of a branch
744744 CommitUrlTemplate string `protobuf:"bytes,7,opt,name=commit_url_template,json=commitUrlTemplate,proto3" json:"commit_url_template,omitempty"`
745745 // The repository URL for getting to a file. Has access to
746746- // {{Branch}}, {{Path}}
746746+ // {{.Version}}, {{.Path}}
747747 FileUrlTemplate string `protobuf:"bytes,8,opt,name=file_url_template,json=fileUrlTemplate,proto3" json:"file_url_template,omitempty"`
748748 // The URL fragment to add to a file URL for line numbers. has
749749- // access to {{LineNumber}}. The fragment should include the
749749+ // access to {{.LineNumber}}. The fragment should include the
750750 // separator, generally '#' or ';'.
751751 LineFragmentTemplate string `protobuf:"bytes,9,opt,name=line_fragment_template,json=lineFragmentTemplate,proto3" json:"line_fragment_template,omitempty"`
752752 // Perf optimization: priority is set when we load the shard. It corresponds to
+2-2
grpc/v1/webserver.proto
···177177 string commit_url_template = 7;
178178179179 // The repository URL for getting to a file. Has access to
180180- // {{Branch}}, {{Path}}
180180+ // {{.Version}}, {{.Path}}
181181 string file_url_template = 8;
182182183183 // The URL fragment to add to a file URL for line numbers. has
184184- // access to {{LineNumber}}. The fragment should include the
184184+ // access to {{.LineNumber}}. The fragment should include the
185185 // separator, generally '#' or ';'.
186186 string line_fragment_template = 9;
187187