Text Management scripts - Top 4 Download

Text Management script downloads

Distributed Proofreaders

Distributed Proofreaders is a website written in PHP with some PERL and backed by a mySQL database and is intended to ease the process of converting Public Domain books and other printed materials into e-texts. Distributed Proofreaders provides a web-based method of easing the proofreading work associated with the creation of ...

xslfo2pdf

xslfo2pdf is an opensource project of Tegonal GmbH to provide a plain PHP based approach generating PDF document from the xsl-fo standard. The initial release will support basic features. ...

Escape Flash

Escape-Flash is a simple function to prevent some errors caused by the different encoding characters used between Macromedia-Flash textfield_textareas and Html encoding.Escape Flash is a simple program to escape text to visualize it correctly in a flash textarea. You can use this program to convert a string of character or a ...

Inline PHP API Documentation

Inline PHP API Documentation is an autodocumentor for php. It aims to be for PHP what Javadoc is for Java. ...

FPDF Generator

FPDF Generator is a little PDF generator that makes PHP reports. It meters of the funmeters of the funenerates the PHP enerates the PHP code. ...

WP2PDF

“WordPress to PDF” (Short: WP2PDF) is a script (or rather a collection of scripts) which can convert the output of WordPress to PDF (Portable Document File), a very popular document format created by Adobe which has the advantage that its content looks the same on every platform, regardless whether or not ...

PHP Pdf creation

This class is designed to provide a non-module, non-commercial alternative to dynamically creating pdf documents from within PHP.In order to create simple documents with ease a class extension called 'ezPdf' has been developed, at the moment this includes auto page numbering,sentation, text wsentation, text wrapping to new pages, etc. ...

PDML

PDML is an informal markup language written in 100% PHP, allowing to create complex PDF documents very easily for people already familiar with HTML. It allows for the creation of complex PDF documents and can also be used in conjunction with PHP, to define templates which can generate dynamic PDF documents. ...

PUNO

This project is a PHP module (PHP5 and Linux/Unix only) written in C that brings the OpenOffice.org UNO Programming API to the PHP userspace. You can use it to write scripts that create, modify, read and save OpenOffice.org documents (Writer, Spreadsheet, Drawing). Also, you can export these documents in various formats, ...

dompdf

dompdf is an HTML to PDF converter. At its heart, dompdf is (mostly) CSS2.1 compliant HTML layout and rendering engine written in PHP. It is a style-driven renderer: it will download and read external stylesheets, inline style tags, and the style attributes of individual HTML elements. It also supports most presentational ...

sPHPell

sPHPell is a FREE PHP spell checker that takes the text in a text field via javascript and spell checks it in its own window. The user can perform the usual spell checking operations (ignore, ignore all, change, change all, etc). Simple to include in any PHP page. ...

Php Pdf Factory

Php Pdf Factory is a PDFLib that allows you to freely create PDF using PHP. It has administrative interface and iImplements most iImplemenrecommended features mmended features like PageTrees, On. ...

JODConverter

JODConverter, the Java OpenDocument Converter, converts documents between different office formats.It leverages OpenOffice.org, which provides arguably the best import/export filters for OpenDocument and Microsoft Office formats available today.JODConverter automates all conversions supported by OpenOffice.org, including - Microsoft Office to OpenDocument, and viceversa - Word to OpenDocument Text (odt); OpenDocument Text ...

FarsiTeX

FarsiTeX is a free Persian/English bidirectional typesetting system based on Donald Knuth's TeX Program.TeX and his friend METAFONT have served mathematicians and technical writers all over the world for many years and helped them to write prettier and easier. Available in the release are a Windows installer, bundling the editor and ...

AFT script

AFT is a document preparation system. It is mostly free form meaning that there is little intrusive markup. AFT source documents look a lot like plain old ASCII text.AFT has a few rules for structuring your document and these rules have more to do with formatting your text rather than embedding ...

Document Text Sizer

Sometimes the text size you've specified for your webpage isn't suitable to the viewer, depending on his browser configuration or OS.This script uses Dynamic CSS to let the viewer himself modify the text size of the page on demand, by clicking on an Increase or Decrease Font Size link.It is most ...
JavaScript

Implementing an Immutable Dictionary

This script represents the implementation of a dictionary, whose items cannot be reset or deleted, nor new can be added. ...
Python

Read a text file by paragraph

Text files are most often read by-line, with excellent direct Python support. Sometimes you need to use other units, such as the paragraph -- a sequence of non-empty lines separated by empty lines. Python doesn't support that directly, but, this script adds such functionality. ...
Python

Read a text file backwards

This script presents another way to read a file line by line, starting at the end. ...
Python

Replacing a portion of a string

This script allows you to replace a portion of a string at a given position. ...
Python