mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	@@ -5,7 +5,7 @@ Gogs - Go Git Service [
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
##### Current version: 0.6.27 Beta
 | 
					##### Current version: 0.6.28 Beta
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<table>
 | 
					<table>
 | 
				
			||||||
    <tr>
 | 
					    <tr>
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										2
									
								
								gogs.go
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								gogs.go
									
									
									
									
									
								
							@@ -17,7 +17,7 @@ import (
 | 
				
			|||||||
	"github.com/gogits/gogs/modules/setting"
 | 
						"github.com/gogits/gogs/modules/setting"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const APP_VER = "0.6.27.1105 Beta"
 | 
					const APP_VER = "0.6.28.1106 Beta"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func init() {
 | 
					func init() {
 | 
				
			||||||
	runtime.GOMAXPROCS(runtime.NumCPU())
 | 
						runtime.GOMAXPROCS(runtime.NumCPU())
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -100,11 +100,20 @@ func (options *CustomRender) Link(out *bytes.Buffer, link []byte, title []byte,
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func (options *CustomRender) Image(out *bytes.Buffer, link []byte, title []byte, alt []byte) {
 | 
					func (options *CustomRender) Image(out *bytes.Buffer, link []byte, title []byte, alt []byte) {
 | 
				
			||||||
 | 
						prefix := strings.Replace(options.urlPrefix, "/src/", "/raw/", 1)
 | 
				
			||||||
	if len(link) > 0 && !isLink(link) {
 | 
						if len(link) > 0 && !isLink(link) {
 | 
				
			||||||
		link = []byte(path.Join(strings.Replace(options.urlPrefix, "/src/", "/raw/", 1), string(link)))
 | 
							if link[0] != '/' {
 | 
				
			||||||
 | 
								prefix += "/"
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							link = []byte(prefix + string(link))
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
						fmt.Println(2, string(link))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						out.WriteString(`<a href="`)
 | 
				
			||||||
 | 
						out.Write(link)
 | 
				
			||||||
 | 
						out.WriteString(`">`)
 | 
				
			||||||
	options.Renderer.Image(out, link, title, alt)
 | 
						options.Renderer.Image(out, link, title, alt)
 | 
				
			||||||
 | 
						out.WriteString("</a>")
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
var (
 | 
					var (
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1 +1 @@
 | 
				
			|||||||
0.6.27.1105 Beta
 | 
					0.6.28.1106 Beta
 | 
				
			||||||
		Reference in New Issue
	
	Block a user