diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..002f068 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,2 @@ +Kenneth Reitz +Johannes Seitz \ No newline at end of file diff --git a/docs/intro/community.rst b/docs/intro/community.rst index 70e7389..1075302 100644 --- a/docs/intro/community.rst +++ b/docs/intro/community.rst @@ -62,12 +62,12 @@ Submitting a PEP Python Conferences -------------------------- -The major venue of the Python community are developer conferences. The two most notable conferences are PyCon, which is held in the US and it's overseas sibling EuroPython. +The major venue of the Python community are developer conferences. The two most notable conferences are PyCon, which is held in the US and it's european sibling, called EuroPython. -A comprehensive list of conferences is maintained `here `_. +A comprehensive list of conferences is maintained `at pycon.org `_. Python User Groups -------------------------- -User Groups are where a bunch of Python developers meet to present or talk about python topics of interest. A list of local user groups is maintained in the `Python Software Foundation Wiki `_. \ No newline at end of file +User Groups are where a bunch of Python developers meet to present or talk about Python topics of interest. A list of local user groups is maintained at the `Python Software Foundation Wiki `_. \ No newline at end of file diff --git a/docs/intro/resources.rst b/docs/intro/resources.rst index 314a462..daadf8e 100644 --- a/docs/intro/resources.rst +++ b/docs/intro/resources.rst @@ -1,3 +1,23 @@ +Documentation +============= + +Official Documentation +~~~~~~~~~~~~~~~~~~~~~~ + +The official Python Language and Library documentation can be found here: + +- `Python 2.x `_ +- `Python 3.x `_ + + +Read the Docs +~~~~~~~~~~~~~ + +Read the Docs is a popular community project, providing a single location for all documentation of popular and even more exotic Python modules. + +`Read the Docs `_ + + Resources ========= diff --git a/docs/scenarios/ci.rst b/docs/scenarios/ci.rst index 43ec190..013acd5 100644 --- a/docs/scenarios/ci.rst +++ b/docs/scenarios/ci.rst @@ -5,6 +5,11 @@ Continuous Integration Why? ---- +Martin Folwer, who first wrote about Continuous Integration (short: CI) together with Kent Beck, describes the CI as follows: + + Continuous Integration is a software development practice where members of a team integrate their work frequently, usually each person integrates at least daily - leading to multiple integrations per day. Each integration is verified by an automated build (including test) to detect integration errors as quickly as possible. Many teams find that this approach leads to significantly reduced integration problems and allows a team to develop cohesive software more rapidly. This article is a quick overview of Continuous Integration summarizing the technique and its current usage. + +Source: http://martinfowler.com/articles/continuousIntegration.html Jenkins ------- diff --git a/docs/starting/dev-env.rst b/docs/starting/dev-env.rst index 488f591..d22b027 100644 --- a/docs/starting/dev-env.rst +++ b/docs/starting/dev-env.rst @@ -1,9 +1,6 @@ Your Development Environment ============================ -Testing your code is very important. - - Text Editors ::::::::::::