This is an automated email from the ASF dual-hosted git repository.
zabetak pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/hive-site.git
The following commit(s) were added to refs/heads/asf-site by this push:
new 0ec4989 INFRA-24077: HIVE-26585: Remove obsolete files from Jekyll
site deployment
0ec4989 is described below
commit 0ec49897fac5564f6ca3c3d803a64b7a72624b09
Author: Stamatis Zampetakis <[email protected]>
AuthorDate: Thu Jan 12 10:37:39 2023 +0100
INFRA-24077: HIVE-26585: Remove obsolete files from Jekyll site deployment
Apparently keeping new (Hugo) and old (Jekyll) files under the asf-site
branch can cause problems. Currently due to the output directory
being present in the branch the new changes are not reflected in
hive.apache.org.
---
Dockerfile | 51 ---
Gemfile | 3 -
README.md | 24 --
_config.yml | 17 -
_includes/footer.html | 14 -
_includes/header.html | 5 -
_includes/sidenav.html | 50 ---
_includes/top.html | 21 --
downloads.md | 220 -------------
favicon.ico | Bin 1150 -> 0 bytes
hcatalog_downloads.md | 43 ---
index.md | 62 ----
issue_tracking.md | 31 --
javadoc.md | 32 --
mailing_lists.md | 78 -----
output/css/hive.css | 365 ---------------------
output/doap_Hive.rdf | 58 ----
output/downloads.html | 301 -----------------
output/favicon.ico | Bin 1150 -> 0 bytes
output/hcatalog_downloads.html | 146 ---------
output/images/feather_small.gif | Bin 7500 -> 0 bytes
output/images/hive-logo.jpg | Bin 2498 -> 0 bytes
output/images/hive_logo_medium.jpg | Bin 4372 -> 0 bytes
output/index.html | 158 ---------
output/issue_tracking.html | 137 --------
output/javadoc.html | 142 --------
output/mailing_lists.html | 190 -----------
output/people.html | 640 -------------------------------------
output/privacy_policy.html | 154 ---------
output/version_control.html | 134 --------
people.md | 156 ---------
privacy_policy.md | 48 ---
version_control.md | 27 --
33 files changed, 3307 deletions(-)
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index 1889955..0000000
--- a/Dockerfile
+++ /dev/null
@@ -1,51 +0,0 @@
-# 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.
-
-# Hive site builder
-#
-
-FROM ubuntu:18.04
-MAINTAINER Hive team <[email protected]>
-
-RUN ln -fs /usr/share/zoneinfo/America/Los_Angeles /etc/localtime
-RUN apt-get update
-RUN apt-get install -y \
- g++ \
- gcc \
- git \
- libssl-dev \
- libz-dev \
- make \
- ruby-dev \
- rubygems \
- tzdata
-RUN gem install \
- bundler \
- liquid \
- listen \
- rouge
-RUN gem install jekyll -v 3.8.6
-RUN gem install github-pages
-
-RUN useradd -ms /bin/bash hive
-COPY . /home/hive/site
-RUN chown -R hive:hive /home/hive
-USER hive
-WORKDIR /home/hive/site
-
-EXPOSE 4000
-CMD bundle exec jekyll serve -H 0.0.0.0
-
diff --git a/Gemfile b/Gemfile
deleted file mode 100644
index 1c529c9..0000000
--- a/Gemfile
+++ /dev/null
@@ -1,3 +0,0 @@
-source 'https://rubygems.org'
-gem 'rouge'
-gem 'jekyll', "~> 3.8.3"
diff --git a/README.md b/README.md
deleted file mode 100644
index 6100928..0000000
--- a/README.md
+++ /dev/null
@@ -1,24 +0,0 @@
-# Apache Hive docs site
-
-This directory contains the code for the Apache Hive web site,
-[hive.apache.org](https://hive.apache.org/). The easiest way to build
-the site is to use docker to use a standard environment.
-
-## Run the docker container with the preview of the site.
-
-1. `docker build -t hive-site .`
-2. `CONTAINER=$(docker run -d -p 4000:4000 hive-site)`
-
-## Browsing
-
-Look at the site by navigating to
-[http://0.0.0.0:4000/](http://0.0.0.0:4000/) .
-
-## Pushing to site
-
-Commit and push the changes to the main branch. The site is automatically
deployed
-from the site directory.
-
-## Shutting down the docker container
-
-1. `docker stop $CONTAINER`
\ No newline at end of file
diff --git a/_config.yml b/_config.yml
deleted file mode 100644
index 68bc8f0..0000000
--- a/_config.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-markdown: kramdown
-highlighter: rouge
-permalink: /news/:year/:month/:day/:title
-excerpt_separator: ""
-encoding: utf-8
-exclude: [README.md, Gemfile*, Dockerfile]
-
-repository: https://github.com/apache/hive
-jira: https://issues.apache.org/jira/browse
-dist: https://downloads.apache.org/hive
-dist_mirror: https://www.apache.org/dyn/closer.cgi/hive
-tag_url: https://github.com/apache/hive/releases/tag/rel
-dist_archive: https://archive.apache.org/dist/hive
-apache: https://www.apache.org/
-license: https://www.apache.org/licenses/LICENSE-2.0.html
-wiki: https://cwiki.apache.org/confluence/display/Hive/
-old_javadoc:
https://svn.apache.org/repos/infra/websites/production/hive/content/javadocs
\ No newline at end of file
diff --git a/_includes/footer.html b/_includes/footer.html
deleted file mode 100644
index fef9a4a..0000000
--- a/_includes/footer.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<div id="footera">
- <div id="poweredby">
- <p><img src="{{ '/images/feather_small.gif' | relative_url }}"/></p>
- </div>
- <div id="copyrighta">
- <p>
-Copyright © 2011-2014 The Apache Software Foundation Licensed under the
<a href="{{ site.license }}">Apache License, Version 2.0</a>
- </p>
- <p>
-Apache Hive, Hive, Apache, the Apache feather logo, and the Apache Hive
project logo are trademarks of The Apache Software Foundation.
-Other names appearing on the site may be trademarks of their respective owners.
- </p>
- </div>
-</div>
diff --git a/_includes/header.html b/_includes/header.html
deleted file mode 100644
index db767a9..0000000
--- a/_includes/header.html
+++ /dev/null
@@ -1,5 +0,0 @@
-<div id="banner">
- <div id="bannerleft"><a alt="Apache Hive" href="{{ '/index.html' |
relative_url }}">
- <img id="logo" alt="Apache Hive" src="{{ '/images/hive_logo_medium.jpg' |
relative_url }}"/></a>
- </div>
-</div>
diff --git a/_includes/sidenav.html b/_includes/sidenav.html
deleted file mode 100644
index 9abe531..0000000
--- a/_includes/sidenav.html
+++ /dev/null
@@ -1,50 +0,0 @@
-<div id="sidenav">
-<h1>General</h1>
-<ul>
-<li><a href="{{ '/index.html' | relative_url }}">Home</a></li>
-<li><a href="{{ '/downloads.html' | relative_url }}">Downloads</a></li>
-<li><a href="{{ site.license }}">License</a></li>
-<li><a href="{{ '/privacy_policy.html' | relative_url }}">Privacy
Policy</a></li>
-</ul>
-
-<h1>Documentation</h1>
-<ul>
-<li><a href="{{ site.wiki }}/LanguageManual">Language Manual</a></li>
-<li><a href="{{ '/javadoc.html' | relative_url }}">Javadoc</a></li>
-<li><a href="{{ site.wiki }}">Wiki</a></li>
-</ul>
-
-<h1>Community</h1>
-<ul>
-<li><a href="{{ site.wiki }}/BecomingACommitter">Becoming a Committer</a></li>
-<li><a href="{{ site.wiki }}/How+to+edit+the+website">Edit Website</a></li>
-<li><a href="{{ site.wiki }}/HowToContribute">How to Contribute</a></li>
-<li><a href="{{ site.wiki }}/Home#Home-ResourcesforContributors">Resources for
contributors</a></li>
-<li><a href="{{ '/issue_tracking.html' | relative_url }}">Issue
Tracking</a></li>
-<li><a href="{{ '/mailing_lists.html' | relative_url }}">Mailing Lists</a></li>
-<li><a href="{{ '/people.html' | relative_url }}">People</a></li>
-</ul>
-
-<h1>Development</h1>
-<ul>
-<li><a href="{{ site.wiki }}/DesignDocs">Design Docs</a></li>
-<li><a href="{{ site.wiki }}/HiveDeveloperFAQ">FAQ</a></li>
-<li><a href="{{ site.jira }}/HIVE">Hive JIRA</a></li>
-<li><a href="{{ site.wiki }}/Hive+PreCommit+Patch+Testing">Precommit Patch
Testing</a></li>
-<li><a href="{{ '/version_control.html' | relative_url }}">Version
Control</a></li>
-</ul>
-
-<h1>PMC</h1>
-<ul>
-<li><a href="{{ site.wiki }}/Bylaws">ByLaws</a></li>
-<li><a href="{{ site.wiki }}/HowToRelease">How to Release</a></li>
-</ul>
-
-<h1>ASF</h1>
-<ul>
-<li><a href="{{ site.apache }}/foundation/contributing.html">Donations</a></li>
-<li><a href="{{ site.apache
}}/foundation/sponsorship.html">Sponsorship</a></li>
-<li><a href="{{ site.apache }}/foundation/thanks.html">Thanks</a></li>
-<li><a href="{{ site.apache }}">Website</a></li>
-</ul>
-</div>
diff --git a/_includes/top.html b/_includes/top.html
deleted file mode 100644
index d6a0838..0000000
--- a/_includes/top.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<head>
- <meta charset="UTF-8"/>
- <meta name="generator" content="Jekyll v{{ jekyll.version }}"/>
- <title>{{ page.title }}</title>
- <link href="{{ '/favicon.ico' | relative_url }}" rel="icon"
type="image/x-icon"/>
- <link href="{{ '/css/hive.css' | relative_url }}" rel="stylesheet"
type="text/css" />
- <script type="text/javascript">
-
- var _gaq = _gaq || [];
- _gaq.push(['_setAccount', 'UA-7453027-1']);
- _gaq.push(['_setDomainName', 'apache.org']);
- _gaq.push(['_trackPageview']);
-
- (function() {
- var ga = document.createElement('script'); ga.type = 'text/javascript';
ga.async = true;
- ga.src = ('https:' == document.location.protocol ? 'https://ssl' :
'http://www') + '.google-analytics.com/ga.js';
- var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
- })();
-
- </script>
-</head>
diff --git a/downloads.md b/downloads.md
deleted file mode 100644
index e368a33..0000000
--- a/downloads.md
+++ /dev/null
@@ -1,220 +0,0 @@
----
-title: Downloads
-layout: default
----
-
-<!---
- 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. -->
-
-Releases may be downloaded from Apache mirrors:
-
-__[Download a release now!][HIVE_DL]__
-
-
-On the mirror, all recent releases are available, but are not
-guaranteed to be stable. For stable releases, look in the stable
-directory.
-
-## News
-### 9 June 2021: release 2.3.9 available
-This release works with Hadoop 2.x.y
-You can look at the complete [JIRA change log for this release][HIVE_2_3_9_CL].
-
-### 17 January 2021: release 2.3.8 available
-This release works with Hadoop 2.x.y
-You can look at the complete [JIRA change log for this release][HIVE_2_3_8_CL].
-
-### 18 April 2020: release 2.3.7 available
-This release works with Hadoop 2.x.y
-You can look at the complete [JIRA change log for this release][HIVE_2_3_7_CL].
-
-### 26 August 2019: release 3.1.2 available
-This release works with Hadoop 3.x.y.
-You can look at the complete [JIRA change log for this release][HIVE_3_1_2_CL].
-
-### 23 August 2019: release 2.3.6 available
-This release works with Hadoop 2.x.y.
-You can look at the complete [JIRA change log for this release][HIVE_2_3_6_CL].
-
-### 14 May 2019: release 2.3.5 available
-This release works with Hadoop 2.x.y.
-You can look at the complete [JIRA change log for this release][HIVE_2_3_5_CL].
-
-### 7 November 2018: release 2.3.4 available
-This release works with Hadoop 2.x.y.
-You can look at the complete [JIRA change log for this release][HIVE_2_3_4_CL].
-
-### 1 November 2018: release 3.1.1 available
-This release works with Hadoop 3.x.y.
-You can look at the complete [JIRA change log for this release][HIVE_3_1_1_CL].
-
-### 30 July 2018: release 3.1.0 available
-This release works with Hadoop 3.x.y.
-You can look at the complete [JIRA change log for this release][HIVE_3_1_0_CL].
-
-### 21 May 2018 : release 3.0.0 available
-This release works with Hadoop 3.x.y.
-The on-disk layout of Acid tables has changed with this release. Any Acid
table partition that had Update/Delete/Merge statement executed since the last
Major compaction must execute Major compaction before upgrading to 3.0. No
more Update/Delete/Merge may be executed against these tables since the start
of Major compaction. Not following this may lead to data corruption.
Tables/partitions that only contain results of Insert statements are fully
compatible and don't need to be compacted.
-You can look at the complete [JIRA change log for this release][HIVE_3_0_0_CL].
-
-### 3 April 2018 : release 2.3.3 available
-This release works with Hadoop 2.x.y
-You can look at the complete [JIRA change log for this release][HIVE_2_3_3_CL].
-
-### 18 November 2017 : release 2.3.2 available
-This release works with Hadoop 2.x.y
-You can look at the complete [JIRA change log for this release][HIVE_2_3_2_CL].
-
-### 24 October 2017 : release 2.3.1 available
-This release works with Hadoop 2.x.y
-You can look at the complete [JIRA change log for this release][HIVE_2_3_1_CL].
-
-### 25 July 2017 : release 2.2.0 available
-This release works with Hadoop 2.x.y
-You can look at the complete [JIRA change log for this release][HIVE_2_2_0_CL].
-
-### 17 July 2017 : release 2.3.0 available
-This release works with Hadoop 2.x.y
-You can look at the complete [JIRA change log for this release][HIVE_2_3_0_CL].
-
-### 07 April 2017 : release 1.2.2 available
-This release works with Hadoop 1.x.y, 2.x.y
-You can look at the complete [JIRA change log for this release][HIVE_1_2_2_CL].
-
-### 8 December 2016 : release 2.1.1 available
-This release works with Hadoop 2.x.y.
-Hive 1.x line will continue to be maintained with Hadoop 1.x.y support.
-You can look at the complete [JIRA change log for this release][HIVE_2_1_1_CL].
-
-### 20 June 2016 : release 2.1.0 available
-This release works with Hadoop 2.x.y.
-Hive 1.x line will continue to be maintained with Hadoop 1.x.y support.
-You can look at the complete [JIRA change log for this release][HIVE_2_1_0_CL].
-
-### 25 May 2016 : release 2.0.1 available
-This release works with Hadoop 2.x.y.
-Hive 1.x line will continue to be maintained with Hadoop 1.x.y support.
-You can look at the complete [JIRA change log for this release][HIVE_2_0_1_CL].
-
-### 15 February 2016 : release 2.0.0 available
-This release works with Hadoop 2.x.y.
-Hive 1.x line will continue to be maintained with Hadoop 1.x.y support.
-You can look at the complete [JIRA change log for this release][HIVE_2_0_0_CL].
-
-### 28 Jan 2016 : hive-parent-auth-hook made available
-This is a hook usable with hive to fix an authorization issue. Users
-of Hive 1.0.x,1.1.x and 1.2.x are encouraged to use this hook. More
-details can be found in the README inside the tar.gz file.
-
-### 27 June 2015 : release 1.2.1 available
-This release works with Hadoop 1.x.y, 2.x.y
-
-You can look at the complete [JIRA change log for this release][HIVE_1_2_1_CL].
-
-### 21 May 2015 : release 1.0.1, 1.1.1, and ldap-fix are available
-These two releases works with Hadoop 1.x.y, 2.x.y. They are based on
-Hive 1.0.0 and 1.1.0 respectively, plus a fix for a LDAP vulnerability issue.
-Hive users for these two versions are encouraged to upgrade. Users
-of previous versions can download and use the ldap-fix.
-More details can be found in the README attached to the tar.gz file.
-
-You can look at the complete JIRA change log for [release 1.0.1][HIVE_1_0_1_CL]
-and [release 1.1.1][HIVE_1_1_1_CL]
-
-### 18 May 2015 : release 1.2.0 available
-This release works with Hadoop 1.x.y, 2.x.y
-
-You can look at the complete [JIRA change log for this release][HIVE_1_2_0_CL].
-
-### 8 March 2015: release 1.1.0 available
-This release works with Hadoop 1.x.y, 2.x.y
-
-You can look at the complete [JIRA change log for this release][HIVE_1_1_0_CL].
-
-### 4 February 2015: release 1.0.0 available
-This release works with Hadoop 1.x.y, 2.x.y
-
-You can look at the complete [JIRA change log for this release][HIVE_1_0_0_CL].
-
-### 12 November, 2014: release 0.14.0 available
-This release works with Hadoop 1.x.y, 2.x.y
-
-You can look at the complete [JIRA change log for this release][HIVE_14_CL].
-
-### 6 June, 2014: release 0.13.1 available
-This release works with Hadoop 0.20.x, 0.23.x.y, 1.x.y, 2.x.y
-
-You can look at the complete [JIRA change log for this release][HIVE_13_1_CL].
-
-### 21 April, 2014: release 0.13.0 available
-This release works with Hadoop 0.20.x, 0.23.x.y, 1.x.y, 2.x.y
-
-You can look at the complete [JIRA change log for this release][HIVE_13_CL].
-
-### 15 October, 2013: release 0.12.0 available
-This release works with Hadoop 0.20.x, 0.23.x.y, 1.x.y, 2.x.y
-
-You can look at the complete [JIRA change log for this release][HIVE_12_CL].
-
-### 15 May, 2013: release 0.11.0 available
-This release works with Hadoop 0.20.x, 0.23.x.y, 1.x.y, 2.x.y
-
-You can look at the complete [JIRA change log for this release][HIVE_11_CL].
-
-### March, 2013: HCatalog merges into Hive
-Old HCatalog releases may still be [downloaded][HCAT_DL].
-
-### 11 January, 2013: release 0.10.0 available
-This release works with Hadoop 0.20.x, 0.23.x.y, 1.x.y, 2.x.y
-
-You can look at the complete [JIRA change log for this release][HIVE_10_CL].
-
-[HIVE_DL]: http://www.apache.org/dyn/closer.cgi/hive/
-[HIVE_3_1_2_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12344397&styleName=Html&projectId=12310843
-[HIVE_2_3_9_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12350009&styleName=Text&projectId=12310843
-[HIVE_2_3_8_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12349428&styleName=Text&projectId=12310843
-[HIVE_2_3_7_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12346056&styleName=Text&projectId=12310843
-[HIVE_2_3_6_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12345603&styleName=Text&projectId=12310843
-[HIVE_2_3_5_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12345394&styleName=Text&projectId=12310843
-[HIVE_2_3_4_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12344319&styleName=Text&projectId=12310843
-[HIVE_3_1_1_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12344240&styleName=Text&projectId=12310843
-[HIVE_3_1_0_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12343014&styleName=Text&projectId=12310843
-[HIVE_3_0_0_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12340268&styleName=Text&projectId=12310843
-[HIVE_2_3_3_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12342162&styleName=Text&projectId=12310843
-[HIVE_2_3_2_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12342053&styleName=Text&projectId=12310843
-[HIVE_2_3_1_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12341418&styleName=Text&projectId=12310843
-[HIVE_2_2_0_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12335837&styleName=Text&projectId=12310843
-[HIVE_2_3_0_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12340269&styleName=Text&projectId=12310843
-[HIVE_2_1_1_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12335838&styleName=Text&projectId=12310843
-[HIVE_2_1_0_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12334255&styleName=Text&projectId=12310843
-[HIVE_2_0_1_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12334886&styleName=Text&projectId=12310843
-[HIVE_2_0_0_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12332641&styleName=Text&projectId=12310843
-[HIVE_1_2_1_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12332384&styleName=Text&projectId=12310843
-[HIVE_1_2_2_CL]:https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12332952&styleName=Text&projectId=12310843
-[HIVE_1_1_1_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12329557&styleName=Text&projectId=12310843
-[HIVE_1_0_1_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12329444&styleName=Text&projectId=12310843
-[HIVE_1_2_0_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12329345&styleName=Text&projectId=12310843
-[HIVE_1_1_0_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310843&styleName=Text&version=12329363
-[HIVE_1_0_0_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12329278&styleName=Text&projectId=12310843
-[HIVE_14_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12326450&styleName=Text&projectId=12310843
-[HIVE_13_1_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12326829&styleName=Text&projectId=12310843
-[HIVE_13_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12324986&styleName=Text&projectId=12310843
-[HIVE_12_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12324312&styleName=Text&projectId=12310843
-[HIVE_11_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12323587&styleName=Text&projectId=12310843
-[HCAT_DL]: /hcatalog_downloads.html
-[HIVE_10_CL]:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12320745&styleName=Text&projectId=12310843
diff --git a/favicon.ico b/favicon.ico
deleted file mode 100644
index 6640ede..0000000
Binary files a/favicon.ico and /dev/null differ
diff --git a/hcatalog_downloads.md b/hcatalog_downloads.md
deleted file mode 100644
index 9e1b130..0000000
--- a/hcatalog_downloads.md
+++ /dev/null
@@ -1,43 +0,0 @@
----
-title: HCatalog Downloads
-layout: default
----
-
-<!---
- 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. -->
-
-## HCatalog Merged With Hive
-
-Following HCatalog's merge with Hive (in March of 2013) HCatalog is now
released as part of Hive. Older versions of HCatalog can still be separately
downloaded.
-
-Old releases may be downloaded from Apache mirrors:
-
-__[Download an old release now!][HCAT_DL]__
-
-## News
-
-### 14 Feb, 2013: release 0.5.0 available
-This release introduces webhcat (a web services API to HCatalog), artifacts
published in the maven central repository, and many improvements and bug fixes.
Release Notes are available at the download site.
-
-### 16 May, 2012: release 0.4.0 available
-This release adds support for reading and writing from Hive, switches HCatalog
to use Hive's SerDe interface instead of HCatalog specific StorageDescriptors,
and adds experimental support for HBase. Release Notes are available at the
download site
-
-### O2 Oct, 2011: release 0.2.0 available
-This is a first release of Apache HCatalog. Release Notes are available at the
download site
-
-[HCAT_DL]: http://www.apache.org/dyn/closer.cgi/incubator/hcatalog/
diff --git a/index.md b/index.md
deleted file mode 100644
index c03c87f..0000000
--- a/index.md
+++ /dev/null
@@ -1,62 +0,0 @@
----
-title: Apache Hive
-layout: default
----
-
-<!---
- 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. -->
-
-The Apache Hive ™ data warehouse software facilitates reading,
-writing, and managing large datasets residing in distributed storage
-using SQL. Structure can be projected onto data already in storage.
-A command line tool and JDBC driver are provided to connect users to
-Hive.
-
-## Getting Started With Apache Hive Software
-
- * Check out the [Getting Started Guide][GETTING_STARTED].
- * Learn more [About Hive's Functionality][HIVE_DETAILS].
- * Read the [Getting Started Guide][GETTING_STARTED] to learn how to install
Hive
- * The [User and Hive SQL documentation][HIVE_QL] shows how to program Hive
-
-## Getting Involved With The Apache Hive Community
-
-Apache Hive is an open source project run by volunteers at the Apache
-Software Foundation. Previously it was a subproject of [Apache®
-Hadoop®][APACHE_HADOOP], but has now graduated to become a
-top-level project of its own. We encourage you to learn about the
-project and contribute your expertise.
-
- * Give us [feedback or submit bug reports][ISSUE_TRACKING]: What can we do
better?
- * Join the [mailing list][MAILING_LISTS] and meet our [community][COMMUNITY]
- * Read through our [Contributor's Guides][CONTRIBUTOR] about where to find
the source or submit patches
- * Become a [Hive Fan on Facebook][HIVE_FACEBOOK]
- * Follow [@ApacheHive on Twitter][HIVE_TWITTER]
-
-[GETTING_STARTED]: {{ site.wiki }}/GettingStarted
-[APACHE_HADOOP]: http://hadoop.apache.org
-[ISSUE_TRACKING]: {{ '/issue_tracking.html' | relative_url }}
-[MAILING_LISTS]: {{ '/mailing_lists.html' | relative_url }}
-[HIVE_FACEBOOK]: http://www.facebook.com/pages/Hive/43928506208
-[HIVE_DETAILS]: {{ site.wiki }}/Home
-[HIVE_QL]: {{ site.wiki }}/Home#Home-UserDocumentation
-[COMMUNITY]: {{ '/people.html' | relative_url }}
-[CONTRIBUTOR]: {{ site.wiki }}/Home#Home-ResourcesforContributors
-[HIVE_TWITTER]: https://twitter.com/apachehive
-
-
diff --git a/issue_tracking.md b/issue_tracking.md
deleted file mode 100644
index 9ba3471..0000000
--- a/issue_tracking.md
+++ /dev/null
@@ -1,31 +0,0 @@
----
-title: Issue Tracking
-layout: default
----
-
-<!---
- 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. -->
-
-Hive tracks both bugs and enhancementrequests using [Apache
-JIRA]({{ site.jira }}/HIVE). We welcome input,
-however, before filing a request, please make sure you do the
-following:
-
- * Search the JIRA database.
- * Check the [user mailing list](/mailing_lists.html), both by searching the
archives and by asking questions.
-
diff --git a/javadoc.md b/javadoc.md
deleted file mode 100644
index 16ab3a4..0000000
--- a/javadoc.md
+++ /dev/null
@@ -1,32 +0,0 @@
----
-title: Javadoc
-layout: default
----
-<!---
- 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. -->
-
-## Recent versions:
-
- * [Hive 3.1.2 Javadocs]({{ site.old_javadoc }}/r3.1.2/api/index.html)
- * [Hive 3.0.0 Javadocs]({{ site.old_javadoc }}/r3.0.0/api/index.html)
- * [Hive 2.3.9 Javadocs]({{ site.old_javadoc }}/r2.3.9/api/index.html)
- * [Hive 2.2.0 Javadocs]({{ site.old_javadoc }}/r2.2.0/api/index.html)
- * [Hive 2.1.1 Javadocs]({{ site.old_javadoc }}/r2.1.1/api/index.html)
- * [Hive 1.2.2 Javadocs]({{ site.old_javadoc }}/r1.2.2/api/index.html)
-
-## javadoc and sources jars for use in an IDE are also available via
[Nexus](https://repository.apache.org/index.html#nexus-search;gav~org.apache.hive~~~~)
diff --git a/mailing_lists.md b/mailing_lists.md
deleted file mode 100644
index ccc7b31..0000000
--- a/mailing_lists.md
+++ /dev/null
@@ -1,78 +0,0 @@
----
-title: Mailing Lists
-layout: default
----
-<!---
- 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. -->
-
-We welcome you to join our mailing lists and let us know about your thoughts or
-ideas about Hive.
-
-## User Mailing List
-
-The user list is for general discussion or questions on using Hive. Hive
-developers monitor this list and provide assistance when needed.
-
- * Subscribe: <[email protected]>
- * Post: <[email protected]>
- * Unsubscribe: <[email protected]>
- * Archives:
- * [Apache][user_apache]
- * [Markmail][user_markmail]
-
-## Developer Mailing List
-
-The developer list is for Hive developers to discuss ongoing work, make
-decisions, and vote on technical issues.
-
- * Subscribe: <[email protected]>
- * Post: <[email protected]>
- * Unsubscribe: <[email protected]>
- * Archives:
- * [Apache][dev_apache]
- * [Markmail][dev_markmail]
-
-## Commits Mailing List
-
-The commits list receives notifications with diffs when changes are committed
-to the Hive source tree.
-
- * Subscribe: <[email protected]>
- * Unsubscribe: <[email protected]>
- * Archives:
- * [Apache][commits_apache]
- * [Markmail][commits_markmail]
-
-## Security Mailing List
-
-The security mailing list is a private list for discussion of potential
security vulnerabilities issues. Please post potential security vulnerabilities
to this list so that they may be investigated and fixed before the
vulnerabilities is published.
-
-__Note: This mailing list is NOT for end-user questions and discussion on
security. Please use the user mailing list for such issues.__
-
-The Hive security mailing list is : <[email protected]>.
-
-In order to post to the list, it is __NOT__ necessary to first subscribe to it.
-
-[user_apache]: http://mail-archives.apache.org/mod_mbox/hive-user
-[user_markmail]:
http://markmail.org/search/+list:org.apache.incubator.hive-user
-
-[dev_apache]: http://mail-archives.apache.org/mod_mbox/hive-dev
-[dev_markmail]: http://markmail.org/search/+list:org.apache.incubator.hive-dev
-
-[commits_apache]: http://mail-archives.apache.org/mod_mbox/hive-commits
-[commits_markmail]:
http://markmail.org/search/+list:org.apache.incubator.hive-commits
diff --git a/output/css/hive.css b/output/css/hive.css
deleted file mode 100644
index 7bcdcd7..0000000
--- a/output/css/hive.css
+++ /dev/null
@@ -1,365 +0,0 @@
-/*
-* 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.
-*/
-body {
- color: white;
- font-family: Helvetica, Arial, 'Liberation Sans', FreeSans, sans-serif;
- font-size: 12pt;
- margin: 0;
-}
-
-#banner {
- height: 100px;
- padding: 0 0 0 0;
- color: black;
- font-family: Helvetica, Arial, 'Liberation Sans', FreeSans, sans-serif;
- font-size:16pt;
- vertical-align: middle;
-}
-
-#bannerright {
- text-align: right;
- float: right;
- padding: 2pt 36pt 10pt 36pt;
-}
-
-#bannercenter {
- padding: 12pt 2pt 34pt 2pt;
- float: center;
- color: #107EC0;
-}
-
-#bannerleft {
- text-align: left;
- float: left;
-}
-
-#bannerleft a:hover {
- color: #107EC0;
- background-color: white;
-}
-
-#logo {
-padding-left:20px;
-}
-
-a {
- color: #107EC0;
-}
-
-a:visited {
- color: #107EC0;
-}
-
-a:hover {
- color: #107EC0;
- text-decoration:underline;
-}
-
-a img { border: none; }
-
-h1,h2,h3,h4,h5,h6 {
- color: #193240;
- text-transform:uppercase;
-}
-
-#clear {
- overflow: auto;
- clear: both;
-}
-
-#content {
- margin: 0 50px 20px 50px;
- padding: 0 8px 40px;
- color: #333;
- overflow: auto;
- clear: both;
-}
-
-#content h1,h2,h3,h4,h5,h6 {
- font-weight: normal;
- text-transform:none;
- margin: 10px 0 15px;
- padding: 5px 0;
-}
-
-#content h1 {
- font-size: 1.4em;
- padding: 15px;
- border-top: 1px solid #a3afb6;
-}
-
-#content h2 {
- font-size: 1.2em;
- margin-top: 2em;
-}
-
-#content h3,h4,h5,h6 {
- border-bottom: none;
- font-size: 1em;
- margin-bottom: 0;
-}
-
-#content li {
- margin-bottom: 0.5em;
-}
-
-#contenta {
- margin: 0 150px 20px 250px;
- padding: 0 8px 40px;
- color: #333;
-}
-
-#contenta h1,h2,h3,h4,h5,h6 {
- font-weight: normal;
- margin: 10px 0 15px;
- padding: 5px 0;
-}
-
-#contenta h1 {
- font-size: 1.4em;
- padding: 15px;
- border-top: 1px solid #a3afb6;
-}
-
-#contenta h2 {
- font-size: 1.2em;
- margin-top: 2em;
- border-bottom: 1px solid #a3afb6;
-}
-
-#contenta h3,h4,h5,h6 {
- border-bottom: none;
- font-size: 1em;
- margin-bottom: 0;
-}
-
-#contenta li {
- margin-bottom: 0.5em;
-}
-
-#contenta a:hover {
- color: #107EC0;
- text-decoration:underline;
- background-color: #e6ebed;
-}
-
-#people table {
- width: 1005;
-}
-
-table {
- border-collapse:collapse;
- margin: auto;
-}
-
-th {
- height: 40px;
- background: #f5f8fa;
- border: 1px solid #a3afb6;
- vertical-align: middle;
- font-size: 0.9em;
-}
-
-td {
- vertical-align: top;
- border: 1px solid #a3afb6;
- padding: 0.4em 0.5em 0.4em 0.5em;
- font-size: 0.9em;
-}
-
-.w140 {
- width: 140px;
-}
-
-.w160 {
- width: 160px;
-}
-
-.w180 {
- width: 180px;
-}
-
-.w200 {
- width: 200px;
-}
-
-.w220 {
- width: 220px;
-}
-
-.codehilite {
- background-color: #f3f3f3;
- padding: 0.01em 1em;
- border-radius: 10px;
-}
-
-#sidenav {
- border: 1px solid #e6ebed;
- border-left: none;
- -moz-border-radius: 0 10px 10px 0;
- border-radius: 0 10px 10px 0;
- font-size: 0.9em;
- color: #003;
- float: left;
- padding: 15px 15px 5px 25px;
- width: 180px;
- background: none repeat scroll 0 0 #f5f8fa;
- margin: 0 0 20px 0;
-}
-
-#sidenav img {
- padding-bottom: 15px;
- margin-left: auto;
- margin-right: auto;
- display: block;
-}
-
-#sidenav h1 {
- color: #000;
- font-size: 1em;
- padding: 0;
- margin-top: 0.8em;
- margin-bottom: 0;
- border-bottom: 1px solid #a3afb6;
-}
-
-#sidenav ul {
- margin: 0 0;
- padding: 0;
- list-style: none;
-}
-
-#sidenav li {
- border-bottom: 1px solid #e6ebed;
- margin: 0.2em 0;
- padding: 0;
-}
-
-#sidenav li a {
- margin: 0;
- text-decoration:none;
-}
-
-#sidenav li a:hover {
- color: #193240;
- background: none;
-}
-
-#navigation {
- border: 1px solid #e6ebed;
- border-left: none;
- -moz-border-radius: 0 10px 10px 0;
- border-radius: 0 10px 10px 0;
- font-size: 0.9em;
- color: #003;
- float: left;
- padding: 15px 15px 5px 25px;
- width: 180px;
- background: none repeat scroll 0 0 #f5f8fa;
- margin: 0 0 20px 0;
-}
-
-#navigation img {
- padding-bottom: 15px;
- margin-left: auto;
- margin-right: auto;
- display: block;
-}
-
-#navigation h1 {
- color: #000;
- font-size: 1em;
- padding: 0;
- margin-top: 0.8em;
- margin-bottom: 0;
- border-bottom: 1px solid #a3afb6;
-}
-
-#navigation ul {
- margin: 0 0;
- padding: 0;
- list-style: none;
-}
-
-#navigation li {
- border-bottom: 1px solid #e6ebed;
- margin: 0.2em 0;
- padding: 0;
-}
-
-#navigation li a {
- margin: 0;
- text-decoration:none;
-}
-
-#navigation li a:hover {
- color: #107EC0;
- background-color: #e6ebed;
-}
-
-#footera {
- margin: 20px 0px 0px 0px;
- padding: 8px 0px 12px 0px;
- border-top: 2px solid #ccc;
- color:#666;
- font-size: 8pt;
- padding: 0 8px;
- text-align: left;
- overflow: auto;
- clear: both;
- line-height: 10pt;
-}
-
-#copyrighta {
-}
-
-#copyrighta p {
- padding-left: 20px;
- line-height: 10pt;
- padding-bottom: 5px;
-}
-
-#copyrighta a {
- color: #107EC0;
- text-decoration:underline;
-}
-
-#copyrighta a:hover {
- background-color: #e6ebed;
-}
-
-#poweredby {
- float: right;
- text-align: right;
- width: 210px;
- height: 100px;
-}
-
-#asf-logo {
- width: 180px;
- padding-top: 20px;
-}
-
-
-
-/* definition lists */
-dd {}
-dl {}
-dt {
- display: inline;
- float: left;
-}
diff --git a/output/doap_Hive.rdf b/output/doap_Hive.rdf
deleted file mode 100644
index c66b5ed..0000000
--- a/output/doap_Hive.rdf
+++ /dev/null
@@ -1,58 +0,0 @@
-<?xml version="1.0"?>
-<?xml-stylesheet type="text/xsl"?>
-<rdf:RDF xml:lang="en"
- xmlns="http://usefulinc.com/ns/doap#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:asfext="http://projects.apache.org/ns/asfext#"
- xmlns:foaf="http://xmlns.com/foaf/0.1/">
-<!--
- 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.
--->
- <Project rdf:about="http://hive.apache.org">
- <created>2011-11-09</created>
- <license rdf:resource="http://usefulinc.com/doap/licenses/asl20" />
- <name>Apache Hive</name>
- <homepage rdf:resource="http://hive.apache.org" />
- <asfext:pmc rdf:resource="http://hive.apache.org" />
- <shortdesc>The Apache Hive (TM) data warehouse software facilitates
querying and managing large datasets residing in distributed
storage.</shortdesc>
- <description>The Apache Hive (TM) data warehouse software facilitates
querying and managing large datasets residing in distributed storage. Built on
top of Apache Hadoop (TM), it provides
-
-* tools to enable easy data extract/transform/load (ETL)
-* a mechanism to impose structure on a variety of data formats
-* access to files stored either directly in Apache HDFS (TM) or in other data
storage systems such as Apache HBase (TM)
-* query execution via MapReduce
-
-Hive defines a simple SQL-like query language, called HiveQL, that enables
users familiar with SQL to query the data. At the same time, this language also
allows programmers who are familiar with the MapReduce framework to be able to
plug in their custom mappers and reducers to perform more sophisticated
analysis that may not be supported by the built-in capabilities of the
language. HiveQL can also be extended with custom scalar functions (UDF's),
aggregations (UDAF's), and table functi [...]
-</description>
- <bug-database rdf:resource="https://issues.apache.org/jira/browse/HIVE" />
- <mailing-list rdf:resource="http://hive.apache.org/mailing_lists.html" />
- <download-page rdf:resource="http://hive.apache.org/releases.html" />
- <programming-language>Java</programming-language>
- <category rdf:resource="http://projects.apache.org/category/database" />
- <repository>
- <SVNRepository>
- <location rdf:resource="http://svn.apache.org/repos/asf/hive/"/>
- <browse rdf:resource="http://svn.apache.org/viewcvs.cgi/hive/"/>
- </SVNRepository>
- </repository>
- <maintainer>
- <foaf:Person>
- <foaf:name>John Sichi</foaf:name>
- <foaf:mbox rdf:resource="mailto:[email protected]"/>
- </foaf:Person>
- </maintainer>
- </Project>
-</rdf:RDF>
diff --git a/output/downloads.html b/output/downloads.html
deleted file mode 100644
index 30a73f5..0000000
--- a/output/downloads.html
+++ /dev/null
@@ -1,301 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
-<html>
-
- <head>
- <meta charset="UTF-8"/>
- <meta name="generator" content="Jekyll v3.8.7"/>
- <title>Downloads</title>
- <link href="/favicon.ico" rel="icon" type="image/x-icon"/>
- <link href="/css/hive.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript">
-
- var _gaq = _gaq || [];
- _gaq.push(['_setAccount', 'UA-7453027-1']);
- _gaq.push(['_setDomainName', 'apache.org']);
- _gaq.push(['_trackPageview']);
-
- (function() {
- var ga = document.createElement('script'); ga.type = 'text/javascript';
ga.async = true;
- ga.src = ('https:' == document.location.protocol ? 'https://ssl' :
'http://www') + '.google-analytics.com/ga.js';
- var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
- })();
-
- </script>
-</head>
-
-
- <body>
- <div id="banner">
- <div id="bannerleft"><a alt="Apache Hive" href="/index.html">
- <img id="logo" alt="Apache Hive" src="/images/hive_logo_medium.jpg"/></a>
- </div>
-</div>
-
-
- <div id="clear"/>
- <div id="sidenav">
-<h1>General</h1>
-<ul>
-<li><a href="/index.html">Home</a></li>
-<li><a href="/downloads.html">Downloads</a></li>
-<li><a href="https://www.apache.org/licenses/LICENSE-2.0.html">License</a></li>
-<li><a href="/privacy_policy.html">Privacy Policy</a></li>
-</ul>
-
-<h1>Documentation</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//LanguageManual">Language
Manual</a></li>
-<li><a href="/javadoc.html">Javadoc</a></li>
-<li><a href="https://cwiki.apache.org/confluence/display/Hive/">Wiki</a></li>
-</ul>
-
-<h1>Community</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//BecomingACommitter">Becoming
a Committer</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//How+to+edit+the+website">Edit
Website</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HowToContribute">How to
Contribute</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Home#Home-ResourcesforContributors">Resources
for contributors</a></li>
-<li><a href="/issue_tracking.html">Issue Tracking</a></li>
-<li><a href="/mailing_lists.html">Mailing Lists</a></li>
-<li><a href="/people.html">People</a></li>
-</ul>
-
-<h1>Development</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//DesignDocs">Design
Docs</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HiveDeveloperFAQ">FAQ</a></li>
-<li><a href="https://issues.apache.org/jira/browse/HIVE">Hive JIRA</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Hive+PreCommit+Patch+Testing">Precommit
Patch Testing</a></li>
-<li><a href="/version_control.html">Version Control</a></li>
-</ul>
-
-<h1>PMC</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Bylaws">ByLaws</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HowToRelease">How to
Release</a></li>
-</ul>
-
-<h1>ASF</h1>
-<ul>
-<li><a
href="https://www.apache.org//foundation/contributing.html">Donations</a></li>
-<li><a
href="https://www.apache.org//foundation/sponsorship.html">Sponsorship</a></li>
-<li><a href="https://www.apache.org//foundation/thanks.html">Thanks</a></li>
-<li><a href="https://www.apache.org/">Website</a></li>
-</ul>
-</div>
-
-
- <div id="contenta">
- <h1>Downloads</h1>
- <!---
- 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. -->
-
-<p>Releases may be downloaded from Apache mirrors:</p>
-
-<p><strong><a href="http://www.apache.org/dyn/closer.cgi/hive/">Download a
release now!</a></strong></p>
-
-<p>On the mirror, all recent releases are available, but are not
-guaranteed to be stable. For stable releases, look in the stable
-directory.</p>
-
-<h2 id="news">News</h2>
-<h3 id="16-november-2022-release-400-alpha-2-available">16 November 2022:
release 4.0.0-alpha-2 available</h3>
-<p>This release works with Hadoop 3.3.1
-You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12351489&styleName=Html&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="08-april-2022-release-313-available">08 April 2022: release 3.1.3
available</h3>
-<p>This release works with Hadoop 3.x.y
-You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12346277&styleName=Html&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="30-march-2022-release-400-alpha-1-available">30 March 2022: release
4.0.0-alpha-1 available</h3>
-<p>This release works with Hadoop 3.x.y
-You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12351399&styleName=Html&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="9-june-2021-release-239-available">9 June 2021: release 2.3.9
available</h3>
-<p>This release works with Hadoop 2.x.y
-You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12350009&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="17-january-2021-release-238-available">17 January 2021: release 2.3.8
available</h3>
-<p>This release works with Hadoop 2.x.y
-You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12349428&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="18-april-2020-release-237-available">18 April 2020: release 2.3.7
available</h3>
-<p>This release works with Hadoop 2.x.y
-You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12346056&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="26-august-2019-release-312-available">26 August 2019: release 3.1.2
available</h3>
-<p>This release works with Hadoop 3.x.y.
-You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12344397&styleName=Html&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="23-august-2019-release-236-available">23 August 2019: release 2.3.6
available</h3>
-<p>This release works with Hadoop 2.x.y.
-You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12345603&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="14-may-2019-release-235-available">14 May 2019: release 2.3.5
available</h3>
-<p>This release works with Hadoop 2.x.y.
-You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12345394&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="7-november-2018-release-234-available">7 November 2018: release 2.3.4
available</h3>
-<p>This release works with Hadoop 2.x.y.
-You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12344319&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="1-november-2018-release-311-available">1 November 2018: release 3.1.1
available</h3>
-<p>This release works with Hadoop 3.x.y.
-You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12344240&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="30-july-2018-release-310-available">30 July 2018: release 3.1.0
available</h3>
-<p>This release works with Hadoop 3.x.y.
-You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12343014&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="21-may-2018--release-300-available">21 May 2018 : release 3.0.0
available</h3>
-<p>This release works with Hadoop 3.x.y.
-The on-disk layout of Acid tables has changed with this release. Any Acid
table partition that had Update/Delete/Merge statement executed since the last
Major compaction must execute Major compaction before upgrading to 3.0. No
more Update/Delete/Merge may be executed against these tables since the start
of Major compaction. Not following this may lead to data corruption.
Tables/partitions that only contain results of Insert statements are fully
compatible and don’t need to be compacted.
-You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12340268&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="3-april-2018--release-233-available">3 April 2018 : release 2.3.3
available</h3>
-<p>This release works with Hadoop 2.x.y
-You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12342162&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="18-november-2017--release-232-available">18 November 2017 : release
2.3.2 available</h3>
-<p>This release works with Hadoop 2.x.y
-You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12342053&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="24-october-2017--release-231-available">24 October 2017 : release
2.3.1 available</h3>
-<p>This release works with Hadoop 2.x.y
-You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12341418&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="25-july-2017--release-220-available">25 July 2017 : release 2.2.0
available</h3>
-<p>This release works with Hadoop 2.x.y
-You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12335837&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="17-july-2017--release-230-available">17 July 2017 : release 2.3.0
available</h3>
-<p>This release works with Hadoop 2.x.y
-You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12340269&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="07-april-2017--release-122-available">07 April 2017 : release 1.2.2
available</h3>
-<p>This release works with Hadoop 1.x.y, 2.x.y
-You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12332952&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="8-december-2016--release-211-available">8 December 2016 : release
2.1.1 available</h3>
-<p>This release works with Hadoop 2.x.y.
-Hive 1.x line will continue to be maintained with Hadoop 1.x.y support.
-You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12335838&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="20-june-2016--release-210-available">20 June 2016 : release 2.1.0
available</h3>
-<p>This release works with Hadoop 2.x.y.
-Hive 1.x line will continue to be maintained with Hadoop 1.x.y support.
-You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12334255&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="25-may-2016--release-201-available">25 May 2016 : release 2.0.1
available</h3>
-<p>This release works with Hadoop 2.x.y.
-Hive 1.x line will continue to be maintained with Hadoop 1.x.y support.
-You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12334886&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="15-february-2016--release-200-available">15 February 2016 : release
2.0.0 available</h3>
-<p>This release works with Hadoop 2.x.y.
-Hive 1.x line will continue to be maintained with Hadoop 1.x.y support.
-You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12332641&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="28-jan-2016--hive-parent-auth-hook-made-available">28 Jan 2016 :
hive-parent-auth-hook made available</h3>
-<p>This is a hook usable with hive to fix an authorization issue. Users
-of Hive 1.0.x,1.1.x and 1.2.x are encouraged to use this hook. More
-details can be found in the README inside the tar.gz file.</p>
-
-<h3 id="27-june-2015--release-121-available">27 June 2015 : release 1.2.1
available</h3>
-<p>This release works with Hadoop 1.x.y, 2.x.y</p>
-
-<p>You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12332384&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="21-may-2015--release-101-111-and-ldap-fix-are-available">21 May 2015 :
release 1.0.1, 1.1.1, and ldap-fix are available</h3>
-<p>These two releases works with Hadoop 1.x.y, 2.x.y. They are based on
-Hive 1.0.0 and 1.1.0 respectively, plus a fix for a LDAP vulnerability issue.
-Hive users for these two versions are encouraged to upgrade. Users
-of previous versions can download and use the ldap-fix.
-More details can be found in the README attached to the tar.gz file.</p>
-
-<p>You can look at the complete JIRA change log for <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12329444&styleName=Text&projectId=12310843">release
1.0.1</a>
-and <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12329557&styleName=Text&projectId=12310843">release
1.1.1</a></p>
-
-<h3 id="18-may-2015--release-120-available">18 May 2015 : release 1.2.0
available</h3>
-<p>This release works with Hadoop 1.x.y, 2.x.y</p>
-
-<p>You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12329345&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="8-march-2015-release-110-available">8 March 2015: release 1.1.0
available</h3>
-<p>This release works with Hadoop 1.x.y, 2.x.y</p>
-
-<p>You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310843&styleName=Text&version=12329363">JIRA
change log for this release</a>.</p>
-
-<h3 id="4-february-2015-release-100-available">4 February 2015: release 1.0.0
available</h3>
-<p>This release works with Hadoop 1.x.y, 2.x.y</p>
-
-<p>You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12329278&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="12-november-2014-release-0140-available">12 November, 2014: release
0.14.0 available</h3>
-<p>This release works with Hadoop 1.x.y, 2.x.y</p>
-
-<p>You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12326450&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="6-june-2014-release-0131-available">6 June, 2014: release 0.13.1
available</h3>
-<p>This release works with Hadoop 0.20.x, 0.23.x.y, 1.x.y, 2.x.y</p>
-
-<p>You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12326829&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="21-april-2014-release-0130-available">21 April, 2014: release 0.13.0
available</h3>
-<p>This release works with Hadoop 0.20.x, 0.23.x.y, 1.x.y, 2.x.y</p>
-
-<p>You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12324986&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="15-october-2013-release-0120-available">15 October, 2013: release
0.12.0 available</h3>
-<p>This release works with Hadoop 0.20.x, 0.23.x.y, 1.x.y, 2.x.y</p>
-
-<p>You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12324312&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="15-may-2013-release-0110-available">15 May, 2013: release 0.11.0
available</h3>
-<p>This release works with Hadoop 0.20.x, 0.23.x.y, 1.x.y, 2.x.y</p>
-
-<p>You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12323587&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-<h3 id="march-2013-hcatalog-merges-into-hive">March, 2013: HCatalog merges
into Hive</h3>
-<p>Old HCatalog releases may still be <a
href="/hcatalog_downloads.html">downloaded</a>.</p>
-
-<h3 id="11-january-2013-release-0100-available">11 January, 2013: release
0.10.0 available</h3>
-<p>This release works with Hadoop 0.20.x, 0.23.x.y, 1.x.y, 2.x.y</p>
-
-<p>You can look at the complete <a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12320745&styleName=Text&projectId=12310843">JIRA
change log for this release</a>.</p>
-
-
- </div>
-
- <div id="footera">
- <div id="poweredby">
- <p><img src="/images/feather_small.gif"/></p>
- </div>
- <div id="copyrighta">
- <p>
-Copyright © 2011-2014 The Apache Software Foundation Licensed under the
<a href="https://www.apache.org/licenses/LICENSE-2.0.html">Apache License,
Version 2.0</a>
- </p>
- <p>
-Apache Hive, Hive, Apache, the Apache feather logo, and the Apache Hive
project logo are trademarks of The Apache Software Foundation.
-Other names appearing on the site may be trademarks of their respective owners.
- </p>
- </div>
-</div>
-
- </body>
-</html>
diff --git a/output/favicon.ico b/output/favicon.ico
deleted file mode 100644
index 6640ede..0000000
Binary files a/output/favicon.ico and /dev/null differ
diff --git a/output/hcatalog_downloads.html b/output/hcatalog_downloads.html
deleted file mode 100644
index c2634f8..0000000
--- a/output/hcatalog_downloads.html
+++ /dev/null
@@ -1,146 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
-<html>
-
- <head>
- <meta charset="UTF-8"/>
- <meta name="generator" content="Jekyll v3.8.7"/>
- <title>HCatalog Downloads</title>
- <link href="/favicon.ico" rel="icon" type="image/x-icon"/>
- <link href="/css/hive.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript">
-
- var _gaq = _gaq || [];
- _gaq.push(['_setAccount', 'UA-7453027-1']);
- _gaq.push(['_setDomainName', 'apache.org']);
- _gaq.push(['_trackPageview']);
-
- (function() {
- var ga = document.createElement('script'); ga.type = 'text/javascript';
ga.async = true;
- ga.src = ('https:' == document.location.protocol ? 'https://ssl' :
'http://www') + '.google-analytics.com/ga.js';
- var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
- })();
-
- </script>
-</head>
-
-
- <body>
- <div id="banner">
- <div id="bannerleft"><a alt="Apache Hive" href="/index.html">
- <img id="logo" alt="Apache Hive" src="/images/hive_logo_medium.jpg"/></a>
- </div>
-</div>
-
-
- <div id="clear"/>
- <div id="sidenav">
-<h1>General</h1>
-<ul>
-<li><a href="/index.html">Home</a></li>
-<li><a href="/downloads.html">Downloads</a></li>
-<li><a href="https://www.apache.org/licenses/LICENSE-2.0.html">License</a></li>
-<li><a href="/privacy_policy.html">Privacy Policy</a></li>
-</ul>
-
-<h1>Documentation</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//LanguageManual">Language
Manual</a></li>
-<li><a href="/javadoc.html">Javadoc</a></li>
-<li><a href="https://cwiki.apache.org/confluence/display/Hive/">Wiki</a></li>
-</ul>
-
-<h1>Community</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//BecomingACommitter">Becoming
a Committer</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//How+to+edit+the+website">Edit
Website</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HowToContribute">How to
Contribute</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Home#Home-ResourcesforContributors">Resources
for contributors</a></li>
-<li><a href="/issue_tracking.html">Issue Tracking</a></li>
-<li><a href="/mailing_lists.html">Mailing Lists</a></li>
-<li><a href="/people.html">People</a></li>
-</ul>
-
-<h1>Development</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//DesignDocs">Design
Docs</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HiveDeveloperFAQ">FAQ</a></li>
-<li><a href="https://issues.apache.org/jira/browse/HIVE">Hive JIRA</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Hive+PreCommit+Patch+Testing">Precommit
Patch Testing</a></li>
-<li><a href="/version_control.html">Version Control</a></li>
-</ul>
-
-<h1>PMC</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Bylaws">ByLaws</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HowToRelease">How to
Release</a></li>
-</ul>
-
-<h1>ASF</h1>
-<ul>
-<li><a
href="https://www.apache.org//foundation/contributing.html">Donations</a></li>
-<li><a
href="https://www.apache.org//foundation/sponsorship.html">Sponsorship</a></li>
-<li><a href="https://www.apache.org//foundation/thanks.html">Thanks</a></li>
-<li><a href="https://www.apache.org/">Website</a></li>
-</ul>
-</div>
-
-
- <div id="contenta">
- <h1>HCatalog Downloads</h1>
- <!---
- 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. -->
-
-<h2 id="hcatalog-merged-with-hive">HCatalog Merged With Hive</h2>
-
-<p>Following HCatalog’s merge with Hive (in March of 2013) HCatalog is now
released as part of Hive. Older versions of HCatalog can still be separately
downloaded.</p>
-
-<p>Old releases may be downloaded from Apache mirrors:</p>
-
-<p><strong><a
href="http://www.apache.org/dyn/closer.cgi/incubator/hcatalog/">Download an old
release now!</a></strong></p>
-
-<h2 id="news">News</h2>
-
-<h3 id="14-feb-2013-release-050-available">14 Feb, 2013: release 0.5.0
available</h3>
-<p>This release introduces webhcat (a web services API to HCatalog), artifacts
published in the maven central repository, and many improvements and bug fixes.
Release Notes are available at the download site.</p>
-
-<h3 id="16-may-2012-release-040-available">16 May, 2012: release 0.4.0
available</h3>
-<p>This release adds support for reading and writing from Hive, switches
HCatalog to use Hive’s SerDe interface instead of HCatalog specific
StorageDescriptors, and adds experimental support for HBase. Release Notes are
available at the download site</p>
-
-<h3 id="o2-oct-2011-release-020-available">O2 Oct, 2011: release 0.2.0
available</h3>
-<p>This is a first release of Apache HCatalog. Release Notes are available at
the download site</p>
-
-
- </div>
-
- <div id="footera">
- <div id="poweredby">
- <p><img src="/images/feather_small.gif"/></p>
- </div>
- <div id="copyrighta">
- <p>
-Copyright © 2011-2014 The Apache Software Foundation Licensed under the
<a href="https://www.apache.org/licenses/LICENSE-2.0.html">Apache License,
Version 2.0</a>
- </p>
- <p>
-Apache Hive, Hive, Apache, the Apache feather logo, and the Apache Hive
project logo are trademarks of The Apache Software Foundation.
-Other names appearing on the site may be trademarks of their respective owners.
- </p>
- </div>
-</div>
-
- </body>
-</html>
diff --git a/output/images/feather_small.gif b/output/images/feather_small.gif
deleted file mode 100644
index 94f1892..0000000
Binary files a/output/images/feather_small.gif and /dev/null differ
diff --git a/output/images/hive-logo.jpg b/output/images/hive-logo.jpg
deleted file mode 100644
index 0f75cf1..0000000
Binary files a/output/images/hive-logo.jpg and /dev/null differ
diff --git a/output/images/hive_logo_medium.jpg
b/output/images/hive_logo_medium.jpg
deleted file mode 100644
index faa6182..0000000
Binary files a/output/images/hive_logo_medium.jpg and /dev/null differ
diff --git a/output/index.html b/output/index.html
deleted file mode 100644
index b9c5207..0000000
--- a/output/index.html
+++ /dev/null
@@ -1,158 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
-<html>
-
- <head>
- <meta charset="UTF-8"/>
- <meta name="generator" content="Jekyll v3.8.7"/>
- <title>Apache Hive</title>
- <link href="/favicon.ico" rel="icon" type="image/x-icon"/>
- <link href="/css/hive.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript">
-
- var _gaq = _gaq || [];
- _gaq.push(['_setAccount', 'UA-7453027-1']);
- _gaq.push(['_setDomainName', 'apache.org']);
- _gaq.push(['_trackPageview']);
-
- (function() {
- var ga = document.createElement('script'); ga.type = 'text/javascript';
ga.async = true;
- ga.src = ('https:' == document.location.protocol ? 'https://ssl' :
'http://www') + '.google-analytics.com/ga.js';
- var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
- })();
-
- </script>
-</head>
-
-
- <body>
- <div id="banner">
- <div id="bannerleft"><a alt="Apache Hive" href="/index.html">
- <img id="logo" alt="Apache Hive" src="/images/hive_logo_medium.jpg"/></a>
- </div>
-</div>
-
-
- <div id="clear"/>
- <div id="sidenav">
-<h1>General</h1>
-<ul>
-<li><a href="/index.html">Home</a></li>
-<li><a href="/downloads.html">Downloads</a></li>
-<li><a href="https://www.apache.org/licenses/LICENSE-2.0.html">License</a></li>
-<li><a href="/privacy_policy.html">Privacy Policy</a></li>
-</ul>
-
-<h1>Documentation</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//LanguageManual">Language
Manual</a></li>
-<li><a href="/javadoc.html">Javadoc</a></li>
-<li><a href="https://cwiki.apache.org/confluence/display/Hive/">Wiki</a></li>
-</ul>
-
-<h1>Community</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//BecomingACommitter">Becoming
a Committer</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//How+to+edit+the+website">Edit
Website</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HowToContribute">How to
Contribute</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Home#Home-ResourcesforContributors">Resources
for contributors</a></li>
-<li><a href="/issue_tracking.html">Issue Tracking</a></li>
-<li><a href="/mailing_lists.html">Mailing Lists</a></li>
-<li><a href="/people.html">People</a></li>
-</ul>
-
-<h1>Development</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//DesignDocs">Design
Docs</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HiveDeveloperFAQ">FAQ</a></li>
-<li><a href="https://issues.apache.org/jira/browse/HIVE">Hive JIRA</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Hive+PreCommit+Patch+Testing">Precommit
Patch Testing</a></li>
-<li><a href="/version_control.html">Version Control</a></li>
-</ul>
-
-<h1>PMC</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Bylaws">ByLaws</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HowToRelease">How to
Release</a></li>
-</ul>
-
-<h1>ASF</h1>
-<ul>
-<li><a
href="https://www.apache.org//foundation/contributing.html">Donations</a></li>
-<li><a
href="https://www.apache.org//foundation/sponsorship.html">Sponsorship</a></li>
-<li><a href="https://www.apache.org//foundation/thanks.html">Thanks</a></li>
-<li><a href="https://www.apache.org/">Website</a></li>
-</ul>
-</div>
-
-
- <div id="contenta">
- <h1>Apache Hive</h1>
- <!---
- 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. -->
-
-<p>The Apache Hive ™ data warehouse software facilitates reading,
-writing, and managing large datasets residing in distributed storage
-using SQL. Structure can be projected onto data already in storage.
-A command line tool and JDBC driver are provided to connect users to
-Hive.</p>
-
-<h2 id="getting-started-with-apache-hive-software">Getting Started With Apache
Hive Software</h2>
-
-<ul>
- <li>Check out the <a
href="https://cwiki.apache.org/confluence/display/Hive//GettingStarted">Getting
Started Guide</a>.</li>
- <li>Learn more <a
href="https://cwiki.apache.org/confluence/display/Hive//Home">About Hive’s
Functionality</a>.</li>
- <li>Read the <a
href="https://cwiki.apache.org/confluence/display/Hive//GettingStarted">Getting
Started Guide</a> to learn how to install Hive</li>
- <li>The <a
href="https://cwiki.apache.org/confluence/display/Hive//Home#Home-UserDocumentation">User
and Hive SQL documentation</a> shows how to program Hive</li>
-</ul>
-
-<h2 id="getting-involved-with-the-apache-hive-community">Getting Involved With
The Apache Hive Community</h2>
-
-<p>Apache Hive is an open source project run by volunteers at the Apache
-Software Foundation. Previously it was a subproject of <a
href="http://hadoop.apache.org">Apache®
-Hadoop®</a>, but has now graduated to become a
-top-level project of its own. We encourage you to learn about the
-project and contribute your expertise.</p>
-
-<ul>
- <li>Give us <a href="/issue_tracking.html">feedback or submit bug
reports</a>: What can we do better?</li>
- <li>Join the <a href="/mailing_lists.html">mailing list</a> and meet our <a
href="/people.html">community</a></li>
- <li>Read through our <a
href="https://cwiki.apache.org/confluence/display/Hive//Home#Home-ResourcesforContributors">Contributor’s
Guides</a> about where to find the source or submit patches</li>
- <li>Become a <a href="http://www.facebook.com/pages/Hive/43928506208">Hive
Fan on Facebook</a></li>
- <li>Follow <a href="https://twitter.com/apachehive">@ApacheHive on
Twitter</a></li>
-</ul>
-
-
- </div>
-
- <div id="footera">
- <div id="poweredby">
- <p><img src="/images/feather_small.gif"/></p>
- </div>
- <div id="copyrighta">
- <p>
-Copyright © 2011-2014 The Apache Software Foundation Licensed under the
<a href="https://www.apache.org/licenses/LICENSE-2.0.html">Apache License,
Version 2.0</a>
- </p>
- <p>
-Apache Hive, Hive, Apache, the Apache feather logo, and the Apache Hive
project logo are trademarks of The Apache Software Foundation.
-Other names appearing on the site may be trademarks of their respective owners.
- </p>
- </div>
-</div>
-
- </body>
-</html>
diff --git a/output/issue_tracking.html b/output/issue_tracking.html
deleted file mode 100644
index bce3af6..0000000
--- a/output/issue_tracking.html
+++ /dev/null
@@ -1,137 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
-<html>
-
- <head>
- <meta charset="UTF-8"/>
- <meta name="generator" content="Jekyll v3.8.7"/>
- <title>Issue Tracking</title>
- <link href="/favicon.ico" rel="icon" type="image/x-icon"/>
- <link href="/css/hive.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript">
-
- var _gaq = _gaq || [];
- _gaq.push(['_setAccount', 'UA-7453027-1']);
- _gaq.push(['_setDomainName', 'apache.org']);
- _gaq.push(['_trackPageview']);
-
- (function() {
- var ga = document.createElement('script'); ga.type = 'text/javascript';
ga.async = true;
- ga.src = ('https:' == document.location.protocol ? 'https://ssl' :
'http://www') + '.google-analytics.com/ga.js';
- var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
- })();
-
- </script>
-</head>
-
-
- <body>
- <div id="banner">
- <div id="bannerleft"><a alt="Apache Hive" href="/index.html">
- <img id="logo" alt="Apache Hive" src="/images/hive_logo_medium.jpg"/></a>
- </div>
-</div>
-
-
- <div id="clear"/>
- <div id="sidenav">
-<h1>General</h1>
-<ul>
-<li><a href="/index.html">Home</a></li>
-<li><a href="/downloads.html">Downloads</a></li>
-<li><a href="https://www.apache.org/licenses/LICENSE-2.0.html">License</a></li>
-<li><a href="/privacy_policy.html">Privacy Policy</a></li>
-</ul>
-
-<h1>Documentation</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//LanguageManual">Language
Manual</a></li>
-<li><a href="/javadoc.html">Javadoc</a></li>
-<li><a href="https://cwiki.apache.org/confluence/display/Hive/">Wiki</a></li>
-</ul>
-
-<h1>Community</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//BecomingACommitter">Becoming
a Committer</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//How+to+edit+the+website">Edit
Website</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HowToContribute">How to
Contribute</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Home#Home-ResourcesforContributors">Resources
for contributors</a></li>
-<li><a href="/issue_tracking.html">Issue Tracking</a></li>
-<li><a href="/mailing_lists.html">Mailing Lists</a></li>
-<li><a href="/people.html">People</a></li>
-</ul>
-
-<h1>Development</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//DesignDocs">Design
Docs</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HiveDeveloperFAQ">FAQ</a></li>
-<li><a href="https://issues.apache.org/jira/browse/HIVE">Hive JIRA</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Hive+PreCommit+Patch+Testing">Precommit
Patch Testing</a></li>
-<li><a href="/version_control.html">Version Control</a></li>
-</ul>
-
-<h1>PMC</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Bylaws">ByLaws</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HowToRelease">How to
Release</a></li>
-</ul>
-
-<h1>ASF</h1>
-<ul>
-<li><a
href="https://www.apache.org//foundation/contributing.html">Donations</a></li>
-<li><a
href="https://www.apache.org//foundation/sponsorship.html">Sponsorship</a></li>
-<li><a href="https://www.apache.org//foundation/thanks.html">Thanks</a></li>
-<li><a href="https://www.apache.org/">Website</a></li>
-</ul>
-</div>
-
-
- <div id="contenta">
- <h1>Issue Tracking</h1>
- <!---
- 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. -->
-
-<p>Hive tracks both bugs and enhancementrequests using <a
href="https://issues.apache.org/jira/browse/HIVE">Apache
-JIRA</a>. We welcome input,
-however, before filing a request, please make sure you do the
-following:</p>
-
-<ul>
- <li>Search the JIRA database.</li>
- <li>Check the <a href="/mailing_lists.html">user mailing list</a>, both by
searching the archives and by asking questions.</li>
-</ul>
-
-
- </div>
-
- <div id="footera">
- <div id="poweredby">
- <p><img src="/images/feather_small.gif"/></p>
- </div>
- <div id="copyrighta">
- <p>
-Copyright © 2011-2014 The Apache Software Foundation Licensed under the
<a href="https://www.apache.org/licenses/LICENSE-2.0.html">Apache License,
Version 2.0</a>
- </p>
- <p>
-Apache Hive, Hive, Apache, the Apache feather logo, and the Apache Hive
project logo are trademarks of The Apache Software Foundation.
-Other names appearing on the site may be trademarks of their respective owners.
- </p>
- </div>
-</div>
-
- </body>
-</html>
diff --git a/output/javadoc.html b/output/javadoc.html
deleted file mode 100644
index 7dac628..0000000
--- a/output/javadoc.html
+++ /dev/null
@@ -1,142 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
-<html>
-
- <head>
- <meta charset="UTF-8"/>
- <meta name="generator" content="Jekyll v3.8.7"/>
- <title>Javadoc</title>
- <link href="/favicon.ico" rel="icon" type="image/x-icon"/>
- <link href="/css/hive.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript">
-
- var _gaq = _gaq || [];
- _gaq.push(['_setAccount', 'UA-7453027-1']);
- _gaq.push(['_setDomainName', 'apache.org']);
- _gaq.push(['_trackPageview']);
-
- (function() {
- var ga = document.createElement('script'); ga.type = 'text/javascript';
ga.async = true;
- ga.src = ('https:' == document.location.protocol ? 'https://ssl' :
'http://www') + '.google-analytics.com/ga.js';
- var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
- })();
-
- </script>
-</head>
-
-
- <body>
- <div id="banner">
- <div id="bannerleft"><a alt="Apache Hive" href="/index.html">
- <img id="logo" alt="Apache Hive" src="/images/hive_logo_medium.jpg"/></a>
- </div>
-</div>
-
-
- <div id="clear"/>
- <div id="sidenav">
-<h1>General</h1>
-<ul>
-<li><a href="/index.html">Home</a></li>
-<li><a href="/downloads.html">Downloads</a></li>
-<li><a href="https://www.apache.org/licenses/LICENSE-2.0.html">License</a></li>
-<li><a href="/privacy_policy.html">Privacy Policy</a></li>
-</ul>
-
-<h1>Documentation</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//LanguageManual">Language
Manual</a></li>
-<li><a href="/javadoc.html">Javadoc</a></li>
-<li><a href="https://cwiki.apache.org/confluence/display/Hive/">Wiki</a></li>
-</ul>
-
-<h1>Community</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//BecomingACommitter">Becoming
a Committer</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//How+to+edit+the+website">Edit
Website</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HowToContribute">How to
Contribute</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Home#Home-ResourcesforContributors">Resources
for contributors</a></li>
-<li><a href="/issue_tracking.html">Issue Tracking</a></li>
-<li><a href="/mailing_lists.html">Mailing Lists</a></li>
-<li><a href="/people.html">People</a></li>
-</ul>
-
-<h1>Development</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//DesignDocs">Design
Docs</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HiveDeveloperFAQ">FAQ</a></li>
-<li><a href="https://issues.apache.org/jira/browse/HIVE">Hive JIRA</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Hive+PreCommit+Patch+Testing">Precommit
Patch Testing</a></li>
-<li><a href="/version_control.html">Version Control</a></li>
-</ul>
-
-<h1>PMC</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Bylaws">ByLaws</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HowToRelease">How to
Release</a></li>
-</ul>
-
-<h1>ASF</h1>
-<ul>
-<li><a
href="https://www.apache.org//foundation/contributing.html">Donations</a></li>
-<li><a
href="https://www.apache.org//foundation/sponsorship.html">Sponsorship</a></li>
-<li><a href="https://www.apache.org//foundation/thanks.html">Thanks</a></li>
-<li><a href="https://www.apache.org/">Website</a></li>
-</ul>
-</div>
-
-
- <div id="contenta">
- <h1>Javadoc</h1>
- <!---
- 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. -->
-
-<h2 id="recent-versions">Recent versions:</h2>
-
-<ul>
- <li><a
href="https://svn.apache.org/repos/infra/websites/production/hive/content/javadocs/r4.0.0-alpha-2/api/index.html">Hive
4.0.0-alpha-2 Javadocs</a></li>
- <li><a
href="https://svn.apache.org/repos/infra/websites/production/hive/content/javadocs/r3.1.3/api/index.html">Hive
3.1.3 Javadocs</a></li>
- <li><a
href="https://svn.apache.org/repos/infra/websites/production/hive/content/javadocs/r4.0.0-alpha-1/api/index.html">Hive
4.0.0-alpha-1 Javadocs</a></li>
- <li><a
href="https://svn.apache.org/repos/infra/websites/production/hive/content/javadocs/r3.1.2/api/index.html">Hive
3.1.2 Javadocs</a></li>
- <li><a
href="https://svn.apache.org/repos/infra/websites/production/hive/content/javadocs/r3.0.0/api/index.html">Hive
3.0.0 Javadocs</a></li>
- <li><a
href="https://svn.apache.org/repos/infra/websites/production/hive/content/javadocs/r2.3.9/api/index.html">Hive
2.3.9 Javadocs</a></li>
- <li><a
href="https://svn.apache.org/repos/infra/websites/production/hive/content/javadocs/r2.2.0/api/index.html">Hive
2.2.0 Javadocs</a></li>
- <li><a
href="https://svn.apache.org/repos/infra/websites/production/hive/content/javadocs/r2.1.1/api/index.html">Hive
2.1.1 Javadocs</a></li>
- <li><a
href="https://svn.apache.org/repos/infra/websites/production/hive/content/javadocs/r1.2.2/api/index.html">Hive
1.2.2 Javadocs</a></li>
-</ul>
-
-<h2
id="javadoc-and-sources-jars-for-use-in-an-ide-are-also-available-via-nexus">javadoc
and sources jars for use in an IDE are also available via <a
href="https://repository.apache.org/index.html#nexus-search;gav~org.apache.hive~~~~">Nexus</a></h2>
-
- </div>
-
- <div id="footera">
- <div id="poweredby">
- <p><img src="/images/feather_small.gif"/></p>
- </div>
- <div id="copyrighta">
- <p>
-Copyright © 2011-2014 The Apache Software Foundation Licensed under the
<a href="https://www.apache.org/licenses/LICENSE-2.0.html">Apache License,
Version 2.0</a>
- </p>
- <p>
-Apache Hive, Hive, Apache, the Apache feather logo, and the Apache Hive
project logo are trademarks of The Apache Software Foundation.
-Other names appearing on the site may be trademarks of their respective owners.
- </p>
- </div>
-</div>
-
- </body>
-</html>
diff --git a/output/mailing_lists.html b/output/mailing_lists.html
deleted file mode 100644
index 1720dc4..0000000
--- a/output/mailing_lists.html
+++ /dev/null
@@ -1,190 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
-<html>
-
- <head>
- <meta charset="UTF-8"/>
- <meta name="generator" content="Jekyll v3.8.7"/>
- <title>Mailing Lists</title>
- <link href="/favicon.ico" rel="icon" type="image/x-icon"/>
- <link href="/css/hive.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript">
-
- var _gaq = _gaq || [];
- _gaq.push(['_setAccount', 'UA-7453027-1']);
- _gaq.push(['_setDomainName', 'apache.org']);
- _gaq.push(['_trackPageview']);
-
- (function() {
- var ga = document.createElement('script'); ga.type = 'text/javascript';
ga.async = true;
- ga.src = ('https:' == document.location.protocol ? 'https://ssl' :
'http://www') + '.google-analytics.com/ga.js';
- var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
- })();
-
- </script>
-</head>
-
-
- <body>
- <div id="banner">
- <div id="bannerleft"><a alt="Apache Hive" href="/index.html">
- <img id="logo" alt="Apache Hive" src="/images/hive_logo_medium.jpg"/></a>
- </div>
-</div>
-
-
- <div id="clear"/>
- <div id="sidenav">
-<h1>General</h1>
-<ul>
-<li><a href="/index.html">Home</a></li>
-<li><a href="/downloads.html">Downloads</a></li>
-<li><a href="https://www.apache.org/licenses/LICENSE-2.0.html">License</a></li>
-<li><a href="/privacy_policy.html">Privacy Policy</a></li>
-</ul>
-
-<h1>Documentation</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//LanguageManual">Language
Manual</a></li>
-<li><a href="/javadoc.html">Javadoc</a></li>
-<li><a href="https://cwiki.apache.org/confluence/display/Hive/">Wiki</a></li>
-</ul>
-
-<h1>Community</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//BecomingACommitter">Becoming
a Committer</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//How+to+edit+the+website">Edit
Website</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HowToContribute">How to
Contribute</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Home#Home-ResourcesforContributors">Resources
for contributors</a></li>
-<li><a href="/issue_tracking.html">Issue Tracking</a></li>
-<li><a href="/mailing_lists.html">Mailing Lists</a></li>
-<li><a href="/people.html">People</a></li>
-</ul>
-
-<h1>Development</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//DesignDocs">Design
Docs</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HiveDeveloperFAQ">FAQ</a></li>
-<li><a href="https://issues.apache.org/jira/browse/HIVE">Hive JIRA</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Hive+PreCommit+Patch+Testing">Precommit
Patch Testing</a></li>
-<li><a href="/version_control.html">Version Control</a></li>
-</ul>
-
-<h1>PMC</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Bylaws">ByLaws</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HowToRelease">How to
Release</a></li>
-</ul>
-
-<h1>ASF</h1>
-<ul>
-<li><a
href="https://www.apache.org//foundation/contributing.html">Donations</a></li>
-<li><a
href="https://www.apache.org//foundation/sponsorship.html">Sponsorship</a></li>
-<li><a href="https://www.apache.org//foundation/thanks.html">Thanks</a></li>
-<li><a href="https://www.apache.org/">Website</a></li>
-</ul>
-</div>
-
-
- <div id="contenta">
- <h1>Mailing Lists</h1>
- <!---
- 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. -->
-
-<p>We welcome you to join our mailing lists and let us know about your
thoughts or
-ideas about Hive.</p>
-
-<h2 id="user-mailing-list">User Mailing List</h2>
-
-<p>The user list is for general discussion or questions on using Hive. Hive
-developers monitor this list and provide assistance when needed.</p>
-
-<ul>
- <li>Subscribe: <a
href="mailto:[email protected]">[email protected]</a></li>
- <li>Post: <a href="mailto:[email protected]">[email protected]</a></li>
- <li>Unsubscribe: <a
href="mailto:[email protected]">[email protected]</a></li>
- <li>Archives:
- <ul>
- <li><a
href="http://mail-archives.apache.org/mod_mbox/hive-user">Apache</a></li>
- <li><a
href="http://markmail.org/search/+list:org.apache.incubator.hive-user">Markmail</a></li>
- </ul>
- </li>
-</ul>
-
-<h2 id="developer-mailing-list">Developer Mailing List</h2>
-
-<p>The developer list is for Hive developers to discuss ongoing work, make
-decisions, and vote on technical issues.</p>
-
-<ul>
- <li>Subscribe: <a
href="mailto:[email protected]">[email protected]</a></li>
- <li>Post: <a href="mailto:[email protected]">[email protected]</a></li>
- <li>Unsubscribe: <a
href="mailto:[email protected]">[email protected]</a></li>
- <li>Archives:
- <ul>
- <li><a
href="http://mail-archives.apache.org/mod_mbox/hive-dev">Apache</a></li>
- <li><a
href="http://markmail.org/search/+list:org.apache.incubator.hive-dev">Markmail</a></li>
- </ul>
- </li>
-</ul>
-
-<h2 id="commits-mailing-list">Commits Mailing List</h2>
-
-<p>The commits list receives notifications with diffs when changes are
committed
-to the Hive source tree.</p>
-
-<ul>
- <li>Subscribe: <a
href="mailto:[email protected]">[email protected]</a></li>
- <li>Unsubscribe: <a
href="mailto:[email protected]">[email protected]</a></li>
- <li>Archives:
- <ul>
- <li><a
href="http://mail-archives.apache.org/mod_mbox/hive-commits">Apache</a></li>
- <li><a
href="http://markmail.org/search/+list:org.apache.incubator.hive-commits">Markmail</a></li>
- </ul>
- </li>
-</ul>
-
-<h2 id="security-mailing-list">Security Mailing List</h2>
-
-<p>The security mailing list is a private list for discussion of potential
security vulnerabilities issues. Please post potential security vulnerabilities
to this list so that they may be investigated and fixed before the
vulnerabilities is published.</p>
-
-<p><strong>Note: This mailing list is NOT for end-user questions and
discussion on security. Please use the user mailing list for such
issues.</strong></p>
-
-<p>The Hive security mailing list is : <a
href="mailto:[email protected]">[email protected]</a>.</p>
-
-<p>In order to post to the list, it is <strong>NOT</strong> necessary to first
subscribe to it.</p>
-
-
- </div>
-
- <div id="footera">
- <div id="poweredby">
- <p><img src="/images/feather_small.gif"/></p>
- </div>
- <div id="copyrighta">
- <p>
-Copyright © 2011-2014 The Apache Software Foundation Licensed under the
<a href="https://www.apache.org/licenses/LICENSE-2.0.html">Apache License,
Version 2.0</a>
- </p>
- <p>
-Apache Hive, Hive, Apache, the Apache feather logo, and the Apache Hive
project logo are trademarks of The Apache Software Foundation.
-Other names appearing on the site may be trademarks of their respective owners.
- </p>
- </div>
-</div>
-
- </body>
-</html>
diff --git a/output/people.html b/output/people.html
deleted file mode 100644
index a069049..0000000
--- a/output/people.html
+++ /dev/null
@@ -1,640 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
-<html>
-
- <head>
- <meta charset="UTF-8"/>
- <meta name="generator" content="Jekyll v3.8.7"/>
- <title>People</title>
- <link href="/favicon.ico" rel="icon" type="image/x-icon"/>
- <link href="/css/hive.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript">
-
- var _gaq = _gaq || [];
- _gaq.push(['_setAccount', 'UA-7453027-1']);
- _gaq.push(['_setDomainName', 'apache.org']);
- _gaq.push(['_trackPageview']);
-
- (function() {
- var ga = document.createElement('script'); ga.type = 'text/javascript';
ga.async = true;
- ga.src = ('https:' == document.location.protocol ? 'https://ssl' :
'http://www') + '.google-analytics.com/ga.js';
- var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
- })();
-
- </script>
-</head>
-
-
- <body>
- <div id="banner">
- <div id="bannerleft"><a alt="Apache Hive" href="/index.html">
- <img id="logo" alt="Apache Hive" src="/images/hive_logo_medium.jpg"/></a>
- </div>
-</div>
-
-
- <div id="clear"/>
- <div id="sidenav">
-<h1>General</h1>
-<ul>
-<li><a href="/index.html">Home</a></li>
-<li><a href="/downloads.html">Downloads</a></li>
-<li><a href="https://www.apache.org/licenses/LICENSE-2.0.html">License</a></li>
-<li><a href="/privacy_policy.html">Privacy Policy</a></li>
-</ul>
-
-<h1>Documentation</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//LanguageManual">Language
Manual</a></li>
-<li><a href="/javadoc.html">Javadoc</a></li>
-<li><a href="https://cwiki.apache.org/confluence/display/Hive/">Wiki</a></li>
-</ul>
-
-<h1>Community</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//BecomingACommitter">Becoming
a Committer</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//How+to+edit+the+website">Edit
Website</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HowToContribute">How to
Contribute</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Home#Home-ResourcesforContributors">Resources
for contributors</a></li>
-<li><a href="/issue_tracking.html">Issue Tracking</a></li>
-<li><a href="/mailing_lists.html">Mailing Lists</a></li>
-<li><a href="/people.html">People</a></li>
-</ul>
-
-<h1>Development</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//DesignDocs">Design
Docs</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HiveDeveloperFAQ">FAQ</a></li>
-<li><a href="https://issues.apache.org/jira/browse/HIVE">Hive JIRA</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Hive+PreCommit+Patch+Testing">Precommit
Patch Testing</a></li>
-<li><a href="/version_control.html">Version Control</a></li>
-</ul>
-
-<h1>PMC</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Bylaws">ByLaws</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HowToRelease">How to
Release</a></li>
-</ul>
-
-<h1>ASF</h1>
-<ul>
-<li><a
href="https://www.apache.org//foundation/contributing.html">Donations</a></li>
-<li><a
href="https://www.apache.org//foundation/sponsorship.html">Sponsorship</a></li>
-<li><a href="https://www.apache.org//foundation/thanks.html">Thanks</a></li>
-<li><a href="https://www.apache.org/">Website</a></li>
-</ul>
-</div>
-
-
- <div id="contenta">
- <h1>People</h1>
- <!---
- 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. -->
-
-<style type="text/css">
- table {
- width:100%;
- }
- table, td {
- border-collapse: collapse;
- border-top: 1px solid #ccc;
- border-bottom: 1px solid #ccc;
- padding: 5px;
- }
- th {
- style: font-weight:bold;
- text-align: left;
- background: #FFFFFF;
- }
- tr:nth-child(2n){
- background: #FFF68F;
- }
- tr:nth-child(2n+1) {
- background: #FFFFFF;
- }
-</style>
-
-<p>Apache Hive is a community developed project. The list below is a partial
-list of contributors to the project, for a complete list you would have to look
-at all contributors to our issue tracker, mailing list and version control.</p>
-
-<h2 id="hive-pmc">Hive PMC</h2>
-
-<table>
- <thead>
- <tr>
- <th>Apache username</th>
- <th>name</th>
- <th>organization</th>
- <th>role</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>aihuaxu</td>
- <td>Aihua Xu</td>
- <td><a href="http://cloudera.com/">Cloudera</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>athusoo</td>
- <td>Ashish Thusoo</td>
- <td><a href="http://qubole.com/">Qubole</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>ayushsaxena</td>
- <td>Ayush Saxena</td>
- <td><a href="http://cloudera.com/">Cloudera</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>brock</td>
- <td>Brock Noland</td>
- <td><a href="http://streamsets.com/">StreamSets</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>ctang</td>
- <td>Chaoyu Tang</td>
- <td><a href="http://cloudera.com/">Cloudera</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>cws</td>
- <td>Carl Steinbach</td>
- <td><a href="http://linkedin.com">LinkedIn</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>daijy</td>
- <td>Daniel Dai</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>ecapriolo</td>
- <td>Edward Capriolo</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>gates</td>
- <td>Alan Gates</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>gopalv</td>
- <td>Gopal Vijayaraghavan</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>gunther</td>
- <td>Gunther Hagleitner</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>hashutosh</td>
- <td>Ashutosh Chauhan</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- <td>VP</td>
- </tr>
- <tr>
- <td>heyongqiang</td>
- <td>Yongqiang He</td>
- <td><a href="http://dropbox.com/">Dropbox</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>jcamacho</td>
- <td>Jesus Camacho Rodriguez</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>jdere</td>
- <td>Jason Dere</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>jpullokk</td>
- <td>Laljo John Pullokkaran</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>jssarma</td>
- <td>Joydeep Sensarma</td>
- <td><a href="http://qubole.com/">Qubole</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>jxiang</td>
- <td>Jimmy Xiang</td>
- <td><a href="http://cloudera.com/">Cloudera</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>kevinwilfong</td>
- <td>Kevin Wilfong</td>
- <td><a href="http://facebook.com/">Facebook</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>leftyl</td>
- <td>Lefty Leverenz</td>
- <td><a href="https://www.ibm.com/">IBM</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>namit</td>
- <td>Namit Jain</td>
- <td><a href="http://www.nutanix.com/">Nutanix</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>navis</td>
- <td>Navis Ryu</td>
- <td><a href="http://nexr.com/">NexR</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>nzhang</td>
- <td>Ning Zhang</td>
- <td><a href="http://facebook.com/">Facebook</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>omalley</td>
- <td>Owen O’Malley</td>
- <td><a href="http://linkedin.com/">LinkedIn</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>prasadm</td>
- <td>Prasad Mujumdar</td>
- <td><a href="http://cloudera.com/">Cloudera</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>prasanth_j</td>
- <td>Prasanth Jayachandran</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>pvary</td>
- <td>Peter Vary</td>
- <td><a href="http://cloudera.com/">Cloudera</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>pxiong</td>
- <td>Pengcheng Xiong</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>rhbutani</td>
- <td>Harish Butani</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>rmurthy</td>
- <td>Raghotham Murthy</td>
- <td><a href="http://facebook.com/">Facebook</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>sershe</td>
- <td>Sergey Shelukhin</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>spena</td>
- <td>Sergio Peña</td>
- <td><a href="http://cloudera.com/">Cloudera</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>sunchao</td>
- <td>Chao Sun</td>
- <td><a href="http://cloudera.com/">Cloudera</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>szehon</td>
- <td>Szehon Ho</td>
- <td><a href="http://cloudera.com/">Cloudera</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>thejas</td>
- <td>Thejas Nair</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>vgumashta</td>
- <td>Vaibhav Gumashta</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>vikram</td>
- <td>Vikram Dixit</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>xuefu</td>
- <td>Xuefu Zhang</td>
- <td><a href="https://www.alibaba.com/">Alibaba Inc</a></td>
- <td> </td>
- </tr>
- <tr>
- <td>ychena</td>
- <td>Yongzhi Chen</td>
- <td><a href="http://cloudera.com/">Cloudera</a></td>
- <td> </td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="hive-committers">Hive Committers</h2>
-
-<table>
- <thead>
- <tr>
- <th>Apache username</th>
- <th>name</th>
- <th>organization</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>amareshwari</td>
- <td>Amareshwari Sriramadasu</td>
- <td><a href="http://www.inmobi.com/">InMobi</a></td>
- </tr>
- <tr>
- <td>apivovarov</td>
- <td>Alexander Pivovarov</td>
- <td><a href="http://fostercitylab.crabdance.com/">Foster City Hadoop Lab
LLC</a></td>
- </tr>
- <tr>
- <td>asherman</td>
- <td>Andrew Sherman</td>
- <td><a href="http://cloudera.com/">Cloudera</a></td>
- </tr>
- <tr>
- <td>ayushsaxena</td>
- <td>Ayush Saxena</td>
- <td><a href="http://cloudera.com/">Cloudera</a></td>
- </tr>
- <tr>
- <td>bharos92</td>
- <td>Bharath Krishna</td>
- <td><a href="http://cloudera.com/">Cloudera</a></td>
- </tr>
- <tr>
- <td>chengxiang</td>
- <td>Chengxiang Li</td>
- <td><a href="http://intel.com/">Intel</a></td>
- </tr>
- <tr>
- <td>chinnaraol</td>
- <td>Chinna Rao Lalam</td>
- <td><a href="http://intel.com/">Intel</a></td>
- </tr>
- <tr>
- <td>cdrome</td>
- <td>Chris Drome</td>
- <td><a href="https://www.oath.com/">Oath</a></td>
- </tr>
- <tr>
- <td>djaiswal</td>
- <td>Deepak Jaiswal</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- </tr>
- <tr>
- <td>dmtolpeko</td>
- <td>Dmitry Tolpeko</td>
- <td><a href="http://www.epam.com/">EPAM</a></td>
- </tr>
- <tr>
- <td>dongc</td>
- <td>Dong Chen</td>
- <td><a href="http://intel.com/">Intel</a></td>
- </tr>
- <tr>
- <td>ehans</td>
- <td>Eric Hanson</td>
- <td><a href="http://microsoft.com">Microsoft</a></td>
- </tr>
- <tr>
- <td>gangtimliu</td>
- <td>Gang Tim Liu</td>
- <td><a href="http://facebook.com/">Facebook</a></td>
- </tr>
- <tr>
- <td>harisankar</td>
- <td>Hari Sankar Sivarama Subramaniyan</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- </tr>
- <tr>
- <td>janaki</td>
- <td>Janaki Lahorani</td>
- <td><a href="http://cloudera.com/">Cloudera</a></td>
- </tr>
- <tr>
- <td>jitendra</td>
- <td>Jitendra Pandey</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- </tr>
- <tr>
- <td>kgyrtkirk</td>
- <td>Zoltan Haindrich</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- </tr>
- <tr>
- <td>kuczoram</td>
- <td>Marta Kuczora</td>
- <td><a href="http://cloudera.com/">Cloudera</a></td>
- </tr>
- <tr>
- <td>larsfrancke</td>
- <td>Lars Francke</td>
- <td><a href="http://lars-francke.de/en/">Freelancer</a></td>
- </tr>
- <tr>
- <td>mithun</td>
- <td>Mithun Radhakrishnan</td>
- <td><a href="https://www.oath.com/">Oath</a></td>
- </tr>
- <tr>
- <td>mmccline</td>
- <td>Matt McCline</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- </tr>
- <tr>
- <td>mohits</td>
- <td>Mohit Sabharwal</td>
- <td><a href="http://cloudera.com/">Cloudera</a></td>
- </tr>
- <tr>
- <td>ngangam</td>
- <td>Naveen Gangam</td>
- <td><a href="http://cloudera.com/">Cloudera</a></td>
- </tr>
- <tr>
- <td>rbalamohan</td>
- <td>Rajesh Balamohan</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- </tr>
- <tr>
- <td>remusr</td>
- <td>Remus Rusanu</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- </tr>
- <tr>
- <td>sankarh</td>
- <td>Sankar Hariappan</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- </tr>
- <tr>
- <td>sdong</td>
- <td>Siying Dong</td>
- <td><a href="http://facebook.com/">Facebook</a></td>
- </tr>
- <tr>
- <td>sseth</td>
- <td>Siddharth Seth</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- </tr>
- <tr>
- <td>szita</td>
- <td>Adam Szita</td>
- <td><a href="http://cloudera.com/">Cloudera</a></td>
- </tr>
- <tr>
- <td>tchoi</td>
- <td>Teddy Choi</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- </tr>
- <tr>
- <td>vgarg</td>
- <td>Vineet Garg</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- </tr>
- <tr>
- <td>weiz</td>
- <td>Wei Zheng</td>
- <td><a href="http://hortonworks.com/">Hortonworks</a></td>
- </tr>
- <tr>
- <td>xuf</td>
- <td>Ferdinand Xu</td>
- <td><a href="http://intel.com/">Intel</a></td>
- </tr>
- <tr>
- <td>yhuai</td>
- <td>Yin Huai</td>
- <td><a href="http://databricks.com/">Databricks</a></td>
- </tr>
- </tbody>
-</table>
-
-<p>PMC members are also Hive committers.</p>
-
-<h2 id="catalog-committers">Catalog Committers</h2>
-
-<table>
- <thead>
- <tr>
- <th>Apache username</th>
- <th>name</th>
- <th>organization</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>toffer</td>
- <td>Francis Christopher Liu</td>
- <td><a href="http://yahoo.com/">Yahoo!</a></td>
- </tr>
- <tr>
- <td>avandana</td>
- <td>Vandana Ayyalasomayajula</td>
- <td><a href="http://yahoo.com/">Yahoo!</a></td>
- </tr>
- <tr>
- <td>travis</td>
- <td>Travis Crawford</td>
- <td><a href="http://twitter.com">Twitter</a></td>
- </tr>
- <tr>
- <td>mithun</td>
- <td>Mithun Radhakrishnan</td>
- <td><a href="https://www.oath.com/">Oath</a></td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="contributors">Contributors</h2>
-
-<p>A list of Hive contributors and their contributions is available from
-<a
href="https://issues.apache.org/jira/secure/ConfigureReport.jspa?projectOrFilterId=project-12310843&statistictype=assignees&selectedProjectId=12310843&reportKey=com.atlassian.jira.plugin.system.reports%3Apie-report&Next=Next">Jira</a>.</p>
-
-<h2 id="emeritus-hive-pmc-members">Emeritus Hive PMC Members</h2>
-
-<ul>
- <li>Dhruba Borthakur</li>
- <li>Prasad Chakka</li>
- <li>Johan Oskarsson</li>
- <li>Zheng Shao</li>
- <li>John Sichi</li>
- <li>Sushanth Sowmyan</li>
- <li>Paul Yang</li>
-</ul>
-
-
- </div>
-
- <div id="footera">
- <div id="poweredby">
- <p><img src="/images/feather_small.gif"/></p>
- </div>
- <div id="copyrighta">
- <p>
-Copyright © 2011-2014 The Apache Software Foundation Licensed under the
<a href="https://www.apache.org/licenses/LICENSE-2.0.html">Apache License,
Version 2.0</a>
- </p>
- <p>
-Apache Hive, Hive, Apache, the Apache feather logo, and the Apache Hive
project logo are trademarks of The Apache Software Foundation.
-Other names appearing on the site may be trademarks of their respective owners.
- </p>
- </div>
-</div>
-
- </body>
-</html>
diff --git a/output/privacy_policy.html b/output/privacy_policy.html
deleted file mode 100644
index 28aeb7d..0000000
--- a/output/privacy_policy.html
+++ /dev/null
@@ -1,154 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
-<html>
-
- <head>
- <meta charset="UTF-8"/>
- <meta name="generator" content="Jekyll v3.8.7"/>
- <title>Privacy Policy</title>
- <link href="/favicon.ico" rel="icon" type="image/x-icon"/>
- <link href="/css/hive.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript">
-
- var _gaq = _gaq || [];
- _gaq.push(['_setAccount', 'UA-7453027-1']);
- _gaq.push(['_setDomainName', 'apache.org']);
- _gaq.push(['_trackPageview']);
-
- (function() {
- var ga = document.createElement('script'); ga.type = 'text/javascript';
ga.async = true;
- ga.src = ('https:' == document.location.protocol ? 'https://ssl' :
'http://www') + '.google-analytics.com/ga.js';
- var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
- })();
-
- </script>
-</head>
-
-
- <body>
- <div id="banner">
- <div id="bannerleft"><a alt="Apache Hive" href="/index.html">
- <img id="logo" alt="Apache Hive" src="/images/hive_logo_medium.jpg"/></a>
- </div>
-</div>
-
-
- <div id="clear"/>
- <div id="sidenav">
-<h1>General</h1>
-<ul>
-<li><a href="/index.html">Home</a></li>
-<li><a href="/downloads.html">Downloads</a></li>
-<li><a href="https://www.apache.org/licenses/LICENSE-2.0.html">License</a></li>
-<li><a href="/privacy_policy.html">Privacy Policy</a></li>
-</ul>
-
-<h1>Documentation</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//LanguageManual">Language
Manual</a></li>
-<li><a href="/javadoc.html">Javadoc</a></li>
-<li><a href="https://cwiki.apache.org/confluence/display/Hive/">Wiki</a></li>
-</ul>
-
-<h1>Community</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//BecomingACommitter">Becoming
a Committer</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//How+to+edit+the+website">Edit
Website</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HowToContribute">How to
Contribute</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Home#Home-ResourcesforContributors">Resources
for contributors</a></li>
-<li><a href="/issue_tracking.html">Issue Tracking</a></li>
-<li><a href="/mailing_lists.html">Mailing Lists</a></li>
-<li><a href="/people.html">People</a></li>
-</ul>
-
-<h1>Development</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//DesignDocs">Design
Docs</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HiveDeveloperFAQ">FAQ</a></li>
-<li><a href="https://issues.apache.org/jira/browse/HIVE">Hive JIRA</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Hive+PreCommit+Patch+Testing">Precommit
Patch Testing</a></li>
-<li><a href="/version_control.html">Version Control</a></li>
-</ul>
-
-<h1>PMC</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Bylaws">ByLaws</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HowToRelease">How to
Release</a></li>
-</ul>
-
-<h1>ASF</h1>
-<ul>
-<li><a
href="https://www.apache.org//foundation/contributing.html">Donations</a></li>
-<li><a
href="https://www.apache.org//foundation/sponsorship.html">Sponsorship</a></li>
-<li><a href="https://www.apache.org//foundation/thanks.html">Thanks</a></li>
-<li><a href="https://www.apache.org/">Website</a></li>
-</ul>
-</div>
-
-
- <div id="contenta">
- <h1>Privacy Policy</h1>
- <!---
- 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. -->
-
-<p>Information about your use of this website is collected using server
-access logs and a tracking cookie. The collected information consists of
-the following:</p>
-
-<ol>
- <li>The IP address from which you access the website;</li>
- <li>The type of browser and operating system you use to access our site;</li>
- <li>The date and time you access our site;</li>
- <li>The pages you visit; and</li>
- <li>The addresses of pages from where you followed a link to our site.</li>
-</ol>
-
-<p>Part of this information is gathered using a tracking cookie set by the
-<a href="http://www.google.com/analytics/">Google Analytics</a>
-service and handled by Google as
-described in their <a href="http://www.google.com/privacy.html">privacy
policy</a>.
-See your browser documentation for instructions on how to disable the
-cookie if you prefer not to share this data with Google.</p>
-
-<p>We use the gathered information to help us make our site more useful to
-visitors and to better understand how and when our site is used. We do not
-track or collect personally identifiable information or associate gathered
-data with any personally identifying information from other sources.</p>
-
-<p>By using this website, you consent to the collection of this data in
-the manner and for the purpose described above.</p>
-
-
- </div>
-
- <div id="footera">
- <div id="poweredby">
- <p><img src="/images/feather_small.gif"/></p>
- </div>
- <div id="copyrighta">
- <p>
-Copyright © 2011-2014 The Apache Software Foundation Licensed under the
<a href="https://www.apache.org/licenses/LICENSE-2.0.html">Apache License,
Version 2.0</a>
- </p>
- <p>
-Apache Hive, Hive, Apache, the Apache feather logo, and the Apache Hive
project logo are trademarks of The Apache Software Foundation.
-Other names appearing on the site may be trademarks of their respective owners.
- </p>
- </div>
-</div>
-
- </body>
-</html>
diff --git a/output/version_control.html b/output/version_control.html
deleted file mode 100644
index 3217c65..0000000
--- a/output/version_control.html
+++ /dev/null
@@ -1,134 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
-<html>
-
- <head>
- <meta charset="UTF-8"/>
- <meta name="generator" content="Jekyll v3.8.7"/>
- <title>Version Control</title>
- <link href="/favicon.ico" rel="icon" type="image/x-icon"/>
- <link href="/css/hive.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript">
-
- var _gaq = _gaq || [];
- _gaq.push(['_setAccount', 'UA-7453027-1']);
- _gaq.push(['_setDomainName', 'apache.org']);
- _gaq.push(['_trackPageview']);
-
- (function() {
- var ga = document.createElement('script'); ga.type = 'text/javascript';
ga.async = true;
- ga.src = ('https:' == document.location.protocol ? 'https://ssl' :
'http://www') + '.google-analytics.com/ga.js';
- var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
- })();
-
- </script>
-</head>
-
-
- <body>
- <div id="banner">
- <div id="bannerleft"><a alt="Apache Hive" href="/index.html">
- <img id="logo" alt="Apache Hive" src="/images/hive_logo_medium.jpg"/></a>
- </div>
-</div>
-
-
- <div id="clear"/>
- <div id="sidenav">
-<h1>General</h1>
-<ul>
-<li><a href="/index.html">Home</a></li>
-<li><a href="/downloads.html">Downloads</a></li>
-<li><a href="https://www.apache.org/licenses/LICENSE-2.0.html">License</a></li>
-<li><a href="/privacy_policy.html">Privacy Policy</a></li>
-</ul>
-
-<h1>Documentation</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//LanguageManual">Language
Manual</a></li>
-<li><a href="/javadoc.html">Javadoc</a></li>
-<li><a href="https://cwiki.apache.org/confluence/display/Hive/">Wiki</a></li>
-</ul>
-
-<h1>Community</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//BecomingACommitter">Becoming
a Committer</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//How+to+edit+the+website">Edit
Website</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HowToContribute">How to
Contribute</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Home#Home-ResourcesforContributors">Resources
for contributors</a></li>
-<li><a href="/issue_tracking.html">Issue Tracking</a></li>
-<li><a href="/mailing_lists.html">Mailing Lists</a></li>
-<li><a href="/people.html">People</a></li>
-</ul>
-
-<h1>Development</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//DesignDocs">Design
Docs</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HiveDeveloperFAQ">FAQ</a></li>
-<li><a href="https://issues.apache.org/jira/browse/HIVE">Hive JIRA</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Hive+PreCommit+Patch+Testing">Precommit
Patch Testing</a></li>
-<li><a href="/version_control.html">Version Control</a></li>
-</ul>
-
-<h1>PMC</h1>
-<ul>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//Bylaws">ByLaws</a></li>
-<li><a
href="https://cwiki.apache.org/confluence/display/Hive//HowToRelease">How to
Release</a></li>
-</ul>
-
-<h1>ASF</h1>
-<ul>
-<li><a
href="https://www.apache.org//foundation/contributing.html">Donations</a></li>
-<li><a
href="https://www.apache.org//foundation/sponsorship.html">Sponsorship</a></li>
-<li><a href="https://www.apache.org//foundation/thanks.html">Thanks</a></li>
-<li><a href="https://www.apache.org/">Website</a></li>
-</ul>
-</div>
-
-
- <div id="contenta">
- <h1>Version Control</h1>
- <!---
- 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. -->
-
-<p>The Hive source code resides in Apache’s <a
href="https://github.com/apache/hive">Hive GitHub</a></p>
-
-<ul>
- <li>Anonymous clone via http - <a
href="https://github.com/apache/hive.git">https://github.com/apache/hive.git</a></li>
- <li>Authenticated clone via ssh - [email protected]:apache/hive.git</li>
- <li>Instructions: <a href="https://git.apache.org/">Apache committer git
instructions</a></li>
-</ul>
-
- </div>
-
- <div id="footera">
- <div id="poweredby">
- <p><img src="/images/feather_small.gif"/></p>
- </div>
- <div id="copyrighta">
- <p>
-Copyright © 2011-2014 The Apache Software Foundation Licensed under the
<a href="https://www.apache.org/licenses/LICENSE-2.0.html">Apache License,
Version 2.0</a>
- </p>
- <p>
-Apache Hive, Hive, Apache, the Apache feather logo, and the Apache Hive
project logo are trademarks of The Apache Software Foundation.
-Other names appearing on the site may be trademarks of their respective owners.
- </p>
- </div>
-</div>
-
- </body>
-</html>
diff --git a/people.md b/people.md
deleted file mode 100644
index 20424e2..0000000
--- a/people.md
+++ /dev/null
@@ -1,156 +0,0 @@
----
-title: People
-layout: default
----
-<!---
- 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. -->
-
-<style type="text/css">
- table {
- width:100%;
- }
- table, td {
- border-collapse: collapse;
- border-top: 1px solid #ccc;
- border-bottom: 1px solid #ccc;
- padding: 5px;
- }
- th {
- style: font-weight:bold;
- text-align: left;
- background: #FFFFFF;
- }
- tr:nth-child(2n){
- background: #FFF68F;
- }
- tr:nth-child(2n+1) {
- background: #FFFFFF;
- }
-</style>
-
-Apache Hive is a community developed project. The list below is a partial
-list of contributors to the project, for a complete list you would have to look
-at all contributors to our issue tracker, mailing list and version control.
-
-## Hive PMC
-
-| Apache username | name | organization
| role |
-| --------------- + ------------------------ +
------------------------------------------------- + ---- |
-| aihuaxu | Aihua Xu | <a
href="http://cloudera.com/">Cloudera</a> | |
-| athusoo | Ashish Thusoo | <a
href="http://qubole.com/">Qubole</a> | |
-| brock | Brock Noland | <a
href="http://streamsets.com/">StreamSets</a> | |
-| ctang | Chaoyu Tang | <a
href="http://cloudera.com/">Cloudera</a> | |
-| cws | Carl Steinbach | <a
href="http://linkedin.com">LinkedIn</a> | |
-| daijy | Daniel Dai | <a
href="http://hortonworks.com/">Hortonworks</a> | |
-| ecapriolo | Edward Capriolo | <a
href="http://hortonworks.com/">Hortonworks</a> | |
-| gates | Alan Gates | <a
href="http://hortonworks.com/">Hortonworks</a> | |
-| gopalv | Gopal Vijayaraghavan | <a
href="http://hortonworks.com/">Hortonworks</a> | |
-| gunther | Gunther Hagleitner | <a
href="http://hortonworks.com/">Hortonworks</a> | |
-| hashutosh | Ashutosh Chauhan | <a
href="http://hortonworks.com/">Hortonworks</a> | VP |
-| heyongqiang | Yongqiang He | <a
href="http://dropbox.com/">Dropbox</a> | |
-| jcamacho | Jesus Camacho Rodriguez | <a
href="http://hortonworks.com/">Hortonworks</a> | |
-| jdere | Jason Dere | <a
href="http://hortonworks.com/">Hortonworks</a> | |
-| jpullokk | Laljo John Pullokkaran | <a
href="http://hortonworks.com/">Hortonworks</a> | |
-| jssarma | Joydeep Sensarma | <a
href="http://qubole.com/">Qubole</a> | |
-| jxiang | Jimmy Xiang | <a
href="http://cloudera.com/">Cloudera</a> | |
-| kevinwilfong | Kevin Wilfong | <a
href="http://facebook.com/">Facebook</a> | |
-| leftyl | Lefty Leverenz | <a
href="https://www.ibm.com/">IBM</a> | |
-| namit | Namit Jain | <a
href="http://www.nutanix.com/">Nutanix</a> | |
-| navis | Navis Ryu | <a
href="http://nexr.com/">NexR</a> | |
-| nzhang | Ning Zhang | <a
href="http://facebook.com/">Facebook</a> | |
-| omalley | Owen O'Malley | <a
href="http://linkedin.com/">LinkedIn</a> | |
-| prasadm | Prasad Mujumdar | <a
href="http://cloudera.com/">Cloudera</a> | |
-| prasanth_j | Prasanth Jayachandran | <a
href="http://hortonworks.com/">Hortonworks</a> | |
-| pvary | Peter Vary | <a
href="http://cloudera.com/">Cloudera</a> | |
-| pxiong | Pengcheng Xiong | <a
href="http://hortonworks.com/">Hortonworks</a> | |
-| rhbutani | Harish Butani | <a
href="http://hortonworks.com/">Hortonworks</a> | |
-| rmurthy | Raghotham Murthy | <a
href="http://facebook.com/">Facebook</a> | |
-| sershe | Sergey Shelukhin | <a
href="http://hortonworks.com/">Hortonworks</a> | |
-| spena | Sergio Peña | <a
href="http://cloudera.com/">Cloudera</a> | |
-| sunchao | Chao Sun | <a
href="http://cloudera.com/">Cloudera</a> | |
-| szehon | Szehon Ho | <a
href="http://cloudera.com/">Cloudera</a> | |
-| thejas | Thejas Nair | <a
href="http://hortonworks.com/">Hortonworks</a> | |
-| vgumashta | Vaibhav Gumashta | <a
href="http://hortonworks.com/">Hortonworks</a> | |
-| vikram | Vikram Dixit | <a
href="http://hortonworks.com/">Hortonworks</a> | |
-| xuefu | Xuefu Zhang | <a
href="https://www.alibaba.com/">Alibaba Inc</a> | |
-| ychena | Yongzhi Chen | <a
href="http://cloudera.com/">Cloudera</a> | |
-
-## Hive Committers
-
-| Apache username | name | organization
|
-| --------------- + ------------------------ +
-------------------------------------- |
-| amareshwari | Amareshwari Sriramadasu | <a
href="http://www.inmobi.com/">InMobi</a> |
-| apivovarov | Alexander Pivovarov | <a
href="http://fostercitylab.crabdance.com/">Foster City Hadoop Lab LLC</a> |
-| asherman | Andrew Sherman | <a
href="http://cloudera.com/">Cloudera</a> |
-| bharos92 | Bharath Krishna | <a
href="http://cloudera.com/">Cloudera</a> |
-| chengxiang | Chengxiang Li | <a
href="http://intel.com/">Intel</a> |
-| chinnaraol | Chinna Rao Lalam | <a
href="http://intel.com/">Intel</a> |
-| cdrome | Chris Drome | <a
href="https://www.oath.com/">Oath</a> |
-| djaiswal | Deepak Jaiswal | <a
href="http://hortonworks.com/">Hortonworks</a> |
-| dmtolpeko | Dmitry Tolpeko | <a
href="http://www.epam.com/">EPAM</a> |
-| dongc | Dong Chen | <a
href="http://intel.com/">Intel</a> |
-| ehans | Eric Hanson | <a
href="http://microsoft.com">Microsoft</a> |
-| gangtimliu | Gang Tim Liu | <a
href="http://facebook.com/">Facebook</a> |
-| harisankar | Hari Sankar Sivarama Subramaniyan | <a
href="http://hortonworks.com/">Hortonworks</a> |
-| janaki | Janaki Lahorani | <a
href="http://cloudera.com/">Cloudera</a> |
-| jitendra | Jitendra Pandey | <a
href="http://hortonworks.com/">Hortonworks</a> |
-| kgyrtkirk | Zoltan Haindrich | <a
href="http://hortonworks.com/">Hortonworks</a> |
-| kuczoram | Marta Kuczora | <a
href="http://cloudera.com/">Cloudera</a> |
-| larsfrancke | Lars Francke | <a
href="http://lars-francke.de/en/">Freelancer</a> |
-| mithun | Mithun Radhakrishnan | <a
href="https://www.oath.com/">Oath</a> |
-| mmccline | Matt McCline | <a
href="http://hortonworks.com/">Hortonworks</a> |
-| mohits | Mohit Sabharwal | <a
href="http://cloudera.com/">Cloudera</a> |
-| ngangam | Naveen Gangam | <a
href="http://cloudera.com/">Cloudera</a> |
-| rbalamohan | Rajesh Balamohan | <a
href="http://hortonworks.com/">Hortonworks</a> |
-| remusr | Remus Rusanu | <a
href="http://hortonworks.com/">Hortonworks</a> |
-| sankarh | Sankar Hariappan | <a
href="http://hortonworks.com/">Hortonworks</a> |
-| sdong | Siying Dong | <a
href="http://facebook.com/">Facebook</a> |
-| sseth | Siddharth Seth | <a
href="http://hortonworks.com/">Hortonworks</a> |
-| szita | Adam Szita | <a
href="http://cloudera.com/">Cloudera</a> |
-| tchoi | Teddy Choi | <a
href="http://hortonworks.com/">Hortonworks</a> |
-| vgarg | Vineet Garg | <a
href="http://hortonworks.com/">Hortonworks</a> |
-| weiz | Wei Zheng | <a
href="http://hortonworks.com/">Hortonworks</a> |
-| xuf | Ferdinand Xu | <a
href="http://intel.com/">Intel</a> |
-| yhuai | Yin Huai | <a
href="http://databricks.com/">Databricks</a> |
-
-PMC members are also Hive committers.
-
-## Catalog Committers
-
-| Apache username | name | organization
|
-| --------------- + ------------------------ +
-------------------------------------- |
-| toffer | Francis Christopher Liu | <a
href="http://yahoo.com/">Yahoo!</a> |
-| avandana | Vandana Ayyalasomayajula | <a
href="http://yahoo.com/">Yahoo!</a> |
-| travis | Travis Crawford | <a
href="http://twitter.com">Twitter</a> |
-| mithun | Mithun Radhakrishnan | <a
href="https://www.oath.com/">Oath</a> |
-
-## Contributors
-
-A list of Hive contributors and their contributions is available from
-<a
href="https://issues.apache.org/jira/secure/ConfigureReport.jspa?projectOrFilterId=project-12310843&statistictype=assignees&selectedProjectId=12310843&reportKey=com.atlassian.jira.plugin.system.reports%3Apie-report&Next=Next">Jira</a>.
-
-## Emeritus Hive PMC Members
-
- * Dhruba Borthakur
- * Prasad Chakka
- * Johan Oskarsson
- * Zheng Shao
- * John Sichi
- * Sushanth Sowmyan
- * Paul Yang
-
diff --git a/privacy_policy.md b/privacy_policy.md
deleted file mode 100644
index cb857ce..0000000
--- a/privacy_policy.md
+++ /dev/null
@@ -1,48 +0,0 @@
----
-title: Privacy Policy
-layout: default
----
-
-<!---
- 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. -->
-
-Information about your use of this website is collected using server
-access logs and a tracking cookie. The collected information consists of
-the following:
-
- 1. The IP address from which you access the website;
- 2. The type of browser and operating system you use to access our site;
- 3. The date and time you access our site;
- 4. The pages you visit; and
- 5. The addresses of pages from where you followed a link to our site.
-
-Part of this information is gathered using a tracking cookie set by the
-<a href="http://www.google.com/analytics/">Google Analytics</a>
-service and handled by Google as
-described in their <a href="http://www.google.com/privacy.html">privacy
policy</a>.
-See your browser documentation for instructions on how to disable the
-cookie if you prefer not to share this data with Google.
-
-We use the gathered information to help us make our site more useful to
-visitors and to better understand how and when our site is used. We do not
-track or collect personally identifiable information or associate gathered
-data with any personally identifying information from other sources.
-
-By using this website, you consent to the collection of this data in
-the manner and for the purpose described above.
-
diff --git a/version_control.md b/version_control.md
deleted file mode 100644
index f4da704..0000000
--- a/version_control.md
+++ /dev/null
@@ -1,27 +0,0 @@
----
-title: Version Control
-layout: default
----
-<!---
- 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. -->
-
-The Hive source code resides in Apache's [Hive GitHub]({{ site.repository }})
-
- * Anonymous clone via http - <https://github.com/apache/hive.git>
- * Authenticated clone via ssh - [email protected]:apache/hive.git
- * Instructions: [Apache committer git instructions](https://git.apache.org/)