[ARVADOS] created: 1.2.1-4-gd8bac437f

Git user git at public.arvados.org
Thu Jan 6 17:43:08 UTC 2022


        at  d8bac437f8f12dc67a31d02bd0b3b4669b7a67f8 (commit)


commit d8bac437f8f12dc67a31d02bd0b3b4669b7a67f8
Author: Ward Vandewege <ward at curii.com>
Date:   Mon Aug 10 13:55:27 2020 -0400

    documentation: the arvados k8s repo has changed name.
    
    No issue #
    
    Arvados-DCO-1.1-Signed-off-by: Ward Vandewege <ward at curii.com>

diff --git a/doc/install/arvados-on-kubernetes.html.textile.liquid b/doc/install/arvados-on-kubernetes.html.textile.liquid
index 01999f0c2..4e7b8b73f 100644
--- a/doc/install/arvados-on-kubernetes.html.textile.liquid
+++ b/doc/install/arvados-on-kubernetes.html.textile.liquid
@@ -55,11 +55,11 @@ There should be no errors. The command will return nothing.
 
 h2(#git). Clone the repository
 
-Clone the repository and nagivate to the @arvados-kubernetes/charts/arvados@ directory:
+Clone the repository and nagivate to the @arvados-k8s/charts/arvados@ directory:
 
 <pre>
-$ git clone https://github.com/curoverse/arvados-kubernetes.git
-$ cd arvados-kubernetes/charts/arvados
+$ git clone https://github.com/arvados/arvados-k8s.git
+$ cd arvados-k8s/charts/arvados
 </pre>
 
 h2(#Start). Start the Arvados cluster

commit fc4050ded93a8c8dbdb581b4fc53c0b015994e6b
Author: Ward Vandewege <wvandewege at veritasgenetics.com>
Date:   Wed Jun 19 15:02:10 2019 -0400

    Keep relative URL when switching between versions in our documentation.
    
    refs #15138
    
    Arvados-DCO-1.1-Signed-off-by: Ward Vandewege <wvandewege at veritasgenetics.com>

diff --git a/doc/_includes/_navbar_top.liquid b/doc/_includes/_navbar_top.liquid
index e227703a5..39c70471a 100644
--- a/doc/_includes/_navbar_top.liquid
+++ b/doc/_includes/_navbar_top.liquid
@@ -28,7 +28,7 @@ SPDX-License-Identifier: CC-BY-SA-3.0
           {% if site.all_versions != [] %}
             <div class="dropdown-menu" aria-labelledby="versionMenuLink">
             {% for version in site.all_versions %}
-               <a href="/{{ version }}/" class="dropdown-item">{{ version }}</a><br/>
+               <a href="/{{ version }}{{ page.url }}" class="dropdown-item">{{ version }}</a><br/>
             {% endfor %}
             </div>
           {% endif %}

commit 24cf7a74bd25c91e3a892ddb3a604de8e3ca401f
Author: Ward Vandewege <wvandewege at veritasgenetics.com>
Date:   Tue Jun 11 13:42:40 2019 -0400

    15138: Include logic to support building multiple versions of our documentation.
    
    Arvados-DCO-1.1-Signed-off-by: Ward Vandewege <wvandewege at veritasgenetics.com>

diff --git a/doc/_config.yml b/doc/_config.yml
index c2c97a9ff..305f0bc05 100644
--- a/doc/_config.yml
+++ b/doc/_config.yml
@@ -11,6 +11,8 @@
 # $ rake generate baseurl=/example arvados_api_host=example.com
 
 baseurl:
+current_version:
+all_versions:
 arvados_api_host: localhost
 arvados_workbench_host: http://localhost
 
diff --git a/doc/_includes/_navbar_top.liquid b/doc/_includes/_navbar_top.liquid
index 477a0dd81..e227703a5 100644
--- a/doc/_includes/_navbar_top.liquid
+++ b/doc/_includes/_navbar_top.liquid
@@ -24,6 +24,15 @@ SPDX-License-Identifier: CC-BY-SA-3.0
         <li {% if page.navsection == 'api' %} class="active" {% endif %}><a href="{{ site.baseurl }}/api/index.html">API</a></li>
         <li {% if page.navsection == 'admin' %} class="active" {% endif %}><a href="{{ site.baseurl }}/admin/index.html">Admin</a></li>
         <li {% if page.navsection == 'installguide' %} class="active" {% endif %}><a href="{{ site.baseurl }}/install/index.html">Install</a></li>
+        <li><a href="#" class="dropdown-toggle" role="button" id="versionMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">{{ site.current_version }}{% if site.all_versions != [] %} ▾{% endif %}</a>
+          {% if site.all_versions != [] %}
+            <div class="dropdown-menu" aria-labelledby="versionMenuLink">
+            {% for version in site.all_versions %}
+               <a href="/{{ version }}/" class="dropdown-item">{{ version }}</a><br/>
+            {% endfor %}
+            </div>
+          {% endif %}
+        </li>
         <li><a href="https://arvados.org" style="padding-left: 2em">arvados.org »</a></li>
       </ul>
 

commit c7321107dff99c355abcb7ba710bdce7640f0d1b
Author: Ward Vandewege <wvandewege at veritasgenetics.com>
Date:   Mon Jun 10 10:41:22 2019 -0400

    15138: Show the TM notice a little bit higher.
    
    Arvados-DCO-1.1-Signed-off-by: Ward Vandewege <wvandewege at veritasgenetics.com>

diff --git a/doc/_includes/_navbar_top.liquid b/doc/_includes/_navbar_top.liquid
index 7d96ea011..477a0dd81 100644
--- a/doc/_includes/_navbar_top.liquid
+++ b/doc/_includes/_navbar_top.liquid
@@ -13,7 +13,7 @@ SPDX-License-Identifier: CC-BY-SA-3.0
         <span class="icon-bar"></span>
         <span class="icon-bar"></span>
       </button>
-      <a class="navbar-brand" href="{{ site.baseurl }}/">Arvados™ Docs</a>
+      <a class="navbar-brand" href="{{ site.baseurl }}/">Arvados<sup>™</sup> Docs</a>
     </div>
     <div class="collapse navbar-collapse" id="bs-navbar-collapse">
       <ul class="nav navbar-nav">
diff --git a/doc/user/index.html.textile.liquid b/doc/user/index.html.textile.liquid
index f428d912c..99ef3dfe7 100644
--- a/doc/user/index.html.textile.liquid
+++ b/doc/user/index.html.textile.liquid
@@ -1,7 +1,7 @@
 ---
 layout: default
 navsection: userguide
-title: Welcome to Arvados™!
+title: Welcome to Arvados<sup>™</sup>!
 ...
 {% comment %}
 Copyright (C) The Arvados Authors. All rights reserved.

commit 4d25252a08f473ac767f8b0e16395b6b4ebae7a0
Merge: 3c85ce36c 3378e6975
Author: Tom Clegg <tclegg at veritasgenetics.com>
Date:   Mon Nov 26 10:58:59 2018 -0500

    Merge branch '14345-backport-1.2' into 1.2-dev
    
    refs #14345
    
    Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tclegg at veritasgenetics.com>


-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list