mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	fixes for binary
This commit is contained in:
		@@ -198,7 +198,6 @@ func RenderRawMarkdown(body []byte, urlPrefix string) []byte {
 | 
				
			|||||||
	extensions |= blackfriday.EXTENSION_FENCED_CODE
 | 
						extensions |= blackfriday.EXTENSION_FENCED_CODE
 | 
				
			||||||
	extensions |= blackfriday.EXTENSION_AUTOLINK
 | 
						extensions |= blackfriday.EXTENSION_AUTOLINK
 | 
				
			||||||
	extensions |= blackfriday.EXTENSION_STRIKETHROUGH
 | 
						extensions |= blackfriday.EXTENSION_STRIKETHROUGH
 | 
				
			||||||
	extensions |= blackfriday.EXTENSION_HARD_LINE_BREAK
 | 
					 | 
				
			||||||
	extensions |= blackfriday.EXTENSION_SPACE_HEADERS
 | 
						extensions |= blackfriday.EXTENSION_SPACE_HEADERS
 | 
				
			||||||
	extensions |= blackfriday.EXTENSION_NO_EMPTY_LINE_BEFORE_BLOCK
 | 
						extensions |= blackfriday.EXTENSION_NO_EMPTY_LINE_BEFORE_BLOCK
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -27,7 +27,6 @@ func ServeBlob(ctx *middleware.Context, blob *git.Blob) error {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	_, isTextFile := base.IsTextFile(buf)
 | 
						_, isTextFile := base.IsTextFile(buf)
 | 
				
			||||||
	_, isImageFile := base.IsImageFile(buf)
 | 
						_, isImageFile := base.IsImageFile(buf)
 | 
				
			||||||
	ctx.Resp.Header().Set("Content-Type", "text/plain")
 | 
					 | 
				
			||||||
	if !isTextFile && !isImageFile {
 | 
						if !isTextFile && !isImageFile {
 | 
				
			||||||
		ctx.Resp.Header().Set("Content-Disposition", "attachment; filename="+path.Base(ctx.Repo.TreeName))
 | 
							ctx.Resp.Header().Set("Content-Disposition", "attachment; filename="+path.Base(ctx.Repo.TreeName))
 | 
				
			||||||
		ctx.Resp.Header().Set("Content-Transfer-Encoding", "binary")
 | 
							ctx.Resp.Header().Set("Content-Transfer-Encoding", "binary")
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user