2018-09-25 12:24:11 +02:00
|
|
|
from typing import Any
|
|
|
|
|
2020-05-05 12:25:47 +02:00
|
|
|
from django.conf.urls import include
|
|
|
|
from django.urls import path
|
2022-08-16 09:39:36 +02:00
|
|
|
from django.views.generic import RedirectView, TemplateView
|
2018-09-25 12:24:11 +02:00
|
|
|
|
2021-08-29 15:33:29 +02:00
|
|
|
from corporate.views.billing_page import billing_home, update_plan
|
|
|
|
from corporate.views.event_status import event_status, event_status_page
|
|
|
|
from corporate.views.session import (
|
|
|
|
start_card_update_stripe_session,
|
|
|
|
start_retry_payment_intent_session,
|
|
|
|
)
|
2021-09-29 19:51:55 +02:00
|
|
|
from corporate.views.support import support_request
|
2021-07-15 16:38:37 +02:00
|
|
|
from corporate.views.upgrade import initial_upgrade, sponsorship, upgrade
|
2021-08-29 15:33:29 +02:00
|
|
|
from corporate.views.webhook import stripe_webhook
|
2020-09-22 06:04:45 +02:00
|
|
|
from zerver.lib.rest import rest_path
|
2022-08-16 09:39:36 +02:00
|
|
|
from zerver.views.portico import (
|
|
|
|
app_download_link_redirect,
|
|
|
|
apps_view,
|
|
|
|
hello_view,
|
|
|
|
landing_view,
|
|
|
|
plans_view,
|
|
|
|
team_view,
|
|
|
|
)
|
2013-11-05 23:50:19 +01:00
|
|
|
|
python: Convert assignment type annotations to Python 3.6 style.
This commit was split by tabbott; this piece covers the vast majority
of files in Zulip, but excludes scripts/, tools/, and puppet/ to help
ensure we at least show the right error messages for Xenial systems.
We can likely further refine the remaining pieces with some testing.
Generated by com2ann, with whitespace fixes and various manual fixes
for runtime issues:
- invoiced_through: Optional[LicenseLedger] = models.ForeignKey(
+ invoiced_through: Optional["LicenseLedger"] = models.ForeignKey(
-_apns_client: Optional[APNsClient] = None
+_apns_client: Optional["APNsClient"] = None
- notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- signup_notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ signup_notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- author: Optional[UserProfile] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
+ author: Optional["UserProfile"] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
- bot_owner: Optional[UserProfile] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
+ bot_owner: Optional["UserProfile"] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
- default_sending_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
- default_events_register_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_sending_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_events_register_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
-descriptors_by_handler_id: Dict[int, ClientDescriptor] = {}
+descriptors_by_handler_id: Dict[int, "ClientDescriptor"] = {}
-worker_classes: Dict[str, Type[QueueProcessingWorker]] = {}
-queues: Dict[str, Dict[str, Type[QueueProcessingWorker]]] = {}
+worker_classes: Dict[str, Type["QueueProcessingWorker"]] = {}
+queues: Dict[str, Dict[str, Type["QueueProcessingWorker"]]] = {}
-AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional[LDAPSearch] = None
+AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional["LDAPSearch"] = None
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-22 01:09:50 +02:00
|
|
|
i18n_urlpatterns: Any = [
|
2013-11-06 12:50:13 +01:00
|
|
|
# Zephyr/MIT
|
2021-02-12 08:20:45 +01:00
|
|
|
path("zephyr/", TemplateView.as_view(template_name="corporate/zephyr.html")),
|
|
|
|
path("zephyr-mirror/", TemplateView.as_view(template_name="corporate/zephyr-mirror.html")),
|
|
|
|
path("jobs/", TemplateView.as_view(template_name="corporate/jobs.html")),
|
2018-09-25 12:24:11 +02:00
|
|
|
# Billing
|
2021-08-29 15:33:29 +02:00
|
|
|
path("billing/", billing_home, name="billing_home"),
|
2021-02-12 08:20:45 +01:00
|
|
|
path("upgrade/", initial_upgrade, name="initial_upgrade"),
|
2021-09-29 19:51:55 +02:00
|
|
|
path("support/", support_request),
|
2021-08-29 15:33:29 +02:00
|
|
|
path("billing/event_status/", event_status_page, name="event_status_page"),
|
|
|
|
path("stripe/webhook/", stripe_webhook, name="stripe_webhook"),
|
python: Convert assignment type annotations to Python 3.6 style.
This commit was split by tabbott; this piece covers the vast majority
of files in Zulip, but excludes scripts/, tools/, and puppet/ to help
ensure we at least show the right error messages for Xenial systems.
We can likely further refine the remaining pieces with some testing.
Generated by com2ann, with whitespace fixes and various manual fixes
for runtime issues:
- invoiced_through: Optional[LicenseLedger] = models.ForeignKey(
+ invoiced_through: Optional["LicenseLedger"] = models.ForeignKey(
-_apns_client: Optional[APNsClient] = None
+_apns_client: Optional["APNsClient"] = None
- notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- signup_notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ signup_notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- author: Optional[UserProfile] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
+ author: Optional["UserProfile"] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
- bot_owner: Optional[UserProfile] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
+ bot_owner: Optional["UserProfile"] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
- default_sending_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
- default_events_register_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_sending_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_events_register_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
-descriptors_by_handler_id: Dict[int, ClientDescriptor] = {}
+descriptors_by_handler_id: Dict[int, "ClientDescriptor"] = {}
-worker_classes: Dict[str, Type[QueueProcessingWorker]] = {}
-queues: Dict[str, Dict[str, Type[QueueProcessingWorker]]] = {}
+worker_classes: Dict[str, Type["QueueProcessingWorker"]] = {}
+queues: Dict[str, Dict[str, Type["QueueProcessingWorker"]]] = {}
-AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional[LDAPSearch] = None
+AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional["LDAPSearch"] = None
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-22 01:09:50 +02:00
|
|
|
]
|
2018-09-25 12:24:11 +02:00
|
|
|
|
|
|
|
v1_api_and_json_patterns = [
|
2021-02-12 08:20:45 +01:00
|
|
|
rest_path("billing/upgrade", POST=upgrade),
|
|
|
|
rest_path("billing/sponsorship", POST=sponsorship),
|
2020-12-10 18:15:09 +01:00
|
|
|
rest_path("billing/plan", PATCH=update_plan),
|
2021-08-29 15:33:29 +02:00
|
|
|
rest_path("billing/session/start_card_update_session", POST=start_card_update_stripe_session),
|
|
|
|
rest_path(
|
|
|
|
"billing/session/start_retry_payment_intent_session",
|
|
|
|
POST=start_retry_payment_intent_session,
|
|
|
|
),
|
|
|
|
rest_path("billing/event/status", GET=event_status),
|
2016-05-19 17:33:30 +02:00
|
|
|
]
|
2016-03-21 03:13:38 +01:00
|
|
|
|
2022-08-16 09:39:36 +02:00
|
|
|
landing_page_urls = [
|
|
|
|
# Landing page, features pages, signup form, etc.
|
|
|
|
path("hello/", hello_view),
|
|
|
|
path("new-user/", RedirectView.as_view(url="/hello", permanent=True)),
|
|
|
|
path("features/", landing_view, {"template_name": "zerver/features.html"}),
|
|
|
|
path("plans/", plans_view, name="plans"),
|
|
|
|
path("apps/", apps_view),
|
|
|
|
path("apps/download/<platform>", app_download_link_redirect),
|
|
|
|
path("apps/<platform>", apps_view),
|
|
|
|
path(
|
|
|
|
"developer-community/", RedirectView.as_view(url="/development-community/", permanent=True)
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"development-community/",
|
|
|
|
landing_view,
|
|
|
|
{"template_name": "zerver/development-community.html"},
|
|
|
|
),
|
|
|
|
path("attribution/", landing_view, {"template_name": "zerver/attribution.html"}),
|
|
|
|
path("team/", team_view),
|
|
|
|
path("history/", landing_view, {"template_name": "zerver/history.html"}),
|
|
|
|
path("why-zulip/", landing_view, {"template_name": "zerver/why-zulip.html"}),
|
|
|
|
path("self-hosting/", landing_view, {"template_name": "zerver/self-hosting.html"}),
|
|
|
|
path("security/", landing_view, {"template_name": "zerver/security.html"}),
|
|
|
|
# /for pages
|
|
|
|
path("use-cases/", landing_view, {"template_name": "zerver/use-cases.html"}),
|
|
|
|
path("for/education/", landing_view, {"template_name": "zerver/for-education.html"}),
|
|
|
|
path("for/events/", landing_view, {"template_name": "zerver/for-events.html"}),
|
|
|
|
path("for/open-source/", landing_view, {"template_name": "zerver/for-open-source.html"}),
|
|
|
|
path("for/research/", landing_view, {"template_name": "zerver/for-research.html"}),
|
|
|
|
path("for/business/", landing_view, {"template_name": "zerver/for-business.html"}),
|
|
|
|
path("for/companies/", RedirectView.as_view(url="/for/business/", permanent=True)),
|
|
|
|
path(
|
|
|
|
"for/communities/",
|
|
|
|
landing_view,
|
|
|
|
{"template_name": "zerver/for-communities.html"},
|
|
|
|
),
|
|
|
|
# We merged this into /for/communities.
|
|
|
|
path(
|
|
|
|
"for/working-groups-and-communities/",
|
|
|
|
RedirectView.as_view(url="/for/communities/", permanent=True),
|
|
|
|
),
|
|
|
|
# case-studies
|
|
|
|
path("case-studies/idrift/", landing_view, {"template_name": "zerver/idrift-case-study.html"}),
|
|
|
|
path("case-studies/tum/", landing_view, {"template_name": "zerver/tum-case-study.html"}),
|
|
|
|
path("case-studies/ucsd/", landing_view, {"template_name": "zerver/ucsd-case-study.html"}),
|
|
|
|
path("case-studies/rust/", landing_view, {"template_name": "zerver/rust-case-study.html"}),
|
|
|
|
path("case-studies/lean/", landing_view, {"template_name": "zerver/lean-case-study.html"}),
|
|
|
|
path(
|
|
|
|
"case-studies/asciidoctor/",
|
|
|
|
landing_view,
|
|
|
|
{"template_name": "zerver/asciidoctor-case-study.html"},
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"case-studies/recurse-center/",
|
|
|
|
landing_view,
|
|
|
|
{"template_name": "zerver/recurse-center-case-study.html"},
|
|
|
|
),
|
|
|
|
]
|
|
|
|
i18n_urlpatterns += landing_page_urls
|
|
|
|
|
2018-09-25 12:24:11 +02:00
|
|
|
# Make a copy of i18n_urlpatterns so that they appear without prefix for English
|
|
|
|
urlpatterns = list(i18n_urlpatterns)
|
|
|
|
|
|
|
|
urlpatterns += [
|
2021-02-12 08:20:45 +01:00
|
|
|
path("api/v1/", include(v1_api_and_json_patterns)),
|
|
|
|
path("json/", include(v1_api_and_json_patterns)),
|
2018-09-25 12:24:11 +02:00
|
|
|
]
|