~ubuntu-branches/ubuntu/raring/xdiagnose/raring-proposed

« back to all changes in this revision

Viewing changes to xdiagnose/welcome.py

  • Committer: Package Import Robot
  • Author(s): Bryce Harrington
  • Date: 2012-06-19 14:26:04 UTC
  • Revision ID: package-import@ubuntu.com-20120619142604-mpwrhjh5ohqdehhd
Tags: 2.9
* xdiagnose.udev: Make the GPU apport hook trigger on RESET=1 rather
  than ERROR=1, as an attempt to prevent capturing bug reports on false
  gpu lockups.
  (LP: #983640)
* apport/source_xorg.py:
  - Link to all technical support options, not just to Ask Ubuntu.
    Reword recommendation to explain why technical support should be used
    first.  Add a 'referred-by-support' tag so we can give those bugs
    priority attention.  Provide an option to just file the bug.
    (LP: #991602)
  - Drop question to allow flagging regressions
    following updates, since bug reporters have been using it incorrectly,
    resulting in too many false positives.
    (LP: #1018510)
  - Clarify question about "willing to do whatever it takes" to specify
    that the debugging work may require gdb or git bisection work.
* xdiagnose.desktop.in: Move xdiagnose to System/Settings menu.  Provide
  a GenericName.  Set the gettext domain.
* debian/control: Add runtime dependency on librsvg2, required for
  displaying SVG icons.
  (LP: #969603)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/python3
 
2
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
 
3
#
 
4
# Copyright (C) 2010-2012 Bryce Harrington <bryce@canonical.com>
 
5
#
 
6
# Permission is hereby granted, free of charge, to any person obtaining
 
7
# a copy of this software and associated documentation files (the
 
8
# "Software"), to deal in the Software without restriction, including
 
9
# without limitation the rights to use, copy, modify, merge, publish,
 
10
# distribute, sublicense, and/or sell copies of the Software, and to
 
11
# permit persons to whom the Software is furnished to do so, subject to
 
12
# the following conditions:
 
13
#
 
14
# The above copyright notice and this permission notice shall be included
 
15
# in all copies or substantial portions of the Software.
 
16
#
 
17
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
18
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
19
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 
20
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
 
21
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 
22
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 
23
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2
24
 
3
25
from __future__ import absolute_import, print_function, unicode_literals
4
26