~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/answers/doc/notifications.txt

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-04-23 13:35:31 UTC
  • mfrom: (12906.2.8 question-emails-0)
  • Revision ID: launchpad@pqm.canonical.com-20110423133531-z4r70fh65369ulhy
[rs=sinzui][bug=351136][bug=239158][bug=597982] Fix 'requested more
 information', detect the signature separator properly,
 simplify email subject lines.

Show diffs side-by-side

added added

removed removed

Lines of Context:
133
133
    >>> edit_notification = notifications[0]
134
134
    >>> notification_body = edit_notification.get_payload(decode=True)
135
135
    >>> print edit_notification['Subject']
136
 
    [Question #...]: Installer doesn't work on a Mac
 
136
    Re: [Question #...]: Installer doesn't work on a Mac
137
137
 
138
138
    >>> print notification_body #doctest: -NORMALIZE_WHITESPACE
139
139
    Question #... libstdc++ in Ubuntu changed:
336
336
    <BLANKLINE>
337
337
        Status: Open => Needs information
338
338
    <BLANKLINE>
339
 
    No Privileges Person requested for more information:
 
339
    No Privileges Person requested more information:
340
340
    What is your Mac model?
341
341
    <BLANKLINE>
342
342
    --...
353
353
    <BLANKLINE>
354
354
        Status: Open => Needs information
355
355
    <BLANKLINE>
356
 
    No Privileges Person requested for more information:
 
356
    No Privileges Person requested more information:
357
357
    What is your Mac model?
358
358
    <BLANKLINE>
359
359
    --...
858
858
    ['no-priv@canonical.com', 'no-priv@canonical.com',
859
859
     'support@ubuntu.com', 'support@ubuntu.com']
860
860
 
861
 
    >>> notifications[0]['Subject']
862
 
    '[Question #...]: Installer fails on a Mac PPC'
863
 
 
864
 
    >>> notifications[1]['Subject']
865
 
    'Re: [Question #...]: Installer fails on a Mac PPC'
866
 
 
867
 
    >>> notification_body = notifications[0].get_payload(decode=True)
868
 
    >>> print notification_body
869
 
    New question #... on Ubuntu:
870
 
    http://answers.launchpad.dev/ubuntu/+question/...
871
 
    <BLANKLINE>
872
 
    I insert the install CD in the CD-ROM drive, but it won't boot.
873
 
    <BLANKLINE>
874
 
    It boots straight into MacOS 9.
875
 
    <BLANKLINE>
876
 
    --...
877
 
 
878
861
 
879
862
Notifications and Teams
880
863
-----------------------