##// END OF EJS Templates
spelling: fix awkward sentence structure
spelling: fix awkward sentence structure

File last commit:

r5308:b8d71669 default
r5411:5cb3a07a default
Show More
contributing.rst
149 lines | 5.9 KiB | text/x-rst | RstLexer
/ docs / contributing.rst
docs updates
r811 .. _contributing:
docs
r2095 =========================
Bradley M. Kuhn
Rename some strings examples and commands in documentation
r4192 Contributing to Kallithea
docs updates
r811 =========================
Mads Kiilerich
docs: rework stuff...
r4902 Kallithea is developed and maintained by its users. Please join us and scratch
your own itch.
Infrastructure
--------------
docs updates
r811
Mads Kiilerich
docs: rework stuff...
r4902 The main repository is hosted at Our Own Kallithea (aka OOK) on
https://kallithea-scm.org/repos/kallithea/ (which is our self-hosted instance
of Kallithea).
docs and readme update
r1062
Mads Kiilerich
docs: rework stuff...
r4902 For now, we use Bitbucket_ for `Pull Requests`_ and `Issue Tracker`_ services. The
Michael V. DePalatis
docs: English and consistency corrections
r4955 issue tracker is for tracking bugs, not for support, discussion, or ideas -
Mads Kiilerich
docs: rework stuff...
r4902 please use the `mailing list`_ to reach the community.
We use Weblate_ to translate the user interface messages into languages other
than English. Join our project on `Hosted Weblate`_ to help us.
Andrew Shadura
docs: include translation howto into the docco
r4960 To register, you can use your Bitbucket or GitHub account. See :ref:`translations`
for more details.
updated contributing docs
r3993
Mads Kiilerich
docs: rework stuff...
r4902 Getting started
---------------
docs and readme update
r1062
Mads Kiilerich
docs: rework stuff...
r4902 To get started with development::
merged changes from stable into beta
r2032
Mads Kiilerich
docs: rework stuff...
r4902 hg clone https://kallithea-scm.org/repos/kallithea
cd kallithea
virtualenv ../kallithea-venv
source ../kallithea-venv/bin/activate
python setup.py develop
paster make-config Kallithea my.ini
paster setup-db my.ini --user=user --email=user@example.com --password=password --repos=/tmp
paster serve my.ini --reload &
firefox http://127.0.0.1:5000/
merged changes from stable into beta
r2032
Mads Kiilerich
docs: rework stuff...
r4902 You can also start out by forking https://bitbucket.org/conservancy/kallithea
on Bitbucket_ and create a local clone of your own fork.
merged changes from stable into beta
r2032
Mads Kiilerich
docs: rework stuff...
r4902 Running tests
-------------
After finishing your changes make sure all tests pass cleanly. You can run
Thomas De Schampheleire
docs/contributing: cleanup test section
r4920 the testsuite running ``nosetests`` from the project root, or if you use tox
run ``tox`` for python2.6-2.7 with multiple database test.
updated contributing docs
r3993
Thomas De Schampheleire
docs/contributing: cleanup test section
r4920 When using `nosetests`, the `test.ini` file is used with an SQLite database. Edit
this file to change your testing enviroment.
It is possible to avoid recreating the full test database on each invocation of
the tests, thus eliminating the initial delay. To achieve this, run the tests as::
updated contributing docs
r3993
paster serve test.ini --pid-file=test.pid --daemon
Thomas De Schampheleire
docs/contributing: cleanup test section
r4920 KALLITHEA_WHOOSH_TEST_DISABLE=1 KALLITHEA_NO_TMP_PATH=1 nosetests
updated contributing docs
r3993 kill -9 $(cat test.pid)
Thomas De Schampheleire
docs/contributing: cleanup test section
r4920 You can run individual tests by specifying their path as argument to nosetests.
Thomas De Schampheleire
docs/contributing: explicitly mention some useful options to nosetests
r4927 nosetests also has many more options, see `nosetests -h`. Some useful options
are::
-x, --stop Stop running tests after the first error or failure
-s, --nocapture Don't capture stdout (any stdout output will be
printed immediately) [NOSE_NOCAPTURE]
--failed Run the tests that failed in the last test run.
Thomas De Schampheleire
docs/contributing: cleanup test section
r4920
Mads Kiilerich
docs: rework stuff...
r4902 Coding/contribution guidelines
------------------------------
Kallithea is GPLv3 and we assume all contributions are made by the
committer/contributor and under GPLv3 unless explicitly stated. We do care a
lot about preservation of copyright and license information for existing code
that is brought into the project.
We don't have a formal coding/formatting standard. We are currently using a mix
of Mercurial (http://mercurial.selenic.com/wiki/CodingStyle), pep8, and
consistency with existing code. Run whitespacecleanup.sh to avoid stupid
whitespace noise in your patches.
We support both Python 2.6.x and 2.7.x and nothing else. For now we don't care
about Python 3 compatibility.
Mads Kiilerich
js: drop excanvas used for IE 8 support
r5308 We try to support the most common modern web browsers. IE9 is still supported
to the extent it is feasible, IE8 is not.
Mads Kiilerich
docs: rework stuff...
r4902
We primarily support Linux and OS X on the server side but Windows should also work.
Html templates should use 2 spaces for indentation ... but be pragmatic. We
should use templates cleverly and avoid duplication. We should use reasonable
semantic markup with classes and ids that can be used for styling and testing.
We should only use inline styles in places where it really is semantic (such as
display:none).
JavaScript must use ';' between/after statements. Indentation 4 spaces. Inline
multiline functions should be indented two levels - one for the () and one for
{}. jQuery value arrays should have a leading $.
Commit messages should have a leading short line summarizing the changes. For
bug fixes, put "(Issue #123)" at the end of this line.
Contributions will be accepted in most formats - such as pull requests on
bitbucket, something hosted on your own Kallithea instance, or patches sent by
mail to the kallithea-general mailing list.
Make sure to test your changes both manually and with the automatic tests
before posting.
We care about quality and review and keeping a clean repository history. We
might give feedback that requests polishing contributions until they are
"perfect". We might also rebase and collapse and make minor adjustments to your
changes when we apply them.
We try to make sure we have consensus on the direction the project is taking.
Everything non-sensitive should be discussed in public - preferably on the
mailing list. We aim at having all non-trivial changes reviewed by at least
one other core developer before pushing. Obvious non-controversial changes will
be handled more casually.
For now we just have one official branch ("default") and will keep it so stable
that it can be (and is) used in production. Experimental changes should live
elsewhere (for example in a pull request) until they are ready.
docs update
r1123
Andrew Shadura
docs: include translation howto into the docco
r4960 .. _translations:
.. include:: ./../kallithea/i18n/how_to
docs update
r1123
Mads Kiilerich
docs: rework stuff...
r4902 "Roadmap"
---------
Thomas De Schampheleire
docs/contributing: move 'roadmap' to the wiki...
r4928 We do not have a road map but are waiting for your contributions. Refer to the
wiki_ for some ideas of places we might want to go - contributions in these
areas are very welcome.
Mads Kiilerich
docs: rework stuff...
r4902
Thank you for your contribution!
--------------------------------
.. _Weblate: http://weblate.org/
.. _Issue Tracker: https://bitbucket.org/conservancy/kallithea/issues?status=new&status=open
.. _Pull Requests: https://bitbucket.org/conservancy/kallithea/pull-requests
docs update
r1123 .. _bitbucket: http://bitbucket.org/
Mads Kiilerich
docs: rework stuff...
r4902 .. _mailing list: http://lists.sfconservancy.org/mailman/listinfo/kallithea-general
.. _Hosted Weblate: https://hosted.weblate.org/projects/kallithea/kallithea/
Thomas De Schampheleire
docs/contributing: move 'roadmap' to the wiki...
r4928 .. _wiki: https://bitbucket.org/conservancy/kallithea/wiki/Home