You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

contrib.xml 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.0//EN" "dtd/document-v10.dtd">
  3. <document>
  4. <header>
  5. <title>Contribution to POI</title>
  6. <authors>
  7. <person name="Robin Green" email="greenrd@hotmail.com"/>
  8. <person name="Stefano Mazzocchi" email="stefano@apache.org"/>
  9. <person name="Nicola Ken Barozzi" email="barozzi@nicolaken.com"/>
  10. </authors>
  11. </header>
  12. <body>
  13. <s1 title="Introduction">
  14. <p>
  15. The POI Project is an <link href="http://www.opensource.org/">Open Source</link>
  16. volunteer project released under a very open license.
  17. This means there are many ways to contribute to the project - either
  18. with direct participation (coding, documenting, answering questions,
  19. proposing ideas, reporting bugs, suggesting bug-fixes, etc..) or by resource
  20. donations (money, time, publicity, hardware, software, conference
  21. presentations, speeches, etc...).
  22. </p>
  23. <p>
  24. To begin with, we suggest you to subscribe to the
  25. <link href="mail-lists.html">POI mailing lists</link>
  26. (follow the link for information on how to subscribe and to access the mail
  27. list archives). Listen-in for a while, to hear how others make contibutions.
  28. </p>
  29. <p>You can get your local working copy of the
  30. <link href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/POI">latest and
  31. greatest code</link> (which you find in the POI module in
  32. the CVS code repository.
  33. Review the <link href="todo.html">todo</link> list, choose a task
  34. (or perhaps you have noticed something that needs patching). Make the
  35. changes, do the testing, generate a patch, and post to the dev
  36. mailing list. (Do not worry - the process is easy and explained below.)
  37. </p>
  38. <p>
  39. Document writers are usually the most wanted people so if
  40. you like to help but you're not familiar with the innermost technical details, don't worry:
  41. we have work for you!
  42. </p>
  43. </s1>
  44. <s1 title="Help Wanted Here">
  45. <p>
  46. The rest of this document is mainly about
  47. contributing new or improved code and/or documentation, but we would also be glad to have
  48. extra help in any of the following areas:
  49. </p>
  50. <ul>
  51. <li>Answering questions on the <code>users</code> mailing list - there is often a problem of
  52. having too many questioners and not enough experts to respond to all the questions.</li>
  53. <li>Testing POI (especially its less-frequently-used features) on various configurations
  54. and reporting back.</li>
  55. <li>Debugging - producing reproduceable test cases and/or finding causes of bugs. Some known bugs are informally listed on
  56. <link href="todo.html">To Do</link>, and some are recorded in Bugzilla
  57. (see <link href="#procedure">explanation below</link>).</li>
  58. <li>Specifying/analysing/designing new features - and beyond. (If you wish to get involved
  59. with this, please join <code>general POI mailing list</code>
  60. , install and try out POI
  61. and read some of the <link href="mail-lists.html">mail archives</link>.
  62. You should have a strong "fluency" in XML technologies, Java and a basic understanding of
  63. the POI architecture - don't just say "it should have XYZ" without reading anything first -
  64. because chances are, someone's already thought of that feature!)</li>
  65. <li>Packaging easy-to-install packages (such as RPMs) for the myriad of possible configurations out
  66. there. (The project does not maintain anything but the basic <code>.zip</code> and
  67. <code>.tar.gz</code> packages, but anyone is welcome to build their own specific packages and
  68. announce them on the <code>general POI list</code>)</li>
  69. <li>... and there is just one other thing - don't forget to tell everyone who asks, how great POI is! ;-)
  70. The more people that know about and start to use POI, the larger the pool of
  71. potential contributors there will be.
  72. </li>
  73. </ul>
  74. </s1>
  75. <anchor id="cvshowto"/>
  76. <s1 title="CVS Usage Precis">
  77. <p>An overview of how to use CVS to participate in POI development.
  78. Do not be afraid - you cannot accidently destroy the actual code repository,
  79. because you are working with a local copy as an anonymous user. Therefore,
  80. you do not have the system permissions to change anything. You can only
  81. update your local repository and compare your revisions with the real
  82. repository.
  83. </p>
  84. <p>
  85. (Further general CVS usage information is at
  86. <link href="http://www.cvshome.org/">www.cvshome.org</link> and your local
  87. <code>info cvs</code> pages or <code>man cvs</code> pages or user
  88. documentation.)
  89. </p>
  90. <p>
  91. Let us lead by example. We will show you how to establish your local
  92. repository, how to keep it up-to-date, and how to generate the differences
  93. to create a patch. (The commands are for Linux.)
  94. </p>
  95. </s1>
  96. <anchor id="ssh"/>
  97. <s1 title="CVS Committer with Secure Shell access">
  98. <p>After a developer has consistently provided contributions (code,
  99. documentation and discussion), then the rest of the dev community
  100. may vote to grant this developer commit access to CVS.
  101. </p>
  102. <p>You will need secure access to the repository to be able to commit
  103. patches. Here are some resources that help to get your machine configured
  104. to use the repository over SSH.
  105. </p>
  106. <ul>
  107. <li><link href="http://cvsbook.red-bean.com/">The CVS Book</link></li>
  108. <li><link href="http://www.cvshome.org/">www.cvshome.org</link></li>
  109. <li><link href="https://sourceforge.net/cvs/?group_id=32701"></link>
  110. - See the bottom of the page for links to tips for UNIX and Windows.
  111. Even if you are on UNIX, the Windows page will also help.</li>
  112. </ul>
  113. </s1>
  114. <anchor id="procedure"/>
  115. <s1 title="Procedure for Raising Development Issues">
  116. <p>
  117. There are two methods for discussing development and submitting patches.
  118. So that everyone can be productive, it is important to know which method
  119. is appropriate for a certain situation and how to go about it without
  120. confusion. This section explains when to use the
  121. <code>developer</code> <link href="mail-lists.html">mailing list</link>
  122. the bug database.
  123. </p>
  124. <p>
  125. Research your topic thoroughly before beginning to discuss a new
  126. development issue. Search and browse through the email archives - your
  127. issue may have been discussed before. Prepare your post clearly and
  128. concisely.
  129. </p>
  130. <p>
  131. Most issues will be discovered, resolved, and then patched quickly
  132. via the <code>developer</code> mailing list. Larger issues, and ones that
  133. are not yet fully understood or are hard to solve, are destined for
  134. Bugzilla.
  135. </p>
  136. <p>
  137. Experienced developers use Bugzilla directly, as they are very sure
  138. when they have found a bug and when not. However, less experienced users
  139. should first discuss it on the user or developer mailing list (as
  140. appropriate). Impatient people always enter everything into Bugzilla
  141. without caring if it is a bug of POI or their own
  142. installation/configuration mistake - please do not do this.
  143. </p>
  144. <p>
  145. As a rule-of-thumb, discuss an issue on the <code>developers</code>
  146. mailing list first to work out any details.
  147. After it is confirmed to be worthwhile, and you are clear about it,
  148. then submit the bug description or patch via Bug Tracking.
  149. </p>
  150. <p>
  151. Perhaps you do not get any answer on your first reply, so just post
  152. it again until you get one. (But please not every hour - allow a few
  153. days for the list to deal with it.) Do not be impatient - remember that
  154. the whole world is busy, not just you. Bear in mind that other countries
  155. will have holidays at different times to your country and that they are
  156. in different time zones. You might also consider re-writing your initial
  157. posting - perhaps it was not clear enough
  158. and the readers' eyes glazed over.
  159. </p>
  160. </s1>
  161. <anchor id="tips"/>
  162. <s1 title="Contribution Notes and Tips">
  163. <p>
  164. This is a collection of tips for contributing to the project in a manner
  165. that is productive for all parties.
  166. </p>
  167. <ul>
  168. <li>
  169. Every contribution is worthwhile. Even if the ensuing discussion
  170. proves it to be off-beam, then it may jog ideas for other people.
  171. </li>
  172. <li>
  173. Use sensible and concise email subject headings. Search engines, and
  174. humans trying to browse a voluminous list, will respond favourably to a
  175. descriptive title.
  176. </li>
  177. <li>Start new threads with new Subject for new topics, rather than
  178. re-using the previous Subject line.
  179. </li>
  180. <li>Keep each topic focussed. If some new topic arises then start a new
  181. discussion. This leaves the original topic to continue un-cluttered.
  182. </li>
  183. <li>Whenever you decide to start a new topic, then start with a fresh
  184. new email message window. Do not use the &quot;Reply to&quot; button,
  185. because threaded mail-readers get confused (they utilise the
  186. <code>In-reply-to</code> header). If so, then your new topic will get
  187. lost in the previous thread and go un-answered.
  188. </li>
  189. <li>
  190. Prepend your email subject line with a marker when that is appropriate,
  191. e.g. <code>[Patch]</code>, <code>[Proposal]</code>,
  192. <code>[RT]</code> (Random Thought which quickly blossom into research
  193. topics :-), <code>[STATUS]</code> (development status of a certain
  194. facility).
  195. </li>
  196. <li>
  197. When making changes to XML documentation, or any XML document for that
  198. matter, use a
  199. <link href="http://www.oasis-open.org/cover/">validating parser</link>
  200. (one that is tried and true is
  201. <link href="http://www.jclark.com/sp/">SP/nsgmls</link>).
  202. This procedure will detect errors without having to go through the whole
  203. <code>build docs</code> process to find them. Do not expect POI
  204. or the build system to detect the validation errors for you - they can
  205. do it, but that is not their purpose. (Anyway, nsgmls validation error
  206. messages are more informative.)
  207. </li>
  208. <li>
  209. Remember that most people are participating in development on a
  210. volunteer basis and in their "spare time". These enthusiasts will attempt
  211. to respond to issues. It may take a little while to get your answers.
  212. </li>
  213. <li>
  214. Research your topic thoroughly before beginning to discuss a new
  215. development issue. Search and browse through the email archives - your
  216. issue may have been discussed before. Do not just perceive a problem and
  217. then rush out with a question - instead, delve.
  218. </li>
  219. <li>
  220. Try to at least offer a partial solution and not just a problem statement.
  221. </li>
  222. <li>
  223. Take the time to clearly explain your issue and write a concise email
  224. message. Less confusion facilitates fast and complete resolution.
  225. </li>
  226. <li>
  227. Do not bother to send an email reply that simply says "thanks".
  228. When the issue is resolved, that is the finish - end of thread.
  229. Reduce clutter.
  230. </li>
  231. <li>
  232. You would usually do any development work against the HEAD branch of CVS.
  233. </li>
  234. <li>
  235. When sending a patch, you usually do not need to worry about which CVS
  236. branch it should be applied to. The maintainers of the repository will
  237. decide.
  238. </li>
  239. <li>
  240. If an issue starts to get bogged down in list discussion, then it may
  241. be appropriate to go into private off-list discussion with a few interested
  242. other people. Spare the list from the gory details. Report a summary back
  243. to the list to finalise the thread.
  244. </li>
  245. <li>
  246. Become familiar with the mailing lists. As you browse and search, you will
  247. see the way other people do things. Follow the leading examples.
  248. </li>
  249. </ul>
  250. </s1>
  251. </body>
  252. </document>