Skip to content

Commit e98dd6e

Browse files
wxiaoguangdelvh
andauthored
Backport 1.23 (#32868)
Co-authored-by: delvh <[email protected]>
1 parent 22c4599 commit e98dd6e

File tree

16 files changed

+209
-8
lines changed

16 files changed

+209
-8
lines changed

models/actions/run_job_status_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ func TestAggregateJobStatus(t *testing.T) {
6969
{[]Status{StatusFailure, StatusBlocked}, StatusFailure},
7070

7171
// skipped with other status
72-
// TODO: need to clarify whether a PR with "skipped" job status is considered as "mergeable" or not.
72+
// "all skipped" is also considered as "mergeable" by "services/actions.toCommitStatus", the same as GitHub
7373
{[]Status{StatusSkipped}, StatusSkipped},
7474
{[]Status{StatusSkipped, StatusSuccess}, StatusSuccess},
7575
{[]Status{StatusSkipped, StatusFailure}, StatusFailure},

modules/markup/markdown/markdown.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,8 @@ func SpecializedMarkdown(ctx *markup.RenderContext) *GlodmarkRender {
129129
Enabled: setting.Markdown.EnableMath,
130130
ParseDollarInline: true,
131131
ParseDollarBlock: true,
132-
ParseSquareBlock: true, // TODO: this is a bad syntax, it should be deprecated in the future (by some config options)
132+
ParseSquareBlock: true, // TODO: this is a bad syntax "\[ ... \]", it conflicts with normal markdown escaping, it should be deprecated in the future (by some config options)
133+
// ParseBracketInline: true, // TODO: this is also a bad syntax "\( ... \)", it also conflicts, it should be deprecated in the future
133134
}),
134135
meta.Meta,
135136
),

modules/repository/fork.go

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ import (
1212
"code.gitea.io/gitea/modules/setting"
1313
)
1414

15+
// CanUserForkBetweenOwners returns true if user can fork between owners.
16+
// By default, a user can fork a repository from another owner, but not from themselves.
17+
// Many users really like to fork their own repositories, so add an experimental setting to allow this.
1518
func CanUserForkBetweenOwners(id1, id2 int64) bool {
1619
if id1 != id2 {
1720
return true

options/locale/locale_fr-FR.ini

-1
Original file line numberDiff line numberDiff line change
@@ -1676,7 +1676,6 @@ issues.timetracker_timer_stop=Arrêter le minuteur
16761676
issues.timetracker_timer_discard=Annuler le minuteur
16771677
issues.timetracker_timer_manually_add=Pointer du temps
16781678
1679-
issues.time_estimate_placeholder=1h 2m
16801679
issues.time_estimate_set=Définir le temps estimé
16811680
issues.time_estimate_display=Estimation : %s
16821681
issues.change_time_estimate_at=a changé le temps estimé à <b>%s</b> %s

options/locale/locale_ga-IE.ini

-1
Original file line numberDiff line numberDiff line change
@@ -1676,7 +1676,6 @@ issues.timetracker_timer_stop=Stop an t-amadóir
16761676
issues.timetracker_timer_discard=Déan an t-amadóir a scriosadh
16771677
issues.timetracker_timer_manually_add=Cuir Am leis
16781678

1679-
issues.time_estimate_placeholder=1u 2n
16801679
issues.time_estimate_set=Socraigh am measta
16811680
issues.time_estimate_display=Meastachán: %s
16821681
issues.change_time_estimate_at=d'athraigh an meastachán ama go <b>%s</b> %s

options/locale/locale_pt-PT.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1679,7 +1679,6 @@ issues.timetracker_timer_stop=Parar cronómetro
16791679
issues.timetracker_timer_discard=Descartar cronómetro
16801680
issues.timetracker_timer_manually_add=Adicionar tempo
16811681

1682-
issues.time_estimate_placeholder=1h 2m
16831682
issues.time_estimate_set=Definir tempo estimado
16841683
issues.time_estimate_display=Estimativa: %s
16851684
issues.change_time_estimate_at=alterou a estimativa de tempo para <b>%s</b> %s
@@ -2632,6 +2631,7 @@ release.new_release=Novo lançamento
26322631
release.draft=Rascunho
26332632
release.prerelease=Pré-lançamento
26342633
release.stable=Estável
2634+
release.latest=Mais recente
26352635
release.compare=Comparar
26362636
release.edit=editar
26372637
release.ahead.commits=<strong>%d</strong> cometimentos

options/locale/locale_zh-CN.ini

+170-1
Large diffs are not rendered by default.

routers/web/repo/actions/view.go

+3
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,11 @@ func ViewPost(ctx *context_module.Context) {
205205
}
206206
}
207207

208+
// TODO: "ComposeMetas" (usually for comment) is not quite right, but it is still the same as what template "RenderCommitMessage" does.
209+
// need to be refactored together in the future
208210
metas := ctx.Repo.Repository.ComposeMetas(ctx)
209211

212+
// the title for the "run" is from the commit message
210213
resp.State.Run.Title = run.Title
211214
resp.State.Run.TitleHTML = templates.NewRenderUtils(ctx).RenderCommitMessage(run.Title, metas)
212215
resp.State.Run.Link = run.Link()

services/auth/source/ldap/source_authenticate.go

+6
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import (
1212
"code.gitea.io/gitea/models/auth"
1313
user_model "code.gitea.io/gitea/models/user"
1414
auth_module "code.gitea.io/gitea/modules/auth"
15+
"code.gitea.io/gitea/modules/log"
1516
"code.gitea.io/gitea/modules/optional"
1617
asymkey_service "code.gitea.io/gitea/services/asymkey"
1718
source_service "code.gitea.io/gitea/services/auth/source"
@@ -31,7 +32,12 @@ func (source *Source) Authenticate(ctx context.Context, user *user_model.User, u
3132
return nil, user_model.ErrUserNotExist{Name: loginName}
3233
}
3334
// Fallback.
35+
// FIXME: this fallback would cause problems when the "Username" attribute is not set and a user inputs their email.
36+
// In this case, the email would be used as the username, and will cause the "CreateUser" failure for the first login.
3437
if sr.Username == "" {
38+
if strings.Contains(userName, "@") {
39+
log.Error("No username in search result (Username Attribute is not set properly?), using email as username might cause problems")
40+
}
3541
sr.Username = userName
3642
}
3743
if sr.Mail == "" {

templates/package/content/container.tmpl

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,10 @@
3636
</thead>
3737
<tbody>
3838
{{range .PackageDescriptor.Metadata.Manifests}}
39+
{{/* "unknown/unknown" is attestation-manifest, so we should skip it */}}
3940
{{if ne .Platform "unknown/unknown"}}
4041
<tr>
41-
<td><a href="{{$.PackageDescriptor.PackageWebLink}}/{{PathEscape .Digest}}">{{StringUtils.TrimPrefix .Digest "sha256:" | ShortSha}}</a></td>
42+
<td><a class="tw-font-mono" href="{{$.PackageDescriptor.PackageWebLink}}/{{PathEscape .Digest}}">{{StringUtils.TrimPrefix .Digest "sha256:" | ShortSha}}</a></td>
4243
<td>{{.Platform}}</td>
4344
<td>{{FileSize .Size}}</td>
4445
</tr>

templates/repo/commit_page.tmpl

+3-1
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,13 @@
6868
<p id="cherry-pick-content" class="branch-dropdown"></p>
6969

7070
<form method="get">
71+
{{/*FIXME: CurrentRefShortName seems not making sense here (old code),
72+
because the "commit page" has no "$.BranchName" info, so only using DefaultBranch should be enough */}}
7173
{{template "repo/branch_dropdown" dict
7274
"Repository" .Repository
7375
"ShowTabBranches" true
7476
"CurrentRefType" "branch"
75-
"CurrentRefShortName" (Iif $.BranchName $.Repository.DefaultBranch)
77+
"CurrentRefShortName" (or $.BranchName $.Repository.DefaultBranch)
7678
"RefFormActionTemplate" (print "{RepoLink}/_cherrypick/" .CommitID "/{RefShortName}")
7779
}}
7880
<input type="hidden" id="cherry-pick-type" name="cherry-pick-type"><br>

templates/repo/issue/filter_item_label.tmpl

+3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
<div class="divider"></div>
2424
<a class="item label-filter-query-default" href="{{QueryBuild $queryLink "labels" NIL}}">{{ctx.Locale.Tr "repo.issues.filter_label_no_select"}}</a>
2525
<a class="item label-filter-query-not-set" href="{{QueryBuild $queryLink "labels" 0}}">{{ctx.Locale.Tr "repo.issues.filter_label_select_no_label"}}</a>
26+
{{/* The logic here is not the same as the label selector in the issue sidebar.
27+
The one in the issue sidebar renders "repo labels | divider | org labels".
28+
Maybe the logic should be updated to be consistent.*/}}
2629
{{$previousExclusiveScope := "_no_scope"}}
2730
{{range .Labels}}
2831
{{$exclusiveScope := .ExclusiveScope}}

templates/user/auth/signin_inner.tmpl

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
</div>
4949
</form>
5050
{{end}}{{/*if .EnablePasswordSignInForm*/}}
51+
{{/* "oauth_container" contains not only "oauth2" methods, but also "OIDC" and "SSPI" methods */}}
5152
{{$showOAuth2Methods := or .OAuth2Providers .EnableOpenIDSignIn .EnableSSPI}}
5253
{{if and $showOAuth2Methods .EnablePasswordSignInForm}}
5354
<div class="divider divider-text">{{ctx.Locale.Tr "sign_in_or"}}</div>

templates/user/auth/signup_inner.tmpl

+2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@
4747
</button>
4848
</div>
4949
{{end}}
50+
{{/* "oauth_container" contains not only "oauth2" methods, but also "OIDC" and "SSPI" methods */}}
51+
{{/* TODO: it seems that "EnableSSPI" is only set in "sign-in" handlers, but it should use the same logic to control its display */}}
5052
{{$showOAuth2Methods := or .OAuth2Providers .EnableOpenIDSignIn .EnableSSPI}}
5153
{{if $showOAuth2Methods}}
5254
<div class="divider divider-text">{{ctx.Locale.Tr "sign_in_or"}}</div>

templates/user/dashboard/issues.tmpl

+2
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
{{template "repo/issue/filter_item_label" dict "Labels" .Labels "QueryLink" $queryLinkWithFilter "SupportArchivedLabel" true}}
6262
{{end}}
6363

64+
{{/* at the moment there is no easy way to get poster candidates on this page, so only show a username input, search for what the end user enters */}}
6465
{{if ne $.ViewType "created_by"}}
6566
{{template "repo/issue/filter_item_user_fetch" dict
6667
"QueryParamKey" "poster"
@@ -70,6 +71,7 @@
7071
}}
7172
{{end}}
7273

74+
{{/* at the moment there is no easy way to get assignee candidates on this page, so only show a username input, search for what the end user enters */}}
7375
{{if ne $.ViewType "assigned"}}
7476
{{template "repo/issue/filter_item_user_fetch" dict
7577
"QueryParamKey" "assignee"

web_src/js/components/RepoBranchTagSelector.vue

+10
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,16 @@ const sfc = {
113113
if (this.menuVisible) this.menuVisible = false;
114114
});
115115
},
116+
117+
mounted() {
118+
if (this.refFormActionTemplate) {
119+
// if the selector is used in a form and needs to change the form action,
120+
// make a mock item and select it to update the form action
121+
const item: ListItem = {selected: true, refType: this.currentRefType, refShortName: this.currentRefShortName, rssFeedLink: ''};
122+
this.selectItem(item);
123+
}
124+
},
125+
116126
methods: {
117127
selectItem(item: ListItem) {
118128
this.menuVisible = false;

0 commit comments

Comments
 (0)