Added:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/styles/light.css
==============================================================================
---
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/styles/light.css
(added)
+++
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/styles/light.css
Fri Sep 8 23:25:34 2017
@@ -0,0 +1,257 @@
+/***************************************************************************************************************************
+ * 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.
*
+
***************************************************************************************************************************/
+
+/**********************************************************************************************************************/
+/** Body
**/
+/**********************************************************************************************************************/
+
+body {
+ margin: 0px;
+ font-size: 10px;
+ font-family: HelveticaNeue-Light,"Helvetica Neue Light","Helvetica
Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
+ color: #2c4557;
+ height: 100%;
+}
+
+body * {
+ font-size: 14px;
+}
+
+body textarea, body pre {
+ -moz-tab-size: 3;
+ -o-tab-size: 3;
+ -webkit-tab-size: 3;
+ tab-size: 3;
+}
+
+/**********************************************************************************************************************/
+/** Header
**/
+/**********************************************************************************************************************/
+
+header {
+ background-color: #e8ebef;
+ padding: 10px 20px;
+ box-shadow: 5px 5px 2px #999999;
+ text-shadow: rgba(1,1,1,.2) 2px 4px 5px, rgba(125,32,191,.05) 0 -10px
30px;
+ white-space: nowrap;
+}
+
+header * {
+ color: #af2222;;
+ font-weight: lighter;
+}
+
+header h1 {
+ font-size: 18px;
+ margin: 0px;
+ padding: 2px;
+}
+
+header h2 {
+ font-size: 14px;
+ margin: 0px;
+ padding: 2px;
+}
+
+/**********************************************************************************************************************/
+/** Nav
**/
+/**********************************************************************************************************************/
+
+nav {
+ margin: 10px;
+ padding: 5px;
+ box-shadow: 5px 5px 2px #999999;
+ background-color: #eef3f7;
+}
+
+nav * {
+ font-size: 12px;
+ font-weight: lighter;
+}
+
+nav>ol {
+ list-style-type: none;
+ margin: 0px 10px;
+ padding: 0px;
+}
+
+nav>ol>li {
+ display: inline;
+}
+
+nav li:not(:first-child):before {
+ content: " - ";
+}
+
+nav a {
+ font-size: 10pt;
+ color: #2c4557;
+ text-decoration: none;
+ margin: 0px 10px;
+ text-transform: uppercase;
+ cursor: pointer;
+}
+
+nav a:active, nav a:hover {
+ text-decoration: none;
+ color: #94a3ab;
+}
+
+/**********************************************************************************************************************/
+/** Content
**/
+/**********************************************************************************************************************/
+
+section {
+ display: table;
+ width: 100%;
+ margin: 0px 0px 50px 0px;
+}
+
+article {
+ display: table-cell;
+ padding: 20px 40px;
+}
+
+article * {
+ font-size: 9pt;
+}
+
+article table {
+ border: none;
+}
+
+article td {
+ vertical-align: top;
+ border-bottom: 1px solid #d9dcde;
+ border-right: 1px solid #d9dcde;
+ padding: 2px 5px;
+}
+
+article th {
+ padding: 4px 8px;
+ text-align: center;
+ background-color: #eef3f7;
+ box-shadow: 1px 1px 2px #999999;
+}
+
+article ul {
+ margin: 0px;
+ padding-left: 20px;
+}
+
+article a {
+ color: #416e8e;
+ text-decoration: none;
+}
+
+article iframe {
+ background-color: #F6F7F9;
+ border: 1px solid gray;
+ padding: 0px;
+ overflow: hidden;
+ width: 100%;
+ min-height: 400px;
+}
+
+aside {
+ display: table-cell;
+ vertical-align: top;
+ padding: 20px 20px;
+}
+
+/**********************************************************************************************************************/
+/** Footer
**/
+/**********************************************************************************************************************/
+
+footer {
+ padding: 10px;
+ width: 100%;
+ bottom: 0;
+ position: fixed;
+ background-color: #e8ebef;
+}
+
+/**********************************************************************************************************************/
+/** Popup windows
**/
+/**********************************************************************************************************************/
+
+.popup-content {
+ display: none;
+ position: absolute;
+ background-color: #eef3f7;
+ white-space: nowrap;
+ padding: 5px;
+ box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
+ z-index: 1;
+ margin-top: 10px;
+ border-radius: 4px;
+}
+
+.popup-content * {
+ color: #2c4557;
+ font-size: 10pt;
+}
+
+.popup-content a:hover {
+ color: #94A3AB;
+}
+
+.popup-show {
+ display: block;
+}
+
+/**********************************************************************************************************************/
+/** Tooltips
**/
+/**********************************************************************************************************************/
+
+.tooltip {
+ position: relative;
+ display: inline-block;
+}
+
+.tooltip .tooltiptext {
+ visibility: hidden;
+ background-color: #FEF9E7;
+ color: black;
+ padding: 5px;
+ border-radius: 6px;
+ position: absolute;
+ z-index: 1;
+ top: 0;
+ left: 0;
+ margin-left: 30px;
+ box-shadow: 2px 3px 3px 0px rgba(0, 0, 0, 0.5);
+ opacity: 0;
+ transition: opacity 0.5s;
+ font-weight: normal;
+}
+
+.tooltip:hover .tooltiptext {
+ visibility: visible;
+ opacity: 1;
+}
+
+.tooltiptext {
+ white-space: nowrap;
+ float: left;
+ border: 1px solid black;
+}
+
+/**********************************************************************************************************************/
+/** Other classes
**/
+/**********************************************************************************************************************/
+
+.table {display:table;}
+.row {display:table-row;}
+.cell {display:table-cell;}
+.monospace {font-family:monospace;}
\ No newline at end of file
Propchange:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/styles/light.css
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/styles/original.css
==============================================================================
---
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/styles/original.css
(added)
+++
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/styles/original.css
Fri Sep 8 23:25:34 2017
@@ -0,0 +1,221 @@
+/***************************************************************************************************************************
+ * 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.
*
+
***************************************************************************************************************************/
+
+/**********************************************************************************************************************/
+/** Body
**/
+/**********************************************************************************************************************/
+
+body {
+ background-image: linear-gradient(top, #CDDDDF 0, #EAEDED 20px, #FFFFFF
70px);
+ background-image: -webkit-linear-gradient(top, #CDDDDF 0, #EAEDED 20px,
#FFFFFF 70px);
+ background-attachment: fixed;
+ font-family: Sans-Serif;
+ color: #2c4557;
+ height: 100%;
+ margin: 0px;
+}
+
+body * {
+ font-size: 12px;
+}
+
+body textarea, body pre {
+ -moz-tab-size: 3;
+ -o-tab-size: 3;
+ -webkit-tab-size: 3;
+ tab-size: 3;
+}
+
+/**********************************************************************************************************************/
+/** Header
**/
+/**********************************************************************************************************************/
+
+header {
+ padding: 10px 20px;
+}
+
+header h1 {
+ font-size: 16px;
+ margin-bottom: 10px;
+ margin-right: 40px;
+ padding: 5px 30px;
+ border-radius: 15px;
+ text-decoration: none;
+ font-weight: normal;
+ background: linear-gradient(to bottom, #F5F5F5, #DEE3E9) repeat scroll
0% 0% transparent;
+ background: -webkit-gradient(linear, left top, left bottom,
from(#F5F5F5), to(#DEE3E9));
+}
+
+header h2 {
+ font-weight: normal;
+ margin-left: 20px;
+}
+
+/**********************************************************************************************************************/
+/** Nav
**/
+/**********************************************************************************************************************/
+
+nav {
+ margin: 0px 25px;
+}
+
+nav>ol {
+ list-style-type: none;
+ margin: 0px 10px;
+ padding: 0px;
+}
+
+nav>ol>li {
+ display: inline;
+}
+
+nav li:not(:first-child):before {
+ content: " - ";
+}
+
+nav a {
+ text-decoration: underline;
+ cursor: pointer;
+ color: -webkit-link;
+}
+
+/**********************************************************************************************************************/
+/** Content
**/
+/**********************************************************************************************************************/
+
+section {
+ display: table;
+ width: 100%;
+ margin: 0px 0px 50px 0px;
+}
+
+article {
+ display: table-cell;
+ padding: 20px 40px;
+}
+
+aside {
+ display: table-cell;
+ vertical-align: top;
+ padding: 20px 20px;
+}
+
+article table {
+ border:1px solid #CCCC99;
+ border-collapse: collapse;
+ margin: 5px 0px;
+}
+
+article th {
+ border-top: 1px solid #CCCC99;
+ padding: 3px 5px;
+ color: #666666;
+ text-align: center;
+ background-image: linear-gradient(top, #FBF9E4 0%, #F3F2C2 100%);
+ background-image: -webkit-linear-gradient(top, #FBF9E4 0%, #F3F2C2
100%);
+}
+
+article td {
+ border: 1px solid #E9EACB;
+ padding: 2px 5px;
+ color: #005C87;
+ vertical-align: top;
+}
+
+article ul {
+ margin: 0px;
+ padding-left: 20px;
+}
+
+/**********************************************************************************************************************/
+/** Footer
**/
+/**********************************************************************************************************************/
+
+footer {
+ display: none;
+}
+
+/**********************************************************************************************************************/
+/** Popup windows
**/
+/**********************************************************************************************************************/
+
+.popup-content {
+ display: none;
+ position: absolute;
+ background-color: #eef3f7;
+ white-space: nowrap;
+ padding: 5px;
+ box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
+ z-index: 1;
+ margin-top: 10px;
+ border-radius: 4px;
+}
+
+.popup-content * {
+ font-size: 9pt;
+}
+
+.popup-content a:hover {
+ color: #94A3AB;
+}
+
+.popup-show {
+ display: block;
+}
+
+/**********************************************************************************************************************/
+/** Tooltips
**/
+/**********************************************************************************************************************/
+
+.tooltip {
+ position: relative;
+ display: inline-block;
+}
+
+.tooltip .tooltiptext {
+ visibility: hidden;
+ background-color: #FEF9E7;
+ color: black;
+ padding: 5px;
+ border-radius: 6px;
+ position: absolute;
+ z-index: 1;
+ top: 0;
+ left: 0;
+ margin-left: 30px;
+ box-shadow: 2px 3px 3px 0px rgba(0, 0, 0, 0.5);
+ opacity: 0;
+ transition: opacity 0.5s;
+ font-weight: normal;
+}
+
+.tooltip:hover .tooltiptext {
+ visibility: visible;
+ opacity: 1;
+}
+
+.tooltiptext {
+ white-space: nowrap;
+ float: left;
+ border: 1px solid black;
+}
+
+/**********************************************************************************************************************/
+/** Other classes
**/
+/**********************************************************************************************************************/
+
+.table {display:table;}
+.row {display:table-row;}
+.cell {display:table-cell;}
+.monospace {font-family:monospace;}
+
Propchange:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/styles/original.css
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/vars/FileVar.class
==============================================================================
Binary file - no diff available.
Propchange:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/vars/FileVar.class
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/vars/LocalizationVar.class
==============================================================================
Binary file - no diff available.
Propchange:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/vars/LocalizationVar.class
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/vars/RequestVar.class
==============================================================================
Binary file - no diff available.
Propchange:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/vars/RequestVar.class
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/vars/SerializedRequestAttrVar.class
==============================================================================
Binary file - no diff available.
Propchange:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/vars/SerializedRequestAttrVar.class
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/vars/ServletInitParamVar.class
==============================================================================
Binary file - no diff available.
Propchange:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/vars/ServletInitParamVar.class
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/vars/UrlEncodeVar.class
==============================================================================
Binary file - no diff available.
Propchange:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/vars/UrlEncodeVar.class
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/vars/UrlVar.class
==============================================================================
Binary file - no diff available.
Propchange:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/vars/UrlVar.class
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/vars/WidgetVar.class
==============================================================================
Binary file - no diff available.
Propchange:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/vars/WidgetVar.class
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/ContentTypeMenuItem.class
==============================================================================
Binary file - no diff available.
Propchange:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/ContentTypeMenuItem.class
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/MenuItemWidget.class
==============================================================================
Binary file - no diff available.
Propchange:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/MenuItemWidget.class
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/MenuItemWidget.css
==============================================================================
---
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/MenuItemWidget.css
(added)
+++
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/MenuItemWidget.css
Fri Sep 8 23:25:34 2017
@@ -0,0 +1,17 @@
+/***************************************************************************************************************************
+ * 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.
+ *
+
***************************************************************************************************************************/
+.menu-item {
+ position: relative;
+ display: inline-block;
+}
Propchange:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/MenuItemWidget.css
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/MenuItemWidget.js
==============================================================================
---
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/MenuItemWidget.js
(added)
+++
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/MenuItemWidget.js
Fri Sep 8 23:25:34 2017
@@ -0,0 +1,32 @@
+/***************************************************************************************************************************
+ * 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.
+ *
+
***************************************************************************************************************************/
+var popupItem;
+
+function closePopup() {
+ if (popupItem != null) {
+ popupItem.nextElementSibling.classList.remove('popup-show');
+ }
+}
+
+function menuClick(item) {
+ closePopup();
+ item.nextElementSibling.classList.add('popup-show');
+ popupItem = item;
+}
+
+window.onclick = function(event) {
+ if (popupItem != null && popupItem != event.target && !
popupItem.nextElementSibling.contains(event.target)) {
+ closePopup();
+ }
+};
\ No newline at end of file
Propchange:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/MenuItemWidget.js
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/PoweredByApache.class
==============================================================================
Binary file - no diff available.
Propchange:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/PoweredByApache.class
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/PoweredByJuneau.class
==============================================================================
Binary file - no diff available.
Propchange:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/PoweredByJuneau.class
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/QueryMenuItem.class
==============================================================================
Binary file - no diff available.
Propchange:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/QueryMenuItem.class
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/QueryMenuItem.css
==============================================================================
---
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/QueryMenuItem.css
(added)
+++
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/QueryMenuItem.css
Fri Sep 8 23:25:34 2017
@@ -0,0 +1,13 @@
+/***************************************************************************************************************************
+ * 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.
+ *
+
***************************************************************************************************************************/
Propchange:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/QueryMenuItem.css
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/QueryMenuItem.html
==============================================================================
---
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/QueryMenuItem.html
(added)
+++
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/QueryMenuItem.html
Fri Sep 8 23:25:34 2017
@@ -0,0 +1,121 @@
+<!--
+
***************************************************************************************************************************
+ * 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.
+ *
+
***************************************************************************************************************************
+ -->
+<form style='margin:0px'>
+ <table>
+ <tr>
+ <th>Search:</th>
+ <td>
+ <input name="s" size="50" value='$R{query.s}'>
+ </td>
+ <td>
+ <div class="tooltip">
+ <small>(?)</small>
+ <span class="tooltiptext">
+ Comma-delimited list of
key/value pair search terms.
+ <br>
+ <br>Keys are column names.
Values are search terms.
+ <br>
+
<br><b>Example:</b> <code>[column1=foo*, column2<100,
column3=2013-2016.06.30]</code>
+ <br>
+ <br><b>String fields:</b>
+ <br> - <code>'*'</code>
represents any character
+ <br> - <code>'?'</code>
represents one character
+ <br> - Use single or double
quotes for phrases
+ <br> e.g.
<code>[column='foo bar']</code> - The term 'foo bar'
+ <br> - Multiple search terms
are ORed
+ <br> e.g.
<code>[column=foo bar]</code> - 'foo' OR 'bar'
+ <br> - Prepend <code>'+'</code>
on tokens that must match
+ <br> e.g.
<code>[column=+foo* +*bar]</code> - Start with 'foo' AND end with 'bar'.
+ <br> - Prepend <code>'-'</code>
on tokens that must not match
+ <br> e.g.
<code>[column=+foo* -*bar]</code> - Start with 'foo' AND does not end with
'bar'.
+ <br>
+ <br><b>Numeric fields:</b>
+ <br><code>[column=123]</code> -
A single number
+ <br><code>[column=1 2 3]</code>
- Multiple numbers
+ <br><code>[column=1-100]</code>
- Between two numbers
+ <br><code>[column=1-100
200-300]</code> - Two ranges of numbers
+
<br><code>[column>100]</code> - Greater than a number
+
<br><code>[column>=100]</code> - Greater than or equal to a number
+ <br><code>[column=!123]</code>
- Not a specific number
+ <br>
+ <br><b>Date/Calendar fields:</b>
+ <br><code>[column=2001]</code>
- A specific year
+
<br><code>[column=2001.01.01.10.50]</code> - A specific time
+
<br><code>[column>2001]</code> - After a specific year
+
<br><code>[column>=2001]</code> - During or after a specific year
+
<br><code>[column=2001-2003.06.30]</code> - A date range
+ <br><code>[column=2001 2003
2005]</code> - Multiple ORed dates
+ </span>
+ </div>
+ </td>
+ </tr>
+ <tr>
+ <th>View:</th>
+ <td>
+ <input name="v" size="50" value='$R{query.v}'>
+ </td>
+ <td>
+ <div class="tooltip">
+ <small>(?)</small>
+ <span class="tooltiptext">
+ Comma-delimited list of columns
to display.
+ <br>
+
<br><b>Example:</b> <code>[column1, column2]</code>
+ </span>
+ </div>
+ </td>
+ </tr>
+ <tr>
+ <th>Sort:</th>
+ <td>
+ <input name="o" size="50" value='$R{query.o}'>
+ </td>
+ <td>
+ <div class="tooltip">
+ <small>(?)</small>
+ <span class="tooltiptext">
+ Comma-delimited list of columns
to sort by.
+ <br>Columns can be suffixed
with '-' to indicate descending order.
+ <br>
+
<br><b>Example:</b> <code>[column1, column2-]</code>
+ <br>
+ <br><b>Notes:</b>
+ <br> - Columns containing
collections/arrays/lists are sorted by size.
+ </span>
+ </div>
+ </td>
+ </tr>
+ <tr>
+ <th>Page:</th>
+ <td>
+ Position: <input name='p' type='number'
style='width:50px' step=20 min=0 value='$R{query.p}'>
+ Limit: <input name='l' type='number'
style='width:50px' step=20 min=0 value='$R{query.l}'>
+ <span style='float:right'>Ignore-case: <input
name='i' type='checkbox' value='true'></span>
+ </td>
+ <td>
+ </td>
+ </tr>
+ <tr>
+ <th>
+
+ </th>
+ <td colspan='2' style='text-align:right'>
+ <input type='reset' value='Reset'>
+ <input type="submit" value='Submit'>
+ </td>
+ </tr>
+ </table>
+</form>
\ No newline at end of file
Propchange:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/QueryMenuItem.html
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/StyleMenuItem.class
==============================================================================
Binary file - no diff available.
Propchange:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/StyleMenuItem.class
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/Tooltip.class
==============================================================================
Binary file - no diff available.
Propchange:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/Tooltip.class
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/Widget.class
==============================================================================
Binary file - no diff available.
Propchange:
release/incubator/juneau/juneau-rest-server/target/classes/org/apache/juneau/rest/widget/Widget.class
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
release/incubator/juneau/juneau-rest-server/target/juneau-rest-server-6.3.2-incubating-SNAPSHOT-sources.jar
==============================================================================
Binary file - no diff available.
Propchange:
release/incubator/juneau/juneau-rest-server/target/juneau-rest-server-6.3.2-incubating-SNAPSHOT-sources.jar
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
release/incubator/juneau/juneau-rest-server/target/juneau-rest-server-6.3.2-incubating-SNAPSHOT.jar
==============================================================================
Binary file - no diff available.
Propchange:
release/incubator/juneau/juneau-rest-server/target/juneau-rest-server-6.3.2-incubating-SNAPSHOT.jar
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
release/incubator/juneau/juneau-rest-server/target/maven-archiver/pom.properties
==============================================================================
---
release/incubator/juneau/juneau-rest-server/target/maven-archiver/pom.properties
(added)
+++
release/incubator/juneau/juneau-rest-server/target/maven-archiver/pom.properties
Fri Sep 8 23:25:34 2017
@@ -0,0 +1,5 @@
+#Generated by Apache Maven
+#Fri Sep 08 19:14:44 EDT 2017
+version=6.3.2-incubating-SNAPSHOT
+groupId=org.apache.juneau
+artifactId=juneau-rest-server
Propchange:
release/incubator/juneau/juneau-rest-server/target/maven-archiver/pom.properties
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added:
release/incubator/juneau/juneau-rest-server/target/maven-shared-archive-resources/META-INF/DEPENDENCIES
==============================================================================
---
release/incubator/juneau/juneau-rest-server/target/maven-shared-archive-resources/META-INF/DEPENDENCIES
(added)
+++
release/incubator/juneau/juneau-rest-server/target/maven-shared-archive-resources/META-INF/DEPENDENCIES
Fri Sep 8 23:25:34 2017
@@ -0,0 +1,21 @@
+// ------------------------------------------------------------------
+// Transitive dependencies of this project determined from the
+// maven pom organized by organization.
+// ------------------------------------------------------------------
+
+Apache Juneau REST Servlet API
+
+
+From: 'Apache' (http://www.apache.org/)
+ - Apache Juneau Config File API
(http://juneau.incubator.apache.org/juneau-core/juneau-config)
org.apache.juneau:juneau-config:bundle:6.3.2-incubating-SNAPSHOT
+ License: Apache License, Version 2.0
(https://www.apache.org/licenses/LICENSE-2.0.txt)
+ - Apache Juneau Data Transfer Objects
(http://juneau.incubator.apache.org/juneau-core/juneau-dto)
org.apache.juneau:juneau-dto:bundle:6.3.2-incubating-SNAPSHOT
+ License: Apache License, Version 2.0
(https://www.apache.org/licenses/LICENSE-2.0.txt)
+ - Apache Juneau Marshall
(http://juneau.incubator.apache.org/juneau-core/juneau-marshall)
org.apache.juneau:juneau-marshall:bundle:6.3.2-incubating-SNAPSHOT
+ License: Apache License, Version 2.0
(https://www.apache.org/licenses/LICENSE-2.0.txt)
+ - Apache Juneau Core
(http://juneau.incubator.apache.org/juneau-core/juneau-svl)
org.apache.juneau:juneau-svl:bundle:6.3.2-incubating-SNAPSHOT
+ License: Apache License, Version 2.0
(https://www.apache.org/licenses/LICENSE-2.0.txt)
+
+
+
+
Added:
release/incubator/juneau/juneau-rest-server/target/maven-shared-archive-resources/META-INF/LICENSE
==============================================================================
---
release/incubator/juneau/juneau-rest-server/target/maven-shared-archive-resources/META-INF/LICENSE
(added)
+++
release/incubator/juneau/juneau-rest-server/target/maven-shared-archive-resources/META-INF/LICENSE
Fri Sep 8 23:25:34 2017
@@ -0,0 +1,202 @@
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed 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.
Added:
release/incubator/juneau/juneau-rest-server/target/maven-shared-archive-resources/META-INF/NOTICE
==============================================================================
---
release/incubator/juneau/juneau-rest-server/target/maven-shared-archive-resources/META-INF/NOTICE
(added)
+++
release/incubator/juneau/juneau-rest-server/target/maven-shared-archive-resources/META-INF/NOTICE
Fri Sep 8 23:25:34 2017
@@ -0,0 +1,8 @@
+
+Apache Juneau REST Servlet API
+Copyright 2017 Apache
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org/).
+
+
Added:
release/incubator/juneau/juneau-rest-server/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
==============================================================================
---
release/incubator/juneau/juneau-rest-server/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
(added)
+++
release/incubator/juneau/juneau-rest-server/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
Fri Sep 8 23:25:34 2017
@@ -0,0 +1,176 @@
+org/apache/juneau/rest/RestResourceResolver.class
+org/apache/juneau/rest/RestParamDefaults$HasFormDataObject.class
+org/apache/juneau/rest/RestParamDefaults$RefererHeader.class
+org/apache/juneau/rest/RestParamDefaults$RestRequestObject.class
+org/apache/juneau/rest/RestParamDefaults$HttpServletRequestObject.class
+org/apache/juneau/rest/RestException.class
+org/apache/juneau/rest/RestParamDefaults$RangeHeader.class
+org/apache/juneau/rest/RestParamDefaults$LoggerObject.class
+org/apache/juneau/rest/annotation/MethodSwagger.class
+org/apache/juneau/rest/RestParamDefaults$HttpMethodObject.class
+org/apache/juneau/rest/annotation/PathRemainder.class
+org/apache/juneau/rest/RestLogger.class
+org/apache/juneau/rest/RestParamDefaults$CacheControlHeader.class
+org/apache/juneau/rest/RestParamDefaults$OutputStreamObject.class
+org/apache/juneau/rest/RestParamDefaults$RequestHeadersObject.class
+org/apache/juneau/rest/RestUtils.class
+org/apache/juneau/rest/RestServlet.class
+org/apache/juneau/rest/RestRequest.class
+org/apache/juneau/rest/RestParamDefaults$AuthorizationHeader.class
+org/apache/juneau/rest/labels/BeanDescription.class
+org/apache/juneau/rest/RestParamDefaults$PathParameterObject.class
+org/apache/juneau/rest/RestParamDefaults$MethodObject.class
+org/apache/juneau/rest/annotation/HasFormData.class
+org/apache/juneau/rest/RestParamDefaults$PropsObject.class
+org/apache/juneau/rest/RestResponse$1.class
+org/apache/juneau/rest/RestParamDefaults$ConnectionHeader.class
+org/apache/juneau/rest/RestResponse.class
+org/apache/juneau/rest/RestServletException.class
+org/apache/juneau/rest/RestServletGroupDefault.class
+org/apache/juneau/rest/RestParamDefaults$UpgradeHeader.class
+org/apache/juneau/rest/remoteable/RemoteableServlet.class
+org/apache/juneau/rest/ResponseHandler.class
+org/apache/juneau/rest/matchers/MultipartFormDataMatcher.class
+org/apache/juneau/rest/RestParamDefaults$IfNoneMatchHeader.class
+org/apache/juneau/rest/RestParamDefaults.class
+org/apache/juneau/rest/RequestFormData.class
+org/apache/juneau/rest/RestParamDefaults$BodyObject.class
+org/apache/juneau/rest/RestMatcherReflecting.class
+org/apache/juneau/rest/annotation/Property.class
+org/apache/juneau/rest/widget/Widget.class
+org/apache/juneau/rest/RestConfig.class
+org/apache/juneau/rest/RestParamDefaults$InputStreamObject.class
+org/apache/juneau/rest/RestParamDefaults$IfUnmodifiedSinceHeader.class
+org/apache/juneau/rest/RestServletDefault.class
+org/apache/juneau/rest/ReaderResource.class
+org/apache/juneau/rest/RestParamDefaults$HeaderObject.class
+org/apache/juneau/rest/RestParamDefaults$ViaHeader.class
+org/apache/juneau/rest/response/ZipFileListResponseHandler.class
+org/apache/juneau/rest/RequestBody.class
+org/apache/juneau/rest/RequestHeaders.class
+org/apache/juneau/rest/RestParamDefaults$AcceptLanguageHeader.class
+org/apache/juneau/rest/RestGuard.class
+org/apache/juneau/rest/RestParamDefaults$PragmaHeader.class
+org/apache/juneau/rest/annotation/Path.class
+org/apache/juneau/rest/RestContext$2.class
+org/apache/juneau/rest/vars/SerializedRequestAttrVar.class
+org/apache/juneau/rest/UrlPathPattern$Builder.class
+org/apache/juneau/rest/annotation/HasQuery.class
+org/apache/juneau/rest/RequestBody$ServletInputStream2.class
+org/apache/juneau/rest/RestParamDefaults$ServletOutputStreamObject.class
+org/apache/juneau/rest/annotation/FormData.class
+org/apache/juneau/rest/vars/RequestVar.class
+org/apache/juneau/rest/RestParamDefaults$SwaggerObject.class
+org/apache/juneau/rest/RestInfoProvider.class
+org/apache/juneau/rest/widget/Tooltip.class
+org/apache/juneau/rest/RestMatcher.class
+org/apache/juneau/rest/RestParamDefaults$DateHeader.class
+org/apache/juneau/rest/RestCallHandler$1.class
+org/apache/juneau/rest/RestParamDefaults$ExpectHeader.class
+org/apache/juneau/rest/RestParamType.class
+org/apache/juneau/rest/RestConverter.class
+org/apache/juneau/rest/RestParamDefaults$ContentTypeHeader.class
+org/apache/juneau/rest/annotation/Parameter.class
+org/apache/juneau/rest/RestParamDefaults$ReaderObject.class
+org/apache/juneau/rest/response/InputStreamHandler.class
+org/apache/juneau/rest/converters/Queryable.class
+org/apache/juneau/rest/vars/UrlVar.class
+org/apache/juneau/rest/annotation/RestResource.class
+org/apache/juneau/rest/RestParamDefaults$AcceptCharsetHeader.class
+org/apache/juneau/rest/vars/FileVar.class
+org/apache/juneau/rest/RestParamDefaults$WriterObject.class
+org/apache/juneau/rest/RestLogger$Normal.class
+org/apache/juneau/rest/RestParamDefaults$RequestQueryObject.class
+org/apache/juneau/rest/RestParamDefaults$PathRemainderObject.class
+org/apache/juneau/rest/RestParamDefaults$MessageBundleObject.class
+org/apache/juneau/rest/UrlPathPattern.class
+org/apache/juneau/rest/annotation/Method.class
+org/apache/juneau/rest/annotation/HtmlDoc.class
+org/apache/juneau/rest/RestInfoProvider$Builder.class
+org/apache/juneau/rest/annotation/ResourceSwagger.class
+org/apache/juneau/rest/RestParamDefaults$ConfigFileObject.class
+org/apache/juneau/rest/RestParamDefaults$HttpServletResponseObject.class
+org/apache/juneau/rest/widget/PoweredByJuneau.class
+org/apache/juneau/rest/annotation/Header.class
+org/apache/juneau/rest/CallRouter.class
+org/apache/juneau/rest/RestParamDefaults$ProxyAuthorizationHeader.class
+org/apache/juneau/rest/RestParamDefaults$AcceptHeader.class
+org/apache/juneau/rest/widget/MenuItemWidget.class
+org/apache/juneau/rest/RestParamDefaults$RequestFormDataObject.class
+org/apache/juneau/rest/widget/QueryMenuItem.class
+org/apache/juneau/rest/labels/BeanDescription$BeanPropertyDescription.class
+org/apache/juneau/rest/response/WritableHandler.class
+org/apache/juneau/rest/RestParamDefaults$UriContextObject.class
+org/apache/juneau/rest/annotation/Query.class
+org/apache/juneau/rest/CallRouter$Builder.class
+org/apache/juneau/rest/RestContext.class
+org/apache/juneau/rest/labels/ResourceDescription.class
+org/apache/juneau/rest/annotation/RestHook.class
+org/apache/juneau/rest/RestParamDefaults$TimeZoneHeader.class
+org/apache/juneau/rest/RequestQuery.class
+org/apache/juneau/rest/vars/WidgetVar.class
+org/apache/juneau/rest/response/DefaultHandler.class
+org/apache/juneau/rest/RestParamDefaults$RestResponseObject.class
+org/apache/juneau/rest/RestContext$1.class
+org/apache/juneau/rest/RestParamDefaults$MaxForwardsHeader.class
+org/apache/juneau/rest/response/ReaderHandler.class
+org/apache/juneau/rest/ClientVersionMatcher.class
+org/apache/juneau/rest/RestParamDefaults$FormDataObject.class
+org/apache/juneau/rest/matchers/UrlEncodedFormMatcher.class
+org/apache/juneau/rest/RestParamDefaults$FromHeader.class
+org/apache/juneau/rest/RestParamDefaults$ServletInputStreamObject.class
+org/apache/juneau/rest/StreamResource$Builder.class
+org/apache/juneau/rest/RestParamDefaults$RestContextObject.class
+org/apache/juneau/rest/labels/ChildResourceDescriptions.class
+org/apache/juneau/rest/annotation/Messages.class
+org/apache/juneau/rest/RestParamDefaults$UriResolverObject.class
+org/apache/juneau/rest/Redirect.class
+org/apache/juneau/rest/RestParamDefaults$HostHeader.class
+org/apache/juneau/rest/RestParamDefaults$JuneauLoggerObject.class
+org/apache/juneau/rest/CallRouter$1.class
+org/apache/juneau/rest/annotation/Response.class
+org/apache/juneau/rest/RestParam.class
+org/apache/juneau/rest/widget/ContentTypeMenuItem.class
+org/apache/juneau/rest/RestContext$Builder.class
+org/apache/juneau/rest/RestParamDefaults$IfModifiedSinceHeader.class
+org/apache/juneau/rest/vars/UrlEncodeVar.class
+org/apache/juneau/rest/converters/Introspectable.class
+org/apache/juneau/rest/converters/Traversable.class
+org/apache/juneau/rest/annotation/Properties.class
+org/apache/juneau/rest/RestParamDefaults$AcceptEncodingHeader.class
+org/apache/juneau/rest/annotation/HookEvent.class
+org/apache/juneau/rest/RestParamDefaults$ContentLengthHeader.class
+org/apache/juneau/rest/CallMethod.class
+org/apache/juneau/rest/RestParamDefaults$RequestBodyObject.class
+org/apache/juneau/rest/RestLogger$NoOp.class
+org/apache/juneau/rest/response/RedirectHandler.class
+org/apache/juneau/rest/annotation/Inherit.class
+org/apache/juneau/rest/RestParamDefaults$RequestPathMatchObject.class
+org/apache/juneau/rest/RestParamDefaults$ParserObject.class
+org/apache/juneau/rest/RestResourceResolverSimple.class
+org/apache/juneau/rest/UrlPathPattern$1.class
+org/apache/juneau/rest/RestParamDefaults$TEHeader.class
+org/apache/juneau/rest/RestParamDefaults$WarningHeader.class
+org/apache/juneau/rest/CallMethod$Builder.class
+org/apache/juneau/rest/labels/NameDescription.class
+org/apache/juneau/rest/ReaderResource$Builder.class
+org/apache/juneau/rest/RestParamDefaults$QueryObject.class
+org/apache/juneau/rest/RestParamDefaults$IfMatchHeader.class
+org/apache/juneau/rest/annotation/RestMethod.class
+org/apache/juneau/rest/remoteable/RemoteableServiceProperties.class
+org/apache/juneau/rest/StreamResource.class
+org/apache/juneau/rest/RestParamDefaults$HasQueryObject.class
+org/apache/juneau/rest/CallMethod$1.class
+org/apache/juneau/rest/RestParamDefaults$IfRangeHeader.class
+org/apache/juneau/rest/RestParamDefaults$ResourceBundleObject.class
+org/apache/juneau/rest/response/StreamableHandler.class
+org/apache/juneau/rest/widget/PoweredByApache.class
+org/apache/juneau/rest/RestCallHandler.class
+org/apache/juneau/rest/widget/StyleMenuItem.class
+org/apache/juneau/rest/RequestPathMatch.class
+org/apache/juneau/rest/RestParamDefaults$UserAgentHeader.class
+org/apache/juneau/rest/RequestBody$1.class
+org/apache/juneau/rest/vars/ServletInitParamVar.class
+org/apache/juneau/rest/annotation/Body.class
+org/apache/juneau/rest/RestParamDefaults$LocaleObject.class
+org/apache/juneau/rest/vars/LocalizationVar.class
Added:
release/incubator/juneau/juneau-rest-server/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
==============================================================================
---
release/incubator/juneau/juneau-rest-server/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
(added)
+++
release/incubator/juneau/juneau-rest-server/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
Fri Sep 8 23:25:34 2017
@@ -0,0 +1,91 @@
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/annotation/ResourceSwagger.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestInfoProvider.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/annotation/HookEvent.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestResponse.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestServletGroupDefault.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestMatcherReflecting.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/response/InputStreamHandler.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestConfig.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/widget/QueryMenuItem.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/annotation/Response.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/remoteable/RemoteableServiceProperties.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/StreamResource.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/converters/Queryable.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestException.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestServletException.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestParamType.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/annotation/Path.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/ReaderResource.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/annotation/Inherit.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/vars/WidgetVar.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestParamDefaults.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/widget/MenuItemWidget.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/labels/ChildResourceDescriptions.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/annotation/HtmlDoc.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/annotation/Properties.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/vars/FileVar.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RequestHeaders.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/annotation/Body.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestConverter.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/labels/NameDescription.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RequestFormData.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestCallHandler.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/widget/StyleMenuItem.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestMatcher.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/annotation/HasQuery.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/ResponseHandler.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/converters/Introspectable.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/annotation/Property.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestServlet.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/annotation/Method.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestResourceResolver.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/annotation/Header.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/annotation/Query.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestParam.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/widget/Widget.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RequestQuery.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/response/RedirectHandler.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/widget/Tooltip.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/vars/RequestVar.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/vars/UrlEncodeVar.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestLogger.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RequestPathMatch.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestRequest.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/widget/ContentTypeMenuItem.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/vars/LocalizationVar.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/annotation/RestHook.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestContext.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/annotation/Parameter.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/annotation/RestResource.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/widget/PoweredByJuneau.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/ClientVersionMatcher.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/converters/Traversable.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/CallRouter.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/labels/BeanDescription.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/response/StreamableHandler.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/annotation/PathRemainder.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/annotation/RestMethod.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/vars/UrlVar.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/annotation/HasFormData.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/labels/ResourceDescription.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/annotation/FormData.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/widget/PoweredByApache.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/vars/ServletInitParamVar.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/annotation/Messages.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestUtils.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/response/WritableHandler.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/response/DefaultHandler.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestResourceResolverSimple.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/annotation/MethodSwagger.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/matchers/UrlEncodedFormMatcher.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RequestBody.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/CallMethod.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/Redirect.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/remoteable/RemoteableServlet.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/vars/SerializedRequestAttrVar.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestGuard.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/response/ReaderHandler.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/response/ZipFileListResponseHandler.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestServletDefault.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/UrlPathPattern.java
+/Users/james.bognar/git/incubator-juneau/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/matchers/MultipartFormDataMatcher.java
Added:
release/incubator/juneau/juneau-rest-server/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
==============================================================================
(empty)