[PythonReports-checkins] htdocs index.html, NONE, 1.1 navigation.png, NONE, 1.1 footer.shtml, 1.1.1
Brought to you by:
a1s
From: KACAH <ka...@us...> - 2012-05-15 11:03:22
|
Update of /cvsroot/pythonreports/htdocs In directory vz-cvs-3.sog:/tmp/cvs-serv15766 Added Files: index.html navigation.png Removed Files: footer.shtml header.shtml index.shtml Log Message: Added API for PythonReports and Editor. New site style. --- footer.shtml DELETED --- --- header.shtml DELETED --- --- NEW FILE: index.html --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>PythonReports</title> <link rel="stylesheet" type="text/css" href="style.css" > <link rel="shortcut icon" href="py.ico" > <meta http-equiv="Content-Type" content="text/html; charset=utf-8" > </head> <body> <div class="header"> <div class="container"> <a class="logo" href="index.html"><img src="logo.png"/></a> <ul class="navigation"> <li><a href="http://sourceforge.net/projects/pythonreports/">Project page</a></li> <li><a href="prt.html">Templates</a></li> <li><a href="prp.html">Printouts</a></li> <li><a href="./api/index.html">API</a></li> </ul> </div> </div> <div class="main container"> <blockquote> ÐÑÐ±Ð»Ñ ÑебÑ, пеÑаÑи меÑÑо!<br /> -- Ð.ÐÑÑÑков, "РмеÑÑÑ Ð¿ÐµÑаÑи" </blockquote> <blockquote> ⦠rather exciting isn't it?<br /> -- Vocational Guidance Counsellor </blockquote> <h2>Introduction</h2> <p> <b>PythonReports</b> is a toolkit aimed to build database reports in <b>Python</b><sup><a href="#PythonTM">®</a></sup> programs. The toolkit includes <a href="prt.html">report template</a> designer, report builder and several <a href="prp.html">printout</a> renderers for GUI and graphic file output. </p> <p> Report builder applies a <a href="prt.html">template</a> to a sequence of uniform data objects and produces a <a href="prp.html">printout</a> structure that can be saved to file and/or rendered by one of the front-end drivers to screen, printer, HTML<sup><a href="#NoHTML">(*)</a></sup>, PDF etc. </p> <h2>Requirements</h2> <p> PythonReports require <a href="http://www.python.org/">Python</a> version 2.4 or newer. No support is planned for earlier Python versions.</p> <p> All parts of the PythonReports toolkit require the <a href="http://effbot.org/zone/element-index.htm">ElementTree</a> module. Python 2.5 includes this module as part of the standard library. Users of older Python versions can download separate distribution package from <a href="http://effbot.org/downloads/">http://effbot.org/downloads/</a> (<a href="http://effbot.org/zone/celementtree.htm">cElementTree</a> add-on is highly recommended too).</p> <p>Requirements for <a href="prp.html">printout</a> rendering depend on selected frontend:</p> <ul class="list"> <li>PDF output requires <a href="http://www.reportlab.org/rl_toolkit.html">the ReportLab Toolkit</a>. Reports containing images additionally require <a href="http://www.pythonware.com/products/pil/">Python Imaging Library</a> (<a href="http://www.pythonware.com/products/pil/">PIL</a>).</li> <li>wx-based preview and printing require <a href="http://www.wxpython.org/">wxPython</a>;</li> <li>Tk-based report preview requires Tkinter (part of the Python Standard Library). Reports containing images additionally require <a href="http://www.pythonware.com/products/pil/">PIL</a> or <a href="http://www.wxpython.org/">wxPython</a>.</li> </ul> <p>Report building can utilize any of the above options. In other words, if your system is able to display or print a report then it should be able to build a report too.</p> <p>Report template designer requires Tkinter with <a href="http://tix.sourceforge.net/">Tix</a> support (standard <a href="http://www.python.org/download/">Python installer</a> for Windows includes Tix; on some platforms Tix must be installed separately).</p> <h2>Quick Start</h2> <p> No documentation yet. Please look at the <a href="http://pythonreports.bzr.sourceforge.net/bzr/pythonreports/annotate/head%3A/test/test_build.py">test script</a> for report building example. All printout rendering modules (<a href="http://pythonreports.bzr.sourceforge.net/bzr/pythonreports/annotate/head%3A/PythonReports/pdf.py"><code>pdf</code></a>, <a href="http://pythonreports.bzr.sourceforge.net/bzr/pythonreports/annotate/head%3A/PythonReports/Tk.py"><code>Tk</code></a> and <a href="http://pythonreports.bzr.sourceforge.net/bzr/pythonreports/annotate/head%3A/PythonReports/wxPrint.py"><code>wxPrint</code></a>) have command line interface that can serve as their API usage example.</p> </div> </div> <div class="footer container"> <div class="footnote"> <a id="PythonTM"><b>Python</b><sup>®</sup></a> and the Python logos are trademarks or registered trademarks of the <a href="http://www.python.org/psf/">Python Software Foundation</a>. <a id="NoHTML"><sup>(*)</sup></a> HTML output is not implemented yet. </p> </div> <div class="logos"> <a href="http://www.python.org/"><img src="python-powered-w-120x40.png" width="120" height="40" alt="[Python Powered]"/></a> <a href="http://sourceforge.net/projects/pythonreports/"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=181233&type=12" width="120" height="30" border="0" alt="Get PythonReports at sourceforge.net. Fast, secure and Free Open Source software downloads"/></a> </div> </div> </body> </html> --- index.shtml DELETED --- --- NEW FILE: navigation.png --- (This appears to be a binary file; contents omitted.) |