Skip to content

Commit 05f7ede

Browse files
committed
Mostly added s, AUTHORS.rst, fixed some links, added some text editors
1 parent 309f4d9 commit 05f7ede

File tree

17 files changed

+84
-28
lines changed

17 files changed

+84
-28
lines changed

AUTHORS.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Authors
2+
-------
3+
4+
.. todo:: Add authors

docs/intro/duction.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
Introduction
22
============
33

4-
Someone should write a general blurb introducing the Python language here.
5-
4+
.. todo:: write a general blurb introducing the Python language
65

76
About This Guide
87
----------------

docs/intro/learning.rst

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,9 @@ Advanced
5959
Pro Python
6060
~~~~~~~~~~
6161

62-
TODO: Write about this book
63-
64-
`Pro Python <http://propython.com/>`_
62+
.. todo:: Write about `Pro Python <http://propython.com/>`_
6563

6664
Expert Python Programming
6765
~~~~~~~~~~~~~~~~~~~~~~~~~
6866

69-
TODO: Write about this book
70-
71-
`Expert Python Programming <http://www.packtpub.com/expert-python-programming/book>`_
67+
.. todo:: Write about `Expert Python Programming <http://www.packtpub.com/expert-python-programming/book>`_

docs/notes/contribute.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ If you'd like to contribute, there's plenty to do. Here's a short todo_ list.
1616

1717

1818
.. _GitHub: http://github.com/kennethreitz/python-guide/
19-
.. _AUTHORS: http://github.com/kennethreitz/python-guide/blob/master/AUTHORS
19+
.. _AUTHORS: http://github.com/kennethreitz/python-guide/blob/master/AUTHORS.rst
2020
.. _todo: https://github.com/kennethreitz/python-guide/blob/master/TODO.rst
2121

22+
.. include:: ../../AUTHORS.rst

docs/notes/license.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
License
22
-------
33

4-
TBD.
4+
.. todo:: Determine License

docs/scenarios/admin.rst

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,24 @@ Systems Administration
44
Fabric
55
------
66

7+
.. todo:: Write about Fabric
78

89
Chef
910
----
1011

12+
.. todo:: Write about Chef
1113

1214
Puppet
1315
------
1416

17+
.. todo:: Write about Puppet
1518

1619
Blueprint
17-
---------
20+
---------
21+
22+
.. todo:: Write about Blueprint
23+
24+
Buildout
25+
--------
26+
27+
.. todo:: Write about Buildout

docs/scenarios/ci.rst

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,28 @@ Continuous Integration
55
Why?
66
----
77

8-
Martin Fowler, who first wrote about Continuous Integration (short: CI) together with Kent Beck, describes the CI as follows:
8+
Martin Fowler, who first wrote about `Continuous Integration <http://martinfowler.com/articles/continuousIntegration.html>`_ (short: CI) together with Kent Beck, describes the CI as follows:
99

1010
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.
1111

12-
Source: http://martinfowler.com/articles/continuousIntegration.html
13-
1412
Jenkins
1513
-------
1614

17-
Jenkins CI (http://jenkins-ci.org) is an extensible continuous integration engine. Use it.
15+
`Jenkins CI <http://jenkins-ci.org>`_ is an extensible continuous integration engine. Use it.
1816

1917

2018

2119
Buildbot
2220
--------
23-
Buildbot (http://buildbot.net/buildbot/docs/current) is a Python system to automate the compile/test cycle to validate code changes.
21+
`Buildbot <http://buildbot.net/buildbot/docs/current>`_ is a Python system to automate the compile/test cycle to validate code changes.
2422

2523

2624
Mule?
2725
-----
26+
27+
.. todo:: Write about Mule
28+
29+
Tox
30+
---
31+
32+
.. todo:: Write about `Tox <http://codespeak.net/~hpk/tox/>`_

docs/scenarios/cli.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
Command Line Applications
22
=========================
33

4-
4+
.. todo:: Explain "Command Line Applications"
55

66
Clint
77
-----
88

9+
.. todo:: Write about Clint

docs/scenarios/db.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,7 @@ database-agnostic code without SQL.
2222

2323
pip install sqlalchemy
2424

25+
Django ORM
26+
----------
27+
28+
.. todo:: Explain Django ORM

docs/scenarios/gui.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,17 @@ http://developer.qt.nokia.com/wiki/PySideDownloads/
1212

1313
PyQt
1414
----
15-
*Note: If your software does not fully comply with the GPL you will need a commercial license!*
15+
.. note:: If your software does not fully comply with the GPL you will need a commercial license!
16+
1617
http://www.riverbankcomputing.co.uk/software/pyqt/download
1718

1819
Cocoa
1920
:::::
20-
*Note: The Cocoa framework is only available on Mac OSX. Don't pick this if you're writing a cross-platform application!*
21+
.. note:: The Cocoa framework is only available on Mac OSX. Don't pick this if you're writing a cross-platform application!
2122

2223
PyObjC
2324
------
24-
*Note: Only available on Mac OSX. Don't pick this if you're writing a cross-platform application.*
25+
.. note:: Only available on Mac OSX. Don't pick this if you're writing a cross-platform application.
2526

2627
WXPython
2728
::::::::

0 commit comments

Comments
 (0)