https://bugs.webkit.org/show_bug.cgi?id=114476
Reviewed by Gyuyoung Kim.
* code-review.js:
* template/en/custom/attachment/edit.html.tmpl:
* template/en/custom/attachment/list.html.tmpl:
* template/en/custom/attachment/reviewform.html.tmpl:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@148371
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2013-04-13 Ryosuke Niwa <rniwa@webkit.org>
+
+ Delete bubbles from webkit-commit-queue.appspot.com now that we've completed the transition
+ https://bugs.webkit.org/show_bug.cgi?id=114476
+
+ Reviewed by Gyuyoung Kim.
+
+ * code-review.js:
+ * template/en/custom/attachment/edit.html.tmpl:
+ * template/en/custom/attachment/list.html.tmpl:
+ * template/en/custom/attachment/reviewform.html.tmpl:
+
2013-04-10 Ryosuke Niwa <rniwa@webkit.org>
Make old EWS bubbles less opaque to disambiguate two set of bubbles.
}
window.addEventListener('message', function(e) {
- if (e.origin != 'https://webkit-commit-queue.appspot.com')
+ if (e.origin != 'https://webkit-queues.appspot.com')
return;
if (e.data.height) {
}, false);
function handleStatusBubbleLoad(e) {
- e.target.contentWindow.postMessage('containerMetrics', 'https://webkit-commit-queue.appspot.com');
e.target.contentWindow.postMessage('containerMetrics', 'https://webkit-queues.appspot.com');
}
var details = $(data);
addFlagsForAttachment(details);
- var statusBubble = document.createElement('iframe');
- statusBubble.className = 'statusBubble';
- statusBubble.src = 'https://webkit-commit-queue.appspot.com/status-bubble/' + attachment_id;
- statusBubble.scrolling = 'no';
- statusBubble.style.opacity = '0.3';
- // Can't append the HTML because we need to set the onload handler before appending the iframe to the DOM.
- statusBubble.onload = handleStatusBubbleLoad;
- $('#statusBubbleContainer').append(statusBubble);
-
statusBubble = document.createElement('iframe');
statusBubble.className = 'statusBubble';
statusBubble.src = 'https://webkit-queues.appspot.com/status-bubble/' + attachment_id;
<b><small>Bot Status:</small></b>
<div class="statusBubble">
- <iframe src="https://webkit-commit-queue.appspot.com/status-bubble/[% attachment.id %]"
- style="width: 380px; height: 40px; border: none; opacity: 0.3;" scrolling="no">
- </iframe>
<iframe src="https://webkit-queues.appspot.com/status-bubble/[% attachment.id %]"
- style="width: 380px; height: 40px; border: none;" scrolling="no">
+ style="width: 400px; height: 40px; border: none;" scrolling="no">
</iframe>
</div>
<br>
[% END %]
[% END %]
<div class="statusBubble">
- <iframe src="https://webkit-commit-queue.appspot.com/status-bubble/[% attachment.id %]"
- style="width: 380px; height: 20px; border: none; opacity: 0.3" scrolling="no">
- </iframe>
<iframe src="https://webkit-queues.appspot.com/status-bubble/[% attachment.id %]"
- style="width: 380px; height: 20px; border: none;" scrolling="no">
+ style="width: 400px; height: 20px; border: none;" scrolling="no">
</iframe>
</div>
[% END %]
<tr>
<td>
<div class="statusBubble" style="margin-left: 30px;">
- <iframe src="https://webkit-commit-queue.appspot.com/status-bubble/[% attachment.id %]"
- style="width: 380px; height: 20px; border: none; opacity: 0.3" scrolling="no">
- </iframe>
<iframe src="https://webkit-queues.appspot.com/status-bubble/[% attachment.id %]"
- style="width: 380px; height: 20px; border: none;" scrolling="no">
+ style="width: 400px; height: 20px; border: none;" scrolling="no">
</iframe>
</div>
</td>