Merge pull request '[gitea] week 2024-29 cherry pick (gitea/main -> forgejo)' (#4488) from algernon/wcp/2024-29 into forgejo
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4488 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
This commit is contained in:
commit
feb85faae2
7 changed files with 14 additions and 7 deletions
|
@ -20,11 +20,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1717974879,
|
"lastModified": 1720542800,
|
||||||
"narHash": "sha256-GTO3C88+5DX171F/gVS3Qga/hOs/eRMxPFpiHq2t+D8=",
|
"narHash": "sha256-ZgnNHuKV6h2+fQ5LuqnUaqZey1Lqqt5dTUAiAnqH0QQ=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "c7b821ba2e1e635ba5a76d299af62821cbcb09f3",
|
"rev": "feb2849fdeb70028c70d73b848214b00d324a497",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -31,6 +31,7 @@
|
||||||
# backend
|
# backend
|
||||||
go_1_22
|
go_1_22
|
||||||
gofumpt
|
gofumpt
|
||||||
|
sqlite
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -492,7 +492,7 @@ admin.new_user.subject = New user %s just signed up
|
||||||
admin.new_user.user_info = User information
|
admin.new_user.user_info = User information
|
||||||
admin.new_user.text = Please <a href="%s">click here</a> to manage this user from the admin panel.
|
admin.new_user.text = Please <a href="%s">click here</a> to manage this user from the admin panel.
|
||||||
|
|
||||||
register_notify = Welcome to Forgejo
|
register_notify = Welcome to %s
|
||||||
register_notify.text_1 = this is your registration confirmation email for %s!
|
register_notify.text_1 = this is your registration confirmation email for %s!
|
||||||
register_notify.text_2 = You can sign into your account using your username: %s
|
register_notify.text_2 = You can sign into your account using your username: %s
|
||||||
register_notify.text_3 = If someone else made this account for you, you will need to <a href="%s">set your password</a> first.
|
register_notify.text_3 = If someone else made this account for you, you will need to <a href="%s">set your password</a> first.
|
||||||
|
|
|
@ -62,7 +62,7 @@ func (f *UpdateOrgSettingForm) Validate(req *http.Request, errs binding.Errors)
|
||||||
|
|
||||||
// CreateTeamForm form for creating team
|
// CreateTeamForm form for creating team
|
||||||
type CreateTeamForm struct {
|
type CreateTeamForm struct {
|
||||||
TeamName string `binding:"Required;AlphaDashDot;MaxSize(30)"`
|
TeamName string `binding:"Required;AlphaDashDot;MaxSize(255)"`
|
||||||
Description string `binding:"MaxSize(255)"`
|
Description string `binding:"MaxSize(255)"`
|
||||||
Permission string
|
Permission string
|
||||||
RepoAccess string
|
RepoAccess string
|
||||||
|
|
|
@ -158,7 +158,7 @@ func SendRegisterNotifyMail(u *user_model.User) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
msg := NewMessage(u.Email, locale.TrString("mail.register_notify"), content.String())
|
msg := NewMessage(u.Email, locale.TrString("mail.register_notify", setting.AppName), content.String())
|
||||||
msg.Info = fmt.Sprintf("UID: %d, registration notify", u.ID)
|
msg.Info = fmt.Sprintf("UID: %d, registration notify", u.ID)
|
||||||
|
|
||||||
SendAsync(msg)
|
SendAsync(msg)
|
||||||
|
|
|
@ -12,6 +12,7 @@ import (
|
||||||
"path"
|
"path"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"regexp"
|
"regexp"
|
||||||
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
@ -54,7 +55,12 @@ var defaultTransformers = []transformer{
|
||||||
}
|
}
|
||||||
|
|
||||||
func generateExpansion(src string, templateRepo, generateRepo *repo_model.Repository, sanitizeFileName bool) string {
|
func generateExpansion(src string, templateRepo, generateRepo *repo_model.Repository, sanitizeFileName bool) string {
|
||||||
|
year, month, day := time.Now().Date()
|
||||||
expansions := []expansion{
|
expansions := []expansion{
|
||||||
|
{Name: "YEAR", Value: strconv.Itoa(year), Transformers: nil},
|
||||||
|
{Name: "MONTH", Value: fmt.Sprintf("%02d", int(month)), Transformers: nil},
|
||||||
|
{Name: "MONTH_ENGLISH", Value: month.String(), Transformers: defaultTransformers},
|
||||||
|
{Name: "DAY", Value: fmt.Sprintf("%02d", day), Transformers: nil},
|
||||||
{Name: "REPO_NAME", Value: generateRepo.Name, Transformers: defaultTransformers},
|
{Name: "REPO_NAME", Value: generateRepo.Name, Transformers: defaultTransformers},
|
||||||
{Name: "TEMPLATE_NAME", Value: templateRepo.Name, Transformers: defaultTransformers},
|
{Name: "TEMPLATE_NAME", Value: templateRepo.Name, Transformers: defaultTransformers},
|
||||||
{Name: "REPO_DESCRIPTION", Value: generateRepo.Description, Transformers: nil},
|
{Name: "REPO_DESCRIPTION", Value: generateRepo.Description, Transformers: nil},
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{{if .item.Attributes.label}}
|
{{if and (.item.Attributes.label) (not .item.Attributes.hide_label)}}
|
||||||
<h3>{{.item.Attributes.label}}{{if .item.Validations.required}}<label class="required"></label>{{end}}</h3>
|
<h3>{{.item.Attributes.label}}{{if .item.Validations.required}}<label class="required"></label>{{end}}</h3>
|
||||||
{{end}}
|
{{end}}
|
||||||
{{if .item.Attributes.description}}
|
{{if .item.Attributes.description}}
|
||||||
|
|
Loading…
Reference in a new issue