You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemml.apache.org by gw...@apache.org on 2017/09/15 23:56:25 UTC

systemml-website git commit: [HOTFIX] Update install page to use project.release_version token

Repository: systemml-website
Updated Branches:
  refs/heads/master 49fa497e8 -> 9c86a9602


[HOTFIX] Update install page to use project.release_version token


Project: http://git-wip-us.apache.org/repos/asf/systemml-website/repo
Commit: http://git-wip-us.apache.org/repos/asf/systemml-website/commit/9c86a960
Tree: http://git-wip-us.apache.org/repos/asf/systemml-website/tree/9c86a960
Diff: http://git-wip-us.apache.org/repos/asf/systemml-website/diff/9c86a960

Branch: refs/heads/master
Commit: 9c86a960214f744844f78cf6d323a77271cf63ed
Parents: 49fa497
Author: Glenn Weidner <gw...@us.ibm.com>
Authored: Fri Sep 15 16:55:02 2017 -0700
Committer: Glenn Weidner <gw...@us.ibm.com>
Committed: Fri Sep 15 16:55:02 2017 -0700

----------------------------------------------------------------------
 _src/install-systemml.html | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/systemml-website/blob/9c86a960/_src/install-systemml.html
----------------------------------------------------------------------
diff --git a/_src/install-systemml.html b/_src/install-systemml.html
index c6972fa..06eae0a 100644
--- a/_src/install-systemml.html
+++ b/_src/install-systemml.html
@@ -74,23 +74,23 @@ limitations under the License.
 pip install systemml{% endhighlight %}
 2) For more information, please see the SystemML project documentation:<br/>
 <pre>
-<a href="http://systemml.apache.org/docs/0.14.0/index.html">http://systemml.apache.org/docs/0.14.0/index.html</a>
-<a href="http://systemml.apache.org/docs/0.14.0/beginners-guide-python">http://systemml.apache.org/docs/0.14.0/beginners-guide-python</a>
+<a href="http://systemml.apache.org/docs/{{ site.data.project.release_version }}/index.html">http://systemml.apache.org/docs/{{ site.data.project.release_version }}/index.html</a>
+<a href="http://systemml.apache.org/docs/{{ site.data.project.release_version }}/beginners-guide-python">http://systemml.apache.org/docs/{{ site.data.project.release_version }}/beginners-guide-python</a>
 </pre>
 	</div>
 	<div id="setup-tabs-2">
 1) Download Apache SystemML binary release (tgz or zip):<br/>
-<pre><a href="http://www.apache.org/dyn/closer.lua/incubator/systemml/0.14.0-incubating/systemml-0.14.0-incubating-bin.tgz">http://www.apache.org/dyn/closer.lua/incubator/systemml/0.14.0-incubating/systemml-0.14.0-incubating-bin.tgz</a></pre>
+<pre><a href="http://www.apache.org/dyn/closer.lua/systemml/{{ site.data.project.release_version }}/systemml-{{ site.data.project.release_version }}-bin.tgz">http://www.apache.org/dyn/closer.lua/systemml/{{ site.data.project.release_version }}/systemml-{{ site.data.project.release_version }}-bin.tgz</a></pre>
 
 2) Extract binary release contents:<br/>
-<pre>tar -xvzf systemml-0.14.0-incubating-bin.tgz</pre>
+<pre>tar -xvzf systemml-{{ site.data.project.release_version }}-bin.tgz</pre>
 
 3) Go to project root directory:</br>
-<pre>cd systemml-0.14.0-incubating-bin</pre>
+<pre>cd systemml-{{ site.data.project.release_version }}-bin</pre>
 
 4) Start Spark Shell with SystemML jar file:<br/>
 <pre>
-spark-shell --executor-memory 4G --driver-memory 4G --jars lib/systemml-0.14.0-incubating.jar
+spark-shell --executor-memory 4G --driver-memory 4G --jars lib/systemml-{{ site.data.project.release_version }}.jar
 </pre>
 
 5) You're all set to run SystemML on Spark:<br/>
@@ -104,8 +104,8 @@ ml.execute(helloScript)
 
 6) For more information, please see the SystemML project documentation:<br/>
 <pre>
-<a href="http://systemml.apache.org/docs/0.14.0/index.html">http://systemml.apache.org/docs/0.14.0/index.html</a>
-<a href="http://systemml.apache.org/docs/0.14.0/spark-mlcontext-programming-guide">http://systemml.apache.org/docs/0.14.0/spark-mlcontext-programming-guide</a>
+<a href="http://systemml.apache.org/docs/{{ site.data.project.release_version }}/index.html">http://systemml.apache.org/docs/{{ site.data.project.release_version }}/index.html</a>
+<a href="http://systemml.apache.org/docs/{{ site.data.project.release_version }}/spark-mlcontext-programming-guide">http://systemml.apache.org/docs/{{ site.data.project.release_version }}/spark-mlcontext-programming-guide</a>
 </pre>
 
 	</div>