You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by jh...@apache.org on 2015/05/29 21:47:56 UTC

svn commit: r1682538 [1/6] - in /incubator/calcite/site: develop/ docs/ news/ news/2015/01/31/release-1.0.0-incubating/ news/2015/03/13/release-1.1.0-incubating/ news/2015/04/07/release-1.2.0-incubating/ news/2015/04/24/new-committers/ news/2015/05/29/...

Author: jhyde
Date: Fri May 29 19:47:55 2015
New Revision: 1682538

URL: http://svn.apache.org/r1682538
Log:
Fix various formatting issues

Modified:
    incubator/calcite/site/develop/index.html
    incubator/calcite/site/docs/avatica.html
    incubator/calcite/site/docs/contributing.html
    incubator/calcite/site/docs/downloads.html
    incubator/calcite/site/docs/history.html
    incubator/calcite/site/docs/howto.html
    incubator/calcite/site/docs/lattice.html
    incubator/calcite/site/docs/model.html
    incubator/calcite/site/docs/reference.html
    incubator/calcite/site/docs/stream.html
    incubator/calcite/site/docs/tutorial.html
    incubator/calcite/site/news/2015/01/31/release-1.0.0-incubating/index.html
    incubator/calcite/site/news/2015/03/13/release-1.1.0-incubating/index.html
    incubator/calcite/site/news/2015/04/07/release-1.2.0-incubating/index.html
    incubator/calcite/site/news/2015/04/24/new-committers/index.html
    incubator/calcite/site/news/2015/05/29/release-1.3.0-incubating/index.html
    incubator/calcite/site/news/index.html
    incubator/calcite/site/news/releases/index.html
    incubator/calcite/site/talks/index.html

Modified: incubator/calcite/site/develop/index.html
URL: http://svn.apache.org/viewvc/incubator/calcite/site/develop/index.html?rev=1682538&r1=1682537&r2=1682538&view=diff
==============================================================================
--- incubator/calcite/site/develop/index.html (original)
+++ incubator/calcite/site/develop/index.html Fri May 29 19:47:55 2015
@@ -216,10 +216,9 @@ later, 1.8 preferred) on your path.</p>
 <p>Create a local copy of the git repository, cd to its root directory,
 then build using maven:</p>
 
-<p><code>$ git clone git://github.com/apache/incubator-calcite.git
-$ cd incubator-calcite
-$ mvn install
-</code></p>
+<div class="highlight"><pre><code class="language-bash" data-lang="bash"><span class="nv">$ </span>git clone git://github.com/apache/incubator-calcite.git
+<span class="nv">$ </span><span class="nb">cd </span>incubator-calcite
+<span class="nv">$ </span>mvn install</code></pre></div>
 
 <p>Please check our <a href="/docs/howto.html#contributing">contributing guidelines</a>.</p>
 

Modified: incubator/calcite/site/docs/avatica.html
URL: http://svn.apache.org/viewvc/incubator/calcite/site/docs/avatica.html?rev=1682538&r1=1682537&r2=1682538&view=diff
==============================================================================
--- incubator/calcite/site/docs/avatica.html (original)
+++ incubator/calcite/site/docs/avatica.html Fri May 29 19:47:55 2015
@@ -629,12 +629,15 @@ objects to/from JSON.</p>
 <p>Avatica-Server is a Java implementation of Avatica RPC.
 It embeds the Jetty HTTP server.</p>
 
-<p>Core concepts:
-* Meta is a local API sufficient to implement any Avatica provider
-* Factory creates implementations of the JDBC classes (Driver, Connection,
-  Statement, ResultSet) on top of a Meta
-* Service is an interface that implements the functions of Meta in terms
-  of request and response command objects</p>
+<p>Core concepts:</p>
+
+<ul>
+  <li>Meta is a local API sufficient to implement any Avatica provider</li>
+  <li>Factory creates implementations of the JDBC classes (Driver, Connection,
+Statement, ResultSet) on top of a Meta</li>
+  <li>Service is an interface that implements the functions of Meta in terms
+of request and response command objects</li>
+</ul>
 
 <h2 id="jdbc">JDBC</h2>
 
@@ -660,15 +663,19 @@ the same ODBC client could be used for d
 It does not depend upon any other part of Calcite.
 At some point Avatica could become a separate project.</p>
 
-<p>Packages:
-* <a href="http://www.hydromatic.net/calcite/apidocs/org/apache/calcite/avatica/package-summary.html">org.apache.calcite.avatica</a> Core framework
-* <a href="http://www.hydromatic.net/calcite/apidocs/org/apache/calcite/avatica/remote/package-summary.html">org.apache.calcite.avatica.remote</a> JDBC driver that uses remote procedure calls
-* <a href="http://www.hydromatic.net/calcite/apidocs/org/apache/calcite/avatica/server/package-summary.html">org.apache.calcite.avatica.server</a> HTTP server
-* <a href="http://www.hydromatic.net/calcite/apidocs/org/apache/calcite/avatica/util/package-summary.html">org.apache.calcite.avatica.util</a> Utilities</p>
+<p>Packages:</p>
+
+<ul>
+  <li><a href="/apidocs/org/apache/calcite/avatica/package-summary.html">org.apache.calcite.avatica</a> Core framework</li>
+  <li><a href="/apidocs/org/apache/calcite/avatica/remote/package-summary.html">org.apache.calcite.avatica.remote</a> JDBC driver that uses remote procedure calls</li>
+  <li><a href="/apidocs/org/apache/calcite/avatica/server/package-summary.html">org.apache.calcite.avatica.server</a> HTTP server</li>
+  <li><a href="/apidocs/org/apache/calcite/avatica/util/package-summary.html">org.apache.calcite.avatica.util</a> Utilities</li>
+</ul>
 
 <h2 id="status">Status</h2>
 
 <h3 id="implemented">Implemented</h3>
+
 <ul>
   <li>Create connection, create statement, metadata, prepare, bind, execute, fetch</li>
   <li>RPC using JSON over HTTP</li>
@@ -683,6 +690,7 @@ At some point Avatica could become a sep
 </ul>
 
 <h3 id="not-implemented">Not implemented</h3>
+
 <ul>
   <li>ODBC</li>
   <li>RPCs

Modified: incubator/calcite/site/docs/contributing.html
URL: http://svn.apache.org/viewvc/incubator/calcite/site/docs/contributing.html?rev=1682538&r1=1682537&r2=1682538&view=diff
==============================================================================
--- incubator/calcite/site/docs/contributing.html (original)
+++ incubator/calcite/site/docs/contributing.html Fri May 29 19:47:55 2015
@@ -620,15 +620,13 @@ proposed feature or start a discussion o
 
 <p>Fork the github repository, and create a branch for your feature.</p>
 
-<p>Develop your feature and test cases, and make sure that <code>mvn
-install</code> succeeds. (Run extra tests if your change warrants it.)</p>
+<p>Develop your feature and test cases, and make sure that
+<code>mvn install</code> succeeds. (Run extra tests if your change warrants it.)</p>
 
 <p>Commit your change to your branch, and use a comment that starts with
 the JIRA case number, like this:</p>
 
-<p><code>
-[CALCITE-345] AssertionError in RexToLixTranslator comparing to date literal
-</code></p>
+<div class="highlight"><pre><code class="language-text" data-lang="text">[CALCITE-345] AssertionError in RexToLixTranslator comparing to date literal</code></pre></div>
 
 <p>If your change had multiple commits, use <code>git rebase -i master</code> to
 combine them into a single commit, and to bring your code up to date

Modified: incubator/calcite/site/docs/downloads.html
URL: http://svn.apache.org/viewvc/incubator/calcite/site/docs/downloads.html?rev=1682538&r1=1682537&r2=1682538&view=diff
==============================================================================
--- incubator/calcite/site/docs/downloads.html (original)
+++ incubator/calcite/site/docs/downloads.html Fri May 29 19:47:55 2015
@@ -645,14 +645,42 @@ limitations under the License.
       <td style="text-align: left">13 Mar 2015</td>
       <td style="text-align: left"><a href="https://github.com/apache/incubator-calcite/commit/f10ea367">f10ea367</a></td>
       <td style="text-align: left"><a href="history.html#v1-1-0">notes</a></td>
-      <td style="text-align: left"><a href="http://www.apache.org/dyn/closer.cgi/incubator/calcite/apache-calcite-1.1.0-incubating">src</a></td>
+      <td style="text-align: left"><a href="http://archive.apache.org/dist/incubator/calcite/apache-calcite-1.1.0-incubating">src</a></td>
     </tr>
     <tr>
       <td style="text-align: left">1.0.0-incubating</td>
       <td style="text-align: left">31 Jan 2015</td>
       <td style="text-align: left"><a href="https://github.com/apache/incubator-calcite/commit/2dd83f2">2dd83f2</a></td>
       <td style="text-align: left"><a href="history.html#v1-0-0">notes</a></td>
-      <td style="text-align: left"><a href="http://www.apache.org/dyn/closer.cgi/incubator/calcite/apache-calcite-1.0.0-incubating">src</a></td>
+      <td style="text-align: left"><a href="http://archive.apache.org/dist/incubator/calcite/apache-calcite-1.0.0-incubating">src</a></td>
+    </tr>
+    <tr>
+      <td style="text-align: left">0.9.2-incubating</td>
+      <td style="text-align: left">05 Nov 2014</td>
+      <td style="text-align: left"><a href="https://github.com/apache/incubator-calcite/commit/0404fd23">0404fd23</a></td>
+      <td style="text-align: left"><a href="history.html#v0-9-2">notes</a></td>
+      <td style="text-align: left"><a href="http://archive.apache.org/dist/incubator/calcite/apache-calcite-0.9.2-incubating">src</a></td>
+    </tr>
+    <tr>
+      <td style="text-align: left">0.9.1-incubating</td>
+      <td style="text-align: left">02 Oct 2014</td>
+      <td style="text-align: left"><a href="https://github.com/apache/incubator-calcite/commit/68012573">68012573</a></td>
+      <td style="text-align: left"><a href="history.html#v0-9-1">notes</a></td>
+      <td style="text-align: left"><a href="http://archive.apache.org/dist/incubator/calcite/apache-calcite-0.9.1-incubating">src</a></td>
+    </tr>
+    <tr>
+      <td style="text-align: left">0.9.0-incubating</td>
+      <td style="text-align: left">19 Aug 2014</td>
+      <td style="text-align: left"><a href="https://github.com/apache/incubator-calcite/commit/45e5269b">45e5269b</a></td>
+      <td style="text-align: left"><a href="history.html#v0-9-0">notes</a></td>
+      <td style="text-align: left"><a href="http://archive.apache.org/dist/incubator/calcite/apache-optiq-0.9.0-incubating">src</a></td>
+    </tr>
+    <tr>
+      <td style="text-align: left">0.8</td>
+      <td style="text-align: left">27 Jun 2014</td>
+      <td style="text-align: left"><a href="https://github.com/apache/incubator-calcite/commit/3da850a1">3da850a1</a></td>
+      <td style="text-align: left"><a href="history.html#v0-8">notes</a></td>
+      <td style="text-align: left"><a href="http://archive.apache.org/dist/incubator/calcite/apache-calcite-0.8">src</a></td>
     </tr>
   </tbody>
 </table>