Download Docutils - Docutils Description, Docutils Reviews
Contact
 


 

Download

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

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


Tag Cloud

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


Downloadtube.com agrees that pirated software hurts software developers and does not support such practices. We acknowledge and agree that software piracy is theft. Using Docutils crack, Docutils key generator, Docutils keygen, as well as any pirated Docutils serial number/serial numbers and Docutils registration code/codes, warez, keys, torrents, passwords, is illegal and does not support the future development of Docutils.

Downloadtube.com advises that Docutils should be only used in accordance with the rules of intellectual property and the existing Criminal Code. Downloadtube.com does not allow the inclusion of any crack, serial or keygen and disclaims any liability for the inappropriate use of Docutils.

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

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...
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...
Natural Docs
From category: Documentation
Natural Docs is an extensible, multi-language, source code documentation generator written in Perl....
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...
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...
man pages
From category: Documentation
The manpages package contains a large collection of man pages for Linux covering programming APIs, file formats, protocols, etc....
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...
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...
Dive Into Python
From category: Documentation
Dive Into Python is documentation software developed by Mark Pilgrim. Dive Into Python is a free Python tutorial, written by Mark Pilgrim. Dive Into Python book lives at http://diveintopytho...
Clara
From category: Documentation
Clara 3.0 is documentation software developed by Alejandro Xalabarder Aulet. Clara is a help-documentation tool for C++ or java developers. Basically she paints a diagram - a clara diagram - from a...
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....
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....
Firewall and Proxy Server HOWTO
From category: Documentation
Firewall and Proxy Server HOWTO 0.80 is documentation software developed by Mark Grennan. Firewall and Proxy Server HOWTO project is designed to describe the basics of firewall systems. And...
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...
DocBook XSL Configurator
From category: Documentation
DocBook XSL Configurator consists of a Java GUI used to create DocBook XSL FO customization layers....
 

Top Downloads

 
1. Canon PIXMA iP1000 Printer Driver
2. Canon PIXMA iP1200 Printer Driver
3. Canon PIXMA iP1300 Printer Driver c
4. Canon PIXMA iP1600 Printer Driver
5. Canon PIXMA MP210 MP Drivers
6. Realtek High Definition Audio Codecs R
7. Realtek ALC/ 262/ 265/ 268/ 660/ 861/ 880/ 882/ 883/ 885/ 888 Audio
8. Canon LaserShot LBP-1210 Printer Driver
9. Canon i-SENSYS LBP2900 Printer Driver R
10. ZiPhone
11. Realtek RTL8100B(L)/RTL8100C(L)/RTL8101L/RTL8139C(L) Driver XP
12. Canon PIXMA MP160 MP Drivers xp64
13. Canon PIXMA iP1300 Printer Driver a
14. Canon PIXMA iP1200 Printer Driver d
15. Rapidshare Auto Downloader
16. The Sitter Downers Soundboard
17. XP Quick Fix Plus
18. Genius Eye 110 Webcam Driver
19. TR Birthday Reminder
20. Canon PIXMA iP1200 Printer Driver x64 d

DownloadTube Editor Reviews

 
1. Virtual Drives Manager
Whenever you might need to create a virtual drive that is po...
2. WinCDEmu
WinCDEmu is a great open-source tool that allows mounting CD...
3. EMCO UnLock IT
EMCO UnLock IT is a neat freeware that lets you to take cont...
4. Daphne
Daphne is a small and reliable freeware application for kill...
5. Whats Running
What's Running is a simple-to-use yet comprehensive and high...
6. Radiopholio
Radiopholio is a simple-to-use open-source application that ...
7. Registry Live Watch
Registry Live Watch is a simple and small portable freeware ...
8. Startup Discoverer
When MS Windows based operating system starts, it will also ...
9. Driver Scanner
Driver Scanner is a powerful application designed to keep yo...
10. Application Paths Editor
Application Path Editor is a small, simple, portable Windows...

Software Reviews Full List



Video Reviews

 
1. Driver Scanner
Scan and update your outdated system drivers to release the ...
2. Radiopholio
Radiopholio is a free, open-source application which enables...
3. WinCDEmu
WinCDEmu is an open-source software that allows mounting CD/...
4. Eyetrainer
EyeTrainer is your private trainer for doing the best and mo...
5. MediaCodeSpeedEdit
MediaCodeSpeedEdit allows you to change the write speed for ...
6. Startup Discoverer
Handy and accurate Windows startup manager....
7. Whats Running
What's Running gives you an inside look into your Windows 20...
8. Virtual Drives Manager
Virtual Drives Manager let you in a quick way, create a Simb...
9. Diversify
Windows and processes manager. More windows management for u...
10. EMS YouTube Downloader & Converter
Download and convert YouTube videos to popular formats!...
11. Application Paths Editor
Application Path Editor is a portable Windows program to Add...
12. Registry Live Watch
Registry Live Watch is a free, lightweight and portable tool...
13. Safe Deleter
SafeDeleter is a secure data removal tool for Windows. It co...
14. Startway
Startway is an open-source Windows application that allows t...
15. Most Recently Opened Folder Utility
MRO is a Task Tray Icon/Background Process combination for r...

More Video Reviews



Recent Blog Posts

 
1. How To Disable PHP Safe Mode On In Plesk
Plesk is a powerful hosting automation control panel, used a...
2. Google Dashboard Knows All Your Secrets
If you are connected to your Google account and surf the web...
3. Google Friend Connect Is More User Friendly
Google Friend Connect, the Google service which allows webma...
4. Yahoo! Media Player: A Fast And Lightweight MP3 Player
If you are looking for a convenient and unobtrusive audio pl...
5. Indo Cleaner 2009 Maximizes Windows 7 Performance
Many of you might just have upgraded the current Windows ope...
6. Salesforce And Adobe: Rich Internet Applications In The Cloud
Adobe Systems Incorporated has just announced the partnersh...
7. Google Social Search: Tweets In Google Search Results
The real-time updates from social networks, like Twitter, r...
8. WordPress 2.8.5 Has An Enhanced Security System
Even the upcoming candidate for the most popular blogging pl...
9. Puppy Linux Built From Ubuntu Still Has 99 MB
As compared with earlier candidates, version 4.3 of Puppy Li...
10. Webmaster Tools: Googlebot Fetching Process And Malware Details
Recently, Google has included into Webmaster Tools service n...