You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by st...@apache.org on 2021/02/10 09:12:16 UTC

svn commit: r1886380 - in /phoenix/site: publish/download.html publish/js/download.js publish/language/datatypes.html publish/language/functions.html publish/language/index.html source/src/site/markdown/download.md source/src/site/resources/js/download.js

Author: stoty
Date: Wed Feb 10 09:12:16 2021
New Revision: 1886380

URL: http://svn.apache.org/viewvc?rev=1886380&view=rev
Log:
Add 5.1 release to downloads

Modified:
    phoenix/site/publish/download.html
    phoenix/site/publish/js/download.js
    phoenix/site/publish/language/datatypes.html
    phoenix/site/publish/language/functions.html
    phoenix/site/publish/language/index.html
    phoenix/site/source/src/site/markdown/download.md
    phoenix/site/source/src/site/resources/js/download.js

Modified: phoenix/site/publish/download.html
URL: http://svn.apache.org/viewvc/phoenix/site/publish/download.html?rev=1886380&r1=1886379&r2=1886380&view=diff
==============================================================================
--- phoenix/site/publish/download.html (original)
+++ phoenix/site/publish/download.html Wed Feb 10 09:12:16 2021
@@ -1,7 +1,7 @@
 
 <!DOCTYPE html>
 <!--
- Generated by Apache Maven Doxia at 2021-02-01
+ Generated by Apache Maven Doxia at 2021-02-10
  Rendered using Reflow Maven Skin 1.1.0 (http://andriusvelykis.github.io/reflow-maven-skin)
 -->
 <html  xml:lang="en" lang="en">
@@ -169,7 +169,8 @@
  <h1>Phoenix Downloads</h1>
 </div> 
 <p>The below table lists mirrored release artifacts and their associated hashes and signatures available ONLY at apache.org. The keys used to sign releases can be found in our published <a class="externalLink" href="https://www.apache.org/dist/phoenix/KEYS">KEYS</a> file. See our installation instructions <a href="installation.html">here</a>, our release notes <a href="release_notes.html">here</a>, and a list of fixes and new features <a class="externalLink" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12334393&amp;projectId=12315120">here</a>. Follow <a class="externalLink" href="https://www.apache.org/dyn/closer.cgi#verify">Verify the Integrity of the Files</a> for how to verify your mirrored downloads.</p> 
-<p>Current release 4.15.0 can run on Apache HBase 1.3, 1.4 and 1.5. CDH HBase 5.11, 5.12, 5.13 and 5.14 is supported by 4.14.0. Apache HBase 2.0 is supported by 5.0.0. Please follow the appropriate link depending on your HBase version. </p> 
+<p>Current release 4.15.0 can run on Apache HBase 1.3, 1.4 and 1.5.<br />CDH HBase 5.11, 5.12, 5.13 and 5.14 is supported by 4.14.0.<br />Apache HBase 2.0 is supported by 5.0.0.<br />Apache HBase 2.1, 2.2, 2.3, 2.4 is supported by 5.1.0. </p> 
+<p>Please follow the appropriate link depending on your HBase version. </p> 
 <table border="0" class="bodyTable table table-striped table-hover" id="core-releases"> 
  <thead> 
   <tr class="a"> 
@@ -229,6 +230,7 @@
 <script src="/js/download.js"></script> 
 <script>
 //<![CDATA[
+addRelease2('5.1.0','10/feb/2021','2.1','2.2','2.3','2.4' );
 addRelease('5.0.0-HBase-2.0','04/jul/2018');
 addRelease('4.15.0-HBase-1.5','20/dec/2019');
 addRelease('4.15.0-HBase-1.4','20/dec/2019');

Modified: phoenix/site/publish/js/download.js
URL: http://svn.apache.org/viewvc/phoenix/site/publish/js/download.js?rev=1886380&r1=1886379&r2=1886380&view=diff
==============================================================================
--- phoenix/site/publish/js/download.js (original)
+++ phoenix/site/publish/js/download.js Wed Feb 10 09:12:16 2021
@@ -29,6 +29,36 @@ function addRelease(version, date) {
     document.getElementById('core-releases').appendChild(tr);
 }
 
+function addRelease2(version, date) {
+    var tr = document.createElement('tr');
+    var parcelsHtml = version.includes('-cdh') ? parcelFolderHtml(version) : ''
+    var phoenixBinariesHtml = '';
+    for (var i=2; i < arguments.length; i++) {
+        phoenixBinariesHtml += phoenixBinaryHtml(version, arguments[i]);
+    }
+    tr.innerHTML =
+        '<td>' + version + '</td>' +
+        '<td>' + date + '</td>' +
+        '<td><ul><li>' +
+          '<a href="' + dynUrl + 'phoenix-' + version + '/phoenix-' + version + '-src.tar.gz">src</a> ' +
+          '&nbsp;&nbsp;' +
+          '[ <a href="' + apacheUrlHttps + 'phoenix-' + version + '/phoenix-' + version + '-src.tar.gz.sha512">sha512</a>' +
+          ' | <a href="' + apacheUrlHttps + 'phoenix-' + version + '/phoenix-' + version + '-src.tar.gz.asc">asc</a> ]' +
+        '</li>' + phoenixBinariesHtml +
+        '</ul></td>';
+    document.getElementById('core-releases').appendChild(tr);
+}
+
+function phoenixBinaryHtml(version, hbaseVersion) {
+  return '<li>' +
+          '<a href="' + dynUrl + 'phoenix-' + version + '/phoenix-hbase-'+hbaseVersion + '-' + version + '-bin.tar.gz">hbase-'+hbaseVersion+'-bin</a> ' +
+          '&nbsp;&nbsp;' +
+          '[ <a href="' + apacheUrlHttps + '/phoenix-hbase-'+hbaseVersion + '-' + version + '-bin.tar.gz.sha512">sha512</a>' +
+          ' | <a href="' + apacheUrlHttps + '/phoenix-hbase-'+hbaseVersion + '-' + version + '-bin.tar.gz.asc">asc</a> ]' +
+        '</li>';
+}
+
+
 function addPhoenixdbRelease(version, date) {
     var tr = document.createElement('tr');
     tr.innerHTML =

Modified: phoenix/site/publish/language/datatypes.html
URL: http://svn.apache.org/viewvc/phoenix/site/publish/language/datatypes.html?rev=1886380&r1=1886379&r2=1886380&view=diff
==============================================================================
--- phoenix/site/publish/language/datatypes.html (original)
+++ phoenix/site/publish/language/datatypes.html Wed Feb 10 09:12:16 2021
@@ -1,7 +1,7 @@
 
 <!DOCTYPE html>
 <!--
- Generated by Apache Maven Doxia at 2021-02-05
+ Generated by Apache Maven Doxia at 2021-02-10
  Rendered using Reflow Maven Skin 1.1.0 (http://andriusvelykis.github.io/reflow-maven-skin)
 -->
 <html  xml:lang="en" lang="en">

Modified: phoenix/site/publish/language/functions.html
URL: http://svn.apache.org/viewvc/phoenix/site/publish/language/functions.html?rev=1886380&r1=1886379&r2=1886380&view=diff
==============================================================================
--- phoenix/site/publish/language/functions.html (original)
+++ phoenix/site/publish/language/functions.html Wed Feb 10 09:12:16 2021
@@ -1,7 +1,7 @@
 
 <!DOCTYPE html>
 <!--
- Generated by Apache Maven Doxia at 2021-02-05
+ Generated by Apache Maven Doxia at 2021-02-10
  Rendered using Reflow Maven Skin 1.1.0 (http://andriusvelykis.github.io/reflow-maven-skin)
 -->
 <html  xml:lang="en" lang="en">

Modified: phoenix/site/publish/language/index.html
URL: http://svn.apache.org/viewvc/phoenix/site/publish/language/index.html?rev=1886380&r1=1886379&r2=1886380&view=diff
==============================================================================
--- phoenix/site/publish/language/index.html (original)
+++ phoenix/site/publish/language/index.html Wed Feb 10 09:12:16 2021
@@ -1,7 +1,7 @@
 
 <!DOCTYPE html>
 <!--
- Generated by Apache Maven Doxia at 2021-02-05
+ Generated by Apache Maven Doxia at 2021-02-10
  Rendered using Reflow Maven Skin 1.1.0 (http://andriusvelykis.github.io/reflow-maven-skin)
 -->
 <html  xml:lang="en" lang="en">

Modified: phoenix/site/source/src/site/markdown/download.md
URL: http://svn.apache.org/viewvc/phoenix/site/source/src/site/markdown/download.md?rev=1886380&r1=1886379&r2=1886380&view=diff
==============================================================================
--- phoenix/site/source/src/site/markdown/download.md (original)
+++ phoenix/site/source/src/site/markdown/download.md Wed Feb 10 09:12:16 2021
@@ -6,7 +6,12 @@ See our installation instructions [here]
 and a list of fixes and new features [here](https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12334393&projectId=12315120).
 Follow [Verify the Integrity of the Files](https://www.apache.org/dyn/closer.cgi#verify) for how to verify your mirrored downloads.
 
-Current release 4.15.0 can run on Apache HBase 1.3, 1.4 and 1.5.  CDH HBase 5.11, 5.12, 5.13 and 5.14 is supported by 4.14.0. Apache HBase 2.0 is supported by 5.0.0. Please follow the appropriate link depending on your HBase version. 
+Current release 4.15.0 can run on Apache HBase 1.3, 1.4 and 1.5.  
+CDH HBase 5.11, 5.12, 5.13 and 5.14 is supported by 4.14.0.  
+Apache HBase 2.0 is supported by 5.0.0.  
+Apache HBase 2.1, 2.2, 2.3, 2.4 is supported by 5.1.0.  
+
+Please follow the appropriate link depending on your HBase version. 
  
 
 <table id="core-releases">
@@ -54,6 +59,7 @@ If you are looking for an old release th
 <script src="/js/download.js"></script> 
 <script>
 //<![CDATA[
+addRelease2('5.1.0','10/feb/2021','2.1','2.2','2.3','2.4' );
 addRelease('5.0.0-HBase-2.0','04/jul/2018');
 addRelease('4.15.0-HBase-1.5','20/dec/2019');
 addRelease('4.15.0-HBase-1.4','20/dec/2019');

Modified: phoenix/site/source/src/site/resources/js/download.js
URL: http://svn.apache.org/viewvc/phoenix/site/source/src/site/resources/js/download.js?rev=1886380&r1=1886379&r2=1886380&view=diff
==============================================================================
--- phoenix/site/source/src/site/resources/js/download.js (original)
+++ phoenix/site/source/src/site/resources/js/download.js Wed Feb 10 09:12:16 2021
@@ -29,6 +29,36 @@ function addRelease(version, date) {
     document.getElementById('core-releases').appendChild(tr);
 }
 
+function addRelease2(version, date) {
+    var tr = document.createElement('tr');
+    var parcelsHtml = version.includes('-cdh') ? parcelFolderHtml(version) : ''
+    var phoenixBinariesHtml = '';
+    for (var i=2; i < arguments.length; i++) {
+        phoenixBinariesHtml += phoenixBinaryHtml(version, arguments[i]);
+    }
+    tr.innerHTML =
+        '<td>' + version + '</td>' +
+        '<td>' + date + '</td>' +
+        '<td><ul><li>' +
+          '<a href="' + dynUrl + 'phoenix-' + version + '/phoenix-' + version + '-src.tar.gz">src</a> ' +
+          '&nbsp;&nbsp;' +
+          '[ <a href="' + apacheUrlHttps + 'phoenix-' + version + '/phoenix-' + version + '-src.tar.gz.sha512">sha512</a>' +
+          ' | <a href="' + apacheUrlHttps + 'phoenix-' + version + '/phoenix-' + version + '-src.tar.gz.asc">asc</a> ]' +
+        '</li>' + phoenixBinariesHtml +
+        '</ul></td>';
+    document.getElementById('core-releases').appendChild(tr);
+}
+
+function phoenixBinaryHtml(version, hbaseVersion) {
+  return '<li>' +
+          '<a href="' + dynUrl + 'phoenix-' + version + '/phoenix-hbase-'+hbaseVersion + '-' + version + '-bin.tar.gz">hbase-'+hbaseVersion+'-bin</a> ' +
+          '&nbsp;&nbsp;' +
+          '[ <a href="' + apacheUrlHttps + '/phoenix-hbase-'+hbaseVersion + '-' + version + '-bin.tar.gz.sha512">sha512</a>' +
+          ' | <a href="' + apacheUrlHttps + '/phoenix-hbase-'+hbaseVersion + '-' + version + '-bin.tar.gz.asc">asc</a> ]' +
+        '</li>';
+}
+
+
 function addPhoenixdbRelease(version, date) {
     var tr = document.createElement('tr');
     tr.innerHTML =