Browse Source

#1602 Wrong commit order on issue page when pushing multiple commits

tags/v0.9.99
Unknwon 8 years ago
parent
commit
6dfee30bf0
9 changed files with 29 additions and 27 deletions
  1. 1
    1
      README.md
  2. 2
    0
      conf/app.ini
  3. 1
    1
      gogs.go
  4. 9
    1
      models/action.go
  5. 4
    8
      models/repo.go
  6. 2
    8
      models/update.go
  7. 2
    2
      modules/bindata/bindata.go
  8. 7
    5
      modules/setting/setting.go
  9. 1
    1
      templates/.VERSION

+ 1
- 1
README.md View File



![](public/img/gogs-large-resize.png) ![](public/img/gogs-large-resize.png)


##### Current version: 0.6.14 Beta
##### Current version: 0.6.15 Beta


<table> <table>
<tr> <tr>

+ 2
- 0
conf/app.ini View File

EXPLORE_PAGING_NUM = 20 EXPLORE_PAGING_NUM = 20
; Number of issues that are showed in one page ; Number of issues that are showed in one page
ISSUE_PAGING_NUM = 10 ISSUE_PAGING_NUM = 10
; Number of maximum commits showed in one activity feed
FEED_MAX_COMMIT_NUM = 5


[ui.admin] [ui.admin]
; Number of users that are showed in one page ; Number of users that are showed in one page

+ 1
- 1
gogs.go View File

"github.com/gogits/gogs/modules/setting" "github.com/gogits/gogs/modules/setting"
) )


const APP_VER = "0.6.14.0925 Beta"
const APP_VER = "0.6.15.0925 Beta"


func init() { func init() {
runtime.GOMAXPROCS(runtime.NumCPU()) runtime.GOMAXPROCS(runtime.NumCPU())

+ 9
- 1
models/action.go View File



// updateIssuesCommit checks if issues are manipulated by commit message. // updateIssuesCommit checks if issues are manipulated by commit message.
func updateIssuesCommit(u *User, repo *Repository, repoUserName, repoName string, commits []*base.PushCommit) error { func updateIssuesCommit(u *User, repo *Repository, repoUserName, repoName string, commits []*base.PushCommit) error {
for _, c := range commits {
// Commits are appended in the reverse order.
for i := len(commits) - 1; i >= 0; i-- {
c := commits[i]
fmt.Println(c)

refMarked := make(map[int64]bool) refMarked := make(map[int64]bool)
for _, ref := range IssueReferenceKeywordsPat.FindAllString(c.Message, -1) { for _, ref := range IssueReferenceKeywordsPat.FindAllString(c.Message, -1) {
ref = ref[strings.IndexByte(ref, byte(' '))+1:] ref = ref[strings.IndexByte(ref, byte(' '))+1:]
} }
} }


if len(commit.Commits) > setting.FeedMaxCommitNum {
commit.Commits = commit.Commits[:setting.FeedMaxCommitNum]
}

bs, err := json.Marshal(commit) bs, err := json.Marshal(commit)
if err != nil { if err != nil {
return fmt.Errorf("Marshal: %v", err) return fmt.Errorf("Marshal: %v", err)

+ 4
- 8
models/repo.go View File

} }


// RepositoriesWithUsers returns number of repos in given page. // RepositoriesWithUsers returns number of repos in given page.
func RepositoriesWithUsers(page, pageSize int) ([]*Repository, error) {
func RepositoriesWithUsers(page, pageSize int) (_ []*Repository, err error) {
repos := make([]*Repository, 0, pageSize) repos := make([]*Repository, 0, pageSize)
if err := x.Limit(pageSize, (page-1)*pageSize).Asc("id").Find(&repos); err != nil {
if err = x.Limit(pageSize, (page-1)*pageSize).Asc("id").Find(&repos); err != nil {
return nil, err return nil, err
} }


for _, repo := range repos {
repo.Owner = &User{Id: repo.OwnerID}
has, err := x.Get(repo.Owner)
if err != nil {
for i := range repos {
if err = repos[i].GetOwner(); err != nil {
return nil, err return nil, err
} else if !has {
return nil, ErrUserNotExist{repo.OwnerID, ""}
} }
} }



+ 2
- 8
models/update.go View File

NewCommitId string NewCommitId string
} }


const (
MAX_COMMITS int = 5
)

func AddUpdateTask(task *UpdateTask) error { func AddUpdateTask(task *UpdateTask) error {
_, err := x.Insert(task) _, err := x.Insert(task)
return err return err
&base.PushCommit{commit.Id.String(), &base.PushCommit{commit.Id.String(),
commit.Message(), commit.Message(),
commit.Author.Email, commit.Author.Email,
commit.Author.Name})
if len(commits) >= MAX_COMMITS {
break
}
commit.Author.Name,
})
} }


if err = CommitRepoAction(userId, ru.Id, userName, actEmail, if err = CommitRepoAction(userId, ru.Id, userName, actEmail,

+ 2
- 2
modules/bindata/bindata.go
File diff suppressed because it is too large
View File


+ 7
- 5
modules/setting/setting.go View File

AnsiCharset string AnsiCharset string


// UI settings. // UI settings.
ExplorePagingNum int
IssuePagingNum int
AdminUserPagingNum int
AdminRepoPagingNum int
ExplorePagingNum int
IssuePagingNum int
FeedMaxCommitNum int
AdminUserPagingNum int
AdminRepoPagingNum int
AdminNoticePagingNum int AdminNoticePagingNum int
AdminOrgPagingNum int
AdminOrgPagingNum int


// Markdown sttings. // Markdown sttings.
Markdown struct { Markdown struct {
sec = Cfg.Section("ui") sec = Cfg.Section("ui")
ExplorePagingNum = sec.Key("EXPLORE_PAGING_NUM").MustInt(20) ExplorePagingNum = sec.Key("EXPLORE_PAGING_NUM").MustInt(20)
IssuePagingNum = sec.Key("ISSUE_PAGING_NUM").MustInt(10) IssuePagingNum = sec.Key("ISSUE_PAGING_NUM").MustInt(10)
FeedMaxCommitNum = sec.Key("FEED_MAX_COMMIT_NUM").MustInt(5)


sec = Cfg.Section("ui.admin") sec = Cfg.Section("ui.admin")
AdminUserPagingNum = sec.Key("USER_PAGING_NUM").MustInt(50) AdminUserPagingNum = sec.Key("USER_PAGING_NUM").MustInt(50)

+ 1
- 1
templates/.VERSION View File

0.6.14.0925 Beta
0.6.15.0925 Beta

Loading…
Cancel
Save