Skip to content

Commit 7e65b65

Browse files
author
Richard Jones
committed
merge
1 parent 625157c commit 7e65b65

File tree

8 files changed

+77
-41
lines changed

8 files changed

+77
-41
lines changed

doc/Makefile

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,25 @@
1-
PYTHON = /usr/bin/python2
21
STXTOHTML = rst2html
2+
STXTOHT = rst2ht.py
3+
WEBDIR = ../../htdocs/htdocs/doc-0.7
34

45
SOURCE = announcement.txt customizing.txt developers.txt FAQ.txt features.txt \
56
glossary.txt implementation.txt index.txt design.txt mysql.txt \
67
installation.txt upgrading.txt user_guide.txt admin_guide.txt \
78
postgresql.txt tracker_templates.txt whatsnew-0.7.txt
89

910
COMPILED := $(SOURCE:.txt=.html)
11+
WEBHT := $(SOURCE:.txt=.ht)
1012

11-
all: ${COMPILED}
13+
all: ${COMPILED} ${WEBHT}
14+
15+
website: ${WEBHT}
16+
cp *.ht ${WEBDIR}
1217

1318
%.html: %.txt
1419
${STXTOHTML} --report=warning -d $< $@
1520

21+
%.ht: %.txt
22+
${STXTOHT} --report=warning -d $< $@
23+
1624
clean:
1725
rm -f ${COMPILED}

doc/customizing.txt

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

5-
:Version: $Revision: 1.137 $
5+
:Version: $Revision: 1.138 $
66

77
.. This document borrows from the ZopeBook section on ZPT. The original is at:
88
http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx
@@ -3503,12 +3503,19 @@ resolved. To achieve this:
35033503
example, the existing "Show All" link in the "page" template (in the
35043504
tracker's "html" directory) looks like this::
35053505

3506-
<a href="issue?:sort=-activity&:group=priority&:filter=status&:columns=id,activity,title,creator,assignedto,status&status=-1,1,2,3,4,5,6,7">Show All</a><br>
3506+
<a href="issue?:sort=-activity&:group=priority&:filter=status&
3507+
:columns=id,activity,title,creator,assignedto,status&
3508+
status=-1,1,2,3,4,5,6,7">Show All</a><br>
35073509

35083510
modify it to add the "blockers" info to the URL (note, both the
35093511
":filter" *and* "blockers" values must be specified)::
35103512

3511-
<a href="issue?:sort=-activity&:group=priority&:filter=status,blockers&blockers=-1&:columns=id,activity,title,creator,assignedto,status&status=-1,1,2,3,4,5,6,7">Show All</a><br>
3513+
<a href="issue?:sort=-activity&:group=priority&:filter=status,blockers&
3514+
blockers=-1&:columns=id,activity,title,creator,assignedto,status&
3515+
status=-1,1,2,3,4,5,6,7">Show All</a><br>
3516+
3517+
:Note: the above examples are line-wrapped on the trailing & and should
3518+
be unwrapped.
35123519

35133520
That's it. You should now be able to set blockers on your issues. Note
35143521
that if you want to know whether an issue has any other issues dependent

doc/default.css

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*
22
:Author: David Goodger
33
4-
:date: $Date: 2004-04-18 23:12:06 $
5-
:version: $Revision: 1.12 $
4+
:date: $Date: 2004-06-09 00:25:32 $
5+
:version: $Revision: 1.13 $
66
:copyright: This stylesheet has been placed in the public domain.
77
88
Default cascading style sheet for the HTML output of Docutils.
@@ -25,12 +25,23 @@ div.abstract p.topic-title {
2525
font-weight: bold ;
2626
text-align: center }
2727

28-
div.attention, div.caution, div.danger, div.error, div.hint,
29-
div.important, div.note, div.tip, div.warning {
28+
div.attention, div.caution, div.danger, div.error,
29+
div.important, div.tip, div.warning {
3030
margin: 2em ;
3131
border: medium outset ;
3232
padding: 1em }
3333

34+
div.hint, div.note {
35+
font-size: 80%;
36+
float: right;
37+
width: 15em;
38+
margin: 0.5em;
39+
margin-left: 1em ;
40+
border: solid #aaa;
41+
background: #eee;
42+
padding: 1em;
43+
}
44+
3445
div.attention p.admonition-title, div.caution p.admonition-title,
3546
div.danger p.admonition-title, div.error p.admonition-title,
3647
div.warning p.admonition-title {

doc/developers.txt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22
Developing Roundup
33
==================
44

5-
:Version: $Revision: 1.10 $
5+
:Version: $Revision: 1.11 $
66

7-
Note: the intended audience of this document is the developers of the core
8-
Roundup code. If you just wish to alter some behaviour of your Roundup
9-
installation, see `customising roundup`_.
7+
.. note::
8+
The intended audience of this document is the developers of the core
9+
Roundup code. If you just wish to alter some behaviour of your Roundup
10+
installation, see `customising roundup`_.
1011

1112
.. contents::
1213

doc/installation.txt

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
Installing Roundup
33
==================
44

5-
:Version: $Revision: 1.77 $
5+
:Version: 1.76
66

77
.. contents::
8+
:depth: 2
89

910

1011
Overview
@@ -49,8 +50,9 @@ Non-Python2.3 users may need to `install the "CSV" module`_.
4950
Install the "CSV" module
5051
------------------------
5152

52-
Note: CSV stands for Comma-Separated-Value. These files are used by all
53-
manner of programs (eg. spreadsheets) to exchange data.
53+
.. hint::
54+
CSV stands for Comma-Separated-Value. These files are used by all
55+
manner of programs (eg. spreadsheets) to exchange data.
5456

5557
The "CSV" module is required if you wish to import or export data in the
5658
tracker, or if you wish to use the online generic class editing facility.
@@ -88,7 +90,9 @@ folder names" check box is checked before you extract the files.
8890
Testing your Python
8991
-------------------
9092

91-
Note: user of the Windows installer may not run these tests.
93+
.. note::
94+
The Windows installer doesn't include the ``run_tests.py`` or ``demo.py``
95+
scripts - you will need to download the source to use them.
9296

9397
Once you've unpacked roundup's source, run ``python run_tests.py`` in the
9498
source directory and make sure there are no errors. If there are errors,
@@ -119,10 +123,11 @@ at so you may start playing. Three users will be set up:
119123
Installation
120124
============
121125

122-
:Note: Some systems, such as Debian and NetBSD, already have Roundup
123-
installed. Try running the command "roundup-admin" with no arguments,
124-
and if it runs you may skip the `Basic Installation Steps`_
125-
below and go straight to `configuring your first tracker`_.
126+
.. note::
127+
Some systems, such as Debian and NetBSD, already have Roundup
128+
installed. Try running the command "roundup-admin" with no arguments,
129+
and if it runs you may skip the `Basic Installation Steps`_
130+
below and go straight to `configuring your first tracker`_.
126131

127132
Set aside 15-30 minutes. Please make sure you're using a supported version of
128133
Python -- see `testing your python`_. There's several steps to follow in your
@@ -199,7 +204,7 @@ Configuring your first tracker
199204

200205
You will now be directed to edit the tracker configuration and
201206
initial schema. At a minimum, you must set ``MAILHOST``,
202-
``TRACKER_WEB``, ``MAIL_DOMAIN`` and ``ADMIN_EMAIL``. Note that the
207+
``TRACKER_WEB``, ``MAIL_DOMAIN`` and ``ADMIN_EMAIL``. The
203208
configuration file uses Python syntax, so almost every value must be
204209
``'quoted'`` using single or double quotes. If you get stuck, and get
205210
configuration file errors, then see the `tracker configuration`_ section
@@ -213,7 +218,7 @@ Configuring your first tracker
213218

214219
The URL *must* end in a '/', or your web interface *will not work*.
215220
See `Customising Roundup`_ for details on configuration and schema
216-
changes. Note that you may change any of the configuration after
221+
changes. You may change any of the configuration after
217222
you've initialised the tracker - it's just better to have valid values
218223
for this stuff now.
219224

@@ -325,7 +330,7 @@ A benefit of using the cgi-bin approach is that it's the easiest way to
325330
restrict access to your tracker to only use HTTPS. Access will be slower
326331
than through the `stand-alone web server`_ though.
327332

328-
Note that if your Python isn't install as "python" then you'll need to edit
333+
If your Python isn't install as "python" then you'll need to edit
329334
the ``roundup.cgi`` script to fix the first line.
330335

331336
If you're using IIS on a Windows platform, you'll need to run this command

doc/mysql.txt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
MySQL Backend
33
=============
44

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

77
This notes detail the MySQL backend for the Roundup issue tracker.
88

@@ -20,8 +20,10 @@ to install:
2020
``roundup/backends/back_mysql.py`` file to enable DBD instead of InnoDB.
2121
2. Python MySQL interface - http://sourceforge.net/projects/mysql-python
2222

23-
:Note: the InnoDB implementation has a bug that Roundup tickles. See
24-
http://bugs.mysql.com/bug.php?id=1810
23+
.. note::
24+
The InnoDB implementation has a bug__ that Roundup tickles. See
25+
26+
__ http://bugs.mysql.com/bug.php?id=1810
2527

2628
Running the MySQL tests
2729
=======================
@@ -43,7 +45,7 @@ this:
4345
you can modify MYSQL_* constants in the file test/test_db.py with
4446
the correct values.
4547

46-
Note that the MySQL database should not contain any tables. Tests will not
48+
The MySQL database should not contain any tables. Tests will not
4749
drop the database with existing data.
4850

4951

doc/upgrading.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1038,4 +1038,4 @@ copy.
10381038

10391039
.. _`customisation documentation`: customizing.html
10401040
.. _`security documentation`: security.html
1041-
.. _`administration guide`: admin.html
1041+
.. _`administration guide`: admin_guide.html

doc/user_guide.txt

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
User Guide
33
==========
44

5-
:Version: $Revision: 1.27 $
5+
:Version: $Revision: 1.28 $
66

77
.. contents::
88

9-
Note: this document will refer to *issues* as the primary store of
10-
information in the tracker. This is the default of the classic template,
11-
but may vary in any given installation.
9+
.. hint::
10+
This document will refer to *issues* as the primary store of
11+
information in the tracker. This is the default of the classic template,
12+
but may vary in any given installation.
1213

1314

1415
Your Tracker in a Nutshell
@@ -187,9 +188,10 @@ at the same time they tried to.
187188
Web Interface
188189
=============
189190

190-
Note: this document contains screenshots of the default look and feel.
191-
Your site may have a slightly (or very) different look, but the
192-
functionality will be very similar, and the concepts still hold.
191+
.. note::
192+
This document contains screenshots of the default look and feel.
193+
Your site may have a slightly (or very) different look, but the
194+
functionality will be very similar, and the concepts still hold.
193195

194196
The web interface is broken up into the following parts:
195197

@@ -346,9 +348,9 @@ The subject line of the incoming message is examined to find one of:
346348
3. we default the item class and try some trickiness
347349

348350
If the subject line contains a prefix in ``[square brackets]`` then
349-
we're looking at case 1 or 2 above. Note that any "re:" or "fwd:"
350-
prefixes are stripped off the subject line before we start looking for
351-
real information.
351+
we're looking at case 1 or 2 above. Any "re:" or "fwd:" prefixes are
352+
stripped off the subject line before we start looking for real
353+
information.
352354

353355
If an item designator (class name and id number, for example
354356
``issue123``) is found there, a new "msg" item is added to the
@@ -420,8 +422,8 @@ primary email addresses and their alternate addresses) then a new user
420422
will be created. The new user will have their username set to the "user"
421423
part of "user@domain" in their email address. Their password will be
422424
completely randomised, and they'll have to visit the web interface to
423-
have it changed. Note that some sites don't allow web access by users
424-
who register via email like this.
425+
have it changed. Some sites don't allow web access by users who register
426+
via email like this.
425427

426428

427429
E-Mail Message Content

0 commit comments

Comments
 (0)