BUGS 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. If you find a bug in cairo we would love to hear about it. We're also
  2. trying to make cairo better, and learning about the bugs that users
  3. encounter is an essential part of that. So we really appreciate the
  4. extra effort users put in to providing high-quality bug reports.
  5. There are two acceptable ways to report cairo bugs, and you can choose
  6. which you prefer:
  7. 1) Bugzilla bug tracking database:
  8. You can use the following web interface to report new bugs, follow
  9. up on previous bug reports, and search for existing, known
  10. bugs. Just use the "cairo" product:
  11. http://bugs.freedesktop.org
  12. It is necessary to go through a quick account creation process,
  13. (with email address verification), in order to be able to report
  14. new bugs in bugzilla. We apologize for any inconvenience that might
  15. cause, and hope it won't prevent you from reporting bugs.
  16. 2) Cairo mailing list:
  17. For people who cannot stand the bugzilla interface, you can just
  18. send an email to cairo mailing list (cairo@cairographics.org). The
  19. mailing list only allows posting from subscribers, so use the
  20. following page for subscription instructions:
  21. http://cairographics.org/lists
  22. Again, we apologize for any inconvenience this subscription step
  23. might cause, but we've found it necessary to require this in order
  24. to enjoy spam-free discussions on the list.
  25. If you don't actually _want_ to be a subscriber to the mailing
  26. list, but just want to be able to send a message, the easiest thing
  27. to do is to go through the subscription process, and then use the
  28. preferences page to disable message delivery to your address.
  29. Which of the above you use to report bugs depends on your own
  30. preferences. Some people find just typing an email message much easier
  31. than using the web-based forms on bugzilla. Others greatly prefer the
  32. ability to check back on a specific bug entry in bugzilla without
  33. having to ask on the mailing list if an issue has been resolved.
  34. Regardless of which method you use, here are some general tips that
  35. will help you improve the quality of your bug report, (which will help
  36. in getting the bug fixed sooner):
  37. 1) Check to see if the bug has been reported already. It's pretty easy
  38. to run a search or two against the cairo product in the
  39. http://bugs.freedesktop.org bugzilla database. Another place to
  40. look for known bugs is the cairo ROADMAP:
  41. http://cairographics.org/ROADMAP
  42. which shows a planned schedule of releases and which bug fixes are
  43. being planned for each release.
  44. 2) Provide an accurate description of the bug with detailed steps for
  45. how we can reproduce the problem.
  46. 3) If possible provide a minimal test case demonstrating the bug. A
  47. great test case would be a minimal self-contained function in C or
  48. python or whatever language you are using for cairo. The function
  49. might accept nothing more than a cairo context, (cairo_t* in C).
  50. 4) If you feel like being particularly helpful, you could craft this
  51. minimal test case in the form necessary for cairo's test
  52. suite. This isn't much more work than writing a minimal
  53. function. Just look at the cairo/test/README file and imitate the
  54. style of existing test cases.
  55. If you do submit a test case, be sure to include Copyright
  56. information, (with the standard MIT licensing blurb if you want us
  57. to include your test in the test case). Also, including a reference
  58. image showing the expected result will be extremely useful.
  59. 5) Finally, the best bug report also comes attached with a patch to
  60. cairo to fix the bug. So send this too if you have it! Otherwise,
  61. don't worry about it and we'll try to fix cairo when we can.
  62. Thanks, and have fun with cairo!
  63. -Carl