Author: acoburn
Date: Tue Aug  7 19:08:43 2012
New Revision: 1370434

URL: http://svn.apache.org/viewvc?rev=1370434&view=rev
Log:
VCL-610

Certain <div> tags were not closed in the web interface. They are now.


Modified:
    vcl/branches/vcl-2.3-bugfixes/web/.ht-inc/computers.php
    vcl/branches/vcl-2.3-bugfixes/web/.ht-inc/groups.php
    vcl/branches/vcl-2.3-bugfixes/web/.ht-inc/images.php
    vcl/branches/vcl-2.3-bugfixes/web/.ht-inc/managementnodes.php
    vcl/branches/vcl-2.3-bugfixes/web/.ht-inc/schedules.php
    vcl/trunk/managementnode/bin/   (props changed)
    vcl/trunk/web/   (props changed)
    vcl/trunk/web/.ht-inc/   (props changed)
    vcl/trunk/web/.ht-inc/computers.php
    vcl/trunk/web/.ht-inc/groups.php
    vcl/trunk/web/.ht-inc/images.php
    vcl/trunk/web/.ht-inc/managementnodes.php
    vcl/trunk/web/.ht-inc/schedules.php
    vcl/trunk/web/themes/default/css/   (props changed)

Modified: vcl/branches/vcl-2.3-bugfixes/web/.ht-inc/computers.php
URL: 
http://svn.apache.org/viewvc/vcl/branches/vcl-2.3-bugfixes/web/.ht-inc/computers.php?rev=1370434&r1=1370433&r2=1370434&view=diff
==============================================================================
--- vcl/branches/vcl-2.3-bugfixes/web/.ht-inc/computers.php (original)
+++ vcl/branches/vcl-2.3-bugfixes/web/.ht-inc/computers.php Tue Aug  7 19:08:43 
2012
@@ -1443,6 +1443,7 @@ function computerAddMaintenanceNote() {
        print "    </FORM>\n";
        print "  </TR>\n";
        print "</TABLE>\n";
+    print "</DIV>\n";
 }
 
 
////////////////////////////////////////////////////////////////////////////////
@@ -1681,6 +1682,7 @@ function confirmDeleteComputer() {
        print "    </TD>\n";
        print "  </TR>\n";
        print "</TABLE>\n";
+    print "</DIV>\n";
 }
 
 
////////////////////////////////////////////////////////////////////////////////
@@ -1980,6 +1982,7 @@ function bulkAddComputer() {
        print "    </TD>\n";
        print "  </TR>\n";
        print "</TABLE>\n";
+    print "</DIV>\n";
 }
 
 
////////////////////////////////////////////////////////////////////////////////

Modified: vcl/branches/vcl-2.3-bugfixes/web/.ht-inc/groups.php
URL: 
http://svn.apache.org/viewvc/vcl/branches/vcl-2.3-bugfixes/web/.ht-inc/groups.php?rev=1370434&r1=1370433&r2=1370434&view=diff
==============================================================================
--- vcl/branches/vcl-2.3-bugfixes/web/.ht-inc/groups.php (original)
+++ vcl/branches/vcl-2.3-bugfixes/web/.ht-inc/groups.php Tue Aug  7 19:08:43 
2012
@@ -833,8 +833,10 @@ function editOrAddGroup($state) {
                print "</TABLE>\n";
        }
 
-       if($data["type"] != "user")
-               return;
+    if($data["type"] != "user"){
+        print "</DIV>\n";
+        return;
+    }
        if($editusergroup) {
                $newuser = processInputVar("newuser", ARG_STRING);
                print "<H3>Group Membership</H3>\n";
@@ -890,6 +892,7 @@ function editOrAddGroup($state) {
                }
                print "</TABLE>\n";
        }
+    print "</DIV>\n";
 }
 
 
////////////////////////////////////////////////////////////////////////////////
@@ -1314,6 +1317,7 @@ function confirmEditOrAddGroup($state) {
        print "    </TD>\n";
        print "  </TR>\n";
        print "</TABLE>\n";
+    print "</DIV>\n";
 }
 
 
////////////////////////////////////////////////////////////////////////////////
@@ -1490,6 +1494,7 @@ function confirmDeleteGroup() {
        print "    </TD>\n";
        print "  </TR>\n";
        print "</TABLE>\n";
+    print "</DIV>\n";
 }
 
 
////////////////////////////////////////////////////////////////////////////////

Modified: vcl/branches/vcl-2.3-bugfixes/web/.ht-inc/images.php
URL: 
http://svn.apache.org/viewvc/vcl/branches/vcl-2.3-bugfixes/web/.ht-inc/images.php?rev=1370434&r1=1370433&r2=1370434&view=diff
==============================================================================
--- vcl/branches/vcl-2.3-bugfixes/web/.ht-inc/images.php (original)
+++ vcl/branches/vcl-2.3-bugfixes/web/.ht-inc/images.php Tue Aug  7 19:08:43 
2012
@@ -1137,11 +1137,12 @@ function editOrAddImage($state) {
        print "   </div>\n";
        print "</div>\n";
 
-       if($state)
-               return;
-       print "<div id=revisiondiv>\n";
-       print getRevisionHTML($data['imageid']);
-       print "</div>\n";
+       if(!$state){
+        print "<div id=revisiondiv>\n";
+        print getRevisionHTML($data['imageid']);
+        print "</div>\n";
+    }
+    print "</DIV>\n";
 }
 
 
////////////////////////////////////////////////////////////////////////////////
@@ -1935,6 +1936,7 @@ function confirmEditOrAddImage($state) {
        print "    </TD>\n";
        print "  </TR>\n";
        print "</TABLE>\n";
+    print "</DIV>\n";
 }
 
 
////////////////////////////////////////////////////////////////////////////////
@@ -2652,6 +2654,7 @@ function confirmDeleteImage() {
        print "    </TD>\n";
        print "  </TR>\n";
        print "</TABLE>\n";
+    print "</DIV>\n";
 }
 
 
////////////////////////////////////////////////////////////////////////////////

Modified: vcl/branches/vcl-2.3-bugfixes/web/.ht-inc/managementnodes.php
URL: 
http://svn.apache.org/viewvc/vcl/branches/vcl-2.3-bugfixes/web/.ht-inc/managementnodes.php?rev=1370434&r1=1370433&r2=1370434&view=diff
==============================================================================
--- vcl/branches/vcl-2.3-bugfixes/web/.ht-inc/managementnodes.php (original)
+++ vcl/branches/vcl-2.3-bugfixes/web/.ht-inc/managementnodes.php Tue Aug  7 
19:08:43 2012
@@ -486,6 +486,7 @@ function editOrAddMgmtnode($state) {
        print "    </TD>\n";
        print "  </TR>\n";
        print "</TABLE>\n";
+    print "</DIV>\n";
        print "<div id=helpbox onmouseover=\"blockClear();\" 
onmouseout=\"clearHelpbox2(0);\"></div>\n";
 
        # tooltips
@@ -712,6 +713,7 @@ function confirmEditOrAddMgmtnode($state
        print "    </TD>\n";
        print "  </TR>\n";
        print "</TABLE>\n";
+    print "</DIV>\n";
 }
 
 
////////////////////////////////////////////////////////////////////////////////
@@ -788,6 +790,7 @@ function confirmDeleteMgmtnode() {
        print "    </TD>\n";
        print "  </TR>\n";
        print "</TABLE>\n";
+    print "</DIV>\n";
 }
 
 
////////////////////////////////////////////////////////////////////////////////

Modified: vcl/branches/vcl-2.3-bugfixes/web/.ht-inc/schedules.php
URL: 
http://svn.apache.org/viewvc/vcl/branches/vcl-2.3-bugfixes/web/.ht-inc/schedules.php?rev=1370434&r1=1370433&r2=1370434&view=diff
==============================================================================
--- vcl/branches/vcl-2.3-bugfixes/web/.ht-inc/schedules.php (original)
+++ vcl/branches/vcl-2.3-bugfixes/web/.ht-inc/schedules.php Tue Aug  7 19:08:43 
2012
@@ -365,6 +365,7 @@ function confirmEditOrAddSchedule($state
        print "    </TD>\n";
        print "  </TR>\n";
        print "</TABLE>\n";
+    print "</DIV>\n";
 }
 
 
////////////////////////////////////////////////////////////////////////////////
@@ -495,6 +496,7 @@ function confirmDeleteSchedule() {
        print "    </TD>\n";
        print "  </TR>\n";
        print "</TABLE>\n";
+    print "</DIV>\n";
 }
 
 
////////////////////////////////////////////////////////////////////////////////

Propchange: vcl/trunk/managementnode/bin/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Aug  7 19:08:43 2012
@@ -0,0 +1 @@
+vcldevd

Propchange: vcl/trunk/web/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Aug  7 19:08:43 2012
@@ -0,0 +1 @@
+dojo

Propchange: vcl/trunk/web/.ht-inc/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Aug  7 19:08:43 2012
@@ -0,0 +1,3 @@
+*.pem
+conf.php
+secrets.php

Modified: vcl/trunk/web/.ht-inc/computers.php
URL: 
http://svn.apache.org/viewvc/vcl/trunk/web/.ht-inc/computers.php?rev=1370434&r1=1370433&r2=1370434&view=diff
==============================================================================
--- vcl/trunk/web/.ht-inc/computers.php (original)
+++ vcl/trunk/web/.ht-inc/computers.php Tue Aug  7 19:08:43 2012
@@ -1443,6 +1443,7 @@ function computerAddMaintenanceNote() {
        print "    </FORM>\n";
        print "  </TR>\n";
        print "</TABLE>\n";
+    print "</DIV>\n";
 }
 
 
////////////////////////////////////////////////////////////////////////////////
@@ -1681,6 +1682,7 @@ function confirmDeleteComputer() {
        print "    </TD>\n";
        print "  </TR>\n";
        print "</TABLE>\n";
+    print "</DIV>\n";
 }
 
 
////////////////////////////////////////////////////////////////////////////////
@@ -1980,6 +1982,7 @@ function bulkAddComputer() {
        print "    </TD>\n";
        print "  </TR>\n";
        print "</TABLE>\n";
+    print "</DIV>\n";
 }
 
 
////////////////////////////////////////////////////////////////////////////////

Modified: vcl/trunk/web/.ht-inc/groups.php
URL: 
http://svn.apache.org/viewvc/vcl/trunk/web/.ht-inc/groups.php?rev=1370434&r1=1370433&r2=1370434&view=diff
==============================================================================
--- vcl/trunk/web/.ht-inc/groups.php (original)
+++ vcl/trunk/web/.ht-inc/groups.php Tue Aug  7 19:08:43 2012
@@ -833,8 +833,10 @@ function editOrAddGroup($state) {
                print "</TABLE>\n";
        }
 
-       if($data["type"] != "user")
-               return;
+    if($data["type"] != "user"){
+        print "</DIV>\n";
+        return;
+    }
        if($editusergroup) {
                $newuser = processInputVar("newuser", ARG_STRING);
                print "<H3>Group Membership</H3>\n";
@@ -890,6 +892,7 @@ function editOrAddGroup($state) {
                }
                print "</TABLE>\n";
        }
+    print "</DIV>\n";
 }
 
 
////////////////////////////////////////////////////////////////////////////////
@@ -1314,6 +1317,7 @@ function confirmEditOrAddGroup($state) {
        print "    </TD>\n";
        print "  </TR>\n";
        print "</TABLE>\n";
+    print "</DIV>\n";
 }
 
 
////////////////////////////////////////////////////////////////////////////////
@@ -1490,6 +1494,7 @@ function confirmDeleteGroup() {
        print "    </TD>\n";
        print "  </TR>\n";
        print "</TABLE>\n";
+    print "</DIV>\n";
 }
 
 
////////////////////////////////////////////////////////////////////////////////

Modified: vcl/trunk/web/.ht-inc/images.php
URL: 
http://svn.apache.org/viewvc/vcl/trunk/web/.ht-inc/images.php?rev=1370434&r1=1370433&r2=1370434&view=diff
==============================================================================
--- vcl/trunk/web/.ht-inc/images.php (original)
+++ vcl/trunk/web/.ht-inc/images.php Tue Aug  7 19:08:43 2012
@@ -1137,11 +1137,12 @@ function editOrAddImage($state) {
        print "   </div>\n";
        print "</div>\n";
 
-       if($state)
-               return;
-       print "<div id=revisiondiv>\n";
-       print getRevisionHTML($data['imageid']);
-       print "</div>\n";
+    if(!$state){
+        print "<div id=revisiondiv>\n";
+        print getRevisionHTML($data['imageid']);
+        print "</div>\n";
+    }
+    print "</DIV>\n";
 }
 
 
////////////////////////////////////////////////////////////////////////////////
@@ -1935,6 +1936,7 @@ function confirmEditOrAddImage($state) {
        print "    </TD>\n";
        print "  </TR>\n";
        print "</TABLE>\n";
+    print "</DIV>\n";
 }
 
 
////////////////////////////////////////////////////////////////////////////////
@@ -2652,6 +2654,7 @@ function confirmDeleteImage() {
        print "    </TD>\n";
        print "  </TR>\n";
        print "</TABLE>\n";
+    print "</DIV>\n";
 }
 
 
////////////////////////////////////////////////////////////////////////////////

Modified: vcl/trunk/web/.ht-inc/managementnodes.php
URL: 
http://svn.apache.org/viewvc/vcl/trunk/web/.ht-inc/managementnodes.php?rev=1370434&r1=1370433&r2=1370434&view=diff
==============================================================================
--- vcl/trunk/web/.ht-inc/managementnodes.php (original)
+++ vcl/trunk/web/.ht-inc/managementnodes.php Tue Aug  7 19:08:43 2012
@@ -486,6 +486,7 @@ function editOrAddMgmtnode($state) {
        print "    </TD>\n";
        print "  </TR>\n";
        print "</TABLE>\n";
+    print "</DIV>\n";
        print "<div id=helpbox onmouseover=\"blockClear();\" 
onmouseout=\"clearHelpbox2(0);\"></div>\n";
 
        # tooltips
@@ -712,6 +713,7 @@ function confirmEditOrAddMgmtnode($state
        print "    </TD>\n";
        print "  </TR>\n";
        print "</TABLE>\n";
+    print "</DIV>\n";
 }
 
 
////////////////////////////////////////////////////////////////////////////////
@@ -788,6 +790,7 @@ function confirmDeleteMgmtnode() {
        print "    </TD>\n";
        print "  </TR>\n";
        print "</TABLE>\n";
+    print "</DIV>\n";
 }
 
 
////////////////////////////////////////////////////////////////////////////////

Modified: vcl/trunk/web/.ht-inc/schedules.php
URL: 
http://svn.apache.org/viewvc/vcl/trunk/web/.ht-inc/schedules.php?rev=1370434&r1=1370433&r2=1370434&view=diff
==============================================================================
--- vcl/trunk/web/.ht-inc/schedules.php (original)
+++ vcl/trunk/web/.ht-inc/schedules.php Tue Aug  7 19:08:43 2012
@@ -365,6 +365,7 @@ function confirmEditOrAddSchedule($state
        print "    </TD>\n";
        print "  </TR>\n";
        print "</TABLE>\n";
+    print "</DIV>\n";
 }
 
 
////////////////////////////////////////////////////////////////////////////////
@@ -495,6 +496,7 @@ function confirmDeleteSchedule() {
        print "    </TD>\n";
        print "  </TR>\n";
        print "</TABLE>\n";
+    print "</DIV>\n";
 }
 
 
////////////////////////////////////////////////////////////////////////////////

Propchange: vcl/trunk/web/themes/default/css/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Aug  7 19:08:43 2012
@@ -0,0 +1 @@
+dojo


Reply via email to