mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 03:18:24 +00:00 
			
		
		
		
	Merge pull request #1992 from Gibheer/disable_version_display
fix #1957 - disable version display
This commit is contained in:
		| @@ -334,3 +334,5 @@ it-IT = it | ||||
|  | ||||
| [other] | ||||
| SHOW_FOOTER_BRANDING = false | ||||
| ; Show version information about gogs and go in the footer | ||||
| SHOW_FOOTER_VERSION = true | ||||
|   | ||||
| @@ -245,6 +245,7 @@ func Contexter() macaron.Handler { | ||||
|  | ||||
| 		ctx.Data["ShowRegistrationButton"] = setting.Service.ShowRegistrationButton | ||||
| 		ctx.Data["ShowFooterBranding"] = setting.ShowFooterBranding | ||||
| 		ctx.Data["ShowFooterVersion"] = setting.ShowFooterVersion | ||||
|  | ||||
| 		c.Map(ctx) | ||||
| 	} | ||||
|   | ||||
| @@ -178,6 +178,7 @@ var ( | ||||
|  | ||||
| 	// Other settings. | ||||
| 	ShowFooterBranding bool | ||||
| 	ShowFooterVersion  bool | ||||
|  | ||||
| 	// Global setting objects. | ||||
| 	Cfg          *ini.File | ||||
| @@ -425,6 +426,7 @@ func NewContext() { | ||||
| 	dateLangs = Cfg.Section("i18n.datelang").KeysHash() | ||||
|  | ||||
| 	ShowFooterBranding = Cfg.Section("other").Key("SHOW_FOOTER_BRANDING").MustBool() | ||||
| 	ShowFooterVersion = Cfg.Section("other").Key("SHOW_FOOTER_VERSION").MustBool() | ||||
|  | ||||
| 	HasRobotsTxt = com.IsFile(path.Join(CustomPath, "robots.txt")) | ||||
| } | ||||
|   | ||||
| @@ -2,7 +2,7 @@ | ||||
| 	<footer> | ||||
| 		<div class="ui container"> | ||||
| 			<div class="ui left"> | ||||
| 				© 2015 Gogs {{.i18n.Tr "version"}}: {{AppVer}} {{.i18n.Tr "page"}}: <strong>{{LoadTimes .PageStartTime}}</strong> {{.i18n.Tr "template"}}: <strong>{{call .TmplLoadTimes}}</strong> | ||||
| 				© 2015 Gogs {{ if .ShowFooterVersion }}{{.i18n.Tr "version"}}: {{AppVer}}{{ end }} {{.i18n.Tr "page"}}: <strong>{{LoadTimes .PageStartTime}}</strong> {{.i18n.Tr "template"}}: <strong>{{call .TmplLoadTimes}}</strong> | ||||
| 			</div> | ||||
| 			<div class="ui right links"> | ||||
| 				{{if .ShowFooterBranding}} | ||||
| @@ -20,7 +20,7 @@ | ||||
| 						</div> | ||||
|         </div> | ||||
| 				<a target="_blank" href="http://gogs.io">{{.i18n.Tr "website"}}</a> | ||||
| 				<span class="version">{{GoVer}}</span> | ||||
| 				{{ if .ShowFooterVersion }}<span class="version">{{GoVer}}</span>{{ end }} | ||||
| 			</div> | ||||
| 		</div> | ||||
| 	</footer> | ||||
| @@ -46,4 +46,4 @@ | ||||
| 	<script src="{{AppSubUrl}}/js/libs/emojify-1.1.0.min.js"></script> | ||||
| 	<script src="{{AppSubUrl}}/js/libs/clipboard-1.5.3.min.js"></script> | ||||
| 	 | ||||
| </html> | ||||
| </html> | ||||
|   | ||||
| @@ -1,7 +1,7 @@ | ||||
| 		</div> | ||||
| 		<footer id="footer"> | ||||
| 		    <div class="container clear"> | ||||
| 		        <p class="left" id="footer-rights">© 2015 Gogs · {{.i18n.Tr "version"}}: {{AppVer}} · {{.i18n.Tr "page"}}: <strong>{{LoadTimes .PageStartTime}}</strong> · | ||||
| 		        <p class="left" id="footer-rights">© 2015 Gogs · {{ if .ShowFooterVersion }}{{.i18n.Tr "version"}}: {{AppVer}}{{ end }} · {{.i18n.Tr "page"}}: <strong>{{LoadTimes .PageStartTime}}</strong> · | ||||
| 		            {{.i18n.Tr "template"}}: <strong>{{call .TmplLoadTimes}}</strong></p> | ||||
|  | ||||
| 		        <div class="right" id="footer-links"> | ||||
| @@ -21,9 +21,9 @@ | ||||
| 		                </div> | ||||
| 		            </div> | ||||
| 		            <a target="_blank" href="http://gogs.io">{{.i18n.Tr "website"}}</a> | ||||
| 		            <span class="version">{{GoVer}}</span> | ||||
| 		            {{ if .ShowVersionFooter }}<span class="version">{{GoVer}}</span>{{ end }} | ||||
| 		        </div> | ||||
| 		    </div> | ||||
| 		</footer> | ||||
| 	</body> | ||||
| </html> | ||||
| </html> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user