mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18:25 +00:00 
			
		
		
		
	URL fix for #2287
This commit is contained in:
		@@ -123,6 +123,10 @@ func (a *Action) ShortRepoName() string {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func (a *Action) GetRepoPath() string {
 | 
					func (a *Action) GetRepoPath() string {
 | 
				
			||||||
 | 
						return path.Join(a.RepoUserName, a.RepoName)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func (a *Action) ShortRepoPath() string {
 | 
				
			||||||
	return path.Join(a.ShortRepoUserName(), a.ShortRepoName())
 | 
						return path.Join(a.ShortRepoUserName(), a.ShortRepoName())
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -3030,6 +3030,13 @@ footer .container .links > *:first-child {
 | 
				
			|||||||
.feeds .news .commit-id {
 | 
					.feeds .news .commit-id {
 | 
				
			||||||
  font-family: Consolas, monospace;
 | 
					  font-family: Consolas, monospace;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					.feeds .news code {
 | 
				
			||||||
 | 
					  padding: 1px;
 | 
				
			||||||
 | 
					  font-size: 85%;
 | 
				
			||||||
 | 
					  background-color: rgba(0, 0, 0, 0.04);
 | 
				
			||||||
 | 
					  border-radius: 3px;
 | 
				
			||||||
 | 
					  word-break: break-all;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
.feeds .list .header {
 | 
					.feeds .list .header {
 | 
				
			||||||
  padding-top: 10px;
 | 
					  padding-top: 10px;
 | 
				
			||||||
  padding-bottom: 5px;
 | 
					  padding-bottom: 5px;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -86,6 +86,13 @@
 | 
				
			|||||||
		.commit-id {
 | 
							.commit-id {
 | 
				
			||||||
			font-family: Consolas, monospace;
 | 
								font-family: Consolas, monospace;
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
							code {
 | 
				
			||||||
 | 
								padding: 1px;
 | 
				
			||||||
 | 
								font-size: 85%;
 | 
				
			||||||
 | 
								background-color: rgba(0, 0, 0, 0.04);
 | 
				
			||||||
 | 
								border-radius: 3px;
 | 
				
			||||||
 | 
								word-break: break-all;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	.list {
 | 
						.list {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -9,28 +9,28 @@
 | 
				
			|||||||
					<p>
 | 
										<p>
 | 
				
			||||||
						<a href="{{AppSubUrl}}/{{.GetActUserName}}">{{.ShortActUserName}}</a>
 | 
											<a href="{{AppSubUrl}}/{{.GetActUserName}}">{{.ShortActUserName}}</a>
 | 
				
			||||||
						{{if eq .GetOpType 1}}
 | 
											{{if eq .GetOpType 1}}
 | 
				
			||||||
							{{$.i18n.Tr "action.create_repo" .GetRepoLink .GetRepoPath | Str2html}}
 | 
												{{$.i18n.Tr "action.create_repo" .GetRepoLink .ShortRepoPath | Str2html}}
 | 
				
			||||||
						{{else if eq .GetOpType 2}}
 | 
											{{else if eq .GetOpType 2}}
 | 
				
			||||||
							{{$.i18n.Tr "action.rename_repo" .GetContent .GetRepoLink .GetRepoPath | Str2html}}
 | 
												{{$.i18n.Tr "action.rename_repo" .GetContent .GetRepoLink .ShortRepoPath | Str2html}}
 | 
				
			||||||
						{{else if eq .GetOpType 5}}
 | 
											{{else if eq .GetOpType 5}}
 | 
				
			||||||
							{{ $branchLink := .GetBranch | EscapePound}}
 | 
												{{ $branchLink := .GetBranch | EscapePound}}
 | 
				
			||||||
							{{$.i18n.Tr "action.commit_repo" .GetRepoLink $branchLink .GetBranch .GetRepoPath | Str2html}}
 | 
												{{$.i18n.Tr "action.commit_repo" .GetRepoLink $branchLink .GetBranch .ShortRepoPath | Str2html}}
 | 
				
			||||||
						{{else if eq .GetOpType 6}}
 | 
											{{else if eq .GetOpType 6}}
 | 
				
			||||||
							{{ $index := index .GetIssueInfos 0}}
 | 
												{{ $index := index .GetIssueInfos 0}}
 | 
				
			||||||
							{{$.i18n.Tr "action.create_issue" .GetRepoLink $index .GetRepoPath | Str2html}}
 | 
												{{$.i18n.Tr "action.create_issue" .GetRepoLink $index .ShortRepoPath | Str2html}}
 | 
				
			||||||
						{{else if eq .GetOpType 7}}
 | 
											{{else if eq .GetOpType 7}}
 | 
				
			||||||
							{{ $index := index .GetIssueInfos 0}}
 | 
												{{ $index := index .GetIssueInfos 0}}
 | 
				
			||||||
							{{$.i18n.Tr "action.create_pull_request" .GetRepoLink $index .GetRepoPath | Str2html}}
 | 
												{{$.i18n.Tr "action.create_pull_request" .GetRepoLink $index .ShortRepoPath | Str2html}}
 | 
				
			||||||
						{{else if eq .GetOpType 8}}
 | 
											{{else if eq .GetOpType 8}}
 | 
				
			||||||
							{{$.i18n.Tr "action.transfer_repo" .GetContent .GetRepoLink .GetRepoPath | Str2html}}
 | 
												{{$.i18n.Tr "action.transfer_repo" .GetContent .GetRepoLink .ShortRepoPath | Str2html}}
 | 
				
			||||||
						{{else if eq .GetOpType 9}}
 | 
											{{else if eq .GetOpType 9}}
 | 
				
			||||||
							{{$.i18n.Tr "action.push_tag" .GetRepoLink .GetBranch .GetRepoPath | Str2html}}
 | 
												{{$.i18n.Tr "action.push_tag" .GetRepoLink .GetBranch .ShortRepoPath | Str2html}}
 | 
				
			||||||
						{{else if eq .GetOpType 10}}
 | 
											{{else if eq .GetOpType 10}}
 | 
				
			||||||
							{{ $index := index .GetIssueInfos 0}}
 | 
												{{ $index := index .GetIssueInfos 0}}
 | 
				
			||||||
							{{$.i18n.Tr "action.comment_issue" .GetRepoLink $index .GetRepoPath | Str2html}}
 | 
												{{$.i18n.Tr "action.comment_issue" .GetRepoLink $index .ShortRepoPath | Str2html}}
 | 
				
			||||||
						{{else if eq .GetOpType 11}}
 | 
											{{else if eq .GetOpType 11}}
 | 
				
			||||||
							{{ $index := index .GetIssueInfos 0}}
 | 
												{{ $index := index .GetIssueInfos 0}}
 | 
				
			||||||
							{{$.i18n.Tr "action.merge_pull_request" .GetRepoLink $index .GetRepoPath | Str2html}}
 | 
												{{$.i18n.Tr "action.merge_pull_request" .GetRepoLink $index .ShortRepoPath | Str2html}}
 | 
				
			||||||
						{{end}}
 | 
											{{end}}
 | 
				
			||||||
					</p>
 | 
										</p>
 | 
				
			||||||
					{{if eq .GetOpType 5}}
 | 
										{{if eq .GetOpType 5}}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user