Skip to content

Commit

Permalink
ARROW-965: Website updates for 0.3.0
Browse files Browse the repository at this point in the history
Author: Wes McKinney <[email protected]>

Closes apache#658 from wesm/ARROW-965 and squashes the following commits:

61c69d1 [Wes McKinney] Add license header
9e2c969 [Wes McKinney] Fix post template
5a55645 [Wes McKinney] Add Release page with changelog
7e674e1 [Wes McKinney] Website updates for 0.3.0
  • Loading branch information
wesm committed May 8, 2017
1 parent 3d19831 commit fe945a2
Show file tree
Hide file tree
Showing 13 changed files with 990 additions and 15 deletions.
2 changes: 2 additions & 0 deletions NOTICE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ This product includes software from the Ibis project (Apache 2.0)
* Copyright (c) 2015 Cloudera, Inc.
* https://github.com/cloudera/ibis

The web site includes files generated by Jekyll.

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

This product includes code from Apache Kudu, which includes the following in
Expand Down
2 changes: 2 additions & 0 deletions site/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ exclude:
collections:
docs:
output: true
release:
output: true

sass:
style: compressed
Expand Down
32 changes: 32 additions & 0 deletions site/_data/contributors.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to you under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Database of contributors to Apache Arrow (WIP)
# Blogs and other pages use this data
#
- name: Wes McKinney
apacheId: wesm
githubId: wesm
homepage: http://wesmckinney.com
role: PMC
- name: Uwe Korn
apacheId: uwe
githubId: xhochy
role: PMC
- name: Julien Le Dem
apacheId: julienledem
githubId: julienledem
role: PMC
# End contributors.yml
20 changes: 19 additions & 1 deletion site/_includes/blog_entry.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,24 @@ <h2>
<a href="{{ post.url }}" class="permalink" title="Permalink"></a>
</h2>

{% capture discard %}
{% for c in site.data.contributors %}
{% if c.apacheId == post.author %}
{% assign author_name = c.name %}
{% if c.homepage %}
{% assign homepage = c.homepage %}
{% else %}
{% capture homepage %}http://github.com/{{ c.githubId }}{% endcapture %}
{% endif %}
{% if c.avatar %}
{% assign avatar = c.avatar %}
{% else %}
{% capture avatar %}http://github.com/{{ c.githubId }}.png{% endcapture %}
{% endif %}
{% endif %}
{% endfor %}
{% endcapture %}{% assign discard = nil %}

<div class="panel">
<div class="panel-body">
<div>
Expand All @@ -31,7 +49,7 @@ <h2>
</div>
<div>
<span class="label label-default">By</span>
<a href="{{ homepage }}"><i class="fa fa-user"></i> {{ post.author }}</a>
<a href="{{ homepage }}"><i class="fa fa-user"></i> {{ author_name }} ({{ post.author }})</a>
</div>
</div>
</div>
Expand Down
1 change: 1 addition & 0 deletions site/_includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<ul class="dropdown-menu">
<li><a href="{{ site.baseurl }}/install/">Install</a></li>
<li><a href="{{ site.baseurl }}/blog/">Blog</a></li>
<li><a href="{{ site.baseurl }}/release/">Releases</a></li>
<li><a href="https://issues.apache.org/jira/browse/ARROW">Issue Tracker</a></li>
<li><a href="https://github.com/apache/arrow">Source Code</a></li>
<li><a href="http://mail-archives.apache.org/mod_mbox/arrow-dev/">Mailing List</a></li>
Expand Down
20 changes: 19 additions & 1 deletion site/_layouts/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,24 @@ <h2>
<a href="{{ page.url }}" class="permalink" title="Permalink"></a>
</h2>

{% capture discard %}
{% for c in site.data.contributors %}
{% if c.apacheId == page.author %}
{% assign author_name = c.name %}
{% if c.homepage %}
{% assign homepage = c.homepage %}
{% else %}
{% capture homepage %}http://github.com/{{ c.githubId }}{% endcapture %}
{% endif %}
{% if c.avatar %}
{% assign avatar = c.avatar %}
{% else %}
{% capture avatar %}http://github.com/{{ c.githubId }}.png{% endcapture %}
{% endif %}
{% endif %}
{% endfor %}
{% endcapture %}{% assign discard = nil %}

<div class="panel">
<div class="panel-body">
<div>
Expand All @@ -21,7 +39,7 @@ <h2>
</div>
<div>
<span class="label label-default">By</span>
<a href="{{ homepage }}"><i class="fa fa-user"></i> {{ page.author }}</a>
<a href="{{ homepage }}"><i class="fa fa-user"></i> {{ author_name }} ({{ page.author }})</a>
</div>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions site/_posts/2017-05-08-0.3-release.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: post
title: "Apache Arrow 0.3 Release"
date: "2017-05-01 07:00:00 -0500"
title: "Apache Arrow 0.3.0 Release"
date: "2017-05-08 00:00:00 -0400"
author: wesm
categories: [release]
---
Expand Down
Loading

0 comments on commit fe945a2

Please sign in to comment.