Procházet zdrojové kódy

#2556 handle space in image URL

Unknwon před 9 roky
rodič
revize
8e40f86d2c
4 změnil soubory, kde provedl 7 přidání a 4 odebrání
  1. 1 1
      README.md
  2. 1 1
      gogs.go
  3. 4 1
      modules/base/markdown.go
  4. 1 1
      templates/.VERSION

+ 1 - 1
README.md

@@ -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 version: 0.8.29
+##### Current version: 0.8.30
 
 | Web | UI  | Preview  |
 |:-------------:|:-------:|:-------:|

+ 1 - 1
gogs.go

@@ -17,7 +17,7 @@ import (
 	"github.com/gogits/gogs/modules/setting"
 )
 
-const APP_VER = "0.8.29.0204"
+const APP_VER = "0.8.30.0204"
 
 func init() {
 	runtime.GOMAXPROCS(runtime.NumCPU())

+ 4 - 1
modules/base/markdown.go

@@ -157,6 +157,8 @@ func (options *CustomRender) ListItem(out *bytes.Buffer, text []byte, flags int)
 var (
 	svgSuffix         = []byte(".svg")
 	svgSuffixWithMark = []byte(".svg?")
+	spaceBytes        = []byte(" ")
+	spaceEncodedBytes = []byte("%20")
 )
 
 func (r *CustomRender) Image(out *bytes.Buffer, link []byte, title []byte, alt []byte) {
@@ -172,7 +174,8 @@ func (r *CustomRender) Image(out *bytes.Buffer, link []byte, title []byte, alt [
 			if link[0] != '/' {
 				prefix += "/"
 			}
-			link = []byte(prefix + string(link))
+			link = bytes.Replace([]byte((prefix + string(link))), spaceBytes, spaceEncodedBytes, -1)
+			fmt.Println(333, string(link))
 		}
 	}
 

+ 1 - 1
templates/.VERSION

@@ -1 +1 @@
-0.8.29.0204
+0.8.30.0204