Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pricing: mention custom domain limitations #305

Merged
merged 1 commit into from
Jul 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions content/pages/pricing.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ <h1 class="ui medium header">
<div class="ui list relaxed divided">
{{ pricing.plan_feature("<em>Includes all <b>Basic plan</b> features</em>", "<a href='#compare'>Compare plan features</a>", "fa-object-intersect", color="violet") }}
{{ pricing.plan_feature("Concurrent builds", "4 concurrent builds", "fa-rectangle-vertical-history fa-swap-opacity") }}
{{ pricing.plan_feature("Custom domains", "Use your own domain", "fa-at") }}
{{ pricing.plan_feature("Custom domains", "5 custom domains", "fa-at") }}
{{ pricing.plan_feature("Search and pageview analytics", "30 day retention", "fa-line-chart") }}
</div>
{% endcall %}
Expand All @@ -70,6 +70,7 @@ <h1 class="ui medium header">
<div class="ui list relaxed divided">
{{ pricing.plan_feature("<em>Includes all <b>Advanced plan</b> features</em>", "<a href='#compare'>Compare plan features</a>", "fa-object-intersect", color="violet") }}
{{ pricing.plan_feature("Concurrent builds", "6 concurrent builds", "fa-rectangle-vertical-history fa-swap-opacity") }}
{{ pricing.plan_feature("Custom domains", "15 custom domains", "fa-at") }}
{{ pricing.plan_feature("Support", "1 business day response", "fa-message-question") }}
{{ pricing.plan_feature("Search and pageview analytics", "90 day retention", "fa-line-chart") }}
{{ pricing.plan_feature("Authentication auditing", "90 day retention", "fa-user-check") }}
Expand Down Expand Up @@ -127,7 +128,7 @@ <h2 class="ui small monospace center aligned header">
{{ pricing.plan_feature("Concurrent builds", "2 concurrent builds", "fa-rectangle-vertical-history fa-swap-opacity") }}
{{ pricing.plan_feature("Public projects", "Host public documentation", "fa-globe") }}
{{ pricing.plan_feature("Public repositories", "Clone public repositories", "fa-globe") }}
{{ pricing.plan_feature("Custom domain", "Use your own domain", "fa-at") }}
{{ pricing.plan_feature("Custom domain", "2 custom domains", "fa-at") }}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we have the number of projects using more than one domain on .org?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have 102 projects with more than 2 domains.

In [2]: Project.objects.annotate(n_domains=Count("domains")).filter(n_domains__gt=2).count()
Out[2]: 102

First 15 projects with many domains:

In [15]: list(Project.objects.annotate(n_domains=Count("domains")).filter(n_domains__gt=2).order_by("-n_domains")[:15].values_list("slug", flat=True))
Out[15]: 
['www',
 'readthedocs',
 'gooddal',
 'thiet-ke-web',
 'trevorbramwellnet',
 'astro-thesis',
 'stdlib-examples',
 'ompi',
 'zfsbootmenu',
 'python3info',
 'workshop-devops',
 'pirateweather',
 'astronaut-training-program',
 'jquantlib',
 'docoftheyear']

{{ pricing.plan_feature("Ad supported", "Hosted documentation includes ads", "fa-ad") }}
</div>
</div>
Expand Down Expand Up @@ -243,7 +244,7 @@ <h3 class="ui small header">
{{ pricing.feature_row("Single sign-on", "Sign on with using external provider", "fa-right-to-bracket", on_community=None, on_basic="GitHub and GitLab", on_advanced="GitHub and GitLab", on_pro=("GitHub, GitLab, and Google", "olive")) }}
{{ pricing.feature_row("Sharing", "Provide temporary access to private documentation", "fa-user-shield", on_community=False) }}
{{ pricing.feature_row("CDN hosting", "Reduce load times for your projects", "fa-clouds", on_community=True, on_basic="Public projects only", on_advanced="Public projects only", on_pro="Public projects only") }}
{{ pricing.feature_row("Custom domains", "Host projects on custom domain name", "fa-at", on_basic=False) }}
{{ pricing.feature_row("Custom domains", "Host projects on your own custom domain names", "fa-at", on_community="2", on_basic=False, on_advanced="5", on_pro="15") }}
{{ pricing.feature_row("Subprojects", "Organize projects using project nesting", "fa-diagram-nested") }}
{{ pricing.feature_row("Integrated search", "Search across all of your projects", "fa-magnifying-glass") }}
{{ pricing.feature_row("Offline formats", "Download offline PDF and EPUB formats", "fa-file-pdf") }}
Expand Down
Loading