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 ce73492d6f
Refactor `ctx` in templates (#23105)
Before, the `dict "ctx" ...` map is used to pass data between templates.

Now, more and more templates need to use real Go context:

* #22962
* #23092


`ctx` is a Go concept for `Context`, misusing it may cause problems, and
it makes it difficult to review or refactor.

This PR contains 2 major changes:

* In the top scope of a template, the `$` is the same as the `.`, so the
old labels_sidebar's `root` is the `ctx`. So this `ctx` could just be
removed.
bd7f218dce
* Rename all other `ctx` to `ctxData`, and it perfectly matches how it
comes from backend: `"ctxData": ctx.Data`.
7c01260e1d



From now on, there is no `ctx` in templates. There are only:

* `ctxData` for passing data
* `Context` for Go context
2 years ago
..
api Add loading yaml label template files (#22976) 2 years ago
common Refactor the setting to make unit test easier (#22405) 2 years ago
install Refactor the setting to make unit test easier (#22405) 2 years ago
private Use context parameter in services/repository (#23186) 2 years ago
utils Implement FSFE REUSE for golang files (#21840) 2 years ago
web Refactor `ctx` in templates (#23105) 2 years ago
init.go Avoid warning for system setting when start up (#23054) 2 years ago