gitea

Development moved to Codeberg

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
  15. 15
  16. 16
  17. 17
  18. 18
  19. 19
  20. 20
  21. 21
  22. 22
  23. 23
  24. 24
  25. 25
  26. 26
  27. 27
  28. 28
  29. 29
  30. 30
  31. 31
  32. 32
  33. 33
  34. 34
  35. 35
  36. 36
  37. 37
  38. 38
  39. 39
  40. 40
  41. 41
  42. 42
  43. 43
  44. 44
  45. 45
  46. 46
  47. 47
  48. 48
  49. 49
  50. 50
  51. 51
  52. 52
  53. 53
  54. 54
  55. 55
  56. 56
  57. 57
  58. 58
  59. 59
  60. 60
  61. 61
  62. 62
  63. 63
  64. 64
  65. 65
  66. 66
  67. 67
  68. 68
  69. 69
  70. 70
  71. 71
  72. 72
  73. 73
  74. 74
  75. 75
  76. 76
  77. 77
  78. 78
  79. 79
  80. 80
  81. 81
  82. 82
  83. 83
  84. 84
  85. 85
  86. 86
  87. 87
  88. 88
  89. 89
  90. 90
  91. 91
  92. 92
  93. 93
  94. 94
  95. 95
  96. 96
  97. 97
  98. 98
  99. 99
  100. 100
  101. 101
  102. 102
  103. 103
  104. 104
  105. 105
  106. 106
  107. 107
  108. 108
  109. 109
  110. 110
  111. 111
  112. 112
  113. 113
  114. 114
  115. 115
  116. 116
  117. 117
  118. 118
  119. 119
  120. 120
  121. 121
  122. 122
  123. 123
  124. 124
  125. 125
  126. 126
  127. 127
  128. 128
  129. 129
  130. 130
  131. 131
  132. 132
  133. 133
  134. 134
  135. 135
  136. 136
  137. 137
  138. 138
  139. 139
  140. 140
  141. 141
  142. 142
  143. 143
  144. 144
  145. 145
  146. 146
  147. 147
  148. 148
  149. 149
  150. 150
  151. 151
  152. 152
  153. 153
  154. 154
  155. 155
  156. 156
  157. 157
  158. 158
  159. 159
  160. 160
  161. 161
  162. 162
  163. 163
  164. 164
  165. 165
  166. 166
  167. 167
  168. 168
  169. 169
  170. 170
  171. 171
  172. 172
  173. 173
  174. 174
  175. 175
  176. 176
  177. 177
  178. 178
  179. 179
  180. 180
  181. 181
{{template "base/head" .}}
<div class="page-content repository diff">
	{{template "repo/header" .}}
	<div class="ui container {{if .IsSplitStyle}}fluid padded{{end}}">
		{{$class := ""}}
		{{if .Commit.Signature}}
			{{$class = (printf "%s%s" $class " isSigned")}}
			{{if .Verification.Verified}}
				{{if eq .Verification.TrustStatus "trusted"}}
					{{$class = (printf "%s%s" $class " isVerified")}}
				{{else if eq .Verification.TrustStatus "untrusted"}}
					{{$class = (printf "%s%s" $class " isVerifiedUntrusted")}}
				{{else}}
					{{$class = (printf "%s%s" $class " isVerifiedUnmatched")}}
				{{end}}
			{{else if .Verification.Warning}}
				{{$class = (printf "%s%s" $class " isWarning")}}
			{{end}}
		{{end}}
		<div class="ui top attached header clearing segment pr {{$class}}">
			{{if not $.PageIsWiki}}
			<a class="ui blue tiny button browse-button" href="{{.SourcePath}}">
				{{.i18n.Tr "repo.diff.browse_source"}}
			</a>
			{{end}}
			<h3 class="mt-0"><span class="message-wrapper"><span class="commit-summary" title="{{.Commit.Summary}}">{{RenderCommitMessage $.Context .Commit.Message $.RepoLink $.Repository.ComposeMetas}}</span></span>{{template "repo/commit_statuses" dict "Status" .CommitStatus "Statuses" .CommitStatuses  "root" $}}</h3>
			{{if IsMultilineCommitMessage .Commit.Message}}
				<pre class="commit-body">{{RenderCommitBody $.Context .Commit.Message $.RepoLink $.Repository.ComposeMetas}}</pre>
			{{end}}
			{{if .BranchName}}
				<span class="text grey mr-3">{{svg "octicon-git-branch" 16 "mr-2"}}{{.BranchName}}</span>
			{{end}}
			{{if .TagName}}
				<span class="text grey mr-3">{{svg "octicon-tag" 16 "mr-2"}}{{.TagName}}</span>
			{{end}}
		</div>
		<div class="ui attached segment df ac sb py-2 commit-header-row {{$class}}">
				<div class="df ac">
					{{if .Author}}
						{{avatar .Author 28 "mr-3"}}
						{{if .Author.FullName}}
							<a href="{{.Author.HomeLink}}"><strong>{{.Author.FullName}}</strong></a>
						{{else}}
							<a href="{{.Author.HomeLink}}"><strong>{{.Commit.Author.Name}}</strong></a>
						{{end}}
					{{else}}
						{{avatarByEmail .Commit.Author.Email .Commit.Author.Email 28 "mr-3"}}
						<strong>{{.Commit.Author.Name}}</strong>
					{{end}}
					<span class="text grey ml-3" id="authored-time">{{TimeSince .Commit.Author.When $.i18n.Lang}}</span>
					{{if or (ne .Commit.Committer.Name .Commit.Author.Name) (ne .Commit.Committer.Email .Commit.Author.Email)}}
						<span class="text grey mx-3">{{.i18n.Tr "repo.diff.committed_by"}}</span>
						{{if ne .Verification.CommittingUser.ID 0}}
							{{avatar .Verification.CommittingUser 28 "mx-3"}}
							<a href="{{.Verification.CommittingUser.HomeLink}}"><strong>{{.Commit.Committer.Name}}</strong></a>
						{{else}}
							{{avatarByEmail .Commit.Committer.Email .Commit.Committer.Name 28 "mr-3"}}
							<strong>{{.Commit.Committer.Name}}</strong>
						{{end}}
					{{end}}
				</div>
				<div class="ui horizontal list df ac">
					{{if .Parents}}
						<div class="item">
							{{.i18n.Tr "repo.diff.parent"}}
						</div>
						<div class="item">
							{{range .Parents}}
								{{if $.PageIsWiki}}
									<a class="ui blue sha label" href="{{$.RepoLink}}/wiki/commit/{{PathEscape .}}">{{ShortSha .}}</a>
								{{else}}
									<a class="ui blue sha label" href="{{$.RepoLink}}/commit/{{PathEscape .}}">{{ShortSha .}}</a>
								{{end}}
							{{end}}
						</div>
					{{end}}
					<div class="mobile-only"></div>
					<div class="item">{{.i18n.Tr "repo.diff.commit"}}</div>
					<div class="item"><span class="ui blue sha label">{{ShortSha .CommitID}}</span></div>
				</div>
		</div>
		{{if .Commit.Signature}}
			<div class="ui bottom attached message tl df ac sb commit-header-row {{$class}}">
				<div class="df ac">
					{{if .Verification.Verified}}
						{{if ne .Verification.SigningUser.ID 0}}
							{{svg "gitea-lock" 16 "mr-3"}}
							{{if eq .Verification.TrustStatus "trusted"}}
								<span class="ui text mr-3">{{.i18n.Tr "repo.commits.signed_by"}}:</span>
							{{else if eq .Verification.TrustStatus "untrusted"}}
								<span class="ui text mr-3">{{.i18n.Tr "repo.commits.signed_by_untrusted_user"}}:</span>
							{{else}}
								<span class="ui text mr-3">{{.i18n.Tr "repo.commits.signed_by_untrusted_user_unmatched"}}:</span>
							{{end}}
							{{avatar .Verification.SigningUser 28}}
							<a href="{{.Verification.SigningUser.HomeLink}}"><strong>{{.Verification.SigningUser.Name}}</strong></a>
						{{else}}
							<span title="{{.i18n.Tr "gpg.default_key"}}">{{svg "gitea-lock-cog"}}</span>
							<span class="ui text">{{.i18n.Tr "repo.commits.signed_by"}}:</span>
							{{avatarByEmail .Verification.SigningEmail "" 28}}
							<strong>{{.Verification.SigningUser.Name}}</strong>
						{{end}}
					{{else}}
						{{svg "gitea-unlock" 16 "mr-3"}}
						<span class="ui text">{{.i18n.Tr .Verification.Reason}}</span>
					{{end}}
				</div>
				<div class="df ac">
					{{if .Verification.Verified}}
						{{if ne .Verification.SigningUser.ID 0}}
							{{svg "octicon-shield-check" 16 "mr-3"}}
							{{if .Verification.SigningSSHKey}}
								<span class="ui text mr-3">{{.i18n.Tr "repo.commits.ssh_key_fingerprint"}}:</span>
								{{.Verification.SigningSSHKey.Fingerprint}}
							{{else}}
								<span class="ui text mr-3">{{.i18n.Tr "repo.commits.gpg_key_id"}}:</span>
								{{.Verification.SigningKey.KeyID}}
							{{end}}
						{{else}}
							{{svg "octicon-shield-lock" 16 "mr-3"}}
							{{if .Verification.SigningSSHKey}}
								<span class="ui text mr-3 tooltip" data-content="{{.i18n.Tr "gpg.default_key"}}">{{.i18n.Tr "repo.commits.ssh_key_fingerprint"}}:</span>
								{{.Verification.SigningSSHKey.Fingerprint}}
							{{else}}
								<span class="ui text mr-3 tooltip" data-content="{{.i18n.Tr "gpg.default_key"}}">{{.i18n.Tr "repo.commits.gpg_key_id"}}:</span>
								{{.Verification.SigningKey.KeyID}}
							{{end}}
						{{end}}
					{{else if .Verification.Warning}}
						{{svg "octicon-shield" 16 "mr-3"}}
						{{if .Verification.SigningSSHKey}}
							<span class="ui text mr-3">{{.i18n.Tr "repo.commits.ssh_key_fingerprint"}}:</span>
							{{.Verification.SigningSSHKey.Fingerprint}}
						{{else}}
							<span class="ui text mr-3">{{.i18n.Tr "repo.commits.gpg_key_id"}}:</span>
							{{.Verification.SigningKey.KeyID}}
						{{end}}
					{{else}}
						{{if .Verification.SigningKey}}
							{{if ne .Verification.SigningKey.KeyID ""}}
								{{svg "octicon-shield" 16 "mr-3"}}
								<span class="ui text mr-3">{{.i18n.Tr "repo.commits.gpg_key_id"}}:</span>
								{{.Verification.SigningKey.KeyID}}
							{{end}}
						{{end}}
						{{if .Verification.SigningSSHKey}}
							{{if ne .Verification.SigningSSHKey.Fingerprint ""}}
								{{svg "octicon-shield" 16 "mr-3"}}
								<span class="ui text mr-3">{{.i18n.Tr "repo.commits.ssh_key_fingerprint"}}:</span>
								{{.Verification.SigningSSHKey.Fingerprint}}
							{{end}}
						{{end}}
					{{end}}
				</div>
			</div>
		{{end}}
		{{if .Note}}
			<div class="ui top attached header segment git-notes">
				{{svg "octicon-note" 16 "mr-3"}}
				{{.i18n.Tr "repo.diff.git-notes"}}:
				{{if .NoteAuthor}}
					<a href="{{.NoteAuthor.HomeLink}}">
						{{if .NoteAuthor.FullName}}
							<strong>{{.NoteAuthor.FullName}}</strong>
						{{else}}
							<strong>{{.NoteCommit.Author.Name}}</strong>
						{{end}}
					</a>
				{{else}}
					<strong>{{.NoteCommit.Author.Name}}</strong>
				{{end}}
				<span class="text grey" id="note-authored-time">{{TimeSince .NoteCommit.Author.When $.i18n.Lang}}</span>
			</div>
			<div class="ui bottom attached info segment git-notes">
				<pre class="commit-body">{{RenderNote $.Context .Note $.RepoLink $.Repository.ComposeMetas}}</pre>
			</div>
		{{end}}
		{{template "repo/diff/box" .}}
	</div>
</div>
{{template "base/footer" .}}