~ubuntu-branches/ubuntu/intrepid/python-docutils/intrepid

« back to all changes in this revision

Viewing changes to docs/user/links.txt

  • Committer: Bazaar Package Importer
  • Author(s): martin f. krafft
  • Date: 2006-07-10 11:45:05 UTC
  • mfrom: (2.1.4 edgy)
  • Revision ID: james.westby@ubuntu.com-20060710114505-otkhqcslevewxmz5
Tags: 0.4-3
Added build dependency on python-central (closes: #377580).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
=====================
 
2
 Docutils_ Link List
 
3
=====================
 
4
 
 
5
:Author: Felix Wiemann
 
6
:Contact: Felix.Wiemann@ososo.de
 
7
:Revision: $Revision: 4020 $
 
8
:Date: $Date: 2005-11-08 22:48:57 +0100 (Tue, 08 Nov 2005) $
 
9
:Copyright: This document has been placed in the public domain.
 
10
 
 
11
.. title:: Docutils Links
 
12
 
 
13
.. contents::
 
14
 
 
15
This document contains links users of Docutils and reStructuredText
 
16
may find useful, listed in no particular order.  Many of the project
 
17
listed here are hosted in the `Docutils Sandbox`_.  If you have
 
18
something to publish, you can get write access, too!
 
19
 
 
20
The most current version of this link list can always be found at
 
21
http://docutils.sourceforge.net/docs/user/links.html.
 
22
 
 
23
 
 
24
Users
 
25
-----
 
26
 
 
27
This section contains links which are interesting for all users of
 
28
Docutils.  All projects listed here are usable by end users in some
 
29
way, however please do not expect all of them to run straight out of
 
30
the box.
 
31
 
 
32
* For Wikis, please see the `FAQ entry about Wikis`_.
 
33
 
 
34
* For Blogs (Weblogs), please see the `FAQ entry about Blogs`_.
 
35
 
 
36
* Alberto Berti is developing an `OpenDocument writer`_.
 
37
 
 
38
* xml2rst_, an XSLT stylesheet written by Stefan Merten, converts XML
 
39
  dumps of the document tree (e.g. created with rst2xml.py) back to
 
40
  reStructuredText.
 
41
 
 
42
* xhtml2rest_, written by Antonios Christofides, is a simple utility
 
43
  to convert XHTML to reStructuredText.
 
44
 
 
45
* rst2ht_, by Oliver Rutherfurd, converts reStructuredText to an .ht
 
46
  template, for use with ht2html_.
 
47
 
 
48
* htmlnav_, by Gunnar Schwant, is an HTML writer which supports
 
49
  navigation bars.
 
50
 
 
51
* rst2chm_, written by Oliver Rutherfurd, generates Microsoft HTML
 
52
  Help files from reStructuredText files.
 
53
 
 
54
* rest2web_, by Michael Foord, is a tool for creating web sites with
 
55
  reStructuredText.
 
56
 
 
57
* ZReST_, by Richard Jones, is a "ReStructuredText Document for Zope"
 
58
  application that is complete and ready to install.
 
59
 
 
60
* The Docutils interface to PythonPoint_, also by Richard Jones,
 
61
  produces PDF presentations using ReportLabs.
 
62
 
 
63
* Engelbert Gruber has begun a `ManPage Writer`_.
 
64
 
 
65
* Oliver Rutherfurd has begun a `DocBook Writer`_.
 
66
 
 
67
* Gunnar Schwant's DocFactory_ is a wxPython GUI application for
 
68
  Docutils.
 
69
 
 
70
* Patrick O'Brien has taken over the `OpenOffice.org Writer`_.
 
71
 
 
72
* Bill Bumgarner has written a `simple HTML writer`_ that doesn't rely
 
73
  on CSS (stylesheets).
 
74
 
 
75
* Beni Cherniavsky has written a generic `preprocessing module`_ for
 
76
  roles and/or directives and built preprocessors for TeX math for
 
77
  both LaTeX and HTML output on top of it.
 
78
 
 
79
* Beni Cherniavsky maintains a Makefile_ for driving Docutils, hoping
 
80
  to handle everything one might do with Docutils.
 
81
 
 
82
 
 
83
API Developers
 
84
--------------
 
85
 
 
86
This section contains links which are primarily interesting for
 
87
developers who use the Docutils API from within their own
 
88
applications.
 
89
 
 
90
* Nabu_, written by Martin Blais, is a publishing system which
 
91
  extracts information from reStructuredText documents and stores it
 
92
  in a database.  Python knowledge is required to write extractor
 
93
  functions (see `Writing an Extractor`_) and to retrieve the data
 
94
  from the database again.
 
95
 
 
96
* There is a `pickle writer`_, written by Martin Blais.
 
97
 
 
98
 
 
99
Core Developers
 
100
---------------
 
101
 
 
102
Links primarily interesting for developers who work with the Docutils
 
103
code base.
 
104
 
 
105
* PySource_, by Tony Ibbs, is an experimental Python source Reader.
 
106
  There is some related code in David Goodger's sandbox
 
107
  (pysource_reader_) and a `Python Source Reader`_ document.
 
108
 
 
109
 
 
110
.. _Docutils: http://docutils.sourceforge.net/
 
111
.. _FAQ entry about Wikis: http://docutils.sf.net/FAQ.html#are-there-any-wikis-that-use-restructuredtext-syntax
 
112
.. _FAQ entry about Blogs: http://docutils.sf.net/FAQ.html#are-there-any-weblog-blog-projects-that-use-restructuredtext-syntax
 
113
.. _OpenDocument writer: http://thread.gmane.org/gmane.text.docutils.devel/3388
 
114
.. _xml2rst: http://www.merten-home.de/FreeSoftware/xml2rst/index.html
 
115
.. _rst2ht: http://www.rutherfurd.net/articles/rst-ht2html.html
 
116
.. _ht2html: http://ht2html.sourceforge.net/
 
117
.. _htmlnav: http://docutils.sf.net/sandbox/gschwant/htmlnav/
 
118
.. _xhtml2rest: http://docutils.sf.net/sandbox/fwiemann/xhtml2rest/
 
119
.. _rst2chm: http://www.rutherfurd.net/software/rst2chm/
 
120
.. _rest2web: http://www.voidspace.org.uk/python/rest2web/
 
121
.. _Docutils Sandbox: http://docutils.sf.net/sandbox/README.html
 
122
.. _ZReST: http://docutils.sf.net/sandbox/richard/ZReST/
 
123
.. _PySource: http://docutils.sf.net/sandbox/tibs/pysource/
 
124
.. _pysource_reader: http://docutils.sf.net/sandbox/davidg/pysource_reader/
 
125
.. _Python Source Reader: http://docutils.sf.net/docs/dev/pysource.html
 
126
.. _PythonPoint: http://docutils.sf.net/sandbox/richard/pythonpoint/
 
127
.. _Manpage Writer: http://docutils.sf.net/sandbox/grubert/man/
 
128
.. _ReportLabs/PDF Writer: http://docutils.sf.net/sandbox/dreamcatcher/rlpdf/
 
129
.. _DocBook Writer: http://docutils.sf.net/sandbox/oliverr/docbook/
 
130
.. _DocFactory: http://docutils.sf.net/sandbox/gschwant/docfactory/doc/
 
131
.. _OpenOffice.org Writer: http://docutils.sf.net/sandbox/pobrien/OpenOffice/
 
132
.. _simple HTML writer: http://docutils.sf.net/sandbox/bbum/DocArticle/
 
133
.. _preprocessing module: http://docutils.sf.net/sandbox/cben/rolehack/
 
134
.. _Makefile: http://docutils.sf.net/sandbox/cben/make/
 
135
.. _Nabu: http://furius.ca/nabu/
 
136
.. _Writing an Extractor: http://furius.ca/nabu/doc/nabu-extractor.html
 
137
.. _pickle writer: http://docutils.sf.net/sandbox/blais/pickle_writer/