You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemml.apache.org by lr...@apache.org on 2016/09/27 04:07:32 UTC

[1/2] incubator-systemml-website git commit: Fix base path for resources and assets

Repository: incubator-systemml-website
Updated Branches:
  refs/heads/master 6d559fe6d -> ecaa05c6e


Fix base path for resources and assets


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

Branch: refs/heads/master
Commit: ecaa05c6e186275a6feee561607dc1a197a85b9e
Parents: 5866218
Author: Luciano Resende <lr...@apache.org>
Authored: Sun Sep 11 22:33:09 2016 -0700
Committer: Luciano Resende <lr...@apache.org>
Committed: Mon Sep 26 21:07:20 2016 -0700

----------------------------------------------------------------------
 _includes/themes/apache/default.html | 6 +++---
 _includes/themes/apache/footer.html  | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-systemml-website/blob/ecaa05c6/_includes/themes/apache/default.html
----------------------------------------------------------------------
diff --git a/_includes/themes/apache/default.html b/_includes/themes/apache/default.html
index be0f768..dcf1740 100644
--- a/_includes/themes/apache/default.html
+++ b/_includes/themes/apache/default.html
@@ -19,7 +19,7 @@
     <link href="/assets/css/style.css?body=1" rel="stylesheet" type="text/css">
     <link href="/assets/css/syntax.css" rel="stylesheet"  type="text/css" media="screen" />
     <!-- Le fav and touch icons -->
-    <link rel="shortcut icon" href="{{ BASE_PATH }}/favicon.png">
+    <link rel="shortcut icon" href="/favicon.png">
     <!-- Update these with your own images
     <link rel="apple-touch-icon" href="images/apple-touch-icon.png">
     <link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
@@ -42,9 +42,9 @@
     </div>
 
 
-    <script src="{{ ASSET_PATH }}/jquery/jquery-2.1.1.min.js"></script>
+    <script src="/assets/jquery/jquery-2.1.1.min.js"></script>
 
-    <script src="{{ ASSET_PATH }}/bootstrap/js/bootstrap.min.js"></script>
+    <script src="/assets/bootstrap/js/bootstrap.min.js"></script>
 
 
   </body>

http://git-wip-us.apache.org/repos/asf/incubator-systemml-website/blob/ecaa05c6/_includes/themes/apache/footer.html
----------------------------------------------------------------------
diff --git a/_includes/themes/apache/footer.html b/_includes/themes/apache/footer.html
index 1fab9a4..df65670 100644
--- a/_includes/themes/apache/footer.html
+++ b/_includes/themes/apache/footer.html
@@ -10,7 +10,7 @@
       <div style="text-align:center;">
       {% if site.data.project.podling %}
           <div style="margin-top: 20px; margin-bottom: 20px;">
-              <a href="http://incubator.apache.org"><img src="{{ BASE_PATH }}/assets/themes/apache/img/egg-logo.png" alt="Apache Incubator"/></a>
+              <a href="http://incubator.apache.org"><img src="/assets/img/egg-logo.png" alt="Apache Incubator"/></a>
           </div>
       {% endif %}
           <div>


[2/2] incubator-systemml-website git commit: Remove obsolete feed artifact

Posted by lr...@apache.org.
Remove obsolete feed artifact


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

Branch: refs/heads/master
Commit: 5866218c4321a8303959648fae65424fb9830f2f
Parents: 6d559fe
Author: Luciano Resende <lr...@apache.org>
Authored: Wed Sep 21 08:34:52 2016 -0700
Committer: Luciano Resende <lr...@apache.org>
Committed: Mon Sep 26 21:07:20 2016 -0700

----------------------------------------------------------------------
 feed.xml | 28 ----------------------------
 1 file changed, 28 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-systemml-website/blob/5866218c/feed.xml
----------------------------------------------------------------------
diff --git a/feed.xml b/feed.xml
deleted file mode 100644
index 4222b6e..0000000
--- a/feed.xml
+++ /dev/null
@@ -1,28 +0,0 @@
----
-layout: null
----
-<?xml version="1.0" encoding="UTF-8"?>
-<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
-  <channel>
-    <title>{{ site.title | xml_escape }}</title>
-    <description>{{ site.description | xml_escape }}</description>
-    <link>{{ site.url }}{{ site.baseurl }}/</link>
-    <atom:link href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" rel="self" type="application/rss+xml"/>
-    <pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
-    <lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
-    <generator>Jekyll v{{ jekyll.version }}</generator>
-    {% for post in site.posts limit:10 %}
-      <item>
-        <title>{{ post.title | xml_escape }}</title>
-        <description>{{ post.content | xml_escape }}</description>
-        <pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
-        {% for tag in post.tags %}
-        <category>{{ tag | xml_escape }}</category>
-        {% endfor %}
-        {% for cat in post.categories %}
-        <category>{{ cat | xml_escape }}</category>
-        {% endfor %}
-      </item>
-    {% endfor %}
-  </channel>
-</rss>