Commit Graph

2 Commits (fede3cbada9edeee6895727cc01c0b28cf4c759a)

Author SHA1 Message Date
6543 8e8ca6c653
Get repo list with OrderBy alpha should respect owner too ()
instead of:
- zowner/gcode
- awesome/nul
- zowner/nul
- zowner/zzz

we will get:
- awesome/nul
- zowner/gcode
- zowner/nul
- zowner/zzz
wxiaoguang cb700aedd1
Split "modules/context.go" to separate files ()
The "modules/context.go" is too large to maintain.

This PR splits it to separate files, eg: context_request.go,
context_response.go, context_serve.go

This PR will help:

1. The future refactoring for Gitea's web context (eg: simplify the context)
2. Introduce proper "range request" support
3. Introduce context function

This PR only moves code, doesn't change any logic.