提交 f2e2cbec 编写于 作者: C CloudBees DEV@Cloud

Merge REMERGE_HEAD into HEAD

...@@ -41,6 +41,7 @@ THE SOFTWARE. ...@@ -41,6 +41,7 @@ THE SOFTWARE.
<h1 style="text-align: center"> <h1 style="text-align: center">
<img src="${imagesURL}/rage.png" height="179" width="154"/> <span style="font-size:50px"><st:nbsp/>${%Oops!}</span> <img src="${imagesURL}/rage.png" height="179" width="154"/> <span style="font-size:50px"><st:nbsp/>${%Oops!}</span>
</h1> </h1>
<div id="error-description">
<p> <p>
${%problemHappened} ${%problemHappened}
${%checkJIRA} ${%checkJIRA}
...@@ -51,6 +52,7 @@ THE SOFTWARE. ...@@ -51,6 +52,7 @@ THE SOFTWARE.
</p> </p>
<h2>${%Stack trace}</h2> <h2>${%Stack trace}</h2>
<pre style="margin:2em; clear:both">${h.printThrowable(request.getAttribute('javax.servlet.error.exception'))}</pre> <pre style="margin:2em; clear:both">${h.printThrowable(request.getAttribute('javax.servlet.error.exception'))}</pre>
</div>
</l:main-panel> </l:main-panel>
</l:layout> </l:layout>
</j:jelly> </j:jelly>
\ No newline at end of file
...@@ -12,7 +12,7 @@ Behaviour.specify("INPUT.apply-button", 'apply', 0, function (e) { ...@@ -12,7 +12,7 @@ Behaviour.specify("INPUT.apply-button", 'apply', 0, function (e) {
}); });
responseDialog.setHeader("Error"); responseDialog.setHeader("Error");
responseDialog.setBody("<div id='"+containerId+"'></iframe>"); responseDialog.setBody("<div id='"+containerId+"'></div>");
responseDialog.render(document.body); responseDialog.render(document.body);
var target; // iframe var target; // iframe
...@@ -42,7 +42,12 @@ Behaviour.specify("INPUT.apply-button", 'apply', 0, function (e) { ...@@ -42,7 +42,12 @@ Behaviour.specify("INPUT.apply-button", 'apply', 0, function (e) {
} else { } else {
// otherwise this is possibly an error from the server, so we need to render the whole content. // otherwise this is possibly an error from the server, so we need to render the whole content.
var doc = target.contentDocument || target.contentWindow.document; var doc = target.contentDocument || target.contentWindow.document;
$(containerId).appendChild(doc.getElementsByTagName('body')[0]); var error = doc.getElementById('error-description');
if (!error) {
// fallback if it's not a regular error dialog from oops.jelly: use the entire body
error = doc.getElementsByTagName('body')[0];
}
$(containerId).appendChild(error);
var r = YAHOO.util.Dom.getClientRegion(); var r = YAHOO.util.Dom.getClientRegion();
responseDialog.cfg.setProperty("width",r.width*3/4+"px"); responseDialog.cfg.setProperty("width",r.width*3/4+"px");
responseDialog.cfg.setProperty("height",r.height*3/4+"px"); responseDialog.cfg.setProperty("height",r.height*3/4+"px");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册