diff --git a/docs/outreach/overview.md b/docs/outreach/overview.md index 089036c7e4..c979cd5014 100644 --- a/docs/outreach/overview.md +++ b/docs/outreach/overview.md @@ -13,7 +13,7 @@ over 100 native integrations. The entire Zulip codebase is 100% open source. Zulip has been gaining in popularity since it was [released as open source software][oss-release] in late 2015, with code contributions from [over 1000 -people](https://zulip.com/team) from all around the world. Thousands of people +people](https://zulip.com/team/) from all around the world. Thousands of people use Zulip every day, and your work on Zulip will have meaningful impact on their experience. diff --git a/templates/corporate/case-studies/recurse-center-case-study.md b/templates/corporate/case-studies/recurse-center-case-study.md index e03b896939..560e0de493 100644 --- a/templates/corporate/case-studies/recurse-center-case-study.md +++ b/templates/corporate/case-studies/recurse-center-case-study.md @@ -49,7 +49,7 @@ in 2015, Recurse Center alumni [flew out to San Francisco](https://www.recurse.com/blog/90-zulip-supporting-oss-at-the-recurse-center) for a week to help make it happen. Since then, Zulip has built the most active open-source development community of any team chat software, with [75 -people](https://zulip.com/team) who’ve contributed 100+ commits. +people](https://zulip.com/team/) who’ve contributed 100+ commits. > “It’s not an exaggeration to say Zulip has made RC a stronger community.” > 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 e4bddfb962..ff655e6136 100644 --- a/tools/documentation_crawler/documentation_crawler/spiders/check_help_documentation.py +++ b/tools/documentation_crawler/documentation_crawler/spiders/check_help_documentation.py @@ -67,7 +67,7 @@ class PorticoDocumentationSpider(BaseDocumentationSpider): "http://localhost:9981/hello/", "http://localhost:9981/history/", "http://localhost:9981/plans/", - "http://localhost:9981/team", + "http://localhost:9981/team/", "http://localhost:9981/apps", "http://localhost:9981/integrations/", "http://localhost:9981/terms", diff --git a/tools/fetch-contributor-data b/tools/fetch-contributor-data index 3eeb872428..04aca274b3 100755 --- a/tools/fetch-contributor-data +++ b/tools/fetch-contributor-data @@ -1,7 +1,7 @@ #!/usr/bin/env python3 """ Fetch contributors data from GitHub using their API, convert it to structured -JSON data for the /team page contributors section. +JSON data for the /team/ page contributors section. """ import argparse import json diff --git a/web/src/portico/team.js b/web/src/portico/team.js index b57527c4a1..74ccd8b438 100644 --- a/web/src/portico/team.js +++ b/web/src/portico/team.js @@ -60,7 +60,7 @@ function exclude_bot_contributors(contributor) { return contributor.github_username !== "dependabot[bot]"; } -// TODO (for v2 of /team contributors): +// TODO (for v2 of /team/ contributors): // - Make tab header responsive. // - Display full name instead of GitHub username. export default function render_tabs() { diff --git a/zerver/tests/test_subs.py b/zerver/tests/test_subs.py index 3f97f860a3..853cf40ecb 100644 --- a/zerver/tests/test_subs.py +++ b/zerver/tests/test_subs.py @@ -1729,13 +1729,13 @@ class StreamAdminTest(ZulipTestCase): with self.settings(INLINE_URL_EMBED_PREVIEW=True): result = self.client_patch( f"/json/streams/{stream_id}", - {"description": "See https://zulip.com/team"}, + {"description": "See https://zulip.com/team/"}, ) self.assert_json_success(result) stream = get_stream("stream_name1", realm) self.assertEqual( stream.rendered_description, - '
', + '', ) def test_change_stream_description_requires_admin(self) -> None: