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 2020/12/04 04:58:04 UTC

svn commit: r1884083 - 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: Fri Dec  4 04:58:04 2020
New Revision: 1884083

URL: http://svn.apache.org/viewvc?rev=1884083&view=rev
Log:
Add Phoenix Tephra 0.16.0 to download page
Remove Phoenix 5.0.0alpha from download page

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=1884083&r1=1884082&r2=1884083&view=diff
==============================================================================
--- phoenix/site/publish/download.html (original)
+++ phoenix/site/publish/download.html Fri Dec  4 04:58:04 2020
@@ -1,7 +1,7 @@
 
 <!DOCTYPE html>
 <!--
- Generated by Apache Maven Doxia at 2020-11-23
+ Generated by Apache Maven Doxia at 2020-12-04
  Rendered using Reflow Maven Skin 1.1.0 (http://andriusvelykis.github.io/reflow-maven-skin)
 -->
 <html  xml:lang="en" lang="en">
@@ -203,6 +203,17 @@
  <tbody> 
  </tbody> 
 </table> 
+<table border="0" class="bodyTable table table-striped table-hover" id="phoenix-tephra-releases"> 
+ <thead> 
+  <tr class="a"> 
+   <th width="180">Phoenix Tephra Version</th> 
+   <th width="100">Release Date</th> 
+   <th>Download</th> 
+  </tr> 
+ </thead> 
+ <tbody> 
+ </tbody> 
+</table> 
 <table border="0" class="bodyTable table table-striped table-hover" id="python-phoenixdb-releases"> 
  <thead> 
   <tr class="a"> 
@@ -228,10 +239,10 @@ addRelease('4.14.0-cdh5.14.2','09/jun/20
 addRelease('4.14.0-cdh5.13.2','09/jun/2018');
 addRelease('4.14.0-cdh5.12.2','09/jun/2018');
 addRelease('4.14.0-cdh5.11.2','09/jun/2018');
-addRelease('5.0.0-alpha-HBase-2.0','09/feb/2018');
 addPhoenixdbRelease('1.0.0','18/sep/2020');
 addPhoenixThirdpartyRelease('1.0.0','26/okt/2020');
 addPhoenixOmidRelease('1.0.2','23/nov/2020');
+addPhoenixTephraRelease('0.16.0','04/dec/2020');
 
 //]]>
 </script>

Modified: phoenix/site/publish/js/download.js
URL: http://svn.apache.org/viewvc/phoenix/site/publish/js/download.js?rev=1884083&r1=1884082&r2=1884083&view=diff
==============================================================================
--- phoenix/site/publish/js/download.js (original)
+++ phoenix/site/publish/js/download.js Fri Dec  4 04:58:04 2020
@@ -73,3 +73,18 @@ function addPhoenixOmidRelease(version,
         '</ul></td>';
     document.getElementById('phoenix-omid-releases').appendChild(tr);
 }
+
+function addPhoenixTephraRelease(version, date) {
+    var tr = document.createElement('tr');
+    tr.innerHTML =
+        '<td>' + version + '</td>' +
+        '<td>' + date + '</td>' +
+        '<td><ul><li>' +
+          '<a href="' + dynUrl + 'phoenix-tephra-' + version + '/phoenix-tephra-' + version + '-src.tar.gz">src</a> ' +
+          '&nbsp;&nbsp;' +
+          '[ <a href="' + apacheUrlHttps + 'phoenix-tephra-' + version + '/phoenix-tephra-' + version + '-src.tar.gz.sha512">sha512</a>' +
+          ' | <a href="' + apacheUrlHttps + 'phoenix-tephra-' + version + '/phoenix-tephra-' + version + '-src.tar.gz.asc">asc</a> ]' +
+        '</li>' +
+        '</ul></td>';
+    document.getElementById('phoenix-tephra-releases').appendChild(tr);
+}

Modified: phoenix/site/publish/language/datatypes.html
URL: http://svn.apache.org/viewvc/phoenix/site/publish/language/datatypes.html?rev=1884083&r1=1884082&r2=1884083&view=diff
==============================================================================
--- phoenix/site/publish/language/datatypes.html (original)
+++ phoenix/site/publish/language/datatypes.html Fri Dec  4 04:58:04 2020
@@ -1,7 +1,7 @@
 
 <!DOCTYPE html>
 <!--
- Generated by Apache Maven Doxia at 2020-11-23
+ Generated by Apache Maven Doxia at 2020-12-04
  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=1884083&r1=1884082&r2=1884083&view=diff
==============================================================================
--- phoenix/site/publish/language/functions.html (original)
+++ phoenix/site/publish/language/functions.html Fri Dec  4 04:58:04 2020
@@ -1,7 +1,7 @@
 
 <!DOCTYPE html>
 <!--
- Generated by Apache Maven Doxia at 2020-11-23
+ Generated by Apache Maven Doxia at 2020-12-04
  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=1884083&r1=1884082&r2=1884083&view=diff
==============================================================================
--- phoenix/site/publish/language/index.html (original)
+++ phoenix/site/publish/language/index.html Fri Dec  4 04:58:04 2020
@@ -1,7 +1,7 @@
 
 <!DOCTYPE html>
 <!--
- Generated by Apache Maven Doxia at 2020-11-23
+ Generated by Apache Maven Doxia at 2020-12-04
  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=1884083&r1=1884082&r2=1884083&view=diff
==============================================================================
--- phoenix/site/source/src/site/markdown/download.md (original)
+++ phoenix/site/source/src/site/markdown/download.md Fri Dec  4 04:58:04 2020
@@ -33,6 +33,14 @@ Current release 4.15.0 can run on Apache
 </tr>
 </table>
 
+<table id="phoenix-tephra-releases">
+<tr>
+    <th width='180'>Phoenix Tephra Version</th>
+    <th width='100'>Release Date</th>
+    <th>Download</th>
+</tr>
+</table>
+
 <table id="python-phoenixdb-releases">
 <tr>
     <th width='180'>Python Driver Version</th>
@@ -56,10 +64,10 @@ addRelease('4.14.0-cdh5.14.2','09/jun/20
 addRelease('4.14.0-cdh5.13.2','09/jun/2018');
 addRelease('4.14.0-cdh5.12.2','09/jun/2018');
 addRelease('4.14.0-cdh5.11.2','09/jun/2018');
-addRelease('5.0.0-alpha-HBase-2.0','09/feb/2018');
 addPhoenixdbRelease('1.0.0','18/sep/2020');
 addPhoenixThirdpartyRelease('1.0.0','26/okt/2020');
 addPhoenixOmidRelease('1.0.2','23/nov/2020');
+addPhoenixTephraRelease('0.16.0','04/dec/2020');
 
 //]]>
 </script>

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=1884083&r1=1884082&r2=1884083&view=diff
==============================================================================
--- phoenix/site/source/src/site/resources/js/download.js (original)
+++ phoenix/site/source/src/site/resources/js/download.js Fri Dec  4 04:58:04 2020
@@ -73,3 +73,18 @@ function addPhoenixOmidRelease(version,
         '</ul></td>';
     document.getElementById('phoenix-omid-releases').appendChild(tr);
 }
+
+function addPhoenixTephraRelease(version, date) {
+    var tr = document.createElement('tr');
+    tr.innerHTML =
+        '<td>' + version + '</td>' +
+        '<td>' + date + '</td>' +
+        '<td><ul><li>' +
+          '<a href="' + dynUrl + 'phoenix-tephra-' + version + '/phoenix-tephra-' + version + '-src.tar.gz">src</a> ' +
+          '&nbsp;&nbsp;' +
+          '[ <a href="' + apacheUrlHttps + 'phoenix-tephra-' + version + '/phoenix-tephra-' + version + '-src.tar.gz.sha512">sha512</a>' +
+          ' | <a href="' + apacheUrlHttps + 'phoenix-tephra-' + version + '/phoenix-tephra-' + version + '-src.tar.gz.asc">asc</a> ]' +
+        '</li>' +
+        '</ul></td>';
+    document.getElementById('phoenix-tephra-releases').appendChild(tr);
+}