File tree Expand file tree Collapse file tree 5 files changed +33
-44
lines changed
Expand file tree Collapse file tree 5 files changed +33
-44
lines changed Original file line number Diff line number Diff line change 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+
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 22Customising 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
526526If you choose to change_the_instance_schema you will need to ensure the web
527527interface 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
537537Displaying Properties
538538~~~~~~~~~~~~~~~~~~~~~
Original file line number Diff line number Diff line change 22Installing 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/.
6666Testing your Python
6767-------------------
6868
69- Run ``" python ./run_tests" `` and make sure there
69+ Run ``python ./run_tests`` and make sure there
7070are 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
7377Getting Roundup
7478===============
@@ -79,7 +83,8 @@ Download the latest version from http://roundup.sf.net/.
7983Installation
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
84891. To install the Roundup support code into your Python tree and
8590 Roundup scripts into /usr/local/bin::
Original file line number Diff line number Diff 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
3030and::
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
37370.4.2 Changes to detectors
@@ -328,3 +328,4 @@ distribution. Make sure you update the ROUNDUP_INSTANCE_HOMES after the
328328copy.
329329
330330
331+ .. _customizing: customizing.html
You can’t perform that action at this time.
0 commit comments