aboutsummaryrefslogtreecommitdiff
path: root/main.go
Commit message (Collapse)AuthorAgeFilesLines
* refactor(main): main.go -> capybara.goFuwn2021-09-021-666/+0
|
* fix(main): remove redundant type conversionFuwn2021-09-021-1/+1
|
* refactor(capybara): proxy to /proxy/ (prev: /x/)Fuwn2021-08-241-3/+3
|
* chore(global): brandingFuwn2021-07-221-1/+1
|
* Change bindIfEnv's name to something less genericorigin/masterorigin/HEADFuwn2021-07-211-4/+4
|
* Add ability to specify flags via environmentFuwn2021-07-201-2/+37
|
* Add -e flag to place a stylesheet externally rather than loading it inlinenytpu2021-05-311-30/+47
| | | | | | | | | | | | | By default, kineto loads a stylesheet given to -s from disk and places it inline with the HTML in a <style>...</style> block. This patch adds a -e flag to load a stylesheet externally. When the -e flag is passed with a URI (relative or absolute), the given link is placed in the href of a <link rel="stylesheet"...> tag. This helps facilitate caching which can *significantly* reduce request overhead, particularly when the stylesheet is large (>= the size of the page content). The given URI is not validated, and if it is invalid the browser will 404 when requesting it and the page will have no style.
* Update go-gemini dependencyAdnan Maolood2021-02-251-13/+9
|
* Implement input prompts on external domainsAdnan Maolood2021-02-251-7/+19
|
* Use fmt.Fprintf instead of Write and SprintfAdnan Maolood2021-02-251-8/+7
|
* Implement support for "lang" media type parameterAdnan Maolood2021-02-251-1/+5
|
* Display an error on charsets other than UTF-8Adnan Maolood2021-02-251-2/+10
| | | | This prevents the proxy from sending invalid UTF-8 to the client.
* Fix relative redirectsAdnan Maolood2021-02-251-1/+1
| | | | | Setting next.Host before setting next.Path breaks relative redirects on external sites, where next.Host != r.URL.Host.
* Add support for custom CSS.José Mota2021-02-161-8/+17
|
* Update go-gemini dependencyAdnan Maolood2021-01-151-3/+2
| | | | | Version 0.1.12 fixes a bug where the client Timeout was not applied when dialing, causing the client to hang when a host was down.
* Use POST request to respond to input requestsDrew DeVault2020-11-081-7/+15
|
* Fix URLs with legit query strings in themDrew DeVault2020-11-081-0/+2
|
* Implement input and redirect responsesDrew DeVault2020-11-081-3/+93
|
* Fix response status switch statementAdnan Maolood2020-11-061-20/+12
|
* Update go-gemini dependencyAdnan Maolood2020-11-061-35/+34
|
* Add dark mode user preference with CSS media queryByron Torres2020-11-021-0/+23
|
* Reduce li margin to 0.5remDrew DeVault2020-11-011-1/+1
|
* Add spacing between li'sDrew DeVault2020-11-011-0/+4
|
* Fix style of proxy link at bottom of pageDrew DeVault2020-10-281-13/+17
|
* Add ⇒ before linksDrew DeVault2020-10-261-29/+42
|
* Initial commitDrew DeVault2020-10-111-0/+452