comment: only show title of commit message from a commit ref (#3206)

master
Unknwon 2017-02-22 08:25:26 -05:00
parent 0cfa489cf0
commit 28983c94ff
No known key found for this signature in database
GPG Key ID: 25B575AE3213B2B3
4 changed files with 8 additions and 4 deletions

View File

@ -16,7 +16,7 @@ import (
"github.com/gogits/gogs/modules/setting"
)
const APP_VER = "0.9.165.0221 / 0.10 RC"
const APP_VER = "0.9.165.0222 / 0.10 RC"
func init() {
setting.AppVer = APP_VER

View File

@ -335,7 +335,12 @@ func UpdateIssuesCommit(doer *User, repo *Repository, commits []*PushCommit) err
}
refMarked[issue.ID] = true
message := fmt.Sprintf(`<a href="%s/commit/%s">%s</a>`, repo.Link(), c.Sha1, c.Message)
msgLines := strings.Split(c.Message, "\n")
shortMsg := msgLines[0]
if len(msgLines) > 2 {
shortMsg += "..."
}
message := fmt.Sprintf(`<a href="%s/commit/%s">%s</a>`, repo.Link(), c.Sha1, shortMsg)
if err = CreateRefComment(doer, repo, issue, message, c.Sha1); err != nil {
return err
}

View File

@ -1 +1 @@
0.9.165.0221 / 0.10 RC
0.9.165.0222 / 0.10 RC

View File

@ -138,7 +138,6 @@
<img src="{{.Poster.RelAvatarLink}}">
</a>
<span class="text grey"><a href="{{.Poster.HomeLink}}">{{.Poster.Name}}</a> {{$.i18n.Tr "repo.issues.commit_ref_at" .EventTag $createdStr | Safe}}</span>
<div class="detail">
<span class="octicon octicon-git-commit"></span>
<span class="text grey">{{.Content | Str2html}}</span>