~ubuntu-branches/ubuntu/trusty/unity-control-center/trusty

« back to all changes in this revision

Viewing changes to README

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2014-01-08 16:29:18 UTC
  • Revision ID: package-import@ubuntu.com-20140108162918-g29dd08tr913y2qh
Tags: upstream-14.04.0
ImportĀ upstreamĀ versionĀ 14.04.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
GNOME Control Center  
 
2
====================
 
3
 
 
4
About -
 
5
 
 
6
The control center is GNOME's main interface for configuration of various
 
7
aspects of your desktop.
 
8
 
 
9
Installation -
 
10
 
 
11
See the file 'INSTALL'
 
12
 
 
13
How to report bugs -
 
14
 
 
15
Bugs should be reported to the GNOME bug tracking system under the product
 
16
control-center. It is available at http://bugzilla.gnome.org. 
 
17
 
 
18
In the report please include the following information -
 
19
 
 
20
        Operating system and version
 
21
        For Linux, version of the C library
 
22
        How to reproduce the bug if possible
 
23
        If the bug was a crash, include the exact text that was printed out
 
24
        A stacktrace where possible [see below]
 
25
 
 
26
How to get a stack trace -
 
27
 
 
28
If the crash is reproducible, it is possible to get a stack trace and 
 
29
attach it to the bug report. The following steps are used to obtain a 
 
30
stack trace -
 
31
        
 
32
        Run the program in gdb [the GNU debugger] or any other debugger
 
33
                ie. gdb gnome-keyboard-properties
 
34
        Start the program
 
35
                ie. (gdb) run
 
36
        Reproduce the crash and the program will exit to the gdb prompt
 
37
        Get the back trace
 
38
                ie. (gdb) bt full
 
39
 
 
40
Once you have the backtrace, copy and paste this either into the 
 
41
'Comments' field or attach a file with it included.
 
42
 
 
43
 
 
44
Patches -
 
45
 
 
46
Patches should be submitted to bugzilla.gnome.org or emailed to the 
 
47
gnomecc-list@gnome.org list. If using bugzilla, attach
 
48
the patch to a new bug report [or preferably, check to see if there is
 
49
already a bug report that corresponds to your patch]. Bug reports 
 
50
containing patches should include the 'PATCH' keyword.
 
51
 
 
52
Patches should be created using the unified diff form.
 
53
        ie. svn diff file-to-be-patched.c > patch.diff