update repo page

release/v0.9
Lunny Xiao 10 years ago
parent 18ba149137
commit 3a1fa012f7

@ -268,13 +268,21 @@ const (
) )
type RepoFile struct { type RepoFile struct {
Type int Type int
Name string Name string
Message string
Created time.Time Created time.Time
} }
func GetReposFiles(userName, reposName, treeName, rpath string) ([]RepoFile, error) { func (f *RepoFile) IsFile() bool {
return f.Type == git.FilemodeBlob || f.Type == git.FilemodeBlobExecutable
}
func (f *RepoFile) IsDir() bool {
return f.Type == git.FilemodeTree
}
func GetReposFiles(userName, reposName, treeName, rpath string) ([]*RepoFile, error) {
f := RepoPath(userName, reposName) f := RepoPath(userName, reposName)
repo, err := git.OpenRepository(f) repo, err := git.OpenRepository(f)
if err != nil { if err != nil {
@ -286,7 +294,7 @@ func GetReposFiles(userName, reposName, treeName, rpath string) ([]RepoFile, err
return nil, err return nil, err
} }
lastCommit := obj.(*git.Commit) lastCommit := obj.(*git.Commit)
var repofiles []RepoFile var repofiles []*RepoFile
tree, err := lastCommit.Tree() tree, err := lastCommit.Tree()
if err != nil { if err != nil {
return nil, err return nil, err
@ -294,10 +302,12 @@ func GetReposFiles(userName, reposName, treeName, rpath string) ([]RepoFile, err
var i uint64 = 0 var i uint64 = 0
for ; i < tree.EntryCount(); i++ { for ; i < tree.EntryCount(); i++ {
entry := tree.EntryByIndex(i) entry := tree.EntryByIndex(i)
repofiles = append(repofiles, RepoFile{
repofiles = append(repofiles, &RepoFile{
entry.Filemode, entry.Filemode,
entry.Name, entry.Name,
time.Now(), lastCommit.Message(),
lastCommit.Committer().When,
}) })
} }

@ -23,7 +23,6 @@ func Single(params martini.Params, r render.Render, data base.TmplData) {
} }
data["IsRepoToolbarSource"] = true data["IsRepoToolbarSource"] = true
data["Files"] = files data["Files"] = files
r.HTML(200, "repo/single", data) r.HTML(200, "repo/single", data)

@ -6,7 +6,7 @@
<h4>Source Files:</h4> <h4>Source Files:</h4>
<ul> <ul>
{{range .Files}} {{range .Files}}
<li>{{.Name}} - {{.Type}}</li> <li>{{.Name}} - {{.Message}} - {{.Created}} - {{.IsFile}} - {{.IsDir}}</li>
{{end}} {{end}}
</ul> </ul>
</div> </div>

Loading…
Cancel
Save