Modified: helix/site-content/1.0.2-docs/auto_exit_maintenance.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/auto_exit_maintenance.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/auto_exit_maintenance.html (original) +++ helix/site-content/1.0.2-docs/auto_exit_maintenance.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Auto-exit of Maintenance Mode</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header>
Modified: helix/site-content/1.0.2-docs/css/lightbox.css URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/css/lightbox.css?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/css/lightbox.css (original) +++ helix/site-content/1.0.2-docs/css/lightbox.css Thu Oct 20 02:03:34 2022 @@ -1,37 +1,45 @@ -/* line 6, ../sass/lightbox.sass */ -#lightboxOverlay { +/* Preload images */ +body:after { + content: url(../img/close.png) url(../img/loading.gif) url(../img/prev.png) url(../img/next.png); + display: none; +} + +.lightboxOverlay { position: absolute; top: 0; left: 0; z-index: 9999; background-color: black; - filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85); - opacity: 0.85; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); + opacity: 0.8; display: none; } -/* line 15, ../sass/lightbox.sass */ -#lightbox { +.lightbox { position: absolute; left: 0; width: 100%; z-index: 10000; text-align: center; line-height: 0; - font-family: "lucida grande", tahoma, verdana, arial, sans-serif; font-weight: normal; } -/* line 24, ../sass/lightbox.sass */ -#lightbox img { - width: auto; + +.lightbox .lb-image { + display: block; height: auto; + max-width: inherit; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; } -/* line 27, ../sass/lightbox.sass */ -#lightbox a img { + +.lightbox a img { border: none; } -/* line 30, ../sass/lightbox.sass */ .lb-outerContainer { position: relative; background-color: white; @@ -45,30 +53,35 @@ -o-border-radius: 4px; border-radius: 4px; } -/* line 38, ../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */ + .lb-outerContainer:after { content: ""; display: table; clear: both; } -/* line 39, ../sass/lightbox.sass */ .lb-container { - padding: 10px; + padding: 4px; } -/* line 42, ../sass/lightbox.sass */ .lb-loader { position: absolute; - top: 40%; - left: 0%; + top: 43%; + left: 0; height: 25%; width: 100%; text-align: center; line-height: 0; } -/* line 51, ../sass/lightbox.sass */ +.lb-cancel { + display: block; + width: 32px; + height: 32px; + margin: 0 auto; + background: url(../img/loading.gif) no-repeat; +} + .lb-nav { position: absolute; top: 0; @@ -78,48 +91,57 @@ z-index: 10; } -/* line 59, ../sass/lightbox.sass */ .lb-container > .nav { left: 0; } -/* line 62, ../sass/lightbox.sass */ .lb-nav a { outline: none; + background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=='); } -/* line 65, ../sass/lightbox.sass */ .lb-prev, .lb-next { - width: 49%; height: 100%; - background-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"); - /* Trick IE into showing hover */ + cursor: pointer; display: block; } -/* line 72, ../sass/lightbox.sass */ -.lb-prev { +.lb-nav a.lb-prev { + width: 34%; left: 0; float: left; + background: url(../img/prev.png) left 48% no-repeat; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; + -webkit-transition: opacity 0.6s; + -moz-transition: opacity 0.6s; + -o-transition: opacity 0.6s; + transition: opacity 0.6s; +} + +.lb-nav a.lb-prev:hover { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; } -/* line 76, ../sass/lightbox.sass */ -.lb-next { +.lb-nav a.lb-next { + width: 64%; right: 0; float: right; + background: url(../img/next.png) right 48% no-repeat; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; + -webkit-transition: opacity 0.6s; + -moz-transition: opacity 0.6s; + -o-transition: opacity 0.6s; + transition: opacity 0.6s; } -/* line 81, ../sass/lightbox.sass */ -.lb-prev:hover { - background: url(../images/prev.png) left 48% no-repeat; -} - -/* line 85, ../sass/lightbox.sass */ -.lb-next:hover { - background: url(../images/next.png) right 48% no-repeat; +.lb-nav a.lb-next:hover { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; } -/* line 88, ../sass/lightbox.sass */ .lb-dataContainer { margin: 0 auto; padding-top: 5px; @@ -127,55 +149,62 @@ width: 100%; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; - -ms-border-bottom-left-radius: 4px; - -o-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; - -ms-border-bottom-right-radius: 4px; - -o-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; } -/* line 38, ../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */ + .lb-dataContainer:after { content: ""; display: table; clear: both; } -/* line 95, ../sass/lightbox.sass */ .lb-data { - padding: 0 10px; - color: #bbbbbb; + padding: 0 4px; + color: #ccc; } -/* line 98, ../sass/lightbox.sass */ + .lb-data .lb-details { width: 85%; float: left; text-align: left; line-height: 1.1em; } -/* line 103, ../sass/lightbox.sass */ + .lb-data .lb-caption { font-size: 13px; font-weight: bold; line-height: 1em; } -/* line 107, ../sass/lightbox.sass */ + .lb-data .lb-number { display: block; clear: left; padding-bottom: 1em; - font-size: 11px; + font-size: 12px; + color: #999999; } -/* line 112, ../sass/lightbox.sass */ + .lb-data .lb-close { - width: 35px; + display: block; float: right; - padding-bottom: 0.7em; + width: 30px; + height: 30px; + background: url(../img/close.png) top right no-repeat; + text-align: right; outline: none; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); + opacity: 0.7; + -webkit-transition: opacity 0.2s; + -moz-transition: opacity 0.2s; + -o-transition: opacity 0.2s; + transition: opacity 0.2s; } -/* line 117, ../sass/lightbox.sass */ + .lb-data .lb-close:hover { cursor: pointer; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; } \ No newline at end of file Modified: helix/site-content/1.0.2-docs/css/reflow-skin.css URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/css/reflow-skin.css?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/css/reflow-skin.css (original) +++ helix/site-content/1.0.2-docs/css/reflow-skin.css Thu Oct 20 02:03:34 2022 @@ -1,6 +1,6 @@ /* Jumps to in-page links (e.g. page.html#foo) do not honor fixed navbar. Use pseudo element to move them down. - Taken from http://nicolasgallagher.com/jump-links-and-viewport-positioning/demo/#method-B + Taken from https://nicolasgallagher.com/jump-links-and-viewport-positioning/demo/#method-B */ h1[id]:before, h2[id]:before, @@ -52,25 +52,20 @@ a[name]:before { width: 1170px; } } -@media (min-width: 768px) and (max-width: 979px) { - .navbar.affix .container { - width: 724px; - } -} -@media (max-width: 767px) { - .navbar.affix { - margin-right: -20px; - margin-left: -20px; - } -} + @media (max-width: 979px) { .navbar.affix { position: static; - margin-bottom: 20px; } - .navbar.affix .navbar-inner { - padding: 5px; + + /* Give a positive z-index to ToC bar, otherwise the pseudo elements before may overlap and + make the button unclickable. */ + #toc-bar { + position: relative; + z-index:1020; + margin-bottom: 20px; } + } /* Fix for header links - do not color/underline them */ Modified: helix/site-content/1.0.2-docs/dependencies.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/dependencies.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/dependencies.html (original) +++ helix/site-content/1.0.2-docs/dependencies.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-06-09 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Project Dependencies</li> - <li class="publishDate version-date pull-right">Last Published: 2022-06-09</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> @@ -500,14 +500,14 @@ <td align="left"><a class="externalLink" href="https://maven.restlet.talend.com">https://maven.restlet.talend.com</a></td> <td align="center">Yes</td> <td align="center">No</td> - <td align="center">Yes</td> + <td align="center">No</td> </tr> <tr class="b"> <td align="left">sonatype-nexus-snapshots</td> <td align="left"><a class="externalLink" href="http://oss.sonatype.org/content/repositories/snapshots">http://oss.sonatype.org/content/repositories/snapshots</a></td> <td align="center">No</td> <td align="center">Yes</td> - <td align="center">No</td> + <td align="center">Yes</td> </tr> <tr class="a"> <td align="left">apache.snapshots</td> @@ -524,7 +524,7 @@ <tr class="a"> <th>Artifact</th> <th>central</th> - <th>sonatype-nexus-snapshots</th> + <th>restlet.talend.com</th> <th>apache.snapshots</th> </tr> <tr class="b"> @@ -596,7 +596,7 @@ <tr class="b"> <th>Total</th> <th>central</th> - <th>sonatype-nexus-snapshots</th> + <th>restlet.talend.com</th> <th>apache.snapshots</th> </tr> <tr class="a"> Modified: helix/site-content/1.0.2-docs/dependency-info.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/dependency-info.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/dependency-info.html (original) +++ helix/site-content/1.0.2-docs/dependency-info.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-06-09 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Dependency Information</li> - <li class="publishDate version-date pull-right">Last Published: 2022-06-09</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/dependency-management.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/dependency-management.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/dependency-management.html (original) +++ helix/site-content/1.0.2-docs/dependency-management.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-06-09 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Project Dependency Management</li> - <li class="publishDate version-date pull-right">Last Published: 2022-06-09</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> @@ -159,17 +159,17 @@ </tr> <tr class="b"> <td align="left">org.apache.helix</td> - <td>helix-core</td> + <td><a class="externalLink" href="http://helix.apache.org/helix-core">helix-core</a></td> <td>1.0.5-SNAPSHOT</td> <td>jar</td> - <td>-</td> + <td><a class="externalLink" href="https://www.apache.org/licenses/LICENSE-2.0.txt">Apache License, Version 2.0</a></td> </tr> <tr class="a"> <td align="left">org.apache.helix</td> - <td>helix-core</td> + <td><a class="externalLink" href="http://helix.apache.org/helix-core">helix-core</a></td> <td>1.0.5-SNAPSHOT</td> <td>test-jar</td> - <td>-</td> + <td><a class="externalLink" href="https://www.apache.org/licenses/LICENSE-2.0.txt">Apache License, Version 2.0</a></td> </tr> <tr class="b"> <td align="left">org.apache.logging.log4j</td> Modified: helix/site-content/1.0.2-docs/design_crushed.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/design_crushed.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/design_crushed.html (original) +++ helix/site-content/1.0.2-docs/design_crushed.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>CrushED (Crush-based rebalancer with Even Distribution)</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/distribution-management.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/distribution-management.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/distribution-management.html (original) +++ helix/site-content/1.0.2-docs/distribution-management.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-06-09 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Project Distribution Management</li> - <li class="publishDate version-date pull-right">Last Published: 2022-06-09</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/download.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/download.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/download.html (original) +++ helix/site-content/1.0.2-docs/download.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -133,7 +133,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Apache Helix Downloads</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/index.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/index.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/index.html (original) +++ helix/site-content/1.0.2-docs/index.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Helix 1.0.2 Documentation</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/integration.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/integration.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/integration.html (original) +++ helix/site-content/1.0.2-docs/integration.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-06-09 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>CI Management</li> - <li class="publishDate version-date pull-right">Last Published: 2022-06-09</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/issue-tracking.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/issue-tracking.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/issue-tracking.html (original) +++ helix/site-content/1.0.2-docs/issue-tracking.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-06-09 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Issue Management</li> - <li class="publishDate version-date pull-right">Last Published: 2022-06-09</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/js/reflow-skin.js URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/js/reflow-skin.js?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/js/reflow-skin.js (original) +++ helix/site-content/1.0.2-docs/js/reflow-skin.js Thu Oct 20 02:03:34 2022 @@ -7,49 +7,11 @@ var $window = $(window) - // Fix table of contents when scrolled a certain offset - // Note that ToC list is not fixed, because if it is long, the bottom items may go outside the window. - // Also there are issues if page has full-width sections (e.g. thumbnails) after the main body section. - // For now only fixing the top navbar ToC. - $('#toc-bar').affix({ - offset: { - top: function () { return $window.width() <= 980 ? 290 : 210 } - , bottom: 270 - } - }) - // Start carousel $(function() { $('.carousel').carousel(); }); - - // Support for smooth scrolling and back button while scrolling - // Note: only run if smoothScroll is enabled - if (typeof($.smoothScroll) == typeof(Function)) { - $('a[href^="#"]:not([href^="#carousel"])').live('click', function() { - var slashedHash = '#/' + this.hash.slice(1); - if ( this.hash ) { - if ( slashedHash === location.hash ) { - $.smoothScroll({scrollTarget: this.hash}); - } else { - $.bbq.pushState(slashedHash); - } - - return false; - } - }); - - $(window).bind('hashchange', function(event) { - var tgt = location.hash.replace(/^#\/?/,''); - if ( document.getElementById(tgt) ) { - $.smoothScroll({scrollTarget: '#' + tgt}); - } - }); - - $(window).trigger('hashchange'); - } - // activate syntax higlighting with highlight.js // Note: only run if `hljs` exists if (typeof hljs != 'undefined') Modified: helix/site-content/1.0.2-docs/license.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/license.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/license.html (original) +++ helix/site-content/1.0.2-docs/license.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-06-09 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Project Licenses</li> - <li class="publishDate version-date pull-right">Last Published: 2022-06-09</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/mail-lists.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/mail-lists.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/mail-lists.html (original) +++ helix/site-content/1.0.2-docs/mail-lists.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-06-09 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Project Mailing Lists</li> - <li class="publishDate version-date pull-right">Last Published: 2022-06-09</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/plugin-management.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/plugin-management.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/plugin-management.html (original) +++ helix/site-content/1.0.2-docs/plugin-management.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-06-09 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Project Plugin Management</li> - <li class="publishDate version-date pull-right">Last Published: 2022-06-09</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/plugins.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/plugins.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/plugins.html (original) +++ helix/site-content/1.0.2-docs/plugins.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-06-09 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Project Plugins</li> - <li class="publishDate version-date pull-right">Last Published: 2022-06-09</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/privacy-policy.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/privacy-policy.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/privacy-policy.html (original) +++ helix/site-content/1.0.2-docs/privacy-policy.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -133,7 +133,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Privacy Policy</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/project-info.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/project-info.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/project-info.html (original) +++ helix/site-content/1.0.2-docs/project-info.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-06-09 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Project Information</li> - <li class="publishDate version-date pull-right">Last Published: 2022-06-09</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/project-summary.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/project-summary.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/project-summary.html (original) +++ helix/site-content/1.0.2-docs/project-summary.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-06-09 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Project Summary</li> - <li class="publishDate version-date pull-right">Last Published: 2022-06-09</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/quota_scheduling.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/quota_scheduling.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/quota_scheduling.html (original) +++ helix/site-content/1.0.2-docs/quota_scheduling.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Quota-based Task Scheduling</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/recipes/lock_manager.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/recipes/lock_manager.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/recipes/lock_manager.html (original) +++ helix/site-content/1.0.2-docs/recipes/lock_manager.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="../" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Distributed Lock Manager</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/recipes/rabbitmq_consumer_group.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/recipes/rabbitmq_consumer_group.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/recipes/rabbitmq_consumer_group.html (original) +++ helix/site-content/1.0.2-docs/recipes/rabbitmq_consumer_group.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="../" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>RabbitMQ Consumer Group</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/recipes/rsync_replicated_file_store.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/recipes/rsync_replicated_file_store.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/recipes/rsync_replicated_file_store.html (original) +++ helix/site-content/1.0.2-docs/recipes/rsync_replicated_file_store.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="../" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Near-Realtime Rsync Replicated File System</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/recipes/service_discovery.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/recipes/service_discovery.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/recipes/service_discovery.html (original) +++ helix/site-content/1.0.2-docs/recipes/service_discovery.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="../" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Service Discovery</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/recipes/task_dag_execution.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/recipes/task_dag_execution.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/recipes/task_dag_execution.html (original) +++ helix/site-content/1.0.2-docs/recipes/task_dag_execution.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="../" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Distributed Task Execution</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/releasenotes/release-1.0.2.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/releasenotes/release-1.0.2.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/releasenotes/release-1.0.2.html (original) +++ helix/site-content/1.0.2-docs/releasenotes/release-1.0.2.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="../" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Release Notes for Apache Helix 1.0.2</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/source-repository.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/source-repository.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/source-repository.html (original) +++ helix/site-content/1.0.2-docs/source-repository.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-06-09 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Source Code Management</li> - <li class="publishDate version-date pull-right">Last Published: 2022-06-09</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/team-list.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/team-list.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/team-list.html (original) +++ helix/site-content/1.0.2-docs/team-list.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-06-09 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Project Team</li> - <li class="publishDate version-date pull-right">Last Published: 2022-06-09</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> @@ -163,15 +163,26 @@ <tr class="b"> <td align="left"> <figure> + <img src="http://www.gravatar.com/avatar/6415bdedaad2b4fc66f15dcdebdbf490?d=mm&s=60" alt=""> + </figure></td> + <td><a name="jxue"></a>jxue</td> + <td>Junkai Xue</td> + <td><a class="externalLink" href="mailto:[email protected]">[email protected]</a></td> + <td>PMC Chair</td> + <td>-8</td> + </tr> + <tr class="a"> + <td align="left"> + <figure> <img src="http://www.gravatar.com/avatar/4903094887bc01789baecc53cb24cf82?d=mm&s=60" alt=""> </figure></td> <td><a name="kishoreg"></a>kishoreg</td> <td>Kishore Gopalakrishna</td> <td><a class="externalLink" href="mailto:[email protected]">[email protected]</a></td> - <td>PMC Chair</td> + <td>PMC</td> <td>-8</td> </tr> - <tr class="a"> + <tr class="b"> <td align="left"> <figure> <img src="http://www.gravatar.com/avatar/bab29f762bea8e578505424443d8cd41?d=mm&s=60" alt=""> @@ -182,7 +193,7 @@ <td>Mentor / PMC Member</td> <td>Australia/Melbourne</td> </tr> - <tr class="b"> + <tr class="a"> <td align="left"> <figure> <img src="http://www.gravatar.com/avatar/ef58a72a284f2d71bf6faab818d610f7?d=mm&s=60" alt=""> @@ -193,7 +204,7 @@ <td>Mentor / PMC Member</td> <td>-8</td> </tr> - <tr class="a"> + <tr class="b"> <td align="left"> <figure> <img src="http://www.gravatar.com/avatar/36a55537043f9e71bb68a9a4c3bf7921?d=mm&s=60" alt=""> @@ -204,7 +215,7 @@ <td>Mentor / PMC Member</td> <td>-8</td> </tr> - <tr class="b"> + <tr class="a"> <td align="left"> <figure> <img src="http://www.gravatar.com/avatar/028a4e648dc71a05947bd17c595673c2?d=mm&s=60" alt=""> @@ -215,7 +226,7 @@ <td>Mentor / PMC Member</td> <td>-8</td> </tr> - <tr class="a"> + <tr class="b"> <td align="left"> <figure> <img src="http://www.gravatar.com/avatar/30cf491f75094622e636256add9ca203?d=mm&s=60" alt=""> @@ -226,7 +237,7 @@ <td>Committer / PMC Member</td> <td>-8</td> </tr> - <tr class="b"> + <tr class="a"> <td align="left"> <figure> <img src="http://www.gravatar.com/avatar/d89273e0bf595b2aedf334ed74443fcf?d=mm&s=60" alt=""> @@ -237,7 +248,7 @@ <td>Committer / PMC Member</td> <td>-8</td> </tr> - <tr class="a"> + <tr class="b"> <td align="left"> <figure> <img src="http://www.gravatar.com/avatar/399e0bd07703d371628ea8c347f86122?d=mm&s=60" alt=""> @@ -248,7 +259,7 @@ <td>Committer</td> <td>-8</td> </tr> - <tr class="b"> + <tr class="a"> <td align="left"> <figure> <img src="http://www.gravatar.com/avatar/c3ade9a125d644a15d544b2955bf08d2?d=mm&s=60" alt=""> @@ -259,7 +270,7 @@ <td>Committer / PMC Member</td> <td>-8</td> </tr> - <tr class="a"> + <tr class="b"> <td align="left"> <figure> <img src="http://www.gravatar.com/avatar/aebf332939b13414787886164242ea72?d=mm&s=60" alt=""> @@ -270,7 +281,7 @@ <td>Committer / PMC Member</td> <td>-8</td> </tr> - <tr class="b"> + <tr class="a"> <td align="left"> <figure> <img src="http://www.gravatar.com/avatar/2335c7d04906cdb6faaaed243196ff17?d=mm&s=60" alt=""> @@ -281,7 +292,7 @@ <td>Committer / PMC Member</td> <td>-8</td> </tr> - <tr class="a"> + <tr class="b"> <td align="left"> <figure> <img src="http://www.gravatar.com/avatar/076465e4f0f2e46f046eb480c81882af?d=mm&s=60" alt=""> @@ -292,7 +303,7 @@ <td>Committer / PMC Member</td> <td>-8</td> </tr> - <tr class="b"> + <tr class="a"> <td align="left"> <figure> <img src="http://www.gravatar.com/avatar/a54814084ea011aa38b9d3940a18e1ed?d=mm&s=60" alt=""> @@ -303,7 +314,7 @@ <td>Committer / PMC Member</td> <td>-8</td> </tr> - <tr class="a"> + <tr class="b"> <td align="left"> <figure> <img src="http://www.gravatar.com/avatar/f600151c02af78ce6a2c96eaa905db98?d=mm&s=60" alt=""> @@ -314,7 +325,7 @@ <td>Committer / PMC Member</td> <td>-8</td> </tr> - <tr class="b"> + <tr class="a"> <td align="left"> <figure> <img src="http://www.gravatar.com/avatar/2b15c6b77ae7adc0424cd6a0d73c465f?d=mm&s=60" alt=""> @@ -325,7 +336,7 @@ <td>Committer / PMC Member</td> <td>-8</td> </tr> - <tr class="a"> + <tr class="b"> <td align="left"> <figure> <img src="http://www.gravatar.com/avatar/2ac5e1b278819214ced1b7ff577eccf5?d=mm&s=60" alt=""> @@ -336,7 +347,7 @@ <td>Committer / PMC Member</td> <td>-8</td> </tr> - <tr class="b"> + <tr class="a"> <td align="left"> <figure> <img src="http://www.gravatar.com/avatar/aca35ccbcd6e67c8fdb140693928229d?d=mm&s=60" alt=""> @@ -347,7 +358,7 @@ <td>Committer / PMC Member</td> <td>-8</td> </tr> - <tr class="a"> + <tr class="b"> <td align="left"> <figure> <img src="http://www.gravatar.com/avatar/10fa0ccc9368a3228bdfc194ffa83d33?d=mm&s=60" alt=""> @@ -358,7 +369,7 @@ <td>Committer</td> <td>-8</td> </tr> - <tr class="b"> + <tr class="a"> <td align="left"> <figure> <img src="http://www.gravatar.com/avatar/916811f65401599f738751fad033acad?d=mm&s=60" alt=""> @@ -369,17 +380,6 @@ <td>Committer / PMC Member</td> <td>-8</td> </tr> - <tr class="a"> - <td align="left"> - <figure> - <img src="http://www.gravatar.com/avatar/6415bdedaad2b4fc66f15dcdebdbf490?d=mm&s=60" alt=""> - </figure></td> - <td><a name="jxue"></a>jxue</td> - <td>Junkai Xue</td> - <td><a class="externalLink" href="mailto:[email protected]">[email protected]</a></td> - <td>Committer / PMC Member</td> - <td>-8</td> - </tr> <tr class="b"> <td align="left"> <figure> @@ -435,6 +435,17 @@ <td>Committer</td> <td>-8</td> </tr> + <tr class="a"> + <td align="left"> + <figure> + <img src="http://www.gravatar.com/avatar/a273eef06da4daf039ebe65f08107a96?d=mm&s=60" alt=""> + </figure></td> + <td><a name="nealsun"></a>nealsun</td> + <td>Neal Sun</td> + <td><a class="externalLink" href="mailto:[email protected]">[email protected]</a></td> + <td>Committer</td> + <td>-8</td> + </tr> </tbody> </table> </section> Modified: helix/site-content/1.0.2-docs/tutorial_admin.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/tutorial_admin.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/tutorial_admin.html (original) +++ helix/site-content/1.0.2-docs/tutorial_admin.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Tutorial - Admin Operations</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/tutorial_agent.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/tutorial_agent.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/tutorial_agent.html (original) +++ helix/site-content/1.0.2-docs/tutorial_agent.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Tutorial - Helix Agent</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/tutorial_cloud_support.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/tutorial_cloud_support.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/tutorial_cloud_support.html (original) +++ helix/site-content/1.0.2-docs/tutorial_cloud_support.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Tutorial - Cloud Support</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/tutorial_controller.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/tutorial_controller.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/tutorial_controller.html (original) +++ helix/site-content/1.0.2-docs/tutorial_controller.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Tutorial - Controller</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/tutorial_customized_view.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/tutorial_customized_view.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/tutorial_customized_view.html (original) +++ helix/site-content/1.0.2-docs/tutorial_customized_view.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Tutorial - Customized View</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/tutorial_distributed_lock.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/tutorial_distributed_lock.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/tutorial_distributed_lock.html (original) +++ helix/site-content/1.0.2-docs/tutorial_distributed_lock.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Tutorial - Distributed Lock</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/tutorial_health.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/tutorial_health.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/tutorial_health.html (original) +++ helix/site-content/1.0.2-docs/tutorial_health.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Tutorial - Customizing Heath Checks</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/tutorial_messaging.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/tutorial_messaging.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/tutorial_messaging.html (original) +++ helix/site-content/1.0.2-docs/tutorial_messaging.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Tutorial - Messaging</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/tutorial_participant.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/tutorial_participant.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/tutorial_participant.html (original) +++ helix/site-content/1.0.2-docs/tutorial_participant.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Tutorial - Participant</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/tutorial_propstore.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/tutorial_propstore.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/tutorial_propstore.html (original) +++ helix/site-content/1.0.2-docs/tutorial_propstore.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Tutorial - Application Property Store</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/tutorial_rebalance.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/tutorial_rebalance.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/tutorial_rebalance.html (original) +++ helix/site-content/1.0.2-docs/tutorial_rebalance.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Tutorial - Rebalancing Algorithms</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/tutorial_rest_service.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/tutorial_rest_service.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/tutorial_rest_service.html (original) +++ helix/site-content/1.0.2-docs/tutorial_rest_service.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Tutorial - REST Service 2.0</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/tutorial_spectator.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/tutorial_spectator.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/tutorial_spectator.html (original) +++ helix/site-content/1.0.2-docs/tutorial_spectator.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Tutorial - Spectator</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/tutorial_state.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/tutorial_state.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/tutorial_state.html (original) +++ helix/site-content/1.0.2-docs/tutorial_state.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Tutorial - State Machine Configuration</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/tutorial_task_framework.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/tutorial_task_framework.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/tutorial_task_framework.html (original) +++ helix/site-content/1.0.2-docs/tutorial_task_framework.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Tutorial - Task Framework</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/tutorial_task_throttling.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/tutorial_task_throttling.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/tutorial_task_throttling.html (original) +++ helix/site-content/1.0.2-docs/tutorial_task_throttling.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Tutorial - Task Throttling</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/tutorial_throttling.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/tutorial_throttling.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/tutorial_throttling.html (original) +++ helix/site-content/1.0.2-docs/tutorial_throttling.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Tutorial - Throttling</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/tutorial_ui.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/tutorial_ui.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/tutorial_ui.html (original) +++ helix/site-content/1.0.2-docs/tutorial_ui.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Tutorial - Helix UI Setup</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/tutorial_user_content_store.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/tutorial_user_content_store.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/tutorial_user_content_store.html (original) +++ helix/site-content/1.0.2-docs/tutorial_user_content_store.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Tutorial - User Defined Content Store for Tasks</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/tutorial_user_def_rebalancer.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/tutorial_user_def_rebalancer.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/tutorial_user_def_rebalancer.html (original) +++ helix/site-content/1.0.2-docs/tutorial_user_def_rebalancer.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Tutorial - User-Defined Rebalancing</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.2-docs/tutorial_yaml.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.2-docs/tutorial_yaml.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.2-docs/tutorial_yaml.html (original) +++ helix/site-content/1.0.2-docs/tutorial_yaml.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.2">Release 1.0.2</a></li> <li class="divider">/</li> <li>Tutorial - YAML Cluster Setup</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> Modified: helix/site-content/1.0.4-docs/Building.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.4-docs/Building.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.4-docs/Building.html (original) +++ helix/site-content/1.0.4-docs/Building.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -57,7 +57,7 @@ <!-- End Matomo Code --> </head> - <body class="page-building project-105-docs" data-spy="scroll" data-offset="60" data-target="#toc-scroll-target"> + <body class="page-building project-104-docs" data-spy="scroll" data-offset="60" data-target="#toc-scroll-target"> <div class="navbar navbar-fixed-top"> @@ -129,10 +129,10 @@ <li class="divider">/</li> <li><a href="../" title="Apache Helix">Apache Helix</a></li> <li class="divider">/</li> - <li><a href="../1.0.4-docs/" title="Release 1.0.4">Release 1.0.4</a></li> + <li><a href="./" title="Release 1.0.4">Release 1.0.4</a></li> <li class="divider">/</li> <li>Build Instructions</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> @@ -258,7 +258,7 @@ mvn install package -DskipTests <p><a href="https://github.com/olamy/reflow-maven-skin" title="Reflow Maven skin">Reflow Maven skin</a> maintained by <a href="https://twitter.com/olamy" target="_blank" title="Olivier Lamy">Olivier Lamy</a>.</p> <div class="row span16"><div>Apache Helix, Apache, the Apache feather logo, and the Apache Helix project logos are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> - <a href="https://helix.apache.org/1.0.5-docs/privacy-policy.html">Privacy Policy</a> + <a href="https://helix.apache.org/1.0.4-docs/privacy-policy.html">Privacy Policy</a> </div> </div> </div> Modified: helix/site-content/1.0.4-docs/Features.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.4-docs/Features.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.4-docs/Features.html (original) +++ helix/site-content/1.0.4-docs/Features.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -57,7 +57,7 @@ <!-- End Matomo Code --> </head> - <body class="page-features project-105-docs" data-spy="scroll" data-offset="60" data-target="#toc-scroll-target"> + <body class="page-features project-104-docs" data-spy="scroll" data-offset="60" data-target="#toc-scroll-target"> <div class="navbar navbar-fixed-top"> @@ -129,10 +129,10 @@ <li class="divider">/</li> <li><a href="../" title="Apache Helix">Apache Helix</a></li> <li class="divider">/</li> - <li><a href="../1.0.4-docs/" title="Release 1.0.4">Release 1.0.4</a></li> + <li><a href="./" title="Release 1.0.4">Release 1.0.4</a></li> <li class="divider">/</li> <li>Features</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> @@ -466,7 +466,7 @@ under the License. <p><a href="https://github.com/olamy/reflow-maven-skin" title="Reflow Maven skin">Reflow Maven skin</a> maintained by <a href="https://twitter.com/olamy" target="_blank" title="Olivier Lamy">Olivier Lamy</a>.</p> <div class="row span16"><div>Apache Helix, Apache, the Apache feather logo, and the Apache Helix project logos are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> - <a href="https://helix.apache.org/1.0.5-docs/privacy-policy.html">Privacy Policy</a> + <a href="https://helix.apache.org/1.0.4-docs/privacy-policy.html">Privacy Policy</a> </div> </div> </div> Modified: helix/site-content/1.0.4-docs/Metrics.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.4-docs/Metrics.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.4-docs/Metrics.html (original) +++ helix/site-content/1.0.4-docs/Metrics.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -57,7 +57,7 @@ <!-- End Matomo Code --> </head> - <body class="page-metrics project-105-docs" data-spy="scroll" data-offset="60" data-target="#toc-scroll-target"> + <body class="page-metrics project-104-docs" data-spy="scroll" data-offset="60" data-target="#toc-scroll-target"> <div class="navbar navbar-fixed-top"> @@ -129,10 +129,10 @@ <li class="divider">/</li> <li><a href="../" title="Apache Helix">Apache Helix</a></li> <li class="divider">/</li> - <li><a href="../1.0.4-docs/" title="Release 1.0.4">Release 1.0.4</a></li> + <li><a href="./" title="Release 1.0.4">Release 1.0.4</a></li> <li class="divider">/</li> <li>Helix Monitoring Metrics</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> @@ -836,7 +836,7 @@ under the License. <p><a href="https://github.com/olamy/reflow-maven-skin" title="Reflow Maven skin">Reflow Maven skin</a> maintained by <a href="https://twitter.com/olamy" target="_blank" title="Olivier Lamy">Olivier Lamy</a>.</p> <div class="row span16"><div>Apache Helix, Apache, the Apache feather logo, and the Apache Helix project logos are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> - <a href="https://helix.apache.org/1.0.5-docs/privacy-policy.html">Privacy Policy</a> + <a href="https://helix.apache.org/1.0.4-docs/privacy-policy.html">Privacy Policy</a> </div> </div> </div> Modified: helix/site-content/1.0.4-docs/Quickstart.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.4-docs/Quickstart.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.4-docs/Quickstart.html (original) +++ helix/site-content/1.0.4-docs/Quickstart.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -57,7 +57,7 @@ <!-- End Matomo Code --> </head> - <body class="page-quickstart project-105-docs" data-spy="scroll" data-offset="60" data-target="#toc-scroll-target"> + <body class="page-quickstart project-104-docs" data-spy="scroll" data-offset="60" data-target="#toc-scroll-target"> <div class="navbar navbar-fixed-top"> @@ -129,10 +129,10 @@ <li class="divider">/</li> <li><a href="../" title="Apache Helix">Apache Helix</a></li> <li class="divider">/</li> - <li><a href="../1.0.4-docs/" title="Release 1.0.4">Release 1.0.4</a></li> + <li><a href="./" title="Release 1.0.4">Release 1.0.4</a></li> <li class="divider">/</li> <li>Quickstart</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> @@ -850,7 +850,7 @@ ExternalView for myDB: <p><a href="https://github.com/olamy/reflow-maven-skin" title="Reflow Maven skin">Reflow Maven skin</a> maintained by <a href="https://twitter.com/olamy" target="_blank" title="Olivier Lamy">Olivier Lamy</a>.</p> <div class="row span16"><div>Apache Helix, Apache, the Apache feather logo, and the Apache Helix project logos are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> - <a href="https://helix.apache.org/1.0.5-docs/privacy-policy.html">Privacy Policy</a> + <a href="https://helix.apache.org/1.0.4-docs/privacy-policy.html">Privacy Policy</a> </div> </div> </div> Modified: helix/site-content/1.0.4-docs/Tutorial.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.4-docs/Tutorial.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.4-docs/Tutorial.html (original) +++ helix/site-content/1.0.4-docs/Tutorial.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -57,7 +57,7 @@ <!-- End Matomo Code --> </head> - <body class="page-tutorial project-105-docs" data-spy="scroll" data-offset="60" data-target="#toc-scroll-target"> + <body class="page-tutorial project-104-docs" data-spy="scroll" data-offset="60" data-target="#toc-scroll-target"> <div class="navbar navbar-fixed-top"> @@ -129,10 +129,10 @@ <li class="divider">/</li> <li><a href="../" title="Apache Helix">Apache Helix</a></li> <li class="divider">/</li> - <li><a href="../1.0.4-docs/" title="Release 1.0.4">Release 1.0.4</a></li> + <li><a href="./" title="Release 1.0.4">Release 1.0.4</a></li> <li class="divider">/</li> <li>Tutorial</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> @@ -423,7 +423,7 @@ admin.rebalance(CLUSTER_NAME, RESOURCE_N <p><a href="https://github.com/olamy/reflow-maven-skin" title="Reflow Maven skin">Reflow Maven skin</a> maintained by <a href="https://twitter.com/olamy" target="_blank" title="Olivier Lamy">Olivier Lamy</a>.</p> <div class="row span16"><div>Apache Helix, Apache, the Apache feather logo, and the Apache Helix project logos are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> - <a href="https://helix.apache.org/1.0.5-docs/privacy-policy.html">Privacy Policy</a> + <a href="https://helix.apache.org/1.0.4-docs/privacy-policy.html">Privacy Policy</a> </div> </div> </div> Modified: helix/site-content/1.0.4-docs/auto_exit_maintenance.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.4-docs/auto_exit_maintenance.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.4-docs/auto_exit_maintenance.html (original) +++ helix/site-content/1.0.4-docs/auto_exit_maintenance.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-05-11 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -57,7 +57,7 @@ <!-- End Matomo Code --> </head> - <body class="page-auto_exit_maintenance project-105-docs" data-spy="scroll" data-offset="60" data-target="#toc-scroll-target"> + <body class="page-auto_exit_maintenance project-104-docs" data-spy="scroll" data-offset="60" data-target="#toc-scroll-target"> <div class="navbar navbar-fixed-top"> @@ -129,10 +129,10 @@ <li class="divider">/</li> <li><a href="../" title="Apache Helix">Apache Helix</a></li> <li class="divider">/</li> - <li><a href="../1.0.4-docs/" title="Release 1.0.4">Release 1.0.4</a></li> + <li><a href="./" title="Release 1.0.4">Release 1.0.4</a></li> <li class="divider">/</li> <li>Auto-exit of Maintenance Mode</li> - <li class="publishDate version-date pull-right">Last Published: 2022-05-11</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> @@ -379,7 +379,7 @@ String dateTime = df.format(new Date(cur <p><a href="https://github.com/olamy/reflow-maven-skin" title="Reflow Maven skin">Reflow Maven skin</a> maintained by <a href="https://twitter.com/olamy" target="_blank" title="Olivier Lamy">Olivier Lamy</a>.</p> <div class="row span16"><div>Apache Helix, Apache, the Apache feather logo, and the Apache Helix project logos are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> - <a href="https://helix.apache.org/1.0.5-docs/privacy-policy.html">Privacy Policy</a> + <a href="https://helix.apache.org/1.0.4-docs/privacy-policy.html">Privacy Policy</a> </div> </div> </div> Modified: helix/site-content/1.0.4-docs/dependencies.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.4-docs/dependencies.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.4-docs/dependencies.html (original) +++ helix/site-content/1.0.4-docs/dependencies.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-06-09 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.4">Release 1.0.4</a></li> <li class="divider">/</li> <li>Project Dependencies</li> - <li class="publishDate version-date pull-right">Last Published: 2022-06-09</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header> @@ -500,14 +500,14 @@ <td align="left"><a class="externalLink" href="https://maven.restlet.talend.com">https://maven.restlet.talend.com</a></td> <td align="center">Yes</td> <td align="center">No</td> - <td align="center">Yes</td> + <td align="center">No</td> </tr> <tr class="b"> <td align="left">sonatype-nexus-snapshots</td> <td align="left"><a class="externalLink" href="http://oss.sonatype.org/content/repositories/snapshots">http://oss.sonatype.org/content/repositories/snapshots</a></td> <td align="center">No</td> <td align="center">Yes</td> - <td align="center">No</td> + <td align="center">Yes</td> </tr> <tr class="a"> <td align="left">apache.snapshots</td> @@ -524,7 +524,7 @@ <tr class="a"> <th>Artifact</th> <th>central</th> - <th>sonatype-nexus-snapshots</th> + <th>restlet.talend.com</th> <th>apache.snapshots</th> </tr> <tr class="b"> @@ -596,7 +596,7 @@ <tr class="b"> <th>Total</th> <th>central</th> - <th>sonatype-nexus-snapshots</th> + <th>restlet.talend.com</th> <th>apache.snapshots</th> </tr> <tr class="a"> Modified: helix/site-content/1.0.4-docs/dependency-info.html URL: http://svn.apache.org/viewvc/helix/site-content/1.0.4-docs/dependency-info.html?rev=1904710&r1=1904709&r2=1904710&view=diff ============================================================================== --- helix/site-content/1.0.4-docs/dependency-info.html (original) +++ helix/site-content/1.0.4-docs/dependency-info.html Thu Oct 20 02:03:34 2022 @@ -7,7 +7,7 @@ <!-- - Generated by Apache Maven Doxia at 2022-06-09 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) + Generated by Apache Maven Doxia at 2022-10-19 Rendered using Reflow Maven Skin 2.0.0 (https://olamy.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> @@ -132,7 +132,7 @@ <li><a href="./" title="Release 1.0.4">Release 1.0.4</a></li> <li class="divider">/</li> <li>Dependency Information</li> - <li class="publishDate version-date pull-right">Last Published: 2022-06-09</li> + <li class="publishDate version-date pull-right">Last Published: 2022-10-19</li> </ul> </div> </header>
