Commit 9250b263 by Johannes Edmeier

Open raw JSON links in new browser target

closes #137
parent 7526b741
......@@ -4,7 +4,7 @@
<col style="width:auto">
<thead>
<tr>
<th colspan="2">Overview <small class="pull-right"><a href="api/applications/{{ application.id }}/activiti">raw JSON</a></small></th>
<th colspan="2">Overview <small class="pull-right"><a href="api/applications/{{ application.id }}/activiti" target="_blank">raw JSON</a></small></th>
</tr>
</thead>
<tbody>
......
......@@ -6,7 +6,7 @@
<div class="row">
<div class="span6">
<table class="table">
<thead><tr><th colspan="2">Application <small class="pull-right"><a href="api/applications/{{ application.id }}/info">raw JSON</a></small></th></tr></thead>
<thead><tr><th colspan="2">Application <small class="pull-right"><a href="api/applications/{{ application.id }}/info" target="_blank">raw JSON</a></small></th></tr></thead>
<tbody>
<tr ng-repeat="(key, value) in info" >
<td>{{ key }}</td><td style="white-space: pre">{{ value | yaml }}</td>
......@@ -17,7 +17,7 @@
<div class="span6">
<table class="table">
<thead>
<tr><th colspan="2">Health Checks <small class="pull-right"><a href="api/applications/{{ application.id }}/health">raw JSON</a></small></th></tr>
<tr><th colspan="2">Health Checks <small class="pull-right"><a href="api/applications/{{ application.id }}/health" target="_blank">raw JSON</a></small></th></tr>
</thead>
<tbody>
<tr><td ng-init="name= 'Application'" ng-include="'health.html'"></td></tr>
......@@ -62,7 +62,7 @@
</div>
<div class="span6">
<table class="table">
<thead><tr><th colspan="2">JVM <small class="pull-right"><a href="api/applications/{{ application.id }}/metrics">raw JSON</a></small></th></tr></thead>
<thead><tr><th colspan="2">JVM <small class="pull-right"><a href="api/applications/{{ application.id }}/metrics" target="_blank">raw JSON</a></small></th></tr></thead>
<tbody>
<tr ng-if="metrics['systemload.average'] != null && metrics['systemload.average'] >= 0.0">
<td>Systemload</td>
......
......@@ -3,7 +3,7 @@
<col style="width:auto">
<thead>
<tr>
<th>Classpath <small class="pull-right"><a href="api/applications/{{ application.id }}/env">raw JSON</a></small></th>
<th>Classpath <small class="pull-right"><a href="api/applications/{{ application.id }}/env" target="_blank">raw JSON</a></small></th>
</tr>
</thead>
<tbody>
......
......@@ -4,7 +4,7 @@
</div>
<div class="row">
<table class="table table-hover boxed">
<thead><tr><th>Profiles <small class="pull-right"><small class="pull-right"><a href="api/applications/{{ application.id }}/env">raw JSON</a></small></th></tr></thead>
<thead><tr><th>Profiles <small class="pull-right"><small class="pull-right"><a href="api/applications/{{ application.id }}/env" target="_blank">raw JSON</a></small></th></tr></thead>
<tbody>
<tr ng-repeat="profile in env.profiles" >
<td style="word-break: break-all;" >{{ profile }}</td>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment