Author: kishore
Date: Thu Mar 23 22:44:50 2017
New Revision: 1788338

URL: http://svn.apache.org/viewvc?rev=1788338&view=rev
Log:
Add href=# to all button to get tab focus.

Modified:
    
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/documentstatus.jsp
    
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editauthority.jsp
    
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editconnection.jsp
    
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editjob.jsp
    
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editmapper.jsp
    
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editnotification.jsp
    
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editoutput.jsp
    
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/edittransformation.jsp
    
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/login.jsp
    
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/maxactivityreport.jsp
    
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/maxbandwidthreport.jsp
    
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/queuestatus.jsp
    
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/resultreport.jsp
    
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/simplereport.jsp

Modified: 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/documentstatus.jsp
URL: 
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/documentstatus.jsp?rev=1788338&r1=1788337&r2=1788338&view=diff
==============================================================================
--- 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/documentstatus.jsp
 (original)
+++ 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/documentstatus.jsp
 Thu Mar 23 22:44:50 2017
@@ -373,14 +373,14 @@ try
   if (statusConnection.length() > 0 && statusJobIdentifiers.length > 0)
   {
 %>
-            <a class="btn btn-primary" role="button" onClick="javascript:Go()" 
+            <a href="#" class="btn btn-primary" role="button" 
onClick="javascript:Go()" 
                     
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"documentstatus.ExecuteThisQuery")%>"
 data-toggle="tooltip"><i class="fa fa-play 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"documentstatus.ExecuteThisQuery")%></a>
 <%
   }
   else
   {
 %>
-            <a class="btn btn-primary" role="button" 
onClick="javascript:Continue()"
+            <a href="#" class="btn btn-primary" role="button" 
onClick="javascript:Continue()"
                     
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"documentstatus.Continue")%>"
 data-toggle="tooltip"><i class="fa fa-play 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"documentstatus.Continue")%></a>
 <%
   }

Modified: 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editauthority.jsp
URL: 
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editauthority.jsp?rev=1788338&r1=1788337&r2=1788338&view=diff
==============================================================================
--- 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editauthority.jsp
 (original)
+++ 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editauthority.jsp
 Thu Mar 23 22:44:50 2017
@@ -562,7 +562,7 @@ try
     if (className.length() > 0)
     {
 %>
-            <a class="btn btn-primary" onClick="javascript:Save()"
+            <a href="#" class="btn btn-primary" onClick="javascript:Save()"
                     
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editauthority.SaveThisAuthorityConnection")%>"
 data-toggle="tooltip"><i class="fa fa-save 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editauthority.Save")%></a>
 <%
     }
@@ -571,13 +571,13 @@ try
       if 
(tabName.equals(Messages.getString(pageContext.getRequest().getLocale(),"editauthority.Type")))
       {
 %>
-            <a class="btn btn-primary" onClick="javascript:Continue()"
+            <a href="#" class="btn btn-primary" onClick="javascript:Continue()"
                     
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editauthority.ContinueToNextPage")%>"
 data-toggle="tooltip"><i class="fa fa-play 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editauthority.Continue")%></a>
 <%
       }
     }
 %>
-            <a class="btn btn-primary" onClick="javascript:Cancel()"
+            <a href="#" class="btn btn-primary" onClick="javascript:Cancel()"
                     
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editauthority.CancelAuthorityEditing")%>"
 data-toggle="tooltip"><i class="fa fa-times-circle-o 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editauthority.Cancel")%></a>
 
 

Modified: 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editconnection.jsp
URL: 
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editconnection.jsp?rev=1788338&r1=1788337&r2=1788338&view=diff
==============================================================================
--- 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editconnection.jsp
 (original)
+++ 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editconnection.jsp
 Thu Mar 23 22:44:50 2017
@@ -574,7 +574,7 @@ try
     if (className.length() > 0)
     {
 %>
-            <a class="btn btn-primary" onClick="javascript:Save()" 
+            <a href="#" class="btn btn-primary" onClick="javascript:Save()" 
                     
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editconnection.SaveThisAuthorityConnection")%>"
 data-toggle="tooltip"><i class="fa fa-save 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editconnection.Save")%></a>
 <%
     }
@@ -583,13 +583,13 @@ try
       if 
(tabName.equals(Messages.getString(pageContext.getRequest().getLocale(),"editconnection.Type")))
       {
 %>
-            <a class="btn btn-primary" onClick="javascript:Continue()"
+            <a href="#" class="btn btn-primary" onClick="javascript:Continue()"
                     
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editconnection.ContinueToNextPage")%>"
 data-toggle="tooltip"><i class="fa fa-play 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editconnection.Continue")%></a>
 <%
       }
     }
 %>
-            <a class="btn btn-primary" onClick="javascript:Cancel()" 
+            <a href="#" class="btn btn-primary" onClick="javascript:Cancel()" 
                     
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editconnection.CancelConnectionEditing")%>"
 data-toggle="tooltip"><i class="fa fa-times-circle-o 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editconnection.Cancel")%></a>
           </div>
         </div>

Modified: 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editjob.jsp
URL: 
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editjob.jsp?rev=1788338&r1=1788337&r2=1788338&view=diff
==============================================================================
--- 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editjob.jsp
 (original)
+++ 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editjob.jsp
 Thu Mar 23 22:44:50 2017
@@ -1866,7 +1866,7 @@ function isRegularExpression(value)
   if (connectionName.length() > 0 && outputPresent)
   {
 %>
-              <a class="btn btn-primary" onClick="javascript:Save()"
+              <a href="#" class="btn btn-primary" onClick="javascript:Save()"
                       
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editjob.SaveThisJob")%>"
 data-toggle="tooltip"><i class="fa fa-save 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editjob.Save")%></a>
 <%
   }
@@ -1875,13 +1875,13 @@ function isRegularExpression(value)
     if 
(tabName.equals(Messages.getString(pageContext.getRequest().getLocale(),"editjob.Connection"))
 && tabSequenceInt == -1)
     {
 %>
-              <a class="btn btn-primary" onClick="javascript:Continue()" 
+              <a href="#" class="btn btn-primary" 
onClick="javascript:Continue()" 
                       
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editjob.ContinueToNextScreen")%>"
 data-toggle="tooltip"><i class="fa fa-play 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editjob.Continue")%></a>
 <%
     }
   }
 %>
-              <a class="btn btn-primary" onClick="javascript:Cancel()" 
+              <a href="#" class="btn btn-primary" 
onClick="javascript:Cancel()" 
                       
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editjob.CancelJobEditing")%>"
 data-toggle="tooltip"><i class="fa fa-times-circle-o 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editjob.cancel")%></a>
 
             </div>

Modified: 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editmapper.jsp
URL: 
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editmapper.jsp?rev=1788338&r1=1788337&r2=1788338&view=diff
==============================================================================
--- 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editmapper.jsp
 (original)
+++ 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editmapper.jsp
 Thu Mar 23 22:44:50 2017
@@ -495,7 +495,7 @@ try
     if (className.length() > 0)
     {
 %>
-              <a class="btn btn-primary" role="button" 
onClick="javascript:Save()"
+              <a href="#" class="btn btn-primary" role="button" 
onClick="javascript:Save()"
                       
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editmapper.SaveThisMappingConnection")%>"
 
                       data-toggle="tooltip"><i class="fa fa-save 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editmapper.Save")%></a>
 <%
@@ -505,13 +505,13 @@ try
       if 
(tabName.equals(Messages.getString(pageContext.getRequest().getLocale(),"editmapper.Type")))
       {
 %>
-              <a class="btn btn-primary" role="button" 
onClick="javascript:Continue()"
+              <a href="#" class="btn btn-primary" role="button" 
onClick="javascript:Continue()"
                       
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editmapper.ContinueToNextPage")%>"
 data-toggle="tooltip"><i class="fa fa-play 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editmapper.Continue")%></a>
 <%
       }
     }
 %>
-              <a class="btn btn-primary" role="button" 
onClick="javascript:Cancel()"
+              <a href="#" class="btn btn-primary" role="button" 
onClick="javascript:Cancel()"
                       
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editmapper.CancelMappingEditing")%>"
 data-toggle="tooltip"><i class="fa fa-times-circle-o 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editmapper.Cancel")%></a>
             </div>
           </div>

Modified: 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editnotification.jsp
URL: 
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editnotification.jsp?rev=1788338&r1=1788337&r2=1788338&view=diff
==============================================================================
--- 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editnotification.jsp
 (original)
+++ 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editnotification.jsp
 Thu Mar 23 22:44:50 2017
@@ -426,7 +426,7 @@ try
     if (className.length() > 0)
     {
 %>
-            <a role="button" class="btn btn-primary" 
onClick="javascript:Save()" 
+            <a href="#" role="button" class="btn btn-primary" 
onClick="javascript:Save()" 
                     
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editnotification.SaveThisNotificationConnection")%>"
 data-toggle="tooltip"><i class="fa fa-save 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editnotification.Save")%></a>
 
 <%
@@ -436,14 +436,14 @@ try
       if 
(tabName.equals(Messages.getString(pageContext.getRequest().getLocale(),"editnotification.Type")))
       {
 %>
-            <a role="button" class="btn btn-primary" 
onClick="javascript:Continue()"
+            <a href="#" role="button" class="btn btn-primary" 
onClick="javascript:Continue()"
                     
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editnotification.ContinueToNextPage")%>"
 data-toggle="tooltip"><i class="fa fa-play 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editnotification.Continue")%></a>
 
 <%
       }
     }
 %>
-            <a role="button" class="btn btn-primary" 
onClick="javascript:Cancel()"
+            <a href="#" role="button" class="btn btn-primary" 
onClick="javascript:Cancel()"
                     
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editnotification.CancelNotificationConnectionEditing")%>"
 data-toggle="tooltip"><i class="fa fa-times-circle-o 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editnotification.Cancel")%></a>
           </div>
         </div>

Modified: 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editoutput.jsp
URL: 
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editoutput.jsp?rev=1788338&r1=1788337&r2=1788338&view=diff
==============================================================================
--- 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editoutput.jsp
 (original)
+++ 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/editoutput.jsp
 Thu Mar 23 22:44:50 2017
@@ -428,7 +428,7 @@ try
     if (className.length() > 0)
     {
 %>
-              <a class="btn btn-primary" onClick="javascript:Save()"
+              <a href="#" class="btn btn-primary" onClick="javascript:Save()"
                       
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editoutput.SaveThisOutputConnection")%>"
 data-toggle="tooltip"><i class="fa fa-save 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editoutput.Save")%></a>
 <%
     }
@@ -437,13 +437,13 @@ try
       if 
(tabName.equals(Messages.getString(pageContext.getRequest().getLocale(),"editoutput.Type")))
       {
 %>
-              <a class="btn btn-primary" onClick="javascript:Continue()"
+              <a href="#" class="btn btn-primary" 
onClick="javascript:Continue()"
                       
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editoutput.ContinueToNextPage")%>"
 data-toggle="tooltip"><i class="fa fa-play 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editoutput.Continue")%></a>
 <%
       }
     }
 %>
-              <a class="btn btn-primary" onClick="javascript:Cancel()"
+              <a href="#" class="btn btn-primary" onClick="javascript:Cancel()"
                       
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editoutput.CancelOutputConnectionEditing")%>"
 data-toggle="tooltip"><i class="fa fa-times-circle-o 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"editoutput.Cancel")%></a>
             </div>
           </div>

Modified: 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/edittransformation.jsp
URL: 
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/edittransformation.jsp?rev=1788338&r1=1788337&r2=1788338&view=diff
==============================================================================
--- 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/edittransformation.jsp
 (original)
+++ 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/edittransformation.jsp
 Thu Mar 23 22:44:50 2017
@@ -421,7 +421,7 @@ try
     if (className.length() > 0)
     {
 %>
-              <a class="btn btn-primary" onClick="javascript:Save()"
+              <a href="#" class="btn btn-primary" onClick="javascript:Save()"
                       
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"edittransformation.SaveThisTransformationConnection")%>"
 data-toggle="tooltip"><i class="fa fa-save 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"edittransformation.Save")%></a>
 <%
     }
@@ -430,13 +430,13 @@ try
       if 
(tabName.equals(Messages.getString(pageContext.getRequest().getLocale(),"edittransformation.Type")))
       {
 %>
-              <a class="btn btn-primary" onClick="javascript:Continue()"
+              <a href="#" class="btn btn-primary" 
onClick="javascript:Continue()"
                       
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"edittransformation.ContinueToNextPage")%>"
 data-toggle="tooltip"><i class="fa fa-play 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"edittransformation.Continue")%></a>
 <%
       }
     }
 %>
-              <a class="btn btn-primary" onClick="javascript:Cancel()"
+              <a href="#" class="btn btn-primary" onClick="javascript:Cancel()"
                       
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"edittransformation.CancelTransformationConnectionEditing")%>"
 data-toggle="tooltip"><i class="fa fa-times-circle-o 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"edittransformation.Cancel")%></a>
             </div>
           </div>

Modified: 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/login.jsp
URL: 
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/login.jsp?rev=1788338&r1=1788337&r2=1788338&view=diff
==============================================================================
--- 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/login.jsp
 (original)
+++ 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/login.jsp
 Thu Mar 23 22:44:50 2017
@@ -101,7 +101,7 @@ if (value != null && value.equals("true"
             <div class="col-xs-8">
             </div>
             <div class="col-xs-4">
-              <a id="buttonLogin" class="btn btn-primary btn-block" 
onclick='Javascript:login();'
+              <a href="#" id="buttonLogin" class="btn btn-primary btn-block" 
onclick='Javascript:login();'
                       
title='<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"index.Login")%>'><i
 class="fa fa-sign-in fa-fw" 
aria-hidden="true"></i>&nbsp;<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"index.Login")%></a>
             </div>
           </div>

Modified: 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/maxactivityreport.jsp
URL: 
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/maxactivityreport.jsp?rev=1788338&r1=1788337&r2=1788338&view=diff
==============================================================================
--- 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/maxactivityreport.jsp
 (original)
+++ 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/maxactivityreport.jsp
 Thu Mar 23 22:44:50 2017
@@ -643,14 +643,14 @@ try
   if (reportConnection.length() > 0)
   {
 %>
-            <a name="MainButton" class="btn btn-primary" role="button" 
onClick="javascript:Go()"
+            <a href="#" name="MainButton" class="btn btn-primary" 
role="button" onClick="javascript:Go()"
                     
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"maxactivityreport.ExecuteThisQuery")%>"
 data-toggle="tooltip"><i class="fa fa-play 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"maxactivityreport.Go")%></a>
 <%
   }
   else
   {
 %>
-            <a name="MainButton" class="btn btn-primary" role="button" 
onClick="javascript:Continue()" 
+            <a href="#" name="MainButton" class="btn btn-primary" 
role="button" onClick="javascript:Continue()" 
                     
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"maxactivityreport.Continue")%>"
 data-toggle="tooltip"><i class="fa fa-play 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"maxactivityreport.Continue")%></a>
 <%
   }

Modified: 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/maxbandwidthreport.jsp
URL: 
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/maxbandwidthreport.jsp?rev=1788338&r1=1788337&r2=1788338&view=diff
==============================================================================
--- 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/maxbandwidthreport.jsp
 (original)
+++ 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/maxbandwidthreport.jsp
 Thu Mar 23 22:44:50 2017
@@ -646,14 +646,14 @@ try
   if (reportConnection.length() > 0)
   {
 %>
-            <a name="MainButton" class="btn btn-primary" role="button" 
onClick="javascript:Go()"
+            <a href="#" name="MainButton" class="btn btn-primary" 
role="button" onClick="javascript:Go()"
                     
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"maxbandwidthreport.ExecuteThisQuery")%>"
 data-toggle="tooltip"><i class="fa fa-play 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"maxbandwidthreport.Go")%></a>
 <%
   }
   else
   {
 %>
-            <a name="MainButton" class="btn btn-primary" role="button" 
onClick="javascript:Continue()"
+            <a href="#" name="MainButton" class="btn btn-primary" 
role="button" onClick="javascript:Continue()"
                     
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"maxbandwidthreport.Continue")%>"
 data-toggle="tooltip"><i class="fa fa-play 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"maxbandwidthreport.Continue")%></a>
 <%
   }

Modified: 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/queuestatus.jsp
URL: 
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/queuestatus.jsp?rev=1788338&r1=1788337&r2=1788338&view=diff
==============================================================================
--- 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/queuestatus.jsp
 (original)
+++ 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/queuestatus.jsp
 Thu Mar 23 22:44:50 2017
@@ -418,14 +418,14 @@ try
   if (statusConnection.length() > 0 && statusJobIdentifiers.length > 0)
   {
 %>
-            <a name="MainButton" class="btn btn-primary" role="button" 
onClick="javascript:Go()"
+            <a href="#" name="MainButton" class="btn btn-primary" 
role="button" onClick="javascript:Go()"
                     
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"queuestatus.ExecuteThisQuery")%>"
 data-toggle="tooltip"><i class="fa fa-play 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"queuestatus.Go")%></a>
 <%
   }
   else
   {
 %>
-            <a name="MainButton" class="btn btn-primary" role="button" 
onClick="javascript:Continue()"
+            <a href="#" name="MainButton" class="btn btn-primary" 
role="button" onClick="javascript:Continue()"
                     
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"queuestatus.Continue")%>"
 data-toggle="tooltip"><i class="fa fa-play 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"queuestatus.Continue")%></a>
 <%
   }
@@ -557,7 +557,7 @@ try
       if (startRow == 0)
       {
 %>
-                <li><a hred="#"><i class="fa fa-arrow-circle-o-left fa-fw" 
aria-hidden="true"></i><%=Messages.getBodyString(pageContext.getRequest().getLocale(),"queuestatus.Previous")%></a></li>
+                <li><a href="#"><i class="fa fa-arrow-circle-o-left fa-fw" 
aria-hidden="true"></i><%=Messages.getBodyString(pageContext.getRequest().getLocale(),"queuestatus.Previous")%></a></li>
 <%
       }
       else

Modified: 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/resultreport.jsp
URL: 
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/resultreport.jsp?rev=1788338&r1=1788337&r2=1788338&view=diff
==============================================================================
--- 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/resultreport.jsp
 (original)
+++ 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/resultreport.jsp
 Thu Mar 23 22:44:50 2017
@@ -674,14 +674,14 @@ try
   if (reportConnection.length() > 0)
   {
 %>
-            <a name="MainButton" class="btn btn-primary" role="button" 
onClick="javascript:Go()" 
+            <a href="#" name="MainButton" class="btn btn-primary" 
role="button" onClick="javascript:Go()" 
                     
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"resultreport.ExecuteThisQuery")%>"><i
 class="fa fa-play 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"resultreport.Go")%></a>
 <%
   }
   else
   {
 %>
-            <a name="MainButton" class="btn btn-primary" role="button" 
onClick="javascript:Continue()" 
+            <a href="#" name="MainButton" class="btn btn-primary" 
role="button" onClick="javascript:Continue()" 
                     
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"resultreport.Continue")%>"><i
 class="fa fa-play 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"resultreport.Continue")%></a>
             <%
               }

Modified: 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/simplereport.jsp
URL: 
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/simplereport.jsp?rev=1788338&r1=1788337&r2=1788338&view=diff
==============================================================================
--- 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/simplereport.jsp
 (original)
+++ 
manifoldcf/branches/CONNECTORS-1196-3/framework/crawler-ui/src/main/webapp/simplereport.jsp
 Thu Mar 23 22:44:50 2017
@@ -595,14 +595,14 @@ try
   if (reportConnection.length() > 0)
   {
 %>
-            <a name="MainButton" class="btn btn-primary" role="button" 
onClick="javascript:Go()"
+            <a href="#" name="MainButton" class="btn btn-primary" 
role="button" onClick="javascript:Go()"
                     
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"simplereport.ExecuteThisQuery")%>"
 data-toggle="tooltip"><i class="fa fa-play 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"simplereport.Go")%></a>
 <%
   }
   else
   {
 %>
-            <a name="MainButton" class="btn btn-primary" role="button" 
onClick="javascript:Continue()" 
+            <a href="#" name="MainButton" class="btn btn-primary" 
role="button" onClick="javascript:Continue()" 
                     
title="<%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"simplereport.Continue")%>"
 data-toggle="tooltip"><i class="fa fa-play 
fa-fw"></i><%=Messages.getAttributeString(pageContext.getRequest().getLocale(),"simplereport.Continue")%></a>
 <%
   }


Reply via email to