aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* README.md: Branch informationnative-go-git-transportsRunxi Yu2025-02-161-0/+7
|
* README.md: Namespace contrib/, not merge_requests/Runxi Yu2025-02-161-2/+2
| | | | | | | merge_requests is simply too long. Besides, merge requests could be created from branches other than in that namespace. Contrib makes it easier to identify "oh this is a contributor branch, rather than the maintainers".
* *.go: ReformatRunxi Yu2025-02-162-0/+2
|
* Makefile: Don't remove vendor when buildingRunxi Yu2025-02-161-2/+1
|
* go.mod: Move go-billy to directRunxi Yu2025-02-161-1/+1
|
* TODO: Add RSSRunxi Yu2025-02-161-0/+2
|
* schema.sql: Don't use key_string UNIQUERunxi Yu2025-02-161-2/+4
| | | | It creates a btree index, so very long keys won't work.
* ssh_server.go: Strip trailing newlines from keysRunxi Yu2025-02-161-2/+2
|
* *.go: Fix missing error handlingRunxi Yu2025-02-163-2/+12
|
* repo_index: Add HTTP clone along with SSHRunxi Yu2025-02-163-3/+11
|
* http_*: Add HTTP cloningRunxi Yu2025-02-163-2/+76
|
* {ssh_*,acl}.go: Check ACL when receiving packsRunxi Yu2025-02-164-11/+47
|
* schema.sql: Fix public keys and add basic group ACLRunxi Yu2025-02-161-7/+11
|
* ssh_*: Pass pubkey to SSH handlersRunxi Yu2025-02-163-4/+4
|
* ssh_*: Use pure go-git SSH handling (receive and upload)Runxi Yu2025-02-164-23/+132
|
* README.md: Add Libera channelRunxi Yu2025-02-151-0/+2
|
* .gitattributes: *.tmpl should be considered to be HTMLRunxi Yu2025-02-151-1/+1
|
* README.md: Note about Lindenii Mail Daemon in setupRunxi Yu2025-02-151-0/+5
|
* README.md: Code styleRunxi Yu2025-02-151-0/+9
|
* README.md: Update about MRs and fedauthRunxi Yu2025-02-151-1/+23
|
* README.md: Explicitly state that HTTPS read access is plannedRunxi Yu2025-02-151-2/+2
|
* *.go: ReformatRunxi Yu2025-02-154-7/+7
|
* {http_server,url}.go: Fix redirectsRunxi Yu2025-02-152-16/+30
| | | | | | | | | | r.URL.Path contains URL segments already decoded which makes it impossible to distinguish from an encoded %2F and a path separator /. We introduce redirect_with_slash which checks it properly. There is still an occurence of r.URL.Path in the commit handler, but that's going to get a major revamp anyway so I'm not bothering to fix that for now. :/
* http_server.go: Redirect tree to tree/, same for rawRunxi Yu2025-02-151-0/+8
|
* style.css: break-word for #readmeRunxi Yu2025-02-151-0/+5
| | | | | | | Some browsers (chromium and webkit ones, it seems) don't break lines when they encounter a long token without spaces, such as long URLs. This causes the hbox to be overfull and it'll start scrolling which is annoying.
* resources.go: Add .gitattributes tooRunxi Yu2025-02-151-1/+2
|
* LICENSE: AGPL v3Runxi Yu2025-02-152-138/+664
|
* git_misc: COALESCE(r.description, '')Runxi Yu2025-02-151-1/+1
|
* ssh_server: Add carriage returns to SSH output (since no PTY yet)Runxi Yu2025-02-151-4/+4
|
* ssh_server: Add link to sourceRunxi Yu2025-02-153-0/+3
|
* templates: *.html.tmpl -> *.tmplRunxi Yu2025-02-1512-0/+0
|
* Makefile, resources.go: Add vendor directory to serve library sourceRunxi Yu2025-02-153-0/+4
|
* config.go: Remove git.rootRunxi Yu2025-02-141-3/+0
| | | | | | | | We've switched to looking through the database to find paths to repos, so we won't need this for now. But perhaps it'll be re-added in the future when people could create repos via the web interface.
* forge.scfg: Change default ssh rootRunxi Yu2025-02-141-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 pathRunxi Yu2025-02-141-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 rowsRunxi Yu2025-02-141-1/+1
|
* style.css: Shrink font-size a bit for monospace componentsRunxi Yu2025-02-141-1/+1
|
* repo_index: Make readme scrollable just in caseRunxi Yu2025-02-141-1/+1
|
* style.css, repo_index: Use div, not table, for expandablesRunxi Yu2025-02-143-52/+51
|
* README.md: Clarify how MR emails workRunxi Yu2025-02-141-1/+4
|
* *_server.go: clog.Info instead of Debug for requestsRunxi Yu2025-02-142-2/+2
|
* Makefile: Make version.go a .PHONYRunxi Yu2025-02-141-1/+1
|
* *: Use Makefile, and generate a versionRunxi Yu2025-02-146-2/+16
|
* go.mod: Bump lindenii-commonRunxi Yu2025-02-142-3/+3
|
* reop_commit: Fix immediate newlines after <pre>Runxi Yu2025-02-143-9/+25
|
* *: Make the forge title configurableRunxi Yu2025-02-1413-19/+29
|
* README.md: Fix typoRunxi Yu2025-02-141-1/+1
|
* repo_log: Use parameters for refspecRunxi Yu2025-02-144-16/+10
|
* http_handle_repo_*.go: Remove redundant returnRunxi Yu2025-02-142-2/+0
|
* repo_index: Allow refspecsRunxi Yu2025-02-142-7/+9
|