about summary refs log tree commit diff
path: root/web/converse
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-04-05T15·19+0200
committertazjin <mail@tazj.in>2021-04-05T15·47+0000
commit8e91e70b053e29a1ff56a44ef101c71301bcd7ea (patch)
treec041441a0b1f052bf28b243f2b99927d55f48ad3 /web/converse
parent8142149e28991b15affc5e4576a033e0ada9778b (diff)
chore(converse): Remove old Github-specific things r/2441
* remove files that depot already has, or doesn't need
* remove links to old source location

Change-Id: Idcd9361bfed00289f09af62f5342c4fd8bd04404
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2855
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'web/converse')
-rw-r--r--web/converse/.gitattributes1
-rw-r--r--web/converse/.travis.yml2
-rw-r--r--web/converse/CODE_OF_CONDUCT.md29
-rw-r--r--web/converse/CONTRIBUTING.md114
-rw-r--r--web/converse/templates/index.html2
-rw-r--r--web/converse/templates/post.html2
-rw-r--r--web/converse/templates/search.html2
-rw-r--r--web/converse/templates/thread.html2
8 files changed, 4 insertions, 150 deletions
diff --git a/web/converse/.gitattributes b/web/converse/.gitattributes
deleted file mode 100644
index 40b467c269..0000000000
--- a/web/converse/.gitattributes
+++ /dev/null
@@ -1 +0,0 @@
-Cargo.nix linguist-generated=true
diff --git a/web/converse/.travis.yml b/web/converse/.travis.yml
deleted file mode 100644
index 2a8d1543c2..0000000000
--- a/web/converse/.travis.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-language: nix
-sudo: true
diff --git a/web/converse/CODE_OF_CONDUCT.md b/web/converse/CODE_OF_CONDUCT.md
deleted file mode 100644
index 0e46bbedb0..0000000000
--- a/web/converse/CODE_OF_CONDUCT.md
+++ /dev/null
@@ -1,29 +0,0 @@
-A SERMON ON ETHICS AND LOVE
-===========================
-
-One day Mal-2 asked the messenger spirit Saint Gulik to approach the
-Goddess and request Her presence for some desperate advice. Shortly
-afterwards the radio came on by itself, and an ethereal female Voice
-said **YES?**
-
-"O! Eris! Blessed Mother of Man! Queen of Chaos! Daughter of Discord!
-Concubine of Confusion! O! Exquisite Lady, I beseech You to lift a
-heavy burden from my heart!"
-
-**WHAT BOTHERS YOU, MAL? YOU DON'T SOUND WELL.**
-
-"I am filled with fear and tormented with terrible visions of pain.
-Everywhere people are hurting one another, the planet is rampant with
-injustices, whole societies plunder groups of their own people,
-mothers imprison sons, children perish while brothers war. O, woe."
-
-**WHAT IS THE MATTER WITH THAT, IF IT IS WHAT YOU WANT TO DO?**
-
-"But nobody Wants it! Everybody hates it."
-
-**OH. WELL, THEN *STOP*.**
-
-At which moment She turned herself into an aspirin commercial and left
-The Polyfather stranded alone with his species.
-
-SINISTER DEXTER HAS A BROKEN SPIROMETER.
diff --git a/web/converse/CONTRIBUTING.md b/web/converse/CONTRIBUTING.md
deleted file mode 100644
index e600aa22dc..0000000000
--- a/web/converse/CONTRIBUTING.md
+++ /dev/null
@@ -1,114 +0,0 @@
-Contribution Guidelines
-=======================
-
-<!-- markdown-toc start - Don't edit this section. Run M-x markdown-toc-refresh-toc -->
-**Table of Contents**
-
-- [Contribution Guidelines](#contribution-guidelines)
-    - [Before making a change](#before-making-a-change)
-    - [Commit messages](#commit-messages)
-    - [Commit content](#commit-content)
-    - [Code quality](#code-quality)
-    - [Builds & tests](#builds--tests)
-
-<!-- markdown-toc end -->
-
-This is a loose set of "guidelines" for contributing to my projects.
-Please note that I will not accept any pull requests that don't follow
-these guidelines.
-
-Also consider the [code of conduct](CODE_OF_CONDUCT.md). No really,
-you should.
-
-## Before making a change
-
-Before making a change, consider your motivation for making the
-change. Documentation updates, bug fixes and the like are *always*
-welcome.
-
-When adding a feature you should consider whether it is only useful
-for your particular use-case or whether it is generally applicable for
-other users of the project.
-
-When in doubt - just ask me!
-
-## Commit messages
-
-All commit messages should follow the style-guide used by the [Angular
-project][]. This means for the most part that your commit message
-should be structured like this:
-
-```
-type(scope): Subject line with at most 68 a character length
-
-Body of the commit message with an empty line between subject and
-body. This text should explain what the change does and why it has
-been made, *especially* if it introduces a new feature.
-
-Relevant issues should be mentioned if they exist.
-```
-
-Where `type` can be one of:
-
-* `feat`: A new feature has been introduced
-* `fix`: An issue of some kind has been fixed
-* `docs`: Documentation or comments have been updated
-* `style`: Formatting changes only
-* `refactor`: Hopefully self-explanatory!
-* `test`: Added missing tests / fixed tests
-* `chore`: Maintenance work
-
-And `scope` should refer to some kind of logical grouping inside of
-the project.
-
-Please take a look at the existing commit log for examples.
-
-## Commit content
-
-Multiple changes should be divided into multiple git commits whenever
-possible. Common sense applies.
-
-The fix for a single-line whitespace issue is fine to include in a
-different commit. Introducing a new feature and refactoring
-(unrelated) code in the same commit is not fine.
-
-`git commit -a` is generally **taboo**.
-
-In my experience making "sane" commits becomes *significantly* easier
-as developer tooling is improved. The interface to `git` that I
-recommend is [magit][]. Even if you are not yet an Emacs user, it
-makes sense to install Emacs just to be able to use magit - it is
-really that good.
-
-For staging sane chunks on the command line with only git, consider
-`git add -p`.
-
-## Code quality
-
-This one should go without saying - but please ensure that your code
-quality does not fall below the rest of the project. This is of course
-very subjective, but as an example if you place code that throws away
-errors into a block in which errors are handled properly your change
-will be rejected.
-
-In my experience there is a strong correlation between the visual
-appearance of a code block and its quality. This is a simple way to
-sanity-check your work while squinting and keeping some distance from
-your screen ;-)
-
-## Builds & tests
-
-Most of my projects are built using [Nix][] to avoid "build pollution"
-via the user's environment. If you have Nix installed and are
-contributing to a project that has a `default.nix`, consider using
-`nix-build` to verify that builds work correctly.
-
-If the project has tests, check that they still work before submitting
-your change.
-
-Both of these will usually be covered by Travis CI.
-
-
-[Angular project]: https://gist.github.com/stephenparish/9941e89d80e2bc58a153#format-of-the-commit-message
-[magit]: https://magit.vc/
-[Nix]: https://nixos.org/nix/
diff --git a/web/converse/templates/index.html b/web/converse/templates/index.html
index 20932b2762..07d6e7bfcf 100644
--- a/web/converse/templates/index.html
+++ b/web/converse/templates/index.html
@@ -71,7 +71,7 @@
       </main>
       <footer class="mdl-mini-footer">
         <div class="mdl-mini-footer--right-section">
-          <p>Powered by <a href="https://github.com/tazjin/converse">Converse</a></p>
+          <p>Powered by <a href="https://code.tvl.fyi/about/web/converse">Converse</a></p>
         </div>
       </footer>
       </div>
diff --git a/web/converse/templates/post.html b/web/converse/templates/post.html
index 50d23c93a3..8ea2df1cd3 100644
--- a/web/converse/templates/post.html
+++ b/web/converse/templates/post.html
@@ -115,7 +115,7 @@
       </main>
       <footer class="mdl-mini-footer">
         <div class="mdl-mini-footer--right-section">
-          <p>Powered by <a href="https://github.com/tazjin/converse">Converse</a></p>
+          <p>Powered by <a href="https://code.tvl.fyi/about/web/converse">Converse</a></p>
         </div>
       </footer>
       </div>
diff --git a/web/converse/templates/search.html b/web/converse/templates/search.html
index a74b60e0a7..418440e028 100644
--- a/web/converse/templates/search.html
+++ b/web/converse/templates/search.html
@@ -58,7 +58,7 @@
             </main>
             <footer class="mdl-mini-footer">
                 <div class="mdl-mini-footer--right-section">
-                    <p>Powered by <a href="https://github.com/tazjin/converse">Converse</a></p>
+                    <p>Powered by <a href="https://code.tvl.fyi/about/web/converse">Converse</a></p>
                 </div>
             </footer>
         </div>
diff --git a/web/converse/templates/thread.html b/web/converse/templates/thread.html
index 295cf8fcdc..66ec23de1f 100644
--- a/web/converse/templates/thread.html
+++ b/web/converse/templates/thread.html
@@ -102,7 +102,7 @@
             </main>
             <footer class="mdl-mini-footer">
                 <div class="mdl-mini-footer--right-section">
-                    <p>Powered by <a href="https://github.com/tazjin/converse">Converse</a></p>
+                    <p>Powered by <a href="https://code.tvl.fyi/about/web/converse">Converse</a></p>
                 </div>
             </footer>
         </div>