Browse Source

Do not show filename not have suffifx .md

tags/v0.9.99
Unknwon 8 years ago
parent
commit
e84ac64964
5 changed files with 7 additions and 7 deletions
  1. 1
    1
      README.md
  2. 1
    1
      gogs.go
  3. 2
    2
      modules/bindata/bindata.go
  4. 2
    2
      routers/repo/wiki.go
  5. 1
    1
      templates/.VERSION

+ 1
- 1
README.md View File

@@ -3,7 +3,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra

![](https://github.com/gogits/gogs/blob/master/public/img/gogs-large-resize.png?raw=true)

##### Current tip version: 0.9.33 (see [Releases](https://github.com/gogits/gogs/releases) for binary versions)
##### Current tip version: 0.9.34 (see [Releases](https://github.com/gogits/gogs/releases) for binary versions)

| Web | UI | Preview |
|:-------------:|:-------:|:-------:|

+ 1
- 1
gogs.go View File

@@ -17,7 +17,7 @@ import (
"github.com/gogits/gogs/modules/setting"
)

const APP_VER = "0.9.33.0630"
const APP_VER = "0.9.34.0630"

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

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


+ 2
- 2
routers/repo/wiki.go View File

@@ -64,7 +64,7 @@ func renderWikiPage(ctx *context.Context, isViewPage bool) (*git.Repository, str
}
pages := make([]PageMeta, 0, len(entries))
for i := range entries {
if entries[i].Type == git.OBJECT_BLOB {
if entries[i].Type == git.OBJECT_BLOB && strings.HasSuffix(entries[i].Name(), ".md") {
name := strings.TrimSuffix(entries[i].Name(), ".md")
pages = append(pages, PageMeta{
Name: name,
@@ -167,7 +167,7 @@ func WikiPages(ctx *context.Context) {
}
pages := make([]PageMeta, 0, len(entries))
for i := range entries {
if entries[i].Type == git.OBJECT_BLOB {
if entries[i].Type == git.OBJECT_BLOB && strings.HasSuffix(entries[i].Name(), ".md") {
c, err := wikiRepo.GetCommitByPath(entries[i].Name())
if err != nil {
ctx.Handle(500, "GetCommit", err)

+ 1
- 1
templates/.VERSION View File

@@ -1 +1 @@
0.9.33.0630
0.9.34.0630

Loading…
Cancel
Save