Author: | David Goodger; open to all Docutils developers |
---|---|
Contact: | docutils-develop@lists.sourceforge.net |
Date: | 2013-01-28 |
Revision: | 7597 |
Copyright: | This document has been placed in the public domain. |
Contents
The Docutils project group is a meritocracy based on code contribution and lots of discussion [1]. A few quotes sum up the policies of the Docutils project. The IETF's classic credo (by MIT professor Dave Clark) is an ideal we can aspire to:
We reject: kings, presidents, and voting. We believe in: rough consensus and running code.
As architect, chief cook and bottle-washer, David Goodger currently functions as BDFN (Benevolent Dictator For Now). (But he would happily abdicate the throne given a suitable candidate. Any takers?)
Eric S. Raymond, anthropologist of the hacker subculture, writes in his essay The Magic Cauldron:
The number of contributors [to] projects is strongly and inversely correlated with the number of hoops each project makes a user go through to contribute.
We will endeavour to keep the barrier to entry as low as possible. The policies below should not be thought of as barriers, but merely as a codification of experience to date. These are "best practices"; guidelines, not absolutes. Exceptions are expected, tolerated, and used as a source of improvement. Feedback and criticism is welcome.
As for control issues, Emmett Plant (CEO of the Xiph.org Foundation, originators of Ogg Vorbis) put it well when he said:
Open source dictates that you lose a certain amount of control over your codebase, and that's okay with us.
[1] | Phrase borrowed from Ben Collins-Sussman of the Subversion project. |
Present your idea at the Docutils-develop mailing list,
+1 | usually triggers a fast response, |
-1 | may be forgotten later, |
and/or file a feature request at the docutils tracker
+1 | there is a permanent record, |
-1 | it may stay forgotten among all the other feature requests. |
Convince a Docutils developer that this is a valuable addition worth the effort.
Contribute. The developers will make sure that the contribution fits nicely into Docutils (cf. the review criteria). This might involve discussing (and compromising on) design and implementation details. It might also lead to the conclusion that the addition fits better in the extensions and related projects.
Be patient, and be persistent. None of us are paid to do this, it's all in our spare time -- which is precious and rare.
How to make code contributions that are easily accepted:
Have a look at the Python coding conventions and documentation conventions below.
Prepare test cases. This vastly helps when integrating new code. Test cases are also examples and showcases for new features. See Docutils Testing for a description of the test suite in docutils/test/.
Ensure the addition works with all supported Python versions (2.4 ... 3.2).
Look at the Docutils sources to see how similar features are implemented, learn to do it "the Docutils way".
Prepare the a patch or an addition to the existing documentation. Include links.
If you are familiar with version control, consider creating a feature branch in a Docutils repository checkout. (Working with branches is much easier with git. You can get a git clone of the repository from http://repo.or.cz/w/docutils.git or with git-svn.)
Contributed code will not be refused merely because it does not strictly adhere to these conditions; as long as it's internally consistent, clean, and correct, it probably will be accepted. But don't be surprised if the "offending" code gets fiddled over time to conform to these conventions.
The Docutils project shall follow the generic coding conventions as specified in the Style Guide for Python Code and Docstring Conventions PEPs, summarized, clarified, and extended as follows:
Docutils documentation is written using reStructuredText, of course.
Use 7-bit ASCII if at all possible, and Unicode substitutions when necessary.
Use the following section title adornment styles:
================ Document Title ================ -------------------------------------------- Document Subtitle, or Major Division Title -------------------------------------------- Section ======= Subsection ---------- Sub-Subsection `````````````` Sub-Sub-Subsection ..................
Use two blank lines before each section/subsection/etc. title. One blank line is sufficient between immediately adjacent titles.
Add a bibliographic field list immediately after the document title/subtitle. See the beginning of this document for an example.
Add an Emacs "local variables" block in a comment at the end of the document. See the end of this document for an example.
The majority of the Docutils project code and documentation has been placed in the public domain. Unless clearly and explicitly indicated otherwise, any patches (modifications to existing files) submitted to the project for inclusion (via Subversion, SourceForge trackers, mailing lists, or private email) are assumed to be in the public domain as well.
Any new files contributed to the project should clearly state their intentions regarding copyright, in one of the following ways:
Public domain (preferred): include the statement "This module/document has been placed in the public domain."
Copyright & open source license: include a copyright notice, along with either an embedded license statement, a reference to an accompanying license file, or a license URL.
The license should be well known, simple and compatible with other open source software licenses. To keep the number of different licenses at a minimum, using the 2-Clause BSD license (also known as "Simplified" or FreeBSD license) is recommended.
The following licenses are described as simple and permissible on Various Licenses and Comments about Them by the GNU Project and listed as popular in OSI Approved Licenses:
Expat License / MIT License
http://www.jclark.com/xml/copying.txt http://www.opensource.org/licenses/MIT http://www.spdx.org/licenses/MIT
The term MIT License is ambiguous and may accurately refer to the Expat license or the X11 license [http://en.wikipedia.org/wiki/MIT_License]
-1 called MIT license by OSI and in the SPDX Open Source License Registry but Expat license by GNU 2-Clause BSD license / FreeBSD license
http://www.freebsd.org/copyright/freebsd-license.html http://www.opensource.org/licenses/BSD-2-Clause http://www.spdx.org/licenses/BSD-2-Clause
If you want a simple, permissive non-copyleft free software license, the FreeBSD license is a reasonable choice. However, please don't call it a “BSD” or “BSD-style” license, because that is likely to cause confusion which could lead to use of the flawed original BSD license.
+1 license used by the closely related Sphinx project +1 "2-Clause BSD license" is a non-ambiguous name, used by both, OSI and GNU. +1 clear wording, structured text
Please see the repository documentation for details on how to access Docutils' Subversion repository. Anyone can access the repository anonymously. Only project developers can make changes. (If you would like to become a project developer, just ask!) Also see Setting Up For Docutils Development below for some useful info.
Unless you really really know what you're doing, please do not use svn import. It's quite easy to mess up the repository with an import.
(These branch policies go into effect with Docutils 0.4.)
The "docutils" directory of the trunk (a.k.a. the Docutils core) is used for active -- but stable, fully tested, and reviewed -- development.
There will be at least one active maintenance branch at a time, based on at least the latest feature release. For example, when Docutils 0.5 is released, its maintenance branch will take over, and the 0.4.x maintenance branch may be retired. Maintenance branches will receive bug fixes only; no new features will be allowed here.
Obvious and uncontroversial bug fixes with tests can be checked in directly to the core and to the maintenance branches. Don't forget to add test cases! Many (but not all) bug fixes will be applicable both to the core and to the maintenance branches; these should be applied to both. No patches or dedicated branches are required for bug fixes, but they may be used. It is up to the discretion of project developers to decide which mechanism to use for each case.
Feature additions and API changes will be done in feature branches. Feature branches will not be managed in any way. Frequent small checkins are encouraged here. Feature branches must be discussed on the docutils-develop mailing list and reviewed before being merged into the core.
Before a new feature, an API change, or a complex, disruptive, or controversial bug fix can be checked in to the core or into a maintenance branch, it must undergo review. These are the criteria:
The review process will ensure that at least one other set of eyeballs & brains sees the code before it enters the core. In addition to the above, the general Check-ins policy (below) also applies.
Changes or additions to the Docutils core and maintenance branches carry a commitment to the Docutils user community. Developers must be prepared to fix and maintain any code they have committed.
The Docutils core (trunk/docutils directory) and maintenance branches should always be kept in a stable state (usable and as problem-free as possible). All changes to the Docutils core or maintenance branches must be in good shape, usable, documented, tested, and reasonably complete.
If you really want to check code directly into the Docutils core, you can, but you must ensure that it fulfills the above criteria first. People will start to use it and they will expect it to work! If there are any issues with your code, or if you only have time for gradual development, you should put it on a branch or in the sandbox first. It's easy to move code over to the Docutils core once it's complete.
It is the responsibility and obligation of all developers to keep the Docutils core and maintenance branches stable. If a commit is made to the core or maintenance branch which breaks any test, the solution is simply to revert the change. This is not vindictive; it's practical. We revert first, and discuss later.
Docutils will pursue an open and trusting policy for as long as possible, and deal with any aberrations if (and hopefully not when) they happen. We'd rather see a torrent of loose contributions than just a trickle of perfect-as-they-stand changes. The occasional mistake is easy to fix. That's what Subversion is for!
Docutils version numbering uses a major.minor.micro scheme (x.y.z; for example, 0.4.1).
Major releases (x.0, e.g. 1.0) will be rare, and will represent major changes in API, functionality, or commitment. For example, as long as the major version of Docutils is 0, it is to be considered experimental code. When Docutils reaches version 1.0, the major APIs will be considered frozen and backward compatibility will become of paramount importance.
Releases that change the minor number (x.y, e.g. 0.5) will be feature releases; new features from the Docutils core will be included.
Releases that change the micro number (x.y.z, e.g. 0.4.1) will be bug-fix releases. No new features will be introduced in these releases; only bug fixes off of maintenance branches will be included.
This policy was adopted in October 2005, and will take effect with Docutils version 0.4. Prior to version 0.4, Docutils didn't have an official version numbering policy, and micro releases contained both bug fixes and new features.
Snapshot tarballs will be generated regularly from
The sandbox/infrastructure/docutils-update shell script, run as an hourly cron job on the BerliOS server, is responsible for automatically generating the snapshots and updating the web site. See the web site docs.
When making changes to the code, testing is a must. The code should be run to verify that it produces the expected results, and the entire test suite should be run too. The modified Docutils code has to be accessible to Python for the tests to have any meaning. There are two ways to keep the Docutils code accessible during development:
Update your PYTHONPATH environment variable so that Python picks up your local working copy of the code. This is the recommended method.
We'll assume that the Docutils trunk is checked out under your ~/projects/ directory as follows:
svn co https://<user>@docutils.svn.sourceforge.net/svnroot/docutils/trunk \ docutils
For the bash shell, add this to your ~/.profile:
PYTHONPATH=$HOME/projects/docutils/docutils PYTHONPATH=$PYTHONPATH:$HOME/projects/docutils/docutils/extras export PYTHONPATH
The first line points to the directory containing the docutils package. The second line adds the directory containing the third-party modules Docutils depends on. The third line exports this environment variable. You may also wish to add the tools directory to your PATH:
PATH=$PATH:$HOME/projects/docutils/docutils/tools export PATH
Before you run anything, every time you make a change, reinstall Docutils:
python setup.py install
Caution!
This method is not recommended for day-to-day development; it's too easy to forget. Confusion inevitably ensues.
If you install Docutils this way, Python will always pick up the last-installed copy of the code. If you ever forget to reinstall the "docutils" package, Python won't see your latest changes.
A useful addition to the docutils top-level directory in branches and alternate copies of the code is a set-PATHS file containing the following lines:
# source this file export PYTHONPATH=$PWD:$PWD/extras export PATH=$PWD/tools:$PATH
Open a shell for this branch, cd to the docutils top-level directory, and "source" this file. For example, using the bash shell:
$ cd some-branch/docutils $ . set-PATHS
Developers are recommended to subscribe to all Docutils mailing lists.
There is a development wiki at http://docutils.python-hosting.com/ as a scratchpad for transient notes. Please use the repository for permament document storage.