Repository: hbase Updated Branches: refs/heads/branch-2 ecd9914dc -> 46c780839
HBASE-20399 Fix merge layout Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/46c78083 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/46c78083 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/46c78083 Branch: refs/heads/branch-2 Commit: 46c78083930a6476163b2ddfb492d25629c6e95e Parents: ecd9914 Author: Balazs Meszaros <[email protected]> Authored: Fri Apr 13 17:31:28 2018 +0200 Committer: Michael Stack <[email protected]> Committed: Tue Apr 17 09:16:58 2018 -0700 ---------------------------------------------------------------------- .../resources/hbase-webapps/master/table.jsp | 71 +++++++++++--------- 1 file changed, 41 insertions(+), 30 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/46c78083/hbase-server/src/main/resources/hbase-webapps/master/table.jsp ---------------------------------------------------------------------- diff --git a/hbase-server/src/main/resources/hbase-webapps/master/table.jsp b/hbase-server/src/main/resources/hbase-webapps/master/table.jsp index 0056dcd..cf735ec 100644 --- a/hbase-server/src/main/resources/hbase-webapps/master/table.jsp +++ b/hbase-server/src/main/resources/hbase-webapps/master/table.jsp @@ -702,46 +702,57 @@ if (withReplica) { Actions: <p> <center> -<table class="table" width="95%" > +<table class="table" style="border: 0;" width="95%" > <tr> <form method="get"> - <input type="hidden" name="action" value="compact"> - <input type="hidden" name="name" value="<%= escaped_fqtn %>"> - <td style="border-style: none; text-align: center"> - <input style="font-size: 12pt; width: 10em" type="submit" value="Compact" class="btn"></td> - <td style="border-style: none" width="5%"> </td> - <td style="border-style: none">Row Key (optional):<input type="text" name="key" size="40"></td> - <td style="border-style: none">This action will force a compaction of all - regions of the table, or, if a key is supplied, only the region containing the - given key.</td> + <input type="hidden" name="action" value="compact" /> + <input type="hidden" name="name" value="<%= escaped_fqtn %>" /> + <td class="centered"> + <input style="font-size: 12pt; width: 10em" type="submit" value="Compact" class="btn" /> + </td> + <td style="text-align: center;"> + <input type="text" name="key" size="40" placeholder="Row Key (optional)" /> + </td> + <td> + This action will force a compaction of all regions of the table, or, + if a key is supplied, only the region containing the + given key. + </td> </form> </tr> -<tr><td style="border-style: none" colspan="4"> </td></tr> <tr> <form method="get"> - <input type="hidden" name="action" value="split"> - <input type="hidden" name="name" value="<%= escaped_fqtn %>"> - <td style="border-style: none; text-align: center"> - <input style="font-size: 12pt; width: 10em" type="submit" value="Split" class="btn"></td> - <td style="border-style: none" width="5%"> </td> - <td style="border-style: none">Row Key (optional):<input type="text" name="key" size="40"></td> - <td style="border-style: none">This action will force a split of all eligible - regions of the table, or, if a key is supplied, only the region containing the - given key. An eligible region is one that does not contain any references to - other regions. Split requests for noneligible regions will be ignored.</td> + <input type="hidden" name="action" value="split" /> + <input type="hidden" name="name" value="<%= escaped_fqtn %>" /> + <td class="centered"> + <input style="font-size: 12pt; width: 10em" type="submit" value="Split" class="btn" /> + </td> + <td style="text-align: center;"> + <input type="text" name="key" size="40" placeholder="Row Key (optional)" /> + </td> + <td> + This action will force a split of all eligible + regions of the table, or, if a key is supplied, only the region containing the + given key. An eligible region is one that does not contain any references to + other regions. Split requests for noneligible regions will be ignored. + </td> </form> </tr> <tr> <form method="get"> - <input type="hidden" name="action" value="merge"> - <input type="hidden" name="name" value="<%= escaped_fqtn %>"> - <td style="border-style: none; text-align: center"> - <input style="font-size: 12pt; width: 10em" type="submit" value="Merge" class="btn"></td> - <td style="border-style: none" width="5%"> </td> - <td style="border-style: none">Region Key (Required):<input type="text" name="left" size="40"> - Region Key (Required) :<input type="text" name="right" size="40"></td> - <td style="border-style: none">This action will merge two - regions of the table, Merge requests for noneligible regions will be ignored.</td> + <input type="hidden" name="action" value="merge" /> + <input type="hidden" name="name" value="<%= escaped_fqtn %>" /> + <td class="centered"> + <input style="font-size: 12pt; width: 10em" type="submit" value="Merge" class="btn" /> + </td> + <td style="text-align: center;"> + <input type="text" name="left" size="40" placeholder="Region Key (required)" /> + <input type="text" name="right" size="40" placeholder="Region Key (required)" /> + </td> + <td> + This action will merge two regions of the table, Merge requests for + noneligible regions will be ignored. + </td> </form> </tr> </table>
