]> source.dussan.org Git - gitea.git/commitdiff
fix workaround for reverse proxy, ssh, submodule
authorMatthias Pioch <likeit.mp@googlemail.com>
Sat, 24 Oct 2015 20:46:13 +0000 (22:46 +0200)
committerMatthias Pioch <likeit.mp@googlemail.com>
Sat, 24 Oct 2015 20:46:13 +0000 (22:46 +0200)
modules/base/template.go
modules/git/submodule.go
templates/repo/view_list.tmpl

index a93d20ad86195c5574ec07eff01c127a44863b6d..f5f567adede525f13e8c921082463fe30bd61880 100644 (file)
@@ -141,9 +141,6 @@ var TemplateFuncs template.FuncMap = map[string]interface{}{
        "AppName": func() string {
                return setting.AppName
        },
-       "AppUrl": func() string {
-               return setting.AppUrl
-       },
        "AppSubUrl": func() string {
                return setting.AppSubUrl
        },
index 1291e112b97c47fa45f0d95eb45bdb242195f046..0b8efc26dca4a8d1cc809c29cdb3e9114d444f64 100644 (file)
@@ -6,6 +6,7 @@ package git
 
 import (
        "strings"
+       "github.com/gogits/gogs/modules/setting"
 )
 
 type SubModule struct {
@@ -30,7 +31,7 @@ func NewSubModuleFile(c *Commit, refUrl, refId string) *SubModuleFile {
 }
 
 // RefUrl guesses and returns reference URL.
-func (sf *SubModuleFile) RefUrl(appUrl string) string {
+func (sf *SubModuleFile) RefUrl() string {
        if sf.refUrl == "" {
                return ""
        }
@@ -52,8 +53,8 @@ func (sf *SubModuleFile) RefUrl(appUrl string) string {
        j := strings.LastIndex(url, ":")
        if i > -1 && j > -1 {
                // fix problem with reverse proxy works only with local server
-               if strings.Contains(appUrl,url[i+1:j]) {
-                       return appUrl + url[j+1:]
+               if strings.Contains(setting.AppUrl,url[i+1:j]) {
+                       return setting.AppUrl + url[j+1:]
                } else {
                        return "http://" + url[i+1:j] + "/" + url[j+1:]
                }
index bebac1ea4304856ef67cb5c7d7ce619f75816ca5..d3303193f86c489ebc98423cd1c4abea26b7b0d3 100644 (file)
@@ -39,8 +39,8 @@
                     <span class="octicon octicon-file-submodule"></span>
                 </td>
                 <td class="name">
-                    {{if $commit.RefUrl AppUrl}}
-                    <a href="{{$commit.RefUrl AppUrl}}" class="text-truncate">{{$entry.Name}}</a> @ <a href="{{$commit.RefUrl AppUrl}}/commit/{{$commit.RefId}}">{{ShortSha $commit.RefId}}</a>
+                    {{if $commit.RefUrl}}
+                    <a href="{{$commit.RefUrl}}" class="text-truncate">{{$entry.Name}}</a> @ <a href="{{$commit.RefUrl}}/commit/{{$commit.RefId}}">{{ShortSha $commit.RefId}}</a>
                     {{else}}
                     {{$entry.Name}} @ {{ShortSha $commit.RefId}}
                     {{end}}