Skip to content

Commit 539850a

Browse files
GuillaumeGomezsyphar
authored andcommitted
Remove is_latest_version from templates
1 parent 79ff6f7 commit 539850a

14 files changed

+3
-15
lines changed

templates/about-base.html

-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ <h1 id="crate-title" class="no-description">Docs.rs documentation</h1>
4242
{% endblock %}
4343

4444
{%- block topbar -%}
45-
{% set is_latest_version = true %}
4645
{% let search_query = Some(String::new()) %}
4746
{%- include "header/topbar.html" -%}
4847
{%- endblock topbar -%}

templates/core/home.html

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
{%- endblock body_classes -%}
88

99
{%- block topbar -%}
10-
{% set is_latest_version = true %}
1110
{% set search_query = Some(String::new()) %}
1211
{%- include "header/topbar.html" -%}
1312
{%- endblock topbar -%}

templates/crate/build_details.html

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
{%- block topbar -%}
1313
{%- set inner_path = metadata.target_name_url() -%}
14-
{%- set is_latest_version = true -%}
1514
{%- set is_prerelease = false -%}
1615
{%- set has_crate = false %}
1716
{%- include "rustdoc/topbar.html" -%}

templates/crate/builds.html

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515

1616
{%- block topbar -%}
1717
{%- set inner_path = metadata.target_name_url() -%}
18-
{%- set is_latest_version = true -%}
1918
{%- include "rustdoc/topbar.html" -%}
2019
{%- endblock topbar -%}
2120

templates/crate/details.html

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
{%- block topbar -%}
1313
{%- set inner_path = metadata.target_name_url() -%}
14-
{%- set is_latest_version = true -%}
1514
{%- include "rustdoc/topbar.html" -%}
1615
{%- endblock topbar -%}
1716

templates/crate/features.html

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
{%- block topbar -%}
1313
{%- set inner_path = metadata.target_name_url() -%}
14-
{%- set is_latest_version = true -%}
1514
{%- include "rustdoc/topbar.html" -%}
1615
{%- endblock topbar -%}
1716

templates/crate/source.html

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
{%- block topbar -%}
99
{%- set inner_path = metadata.target_name_url() -%}
10-
{%- set is_latest_version = true -%}
1110
{%- include "rustdoc/topbar.html" -%}
1211
{%- endblock topbar -%}
1312

templates/error.html

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ <h1 id="crate-title">{{ title }}</h1>
1010
{%- endblock header -%}
1111

1212
{%- block topbar -%}
13-
{% set is_latest_version = true %}
1413
{% set search_query = Some(String::new()) %}
1514
{%- include "header/topbar.html" -%}
1615
{%- endblock topbar -%}

templates/header/topbar_begin.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
method="GET"
1111
id="nav-search-form"
1212
class="landing-search-form-nav {%
13-
if !is_latest_version %}not-latest{% endif
13+
if is_latest_version is defined && !is_latest_version %}not-latest{% endif
1414
%} {% if metadata is defined && metadata.yanked.unwrap_or_default() %}yanked{% endif %}">
1515

1616
{# The top-left logo and name #}

templates/releases/activity.html

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
{%- endblock header -%}
99

1010
{%- block topbar -%}
11-
{% set is_latest_version = true %}
1211
{% let search_query = Some(String::new()) %}
1312
{%- include "header/topbar.html" -%}
1413
{%- endblock topbar -%}

templates/releases/build_queue.html

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
{%- endblock header -%}
99

1010
{%- block topbar -%}
11-
{% set is_latest_version = true %}
1211
{% let search_query = Some(String::new()) %}
1312
{%- include "header/topbar.html" -%}
1413
{%- endblock topbar -%}

templates/releases/releases.html

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
{%- endblock header -%}
1717

1818
{%- block topbar -%}
19-
{% set is_latest_version = true %}
2019
{% set search_query = Some(String::new()) %}
2120
{%- include "header/topbar.html" -%}
2221
{%- endblock topbar -%}

templates/releases/search_results.html

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
{%- endblock header -%}
77

88
{%- block topbar -%}
9-
{% set is_latest_version = true %}
109
{% let search_query = search_query %}
1110
{%- include "header/topbar.html" -%}
1211
{%- endblock topbar -%}

templates/rustdoc/topbar.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@
179179

180180
{#- If this is the latest release and it's been yanked, just display a warning -#}
181181
{%- set yanked = metadata.yanked.unwrap_or_default() -%}
182-
{%- if is_latest_version && yanked -%}
182+
{%- if (is_latest_version is not defined || is_latest_version) && yanked -%}
183183
<li class="pure-menu-item">
184184
<span class="pure-menu-link warn">
185185
{{ "triangle-exclamation"|fas(false, false, "") }}
@@ -188,7 +188,7 @@
188188
</li>
189189

190190
{#- If this isn't the most recent stable release, offer a link to the latest -#}
191-
{%- elif !is_latest_version -%}
191+
{%- elif is_latest_version is defined && !is_latest_version -%}
192192
{% set tooltip %}
193193
{% set title %}
194194
{%- if yanked -%}

0 commit comments

Comments
 (0)