You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2013/11/12 06:01:04 UTC

svn commit: r1540948 - in /hbase/branches/0.94/src/main/resources/hbase-webapps/master: snapshot.jsp table.jsp

Author: stack
Date: Tue Nov 12 05:01:03 2013
New Revision: 1540948

URL: http://svn.apache.org/r1540948
Log:
HBASE-9850 Issues with UI for table compact/split operation completion. After split/compaction operation using UI, the page is not automatically redirecting back using IE8/Firefox.

Modified:
    hbase/branches/0.94/src/main/resources/hbase-webapps/master/snapshot.jsp
    hbase/branches/0.94/src/main/resources/hbase-webapps/master/table.jsp

Modified: hbase/branches/0.94/src/main/resources/hbase-webapps/master/snapshot.jsp
URL: http://svn.apache.org/viewvc/hbase/branches/0.94/src/main/resources/hbase-webapps/master/snapshot.jsp?rev=1540948&r1=1540947&r2=1540948&view=diff
==============================================================================
--- hbase/branches/0.94/src/main/resources/hbase-webapps/master/snapshot.jsp (original)
+++ hbase/branches/0.94/src/main/resources/hbase-webapps/master/snapshot.jsp Tue Nov 12 05:01:03 2013
@@ -65,7 +65,11 @@
 <link rel="stylesheet" type="text/css" href="/static/hbase.css" />
 <% if (isActionResultPage) { %>
   <title>HBase Master: <%= master.getServerName() %></title>
-  <meta http-equiv="refresh" content="5,javascript:history.back()" />
+  <script type="text/javascript">
+  <!--
+  setTimeout("history.back()",5000);
+  -->
+  </script>
 <% } else { %>
   <title>Snapshot: <%= snapshotName %></title>
 <% } %>

Modified: hbase/branches/0.94/src/main/resources/hbase-webapps/master/table.jsp
URL: http://svn.apache.org/viewvc/hbase/branches/0.94/src/main/resources/hbase-webapps/master/table.jsp?rev=1540948&r1=1540947&r2=1540948&view=diff
==============================================================================
--- hbase/branches/0.94/src/main/resources/hbase-webapps/master/table.jsp (original)
+++ hbase/branches/0.94/src/main/resources/hbase-webapps/master/table.jsp Tue Nov 12 05:01:03 2013
@@ -70,7 +70,11 @@
 %>
 <head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
 <link rel="stylesheet" type="text/css" href="/static/hbase.css" />
-<meta http-equiv="refresh" content="5,javascript:history.back()" />
+  <script type="text/javascript">
+  <!--
+  setTimeout("history.back()",5000);
+  -->
+  </script>
 </head>
 <body>
 <a id="logo" href="http://wiki.apache.org/lucene-hadoop/Hbase"><img src="/static/hbase_logo.png" alt="HBase Logo" title="HBase Logo" /></a>