aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* s/hyphen/em dash/gSol Fisher Romanoff2021-05-1637-83/+83
|
* fixed typosAlex2021-05-161-2/+2
|
* builds.sr.ht: add GraphQL docsDrew DeVault2021-05-161-0/+15
|
* installation.md: Fix grammatical formQuentin Rameau2021-05-161-3/+3
| | | | | Modify involved to involving, and align the rest of the text to 80 chars.
* Update support.mdDrew DeVault2021-05-121-4/+3
|
* Update builds.sr.ht migration progressDrew DeVault2021-05-101-2/+2
|
* builds.sr.ht-migration.md: clarify delegate buildsDrew DeVault2021-05-011-0/+7
|
* ops/topology: allocate IP for godocs.ioDrew DeVault2021-04-291-1/+2
|
* builds.sr.ht: Ubuntu needs a new maintainerDrew DeVault2021-04-261-1/+1
|
* Add note about payments in builds docsSol Fisher Romanoff2021-04-231-0/+8
|
* Update builds.sr.ht migration progressDrew DeVault2021-04-221-2/+2
|
* Fix typoGauvain 'GovanifY' Roussel-Tarbouriech2021-04-221-1/+1
|
* Avoid seeming contradiction in detailed builds.sr.ht billing change planMichael Struwe2021-04-201-1/+1
| | | | | | | Without knowing the context already, the sentence "Users registered before this date will not be affected." seems to imply that users registered before the date will not be affected by the billing change, ever. In reality, they will be affected 30 days later. Clarify this.
* Fix yet another typoDrew DeVault2021-04-191-1/+1
|
* Fix typoMatthias Beyer2021-04-191-1/+1
| | | | Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
* Fix typojman2021-04-191-1/+1
| | | | Signed-off-by: jman <srht@city17.xyz>
* billing-faq: fix typoArmaan Bhojwani2021-04-191-1/+1
|
* builds.sr.ht migration docDrew DeVault2021-04-191-0/+98
|
* Mention orgs in billing FAQDrew DeVault2021-04-191-0/+14
|
* Update billing FAQDrew DeVault2021-04-191-56/+107
|
* builds.sr.ht/compatibility: add freebsd/13.xSimon Ser2021-04-141-1/+31
|
* builds.sr.ht/compatibility: freebsd images are updated weeklySimon Ser2021-04-141-2/+2
| | | | The docs were outdated here.
* git.sr.ht: fix typosEyal Sawady2021-04-081-2/+2
|
* Add link to videoDrew DeVault2021-04-081-0/+7
|
* git.sr.ht: reduce heading numbersDrew DeVault2021-04-081-13/+9
|
* git.sr.ht: update git send-email noteDrew DeVault2021-04-081-3/+3
|
* git.sr.ht: add detailed send-email web instructionsDrew DeVault2021-04-081-0/+89
|
* Link to Drew's video game guide in license pageSol Fisher Romanoff2021-04-071-0/+1
|
* Fix typoArmaan Bhojwani2021-04-051-1/+1
|
* Explicitly mention crypto mining in the ToSDrew DeVault2021-04-021-3/+1
| | | | This has always been a one-way ticket to a ban, just making it clear.
* Link GraphQL schemesRobin Krahl2021-03-233-0/+3
| | | | | | | | This patch adds links to the GraphQL schemes in the Git repositories to the graphql.md pages for {git,meta,todo}.sr.ht. The playground also contains the schemes, but it is only available for logged-in users. And the source file makes it easier to jump to specific locations, to share links and to track changes.
* Link to todo.sr.ht GraphQL API docsRobin Krahl2021-03-232-1/+4
| | | | | | | todo.sr.ht has a GraphQL API and a page describing it, but neither the index page nor the api page linked to it. This patch updates both pages to link to the GraphQL documentation, as is already the case for {meta,git}.sr.ht.
* graphql: Fix curl invocationRobin Krahl2021-03-221-1/+1
| | | | | | curl does not support separating long options and their values by an equals sign (only by spaces), see curl(1): https://curl.se/docs/manpage.html
* graphql: Fix example queriesRobin Krahl2021-03-221-2/+2
| | | | | The example queries were missing the outer query { ... } element (or just { ... })
* graphql: Add link to todo.sr.ht playgroundRobin Krahl2021-03-221-0/+1
| | | | | There also is a GraphQL playground for todo.sr.ht that was not mentioned in the documentaion.
* graphql: Fix Authorization header fieldRobin Krahl2021-03-221-2/+2
| | | | | The HTTP header used for the access token is called Authorization, not Authentication.
* Update dispatch docsDrew DeVault2021-03-181-4/+2
|
* Fix "Github" capitalisationSol Fisher Romanoff2021-03-152-3/+3
|
* Update example manifests for pages.sr.htDrew DeVault2021-03-101-6/+5
|
* Fix `to to` typoEvan Relf2021-03-081-2/+2
|
* builds: document environment for dispatch.sr.htAlexey Yerin2021-03-061-0/+7
|
* ops/topology: new hostDrew DeVault2021-03-051-1/+1
|
* Document X-Sourcehut-Patchset-Update email headerAnjandev Momi2021-03-041-0/+4
|
* Update Alpine linux mirror link from 3.12 to 3.13earnest ma2021-03-021-2/+2
| | | | | * v3.12 is no longer available * https://lists.sr.ht/~sircmpwn/sr.ht-admins/%3CC94AN72MZ29P.9NO40TRD8NH5%40taiga%3E
* Fix a few typos in graphql.mdStefan VanBuren2021-02-271-4/+4
|
* todo.sr.ht: add GraphQL docsDrew DeVault2021-02-254-1/+23
|
* Update builds.sr.ht database configurationDrew DeVault2021-02-211-1/+2
|
* Fix link in HTML in MarkdownDavid Florness2021-02-211-3/+3
|
* Fix incorrect redirect example.Jason Miller2021-02-201-1/+1
| | | | | | | | | | | | Redirects are processed left-to-right so '2>&1 >/dev/null' means: '2>&1' redirects stderr to the original stdout '>/dev/null' redirects just stdout to /dev/null, leaving stderr going to the original stdout Reversing the order causes stdout to redirect to /dev/null and then stderr to go to the same place as stdout (which is /dev/null).
* Add docs about keeping build secrets secretDrew DeVault2021-02-191-3/+32
|