Skip to content

Commit 803f715

Browse files
author
Richard Jones
committed
Docco changes.
New docco build system using the New Improved tool supplied with docutils.
1 parent 5f6d787 commit 803f715

File tree

5 files changed

+33
-44
lines changed

5 files changed

+33
-44
lines changed

doc/Makefile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
PYTHON = /usr/bin/python2
2+
STXTOHTML = -c "from docutils.core import publish;publish(writer_name='html')"
3+
4+
SOURCE = announcement.txt customizing.txt developers.txt FAQ.txt features.txt \
5+
getting_started.txt glossary.txt implementation.txt index.txt \
6+
installation.txt security.txt upgrading.txt user_guide.txt
7+
8+
COMPILED := $(SOURCE:.txt=.html)
9+
10+
all: ${COMPILED}
11+
12+
%.html: %.txt
13+
${PYTHON} ${STXTOHTML} -d -v $< $@
14+

doc/build_html.py

Lines changed: 0 additions & 31 deletions
This file was deleted.

doc/customizing.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Customising Roundup
33
===================
44

5-
:Version: $Revision: 1.8 $
5+
:Version: $Revision: 1.9 $
66

77
.. contents::
88

@@ -526,13 +526,13 @@ Repurcussions of changing the instance schema
526526
If you choose to change_the_instance_schema you will need to ensure the web
527527
interface knows about it:
528528

529-
1. Index, item and filter pages for the relevant classes may need to have
530-
properties added or removed,
531-
2. The default page header relies on the existence of, and some values of
532-
the priority, status, assignedto and activity classes. If you change any
533-
of these (specifically if you remove any of the classes or their default
534-
values) you will need to implement your own pagehead() method in your
535-
instance's interfaces.py module.
529+
1. Index, item and filter pages for the relevant classes may need to have
530+
properties added or removed,
531+
2. The default page header relies on the existence of, and some values of
532+
the priority, status, assignedto and activity classes. If you change any
533+
of these (specifically if you remove any of the classes or their default
534+
values) you will need to implement your own pagehead() method in your
535+
instance's interfaces.py module.
536536

537537
Displaying Properties
538538
~~~~~~~~~~~~~~~~~~~~~

doc/installation.txt

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Installing Roundup
33
==================
44

5-
:Version: $Revision: 1.12 $
5+
:Version: $Revision: 1.13 $
66

77
.. contents::
88

@@ -66,9 +66,13 @@ later. Download the latest version from http://pybsddb.sourceforge.net/.
6666
Testing your Python
6767
-------------------
6868

69-
Run ``"python ./run_tests"`` and make sure there
69+
Run ``python ./run_tests`` and make sure there
7070
are no errors. If there are errors, please let us know!
7171

72+
If the above fails, you may be using the wrong version of python. Try
73+
``python2 ./run_tests``. If that works, you will need to substitute
74+
``python2`` for ``python`` in all further commands you use in relation to
75+
Roundup -- from installation and scripts.
7276

7377
Getting Roundup
7478
===============
@@ -79,7 +83,8 @@ Download the latest version from http://roundup.sf.net/.
7983
Installation
8084
============
8185

82-
Set aside 15-30 minutes.
86+
Set aside 15-30 minutes. Please make sure you're using a supported version of
87+
Python -- see `testing your python`_.
8388

8489
1. To install the Roundup support code into your Python tree and
8590
Roundup scripts into /usr/local/bin::

doc/upgrading.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ The new configuration variables are:
2323
- EMAIL_LEAVE_BODY_UNCHANGED
2424
- ADD_RECIPIENTS_TO_NOSY
2525

26-
See the sample condfiguration files in::
26+
See the sample configuration files in::
2727

2828
<roundup source>/roundup/templates/classic/instance_config.py
2929

3030
and::
3131

3232
<roundup source>/roundup/templates/extended/instance_config.py
3333

34-
for information on how they're used.
34+
and the documentation in customizing_ for information on how they're used.
3535

3636

3737
0.4.2 Changes to detectors
@@ -328,3 +328,4 @@ distribution. Make sure you update the ROUNDUP_INSTANCE_HOMES after the
328328
copy.
329329

330330

331+
.. _customizing: customizing.html

0 commit comments

Comments
 (0)