diff options
author | Vincent Ambo <mail@tazj.in> | 2021-05-23T19·27+0200 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-05-23T19·46+0000 |
commit | 224c9ca0bb3aa8a36b5c18efd5f9a5a36d83226c (patch) | |
tree | e254e25e2eb7ea47099bfbfc96ce2d058621c914 | |
parent | 9bb8736a455c00f243168258e7930f36dfd7a6e2 (diff) |
chore: Replace remaining mentions of ##tvl[-dev] with #tvl r/2618
... and fix the capitalisation of hackint Change-Id: I800aef75152d2dc77a33876888e36530143e9d3e Reviewed-on: https://cl.tvl.fyi/c/depot/+/3148 Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi> Reviewed-by: sterni <sternenseemann@systemli.org>
-rw-r--r-- | README.md | 6 | ||||
-rw-r--r-- | docs/REVIEWS.md | 3 | ||||
-rw-r--r-- | users/grfn/emacs.d/irc.el | 2 | ||||
-rw-r--r-- | users/tazjin/emacs/config/desktop.el | 2 | ||||
-rw-r--r-- | web/panettone/src/panettone.lisp | 6 |
5 files changed, 10 insertions, 9 deletions
diff --git a/README.md b/README.md index 0e3df29ba197..535275b10fa4 100644 --- a/README.md +++ b/README.md @@ -102,10 +102,10 @@ If you'd like to contribute to any of the tools in here, please check out the [contribution guidelines](./docs/CONTRIBUTING.md) and our [code of conduct](./docs/CODE_OF_CONDUCT.md). -IRC users can find us in [`#tvl`](tvl-irc) on [HackInt][], which is also +IRC users can find us in [`#tvl`](tvl-irc) on [hackint][], which is also reachable [via XMPP][hackint-xmpp] at [`#tvl@irc.hackint.org`][tvl-xmpp] (sic!). -HackInt also provide a [web chat][tvl-webchat]. +Hackint also provide a [web chat][tvl-webchat]. [monorepo]: https://en.wikipedia.org/wiki/Monorepo [tvl]: https://tvl.fyi @@ -115,7 +115,7 @@ HackInt also provide a [web chat][tvl-webchat]. [tvix]: https://cs.tvl.fyi/depot/-/blob/third_party/nix/README.md [dottime]: https://dotti.me [tvl-irc]: ircs://irc.hackint.org:6697/#tvl -[HackInt]: https://hackint.org/ +[hackint]: https://hackint.org/ [hackint-xmpp]: https://hackint.org/transport/xmpp [tvl-xmpp]: xmpp:#tvl@irc.hackint.org?join [tvl-webchat]: https://webirc.hackint.org/#ircs://irc.hackint.org/#tvl diff --git a/docs/REVIEWS.md b/docs/REVIEWS.md index 02ca9ad1fb40..e1c657b33344 100644 --- a/docs/REVIEWS.md +++ b/docs/REVIEWS.md @@ -111,7 +111,7 @@ themselves**. If you would like to have an account on the Gerrit instance, follow these instructions: -1. Be a member of `##tvl-dev` or `##tvl`. +1. Be a member of `#tvl` on [hackint][]. 2. Clone the depot locally (via `git clone "https://cl.tvl.fyi/depot"`). 3. Create a user entry in our LDAP server in [ops/users][ops-users]. @@ -151,3 +151,4 @@ The email address is a [public group][]. [guidelines]: ./CONTRIBUTING.md#commit-messages [ops-users]: ../ops/users/default.nix [public group]: https://groups.google.com/a/tazj.in/forum/?hl=en#!forum/depot +[hackint]: https://hackint.org diff --git a/users/grfn/emacs.d/irc.el b/users/grfn/emacs.d/irc.el index 7a3ff23c33ba..8664b7a2896e 100644 --- a/users/grfn/emacs.d/irc.el +++ b/users/grfn/emacs.d/irc.el @@ -45,7 +45,7 @@ (string-match erc-noise-regexp message))) (or (and tvl-enabled? - (string-equal erc-channel "##tvl")) + (string-equal erc-channel "#tvl")) (string-match "grfn" message))))) (comment diff --git a/users/tazjin/emacs/config/desktop.el b/users/tazjin/emacs/config/desktop.el index 12f18f829970..402ccdd52f1c 100644 --- a/users/tazjin/emacs/config/desktop.el +++ b/users/tazjin/emacs/config/desktop.el @@ -99,7 +99,7 @@ ;; Quassel buffers ;; ;; These have a title format that looks like: - ;; "Quassel IRC - #tvl (HackInt) — Quassel IRC" + ;; "Quassel IRC - #tvl (hackint) — Quassel IRC" (`("quassel" ,title) (progn (if (string-match diff --git a/web/panettone/src/panettone.lisp b/web/panettone/src/panettone.lisp index fc69bc449229..b16171242dde 100644 --- a/web/panettone/src/panettone.lisp +++ b/web/panettone/src/panettone.lisp @@ -513,7 +513,7 @@ given subject an body (in a thread, to avoid blocking)" (irc:noping (cn *user*)) (id issue)) :channel (or (uiop:getenvp "ISSUECHANNEL") - "##tvl-dev")) + "#tvl")) (hunchentoot:redirect "/")))) (defroute show-issue @@ -590,7 +590,7 @@ given subject an body (in a thread, to avoid blocking)" (irc:noping (cn *user*)) (link-to-issue id)) :channel (or (uiop:getenvp "ISSUECHANNEL") - "##tvl-dev")) + "#tvl")) (send-email-for-issue id :subject (format nil "b/~A: \"~A\" closed by ~A" @@ -614,7 +614,7 @@ given subject an body (in a thread, to avoid blocking)" (irc:noping (cn *user*)) (link-to-issue id)) :channel (or (uiop:getenvp "ISSUECHANNEL") - "##tvl-dev")) + "#tvl")) (send-email-for-issue id :subject (format nil "b/~A: \"~A\" reopened by ~A" |