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 2014/10/24 00:27:51 UTC

svn commit: r1633972 [7/17] - in /incubator/calcite: ./ general/ general/src/ general/src/main/ general/src/main/webapp/ general/src/main/webapp/WEB-INF/ general/src/site/ general/src/site/resources/ general/src/site/resources/images/ general/src/site/...

Added: incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/style/swiss.css
URL: http://svn.apache.org/viewvc/incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/style/swiss.css?rev=1633972&view=auto
==============================================================================
--- incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/style/swiss.css (added)
+++ incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/style/swiss.css Thu Oct 23 22:27:44 2014
@@ -0,0 +1,84 @@
+.deck-container {
+  font-family: "Helvetica Neue", sans-serif;
+  font-size: 1.75em;
+  background: #fff;
+}
+.deck-container .slide {
+  background: #fff;
+}
+.deck-container .slide h1 {
+  color: #000;
+}
+.deck-container .slide h2 {
+  color: #c00;
+  border-bottom-color: #ccc;
+}
+.deck-container .slide h3 {
+  color: #888;
+}
+.deck-container .slide pre {
+  border-color: #ccc;
+}
+.deck-container .slide code {
+  color: #888;
+}
+.deck-container .slide blockquote {
+  font-size: 2em;
+  font-style: italic;
+  padding: 1em 2em;
+  color: #000;
+  border-left: 5px solid #ccc;
+}
+.deck-container .slide blockquote p {
+  margin: 0;
+}
+.deck-container .slide blockquote cite {
+  font-size: .5em;
+  font-style: normal;
+  font-weight: bold;
+  color: #888;
+}
+.deck-container .slide ::-moz-selection {
+  background: #c00;
+  color: #fff;
+}
+.deck-container .slide ::selection {
+  background: #c00;
+  color: #fff;
+}
+.deck-container .slide a, .deck-container .slide a:hover, .deck-container .slide a:focus, .deck-container .slide a:active, .deck-container .slide a:visited {
+  color: #c00;
+  text-decoration: none;
+}
+.deck-container .slide a:hover, .deck-container .slide a:focus {
+  text-decoration: underline;
+}
+.deck-container > .slide .deck-before, .deck-container > .slide .deck-previous {
+  opacity: 0.4;
+}
+.deck-container > .slide .deck-before:not(.deck-child-current) .deck-before, .deck-container > .slide .deck-before:not(.deck-child-current) .deck-previous, .deck-container > .slide .deck-previous:not(.deck-child-current) .deck-before, .deck-container > .slide .deck-previous:not(.deck-child-current) .deck-previous {
+  opacity: 1;
+}
+.deck-container > .slide .deck-child-current {
+  opacity: 1;
+}
+.deck-container .deck-prev-link, .deck-container .deck-next-link {
+  background: #ccc;
+  font-family: serif;
+}
+.deck-container .deck-prev-link, .deck-container .deck-prev-link:hover, .deck-container .deck-prev-link:focus, .deck-container .deck-prev-link:active, .deck-container .deck-prev-link:visited, .deck-container .deck-next-link, .deck-container .deck-next-link:hover, .deck-container .deck-next-link:focus, .deck-container .deck-next-link:active, .deck-container .deck-next-link:visited {
+  color: #fff;
+}
+.deck-container .deck-prev-link:hover, .deck-container .deck-prev-link:focus, .deck-container .deck-next-link:hover, .deck-container .deck-next-link:focus {
+  background: #c00;
+  text-decoration: none;
+}
+.deck-container .deck-status {
+  font-size: 0.6666em;
+}
+.deck-container.deck-menu .slide {
+  background: #eee;
+}
+.deck-container.deck-menu .deck-current, .no-touch .deck-container.deck-menu .slide:hover {
+  background: #ddf;
+}

Propchange: incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/style/swiss.css
------------------------------------------------------------------------------
    svn:executable = *

Added: incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/style/swiss.scss
URL: http://svn.apache.org/viewvc/incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/style/swiss.scss?rev=1633972&view=auto
==============================================================================
--- incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/style/swiss.scss (added)
+++ incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/style/swiss.scss Thu Oct 23 22:27:44 2014
@@ -0,0 +1,107 @@
+.deck-container {
+	font-family: "Helvetica Neue", sans-serif;
+	font-size:1.75em;
+	background:#fff;
+	
+	.slide {
+		background:#fff;
+		
+		h1 {
+			color:#000;
+		}
+
+		h2 {
+			color:#c00;
+			border-bottom-color:#ccc;
+		}
+
+		h3 {
+			color:#888;
+		}
+
+		pre {
+			border-color:#ccc;
+		}
+
+		code {
+			color:#888;
+		}
+
+		blockquote {
+			font-size:2em;
+			font-style:italic;
+			padding:1em 2em;
+			color:#000;
+			border-left:5px solid #ccc;
+
+			p {
+				margin:0;
+			}
+
+			cite {
+				font-size:.5em;
+				font-style:normal;
+				font-weight:bold;
+				color:#888;
+			}
+		}
+
+		::-moz-selection{ background:#c00; color:#fff; }
+		::selection { background:#c00; color:#fff; }
+
+		a {
+			&, &:hover, &:focus, &:active, &:visited {
+				color:#c00;
+				text-decoration:none;
+			}
+
+			&:hover, &:focus {
+				text-decoration:underline;
+			}
+		}
+	}
+	
+	> .slide {
+		.deck-before, .deck-previous {
+			opacity:0.4;
+			
+			&:not(.deck-child-current) {
+				.deck-before, .deck-previous {
+					opacity:1;
+				}
+			}
+		}
+		
+		.deck-child-current {
+			opacity:1;
+		}
+	} 
+	
+	.deck-prev-link, .deck-next-link {
+		background:#ccc;
+		font-family:serif; // sans-serif arrows x-browser fail
+		
+		&, &:hover, &:focus, &:active, &:visited {
+			color:#fff;
+		}
+		
+		&:hover, &:focus {
+			background:#c00;
+			text-decoration:none;
+		}
+	}
+	
+	.deck-status {
+		font-size:0.6666em;
+	}
+	
+	&.deck-menu {
+		.slide {
+			background:#eee;
+		}
+		
+		.deck-current, .no-touch & .slide:hover {
+			background:#ddf;
+		}
+	}
+}

Propchange: incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/style/swiss.scss
------------------------------------------------------------------------------
    svn:executable = *

Added: incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/style/web-2.0.css
URL: http://svn.apache.org/viewvc/incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/style/web-2.0.css?rev=1633972&view=auto
==============================================================================
--- incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/style/web-2.0.css (added)
+++ incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/style/web-2.0.css Thu Oct 23 22:27:44 2014
@@ -0,0 +1,214 @@
+@charset "UTF-8";
+.deck-container {
+  font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
+  font-size: 1.75em;
+  background: #f4fafe;
+  /* Old browsers */
+  background: -moz-linear-gradient(top, #f4fafe 0%, #ccf0f0 100%);
+  /* FF3.6+ */
+  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f4fafe), color-stop(100%, #ccf0f0));
+  /* Chrome,Safari4+ */
+  background: -webkit-linear-gradient(top, #f4fafe 0%, #ccf0f0 100%);
+  /* Chrome10+,Safari5.1+ */
+  background: -o-linear-gradient(top, #f4fafe 0%, #ccf0f0 100%);
+  /* Opera11.10+ */
+  background: -ms-linear-gradient(top, #f4fafe 0%, #ccf0f0 100%);
+  /* IE10+ */
+  background: linear-gradient(top, #f4fafe 0%, #ccf0f0 100%);
+  /* W3C */
+  background-attachment: fixed;
+}
+.deck-container > .slide {
+  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
+}
+.deck-container > .slide .deck-before, .deck-container > .slide .deck-previous {
+  opacity: 0.4;
+}
+.deck-container > .slide .deck-before:not(.deck-child-current) .deck-before, .deck-container > .slide .deck-before:not(.deck-child-current) .deck-previous, .deck-container > .slide .deck-previous:not(.deck-child-current) .deck-before, .deck-container > .slide .deck-previous:not(.deck-child-current) .deck-previous {
+  opacity: 1;
+}
+.deck-container > .slide .deck-child-current {
+  opacity: 1;
+}
+.deck-container .slide h1, .deck-container .slide h2, .deck-container .slide h3, .deck-container .slide h4, .deck-container .slide h5, .deck-container .slide h6 {
+  font-family: "Hoefler Text", Constantia, Palatino, "Palatino Linotype", "Book Antiqua", Georgia, serif;
+}
+.deck-container .slide h1 {
+  color: #08455f;
+}
+.deck-container .slide h2 {
+  color: #0b7495;
+  border-bottom: 0;
+}
+.cssreflections .deck-container .slide h2 {
+  line-height: 1;
+  -webkit-box-reflect: below -0.556em -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0.3, transparent), color-stop(0.7, rgba(255, 255, 255, 0.1)), to(transparent));
+  -moz-box-reflect: below -0.556em -moz-linear-gradient(top, transparent 0%, transparent 30%, rgba(255, 255, 255, 0.3) 100%);
+}
+.deck-container .slide h3 {
+  color: #000;
+}
+.deck-container .slide pre {
+  border-color: #cde;
+  background: #fff;
+  position: relative;
+  z-index: auto;
+  /* http://nicolasgallagher.com/css-drop-shadows-without-images/ */
+}
+.borderradius .deck-container .slide pre {
+  -webkit-border-radius: 5px;
+  -moz-border-radius: 5px;
+  border-radius: 5px;
+}
+.csstransforms.boxshadow .deck-container .slide pre > :first-child:before {
+  content: "";
+  position: absolute;
+  z-index: -1;
+  background: #fff;
+  top: 0;
+  bottom: 0;
+  left: 0;
+  right: 0;
+}
+.csstransforms.boxshadow .deck-container .slide pre:before, .csstransforms.boxshadow .deck-container .slide pre:after {
+  content: "";
+  position: absolute;
+  z-index: -2;
+  bottom: 15px;
+  width: 50%;
+  height: 20%;
+  max-width: 300px;
+  -webkit-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
+  -moz-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
+  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
+}
+.csstransforms.boxshadow .deck-container .slide pre:before {
+  left: 10px;
+  -webkit-transform: rotate(-3deg);
+  -moz-transform: rotate(-3deg);
+  -ms-transform: rotate(-3deg);
+  -o-transform: rotate(-3deg);
+  transform: rotate(-3deg);
+}
+.csstransforms.boxshadow .deck-container .slide pre:after {
+  right: 10px;
+  -webkit-transform: rotate(3deg);
+  -moz-transform: rotate(3deg);
+  -ms-transform: rotate(3deg);
+  -o-transform: rotate(3deg);
+  transform: rotate(3deg);
+}
+.deck-container .slide code {
+  color: #789;
+}
+.deck-container .slide blockquote {
+  font-family: "Hoefler Text", Constantia, Palatino, "Palatino Linotype", "Book Antiqua", Georgia, serif;
+  font-size: 2em;
+  padding: 1em 2em .5em 2em;
+  color: #000;
+  background: #fff;
+  position: relative;
+  border: 1px solid #cde;
+  z-index: auto;
+}
+.borderradius .deck-container .slide blockquote {
+  -webkit-border-radius: 5px;
+  -moz-border-radius: 5px;
+  border-radius: 5px;
+}
+.boxshadow .deck-container .slide blockquote > :first-child:before {
+  content: "";
+  position: absolute;
+  z-index: -1;
+  background: #fff;
+  top: 0;
+  bottom: 0;
+  left: 0;
+  right: 0;
+}
+.boxshadow .deck-container .slide blockquote:after {
+  content: "";
+  position: absolute;
+  z-index: -2;
+  top: 10px;
+  bottom: 10px;
+  left: 0;
+  right: 50%;
+  -moz-border-radius: 10px/100px;
+  border-radius: 10px/100px;
+  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
+  -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
+  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
+}
+.deck-container .slide blockquote p {
+  margin: 0;
+}
+.deck-container .slide blockquote cite {
+  font-size: .5em;
+  font-style: normal;
+  font-weight: bold;
+  color: #888;
+}
+.deck-container .slide blockquote:before {
+  content: "“";
+  position: absolute;
+  top: 0;
+  left: 0;
+  font-size: 5em;
+  line-height: 1;
+  color: #ccf0f0;
+  z-index: 1;
+}
+.deck-container .slide ::-moz-selection {
+  background: #08455f;
+  color: #fff;
+}
+.deck-container .slide ::selection {
+  background: #08455f;
+  color: #fff;
+}
+.deck-container .slide a, .deck-container .slide a:hover, .deck-container .slide a:focus, .deck-container .slide a:active, .deck-container .slide a:visited {
+  color: #599;
+  text-decoration: none;
+}
+.deck-container .slide a:hover, .deck-container .slide a:focus {
+  text-decoration: underline;
+}
+.deck-container .deck-prev-link, .deck-container .deck-next-link {
+  background: #fff;
+  opacity: 0.5;
+}
+.deck-container .deck-prev-link, .deck-container .deck-prev-link:hover, .deck-container .deck-prev-link:focus, .deck-container .deck-prev-link:active, .deck-container .deck-prev-link:visited, .deck-container .deck-next-link, .deck-container .deck-next-link:hover, .deck-container .deck-next-link:focus, .deck-container .deck-next-link:active, .deck-container .deck-next-link:visited {
+  color: #599;
+}
+.deck-container .deck-prev-link:hover, .deck-container .deck-prev-link:focus, .deck-container .deck-next-link:hover, .deck-container .deck-next-link:focus {
+  opacity: 1;
+  text-decoration: none;
+}
+.deck-container .deck-status {
+  font-size: 0.6666em;
+}
+.deck-container.deck-menu .slide {
+  background: transparent;
+  -webkit-border-radius: 5px;
+  -moz-border-radius: 5px;
+  border-radius: 5px;
+}
+.rgba .deck-container.deck-menu .slide {
+  background: rgba(0, 0, 0, 0.1);
+}
+.deck-container.deck-menu .slide.deck-current, .rgba .deck-container.deck-menu .slide.deck-current, .no-touch .deck-container.deck-menu .slide:hover {
+  background: #fff;
+}
+.deck-container .goto-form {
+  background: #fff;
+  border: 1px solid #cde;
+  -webkit-border-radius: 5px;
+  -moz-border-radius: 5px;
+  border-radius: 5px;
+}
+.boxshadow .deck-container .goto-form {
+  -webkit-box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
+  -moz-box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
+  box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
+}

Propchange: incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/style/web-2.0.css
------------------------------------------------------------------------------
    svn:executable = *

Added: incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/style/web-2.0.scss
URL: http://svn.apache.org/viewvc/incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/style/web-2.0.scss?rev=1633972&view=auto
==============================================================================
--- incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/style/web-2.0.scss (added)
+++ incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/style/web-2.0.scss Thu Oct 23 22:27:44 2014
@@ -0,0 +1,250 @@
+@mixin border-radius($r) {
+	-webkit-border-radius:$r;
+	-moz-border-radius:$r;
+	border-radius:$r;
+}
+
+@mixin rotate($deg) {
+	-webkit-transform:rotate($deg);    
+	-moz-transform:rotate($deg);   
+	-ms-transform:rotate($deg);   
+	-o-transform:rotate($deg);
+	transform:rotate($deg);
+}
+
+@mixin box-shadow($x, $y, $blur, $color) {
+	-webkit-box-shadow:$x $y $blur $color;
+	-moz-box-shadow:$x $y $blur $color;
+	box-shadow:$x $y $blur $color;
+}
+
+
+.deck-container {
+	font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
+	font-size:1.75em;
+	background: rgb(244,250,254); /* Old browsers */
+	background: -moz-linear-gradient(top, rgba(244,250,254,1) 0%, rgba(204,240,240,1) 100%); /* FF3.6+ */
+	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(244,250,254,1)), color-stop(100%,rgba(204,240,240,1))); /* Chrome,Safari4+ */
+	background: -webkit-linear-gradient(top, rgba(244,250,254,1) 0%,rgba(204,240,240,1) 100%); /* Chrome10+,Safari5.1+ */
+	background: -o-linear-gradient(top, rgba(244,250,254,1) 0%,rgba(204,240,240,1) 100%); /* Opera11.10+ */
+	background: -ms-linear-gradient(top, rgba(244,250,254,1) 0%,rgba(204,240,240,1) 100%); /* IE10+ */
+	background: linear-gradient(top, rgba(244,250,254,1) 0%,rgba(204,240,240,1) 100%); /* W3C */
+	background-attachment: fixed;
+	
+	> .slide {
+		text-shadow:1px 1px 1px rgba(255,255,255,.5);
+		
+		.deck-before, .deck-previous {
+			opacity:0.4;
+			
+			&:not(.deck-child-current) {
+				.deck-before, .deck-previous {
+					opacity:1;
+				}
+			}
+		}
+		
+		.deck-child-current {
+			opacity:1;
+		}
+	}
+	
+	.slide {
+		h1, h2, h3, h4, h5, h6 {
+			font-family: "Hoefler Text", Constantia, Palatino, "Palatino Linotype", "Book Antiqua", Georgia, serif;
+		}
+
+		h1 {
+			color:#08455f;
+		}
+
+		h2 {
+			color:#0b7495;
+			border-bottom:0;
+
+			.cssreflections & {
+				line-height:1;
+				-webkit-box-reflect:below -0.5555em -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0.3, transparent), color-stop(0.7, rgba(255,255,255,.1)), to(transparent));
+	 			-moz-box-reflect:below -0.5555em -moz-linear-gradient(top, transparent 0%, transparent 30%, rgba(255,255,255,.3) 100%);
+			}
+		}
+
+		h3 {
+			color:#000;
+		}
+
+		pre {
+			border-color:#cde;
+			background:#fff;
+			position:relative;
+			z-index:auto;
+
+			.borderradius & {
+				@include border-radius(5px);
+			}
+
+			/* http://nicolasgallagher.com/css-drop-shadows-without-images/ */
+			.csstransforms.boxshadow & {
+				> :first-child:before {
+					content:"";
+					position:absolute;
+					z-index:-1;
+					background:#fff;
+					top:0;
+					bottom:0;
+					left:0;
+					right:0;
+				}
+
+				&:before, &:after {
+					content:"";
+					position:absolute;
+					z-index:-2;
+					bottom:15px;
+					width:50%;
+					height:20%;
+					max-width:300px;
+					@include box-shadow(0, 15px, 10px, rgba(0, 0, 0, 0.7));
+				}
+
+				&:before {
+					left:10px;
+					@include rotate(-3deg);
+				}
+
+				&:after {
+					right:10px;
+					@include rotate(3deg);
+				}
+			}
+		}
+
+		code {
+			color:#789;
+		}
+
+		blockquote {
+			font-family: "Hoefler Text", Constantia, Palatino, "Palatino Linotype", "Book Antiqua", Georgia, serif;
+			font-size:2em;
+			padding:1em 2em .5em 2em;
+			color:#000;
+			background:#fff;
+			position:relative;
+			border:1px solid #cde;
+			z-index:auto;
+
+			.borderradius & {
+				@include border-radius(5px);
+			}
+
+			.boxshadow & {
+				> :first-child:before {
+					content:"";
+					position:absolute;
+					z-index:-1;
+					background:#fff;
+					top:0;
+					bottom:0;
+					left:0;
+					right:0;
+				}
+
+				&:after {
+					content:"";
+					position:absolute;
+					z-index:-2;
+					top: 10px;
+					bottom: 10px;
+					left: 0;
+					right: 50%;
+					-moz-border-radius: 10px / 100px;
+					border-radius: 10px / 100px;
+					@include box-shadow(0, 0, 15px, rgba(0,0,0,0.6));
+				}
+			}
+
+			p {
+				margin:0;
+			}
+
+			cite {
+				font-size:.5em;
+				font-style:normal;
+				font-weight:bold;
+				color:#888;
+			}
+
+			&:before {
+				content:"“";
+				position:absolute;
+				top:0;
+				left:0;
+				font-size:5em;
+				line-height:1;
+				color:#ccf0f0;
+				z-index:1;
+			}
+		}
+
+		::-moz-selection{ background:#08455f; color:#fff; }
+		::selection { background:#08455f; color:#fff; }
+
+		a {
+			&, &:hover, &:focus, &:active, &:visited {
+				color:#599;
+				text-decoration:none;
+			}
+
+			&:hover, &:focus {
+				text-decoration:underline;
+			}
+		}
+	}
+	
+	.deck-prev-link, .deck-next-link {
+		background:#fff;
+		opacity:0.5;
+
+		&, &:hover, &:focus, &:active, &:visited {
+			color:#599;
+		}
+
+		&:hover, &:focus {
+			opacity:1;
+			text-decoration:none;
+		}
+	}
+	
+	.deck-status {
+		font-size:0.6666em;
+	}
+	
+	&.deck-menu {
+		.slide {
+			background:transparent;
+			@include border-radius(5px);
+			
+			.rgba & {
+				background:rgba(0,0,0,.1);
+			}
+			
+			&.deck-current, .rgba &.deck-current, .no-touch &:hover {
+				background:#fff;
+			}
+		}
+	}
+	
+	.goto-form {
+		background:#fff;
+		border:1px solid #cde;
+		@include border-radius(5px);
+		
+		.boxshadow & {
+			-webkit-box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
+			-moz-box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
+			box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
+		}
+	}
+}
+
+

Propchange: incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/style/web-2.0.scss
------------------------------------------------------------------------------
    svn:executable = *

Added: incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/fade.css
URL: http://svn.apache.org/viewvc/incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/fade.css?rev=1633972&view=auto
==============================================================================
--- incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/fade.css (added)
+++ incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/fade.css Thu Oct 23 22:27:44 2014
@@ -0,0 +1,43 @@
+.csstransitions.csstransforms .deck-container .slide {
+  -webkit-transition: opacity 500ms ease-in-out 0ms;
+  -moz-transition: opacity 500ms ease-in-out 0ms;
+  -ms-transition: opacity 500ms ease-in-out 0ms;
+  -o-transition: opacity 500ms ease-in-out 0ms;
+  transition: opacity 500ms ease-in-out 0ms;
+}
+.csstransitions.csstransforms .deck-container:not(.deck-menu) > .slide {
+  position: absolute;
+  top: 0;
+  left: 0;
+  -webkit-box-sizing: border-box;
+  -moz-box-sizing: border-box;
+  box-sizing: border-box;
+  width: 100%;
+  padding: 0 48px;
+}
+.csstransitions.csstransforms .deck-container:not(.deck-menu) > .slide .slide {
+  position: relative;
+  left: 0;
+  top: 0;
+}
+.csstransitions.csstransforms .deck-container:not(.deck-menu) > .slide .deck-next, .csstransitions.csstransforms .deck-container:not(.deck-menu) > .slide .deck-after {
+  opacity: 0;
+}
+.csstransitions.csstransforms .deck-container:not(.deck-menu) > .slide .deck-current {
+  opacity: 1;
+}
+.csstransitions.csstransforms .deck-container:not(.deck-menu) > .deck-previous, .csstransitions.csstransforms .deck-container:not(.deck-menu) > .deck-before, .csstransitions.csstransforms .deck-container:not(.deck-menu) > .deck-next, .csstransitions.csstransforms .deck-container:not(.deck-menu) > .deck-after {
+  opacity: 0;
+  pointer-events: none;
+}
+.csstransitions.csstransforms .deck-container:not(.deck-menu) > .deck-before .slide, .csstransitions.csstransforms .deck-container:not(.deck-menu) > .deck-previous .slide {
+  visibility: visible;
+}
+.csstransitions.csstransforms .deck-container:not(.deck-menu) > .deck-child-current {
+  opacity: 1;
+  visibility: visible;
+  pointer-events: auto;
+}
+.csstransitions.csstransforms .deck-container:not(.deck-menu) > .deck-child-current .deck-next, .csstransitions.csstransforms .deck-container:not(.deck-menu) > .deck-child-current .deck-after {
+  visibility: hidden;
+}

Propchange: incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/fade.css
------------------------------------------------------------------------------
    svn:executable = *

Added: incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/fade.scss
URL: http://svn.apache.org/viewvc/incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/fade.scss?rev=1633972&view=auto
==============================================================================
--- incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/fade.scss (added)
+++ incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/fade.scss Thu Oct 23 22:27:44 2014
@@ -0,0 +1,69 @@
+@mixin translate($x: 0, $y: 0, $z: 0) {
+	-webkit-transform:translate3d($x, $y, $z);
+	-moz-transform:translate($x, $y);
+	-ms-transform:translate($x, $y);
+	-o-transform:translate($x, $y);
+	transform:translate3d($x, $y, $z);
+}
+
+@mixin transition($prop, $duration, $easing: ease-in-out, $delay: 0ms) {
+	-webkit-transition:$prop $duration $easing $delay;
+	-moz-transition:$prop $duration $easing $delay;
+	-ms-transition:$prop $duration $easing $delay;
+	-o-transition:$prop $duration $easing $delay;
+	transition:$prop $duration $easing $delay;
+}
+
+.csstransitions.csstransforms {
+	.deck-container .slide {
+		@include transition(opacity, 500ms);
+	}
+	
+	.deck-container:not(.deck-menu) {
+		> .slide {
+			position:absolute;
+			top:0;
+			left:0;
+			-webkit-box-sizing: border-box;
+			-moz-box-sizing: border-box;
+			box-sizing: border-box;
+			width:100%;
+			padding:0 48px;
+			
+			.slide {
+				position:relative;
+				left:0;
+				top:0;
+			}
+			
+			.deck-next, .deck-after {
+				opacity:0;
+			}
+			
+			.deck-current {
+				opacity:1;
+			}
+		}
+
+		> .deck-previous, > .deck-before, > .deck-next, > .deck-after {
+			opacity:0;
+			pointer-events:none;
+		}
+		
+		> .deck-before, > .deck-previous {
+			.slide {
+				visibility:visible;
+			}
+		}
+
+		> .deck-child-current {
+			opacity:1;
+			visibility:visible;
+			pointer-events:auto;
+			
+			.deck-next, .deck-after {
+				visibility:hidden;
+			}
+		}
+	}
+}

Propchange: incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/fade.scss
------------------------------------------------------------------------------
    svn:executable = *

Added: incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/horizontal-slide.css
URL: http://svn.apache.org/viewvc/incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/horizontal-slide.css?rev=1633972&view=auto
==============================================================================
--- incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/horizontal-slide.css (added)
+++ incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/horizontal-slide.css Thu Oct 23 22:27:44 2014
@@ -0,0 +1,76 @@
+.csstransitions.csstransforms {
+  overflow-x: hidden;
+}
+.csstransitions.csstransforms .deck-container > .slide {
+  -webkit-transition: -webkit-transform 500ms ease-in-out;
+  -moz-transition: -moz-transform 500ms ease-in-out;
+  -ms-transition: -ms-transform 500ms ease-in-out;
+  -o-transition: -o-transform 500ms ease-in-out;
+  transition: transform 500ms ease-in-out;
+}
+.csstransitions.csstransforms .deck-container:not(.deck-menu) > .slide {
+  position: absolute;
+  top: 0;
+  left: 0;
+  -webkit-box-sizing: border-box;
+  -moz-box-sizing: border-box;
+  box-sizing: border-box;
+  width: 100%;
+  padding: 0 48px;
+}
+.csstransitions.csstransforms .deck-container:not(.deck-menu) > .slide .slide {
+  position: relative;
+  left: 0;
+  top: 0;
+  -webkit-transition: -webkit-transform 500ms ease-in-out, opacity 500ms ease-in-out;
+  -moz-transition: -moz-transform 500ms ease-in-out, opacity 500ms ease-in-out;
+  -ms-transition: -ms-transform 500ms ease-in-out, opacity 500ms ease-in-out;
+  -o-transition: -o-transform 500ms ease-in-out, opacity 500ms ease-in-out;
+  transition: -webkit-transform 500ms ease-in-out, opacity 500ms ease-in-out;
+}
+.csstransitions.csstransforms .deck-container:not(.deck-menu) > .slide .deck-next, .csstransitions.csstransforms .deck-container:not(.deck-menu) > .slide .deck-after {
+  visibility: visible;
+  -webkit-transform: translate3d(200%, 0, 0);
+  -moz-transform: translate(200%, 0);
+  -ms-transform: translate(200%, 0);
+  -o-transform: translate(200%, 0);
+  transform: translate3d(200%, 0, 0);
+}
+.csstransitions.csstransforms .deck-container:not(.deck-menu) > .deck-previous {
+  -webkit-transform: translate3d(-200%, 0, 0);
+  -moz-transform: translate(-200%, 0);
+  -ms-transform: translate(-200%, 0);
+  -o-transform: translate(-200%, 0);
+  transform: translate3d(-200%, 0, 0);
+}
+.csstransitions.csstransforms .deck-container:not(.deck-menu) > .deck-before {
+  -webkit-transform: translate3d(-400%, 0, 0);
+  -moz-transform: translate(-400%, 0);
+  -ms-transform: translate(-400%, 0);
+  -o-transform: translate(-400%, 0);
+  transform: translate3d(-400%, 0, 0);
+}
+.csstransitions.csstransforms .deck-container:not(.deck-menu) > .deck-next {
+  -webkit-transform: translate3d(200%, 0, 0);
+  -moz-transform: translate(200%, 0);
+  -ms-transform: translate(200%, 0);
+  -o-transform: translate(200%, 0);
+  transform: translate3d(200%, 0, 0);
+}
+.csstransitions.csstransforms .deck-container:not(.deck-menu) > .deck-after {
+  -webkit-transform: translate3d(400%, 0, 0);
+  -moz-transform: translate(400%, 0);
+  -ms-transform: translate(400%, 0);
+  -o-transform: translate(400%, 0);
+  transform: translate3d(400%, 0, 0);
+}
+.csstransitions.csstransforms .deck-container:not(.deck-menu) > .deck-before .slide, .csstransitions.csstransforms .deck-container:not(.deck-menu) > .deck-previous .slide {
+  visibility: visible;
+}
+.csstransitions.csstransforms .deck-container:not(.deck-menu) > .deck-child-current {
+  -webkit-transform: none;
+  -moz-transform: none;
+  -ms-transform: none;
+  -o-transform: none;
+  transform: none;
+}

Propchange: incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/horizontal-slide.css
------------------------------------------------------------------------------
    svn:executable = *

Added: incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/horizontal-slide.scss
URL: http://svn.apache.org/viewvc/incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/horizontal-slide.scss?rev=1633972&view=auto
==============================================================================
--- incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/horizontal-slide.scss (added)
+++ incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/horizontal-slide.scss Thu Oct 23 22:27:44 2014
@@ -0,0 +1,90 @@
+@mixin translate($x: 0, $y: 0, $z: 0) {
+	-webkit-transform:translate3d($x, $y, $z);
+	-moz-transform:translate($x, $y);
+	-ms-transform:translate($x, $y);
+	-o-transform:translate($x, $y);
+	transform:translate3d($x, $y, $z);
+}
+
+@mixin transition($prop, $duration, $easing: ease-in-out, $delay: 0ms) {
+	-webkit-transition:$prop $duration $easing $delay;
+	-moz-transition:$prop $duration $easing $delay;
+	-ms-transition:$prop $duration $easing $delay;
+	-o-transition:$prop $duration $easing $delay;
+	transition:$prop $duration $easing $delay;
+}
+
+@mixin transform($val) {
+	-webkit-transform:$val;
+	-moz-transform:$val;
+	-ms-transform:$val;
+	-o-transform:$val;
+	transform:$val;
+}
+
+.csstransitions.csstransforms {
+	overflow-x:hidden;
+	
+	.deck-container > .slide {
+		-webkit-transition:-webkit-transform 500ms ease-in-out;
+		-moz-transition:-moz-transform 500ms ease-in-out;
+		-ms-transition:-ms-transform 500ms ease-in-out;
+		-o-transition:-o-transform 500ms ease-in-out;
+		transition:transform 500ms ease-in-out;
+	}
+	
+	.deck-container:not(.deck-menu) {
+		> .slide {
+			position:absolute;
+			top:0;
+			left:0;
+			-webkit-box-sizing: border-box;
+			-moz-box-sizing: border-box;
+			box-sizing: border-box;
+			width:100%;
+			padding:0 48px;
+			
+			.slide {
+				position:relative;
+				left:0;
+				top:0;
+				-webkit-transition:-webkit-transform 500ms ease-in-out, opacity 500ms ease-in-out;
+				-moz-transition:-moz-transform 500ms ease-in-out, opacity 500ms ease-in-out;
+				-ms-transition:-ms-transform 500ms ease-in-out, opacity 500ms ease-in-out;
+				-o-transition:-o-transform 500ms ease-in-out, opacity 500ms ease-in-out;
+				transition:-webkit-transform 500ms ease-in-out, opacity 500ms ease-in-out;
+			}
+
+			.deck-next, .deck-after {
+				visibility:visible;
+				@include translate(200%);
+			}
+		}
+
+		> .deck-previous {
+			@include translate(-200%);
+		}
+
+		> .deck-before {
+			@include translate(-400%);
+		}
+
+		> .deck-next {
+			@include translate(200%);
+		}
+
+		> .deck-after {
+			@include translate(400%);
+		}
+		
+		> .deck-before, > .deck-previous {
+			.slide {
+				visibility:visible;
+			}
+		}
+
+		> .deck-child-current {
+			@include transform(none);
+		}
+	}
+}
\ No newline at end of file

Propchange: incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/horizontal-slide.scss
------------------------------------------------------------------------------
    svn:executable = *

Added: incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/vertical-slide.css
URL: http://svn.apache.org/viewvc/incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/vertical-slide.css?rev=1633972&view=auto
==============================================================================
--- incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/vertical-slide.css (added)
+++ incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/vertical-slide.css Thu Oct 23 22:27:44 2014
@@ -0,0 +1,94 @@
+.csstransitions.csstransforms .deck-container {
+  overflow-y: hidden;
+}
+.csstransitions.csstransforms .deck-container > .slide {
+  -webkit-transition: -webkit-transform 500ms ease-in-out;
+  -moz-transition: -moz-transform 500ms ease-in-out;
+  -ms-transition: -ms-transform 500ms ease-in-out;
+  -o-transition: -o-transform 500ms ease-in-out;
+  transition: transform 500ms ease-in-out;
+}
+.csstransitions.csstransforms .deck-container:not(.deck-menu) > .slide {
+  position: absolute;
+  top: 0;
+  left: 0;
+  -webkit-box-sizing: border-box;
+  -moz-box-sizing: border-box;
+  box-sizing: border-box;
+  width: 100%;
+  padding: 0 48px;
+}
+.csstransitions.csstransforms .deck-container:not(.deck-menu) > .slide .slide {
+  position: relative;
+  left: 0;
+  top: 0;
+  -webkit-transition: -webkit-transform 500ms ease-in-out, opacity 500ms ease-in-out;
+  -moz-transition: -moz-transform 500ms ease-in-out, opacity 500ms ease-in-out;
+  -ms-transition: -ms-transform 500ms ease-in-out, opacity 500ms ease-in-out;
+  -o-transition: -o-transform 500ms ease-in-out, opacity 500ms ease-in-out;
+  transition: -webkit-transform 500ms ease-in-out, opacity 500ms ease-in-out;
+}
+.csstransitions.csstransforms .deck-container:not(.deck-menu) > .slide .deck-next, .csstransitions.csstransforms .deck-container:not(.deck-menu) > .slide .deck-after {
+  visibility: visible;
+  -webkit-transform: translate3d(0, 1600px, 0);
+  -moz-transform: translate(0, 1600px);
+  -ms-transform: translate(0, 1600px);
+  -o-transform: translate(0, 1600px);
+  transform: translate3d(0, 1600px, 0);
+}
+.csstransitions.csstransforms .deck-container:not(.deck-menu) > .deck-previous {
+  -webkit-transform: translate3d(0, -200%, 0);
+  -moz-transform: translate(0, -200%);
+  -ms-transform: translate(0, -200%);
+  -o-transform: translate(0, -200%);
+  transform: translate3d(0, -200%, 0);
+}
+.csstransitions.csstransforms .deck-container:not(.deck-menu) > .deck-before {
+  -webkit-transform: translate3d(0, -400%, 0);
+  -moz-transform: translate(0, -400%);
+  -ms-transform: translate(0, -400%);
+  -o-transform: translate(0, -400%);
+  transform: translate3d(0, -400%, 0);
+}
+.csstransitions.csstransforms .deck-container:not(.deck-menu) > .deck-next {
+  -webkit-transform: translate3d(0, 200%, 0);
+  -moz-transform: translate(0, 200%);
+  -ms-transform: translate(0, 200%);
+  -o-transform: translate(0, 200%);
+  transform: translate3d(0, 200%, 0);
+}
+.csstransitions.csstransforms .deck-container:not(.deck-menu) > .deck-after {
+  -webkit-transform: translate3d(0, 400%, 0);
+  -moz-transform: translate(0, 400%);
+  -ms-transform: translate(0, 400%);
+  -o-transform: translate(0, 400%);
+  transform: translate3d(0, 400%, 0);
+}
+.csstransitions.csstransforms .deck-container:not(.deck-menu) > .deck-before .slide, .csstransitions.csstransforms .deck-container:not(.deck-menu) > .deck-previous .slide {
+  visibility: visible;
+}
+.csstransitions.csstransforms .deck-container:not(.deck-menu) > .deck-child-current {
+  -webkit-transform: none;
+  -moz-transform: none;
+  -ms-transform: none;
+  -o-transform: none;
+  transform: none;
+}
+.csstransitions.csstransforms .deck-prev-link {
+  left: auto;
+  right: 8px;
+  top: 59px;
+  -webkit-transform: rotate(90deg);
+  -moz-transform: rotate(90deg);
+  -ms-transform: rotate(90deg);
+  -o-transform: rotate(90deg);
+  transform: rotate(90deg);
+}
+.csstransitions.csstransforms .deck-next-link {
+  top: 99px;
+  -webkit-transform: rotate(90deg);
+  -moz-transform: rotate(90deg);
+  -ms-transform: rotate(90deg);
+  -o-transform: rotate(90deg);
+  transform: rotate(90deg);
+}

Propchange: incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/vertical-slide.css
------------------------------------------------------------------------------
    svn:executable = *

Added: incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/vertical-slide.scss
URL: http://svn.apache.org/viewvc/incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/vertical-slide.scss?rev=1633972&view=auto
==============================================================================
--- incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/vertical-slide.scss (added)
+++ incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/vertical-slide.scss Thu Oct 23 22:27:44 2014
@@ -0,0 +1,112 @@
+@mixin translate($x: 0, $y: 0, $z: 0) {
+	-webkit-transform:translate3d($x, $y, $z);
+	-moz-transform:translate($x, $y);
+	-ms-transform:translate($x, $y);
+	-o-transform:translate($x, $y);
+	transform:translate3d($x, $y, $z);
+}
+
+@mixin rotate($deg) {
+	-webkit-transform:rotate($deg);
+	-moz-transform:rotate($deg);
+	-ms-transform:rotate($deg);
+	-o-transform:rotate($deg);
+	transform:rotate($deg);
+}
+
+@mixin transition($prop, $duration, $easing: ease-in-out, $delay: 0ms) {
+	-webkit-transition:$prop $duration $easing $delay;
+	-moz-transition:$prop $duration $easing $delay;
+	-ms-transition:$prop $duration $easing $delay;
+	-o-transition:$prop $duration $easing $delay;
+	transition:$prop $duration $easing $delay;
+}
+
+@mixin transform($val) {
+	-webkit-transform:$val;
+	-moz-transform:$val;
+	-ms-transform:$val;
+	-o-transform:$val;
+	transform:$val;
+}
+
+.csstransitions.csstransforms {
+	.deck-container {
+		overflow-y:hidden;
+		
+		> .slide {
+			-webkit-transition:-webkit-transform 500ms ease-in-out;
+			-moz-transition:-moz-transform 500ms ease-in-out;
+			-ms-transition:-ms-transform 500ms ease-in-out;
+			-o-transition:-o-transform 500ms ease-in-out;
+			transition:transform 500ms ease-in-out;
+		}
+	}
+	
+	.deck-container:not(.deck-menu) {
+		> .slide {
+			position:absolute;
+			top:0;
+			left:0;
+			-webkit-box-sizing: border-box;
+			-moz-box-sizing: border-box;
+			box-sizing: border-box;
+			width:100%;
+			padding:0 48px;
+			
+			.slide {
+				position:relative;
+				left:0;
+				top:0;
+				-webkit-transition:-webkit-transform 500ms ease-in-out, opacity 500ms ease-in-out;
+				-moz-transition:-moz-transform 500ms ease-in-out, opacity 500ms ease-in-out;
+				-ms-transition:-ms-transform 500ms ease-in-out, opacity 500ms ease-in-out;
+				-o-transition:-o-transform 500ms ease-in-out, opacity 500ms ease-in-out;
+				transition:-webkit-transform 500ms ease-in-out, opacity 500ms ease-in-out;
+			}
+
+			.deck-next, .deck-after {
+				visibility:visible;
+				@include translate(0, 1600px);
+			}
+		}
+
+		> .deck-previous {
+			@include translate(0, -200%);
+		}
+
+		> .deck-before {
+			@include translate(0, -400%);
+		}
+
+		> .deck-next {
+			@include translate(0, 200%);
+		}
+
+		> .deck-after {
+			@include translate(0, 400%);
+		}
+		
+		> .deck-before, > .deck-previous {
+			.slide {
+				visibility:visible;
+			}
+		}
+
+		> .deck-child-current {
+			@include transform(none);
+		}
+	}
+	
+	.deck-prev-link {
+		left:auto;
+		right:8px;
+		top:59px;
+		@include rotate(90deg);
+	}
+	
+	.deck-next-link {
+		top:99px;
+		@include rotate(90deg);
+	}
+}
\ No newline at end of file

Propchange: incubator/calcite/releases/0.9-incubating/src/site/resources/slides/themes/transition/vertical-slide.scss
------------------------------------------------------------------------------
    svn:executable = *

Added: incubator/calcite/releases/0.9-incubating/src/site/site.xml
URL: http://svn.apache.org/viewvc/incubator/calcite/releases/0.9-incubating/src/site/site.xml?rev=1633972&view=auto
==============================================================================
--- incubator/calcite/releases/0.9-incubating/src/site/site.xml (added)
+++ incubator/calcite/releases/0.9-incubating/src/site/site.xml Thu Oct 23 22:27:44 2014
@@ -0,0 +1,132 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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 name="Calcite" xmlns="http://maven.apache.org/DECORATION/1.3.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/DECORATION/1.3.0 http://maven.apache.org/xsd/decoration-1.3.0.xsd">
+
+    <skin>
+        <groupId>org.apache.maven.skins</groupId>
+        <artifactId>maven-fluido-skin</artifactId>
+        <version>1.3.0</version>
+    </skin>
+
+    <custom>
+        <fluidoSkin>
+            <project>Apache Calcite</project>
+            <topBarEnabled>true</topBarEnabled>
+            <topBarContainerStyle>width: 68%;</topBarContainerStyle>
+            <sideBarEnabled>false</sideBarEnabled>
+            <leftColumnClass>span2</leftColumnClass>
+            <bodyColumnClass>span10</bodyColumnClass>
+            <googleSearch>
+                <sitesearch>http://calcite.incubator.apache.org</sitesearch>
+            </googleSearch>
+            <facebookLike/>
+            <googlePlusOne/>
+        </fluidoSkin>
+    </custom>
+
+    <bannerLeft>
+        <name>Calcite</name>
+        <src>./images/calcite-logo.png</src>
+        <href>http://calcite.incubator.apache.org/index.html</href>
+        <width>200px</width>
+        <height>45px</height>
+    </bannerLeft>
+
+    <bannerRight>
+        <name>Apache Incubator</name>
+        <src>./images/apache-incubator-logo.png</src>
+        <href>http://incubator.apache.org</href>
+    </bannerRight>
+
+    <publishDate position="right"/>
+    <version position="none"/>
+
+    <body>
+        <head>
+            <script type="text/javascript">
+                $( document ).ready( function() { $( '.carousel' ).carousel( { interval: 3500 } ) } );
+            </script>
+        </head>
+
+        <breadcrumbs>
+            <item name="Apache" href="http://www.apache.org"/>
+            <item name="Calcite" title="Apache Calcite" href="index.html"/>
+        </breadcrumbs>
+
+        <menu name="Calcite">
+            <item name="About" href="index.html"/>
+            <item name="Wiki" href="https://cwiki.apache.org/confluence/display/CALCITE/"/>
+            <item name="News" href="https://cwiki.apache.org/confluence/display/CALCITE/News"/>
+            <item name="Git" href="https://git-wip-us.apache.org/repos/asf/incubator-calcite.git" />
+            <item name="Svn" href="https://svn.apache.org/repos/asf/incubator/calcite" />
+            <item name="Jira" href="https://issues.apache.org/jira/browse/CALCITE" />
+            <item name="Powered by" href="https://cwiki.apache.org/confluence/display/CALCITE/PoweredBy" />
+            <item name="Acknowledgements" href="https://cwiki.apache.org/confluence/display/CALCITE/Acknowledgements" />
+            <item name="Blog" href="http://blogs.apache.org/calcite/" />
+        </menu>
+
+        <menu name="Project Information">
+            <item name="Summary" href="project-info.html" />
+            <item name="Mailing Lists" href="mail-lists.html" />
+            <item name="IRC" href="http://webchat.freenode.net?channels=apachecalcite&amp;uio=d4" />
+            <item name="Team" href="team-list.html" />
+            <item name="Issue Tracking" href="issue-tracking.html" />
+            <item name="Source Repository" href="source-repository.html" />
+            <item name="License" href="license.html" />
+        </menu>
+
+        <menu name="Releases">
+            <item name="0.9-incubating" href="http://www.apache.org/dyn/closer.cgi/incubator/calcite/0.9-incubating"/>
+            <item name="Coming soon" href="https://cwiki.apache.org/confluence/display/CALCITE/Roadmap"/>
+        </menu>
+
+        <menu name="Documentation">
+            <item name="current" href="./GettingStarted.html"/>
+            <item name="0.9-incubating" href="./0.9-incubating/index.html"/>
+        </menu>
+
+        <menu name="Resources">
+            <item name="Overview" href="./slides/calcite-overview.html"/>
+            <item name="User Guide" href="./slides/calcite-user-guide.html"/>
+            <item name="Getting Started" href="./GettingStarted.html"/>
+            <item name="Architecture" href="./CalciteDocumentation.html"/>
+            <item name="Installation" href="./InstallationSteps.html"/>
+            <item name="On Boarding" href="./OnBoarding.html"/>
+            <item name="Entity Specification" href="./EntitySpecification.html"/>
+            <item name="Client (Calcite CLI)" href="./CalciteCLI.html"/>
+            <item name="Rest API" href="./restapi/ResourceList.html"/>
+            <item name="Hive Integration" href="./HiveIntegration.html"/>
+            <item name="Security" href="./Security.html"/>
+        </menu>
+
+        <menu name="ASF">
+            <item name="How Apache Works" href="http://www.apache.org/foundation/how-it-works.html"/>
+            <item name="Foundation" href="http://www.apache.org/foundation/"/>
+            <item name="Sponsoring Apache" href="http://www.apache.org/foundation/sponsorship.html"/>
+            <item name="Thanks" href="http://www.apache.org/foundation/thanks.html"/>
+        </menu>
+
+        <footer>
+            © 2011-2012 The Apache Software Foundation. Apache Calcite, Calcite, Apache, the Apache feather logo,
+            and the Apache Calcite project logo are trademarks of The Apache Software Foundation.
+        </footer>
+    </body>
+</project>

Added: incubator/calcite/releases/0.9-incubating/src/site/twiki/LICENSE.txt
URL: http://svn.apache.org/viewvc/incubator/calcite/releases/0.9-incubating/src/site/twiki/LICENSE.txt?rev=1633972&view=auto
==============================================================================
--- incubator/calcite/releases/0.9-incubating/src/site/twiki/LICENSE.txt (added)
+++ incubator/calcite/releases/0.9-incubating/src/site/twiki/LICENSE.txt Thu Oct 23 22:27:44 2014
@@ -0,0 +1,3 @@
+All files in this directory and subdirectories are under Apache License Version 2.0.
+The reason being Maven Doxia plugin that converts twiki to html does not have
+commenting out feature.

Added: incubator/calcite/releases/0.9-incubating/src/site/twiki/index.twiki
URL: http://svn.apache.org/viewvc/incubator/calcite/releases/0.9-incubating/src/site/twiki/index.twiki?rev=1633972&view=auto
==============================================================================
--- incubator/calcite/releases/0.9-incubating/src/site/twiki/index.twiki (added)
+++ incubator/calcite/releases/0.9-incubating/src/site/twiki/index.twiki Thu Oct 23 22:27:44 2014
@@ -0,0 +1,54 @@
+---+ Apache Calcite - A Dynamic Data Management Framework
+
+Apache Calcite is a dynamic data management framework.
+
+Calcite was accepted as an incubation project in August 2014 and is now in apache incubation.
+
+
+<div id="components" class="carousel slide">
+<!--  Carousel items  -->
+<div class="carousel-inner">
+    <div class="active item">
+        <div class="hero-unit">
+            <h3>Provides </h3>
+            <p>Coming soon...</p>
+            <!--
+            <p>
+                <a class="btn btn-primary pull-right" href="././docs/GettingStarted.html">Learn more</a>
+            </p>
+            -->
+        </div>
+    </div>
+    <div class="item">
+        <div class="hero-unit">
+            <h3>Introduces </h3>
+            <p>Coming soon...</p>
+        </div>
+    </div>
+    <div class="item">
+        <div class="hero-unit">
+            <h3>Provides </h3>
+            <p>Coming soon...</p>
+        </div>
+    </div>
+    <div class="item">
+        <div class="hero-unit">
+            <h3>Data Motion</h3>
+            <p>Data Import &amp; Export from DBs, ...</p>
+        </div>
+    </div>
+    <div class="item">
+        <div class="hero-unit">
+            <h3>Data Discovery</h3>
+            <p>Coming soon...</p>
+        </div>
+    </div>
+</div>
+</div>
+
+---++ Getting Involved
+
+Developers interested in getting involved with Falcon may join the [[./mail-lists][mailing lists]],
+[[https://issues.apache.org/jira/browse/CALCITE][report bugs]], retrieve code from the
+[[./source-repository][version control system]], and make
+[[./wiki/HowToContribute][contributions]].

Added: incubator/calcite/releases/pom.xml
URL: http://svn.apache.org/viewvc/incubator/calcite/releases/pom.xml?rev=1633972&view=auto
==============================================================================
--- incubator/calcite/releases/pom.xml (added)
+++ incubator/calcite/releases/pom.xml Thu Oct 23 22:27:44 2014
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.calcite</groupId>
+        <artifactId>calcite-website</artifactId>
+        <version>0.1-SNAPSHOT</version>
+    </parent>
+    <artifactId>calcite-website-releases</artifactId>
+    <version>0.1</version>
+    <packaging>pom</packaging>
+
+    <name>Apache Calcite - Release documentation</name>
+
+    <modules>
+        <module>0.9-incubating</module>
+    </modules>
+
+</project>

Added: incubator/calcite/site/0.9-incubating/css/apache-maven-fluido-1.3.0.min.css
URL: http://svn.apache.org/viewvc/incubator/calcite/site/0.9-incubating/css/apache-maven-fluido-1.3.0.min.css?rev=1633972&view=auto
==============================================================================
--- incubator/calcite/site/0.9-incubating/css/apache-maven-fluido-1.3.0.min.css (added)
+++ incubator/calcite/site/0.9-incubating/css/apache-maven-fluido-1.3.0.min.css Thu Oct 23 22:27:44 2014
@@ -0,0 +1,9 @@
+/*!
+ * Bootstrap v2.1.0
+ *
+ * Copyright 2012 Twitter, Inc
+ * Licensed under the Apache License v2.0
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Designed and built with all the love in the world @twitter by @mdo and @fat.

[... 3 lines stripped ...]
Added: incubator/calcite/site/0.9-incubating/css/print.css
URL: http://svn.apache.org/viewvc/incubator/calcite/site/0.9-incubating/css/print.css?rev=1633972&view=auto
==============================================================================
--- incubator/calcite/site/0.9-incubating/css/print.css (added)
+++ incubator/calcite/site/0.9-incubating/css/print.css Thu Oct 23 22:27:44 2014
@@ -0,0 +1,23 @@
+/*
+ * 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.
+ */
+
+/* $Id: print.css 1201871 2011-11-14 20:18:24Z simonetripodi $ */
+
+#banner, #footer, #leftcol, #breadcrumbs, .docs #toc, .docs .courtesylinks, #leftColumn, #navColumn {display: none !important;}
+#bodyColumn, body.docs div.docs {margin: 0 !important;border: none !important}

Added: incubator/calcite/site/0.9-incubating/css/site.css
URL: http://svn.apache.org/viewvc/incubator/calcite/site/0.9-incubating/css/site.css?rev=1633972&view=auto
==============================================================================
--- incubator/calcite/site/0.9-incubating/css/site.css (added)
+++ incubator/calcite/site/0.9-incubating/css/site.css Thu Oct 23 22:27:44 2014
@@ -0,0 +1 @@
+/* You can override this file with your own styles */
\ No newline at end of file

Added: incubator/calcite/site/0.9-incubating/dependencies.html
URL: http://svn.apache.org/viewvc/incubator/calcite/site/0.9-incubating/dependencies.html?rev=1633972&view=auto
==============================================================================
--- incubator/calcite/site/0.9-incubating/dependencies.html (added)
+++ incubator/calcite/site/0.9-incubating/dependencies.html Thu Oct 23 22:27:44 2014
@@ -0,0 +1,272 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-10-23
+ | Rendered using Apache Maven Fluido Skin 1.3.0
+-->
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <meta name="Date-Revision-yyyymmdd" content="20141023" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Calcite - Project Dependencies</title>
+    <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
+    <link rel="stylesheet" href="./css/site.css" />
+    <link rel="stylesheet" href="./css/print.css" media="print" />
+
+      
+    <script type="text/javascript" src="./js/apache-maven-fluido-1.3.0.min.js"></script>
+
+                          
+        
+<script type="text/javascript">$( document ).ready( function() { $( '.carousel' ).carousel( { interval: 3500 } ) } );</script>
+          
+            </head>
+        <body class="topBarEnabled">
+          
+                        
+                    
+                
+
+    <div id="topbar" class="navbar navbar-fixed-top ">
+      <div class="navbar-inner">
+                                  <div class="container" style="width: 68%;"><div class="nav-collapse">
+            
+                
+                                <ul class="nav">
+                          <li class="dropdown">
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Calcite <b class="caret"></b></a>
+        <ul class="dropdown-menu">
+        
+                      <li>      <a href="index.html"  title="About">About</a>
+</li>
+                  
+                      <li>      <a href="https://cwiki.apache.org/confluence/display/CALCITE/"  title="Wiki">Wiki</a>
+</li>
+                  
+                      <li>      <a href="https://cwiki.apache.org/confluence/display/CALCITE/News"  title="News">News</a>
+</li>
+                  
+                      <li>      <a href="https://git-wip-us.apache.org/repos/asf/incubator-calcite.git"  title="Git">Git</a>
+</li>
+                  
+                      <li>      <a href="https://svn.apache.org/repos/asf/incubator/calcite"  title="Svn">Svn</a>
+</li>
+                  
+                      <li>      <a href="https://issues.apache.org/jira/browse/CALCITE"  title="Jira">Jira</a>
+</li>
+                  
+                      <li>      <a href="https://cwiki.apache.org/confluence/display/CALCITE/PoweredBy"  title="Powered by">Powered by</a>
+</li>
+                  
+                      <li>      <a href="https://cwiki.apache.org/confluence/display/CALCITE/Acknowledgements"  title="Acknowledgements">Acknowledgements</a>
+</li>
+                  
+                      <li>      <a href="http://blogs.apache.org/calcite/"  title="Blog">Blog</a>
+</li>
+                          </ul>
+      </li>
+                <li class="dropdown">
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Project Information <b class="caret"></b></a>
+        <ul class="dropdown-menu">
+        
+                      <li>      <a href="project-info.html"  title="Summary">Summary</a>
+</li>
+                  
+                      <li>      <a href="mail-lists.html"  title="Mailing Lists">Mailing Lists</a>
+</li>
+                  
+                      <li>      <a href="http://webchat.freenode.net?channels=apachecalcite&uio=d4"  title="IRC">IRC</a>
+</li>
+                  
+                      <li>      <a href="team-list.html"  title="Team">Team</a>
+</li>
+                  
+                      <li>      <a href="issue-tracking.html"  title="Issue Tracking">Issue Tracking</a>
+</li>
+                  
+                      <li>      <a href="source-repository.html"  title="Source Repository">Source Repository</a>
+</li>
+                  
+                      <li>      <a href="license.html"  title="License">License</a>
+</li>
+                          </ul>
+      </li>
+                <li class="dropdown">
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Releases <b class="caret"></b></a>
+        <ul class="dropdown-menu">
+        
+                      <li>      <a href="http://www.apache.org/dyn/closer.cgi/incubator/calcite/0.9-incubating"  title="0.9-incubating">0.9-incubating</a>
+</li>
+                  
+                      <li>      <a href="https://cwiki.apache.org/confluence/display/CALCITE/Roadmap"  title="Coming soon">Coming soon</a>
+</li>
+                          </ul>
+      </li>
+                <li class="dropdown">
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Documentation <b class="caret"></b></a>
+        <ul class="dropdown-menu">
+        
+                      <li>      <a href="GettingStarted.html"  title="current">current</a>
+</li>
+                  
+                      <li>      <a href="0.9-incubating/index.html"  title="0.9-incubating">0.9-incubating</a>
+</li>
+                          </ul>
+      </li>
+                <li class="dropdown">
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Resources <b class="caret"></b></a>
+        <ul class="dropdown-menu">
+        
+                      <li>      <a href="slides/calcite-overview.html"  title="Overview">Overview</a>
+</li>
+                  
+                      <li>      <a href="slides/calcite-user-guide.html"  title="User Guide">User Guide</a>
+</li>
+                  
+                      <li>      <a href="GettingStarted.html"  title="Getting Started">Getting Started</a>
+</li>
+                  
+                      <li>      <a href="CalciteDocumentation.html"  title="Architecture">Architecture</a>
+</li>
+                  
+                      <li>      <a href="InstallationSteps.html"  title="Installation">Installation</a>
+</li>
+                  
+                      <li>      <a href="OnBoarding.html"  title="On Boarding">On Boarding</a>
+</li>
+                  
+                      <li>      <a href="EntitySpecification.html"  title="Entity Specification">Entity Specification</a>
+</li>
+                  
+                      <li>      <a href="CalciteCLI.html"  title="Client (Calcite CLI)">Client (Calcite CLI)</a>
+</li>
+                  
+                      <li>      <a href="restapi/ResourceList.html"  title="Rest API">Rest API</a>
+</li>
+                  
+                      <li>      <a href="HiveIntegration.html"  title="Hive Integration">Hive Integration</a>
+</li>
+                  
+                      <li>      <a href="Security.html"  title="Security">Security</a>
+</li>
+                          </ul>
+      </li>
+                <li class="dropdown">
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">ASF <b class="caret"></b></a>
+        <ul class="dropdown-menu">
+        
+                      <li>      <a href="http://www.apache.org/foundation/how-it-works.html"  title="How Apache Works">How Apache Works</a>
+</li>
+                  
+                      <li>      <a href="http://www.apache.org/foundation/"  title="Foundation">Foundation</a>
+</li>
+                  
+                      <li>      <a href="http://www.apache.org/foundation/sponsorship.html"  title="Sponsoring Apache">Sponsoring Apache</a>
+</li>
+                  
+                      <li>      <a href="http://www.apache.org/foundation/thanks.html"  title="Thanks">Thanks</a>
+</li>
+                          </ul>
+      </li>
+                  </ul>
+          
+                      <form id="search-form" action="http://www.google.com/search" method="get"  class="navbar-search pull-right" >
+    
+  <input value="http://calcite.incubator.apache.org" name="sitesearch" type="hidden"/>
+  <input class="search-query" name="q" id="query" type="text" />
+</form>
+<script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=search-form"></script>
+          
+                            
+            
+            
+            
+    <iframe src="http://www.facebook.com/plugins/like.php?href=http://calcite.incubator.apache.org/calcite-website-releases/calcite-website-0.9-incubating&send=false&layout=button_count&show-faces=false&action=like&colorscheme=dark"
+        scrolling="no" frameborder="0"
+        style="border:none; width:80px; height:20px; margin-top: 10px;"  class="pull-right" ></iframe>
+                        
+    <script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
+
+        <ul class="nav pull-right"><li style="margin-top: 10px;">
+    
+    <div class="g-plusone" data-href="http://calcite.incubator.apache.org/calcite-website-releases/calcite-website-0.9-incubating" data-size="medium"  width="60px" align="right" ></div>
+
+        </li></ul>
+                              
+                   
+                      </div>
+          
+        </div>
+      </div>
+    </div>
+    
+        <div class="container">
+          <div id="banner">
+        <div class="pull-left">
+                                                  <a href="../../index.html" id="bannerLeft">
+                                                                                                <img src="images/calcite-logo.png"  alt="Calcite" width="200px" height="45px"/>
+                </a>
+                      </div>
+        <div class="pull-right">                  <a href="http://incubator.apache.org" id="bannerRight">
+                                                                                                <img src="images/apache-incubator-logo.png"  alt="Apache Incubator"/>
+                </a>
+      </div>
+        <div class="clear"><hr/></div>
+      </div>
+
+      <div id="breadcrumbs">
+        <ul class="breadcrumb">
+                
+                    
+                              <li class="">
+                    <a href="http://www.apache.org" class="externalLink" title="Apache">
+        Apache</a>
+        </li>
+      <li class="divider ">/</li>
+            <li class="">
+                    <a href="index.html" title="Calcite">
+        Calcite</a>
+        </li>
+      <li class="divider ">/</li>
+        <li class="">Project Dependencies</li>
+        
+                
+                    
+                  <li id="publishDate" class="pull-right">Last Published: 2014-10-23</li> 
+            
+                            </ul>
+      </div>
+
+      
+                        
+        <div id="bodyColumn" >
+                                  
+            <a name="Project_Dependencies"></a>
+<div class="section">
+<h2>Project Dependencies<a name="Project_Dependencies"></a></h2>
+<p>There are no dependencies for this project. It is a standalone application that does not depend on any other project.</p></div>
+                  </div>
+          </div>
+
+    <hr/>
+
+    <footer>
+            <div class="container">
+              <div class="row span12">Copyright &copy;                    2014
+                        <a href="http://www.apache.org">Apache Software Foundation</a>.
+            All Rights Reserved.      
+                    
+      </div>
+
+                          
+                <p id="poweredBy" class="pull-right">
+                          <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+        <img class="builtBy" alt="Built by Maven" src="./images/logos/maven-feather.png" />
+      </a>
+              </p>
+        
+                </div>
+    </footer>
+  </body>
+</html>

Added: incubator/calcite/site/0.9-incubating/dependency-convergence.html
URL: http://svn.apache.org/viewvc/incubator/calcite/site/0.9-incubating/dependency-convergence.html?rev=1633972&view=auto
==============================================================================
--- incubator/calcite/site/0.9-incubating/dependency-convergence.html (added)
+++ incubator/calcite/site/0.9-incubating/dependency-convergence.html Thu Oct 23 22:27:44 2014
@@ -0,0 +1,302 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-10-23
+ | Rendered using Apache Maven Fluido Skin 1.3.0
+-->
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <meta name="Date-Revision-yyyymmdd" content="20141023" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Calcite - Reactor Dependency Convergence</title>
+    <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
+    <link rel="stylesheet" href="./css/site.css" />
+    <link rel="stylesheet" href="./css/print.css" media="print" />
+
+      
+    <script type="text/javascript" src="./js/apache-maven-fluido-1.3.0.min.js"></script>
+
+                          
+        
+<script type="text/javascript">$( document ).ready( function() { $( '.carousel' ).carousel( { interval: 3500 } ) } );</script>
+          
+            </head>
+        <body class="topBarEnabled">
+          
+                        
+                    
+                
+
+    <div id="topbar" class="navbar navbar-fixed-top ">
+      <div class="navbar-inner">
+                                  <div class="container" style="width: 68%;"><div class="nav-collapse">
+            
+                
+                                <ul class="nav">
+                          <li class="dropdown">
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Calcite <b class="caret"></b></a>
+        <ul class="dropdown-menu">
+        
+                      <li>      <a href="index.html"  title="About">About</a>
+</li>
+                  
+                      <li>      <a href="https://cwiki.apache.org/confluence/display/CALCITE/"  title="Wiki">Wiki</a>
+</li>
+                  
+                      <li>      <a href="https://cwiki.apache.org/confluence/display/CALCITE/News"  title="News">News</a>
+</li>
+                  
+                      <li>      <a href="https://git-wip-us.apache.org/repos/asf/incubator-calcite.git"  title="Git">Git</a>
+</li>
+                  
+                      <li>      <a href="https://svn.apache.org/repos/asf/incubator/calcite"  title="Svn">Svn</a>
+</li>
+                  
+                      <li>      <a href="https://issues.apache.org/jira/browse/CALCITE"  title="Jira">Jira</a>
+</li>
+                  
+                      <li>      <a href="https://cwiki.apache.org/confluence/display/CALCITE/PoweredBy"  title="Powered by">Powered by</a>
+</li>
+                  
+                      <li>      <a href="https://cwiki.apache.org/confluence/display/CALCITE/Acknowledgements"  title="Acknowledgements">Acknowledgements</a>
+</li>
+                  
+                      <li>      <a href="http://blogs.apache.org/calcite/"  title="Blog">Blog</a>
+</li>
+                          </ul>
+      </li>
+                <li class="dropdown">
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Project Information <b class="caret"></b></a>
+        <ul class="dropdown-menu">
+        
+                      <li>      <a href="project-info.html"  title="Summary">Summary</a>
+</li>
+                  
+                      <li>      <a href="mail-lists.html"  title="Mailing Lists">Mailing Lists</a>
+</li>
+                  
+                      <li>      <a href="http://webchat.freenode.net?channels=apachecalcite&uio=d4"  title="IRC">IRC</a>
+</li>
+                  
+                      <li>      <a href="team-list.html"  title="Team">Team</a>
+</li>
+                  
+                      <li>      <a href="issue-tracking.html"  title="Issue Tracking">Issue Tracking</a>
+</li>
+                  
+                      <li>      <a href="source-repository.html"  title="Source Repository">Source Repository</a>
+</li>
+                  
+                      <li>      <a href="license.html"  title="License">License</a>
+</li>
+                          </ul>
+      </li>
+                <li class="dropdown">
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Releases <b class="caret"></b></a>
+        <ul class="dropdown-menu">
+        
+                      <li>      <a href="http://www.apache.org/dyn/closer.cgi/incubator/calcite/0.9-incubating"  title="0.9-incubating">0.9-incubating</a>
+</li>
+                  
+                      <li>      <a href="https://cwiki.apache.org/confluence/display/CALCITE/Roadmap"  title="Coming soon">Coming soon</a>
+</li>
+                          </ul>
+      </li>
+                <li class="dropdown">
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Documentation <b class="caret"></b></a>
+        <ul class="dropdown-menu">
+        
+                      <li>      <a href="GettingStarted.html"  title="current">current</a>
+</li>
+                  
+                      <li>      <a href="0.9-incubating/index.html"  title="0.9-incubating">0.9-incubating</a>
+</li>
+                          </ul>
+      </li>
+                <li class="dropdown">
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Resources <b class="caret"></b></a>
+        <ul class="dropdown-menu">
+        
+                      <li>      <a href="slides/calcite-overview.html"  title="Overview">Overview</a>
+</li>
+                  
+                      <li>      <a href="slides/calcite-user-guide.html"  title="User Guide">User Guide</a>
+</li>
+                  
+                      <li>      <a href="GettingStarted.html"  title="Getting Started">Getting Started</a>
+</li>
+                  
+                      <li>      <a href="CalciteDocumentation.html"  title="Architecture">Architecture</a>
+</li>
+                  
+                      <li>      <a href="InstallationSteps.html"  title="Installation">Installation</a>
+</li>
+                  
+                      <li>      <a href="OnBoarding.html"  title="On Boarding">On Boarding</a>
+</li>
+                  
+                      <li>      <a href="EntitySpecification.html"  title="Entity Specification">Entity Specification</a>
+</li>
+                  
+                      <li>      <a href="CalciteCLI.html"  title="Client (Calcite CLI)">Client (Calcite CLI)</a>
+</li>
+                  
+                      <li>      <a href="restapi/ResourceList.html"  title="Rest API">Rest API</a>
+</li>
+                  
+                      <li>      <a href="HiveIntegration.html"  title="Hive Integration">Hive Integration</a>
+</li>
+                  
+                      <li>      <a href="Security.html"  title="Security">Security</a>
+</li>
+                          </ul>
+      </li>
+                <li class="dropdown">
+        <a href="#" class="dropdown-toggle" data-toggle="dropdown">ASF <b class="caret"></b></a>
+        <ul class="dropdown-menu">
+        
+                      <li>      <a href="http://www.apache.org/foundation/how-it-works.html"  title="How Apache Works">How Apache Works</a>
+</li>
+                  
+                      <li>      <a href="http://www.apache.org/foundation/"  title="Foundation">Foundation</a>
+</li>
+                  
+                      <li>      <a href="http://www.apache.org/foundation/sponsorship.html"  title="Sponsoring Apache">Sponsoring Apache</a>
+</li>
+                  
+                      <li>      <a href="http://www.apache.org/foundation/thanks.html"  title="Thanks">Thanks</a>
+</li>
+                          </ul>
+      </li>
+                  </ul>
+          
+                      <form id="search-form" action="http://www.google.com/search" method="get"  class="navbar-search pull-right" >
+    
+  <input value="http://calcite.incubator.apache.org" name="sitesearch" type="hidden"/>
+  <input class="search-query" name="q" id="query" type="text" />
+</form>
+<script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=search-form"></script>
+          
+                            
+            
+            
+            
+    <iframe src="http://www.facebook.com/plugins/like.php?href=http://calcite.incubator.apache.org/calcite-website-releases/calcite-website-0.9-incubating&send=false&layout=button_count&show-faces=false&action=like&colorscheme=dark"
+        scrolling="no" frameborder="0"
+        style="border:none; width:80px; height:20px; margin-top: 10px;"  class="pull-right" ></iframe>
+                        
+    <script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
+
+        <ul class="nav pull-right"><li style="margin-top: 10px;">
+    
+    <div class="g-plusone" data-href="http://calcite.incubator.apache.org/calcite-website-releases/calcite-website-0.9-incubating" data-size="medium"  width="60px" align="right" ></div>
+
+        </li></ul>
+                              
+                   
+                      </div>
+          
+        </div>
+      </div>
+    </div>
+    
+        <div class="container">
+          <div id="banner">
+        <div class="pull-left">
+                                                  <a href="../../index.html" id="bannerLeft">
+                                                                                                <img src="images/calcite-logo.png"  alt="Calcite" width="200px" height="45px"/>
+                </a>
+                      </div>
+        <div class="pull-right">                  <a href="http://incubator.apache.org" id="bannerRight">
+                                                                                                <img src="images/apache-incubator-logo.png"  alt="Apache Incubator"/>
+                </a>
+      </div>
+        <div class="clear"><hr/></div>
+      </div>
+
+      <div id="breadcrumbs">
+        <ul class="breadcrumb">
+                
+                    
+                              <li class="">
+                    <a href="http://www.apache.org" class="externalLink" title="Apache">
+        Apache</a>
+        </li>
+      <li class="divider ">/</li>
+            <li class="">
+                    <a href="index.html" title="Calcite">
+        Calcite</a>
+        </li>
+      <li class="divider ">/</li>
+        <li class="">Reactor Dependency Convergence</li>
+        
+                
+                    
+                  <li id="publishDate" class="pull-right">Last Published: 2014-10-23</li> 
+            
+                            </ul>
+      </div>
+
+      
+                        
+        <div id="bodyColumn" >
+                                  
+            <div class="section">
+<h2>Reactor Dependency Convergence<a name="Reactor_Dependency_Convergence"></a></h2>
+<table border="0" class="table table-striped"><caption>
+  <b>Legend:</b>
+</caption>
+<tr class="a">
+<td><img alt="success" src="images/icon_success_sml.gif" /></td>
+<td>All projects share one version of the dependency.</td></tr>
+<tr class="b">
+<td><img alt="error" src="images/icon_error_sml.gif" /></td>
+<td>At least one project has a differing version of the dependency.</td></tr></table><br />
+<table border="0" class="table table-striped"><caption>
+  <b>Statistics:</b>
+</caption>
+<tr class="a">
+<th>Number of sub-projects:</th>
+<td>4</td></tr>
+<tr class="b">
+<th>Number of dependencies (NOD):</th>
+<td>0</td></tr>
+<tr class="a">
+<th>Number of unique artifacts (NOA):</th>
+<td>0</td></tr>
+<tr class="b">
+<th>Number of SNAPSHOT artifacts (NOS):</th>
+<td>0</td></tr>
+<tr class="a">
+<th>Convergence (NOD/NOA):</th>
+<td><img alt="error" src="images/icon_error_sml.gif" />&#160;<b>0%</b></td></tr>
+<tr class="b">
+<th>Ready for Release (100% Convergence and no SNAPSHOTS):</th>
+<td><img alt="error" src="images/icon_error_sml.gif" />&#160;<b>Error</b><br />You do not have 100% convergence.</td></tr></table></div>
+<div class="section">
+<h3>Dependencies used in sub-projects<a name="Dependencies_used_in_sub-projects"></a></h3></div>
+                  </div>
+          </div>
+
+    <hr/>
+
+    <footer>
+            <div class="container">
+              <div class="row span12">Copyright &copy;                    2014
+                        <a href="http://www.apache.org">Apache Software Foundation</a>.
+            All Rights Reserved.      
+                    
+      </div>
+
+                          
+                <p id="poweredBy" class="pull-right">
+                          <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+        <img class="builtBy" alt="Built by Maven" src="./images/logos/maven-feather.png" />
+      </a>
+              </p>
+        
+                </div>
+    </footer>
+  </body>
+</html>