Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | forge.scfg: Change default ssh root | Runxi Yu | 2025-02-14 | 1 | -1/+1 |
| | | | | | Since the default listen address is :2222, it'd make sense to add :2222 to the default root. | ||||
* | forge.scfg: Change default ssh host key path | Runxi Yu | 2025-02-14 | 1 | -1/+1 |
| | | | | | | | | Usually the user running the forge won't be able to read /etc/ssh/ssh_host_ed25519_key, and OpenSSH likes to panic when it doesn't like key permissions. People likely won't want their OpenSSH and Lindenii SSH host keys to be the same anyway, so let's use /etc/lindenii/ssh_host/ed25519_key for this. | ||||
* | style.css: Use --lighter-box-background-color for title rows | Runxi Yu | 2025-02-14 | 1 | -1/+1 |
| | |||||
* | style.css: Shrink font-size a bit for monospace components | Runxi Yu | 2025-02-14 | 1 | -1/+1 |
| | |||||
* | repo_index: Make readme scrollable just in case | Runxi Yu | 2025-02-14 | 1 | -1/+1 |
| | |||||
* | style.css, repo_index: Use div, not table, for expandables | Runxi Yu | 2025-02-14 | 3 | -52/+51 |
| | |||||
* | README.md: Clarify how MR emails work | Runxi Yu | 2025-02-14 | 1 | -1/+4 |
| | |||||
* | *_server.go: clog.Info instead of Debug for requests | Runxi Yu | 2025-02-14 | 2 | -2/+2 |
| | |||||
* | Makefile: Make version.go a .PHONY | Runxi Yu | 2025-02-14 | 1 | -1/+1 |
| | |||||
* | *: Use Makefile, and generate a version | Runxi Yu | 2025-02-14 | 6 | -2/+16 |
| | |||||
* | go.mod: Bump lindenii-common | Runxi Yu | 2025-02-14 | 2 | -3/+3 |
| | |||||
* | reop_commit: Fix immediate newlines after <pre> | Runxi Yu | 2025-02-14 | 3 | -9/+25 |
| | |||||
* | *: Make the forge title configurable | Runxi Yu | 2025-02-14 | 13 | -19/+29 |
| | |||||
* | README.md: Fix typo | Runxi Yu | 2025-02-14 | 1 | -1/+1 |
| | |||||
* | repo_log: Use parameters for refspec | Runxi Yu | 2025-02-14 | 4 | -16/+10 |
| | |||||
* | http_handle_repo_*.go: Remove redundant return | Runxi Yu | 2025-02-14 | 2 | -2/+0 |
| | |||||
* | repo_index: Allow refspecs | Runxi Yu | 2025-02-14 | 2 | -7/+9 |
| | |||||
* | http_server.go: Rename dir_mode to trailing_slash | Runxi Yu | 2025-02-14 | 1 | -7/+7 |
| | |||||
* | style.css: Categorize CSS statements | Runxi Yu | 2025-02-14 | 1 | -4/+32 |
| | |||||
* | .gitattributes: Ignore go.mod and go.sum | Runxi Yu | 2025-02-14 | 1 | -3/+3 |
| | |||||
* | .gitattributes: Linguist | Runxi Yu | 2025-02-14 | 1 | -0/+4 |
| | |||||
* | README.md: Update mirror URLs | Runxi Yu | 2025-02-14 | 1 | -3/+6 |
| | |||||
* | go.mod: Bump dependencies | Runxi Yu | 2025-02-14 | 2 | -6/+6 |
| | |||||
* | README.md: Expand "Support and development" | Runxi Yu | 2025-02-14 | 1 | -5/+8 |
| | |||||
* | README.md: Fix the URL to the GNU AGPL | Runxi Yu | 2025-02-14 | 1 | -1/+2 |
| | |||||
* | README.md: Extend AGPL notes | Runxi Yu | 2025-02-14 | 1 | -1/+5 |
| | |||||
* | http_handle_*.go: Remove redundant return statements | Runxi Yu | 2025-02-14 | 3 | -3/+0 |
| | |||||
* | README.md: Justify the subgroup syntax | Runxi Yu | 2025-02-14 | 1 | -0/+4 |
| | |||||
* | repo_info: Clarify the SSH access message | Runxi Yu | 2025-02-14 | 1 | -1/+1 |
| | |||||
* | http_*.go: Abstract out render_template for deduplication | Runxi Yu | 2025-02-14 | 9 | -53/+26 |
| | |||||
* | {database,http_handle_*index}.go: Reduce query_name_desc_list duplication | Runxi Yu | 2025-02-14 | 3 | -32/+20 |
| | |||||
* | http_*: Refactor to reduce duplication | Runxi Yu | 2025-02-14 | 11 | -41/+31 |
| | |||||
* | README.md: Add details in features supported by git repos | Runxi Yu | 2025-02-14 | 1 | -1/+4 |
| | |||||
* | *.go: Reformat | Runxi Yu | 2025-02-13 | 3 | -5/+4 |
| | |||||
* | http_{server,handle_login}.go: Fix missing error handling | Runxi Yu | 2025-02-13 | 2 | -1/+14 |
| | |||||
* | http_handle_*.go: Fix http.Error calls | Runxi Yu | 2025-02-13 | 6 | -40/+40 |
| | | | | | | Previously when I was converting the fmt.Fprintln calls into http.Error, there was a mistake in my sed command which caused some of the messages to have double colons. This should fix them. | ||||
* | schema.sql: password TEXT should not be NOT NULL | Runxi Yu | 2025-02-13 | 1 | -1/+1 |
| | |||||
* | TODO: Add unit tests and refactor | Runxi Yu | 2025-02-13 | 1 | -0/+3 |
| | |||||
* | ssh_url_generation.go, etc.: Add config ssh.root and use it | Runxi Yu | 2025-02-13 | 6 | -4/+18 |
| | | | | | Detecting it based on HTTP host name is definitely unreliable. Just add a configuration option and it should work. | ||||
* | {http,ssh}_server.go: Add debug logs for incoming requests | Runxi Yu | 2025-02-13 | 2 | -1/+7 |
| | |||||
* | {main,ssh_server}.go: Log listening addresses | Runxi Yu | 2025-02-13 | 2 | -11/+13 |
| | |||||
* | repo_*_{dir,file}: Add ref params if not head | Runxi Yu | 2025-02-13 | 3 | -3/+7 |
| | |||||
* | repo_{raw,tree}_dir: Only display "on $ref" if necessary | Runxi Yu | 2025-02-13 | 2 | -2/+2 |
| | |||||
* | style.css: Wider title-row specification | Runxi Yu | 2025-02-13 | 1 | -1/+1 |
| | |||||
* | group_repos: Fix table rows | Runxi Yu | 2025-02-13 | 1 | -6/+8 |
| | |||||
* | repo_tree_file: Add padding | Runxi Yu | 2025-02-13 | 2 | -4/+9 |
| | |||||
* | {group_,}index: Use name_desc_t | Runxi Yu | 2025-02-13 | 3 | -16/+10 |
| | |||||
* | group_index: Use table list | Runxi Yu | 2025-02-13 | 2 | -12/+36 |
| | |||||
* | repo_log: Scrollable view | Runxi Yu | 2025-02-13 | 1 | -25/+27 |
| | |||||
* | repo_commit: fake_diff_file_null has zero hash | Runxi Yu | 2025-02-13 | 1 | -1/+1 |
| |