You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by de...@apache.org on 2014/07/24 15:09:00 UTC

svn commit: r1613106 - in /uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root: jobs.jsp reservations.jsp services.jsp system.classes.jsp system.daemons.jsp system.machines.jsp

Author: degenaro
Date: Thu Jul 24 13:09:00 2014
New Revision: 1613106

URL: http://svn.apache.org/r1613106
Log:
UIMA-3957 DUCC Web Server (WS) upgrade to newer versions of open source code

Fix table caption location for scrollable tables.

Modified:
    uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/jobs.jsp
    uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/reservations.jsp
    uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/services.jsp
    uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/system.classes.jsp
    uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/system.daemons.jsp
    uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/system.machines.jsp

Modified: uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/jobs.jsp
URL: http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/jobs.jsp?rev=1613106&r1=1613105&r2=1613106&view=diff
==============================================================================
--- uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/jobs.jsp (original)
+++ uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/jobs.jsp Thu Jul 24 13:09:00 2014
@@ -102,8 +102,10 @@ if (table_style.equals("scroll")) {
 <%
 if (table_style.equals("scroll")) {
 %>
-	<table id="jobs-table" width="100%">
+	<table width="100%">
 	<caption title="Hint: use Preferences -> Table Style to alter format"><b>Jobs List</b><br><i><small>click column heading to sort</small></i></caption>
+	</table>
+	<table id="jobs-table" width="100%">
 	<thead>
 	<tr class="ducc-header">
 	<th class="ducc-col-terminate"></th>

Modified: uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/reservations.jsp
URL: http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/reservations.jsp?rev=1613106&r1=1613105&r2=1613106&view=diff
==============================================================================
--- uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/reservations.jsp (original)
+++ uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/reservations.jsp Thu Jul 24 13:09:00 2014
@@ -98,8 +98,10 @@ if (table_style.equals("scroll")) {
 <%
 if (table_style.equals("scroll")) {
 %>
-	<table id="reservations-table" width="100%">
+	<table width="100%">
 	<caption title="Hint: use Preferences -> Table Style to alter format"><b>Reservations List</b><br><i><small>click column heading to sort</small></i></caption>
+	</table>
+	<table id="reservations-table" width="100%">
 	<thead>
 	<tr class="ducc-header">
 	<th class="ducc-col-terminate"></th>

Modified: uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/services.jsp
URL: http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/services.jsp?rev=1613106&r1=1613105&r2=1613106&view=diff
==============================================================================
--- uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/services.jsp (original)
+++ uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/services.jsp Thu Jul 24 13:09:00 2014
@@ -100,8 +100,10 @@ if (table_style.equals("scroll")) {
 <%
 if (table_style.equals("scroll")) {
 %>
-	<table id="services-table" width="100%">
+	<table width="100%">
 	<caption title="Hint: use Preferences -> Table Style to alter format"><b>Services Definitions List</b><br><i><small>click column heading to sort</small></i></caption>
+	</table>
+	<table id="services-table" width="100%">
 	<thead>
 	<tr class="ducc-header">
 		<th class="ducc-col-button"></th>

Modified: uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/system.classes.jsp
URL: http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/system.classes.jsp?rev=1613106&r1=1613105&r2=1613106&view=diff
==============================================================================
--- uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/system.classes.jsp (original)
+++ uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/system.classes.jsp Thu Jul 24 13:09:00 2014
@@ -94,8 +94,10 @@ if (table_style.equals("scroll")) {
 <%
 if (table_style.equals("scroll")) {
 %>
-	<table id="system-classes" width="100%">
+	<table width="100%">
 	<caption title="Hint: use Preferences -> Table Style to alter format"><b>Classes List</b><br><i><small>click column heading to sort</small></i></caption>
+	</table>
+	<table id="system-classes" width="100%">
 	<thead>
 	<tr class="ducc-header">
 	<th align="left">Name</th>

Modified: uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/system.daemons.jsp
URL: http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/system.daemons.jsp?rev=1613106&r1=1613105&r2=1613106&view=diff
==============================================================================
--- uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/system.daemons.jsp (original)
+++ uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/system.daemons.jsp Thu Jul 24 13:09:00 2014
@@ -101,8 +101,10 @@ if (table_style.equals("scroll")) {
 <%
 if (table_style.equals("scroll")) {
 %>
-	<table id="system-daemons" width="100%">
+	<table width="100%">
 	<caption title="Hint: use Preferences -> Table Style to alter format"><b>Daemons List</b><br><i><small>click column heading to sort</small></i></caption>
+	</table>
+	<table id="system-daemons" width="100%">
 	<thead>
 	<tr class="ducc-header">
 	<th align="left" style="width: 75px;" title="The current status">Status</th>

Modified: uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/system.machines.jsp
URL: http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/system.machines.jsp?rev=1613106&r1=1613105&r2=1613106&view=diff
==============================================================================
--- uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/system.machines.jsp (original)
+++ uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/webapp/root/system.machines.jsp Thu Jul 24 13:09:00 2014
@@ -96,8 +96,10 @@ under the License.
 <%
 if (table_style.equals("scroll")) {
 %>
-	<table id="machines-table" width="100%">
+	<table width="100%">
 	<caption title="Hint: use Preferences -> Table Style to alter format"><b>Machines List</b><br><i><small>click column heading to sort</small></i></caption>
+	</table>
+	<table id="machines-table" width="100%">
 	<thead>
 	<tr class="ducc-header">
 	<th class="ducc-col-terminate"></th>