You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vcl.apache.org by jf...@apache.org on 2010/04/06 18:28:51 UTC

svn commit: r931213 - in /incubator/vcl/trunk/web: .ht-inc/computers.php .ht-inc/images.php .ht-inc/managementnodes.php .ht-inc/schedules.php .ht-inc/userpreferences.php css/vcl.css

Author: jfthomps
Date: Tue Apr  6 16:28:51 2010
New Revision: 931213

URL: http://svn.apache.org/viewvc?rev=931213&view=rev
Log:
vcl.css:
changed css for usergrouptable td and th, resourcegrouptable td and th, and layouttable ids to have a collapsed border

userpreferences.php:
removed layouttable id from main table

schedules.php, managementnodes.php, images.php, computers.php:
added layouttable id to several tables so they would get borders

Modified:
    incubator/vcl/trunk/web/.ht-inc/computers.php
    incubator/vcl/trunk/web/.ht-inc/images.php
    incubator/vcl/trunk/web/.ht-inc/managementnodes.php
    incubator/vcl/trunk/web/.ht-inc/schedules.php
    incubator/vcl/trunk/web/.ht-inc/userpreferences.php
    incubator/vcl/trunk/web/css/vcl.css

Modified: incubator/vcl/trunk/web/.ht-inc/computers.php
URL: http://svn.apache.org/viewvc/incubator/vcl/trunk/web/.ht-inc/computers.php?rev=931213&r1=931212&r2=931213&view=diff
==============================================================================
--- incubator/vcl/trunk/web/.ht-inc/computers.php (original)
+++ incubator/vcl/trunk/web/.ht-inc/computers.php Tue Apr  6 16:28:51 2010
@@ -91,7 +91,7 @@ function selectComputers() {
 		print "     style=\"width:300px;height:275px\">\n";
 		# by platform/schedule
 		print "<div id=\"platsch\" dojoType=\"dijit.layout.ContentPane\" title=\"Platforms/Schedules\">\n";
-		print "<TABLE id=layouttable summary=\"\">\n";
+		print "<TABLE summary=\"\">\n";
 		print "  <TR>\n";
 		if($platform_cnt > 1)
 			print "    <TH>Platforms:</TH>\n";
@@ -1830,7 +1830,7 @@ function compGroupingGrid() {
 		print "</font><br><br>\n";
 	}
 	print "<FORM action=\"" . BASEURL . SCRIPT . "\" method=post>\n";
-	print "<TABLE border=1>\n";
+	print "<TABLE border=1 id=layouttable summary=\"\">\n";
 	print "  <col>\n";
 	if($bygroups) {
 		foreach($groups as $id) {
@@ -2068,7 +2068,7 @@ function computerUtilities() {
 
 	print "<H2>Computer Utilities</H2>\n";
 	print "<FORM action=\"" . BASEURL . SCRIPT . "\" method=post id=utilform>\n";
-	print "<TABLE border=1>\n";
+	print "<TABLE border=1 id=layouttable summary=\"information about selected computers\">\n";
 	print "  <TR>\n";
 	print "    <TD></TD>\n";
 	print "    <TH>Hostname</TH>\n";

Modified: incubator/vcl/trunk/web/.ht-inc/images.php
URL: http://svn.apache.org/viewvc/incubator/vcl/trunk/web/.ht-inc/images.php?rev=931213&r1=931212&r2=931213&view=diff
==============================================================================
--- incubator/vcl/trunk/web/.ht-inc/images.php (original)
+++ incubator/vcl/trunk/web/.ht-inc/images.php Tue Apr  6 16:28:51 2010
@@ -140,7 +140,7 @@ function viewImages() {
 		print "<font color=\"#008000\">Image successfully updated";
 		print "</font><br><br>\n";
 	}
-	print "<TABLE border=1>\n";
+	print "<TABLE border=1 id=layouttable summary=\"information about images\">\n";
 	print "  <TR>\n";
 	print "    <TD></TD>\n";
 	print "    <TH><img src=images/blank.gif width=100 height=1><br>Name</TH>\n";
@@ -386,7 +386,7 @@ function imageGroupingGrid() {
 	uasort($resources["image"], "sortKeepIndex");
 
 	print "<FORM id=gridform action=\"" . BASEURL . SCRIPT . "\" method=post>\n";
-	print "<TABLE border=1 summary=\"\">\n";
+	print "<TABLE border=1 summary=\"\" id=layouttable>\n";
 	print "  <col>\n";
 	foreach(array_keys($imagegroups) as $id) {
 		print "  <col id=imggrp$id>\n";
@@ -628,7 +628,7 @@ function imageMappingGrid() {
 	}
 
 	print "<FORM action=\"" . BASEURL . SCRIPT . "\" method=post>\n";
-	print "<TABLE border=1>\n";
+	print "<TABLE border=1 id=layouttable summary=\"\">\n";
 	print "  <col>\n";
 	foreach(array_keys($compgroups) as $id) {
 		print "  <col id=compgrp$id>\n";

Modified: incubator/vcl/trunk/web/.ht-inc/managementnodes.php
URL: http://svn.apache.org/viewvc/incubator/vcl/trunk/web/.ht-inc/managementnodes.php?rev=931213&r1=931212&r2=931213&view=diff
==============================================================================
--- incubator/vcl/trunk/web/.ht-inc/managementnodes.php (original)
+++ incubator/vcl/trunk/web/.ht-inc/managementnodes.php Tue Apr  6 16:28:51 2010
@@ -122,7 +122,7 @@ function viewMgmtnodes() {
 		print "<font color=\"#008000\">Management node successfully deleted";
 		print "</font><br><br>\n";
 	}
-	print "<TABLE border=1>\n";
+	print "<TABLE border=1 id=layouttable summary=\"information about selected management nodes\">\n";
 	print "  <TR>\n";
 	print "    <TD></TD>\n";
 	print "    <TD></TD>\n";
@@ -656,7 +656,7 @@ function viewMgmtnodeGrouping() {
 			print "</font><br><br>\n";
 		}
 		print "<FORM action=\"" . BASEURL . SCRIPT . "\" method=post>\n";
-		print "<TABLE border=1>\n";
+		print "<TABLE border=1 id=layouttable summary=\"\">\n";
 		print "  <TR>\n";
 		print "    <TH rowspan=2>Management Node</TH>\n";
 		print "    <TH colspan=" . count($mgmtnodegroups) . ">Groups</TH>\n";
@@ -838,7 +838,7 @@ function viewMgmtnodeMapping($mngroups=0
 			print "</font><br><br>\n";
 		}
 		print "<FORM action=\"" . BASEURL . SCRIPT . "\" method=post>\n";
-		print "<TABLE border=1>\n";
+		print "<TABLE border=1 id=layouttable summary=\"\">\n";
 		print "  <col>\n";
 		foreach(array_keys($compgroups) as $id) {
 			print "  <col id=compgrp$id>\n";

Modified: incubator/vcl/trunk/web/.ht-inc/schedules.php
URL: http://svn.apache.org/viewvc/incubator/vcl/trunk/web/.ht-inc/schedules.php?rev=931213&r1=931212&r2=931213&view=diff
==============================================================================
--- incubator/vcl/trunk/web/.ht-inc/schedules.php (original)
+++ incubator/vcl/trunk/web/.ht-inc/schedules.php Tue Apr  6 16:28:51 2010
@@ -52,7 +52,7 @@ function viewSchedules() {
 		print "<font color=\"#008000\">Schedule successfully deleted";
 		print "</font><br><br>\n";
 	}
-	print "<TABLE border=1>\n";
+	print "<TABLE border=1 id=layouttable summary=\"list of schedules\">\n";
 	print "  <TR>\n";
 	print "    <TD></TD>\n";
 	print "    <TD></TD>\n";
@@ -113,7 +113,7 @@ function viewSchedules() {
 			print "</font><br><br>\n";
 		}
 		print "<FORM action=\"" . BASEURL . SCRIPT . "#grouping\" method=post>\n";
-		print "<TABLE border=1>\n";
+		print "<TABLE border=1 id=layouttable summary=\"\">\n";
 		print "  <TR>\n";
 		print "    <TH rowspan=2>Schedules</TH>\n";
 		print "    <TH colspan=" . count($schedulegroups) . ">Groups</TH>\n";

Modified: incubator/vcl/trunk/web/.ht-inc/userpreferences.php
URL: http://svn.apache.org/viewvc/incubator/vcl/trunk/web/.ht-inc/userpreferences.php?rev=931213&r1=931212&r2=931213&view=diff
==============================================================================
--- incubator/vcl/trunk/web/.ht-inc/userpreferences.php (original)
+++ incubator/vcl/trunk/web/.ht-inc/userpreferences.php Tue Apr  6 16:28:51 2010
@@ -63,7 +63,7 @@ function userpreferences() {
 		print "<font color=green>User preferences successfully updated</font><br>\n";
 	}
 	print "</div>\n";
-	print "<table id=layouttable summary=\"\">\n";
+	print "<table summary=\"\">\n";
 	print "  <TR>\n";
 	print "    <TD>\n";
 	print "      <div id=preflinks class=hidden>\n";

Modified: incubator/vcl/trunk/web/css/vcl.css
URL: http://svn.apache.org/viewvc/incubator/vcl/trunk/web/css/vcl.css?rev=931213&r1=931212&r2=931213&view=diff
==============================================================================
--- incubator/vcl/trunk/web/css/vcl.css (original)
+++ incubator/vcl/trunk/web/css/vcl.css Tue Apr  6 16:28:51 2010
@@ -113,24 +113,57 @@
 	border-right: 1px solid #000000;
 }
 
+.usergrouptable {
+	empty-cells: hide;
+	border-spacing: 0px;
+	border-collapse: collapse;
+}
+
 .usergrouptable form {
 	margin: 0;
 }
 
 .usergrouptable td {
 	padding-left: 1px;
+	border: solid 1px #000000;
+}
+
+.usergrouptable th {
+	border: solid 1px #000000;
 }
 
 .resourcegrouptable form {
 	margin: 0;
 }
 
+.resourcegrouptable {
+	border-spacing: 0px;
+	border-collapse: collapse;
+}
+
+.resourcegrouptable th {
+	border: solid 1px #000000;
+}
+
 .resourcegrouptable td {
 	padding-left: 1px;
+	border: solid 1px #000000;
 }
 
-#layouttable td {
+#layouttable {
+	border: solid 1px #000000;
+	border-spacing: 0px;
+	border-collapse: collapse;
+}
+
+#layouttable td, #layouttable th {
 	vertical-align: top;
+	border: solid 1px #000000;
+}
+
+#ttlayout {
+	border-spacing: 0px;
+	border-collapse: collapse;
 }
 
 #ttlayout td {