Changes between Version 44 and Version 45 of notes/vmware


Ignore:
Timestamp:
2017-01-04T07:08:21Z (8 years ago)
Author:
root
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • notes/vmware

    v44 v45  
    214214[[br]]
    215215
    216 == изменение картинки на входа в `vcsa`
    217 `/usr/lib/vmware-sso/vmware-sts/webapps/websso/resources/css/login.css `:
     216== изменение картинки на вход в `vcsa`
     217`/usr/lib/vmware-sso/vmware-sts/webapps/websso/resources/css`:
    218218{{{#!diff
    219219diff -u login.css.orig login.css
     
    231231    font-size:12px;
    232232}}}
    233 [[br]]
     233`/usr/lib/vmware-sso/vmware-sts/webapps/websso/WEB-INF/views`:
     234{{{#!diff
     235diff -u unpentry.jsp.orig unpentry.jsp
     236--- unpentry.jsp.orig   2017-01-04 07:00:51.000000000 +0000
     237+++ unpentry.jsp        2017-01-04 07:00:55.000000000 +0000
     238@@ -80,7 +80,7 @@
     239 //var _cspId = createCspPluginObject();
     240
     241 if (isVCLogin()) {
     242-    document.write("<img id=\"topSplash\" src=\"../../resources/img/AppBgPattern.png\"/>");
     243+//    document.write("<img id=\"topSplash\" src=\"../../resources/img/AppBgPattern.png\"/>");
     244
     245     document.write("<img id=\"brand\" src=\"../../resources/img/vmwareLogoBigger.png\" />");
     246 }
     247}}}
     248`/usr/lib/vmware-sso/vmware-sts/webapps/websso/resources/js`:
     249{{{#!diff
     250--- websso.js.orig      Fri Feb 12 07:33:12 2016
     251+++ websso.js   Mon May 30 14:07:38 2016
     252@@ -70,7 +70,7 @@
     253           var smartcardIDEle = document.getElementById("smartcardID");
     254           smartcardIDEle.parentNode.removeChild(smartcardIDEle);
     255           // Disable login button on page load unless smartcard authn is on
     256-          $('#submit').prop('disabled',true);
     257+          $('#submit').prop('disabled', false);
     258       }
     259 
     260       //Remove windows session or smartcard authn checkbox if the corresponding authn type was not turned on
     261@@ -342,7 +342,7 @@
     262          };
     263 
     264    var enableLoginButton = function enableLoginButton() {
     265-
     266+/*
     267             var userEle = document.getElementById('username');
     268             var sspiEle = document.getElementById('sspiCheckbox');
     269             var smartcardEle = document.getElementById('smartcardCheckbox');
     270@@ -352,7 +352,7 @@
     271                   $('#submit').prop('disabled', false);
     272             } else {
     273                $('#submit').prop('disabled', true);
     274-            }
     275+            }*/
     276          };
     277 
     278    // Status = true if you want the fields to be disabled.
     279@@ -725,7 +725,7 @@
     280                 _rsaSessionID = null;
     281              } else {
     282                 authType = "RSAAM " + unp;
     283-             }
     284+             }
     285           } else if (password_auth == "true") {
     286             authType = "Basic " + unp;
     287          }
     288}}}
     289[[br]]