gitea/modules/context
wxiaoguang 6913053223
Start using template context function (#26254)
Before:

* `{{.locale.Tr ...}}`
* `{{$.locale.Tr ...}}`
* `{{$.root.locale.Tr ...}}`
* `{{template "sub" .}}`
* `{{template "sub" (dict "locale" $.locale)}}`
* `{{template "sub" (dict "root" $)}}`
* .....

With context function: only need to `{{ctx.Locale.Tr ...}}`

The "ctx" could be considered as a super-global variable for all
templates including sub-templates.


To avoid potential risks (any bug in the template context function
package), this PR only starts using "ctx" in "head.tmpl" and
"footer.tmpl" and it has a "DataRaceCheck". If there is anything wrong,
the code can be fixed or reverted easily.
2023-08-08 01:22:47 +00:00
..
access_log.go
api.go
api_org.go
api_test.go
base.go Move web JSON functions to web context and simplify code (#26132) 2023-07-26 06:04:01 +00:00
captcha.go
context.go Start using template context function (#26254) 2023-08-08 01:22:47 +00:00
context_cookie.go
context_model.go
context_request.go
context_response.go Start using template context function (#26254) 2023-08-08 01:22:47 +00:00
context_template.go Start using template context function (#26254) 2023-08-08 01:22:47 +00:00
context_test.go
csrf.go
org.go
package.go
pagination.go
permission.go Add context parameter to some database functions (#26055) 2023-07-22 22:14:27 +08:00
private.go
repo.go Add context parameter to some database functions (#26055) 2023-07-22 22:14:27 +08:00
response.go
utils.go
xsrf.go
xsrf_test.go