Changeset 148371 in webkit


Ignore:
Timestamp:
Apr 13, 2013 5:28:18 PM (11 years ago)
Author:
rniwa@webkit.org
Message:

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:
Location:
trunk/Websites/bugs.webkit.org
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Websites/bugs.webkit.org/ChangeLog

    r148156 r148371  
     12013-04-13  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        Delete bubbles from webkit-commit-queue.appspot.com now that we've completed the transition
     4        https://bugs.webkit.org/show_bug.cgi?id=114476
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        * code-review.js:
     9        * template/en/custom/attachment/edit.html.tmpl:
     10        * template/en/custom/attachment/list.html.tmpl:
     11        * template/en/custom/attachment/reviewform.html.tmpl:
     12
    1132013-04-10  Ryosuke Niwa  <rniwa@webkit.org>
    214
  • trunk/Websites/bugs.webkit.org/code-review.js

    r148156 r148371  
    537537
    538538  window.addEventListener('message', function(e) {
    539     if (e.origin != 'https://webkit-commit-queue.appspot.com')
     539    if (e.origin != 'https://webkit-queues.appspot.com')
    540540      return;
    541541
     
    547547
    548548  function handleStatusBubbleLoad(e) {
    549     e.target.contentWindow.postMessage('containerMetrics', 'https://webkit-commit-queue.appspot.com');
    550549    e.target.contentWindow.postMessage('containerMetrics', 'https://webkit-queues.appspot.com');
    551550  }
     
    574573      var details = $(data);
    575574      addFlagsForAttachment(details);
    576 
    577       var statusBubble = document.createElement('iframe');
    578       statusBubble.className = 'statusBubble';
    579       statusBubble.src  = 'https://webkit-commit-queue.appspot.com/status-bubble/' + attachment_id;
    580       statusBubble.scrolling = 'no';
    581       statusBubble.style.opacity = '0.3';
    582       // Can't append the HTML because we need to set the onload handler before appending the iframe to the DOM.
    583       statusBubble.onload = handleStatusBubbleLoad;
    584       $('#statusBubbleContainer').append(statusBubble);
    585575
    586576      statusBubble = document.createElement('iframe');
  • trunk/Websites/bugs.webkit.org/template/en/custom/attachment/edit.html.tmpl

    r148156 r148371  
    262262
    263263        <div class="statusBubble">
    264           <iframe src="https://webkit-commit-queue.appspot.com/status-bubble/[% attachment.id %]"
    265                   style="width: 380px; height: 40px; border: none; opacity: 0.3;" scrolling="no">
    266           </iframe>
    267264          <iframe src="https://webkit-queues.appspot.com/status-bubble/[% attachment.id %]"
    268                   style="width: 380px; height: 40px; border: none;" scrolling="no">
     265                  style="width: 400px; height: 40px; border: none;" scrolling="no">
    269266          </iframe>
    270267        </div>
  • trunk/Websites/bugs.webkit.org/template/en/custom/attachment/list.html.tmpl

    r148156 r148371  
    156156            [% END %]
    157157          <div class="statusBubble">
    158             <iframe src="https://webkit-commit-queue.appspot.com/status-bubble/[% attachment.id %]"
    159                     style="width: 380px; height: 20px; border: none; opacity: 0.3" scrolling="no">
    160             </iframe>
    161158            <iframe src="https://webkit-queues.appspot.com/status-bubble/[% attachment.id %]"
    162                     style="width: 380px; height: 20px; border: none;" scrolling="no">
     159                    style="width: 400px; height: 20px; border: none;" scrolling="no">
    163160            </iframe>
    164161          </div>
  • trunk/Websites/bugs.webkit.org/template/en/custom/attachment/reviewform.html.tmpl

    r148156 r148371  
    111111    <td>
    112112      <div class="statusBubble" style="margin-left: 30px;">
    113         <iframe src="https://webkit-commit-queue.appspot.com/status-bubble/[% attachment.id %]"
    114                 style="width: 380px; height: 20px; border: none; opacity: 0.3" scrolling="no">
    115         </iframe>
    116113        <iframe src="https://webkit-queues.appspot.com/status-bubble/[% attachment.id %]"
    117                 style="width: 380px; height: 20px; border: none;" scrolling="no">
     114                style="width: 400px; height: 20px; border: none;" scrolling="no">
    118115        </iframe>
    119116      </div>
Note: See TracChangeset for help on using the changeset viewer.