Download Docutils - Docutils Description, Docutils Reviews
Contact
 


 

Download

 
Download Now (0K)
Public Domain
Downloads till now: 6
 
 

Quick search

 



 

Rate this software

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

No. Votes

0

 

Linux



Windows

Mac

Mobile

Drivers

Scripts - DHTML

Scripts - DHTML (new)

Web Developer Blog

Web Developer Blog (new)

Scripts and Applications

Ajax
ASP
ASP.NET
C and C++
CFML
CGI and Perl
Flash
Java
JavaScript
PHP
Python
XML

Docutils

 

Details

Size: 0K
Last Update: 2008-05-31 01:16:09
Version: 0.4
OS Support: Linux
License/Program Type: Public Domain
Publisher: Felix Wiemann
Price:$0.00
Description:

Docutils 0.4 is documentation software developed by Felix Wiemann.
Docutils is an open-source text processing system for processing plaintext documentation into useful formats, such as HTML or LaTeX.



Docutils project includes reStructuredText, the easy to read, easy to use, what-you-see-is-what-you-get plaintext markup language.

Requirements:
Python 2.2 or later

What's New in This Release:
General:
Updated the project policies for trunk/branch development & version numbering.
docutils/__init__.py:
Added __version_details__ attribute to describe code source (repository/snapshot/release).
Replaced default_transforms attribute of TransformSpec with get_transforms() method.
docutils/core.py:
Added publish_doctree and publish_from_doctree convenience functions, for document tree extraction and reprocessing.
docutils/io.py:
Added DocTreeInput class, for reprocessing existing documents.
Added support for non-Unicode (e.g. binary) writer output.
docutils/nodes.py:
Re-introduced Targetable.indirect_reference_name, for MoinMoin/reST compatibility (removed in r3124/r3129).
Added serial_escape function; escapes string values that are elements of a list, for serialization. Modified Docutils-XML writing (Element._dom_node) and pseudo-XML writing (Element.starttag) to use serial_escape.
Added Node.deepcopy() method.
Removed the internal lists document.substitution_refs, document.anonymous_refs, and document.anonymous_targets.
Added a "container" element.
Fixed bug where values of list-valued attributes of elements originating from custom interpreted text roles (i.e., with custom classes) were being shared between element instances. Reported by Shmuel Zeigerman.
docutils/statemachine.py:
Added trailing whitespace stripping to string2lines().
Added StringList.pad_double_width() & .replace() for East Asian double-width character support.
docutils/utils.py:
Added east_asian_column_width() for double-width character support.
docutils/languages/ja.py: Added to project: Japanese mappings by Hisashi Morita.
docutils/languages/zh_cn.py: Added to project: Simplified Chinese mappings by Panjunyong.
docutils/parsers/null.py: Added to project; a do-nothing parser.
docutils/parsers/rst/__init__.py:
Added validator to tab_width setting, with test. Closes SF bug 1212515, report from Wu Wei.
docutils/parsers/rst/states.py:
Fixed bug with escaped colons indicating a literal block.
Fixed bug with enumerated lists (SF1254145).
Backslash-escaped colons inside of field names are now allowed.
Targets (implicit and explicit), anonymous hyperlink references and auto-numbered footnote references inside of substitution definitions are now disallowed.
Fixed bug: list items with blank first lines.
Fixed bug: block quote attributions with indented second lines.
Added East Asian double-width character support (Python 2.4 only).
docutils/parsers/rst/tableparser.py:
Added East Asian double-width character support (Python 2.4 only).
docutils/parsers/rst/directives/body.py:
Added the "container" directive.
docutils/parsers/rst/directives/misc.py:
Added the "default-role", "title", and "date" directives.
Added standard data file syntax to the "include" directive.
Added support for "class" directive content.
docutils/parsers/rst/directives/images.py:
Added indirect_reference_name support for images with a target option.
Added support for image width and height units.
Fixed bug with image "target" options.
docutils/parsers/rst/directives/references.py:
Added "class" attribute to "target-notes" directive, for footnote_reference classes.
docutils/parsers/rst/include/: Directory added to project; contains standard data files for the "include" directive. Initial contents: character entity substitution definition sets, and a set of definitions for S5/HTML presentations.
docutils/parsers/rst/languages/ja.py: Added to project: Japanese mappings by David Goodger.
docutils/parsers/rst/languages/zh_cn.py: Added to project: Simplified Chinese mappings by Panjunyong.
docutils/readers/__init__.py:
Added universal.Decorations and universal.ExposeInternals transforms as default transforms for all readers.
Added ReReader base class for readers that reread an existing document tree.
docutils/readers/doctree.py: Added to project; a reader for existing document trees.
docutils/transforms/frontmatter.py:
Fixed the DocInfo transform to handle SVN-style expansion of the "Date" keyword.
In DocInfo.extract_authors, treat the contents of "authors" fields uniformly.
docutils/transforms/misc.py:
Added misc.Transitions transform, extracted from universal.FinalChecks.
docutils/transforms/references.py:
Added references.DanglingReferences transform, extracted from universal.FinalChecks.
Fixed bug with doubly-indirect substitutions.
Added footnote_reference classes attribute to "TargetNotes".
Fixed bug with circular substitution definitions that put Docutils into an infinite loop.
docutils/transforms/universal.py:
Added universal.ExposeInternals transform, extracted from universal.FinalChecks.
Removed universal.FinalChecks transform (logic has been moved to several new transforms).
Fixed bug with the "expose_internals" setting and Text nodes (exposed by the "rawsource" internal attribute).
Added the universal.StripComments transform, implementation of the "strip_comments" setting.
docutils/transforms/writer_aux.py: Added to project; auxiliary transforms for writers.
Added Compound transform, which flattens compound paragraphs.
docutils/writers/: Several writer modules (html4css1.py) were converted into packages. Support modules and data files have been moved into the packages. The stylesheets for the HTML writers are now installed along with the code, the code knows where to find them, and the default is to use them (actually, to embed them). Some adjustments to configuration files may be necessary. The easiest way to obtain the new default behavior is to remove all settings whose name includes "stylesheet".
docutils/writers/__init__.py:
Added universal.Messages and universal.FilterMessages transforms as default transforms for all writers.
Added UnfilteredWriter base class for writers that pass the document tree on unchanged.
docutils/writers/docutils_xml.py:
Made xmlcharrefreplace the default output encoding error handler.
docutils/writers/html4css1/:
Added support for image width and height units.
Made xmlcharrefreplace the default output encoding error handler.
Made --embed-stylesheet the default rather than --link-stylesheet.
Moved "id" attribute from container (section etc.) to title's tag, to be on the same tag as "name". (!!! To be reverted in Docutils 0.5.)
Added vertical space between fields of field lists.
Added --compact-field-lists option to remove vertical space in simple field lists.
Made cloaking of email addresses with --cloak-email-addresses less obtrusive.
Fixed support for centered images.
Added support for class="compact" & class="open" lists.
docutils/writers/latex2e/:
Underscores in citekeys are no longer escaped.
docutils/writers/newlatex2e/unicode_map.py: Added to project; mapping of Unicode characters to LaTeX equivalents.
docutils/writers/s5_html/: Package added to project; writer for S5/HTML slide shows.
docs/dev/distributing.txt: Added to project; guide for distributors (package maintainers).
docs/dev/hacking.txt: Added to project; guide for developers.
docs/ref/doctree.txt:
Updated for plural attributes "classes", "ids", "names", "dupnames".
Added the "container" element.
docs/ref/docutils.dtd:
Updated for plural attributes "classes", "ids", "names", "dupnames".
docs/user/emacs.txt: Added to project; a document about Emacs support for reStructuredText and Docutils.
docs/user/links.txt: Added to project; lists of Docutils-related links.
docs/user/mailing-lists.txt: Added to project; information about Docutils-related mailing lists and how to access them.
docs/user/slide-shows.txt: Added to project; example of and docs for the S5/HTML writer (rst2s5.py front end).
docs/ref/rst/definitions.txt: "reStructuredText Standard Definition Files", added to project.
test/coverage.sh: Added to project; test coverage script.
test/DocutilsTestSupport.py:
Added support for specifying runtime settings at the suite level.
test/test_functional.py:
Added the clear_output_directory function.
Added support for _test_more functions in functional test config files.
tools/rst2s5.py: Added to project; front end for the S5/HTML writer.
tools/rstpep2html.py: Renamed from pep.py.
tools/dev/create_unimap.py: Added to project; script to create the docutils/writers/unimap_latex.py mapping file.
tools/dev/profile_docutils.py: Added to project; profiler script.
tools/dev/unicode2rstsubs.py: Moved from tools/unicode2rstsubs.py.
tools/editors/emacs/restructuredtext.el, tools/editors/emacs/rst-html.el, tools/editors/emacs/rst-mode.el: Removed from project; the functionality is now contained in rst.el.
tools/editors/emacs/rst.el: Added to project. Added many features and fixed many bugs. See docs/user/emacs.txt for details.
tools/stylesheets: Removed from project. Stylesheets have been renamed and moved into writer packages.
Docutils 0.4 supports english interface languages and works with Linux.

Downloading Docutils 0.4 will take if you use fast ADSL connection.

Leave a comment




(optional)

What is 7-3?




0 comments


Add to

 Del.icio.us   Digg It   Furl   YahooMyWeb   Blinklist
 

Docutils Version History

Product Date Added
Docutils 0.4 2008-05-31 01:16:09


Related Software

db2dot
From category: Documentation
db2dot 0.2.2 is documentation software developed by db2dot Team. db2dot reverse engineers an existing database and produces an ER diagram in dot format. The dot file can be fed through graph...
DocBook XSL Configurator
From category: Documentation
DocBook XSL Configurator consists of a Java GUI used to create DocBook XSL FO customization layers....
help2info
From category: Documentation
help2info is a bash script that generates a simple info page from the output of the --help argument of the specified program....
StorYBook
From category: Documentation
StorYBook is a free, summary-based open source software for creative writers like novelists and authors....
Docutils
From category: Documentation
Docutils 0.4 is documentation software developed by Felix Wiemann. Docutils is an open-source text processing system for processing plaintext documentation into useful formats, such as HTML or LaTe...
DharmaDoc
From category: Documentation
DharmaDoc 0.27 alpha is documentation software developed by Lee Braiden. DharmaDoc automates most of the tedious work involved in setting up a local Web server that contains a Buddhist reference li...
man pages
From category: Documentation
The manpages package contains a large collection of man pages for Linux covering programming APIs, file formats, protocols, etc....
Natural Docs
From category: Documentation
Natural Docs is an extensible, multi-language, source code documentation generator written in Perl....
Derbrill Tutorials
From category: Documentation
Derbrill Tutorials is documentation software developed by Runtime Revolution. Derbrill Tutorials are Free Tutorials For Writing Games and Multimedia Applications in Runtime Revolution with ArcadeEn...
Cross-LFS
From category: Documentation
Cross-LFS 1.0.0 is documentation software developed by Ryan Oliver and Jim Gifford. Cross-LFS stands for Cross Linux From Scratch (CLFS) and is a project that provides you with step-by-step instruc...
as2api 0.4
From category: Documentation
as2api 0.4 is documentation software developed by David Holroyd. as2api project is a JavaDoc-a-like for ActionScript 2.0. It began it because there don\'t seem to be any complete, free (GPL...
ADSL Bandwidth Management HOWTO 1.3
From category: Documentation
ADSL Bandwidth Management HOWTO 1.3 is documentation software developed by Dan Singletary. ADSL Bandwidth Management HOWTO project describes how to manage outbound traffic on an ADSL modem....
Apache Compile HOWTO 1.9.18
From category: Documentation
Apache Compile HOWTO 1.9.18 is documentation software developed by Luc de Louw. Apache Compile HOWTO is a full-featured Apache compilation HOWTO. The Apache Compile HOWTO is a simple set of...
DocTaur
From category: Documentation
DocTaur 1.3.5 is documentation software developed by Radek Kucera. DocTaur project is an intranet Web-based directory of reference manuals. You can freely download, install, and administrat...
Adoc.sh 0.1
From category: Documentation
Adoc.sh 0.1 is documentation software developed by Harass Lars Soderlund. Adoc is a very simple script for making audio recordings that are attached to ctags tags or entire files. A simple c...
 

Top Downloads

 
1. Free Mp3 Finder
2. Audio Catalog
3. Realtek ALC/ 262/ 265/ 268/ 660/ 861/ 880/ 882/ 883/ 885/ 888 Audio
4. Canon PIXMA iP1200 Printer Driver
5. Genius Eye 110 Webcam Driver
6. Canon PIXMA iP1000 Printer Driver
7. LG GSA-2166D
8. Aldo's Text-PDF PRO+
9. Mercury KVM800M A
10. Nimo Codec Pack
11. Broadcom Advanced Control Suite 2
12. Canon i550 Printer Driver
13. Mercury P4VM800M7
14. Mercury PI865GVM7 V
15. Canon PIXMA MP220 MP Drivers
16. Canon PIXMA MP160 MP Drivers 9xME
17. Realtek Sound Card AC97 A
18. Canon PIXMA MX310 MP Drivers
19. Canon S200 Printer Driver
20. Canon PIXMA iP1600 Printer Driver

DownloadTube Editor Reviews

 
1. Ots Studio
Ots Studio - Ripper, Encoder & Ots Media File Editor. Ots...
2. Analogue Clock
Analogue Clock is a clear analogue clock, written in AS 2.0,...
3. Photo Frame Show
Photo Frame Show is an imaging and desktop enhancement progr...
4. Image panning v.2
Simple image panning tool - just load an image with any size...
5. Sib Icon Extractor
Sib Icon Extractor is a handy and reliable tool for extracti...
6. Sib Icon Editor
Sib Icon Editor is a power-packed icon editor featuring abil...
7. Free AVI to MP2 Converter
Doremisoft Free AVI to MP2 Converter is an easiy-to-use medi...
8. Advanced TIFF Editor
Advanced TIFF Editor - feature-rich FAX, TIF (TIFF), PDF, EP...
9. A-Z Planner
A-Z Planner is an advanced, multi-functional tool that allow...
10. Public PC Desktop
Use Public PC Desktop to turn your personal computer into an...

Software Reviews Full List



Recent Blog Posts

 
1. Easy Publishing of WordPress Blogs RSS Feeds With FeedBurner
RSS (Really Simple Syndication) Feeds are a modern form of c...
2. Automatic Installation of Joomla! on Windows With JoomlaPC
A convenient alternative for the development or testing of J...
3. An Introduction To Joomla! Templates Creation With Adobe Dreamweaver CS3
Joomla! is a content management system and framework with a ...
4. Two New Firefox Stable Releases Are Available For Free Download: Firefox 3.0.2 and Firefox 2.0.0.17
Recently, two Firefox stable releases for Windows, Mac OS, a...
5. How To Deploy A Linux LiveCD on Windows Using MobaLiveCD
There are many ways to test a certain Linux distribution on ...
6. Ever Needed A Free Video Converter And You Just Couldn’t Find It? Here’s Our Suggestion.
With so many different video (or even audio) converters arou...
7. Top 101 Most Downloaded Windows Software: Free Demo Movies and Download Links
We often have to decide if we should download the latest v...
8. A New Powerful Virus Could Affect Millions of WordPress Blogs
The WordPress blogging platform powers millions of web...
9. Google Chrome – It’s Finally Here. Will A Revolution Begin?
First, it was the rumors. Then, Google announced it official...
10. An Amazing Free Document Processing Software: LyX
The documents management task could be difficult in absence ...

Last 20 Scripts

 
1. JavaScript Gravity
JavaScript Gravity allows you to create the effect of an obj
2. Expanding Elements
Expanding Elements script can be used to allow elements such
3. YUI Test
YUI Test is a testing framework for browser-based JavaScript
4. jRails
jRails is a drop-in jQuery replacement for the Rails Prototy
5. Select Box Replacement
Select Box Replacement is an unobtrusive jQuery plugin that
6. jQuery Field Plug-in
jQuery Field Plug-in expands the ability to retrieve and set
7. inlineEdit.v3.js
inlineEdit.v3.js is a simple to use MooTools plugin that all
8. Animated InnerFade with JQuery
Animated InnerFade with JQuery script is a full W3C complian
9. MooFlow
MooFlow is an AJAX based image gallery that uses MooTools.
10. jQuery Plugin SVG
jQuery SVG is a jQuery plugin that lets you easily interact
11. HeatColor
HeatColor is a plugin that allows you to assign colors to el
12. YUI Charts Control
YUI Charts Control visualizes tabular data on a web page in
13. JavaScript Info Pane
JavaScript Info Pane is designed to look and act much like a
14. Corner Dock Navigation
Corner Dock Navigation is a dock style navigation menu that
15. Auto Suggest Box
Auto Suggest Box is a normal text input box which automatica
16. MinMax Elements
MinMax Elements JavaScript allows you to get a windows like
17. jQuery Column Filters
jQuery Column Filters provides a quick way of allowing table
18. FastFind Menu Script
FastFind Menu Script script allows you to create nested menu
19. jGrowl
jGrowl is a jQuery plugin that raises unobtrusive messages w
20. Cookie Crumbs
Cookie Crumbs JavaScript creates a breadcrumb type trail of