Skip to content

Commit 613aba0

Browse files
author
Richard Jones
committed
*** empty log message ***
1 parent 9af2b52 commit 613aba0

File tree

4 files changed

+63
-28
lines changed

4 files changed

+63
-28
lines changed

doc/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ STXTOHTML = rst2html
44
SOURCE = announcement.txt customizing.txt developers.txt FAQ.txt features.txt \
55
glossary.txt implementation.txt index.txt design.txt mysql.txt \
66
installation.txt upgrading.txt user_guide.txt admin_guide.txt \
7-
postgresql.txt
7+
postgresql.txt tracker_templates.txt
88

99
COMPILED := $(SOURCE:.txt=.html)
1010

doc/index.txt

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,31 @@ Roundup: an Issue-Tracking System for Knowledge Workers
55
Contents
66
========
77

8-
- Features_
9-
- Installation_ and Upgrading_ existing installs
10-
- `Frequently Asked Questions`_
11-
- `User Guide`_
12-
- Configuring and `Customising Roundup`_
13-
- `Administering Roundup Trackers`_
14-
- `Roundup's Design`_ (original_)
15-
- `Developing Roundup`_
8+
- Features__
9+
- Installation__ and Upgrading__ existing installs
10+
- `Frequently Asked Questions`__
11+
- `User Guide`__
12+
- `Configuring and Customising Roundup`__
13+
- `Administering Roundup Trackers`__
14+
- `Roundup's Design`__ (original__)
15+
- `Developing Roundup`__
16+
- `Roundup Tracker Templates`__
1617
- Contact_
1718
- Acknowledgements_
1819
- License_
1920

21+
.. __: features.html
22+
.. __: installation.html
23+
.. __: upgrading.html
24+
.. __: FAQ.html
25+
.. __: user_guide.html
26+
.. __: customizing.html
27+
.. __: admin_guide.html
28+
.. __: design.html
29+
.. __: spec.html
30+
.. __: developers.html
31+
.. __: tracker_templates.html
32+
2033
Contact
2134
=======
2235

@@ -107,16 +120,3 @@ License
107120

108121
See COPYING.txt in the software distribution for the licensing terms.
109122

110-
111-
.. _Features: features.html
112-
.. _Installation: installation.html
113-
.. _Upgrading: upgrading.html
114-
.. _`Frequently Asked Questions`: FAQ.html
115-
.. _`User Guide`: user_guide.html
116-
.. _`Customising Roundup`: customizing.html
117-
.. _`Administering Roundup Trackers`: admin_guide.html
118-
.. _`Roundup's Design`: design.html
119-
.. _`Developing Roundup`: developers.html
120-
.. _original: spec.html
121-
.. _Upgrading: upgrading.html
122-

doc/templating.txt

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

doc/tracker_templates.txt

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
=========================
2+
Roundup Tracker Templates
3+
=========================
4+
5+
:Version: $Revision: 1.1 $
6+
7+
The templates distributed with Roundup are stored in the "share" directory
8+
nominated by Python. On Unix this is typically
9+
``/usr/share/roundup/templates/`` (or ``/usr/local/share...``) and
10+
on Windows this is ``c:\python22\share\roundup\templates\``.
11+
12+
The template loading looks in four places to find the templates:
13+
14+
1. *share* - eg. ``<prefix>/share/roundup/templates/*``.
15+
This should be the standard place to find them when Roundup is
16+
installed.
17+
2. ``<roundup.admin.__file__>/../templates/*``.
18+
This will be used if Roundup's run in the distro (aka. source)
19+
directory.
20+
3. ``<current working dir>/*``.
21+
This is for when someone unpacks a 3rd-party template.
22+
4. ``<current working dir>``.
23+
This is for someone who "cd"s to the 3rd-party template dir.
24+
25+
Templates contain:
26+
27+
- modules __init__.py, dbinit.py, config.py, interfaces.py
28+
- directories html and detectors (with appropriate contents)
29+
- TEMPLATE-INFO.txt which is our template "marker" file, which contains
30+
the name of the template, a description of the template and its
31+
intended audience.
32+
33+
An example TEMPLATE-INFO.txt::
34+
35+
Name: classic
36+
Description: This is a generic issue tracker that may be used to track bugs,
37+
feature requests, project issues or any number of other types
38+
of issues. Most users of Roundup will find that this template
39+
suits them, with perhaps a few customisations.
40+
Intended-For: All first-time Roundup users
41+

0 commit comments

Comments
 (0)