mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	Merge pull request 'Allow 's in mentions' (#2485) from algernon/forgejo:mentions/the-book-of-aposthropes into forgejo
		
	Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/2485 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
This commit is contained in:
		
				commit
				
					
						590f86796b
					
				
			
		
					 3 changed files with 9 additions and 1 deletions
				
			
		| 
						 | 
					@ -29,7 +29,7 @@ var (
 | 
				
			||||||
	// TODO: fix invalid linking issue
 | 
						// TODO: fix invalid linking issue
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// mentionPattern matches all mentions in the form of "@user" or "@org/team"
 | 
						// mentionPattern matches all mentions in the form of "@user" or "@org/team"
 | 
				
			||||||
	mentionPattern = regexp.MustCompile(`(?:\s|^|\(|\[)(@[0-9a-zA-Z-_]+|@[0-9a-zA-Z-_]+\/?[0-9a-zA-Z-_]+|@[0-9a-zA-Z-_][0-9a-zA-Z-_.]+\/?[0-9a-zA-Z-_.]+[0-9a-zA-Z-_])(?:\s|[:,;.?!]\s|[:,;.?!]?$|\)|\])`)
 | 
						mentionPattern = regexp.MustCompile(`(?:\s|^|\(|\[)(@[0-9a-zA-Z-_]+|@[0-9a-zA-Z-_]+\/?[0-9a-zA-Z-_]+|@[0-9a-zA-Z-_][0-9a-zA-Z-_.]+\/?[0-9a-zA-Z-_.]+[0-9a-zA-Z-_])(?:'|\s|[:,;.?!]\s|[:,;.?!]?$|\)|\])`)
 | 
				
			||||||
	// issueNumericPattern matches string that references to a numeric issue, e.g. #1287
 | 
						// issueNumericPattern matches string that references to a numeric issue, e.g. #1287
 | 
				
			||||||
	issueNumericPattern = regexp.MustCompile(`(?:\s|^|\(|\[|\')([#!][0-9]+)(?:\s|$|\)|\]|[:;,.?!]\s|[:;,.?!]$)`)
 | 
						issueNumericPattern = regexp.MustCompile(`(?:\s|^|\(|\[|\')([#!][0-9]+)(?:\s|$|\)|\]|[:;,.?!]\s|[:;,.?!]$)`)
 | 
				
			||||||
	// issueAlphanumericPattern matches string that references to an alphanumeric issue, e.g. ABC-1234
 | 
						// issueAlphanumericPattern matches string that references to an alphanumeric issue, e.g. ABC-1234
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -392,6 +392,9 @@ func TestRegExp_mentionPattern(t *testing.T) {
 | 
				
			||||||
		{"@gitea,", "@gitea"},
 | 
							{"@gitea,", "@gitea"},
 | 
				
			||||||
		{"@gitea;", "@gitea"},
 | 
							{"@gitea;", "@gitea"},
 | 
				
			||||||
		{"@gitea/team1;", "@gitea/team1"},
 | 
							{"@gitea/team1;", "@gitea/team1"},
 | 
				
			||||||
 | 
							{"@jess'", "@jess"},
 | 
				
			||||||
 | 
							{"@forgejo's", "@forgejo"},
 | 
				
			||||||
 | 
							{"Оно сломалось из-за коммитов от @jopik'а", "@jopik"},
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	falseTestCases := []string{
 | 
						falseTestCases := []string{
 | 
				
			||||||
		"@ 0",
 | 
							"@ 0",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -59,6 +59,11 @@ func TestMain(m *testing.M) {
 | 
				
			||||||
	os.Exit(m.Run())
 | 
						os.Exit(m.Run())
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestApostrophesInMentions(t *testing.T) {
 | 
				
			||||||
 | 
						rendered := RenderMarkdownToHtml(context.Background(), "@mention-user's comment")
 | 
				
			||||||
 | 
						assert.EqualValues(t, "<p><a href=\"http://localhost:3000/mention-user\" rel=\"nofollow\">@mention-user</a>'s comment</p>\n", rendered)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func TestRenderCommitBody(t *testing.T) {
 | 
					func TestRenderCommitBody(t *testing.T) {
 | 
				
			||||||
	type args struct {
 | 
						type args struct {
 | 
				
			||||||
		ctx   context.Context
 | 
							ctx   context.Context
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue