You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gitea/routers
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.
2 years ago
..
api Refactor and enhance issue indexer to support both searching, filtering and paging (#26012) 2 years ago
common Start using template context function (#26254) 2 years ago
install Start using template context function (#26254) 2 years ago
private Add context parameter to some database functions (#26055) 2 years ago
utils Implement FSFE REUSE for golang files (#21840) 2 years ago
web Start using template context function (#26254) 2 years ago
init.go Refactor path & config system (#25330) 2 years ago