Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | routes/git.go: Fix import path | Runxi Yu | 2024-07-27 | 1 | -1/+1 |
| | |||||
* | go.mod, etc: git.icyphox.sh/legit -> git.sr.ht/~runxiyu/legitrx | Runxi Yu | 2024-07-26 | 4 | -5/+5 |
| | |||||
* | git: use system's git upload-pack | Anirudh Oppiliappan | 2024-07-13 | 1 | -67/+29 |
| | | | | | This is an intermediate workaround for https://github.com/go-git/go-git/issues/1062. This should also fix #33. | ||||
* | git: fix getDisplayName | Anirudh Oppiliappan | 2024-07-05 | 1 | -5/+1 |
| | |||||
* | routes: ignore files | Anirudh Oppiliappan | 2024-07-05 | 1 | -1/+1 |
| | |||||
* | git: hide .git extension | Marco Andronaco | 2024-07-05 | 2 | -6/+23 |
| | |||||
* | routes: Add handler to generate tar gz file | Gabriel A. Giovanini | 2024-06-29 | 3 | -0/+68 |
| | |||||
* | re-add accidentally removed code for raw file view | lillian | 2024-03-30 | 1 | -0/+5 |
| | |||||
* | routes: switch to net/http router | Anirudh Oppiliappan | 2024-03-27 | 3 | -39/+29 |
| | | | | | | BREAKING: This commit reworks routes.Handlers (and everywhere else) to use http.ServeMux -- and subsequently, Go 1.22's new net/http router. This might break something. | ||||
* | routes: add raw file view | Anirudh Oppiliappan | 2024-02-25 | 2 | -1/+18 |
| | |||||
* | templates: add missing title to repo page | Anirudh Oppiliappan | 2023-11-05 | 1 | -0/+1 |
| | |||||
* | log errors from git.Open | Anirudh Oppiliappan | 2023-11-05 | 1 | -0/+1 |
| | |||||
* | cleaner titles | Anirudh Oppiliappan | 2023-02-18 | 1 | -1/+2 |
| | | | | by nilix | ||||
* | fix buffer overflow in countlines for files greater than 32k | Derek Stevens | 2023-02-18 | 1 | -1/+1 |
| | | | | Signed-off-by: Derek Stevens <nilix@nilfm.cc> | ||||
* | tree: directories first, add size column, fix .. | Derek Stevens | 2023-02-08 | 1 | -0/+1 |
| | | | | Signed-off-by: Derek Stevens <nilix@nilfm.cc> | ||||
* | fix line count for files that don't end in a newline | Derek Stevens | 2023-02-08 | 1 | -0/+8 |
| | | | | Signed-off-by: Derek Stevens <nilix@nilfm.cc> | ||||
* | utils: Add helper to get all repos | Daniele Sluijters | 2023-02-05 | 1 | -0/+57 |
| | | | | | | This does a filepath.WalkDir of the config.ScanPath and tries to find all valid git repos. It returns a list of repoInfo structs holding basic information of each repository. | ||||
* | only add go meta import tag if go.mod exists in repo root | Derek Stevens | 2023-02-05 | 2 | -0/+8 |
| | | | | | | | | This is a multipart message in MIME format. Pretty self-explanitory :3 Signed-off-by: Derek Stevens <nilix@nilfm.cc> | ||||
* | markdown: more file exts, fix img | Anirudh Oppiliappan | 2022-12-26 | 1 | -2/+5 |
| | |||||
* | routes: render markdown readmes in repo index (#11) | James Mills | 2022-12-26 | 1 | -3/+17 |
| | |||||
* | git: pure go git clone | Anirudh Oppiliappan | 2022-12-24 | 2 | -27/+117 |
| | |||||
* | config: add repo.ignore | Anirudh Oppiliappan | 2022-12-22 | 2 | -10/+55 |
| | |||||
* | index: turn off logging, it's too noisy | Anirudh Oppiliappan | 2022-12-19 | 1 | -1/+0 |
| | |||||
* | all: no more pretty urls | Anirudh Oppiliappan | 2022-12-19 | 3 | -19/+5 |
| | |||||
* | config: fix go-import pretty url | Anirudh Oppiliappan | 2022-12-18 | 1 | -3/+6 |
| | |||||
* | all: go-import, clone url | Anirudh Oppiliappan | 2022-12-18 | 1 | -0/+12 |
| | |||||
* | routes: skip unopenable dirs | Anirudh Oppiliappan | 2022-12-18 | 1 | -3/+2 |
| | |||||
* | routes: sort repo index by last idle | Anirudh Oppiliappan | 2022-12-18 | 1 | -1/+11 |
| | |||||
* | templates: add title tags | Anirudh Oppiliappan | 2022-12-18 | 1 | -0/+1 |
| | |||||
* | git: rework diff to fetch initial commit | Anirudh Oppiliappan | 2022-12-18 | 1 | -3/+7 |
| | |||||
* | git, templates: diff view | Anirudh Oppiliappan | 2022-12-17 | 1 | -0/+1 |
| | |||||
* | templates: repo and log | Anirudh Oppiliappan | 2022-12-17 | 2 | -10/+27 |
| | |||||
* | routes: serve static content from /static | Anirudh Oppiliappan | 2022-12-17 | 3 | -8/+17 |
| | |||||
* | routes: disable git push | Anirudh Oppiliappan | 2022-12-14 | 1 | -6/+9 |
| | |||||
* | routes: wildcard multiplex route at the end | Anirudh Oppiliappan | 2022-12-14 | 1 | -2/+2 |
| | |||||
* | routes: multiplex git and web ui | Anirudh Oppiliappan | 2022-12-14 | 1 | -1/+40 |
| | |||||
* | routes: description and humanized time to index | Anirudh Oppiliappan | 2022-12-14 | 1 | -4/+18 |
| | |||||
* | template: line numbers for file view | Anirudh Oppiliappan | 2022-12-13 | 1 | -1/+34 |
| | |||||
* | git: find main branch from config | Anirudh Oppiliappan | 2022-12-13 | 1 | -11/+17 |
| | |||||
* | routes: refs view | Anirudh Oppiliappan | 2022-12-12 | 2 | -0/+40 |
| | |||||
* | routes: index view | Anirudh Oppiliappan | 2022-12-12 | 1 | -8/+44 |
| | |||||
* | routes: render readme | Anirudh Oppiliappan | 2022-12-12 | 3 | -18/+46 |
| | |||||
* | git, routes: commit diff view | Anirudh Oppiliappan | 2022-12-12 | 2 | -0/+37 |
| | |||||
* | routes, templates: tree and log views | Anirudh Oppiliappan | 2022-12-11 | 3 | -31/+55 |
| | |||||
* | routes: file content view | Anirudh Oppiliappan | 2022-12-11 | 3 | -18/+52 |
| | |||||
* | routes: split repo index and files views | Anirudh Oppiliappan | 2022-12-11 | 2 | -4/+48 |
| | |||||
* | all: init | Anirudh Oppiliappan | 2022-12-11 | 3 | -0/+96 |