1
0
mirror of https://github.com/go-gitea/gitea synced 2025-01-10 06:46:11 +01:00
gitea/routers
wxiaoguang ce73492d6f
Refactor ctx in templates ()
Before, the `dict "ctx" ...` map is used to pass data between templates.

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

* 
* 


`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
2023-03-02 11:44:06 -06:00
..
api Add loading yaml label template files () 2023-03-02 01:44:23 +02:00
common Refactor the setting to make unit test easier () 2023-02-20 00:12:01 +08:00
install Refactor the setting to make unit test easier () 2023-02-20 00:12:01 +08:00
private Use context parameter in services/repository () 2023-02-28 16:17:51 -06:00
utils Implement FSFE REUSE for golang files () 2022-11-27 18:20:29 +00:00
web Refactor ctx in templates () 2023-03-02 11:44:06 -06:00
init.go Avoid warning for system setting when start up () 2023-02-24 18:23:13 +08:00