diff options
author | Unknwon <u@gogs.io> | 2015-11-15 14:05:51 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-11-15 14:05:51 -0500 |
commit | b4970b3cc31d09b2b74d1ace4bfb39ab494d8d24 (patch) | |
tree | 478246214f54aebe7a988935b77b6f86c06a9c9e | |
parent | 84a43b38cfe88f7199a5e883f00a0ef5091a69d0 (diff) | |
download | gitea-b4970b3cc31d09b2b74d1ace4bfb39ab494d8d24.tar.gz gitea-b4970b3cc31d09b2b74d1ace4bfb39ab494d8d24.zip |
fix #1948
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | gogs.go | 2 | ||||
-rw-r--r-- | modules/middleware/repo.go | 6 | ||||
-rw-r--r-- | templates/.VERSION | 2 | ||||
-rw-r--r-- | templates/repo/header_old.tmpl | 23 |
5 files changed, 9 insertions, 26 deletions
@@ -5,7 +5,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra ![](public/img/gogs-large-resize.png) -##### Current version: 0.7.10 Beta +##### Current version: 0.7.11 Beta <table> <tr> @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.10.1114 Beta" +const APP_VER = "0.7.11.1115 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/modules/middleware/repo.go b/modules/middleware/repo.go index 1418486430..afa95a250c 100644 --- a/modules/middleware/repo.go +++ b/modules/middleware/repo.go @@ -79,6 +79,12 @@ func ApiRepoAssignment() macaron.Handler { // RepoRef handles repository reference name including those contain `/`. func RepoRef() macaron.Handler { return func(ctx *Context) { + // Empty repository does not have reference information. + if ctx.Repo.Repository.IsBare { + ctx.Data["CommitsCount"] = 0 + return + } + var ( refName string err error diff --git a/templates/.VERSION b/templates/.VERSION index 32d6c06db8..7b98f0fd88 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.10.1114 Beta
\ No newline at end of file +0.7.11.1115 Beta
\ No newline at end of file diff --git a/templates/repo/header_old.tmpl b/templates/repo/header_old.tmpl index 23a3e0888d..7a51009573 100644 --- a/templates/repo/header_old.tmpl +++ b/templates/repo/header_old.tmpl @@ -10,29 +10,6 @@ {{if .IsFork}}<span class="fork-flag">forked from <a href="{{.BaseRepo.RepoLink}}">{{SubStr .BaseRepo.RepoLink 1 -1}}</a></span>{{end}} </h1> <ul id="repo-header-meta" class="right menu menu-line"> - <li id="repo-header-download" class="drop"> - <a id="repo-header-download-btn" href="#"> - <button class="btn btn-black text-bold btn-radius"> - <i class="octicon octicon-cloud-download"></i> - </button> - </a> - <div id="repo-header-download-drop" class="drop-down"> - <div id="repo-clone" class="clear"> - {{if not $.DisableSSH}} - <button class="btn btn-blue left btn-left-radius" id="repo-clone-ssh" data-link="{{$.CloneLink.SSH}}">SSH</button> - {{end}} - <button class="btn {{if $.DisableSSH}}btn-blue{{else}}btn-gray{{end}} left" id="repo-clone-https" data-link="{{$.CloneLink.HTTPS}}">HTTPS</button> - <input id="repo-clone-url" class="ipt ipt-disabled left" value="{{if $.DisableSSH}}{{$.CloneLink.HTTPS}}{{else}}{{$.CloneLink.SSH}}{{end}}" onclick="this.select();" readonly /> - <button id="repo-clone-copy" class="btn btn-black left btn-right-radius" data-copy-val="val" data-copy-from="#repo-clone-url" original-title="{{$.i18n.Tr "repo.click_to_copy"}}" data-original-title="{{$.i18n.Tr "repo.click_to_copy"}}" data-after-title="{{$.i18n.Tr "repo.copied"}}">{{$.i18n.Tr "repo.copy_link"}}</button> - <p class="text-center" id="repo-clone-help">{{$.i18n.Tr "repo.clone_helper" "http://git-scm.com/book/en/Git-Basics-Getting-a-Git-Repository" | Str2html}}</p> - <hr/> - <div class="text-center" id="repo-clone-zip"> - <a class="btn btn-green btn-radius" href="{{$.RepoLink}}/archive/{{EscapePound $.BranchName}}.zip"><i class="octicon octicon-file-zip"></i>ZIP</a> - <a class="btn btn-green btn-radius" href="{{$.RepoLink}}/archive/{{EscapePound $.BranchName}}.tar.gz"><i class="octicon octicon-file-zip"></i>TAR.GZ</a> - </div> - </div> - </div> - </li> <li id="repo-header-watch"> <a id="repo-header-watch-btn" href="{{$.RepoLink}}/action/{{if $.IsWatchingRepo}}un{{end}}watch"> <button class="btn btn-gray text-bold btn-radius"> |