@@ -91,6 +91,7 @@ func (i *Info) FileURL(pathname string) string {
91
91
"repo" : i .repoURL ,
92
92
"importPath" : path .Join (strings .TrimPrefix (i .repoURL , "https://" ), dir ),
93
93
"commit" : i .commit ,
94
+ "dir" : dir ,
94
95
"file" : path .Join (i .moduleDir , pathname ),
95
96
"base" : base ,
96
97
})
@@ -107,6 +108,7 @@ func (i *Info) LineURL(pathname string, line int) string {
107
108
"importPath" : path .Join (strings .TrimPrefix (i .repoURL , "https://" ), dir ),
108
109
"commit" : i .commit ,
109
110
"file" : path .Join (i .moduleDir , pathname ),
111
+ "dir" : dir ,
110
112
"base" : base ,
111
113
"line" : strconv .Itoa (line ),
112
114
})
@@ -356,6 +358,10 @@ func matchStatic(moduleOrRepoPath string) (repo, relativeModulePath string, _ ur
356
358
if strings .HasPrefix (repo , apacheDomain ) {
357
359
repo = strings .Replace (repo , apacheDomain , "github.com/apache/" , 1 )
358
360
}
361
+ // Special case: module paths are blitiri.com.ar/go/..., but repos are blitiri.com.ar/git/r/...
362
+ if strings .HasPrefix (repo , "blitiri.com.ar/" ) {
363
+ repo = strings .Replace (repo , "/go/" , "/git/r/" , 1 )
364
+ }
359
365
relativeModulePath = strings .TrimPrefix (moduleOrRepoPath , matches [0 ])
360
366
relativeModulePath = strings .TrimPrefix (relativeModulePath , "/" )
361
367
return repo , relativeModulePath , pat .templates , pat .transformCommit , nil
@@ -612,7 +618,6 @@ var patterns = []struct {
612
618
// URLs anyway. See gogs/gogs#6242.
613
619
templates : giteaURLTemplates ,
614
620
},
615
-
616
621
{
617
622
pattern : `^(?P<repo>dmitri\.shuralyov\.com\/.+)$` ,
618
623
templates : urlTemplates {
@@ -622,6 +627,15 @@ var patterns = []struct {
622
627
Line : "https://gotools.org/{importPath}?rev={commit}#{base}-L{line}" ,
623
628
},
624
629
},
630
+ {
631
+ pattern : `^(?P<repo>blitiri\.com\.ar/go/.+)$` ,
632
+ templates : urlTemplates {
633
+ Repo : "{repo}" ,
634
+ Directory : "{repo}/b/master/t/{dir}" ,
635
+ File : "{repo}/b/master/t/{dir}f={file}.html" ,
636
+ Line : "{repo}/b/master/t/{dir}f={file}.html#line-{line}" ,
637
+ },
638
+ },
625
639
626
640
// Patterns that match the general go command pattern, where they must have
627
641
// a ".git" repo suffix in an import path. If matching a repo URL from a meta tag,
0 commit comments