diff --git a/templates/zerver/for-mystery-hunt.html b/templates/zerver/for-mystery-hunt.html deleted file mode 100644 index f9a24a4ed1..0000000000 --- a/templates/zerver/for-mystery-hunt.html +++ /dev/null @@ -1,34 +0,0 @@ -{% extends "zerver/portico.html" %} -{% set entrypoint = "landing-page" %} - -{% block title %} -Zephyr reloaded -{% endblock %} - -{% block customhead %} - -{% endblock %} - -{% block portico_content %} - -{% include 'zerver/landing_nav.html' %} - -
-
-
-
-

The best chat for mystery hunt.

-

-
-
- -
-
-
- {{ render_markdown_path('zerver/for/mystery-hunt.md') }} -
-
-
-
- -{% endblock %} diff --git a/templates/zerver/for/mystery-hunt.md b/templates/zerver/for/mystery-hunt.md deleted file mode 100644 index 1580972e51..0000000000 --- a/templates/zerver/for/mystery-hunt.md +++ /dev/null @@ -1,60 +0,0 @@ -Zulip was started in 2012 by four SIPB alums. We think it’s the best team -chat tool for mystery hunt teams. - -**How is this different from Slack?** - -In Slack, IRC, and nearly every other team chat application, users subscribe -to chat rooms (“channels”), and get all the messages sent to each channel in -a chronological dump. The model is largely designed to support real-time -conversation, where it’s easy to participate if you’re online, but not easy -to come back a few hours later and reply to a conversation that started -while you were gone. - -In Zulip, there is an additional layer of organization in each channel: -messages have topics (like “puzzle: duck konundrum”), so it is easy to -follow conversational threads. It also makes it easy for someone to come -back after 8 hours (okay, 4 hours) of sleep, catch up on the state of -various puzzles, and answer questions even if a question was asked many -hours ago. - -**You have to write a topic for every message you send? Sounds like a bit much…** - -Nope! Just the first person writing a message to a given topic has to write -it out. Replies to that message are automatically grouped in the way you’d -expect. Sending a message in Zulip feels just as lightweight as sending a -message in SMS, Google Hangouts, or Slack. - -**Is it free?** - -Yes! We provide free hosting for all MIT mystery hunt teams, student groups, -and research groups. - -Besides being easy on the wallet, Zulip is also free (open source) -software. We make it easy to export your data from [Zulip -Cloud](https://zulip.com) and import it into a self-hosted -installation. - -**Can I integrate Zulip with my current puzzlehunting software?** - -Yup. Zulip has a well thought out [API](/api/), and -it’s easy to write bots that send things into or out of Zulip. - -**Where can I test it out?** - -[Click here](https://zulip.com/new) to create an organization; it -only takes only about 30 seconds. If you decide to continue using it, just email -support@zulip.com to tell us you’re a mystery hunt team. - -**Where do I go for further information?** - -Come find us on the [Zulip community chat](https://chat.zulip.org). Feel -free to post in -[#mystery hunt](https://chat.zulip.org/#narrow/stream/mystery.20hunt) or -anywhere else that seems appropriate. - -**Help! I’m trapped in a mystery hunt puzzle.** - -This is not a puzzle! But feel free take a look at -[Zulip for companies](/for/companies), -[Zulip for working groups](/for/working-groups-and-communities), or -[Zulip for open source projects](/for/open-source). diff --git a/tools/documentation_crawler/documentation_crawler/spiders/check_help_documentation.py b/tools/documentation_crawler/documentation_crawler/spiders/check_help_documentation.py index 475beb9587..4b6bb43ac8 100644 --- a/tools/documentation_crawler/documentation_crawler/spiders/check_help_documentation.py +++ b/tools/documentation_crawler/documentation_crawler/spiders/check_help_documentation.py @@ -77,6 +77,6 @@ class PorticoDocumentationSpider(BaseDocumentationSpider): 'http://localhost:9981/for/open-source', 'http://localhost:9981/for/companies', 'http://localhost:9981/for/working-groups-and-communities', - 'http://localhost:9981/for/mystery-hunt', + 'http://localhost:9981/for/research', 'http://localhost:9981/security'] deny_domains: List[str] = [] diff --git a/zerver/tests/test_docs.py b/zerver/tests/test_docs.py index 0c20edb8ba..e664a75f97 100644 --- a/zerver/tests/test_docs.py +++ b/zerver/tests/test_docs.py @@ -137,7 +137,6 @@ class DocPageTest(ZulipTestCase): self._test('/for/research/', 'for researchers') self._test('/for/companies/', 'in a company') self._test('/for/working-groups-and-communities/', 'standards bodies') - self._test('/for/mystery-hunt/', 'four SIPB alums') self._test('/security/', 'TLS encryption') self._test('/atlassian/', 'HipChat') self._test('/devlogin/', 'Normal users', landing_page=False) diff --git a/zproject/urls.py b/zproject/urls.py index 88add09b72..1081f51a12 100644 --- a/zproject/urls.py +++ b/zproject/urls.py @@ -570,8 +570,6 @@ i18n_urls = [ {'template_name': 'zerver/for-companies.html'}), url(r'^for/working-groups-and-communities/$', zerver.views.portico.landing_view, {'template_name': 'zerver/for-working-groups-and-communities.html'}), - url(r'^for/mystery-hunt/$', zerver.views.portico.landing_view, - {'template_name': 'zerver/for-mystery-hunt.html'}), url(r'^security/$', zerver.views.portico.landing_view, {'template_name': 'zerver/security.html'}), url(r'^atlassian/$', zerver.views.portico.landing_view, {'template_name': 'zerver/atlassian.html'}),