Author: stoty
Date: Tue Apr  5 16:56:21 2022
New Revision: 1899588

URL: http://svn.apache.org/viewvc?rev=1899588&view=rev
Log:
PHOENIX-6536 Add links to the changelogs and release notes for recent releases 
to the website

patch provided by Abhishek Kothalikar

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=1899588&r1=1899587&r2=1899588&view=diff
==============================================================================
--- phoenix/site/publish/download.html (original)
+++ phoenix/site/publish/download.html Tue Apr  5 16:56:21 2022
@@ -178,6 +178,8 @@
    <th width="180">Phoenix Version</th> 
    <th width="100">Release Date</th> 
    <th>Download</th> 
+   <th>Release Notes</th> 
+   <th>Changes</th> 
   </tr> 
  </thead> 
  <tbody> 
@@ -189,6 +191,8 @@
    <th width="180">Phoenix Thirdparty Version</th> 
    <th width="100">Release Date</th> 
    <th>Download</th> 
+   <th>Release Notes</th> 
+   <th>Changes</th> 
   </tr> 
  </thead> 
  <tbody> 
@@ -200,6 +204,8 @@
    <th width="180">Phoenix Omid Version</th> 
    <th width="100">Release Date</th> 
    <th>Download</th> 
+   <th>Release Notes</th> 
+   <th>Changes</th> 
   </tr> 
  </thead> 
  <tbody> 
@@ -211,6 +217,8 @@
    <th width="180">Phoenix Tephra Version</th> 
    <th width="100">Release Date</th> 
    <th>Download</th> 
+   <th>Release Notes</th> 
+   <th>Changes</th> 
   </tr> 
  </thead> 
  <tbody> 
@@ -222,6 +230,8 @@
    <th width="180">Phoenix Query Server Version</th> 
    <th width="100">Release Date</th> 
    <th>Download</th> 
+   <th>Release Notes</th> 
+   <th>Changes</th> 
   </tr> 
  </thead> 
  <tbody> 

Modified: phoenix/site/publish/js/download.js
URL: 
http://svn.apache.org/viewvc/phoenix/site/publish/js/download.js?rev=1899588&r1=1899587&r2=1899588&view=diff
==============================================================================
--- phoenix/site/publish/js/download.js (original)
+++ phoenix/site/publish/js/download.js Tue Apr  5 16:56:21 2022
@@ -42,8 +42,14 @@ function addRelease2(version, date) {
           '&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>';
+        '</li>' + phoenixBinariesHtml + 
+        '</ul></td>' + 
+        '<td><ul><li>' + 
+           '<a href="' + apacheUrlHttps + 'phoenix-' + version + 
'/RELEASENOTES.md">Release Notes</a>' + 
+        '</li></ul></td>' +
+        '<td><ul><li>' + 
+           '<a href="' + apacheUrlHttps + 'phoenix-' + version + 
'/CHANGES.md">Changes</a>' + 
+        '</li></ul></td>';
     document.getElementById('core-releases').appendChild(tr);
 }
 
@@ -83,7 +89,13 @@ function addPhoenixThirdpartyRelease(ver
           '[ <a href="' + apacheUrlHttps + 'phoenix-thirdparty-' + version + 
'/phoenix-thirdparty-' + version + '-src.tar.gz.sha512">sha512</a>' +
           ' | <a href="' + apacheUrlHttps + 'phoenix-thirdparty-' + version + 
'/phoenix-thirdparty-' + version + '-src.tar.gz.asc">asc</a> ]' +
         '</li>' +
-        '</ul></td>';
+        '</ul></td>' + 
+        '<td><ul><li>' + 
+           '<a href="' + apacheUrlHttps + 'phoenix-thirdparty-' + version + 
'/RELEASENOTES.md">Release Notes</a>' + 
+        '</li></ul></td>' +
+        '<td><ul><li>' + 
+           '<a href="' + apacheUrlHttps + 'phoenix-thirdparty-' + version + 
'/CHANGES.md">Changes</a>' + 
+        '</li></ul></td>';
     document.getElementById('phoenix-thirdparty-releases').appendChild(tr);
 }
 
@@ -98,7 +110,13 @@ function addPhoenixOmidRelease(version,
           '[ <a href="' + apacheUrlHttps + 'phoenix-omid-' + version + 
'/phoenix-omid-' + version + '-src.tar.gz.sha512">sha512</a>' +
           ' | <a href="' + apacheUrlHttps + 'phoenix-omid-' + version + 
'/phoenix-omid-' + version + '-src.tar.gz.asc">asc</a> ]' +
         '</li>' +
-        '</ul></td>';
+        '</ul></td>' + 
+        '<td><ul><li>' + 
+           '<a href="' + apacheUrlHttps + 'phoenix-omid-' + version + 
'/RELEASENOTES.md">Release Notes</a>' + 
+        '</li></ul></td>' +
+        '<td><ul><li>' + 
+           '<a href="' + apacheUrlHttps + 'phoenix-omid-' + version + 
'/CHANGES.md">Changes</a>' + 
+        '</li></ul></td>';
     document.getElementById('phoenix-omid-releases').appendChild(tr);
 }
 
@@ -113,7 +131,13 @@ function addPhoenixTephraRelease(version
           '[ <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>';
+        '</ul></td>' + 
+        '<td><ul><li>' + 
+           '<a href="' + apacheUrlHttps + 'phoenix-tephra-' + version + 
'/RELEASENOTES.md">Release Notes</a>' + 
+        '</li></ul></td>' +
+        '<td><ul><li>' + 
+           '<a href="' + apacheUrlHttps + 'phoenix-tephra-' + version + 
'/CHANGES.md">Changes</a>' + 
+        '</li></ul></td>';
     document.getElementById('phoenix-tephra-releases').appendChild(tr);
 }
 
@@ -134,6 +158,12 @@ function addPhoenixQueryServerRelease(ve
           '[ <a href="' + apacheUrlHttps + 'phoenix-queryserver-' + version + 
'/phoenix-queryserver-' + version + '-src.tar.gz.sha512">sha512</a>' +
           ' | <a href="' + apacheUrlHttps + 'phoenix-queryserver-' + version + 
'/phoenix-queryserver-' + version + '-src.tar.gz.asc">asc</a> ]' +
         '</li>' +  parcelsHtml +
-        '</ul></td>';
+        '</ul></td>' + 
+        '<td><ul><li>' + 
+           '<a href="' + apacheUrlHttps + 'phoenix-queryserver-' + version + 
'/RELEASENOTES.md">Release Notes</a>' + 
+        '</li></ul></td>' +
+        '<td><ul><li>' + 
+           '<a href="' + apacheUrlHttps + 'phoenix-queryserver-' + version + 
'/CHANGES.md">Changes</a>' + 
+        '</li></ul></td>';
     document.getElementById('phoenix-queryserver-releases').appendChild(tr);
 }

Modified: phoenix/site/publish/language/datatypes.html
URL: 
http://svn.apache.org/viewvc/phoenix/site/publish/language/datatypes.html?rev=1899588&r1=1899587&r2=1899588&view=diff
==============================================================================
--- phoenix/site/publish/language/datatypes.html (original)
+++ phoenix/site/publish/language/datatypes.html Tue Apr  5 16:56:21 2022
@@ -1,7 +1,7 @@
 
 <!DOCTYPE html>
 <!--
- Generated by Apache Maven Doxia at 2022-03-31
+ Generated by Apache Maven Doxia at 2022-04-05
  Rendered using Reflow Maven Skin 1.1.0 
(http://andriusvelykis.github.io/reflow-maven-skin)
 -->
 <html  xml:lang="en" lang="en">
@@ -230,57 +230,57 @@ syntax-end -->
 <table class="notranslate index">
     <tr>
         <td class="index">
-
+            
                 <a href="#integer_type" >INTEGER Type</a><br />
-
+            
                 <a href="#unsigned_int_type" >UNSIGNED_INT Type</a><br />
-
+            
                 <a href="#bigint_type" >BIGINT Type</a><br />
-
+            
                 <a href="#unsigned_long_type" >UNSIGNED_LONG Type</a><br />
-
+            
                 <a href="#tinyint_type" >TINYINT Type</a><br />
-
+            
                 <a href="#unsigned_tinyint_type" >UNSIGNED_TINYINT Type</a><br 
/>
-
+            
                 <a href="#smallint_type" >SMALLINT Type</a><br />
-
+            
                 <a href="#unsigned_smallint_type" >UNSIGNED_SMALLINT 
Type</a><br />
-
+            
                 <a href="#float_type" >FLOAT Type</a><br />
                     </td><td class="index">
-
+            
                 <a href="#unsigned_float_type" >UNSIGNED_FLOAT Type</a><br />
-
+            
                 <a href="#double_type" >DOUBLE Type</a><br />
-
+            
                 <a href="#unsigned_double_type" >UNSIGNED_DOUBLE Type</a><br />
-
+            
                 <a href="#decimal_type" >DECIMAL Type</a><br />
-
+            
                 <a href="#boolean_type" >BOOLEAN Type</a><br />
-
+            
                 <a href="#time_type" >TIME Type</a><br />
-
+            
                 <a href="#date_type" >DATE Type</a><br />
-
+            
                 <a href="#timestamp_type" >TIMESTAMP Type</a><br />
-
+            
                 <a href="#unsigned_time_type" >UNSIGNED_TIME Type</a><br />
                     </td><td class="index">
-
+            
                 <a href="#unsigned_date_type" >UNSIGNED_DATE Type</a><br />
-
+            
                 <a href="#unsigned_timestamp_type" >UNSIGNED_TIMESTAMP 
Type</a><br />
-
+            
                 <a href="#varchar_type" >VARCHAR Type</a><br />
-
+            
                 <a href="#char_type" >CHAR Type</a><br />
-
+            
                 <a href="#binary_type" >BINARY Type</a><br />
-
+            
                 <a href="#varbinary_type" >VARBINARY Type</a><br />
-
+            
                 <a href="#array" >ARRAY</a><br />
                     </td>
     </tr>

Modified: phoenix/site/publish/language/functions.html
URL: 
http://svn.apache.org/viewvc/phoenix/site/publish/language/functions.html?rev=1899588&r1=1899587&r2=1899588&view=diff
==============================================================================
--- phoenix/site/publish/language/functions.html (original)
+++ phoenix/site/publish/language/functions.html Tue Apr  5 16:56:21 2022
@@ -1,7 +1,7 @@
 
 <!DOCTYPE html>
 <!--
- Generated by Apache Maven Doxia at 2022-03-31
+ Generated by Apache Maven Doxia at 2022-04-05
  Rendered using Reflow Maven Skin 1.1.0 
(http://andriusvelykis.github.io/reflow-maven-skin)
 -->
 <html  xml:lang="en" lang="en">
@@ -212,39 +212,39 @@ syntax-end -->
 <table class="notranslate index">
     <tr>
         <td class="index">
-
+            
                 <a href="#avg" >AVG</a><br />
-
+            
                 <a href="#count" >COUNT</a><br />
-
+            
                 <a href="#approx_count_distinct" >APPROX_COUNT_DISTINCT</a><br 
/>
-
+            
                 <a href="#max" >MAX</a><br />
-
+            
                 <a href="#min" >MIN</a><br />
-
+            
                 <a href="#sum" >SUM</a><br />
                     </td><td class="index">
-
+            
                 <a href="#percentile_cont" >PERCENTILE_CONT</a><br />
-
+            
                 <a href="#percentile_disc" >PERCENTILE_DISC</a><br />
-
+            
                 <a href="#percent_rank" >PERCENT_RANK</a><br />
-
+            
                 <a href="#first_value" >FIRST_VALUE</a><br />
-
+            
                 <a href="#last_value" >LAST_VALUE</a><br />
-
+            
                 <a href="#first_values" >FIRST_VALUES</a><br />
                     </td><td class="index">
-
+            
                 <a href="#last_values" >LAST_VALUES</a><br />
-
+            
                 <a href="#nth_value" >NTH_VALUE</a><br />
-
+            
                 <a href="#stddev_pop" >STDDEV_POP</a><br />
-
+            
                 <a href="#stddev_samp" >STDDEV_SAMP</a><br />
                     </td>
     </tr>
@@ -290,37 +290,37 @@ syntax-end -->
 <table class="notranslate index">
     <tr>
         <td class="index">
-
+            
                 <a href="#substr" >SUBSTR</a><br />
-
+            
                 <a href="#instr" >INSTR</a><br />
-
+            
                 <a href="#trim" >TRIM</a><br />
-
+            
                 <a href="#ltrim" >LTRIM</a><br />
-
+            
                 <a href="#rtrim" >RTRIM</a><br />
                     </td><td class="index">
-
+            
                 <a href="#lpad" >LPAD</a><br />
-
+            
                 <a href="#length" >LENGTH</a><br />
-
+            
                 <a href="#regexp_substr" >REGEXP_SUBSTR</a><br />
-
+            
                 <a href="#regexp_replace" >REGEXP_REPLACE</a><br />
-
+            
                 <a href="#regexp_split" >REGEXP_SPLIT</a><br />
                     </td><td class="index">
-
+            
                 <a href="#upper" >UPPER</a><br />
-
+            
                 <a href="#lower" >LOWER</a><br />
-
+            
                 <a href="#reverse" >REVERSE</a><br />
-
+            
                 <a href="#to_char" >TO_CHAR</a><br />
-
+            
                 <a href="#collation_key" >COLLATION_KEY</a><br />
                     </td>
     </tr>
@@ -368,39 +368,39 @@ syntax-end -->
 <table class="notranslate index">
     <tr>
         <td class="index">
-
+            
                 <a href="#to_date" >TO_DATE</a><br />
-
+            
                 <a href="#to_time" >TO_TIME</a><br />
-
+            
                 <a href="#to_timestamp" >TO_TIMESTAMP</a><br />
-
+            
                 <a href="#current_time" >CURRENT_TIME</a><br />
-
+            
                 <a href="#convert_tz" >CONVERT_TZ</a><br />
-
+            
                 <a href="#timezone_offset" >TIMEZONE_OFFSET</a><br />
                     </td><td class="index">
-
+            
                 <a href="#now" >NOW</a><br />
-
+            
                 <a href="#year" >YEAR</a><br />
-
+            
                 <a href="#month" >MONTH</a><br />
-
+            
                 <a href="#week" >WEEK</a><br />
-
+            
                 <a href="#dayofyear" >DAYOFYEAR</a><br />
-
+            
                 <a href="#dayofmonth" >DAYOFMONTH</a><br />
                     </td><td class="index">
-
+            
                 <a href="#dayofweek" >DAYOFWEEK</a><br />
-
+            
                 <a href="#hour" >HOUR</a><br />
-
+            
                 <a href="#minute" >MINUTE</a><br />
-
+            
                 <a href="#second" >SECOND</a><br />
                     </td>
     </tr>
@@ -428,19 +428,19 @@ syntax-end -->
 <table class="notranslate index">
     <tr>
         <td class="index">
-
+            
                 <a href="#round" >ROUND</a><br />
-
+            
                 <a href="#ceil" >CEIL</a><br />
                     </td><td class="index">
-
+            
                 <a href="#floor" >FLOOR</a><br />
-
+            
                 <a href="#trunc" >TRUNC</a><br />
                     </td><td class="index">
-
+            
                 <a href="#to_number" >TO_NUMBER</a><br />
-
+            
                 <a href="#rand" >RAND</a><br />
                     </td>
     </tr>
@@ -474,25 +474,25 @@ syntax-end -->
 <table class="notranslate index">
     <tr>
         <td class="index">
-
+            
                 <a href="#array_elem" >ARRAY_ELEM</a><br />
-
+            
                 <a href="#array_length" >ARRAY_LENGTH</a><br />
-
+            
                 <a href="#array_append" >ARRAY_APPEND</a><br />
                     </td><td class="index">
-
+            
                 <a href="#array_prepend" >ARRAY_PREPEND</a><br />
-
+            
                 <a href="#array_cat" >ARRAY_CAT</a><br />
-
+            
                 <a href="#array_fill" >ARRAY_FILL</a><br />
                     </td><td class="index">
-
+            
                 <a href="#array_to_string" >ARRAY_TO_STRING</a><br />
-
+            
                 <a href="#any" >ANY</a><br />
-
+            
                 <a href="#all" >ALL</a><br />
                     </td>
     </tr>
@@ -524,23 +524,23 @@ syntax-end -->
 <table class="notranslate index">
     <tr>
         <td class="index">
-
+            
                 <a href="#sign" >SIGN</a><br />
-
+            
                 <a href="#abs" >ABS</a><br />
-
+            
                 <a href="#sqrt" >SQRT</a><br />
                     </td><td class="index">
-
+            
                 <a href="#cbrt" >CBRT</a><br />
-
+            
                 <a href="#exp" >EXP</a><br />
-
+            
                 <a href="#power" >POWER</a><br />
                     </td><td class="index">
-
+            
                 <a href="#ln" >LN</a><br />
-
+            
                 <a href="#log" >LOG</a><br />
                     </td>
     </tr>
@@ -576,27 +576,27 @@ syntax-end -->
 <table class="notranslate index">
     <tr>
         <td class="index">
-
+            
                 <a href="#md5" >MD5</a><br />
-
+            
                 <a href="#invert" >INVERT</a><br />
-
+            
                 <a href="#encode" >ENCODE</a><br />
-
+            
                 <a href="#decode" >DECODE</a><br />
                     </td><td class="index">
-
+            
                 <a href="#coalesce" >COALESCE</a><br />
-
+            
                 <a href="#get_bit" >GET_BIT</a><br />
-
+            
                 <a href="#get_byte" >GET_BYTE</a><br />
-
+            
                 <a href="#octet_length" >OCTET_LENGTH</a><br />
                     </td><td class="index">
-
+            
                 <a href="#set_bit" >SET_BIT</a><br />
-
+            
                 <a href="#set_byte" >SET_BYTE</a><br />
                     </td>
     </tr>

Modified: phoenix/site/publish/language/index.html
URL: 
http://svn.apache.org/viewvc/phoenix/site/publish/language/index.html?rev=1899588&r1=1899587&r2=1899588&view=diff
==============================================================================
--- phoenix/site/publish/language/index.html (original)
+++ phoenix/site/publish/language/index.html Tue Apr  5 16:56:21 2022
@@ -1,7 +1,7 @@
 
 <!DOCTYPE html>
 <!--
- Generated by Apache Maven Doxia at 2022-03-31
+ Generated by Apache Maven Doxia at 2022-04-05
  Rendered using Reflow Maven Skin 1.1.0 
(http://andriusvelykis.github.io/reflow-maven-skin)
 -->
 <html  xml:lang="en" lang="en">
@@ -234,61 +234,61 @@ syntax-end -->
 <table class="notranslate index">
     <tr>
         <td class="index">
-
+            
                 <a href="#select" >SELECT</a><br />
-
+            
                 <a href="#upsert_values" >UPSERT VALUES</a><br />
-
+            
                 <a href="#upsert_select" >UPSERT SELECT</a><br />
-
+            
                 <a href="#delete" >DELETE</a><br />
-
+            
                 <a href="#declare_cursor" >DECLARE CURSOR</a><br />
-
+            
                 <a href="#open_cursor" >OPEN CURSOR</a><br />
-
+            
                 <a href="#fetch_next" >FETCH NEXT</a><br />
-
+            
                 <a href="#close" >CLOSE</a><br />
-
+            
                 <a href="#create_table" >CREATE TABLE</a><br />
                     </td><td class="index">
-
+            
                 <a href="#drop_table" >DROP TABLE</a><br />
-
+            
                 <a href="#create_function" >CREATE FUNCTION</a><br />
-
+            
                 <a href="#drop_function" >DROP FUNCTION</a><br />
-
+            
                 <a href="#create_view" >CREATE VIEW</a><br />
-
+            
                 <a href="#drop_view" >DROP VIEW</a><br />
-
+            
                 <a href="#create_sequence" >CREATE SEQUENCE</a><br />
-
+            
                 <a href="#drop_sequence" >DROP SEQUENCE</a><br />
-
+            
                 <a href="#alter" >ALTER</a><br />
-
+            
                 <a href="#create_index" >CREATE INDEX</a><br />
                     </td><td class="index">
-
+            
                 <a href="#drop_index" >DROP INDEX</a><br />
-
+            
                 <a href="#alter_index" >ALTER INDEX</a><br />
-
+            
                 <a href="#explain" >EXPLAIN</a><br />
-
+            
                 <a href="#update_statistics" >UPDATE STATISTICS</a><br />
-
+            
                 <a href="#create_schema" >CREATE SCHEMA</a><br />
-
+            
                 <a href="#use" >USE</a><br />
-
+            
                 <a href="#drop_schema" >DROP SCHEMA</a><br />
-
+            
                 <a href="#grant" >GRANT</a><br />
-
+            
                 <a href="#revoke" >REVOKE</a><br />
                     </td>
     </tr>
@@ -416,119 +416,119 @@ syntax-end -->
 <table class="notranslate index">
     <tr>
         <td class="index">
-
+            
                 <a href="#constraint" >Constraint</a><br />
-
+            
                 <a href="#options" >Options</a><br />
-
+            
                 <a href="#hint" >Hint</a><br />
-
+            
                 <a href="#scan_hint" >Scan Hint</a><br />
-
+            
                 <a href="#cache_hint" >Cache Hint</a><br />
-
+            
                 <a href="#index_hint" >Index Hint</a><br />
-
+            
                 <a href="#small_hint" >Small Hint</a><br />
-
+            
                 <a href="#seek_to_column_hint" >Seek To Column Hint</a><br />
-
+            
                 <a href="#join_hint" >Join Hint</a><br />
-
+            
                 <a href="#serial_hint" >Serial Hint</a><br />
-
+            
                 <a href="#column_def" >Column Def</a><br />
-
+            
                 <a href="#table_ref" >Table Ref</a><br />
-
+            
                 <a href="#sequence_ref" >Sequence Ref</a><br />
-
+            
                 <a href="#column_ref" >Column Ref</a><br />
-
+            
                 <a href="#select_expression" >Select Expression</a><br />
-
+            
                 <a href="#select_statement" >Select Statement</a><br />
-
+            
                 <a href="#split_point" >Split Point</a><br />
-
+            
                 <a href="#table_spec" >Table Spec</a><br />
-
+            
                 <a href="#aliased_table_ref" >Aliased Table Ref</a><br />
                     </td><td class="index">
-
+            
                 <a href="#join_type" >Join Type</a><br />
-
+            
                 <a href="#func_argument" >Func Argument</a><br />
-
+            
                 <a href="#class_name" >Class Name</a><br />
-
+            
                 <a href="#jar_path" >Jar Path</a><br />
-
+            
                 <a href="#order" >Order</a><br />
-
+            
                 <a href="#expression" >Expression</a><br />
-
+            
                 <a href="#and_condition" >And Condition</a><br />
-
+            
                 <a href="#boolean_condition" >Boolean Condition</a><br />
-
+            
                 <a href="#condition" >Condition</a><br />
-
+            
                 <a href="#rhs_operand" >RHS Operand</a><br />
-
+            
                 <a href="#operand" >Operand</a><br />
-
+            
                 <a href="#summand" >Summand</a><br />
-
+            
                 <a href="#factor" >Factor</a><br />
-
+            
                 <a href="#term" >Term</a><br />
-
+            
                 <a href="#array_constructor" >Array Constructor</a><br />
-
+            
                 <a href="#sequence" >Sequence</a><br />
-
+            
                 <a href="#cast" >Cast</a><br />
-
+            
                 <a href="#row_value_constructor" >Row Value Constructor</a><br 
/>
-
+            
                 <a href="#bind_parameter" >Bind Parameter</a><br />
                     </td><td class="index">
-
+            
                 <a href="#value" >Value</a><br />
-
+            
                 <a href="#case" >Case</a><br />
-
+            
                 <a href="#case_when" >Case When</a><br />
-
+            
                 <a href="#name" >Name</a><br />
-
+            
                 <a href="#quoted_name" >Quoted Name</a><br />
-
+            
                 <a href="#alias" >Alias</a><br />
-
+            
                 <a href="#null" >Null</a><br />
-
+            
                 <a href="#data_type" >Data Type</a><br />
-
+            
                 <a href="#sql_data_type" >SQL Data Type</a><br />
-
+            
                 <a href="#hbase_data_type" >HBase Data Type</a><br />
-
+            
                 <a href="#string" >String</a><br />
-
+            
                 <a href="#boolean" >Boolean</a><br />
-
+            
                 <a href="#numeric" >Numeric</a><br />
-
+            
                 <a href="#int" >Int</a><br />
-
+            
                 <a href="#long" >Long</a><br />
-
+            
                 <a href="#decimal" >Decimal</a><br />
-
+            
                 <a href="#number" >Number</a><br />
-
+            
                 <a href="#comments" >Comments</a><br />
                     </td>
     </tr>

Modified: phoenix/site/source/src/site/markdown/download.md
URL: 
http://svn.apache.org/viewvc/phoenix/site/source/src/site/markdown/download.md?rev=1899588&r1=1899587&r2=1899588&view=diff
==============================================================================
--- phoenix/site/source/src/site/markdown/download.md (original)
+++ phoenix/site/source/src/site/markdown/download.md Tue Apr  5 16:56:21 2022
@@ -17,6 +17,8 @@ Please follow the appropriate link depen
     <th width='180'>Phoenix Version</th>
     <th width='100'>Release Date</th>
     <th>Download</th>
+    <th>Release Notes</th> 
+    <th>Changes</th> 
 </tr>
 </table>
 
@@ -25,6 +27,8 @@ Please follow the appropriate link depen
     <th width='180'>Phoenix Thirdparty Version</th>
     <th width='100'>Release Date</th>
     <th>Download</th>
+    <th>Release Notes</th> 
+    <th>Changes</th> 
 </tr>
 </table>
 
@@ -33,6 +37,8 @@ Please follow the appropriate link depen
     <th width='180'>Phoenix Omid Version</th>
     <th width='100'>Release Date</th>
     <th>Download</th>
+    <th>Release Notes</th> 
+    <th>Changes</th> 
 </tr>
 </table>
 
@@ -41,6 +47,8 @@ Please follow the appropriate link depen
     <th width='180'>Phoenix Tephra Version</th>
     <th width='100'>Release Date</th>
     <th>Download</th>
+    <th>Release Notes</th> 
+    <th>Changes</th> 
 </tr>
 </table>
 
@@ -49,6 +57,8 @@ Please follow the appropriate link depen
     <th width='180'>Phoenix Query Server Version</th>
     <th width='100'>Release Date</th>
     <th>Download</th>
+    <th>Release Notes</th> 
+    <th>Changes</th> 
 </tr>
 </table>
 

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=1899588&r1=1899587&r2=1899588&view=diff
==============================================================================
--- phoenix/site/source/src/site/resources/js/download.js (original)
+++ phoenix/site/source/src/site/resources/js/download.js Tue Apr  5 16:56:21 
2022
@@ -42,8 +42,14 @@ function addRelease2(version, date) {
           '&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>';
+        '</li>' + phoenixBinariesHtml + 
+        '</ul></td>' + 
+        '<td><ul><li>' + 
+           '<a href="' + apacheUrlHttps + 'phoenix-' + version + 
'/RELEASENOTES.md">Release Notes</a>' + 
+        '</li></ul></td>' +
+        '<td><ul><li>' + 
+           '<a href="' + apacheUrlHttps + 'phoenix-' + version + 
'/CHANGES.md">Changes</a>' + 
+        '</li></ul></td>';
     document.getElementById('core-releases').appendChild(tr);
 }
 
@@ -83,7 +89,13 @@ function addPhoenixThirdpartyRelease(ver
           '[ <a href="' + apacheUrlHttps + 'phoenix-thirdparty-' + version + 
'/phoenix-thirdparty-' + version + '-src.tar.gz.sha512">sha512</a>' +
           ' | <a href="' + apacheUrlHttps + 'phoenix-thirdparty-' + version + 
'/phoenix-thirdparty-' + version + '-src.tar.gz.asc">asc</a> ]' +
         '</li>' +
-        '</ul></td>';
+        '</ul></td>' + 
+        '<td><ul><li>' + 
+           '<a href="' + apacheUrlHttps + 'phoenix-thirdparty-' + version + 
'/RELEASENOTES.md">Release Notes</a>' + 
+        '</li></ul></td>' +
+        '<td><ul><li>' + 
+           '<a href="' + apacheUrlHttps + 'phoenix-thirdparty-' + version + 
'/CHANGES.md">Changes</a>' + 
+        '</li></ul></td>';
     document.getElementById('phoenix-thirdparty-releases').appendChild(tr);
 }
 
@@ -98,7 +110,13 @@ function addPhoenixOmidRelease(version,
           '[ <a href="' + apacheUrlHttps + 'phoenix-omid-' + version + 
'/phoenix-omid-' + version + '-src.tar.gz.sha512">sha512</a>' +
           ' | <a href="' + apacheUrlHttps + 'phoenix-omid-' + version + 
'/phoenix-omid-' + version + '-src.tar.gz.asc">asc</a> ]' +
         '</li>' +
-        '</ul></td>';
+        '</ul></td>' + 
+        '<td><ul><li>' + 
+           '<a href="' + apacheUrlHttps + 'phoenix-omid-' + version + 
'/RELEASENOTES.md">Release Notes</a>' + 
+        '</li></ul></td>' +
+        '<td><ul><li>' + 
+           '<a href="' + apacheUrlHttps + 'phoenix-omid-' + version + 
'/CHANGES.md">Changes</a>' + 
+        '</li></ul></td>';
     document.getElementById('phoenix-omid-releases').appendChild(tr);
 }
 
@@ -113,7 +131,13 @@ function addPhoenixTephraRelease(version
           '[ <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>';
+        '</ul></td>' + 
+        '<td><ul><li>' + 
+           '<a href="' + apacheUrlHttps + 'phoenix-tephra-' + version + 
'/RELEASENOTES.md">Release Notes</a>' + 
+        '</li></ul></td>' +
+        '<td><ul><li>' + 
+           '<a href="' + apacheUrlHttps + 'phoenix-tephra-' + version + 
'/CHANGES.md">Changes</a>' + 
+        '</li></ul></td>';
     document.getElementById('phoenix-tephra-releases').appendChild(tr);
 }
 
@@ -134,6 +158,12 @@ function addPhoenixQueryServerRelease(ve
           '[ <a href="' + apacheUrlHttps + 'phoenix-queryserver-' + version + 
'/phoenix-queryserver-' + version + '-src.tar.gz.sha512">sha512</a>' +
           ' | <a href="' + apacheUrlHttps + 'phoenix-queryserver-' + version + 
'/phoenix-queryserver-' + version + '-src.tar.gz.asc">asc</a> ]' +
         '</li>' +  parcelsHtml +
-        '</ul></td>';
+        '</ul></td>' + 
+        '<td><ul><li>' + 
+           '<a href="' + apacheUrlHttps + 'phoenix-queryserver-' + version + 
'/RELEASENOTES.md">Release Notes</a>' + 
+        '</li></ul></td>' +
+        '<td><ul><li>' + 
+           '<a href="' + apacheUrlHttps + 'phoenix-queryserver-' + version + 
'/CHANGES.md">Changes</a>' + 
+        '</li></ul></td>';
     document.getElementById('phoenix-queryserver-releases').appendChild(tr);
 }


Reply via email to