~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/browser/bugcomment.py

  • Committer: Colin Watson
  • Date: 2011-08-19 00:25:11 UTC
  • mfrom: (7675.1045.728 db-devel)
  • mto: This revision was merged to the branch mainline in revision 13909.
  • Revision ID: cjwatson@canonical.com-20110819002511-0x8hrqs1ckiqk53g
merge db-devel

Show diffs side-by-side

added added

removed removed

Lines of Context:
299
299
 
300
300
        # Don't cache for long if we are waiting for synchronization.
301
301
        elif self.bugwatch and not self.synchronized:
302
 
            return 5*60
 
302
            return 5 * 60
303
303
 
304
304
        # For the rest of the first day, the rendering changes every
305
305
        # hour. '4 hours ago'. Expire in 15 minutes so the timestamp
306
306
        # is at most 15 minutes out of date.
307
307
        elif self.datecreated > now - timedelta(days=1):
308
 
            return 15*60
 
308
            return 15 * 60
309
309
 
310
310
        # Otherwise, cache away. Lets cache for 6 hours. We don't want
311
311
        # to cache for too long as there are still things that can
312
312
        # become stale - eg. if a bug attachment has been deleted we
313
313
        # should stop rendering the link.
314
314
        else:
315
 
            return 6*60*60
 
315
            return 6 * 60 * 60
316
316
 
317
317
 
318
318
class BugCommentView(LaunchpadView):
328
328
    @property
329
329
    def show_spam_controls(self):
330
330
        return self.comment.show_spam_controls
331
 
    
 
331
 
332
332
    def page_title(self):
333
333
        return 'Comment %d for bug %d' % (
334
334
            self.comment.index, self.context.bug.id)
335
335
 
 
336
    @property
 
337
    def privacy_notice_classes(self):
 
338
        if not self.context.bug.private:
 
339
            return 'hidden'
 
340
        else:
 
341
            return ''
 
342
 
336
343
 
337
344
class BugCommentBoxViewMixin:
338
345
    """A class which provides proxied Librarian URLs for bug attachments."""
340
347
    @property
341
348
    def show_spam_controls(self):
342
349
        if hasattr(self.context, 'show_spam_controls'):
343
 
           return self.context.show_spam_controls
 
350
            return self.context.show_spam_controls
344
351
        elif (hasattr(self, 'comment') and
345
 
           hasattr(self.comment, 'show_spam_controls')):
346
 
           return self.comment.show_spam_controls
 
352
            hasattr(self.comment, 'show_spam_controls')):
 
353
            return self.comment.show_spam_controls
347
354
        else:
348
 
           return False
 
355
            return False
349
356
 
350
357
    def proxiedUrlOfLibraryFileAlias(self, attachment):
351
358
        """Return the proxied URL for the Librarian file of the attachment."""