~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/templates/branchmergeproposal-index.pt

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-08-03 11:23:34 UTC
  • mfrom: (13457.6.16 upgrade-stderr)
  • Revision ID: launchpad@pqm.canonical.com-20110803112334-acnupsa7jmzmdeet
[r=stevenk][bug=819751] Fix the implementation of several methods in
 LoggingUIFactory.

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
      padding-bottom: 10px;
49
49
    }
50
50
  </style>
 
51
  <tal:if condition="request/features/bugs.private_notification.enabled">
 
52
  <script>
 
53
      LPS.use('base', 'node', 'lp.app.privacy', function(Y) {
 
54
          Y.on("domready", function () {
 
55
              if (Y.one(document.body).hasClass('private')) {
 
56
                  var config = {
 
57
                      notification_text: 'This merge proposal is for a private branch',
 
58
                      hidden: true
 
59
                  };
 
60
                  Y.lp.app.privacy.setup_privacy_notification(config);
 
61
                  Y.lp.app.privacy.display_privacy_notification(false);
 
62
              }
 
63
          });
 
64
      });
 
65
  </script>
 
66
  </tal:if>
51
67
</metal:block>
52
68
 
53
69
<tal:registering metal:fill-slot="registering">
180
196
    </div>
181
197
  </div>
182
198
 
183
 
  <div id="diff-area">
184
 
    <div class="yui-g" tal:condition="view/pending_diff">
185
 
      <div class="pending-update" id="diff-pending-update">
186
 
        <h3>Updating diff...</h3>
187
 
        <p tal:condition="not: features/longpoll.merge_proposals.enabled">
188
 
          An updated diff will be available in a few minutes. Reload to see the
189
 
          changes.
190
 
        </p>
191
 
        <p tal:condition="features/longpoll.merge_proposals.enabled">
192
 
          An updated diff is being calculated and will appear automatically when ready.
193
 
        </p>
194
 
      </div>
195
 
    </div>
196
 
    <div id="review-diff" tal:condition="view/preview_diff">
197
 
      <h2>Preview Diff </h2>
198
 
      <div class="diff-content">
199
 
        <div tal:replace="structure context/@@++diff"/>
200
 
      </div>
201
 
    </div>
 
199
  <div class="yui-g" tal:condition="view/pending_diff">
 
200
    <div class="pending-update" id="diff-pending-update">
 
201
      <h3>Updating diff...</h3>
 
202
      <p>
 
203
        An updated diff will be available in a few minutes.  Reload to see the
 
204
        changes.
 
205
      </p>
 
206
    </div>
 
207
  </div>
 
208
  <div id="review-diff" tal:condition="view/preview_diff">
 
209
    <h2>Preview Diff</h2>
 
210
    <div tal:replace="structure context/@@++diff"/>
202
211
  </div>
203
212
 
204
213
<tal:script
208
217
  <!--
209
218
  LPS.use('io-base', 'lp.code.branchmergeproposal.reviewcomment',
210
219
          'lp.code.branchmergeproposal.status', 'lp.app.comment',
211
 
          'lp.code.branchmergeproposal.updater', 'lp.app.widgets.expander',
212
 
          'lp.code.branch.revisionexpander', function(Y) {
 
220
          'lp.app.widgets.expander', 'lp.code.branch.revisionexpander', function(Y) {
213
221
 
214
222
    Y.on('load', function() {
215
223
        var logged_in = LP.links['me'] !== undefined;
227
235
        Y.lp.code.branchmergeproposal.reviewcomment.connect_links();
228
236
        (new Y.lp.code.branchmergeproposal.reviewcomment.NumberToggle()
229
237
            ).render();
230
 
 
231
 
        if (Y.Lang.isValue(LP.cache.merge_proposal_event_key)) {
232
 
            var updater = new Y.lp.code.branchmergeproposal.updater.UpdaterWidget(
233
 
                {srcNode: Y.one('#diff-area')});
234
 
            Y.on(LP.cache.merge_proposal_event_key, function(data) {
235
 
                if (Y.lp.code.branchmergeproposal.updater.is_mp_diff_updated(data)) {
236
 
                    updater.update();
237
 
                }
238
 
            });
239
 
            updater.on(updater.NAME + '.updated', function() {
240
 
                (new Y.lp.code.branchmergeproposal.reviewcomment.NumberToggle()
241
 
                    ).render();
242
 
            });
243
 
        }
244
 
 
245
238
      }, window);
246
239
 
247
240
    Y.on('domready', function() {