* Add MaxDisplayFileSize setting * Don't show files that are too large * Localized FileTooLarge * Change IsFileTooBig => IsFileTooLarge
This commit is contained in:
		
							parent
							
								
									de10387f41
								
							
						
					
					
						commit
						f4ab50501e
					
				@ -31,6 +31,8 @@ FEED_MAX_COMMIT_NUM = 5
 | 
			
		||||
; An invalid color like "none" or "disable" will have the default style
 | 
			
		||||
; More info: https://developers.google.com/web/updates/2014/11/Support-for-theme-color-in-Chrome-39-for-Android
 | 
			
		||||
THEME_COLOR_META_TAG = `#ff5343`
 | 
			
		||||
; Max size of files to be displayed (defaults is 8MiB)
 | 
			
		||||
MAX_DISPLAY_FILE_SIZE = 8388608
 | 
			
		||||
 | 
			
		||||
[ui.admin]
 | 
			
		||||
; Number of users that are showed in one page
 | 
			
		||||
 | 
			
		||||
@ -409,6 +409,7 @@ file_raw = Raw
 | 
			
		||||
file_history = History
 | 
			
		||||
file_view_raw = View Raw
 | 
			
		||||
file_permalink = Permalink
 | 
			
		||||
file_too_large = This file is too large to be shown
 | 
			
		||||
 | 
			
		||||
commits.commits = Commits
 | 
			
		||||
commits.search = Search commits
 | 
			
		||||
 | 
			
		||||
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							@ -123,6 +123,7 @@ var (
 | 
			
		||||
	AdminNoticePagingNum int
 | 
			
		||||
	AdminOrgPagingNum    int
 | 
			
		||||
	ThemeColorMetaTag    string
 | 
			
		||||
	MaxDisplayFileSize   int64
 | 
			
		||||
 | 
			
		||||
	// Markdown sttings
 | 
			
		||||
	Markdown struct {
 | 
			
		||||
@ -441,6 +442,7 @@ func NewContext() {
 | 
			
		||||
	ExplorePagingNum = sec.Key("EXPLORE_PAGING_NUM").MustInt(20)
 | 
			
		||||
	IssuePagingNum = sec.Key("ISSUE_PAGING_NUM").MustInt(10)
 | 
			
		||||
	FeedMaxCommitNum = sec.Key("FEED_MAX_COMMIT_NUM").MustInt(5)
 | 
			
		||||
	MaxDisplayFileSize = sec.Key("MAX_DISPLAY_FILE_SIZE").MustInt64(8388608)
 | 
			
		||||
 | 
			
		||||
	sec = Cfg.Section("ui.admin")
 | 
			
		||||
	AdminUserPagingNum = sec.Key("USER_PAGING_NUM").MustInt(50)
 | 
			
		||||
 | 
			
		||||
@ -19,6 +19,7 @@ import (
 | 
			
		||||
	"github.com/gogits/gogs/modules/context"
 | 
			
		||||
	"github.com/gogits/gogs/modules/log"
 | 
			
		||||
	"github.com/gogits/gogs/modules/markdown"
 | 
			
		||||
	"github.com/gogits/gogs/modules/setting"
 | 
			
		||||
	"github.com/gogits/gogs/modules/template"
 | 
			
		||||
	"github.com/gogits/gogs/modules/template/highlight"
 | 
			
		||||
)
 | 
			
		||||
@ -104,6 +105,10 @@ func Home(ctx *context.Context) {
 | 
			
		||||
			case isImageFile:
 | 
			
		||||
				ctx.Data["IsImageFile"] = true
 | 
			
		||||
			case isTextFile:
 | 
			
		||||
				if blob.Size() >= setting.MaxDisplayFileSize {
 | 
			
		||||
					ctx.Data["IsFileTooLarge"] = true
 | 
			
		||||
				} else {
 | 
			
		||||
					ctx.Data["IsFileTooLarge"] = false
 | 
			
		||||
					d, _ := ioutil.ReadAll(dataRc)
 | 
			
		||||
					buf = append(buf, d...)
 | 
			
		||||
					readmeExist := markdown.IsMarkdownFile(blob.Name()) || markdown.IsReadmeFile(blob.Name())
 | 
			
		||||
@ -122,6 +127,7 @@ func Home(ctx *context.Context) {
 | 
			
		||||
					}
 | 
			
		||||
				}
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
	} else {
 | 
			
		||||
		// Directory and file list.
 | 
			
		||||
		tree, err := ctx.Repo.Commit.SubTree(treename)
 | 
			
		||||
 | 
			
		||||
@ -41,8 +41,12 @@
 | 
			
		||||
				<table>
 | 
			
		||||
					<tbody>
 | 
			
		||||
						<tr>
 | 
			
		||||
						{{if .IsFileTooLarge}}
 | 
			
		||||
							<td><strong>{{.i18n.Tr "repo.file_too_large"}}</strong></td>
 | 
			
		||||
						{{else}}
 | 
			
		||||
							<td class="lines-num"></td>
 | 
			
		||||
							<td class="lines-code"><pre><code class="{{.HighlightClass}}"><ol class="linenums">{{.FileContent}}</ol></code></pre></td>
 | 
			
		||||
						{{end}}
 | 
			
		||||
						</tr>
 | 
			
		||||
					</tbody>
 | 
			
		||||
				</table>
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user