[ARVADOS] updated: 9ab861b00881ea7a5737d89b90ad17ceb264c8da

git at public.curoverse.com git at public.curoverse.com
Tue Mar 11 14:16:46 EDT 2014


Summary of changes:
 doc/_includes/_webring.liquid                      |   29 ++++++++++++++++++++
 doc/_layouts/default.html.liquid                   |    1 +
 .../check-environment.html.textile.liquid          |    2 -
 .../getting_started/ssh-access.html.textile.liquid |    3 +-
 .../getting_started/workbench.html.textile.liquid  |    2 -
 doc/user/index.html.textile.liquid                 |    1 -
 .../topics/tutorial-job-debug.html.textile.liquid  |   12 ++++----
 doc/user/topics/tutorial-job1.html.textile.liquid  |   14 +++++-----
 .../topics/tutorial-parallel.html.textile.liquid   |    2 +-
 .../tutorial-firstscript.html.textile.liquid       |    2 +-
 .../tutorials/tutorial-keep.html.textile.liquid    |    4 ---
 11 files changed, 47 insertions(+), 25 deletions(-)
 create mode 100644 doc/_includes/_webring.liquid

       via  9ab861b00881ea7a5737d89b90ad17ceb264c8da (commit)
       via  fdbef7b63085492ddbc9201726508d63d0c8bf8f (commit)
       via  4638e5fd00707c755c685bf601f92d27038703f3 (commit)
       via  15dd4bd9a033b3ca45774994a84fe1bfa2226655 (commit)
       via  55d96c71c561e51e8a00974caf60123698fc0647 (commit)
       via  a0bcef395615dc00d3b14d6f33a802e789d571e4 (commit)
       via  c592425e9ce54bee52f825c1ec1d2caa665ba308 (commit)
      from  a7f378b2267ddc1b44a8661d6723264fe959d98e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit 9ab861b00881ea7a5737d89b90ad17ceb264c8da
Author: Peter Amstutz <peter.amstutz at curoverse.com>
Date:   Tue Mar 11 14:18:12 2014 -0400

    Added liquid template to link to next and previous pages.

diff --git a/doc/_includes/_webring.liquid b/doc/_includes/_webring.liquid
new file mode 100644
index 0000000..edcfedf
--- /dev/null
+++ b/doc/_includes/_webring.liquid
@@ -0,0 +1,29 @@
+{% assign n = 0 %}
+{% assign prev = "" %}
+{% assign nx = 0 %}
+{% for section in site.navbar[page.navsection] %}
+  {% for entry in section %}
+    {% for item in entry[1] %}        
+      {% assign p = site.pages[item] %}
+      {% if nx == 1 %}
+        <hr>
+        {% if prev != "" %}
+          <a href="{{ site.baseurl }}{{ prev.url }}" class="pull-left">Previous: {{ prev.title }}</a></li>
+        {% endif %}
+        <a href="{{ site.baseurl }}{{ p.url }}" class="pull-right">Next: {{ p.title }}</a></li>            
+        {% assign nx = 0 %}
+        {% assign n = 1 %}
+      {% endif %}
+      {% if p.url == page.url %}
+        {% assign nx = 1 %}
+      {% else %}
+        {% assign prev = p %}
+      {% endif %}
+    {% endfor %}
+  {% endfor %}
+{% endfor %}
+{% if n == 0 && prev != "" %}
+  <hr>
+  <a href="{{ site.baseurl }}{{ prev.url }}" class="pull-left">Previous: {{ prev.title }}</a></li>  
+  {% assign n = 1 %}
+{% endif %}
\ No newline at end of file
diff --git a/doc/_layouts/default.html.liquid b/doc/_layouts/default.html.liquid
index f9c0db5..3004974 100644
--- a/doc/_layouts/default.html.liquid
+++ b/doc/_layouts/default.html.liquid
@@ -77,6 +77,7 @@
         <div class="col-sm-9">
           <h1>{{ page.title }}</h1>
           {{ content }}
+          {% include 'webring' %}
         </div>
       </div>
 
diff --git a/doc/user/getting_started/check-environment.html.textile.liquid b/doc/user/getting_started/check-environment.html.textile.liquid
index bb29373..2908e6e 100644
--- a/doc/user/getting_started/check-environment.html.textile.liquid
+++ b/doc/user/getting_started/check-environment.html.textile.liquid
@@ -38,5 +38,3 @@ However, if you receive the following message:
 bc. ARVADOS_API_HOST and ARVADOS_API_TOKEN need to be defined as environment variables
 
 Then follow the instructions for "getting an API token,":{{site.baseurl}}/user/reference/api-tokens.html and try @arv user current@ again.
-
-Once you are able to access the API server, you are ready proceed to the first tutorial: "Storing and retrieving data using Arvados Keep.":{{site.baseurl}}/user/tutorials/tutorial-keep.html
diff --git a/doc/user/getting_started/workbench.html.textile.liquid b/doc/user/getting_started/workbench.html.textile.liquid
index 74cee77..48a4c47 100644
--- a/doc/user/getting_started/workbench.html.textile.liquid
+++ b/doc/user/getting_started/workbench.html.textile.liquid
@@ -11,5 +11,3 @@ Access the Arvados beta test instance available using this link:
 If you are accessing Arvados for the first time, you will be asked to log in using a Google account.  Arvados uses only your name and email address from Google services for identification, and will never access any personal information.  Once you are logged in, the Workbench page may indicate your account status is *New / inactive*.  If this is the case, contact the administrator of the Arvados instance to activate your account.
 
 Once your account is active, logging in to the Workbench will present you with a system status dashboard.  This gives a summary of data, configuration, and activity in the Arvados instance.
-
-Next, we will "configure your account for ssh access to an Arvados virtual machine (VM).":ssh-access.html
diff --git a/doc/user/index.html.textile.liquid b/doc/user/index.html.textile.liquid
index 950d7dc..03a9e60 100644
--- a/doc/user/index.html.textile.liquid
+++ b/doc/user/index.html.textile.liquid
@@ -48,4 +48,3 @@ foo
 </ul>
 </notextile>
 
-Now begin by "accessing the Arvados workbench.":getting_started/workbench.html
diff --git a/doc/user/tutorials/tutorial-keep.html.textile.liquid b/doc/user/tutorials/tutorial-keep.html.textile.liquid
index 0321760..6a797c0 100644
--- a/doc/user/tutorials/tutorial-keep.html.textile.liquid
+++ b/doc/user/tutorials/tutorial-keep.html.textile.liquid
@@ -164,7 +164,3 @@ Using @arv-mount@ has several significant benefits:
 * You can browse, open and read Keep entries as if they are regular files.
 * It is easy for existing tools to access files in Keep.
 * Data is downloaded on demand, it is not necessary to download an entire file or collection to start processing
-
-<hr>
-
-You are now ready to proceed to the next tutorial, "running a crunch job.":tutorial-job1.html

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


hooks/post-receive
-- 




More information about the arvados-commits mailing list