mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Close #24104 This also introduces many tests to cover many complex error handling functions. ### Before The details are never shown in production. <details>  </details> ### After The details could be shown to site admin users. It is safe. 
		
			
				
	
	
		
			48 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
{{/*
 | 
						|
==== DO NOT EDIT ====
 | 
						|
If you are customizing Gitea, please do not change this file.
 | 
						|
If you introduce mistakes in it, Gitea JavaScript code wouldn't run correctly.
 | 
						|
*/}}
 | 
						|
<script>
 | 
						|
	window.addEventListener('error', function(e) {window._globalHandlerErrors=window._globalHandlerErrors||[]; window._globalHandlerErrors.push(e);});
 | 
						|
	window.config = {
 | 
						|
		initCount: (window.config?.initCount ?? 0) + 1,
 | 
						|
		appUrl: '{{AppUrl}}',
 | 
						|
		appSubUrl: '{{AppSubUrl}}',
 | 
						|
		assetVersionEncoded: encodeURIComponent('{{AssetVersion}}'), // will be used in URL construction directly
 | 
						|
		assetUrlPrefix: '{{AssetUrlPrefix}}',
 | 
						|
		runModeIsProd: {{.RunModeIsProd}},
 | 
						|
		customEmojis: {{CustomEmojis}},
 | 
						|
		useServiceWorker: {{UseServiceWorker}},
 | 
						|
		csrfToken: '{{.CsrfToken}}',
 | 
						|
		pageData: {{.PageData}},
 | 
						|
		notificationSettings: {{NotificationSettings}}, {{/*a map provided by NewFuncMap in helper.go*/}}
 | 
						|
		enableTimeTracking: {{EnableTimetracking}},
 | 
						|
		{{if or .Participants .Assignees .MentionableTeams}}
 | 
						|
		tributeValues: Array.from(new Map([
 | 
						|
			{{- range .Participants -}}
 | 
						|
				['{{.Name}}', {key: '{{.Name}} {{.FullName}}', value: '{{.Name}}', name: '{{.Name}}', fullname: '{{.FullName}}', avatar: '{{.AvatarLink $.Context}}'}],
 | 
						|
			{{- end -}}
 | 
						|
			{{- range .Assignees -}}
 | 
						|
				['{{.Name}}', {key: '{{.Name}} {{.FullName}}', value: '{{.Name}}', name: '{{.Name}}', fullname: '{{.FullName}}', avatar: '{{.AvatarLink $.Context}}'}],
 | 
						|
			{{- end -}}
 | 
						|
			{{- range .MentionableTeams -}}
 | 
						|
				['{{$.MentionableTeamsOrg}}/{{.Name}}', {key: '{{$.MentionableTeamsOrg}}/{{.Name}}', value: '{{$.MentionableTeamsOrg}}/{{.Name}}', name: '{{$.MentionableTeamsOrg}}/{{.Name}}', avatar: '{{$.MentionableTeamsOrgAvatar}}'}],
 | 
						|
			{{- end -}}
 | 
						|
		]).values()),
 | 
						|
		{{end}}
 | 
						|
		mermaidMaxSourceCharacters: {{MermaidMaxSourceCharacters}},
 | 
						|
		{{/* this global i18n object should only contain general texts. for specialized texts, it should be provided inside the related modules by: (1) API response (2) HTML data-attribute (3) PageData */}}
 | 
						|
		i18n: {
 | 
						|
			copy_success: '{{.locale.Tr "copy_success"}}',
 | 
						|
			copy_error: '{{.locale.Tr "copy_error"}}',
 | 
						|
			error_occurred: '{{.locale.Tr "error.occurred"}}',
 | 
						|
			network_error: '{{.locale.Tr "error.network_error"}}',
 | 
						|
			remove_label_str: '{{.locale.Tr "remove_label_str"}}',
 | 
						|
		},
 | 
						|
	};
 | 
						|
	{{/* in case some pages don't render the pageData, we make sure it is an object to prevent null access */}}
 | 
						|
	window.config.pageData = window.config.pageData || {};
 | 
						|
</script>
 | 
						|
<script src="{{AssetUrlPrefix}}/js/webcomponents.js?v={{AssetVersion}}"></script>
 |