From: <ki...@us...> - 2003-05-09 01:51:51
|
Update of /cvsroot/pymerase/htdocs/sysreq In directory sc8-pr-cvs1:/tmp/cvs-serv22649 Modified Files: index.shtml Log Message: updated with descriptions Index: index.shtml =================================================================== RCS file: /cvsroot/pymerase/htdocs/sysreq/index.shtml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** index.shtml 8 May 2003 20:15:08 -0000 1.3 --- index.shtml 8 May 2003 21:09:04 -0000 1.4 *************** *** 71,125 **** <td width="33%" align="center" bgcolor="#0033FF"><b>Debian Package</b></td> ! <td width="10%" align="center" bgcolor="#0033FF"><b>Optional</b></td> ! <td width="90%" align="center" bgcolor="#0033FF"><b>Description</b></td> </tr> <tr> <td width="33%" align="center">python2.2</td> ! <td width="10%" align="center">No</td> ! <td width="90%" align="left"> </td> </tr> <tr> <td width="33%" align="center">python2.2-pymerase</td> ! <td width="10%" align="center">No</td> ! <td width="90%" align="left"> </td> </tr> <tr> <td width="33%" align="center">pymerase-docs</td> ! <td width="10%" align="center">No</td> <td width="90%" align="left"> </td> </tr> <tr> <td width="33%" align="center">python2.2-dev</td> ! <td width="10%" align="center">No</td> ! <td width="90%" align="left"> </td> </tr> <tr> <td width="33%" align="center">python2.2-egenix-mxdatetime</td> ! <td width="10%" align="center">No</td> ! <td width="90%" align="left"> </td> </tr> <tr> <td width="33%" align="center">python2.2-xml</td> ! <td width="10%" align="center">No</td> ! <td width="90%" align="left"> </td> </tr> <tr> <td width="33%" align="center">python2.2-xmlbase</td> ! <td width="10%" align="center">No</td> ! <td width="90%" align="left"> </td> </tr> <tr> <td width="33%" align="center">python2.2-ipython</td> ! <td width="10%" align="center">Yes</td> ! <td width="90%" align="left">Required for iPymerase to work.</td> </tr> <tr> <td width="33%" align="center">apache</td> ! <td width="10%" align="center">Yes</td> ! <td width="90%" align="left">Required by Pymweb</td> </tr> <tr> <td width="33%" align="center">postgresql</td> ! <td width="10%" align="center">No</td> <td width="90%" align="left"> Object-relational SQL database, descended from POSTGRES. --- 71,201 ---- <td width="33%" align="center" bgcolor="#0033FF"><b>Debian Package</b></td> ! <td width="10%" align="center" bgcolor="#0033FF"><b>Required</b></td> ! <td width="90%" align="center" bgcolor="#0033FF"><b>Debian Package Description</b></td> </tr> <tr> <td width="33%" align="center">python2.2</td> ! <td width="10%" align="center">Yes</td> ! <td width="90%" align="left"> ! An interactive object-oriented scripting language (version 2.2) ! Version 2.2 of the interpretive, interactive object oriented language, ! includes an extensive class library with lots of goodies for ! network programming, system administration, sounds and graphics. ! </td> </tr> <tr> <td width="33%" align="center">python2.2-pymerase</td> ! <td width="10%" align="center">Yes</td> ! <td width="90%" align="left"> ! Pymerase helps construct object-relational bridges ! * Pymerase provides a set of tools for constructing the glue code to ! serialize python objects into a relational database.<br> ! * It also has tools to create GUIs to interact with those objects as well. ! </td> </tr> <tr> <td width="33%" align="center">pymerase-docs</td> ! <td width="10%" align="center">Yes</td> <td width="90%" align="left"> </td> </tr> <tr> <td width="33%" align="center">python2.2-dev</td> ! <td width="10%" align="center">Yes</td> ! <td width="90%" align="left"> ! Header files and a static library for Python (v2.2) ! Header files, a static library and development tools for building ! Python (v2.2) modules, extending the Python interpreter or embedding ! Python (v2.2) in applications. ! . ! Includes the python distutils, which were in a separate package up to ! version 1.5.2. ! </td> </tr> <tr> <td width="33%" align="center">python2.2-egenix-mxdatetime</td> ! <td width="10%" align="center">Yes</td> ! <td width="90%" align="left"> ! Date and time handling routines for Python 2.2 ! mxDateTime is an extension package that provides three new object ! types, DateTime, DateTimeDelta and RelativeDateTime, which let you ! store and handle date/time values in a much more natural way than by ! using ticks (seconds since 1.1.70 0:00 UTC; the encoding used by the ! time module).<br> ! <br> ! You can add, subtract and even multiply instances, pickle and copy ! them and convert the results to strings, COM dates, ticks and some ! other more esoteric values. In addition, there are several convenient ! constructors and formatters at hand to greatly simplify dealing with ! dates and times in real-world applications.<br> ! <br> ! In addition to providing an easy-to-use Python interface the package ! also exports a comfortable C API interface for other extensions to ! build upon. This is especially interesting for database applications ! which often have to deal with date/time values. ! </td> </tr> <tr> <td width="33%" align="center">python2.2-xml</td> ! <td width="10%" align="center">Yes</td> ! <td width="90%" align="left"> ! XML tools for Python (2.2.x) ! This is a set of tools for processing XML in Python. Among other ! things, it includes an improved parser, interfaces to external ! parsers, Python implementations of SAX, DOM and XPath, unicode support, ! and an architecture processor. ! </td> </tr> <tr> <td width="33%" align="center">python2.2-xmlbase</td> ! <td width="10%" align="center">Yes</td> ! <td width="90%" align="left"> ! XML support included in Python (v2.2) ! Base XML support included in Python (v2.2), providing DOM and SAX modules ! and a parser based on expat. ! </td> </tr> <tr> <td width="33%" align="center">python2.2-ipython</td> ! <td width="10%" align="center">No</td> ! <td width="90%" align="left">Required for iPymerase to work.<br> ! <br> ! Enhanced interactive python shell<br> ! * Provide an interactive interpreter superior to Python's ! default. IPython has many features for object introspection, shell ! access, and its own special command system for adding functionality ! when working interactively.<br> ! <br> ! * Serve as an embeddable, ready to use interpreter for your own ! programs. IPython can be started with a single call from inside ! another program, providing access to the current namespace. This can ! be very useful both for debugging purposes and for situations where a ! blend of batch-processing and interactive exploration are needed.<br> ! <br> ! * Offer a flexible framework which can be used as the base ! environment for other systems with Python as the underlying ! language. Specifically scientific environments like Mathematica, IDL ! and Mathcad inspired its design, but similar ideas can be useful in ! many fields. ! </td> </tr> <tr> <td width="33%" align="center">apache</td> ! <td width="10%" align="center">No</td> ! <td width="90%" align="left">Required by Pymweb<br> ! <br> ! Versatile, high-performance HTTP server ! The most popular server in the world, Apache features a modular ! design and supports dynamic selection of extension modules at runtime. ! Some of its strong points are its range of possible customization, ! dynamic adjustment of the number of server processes, and a whole ! range of available modules including many authentication mechanisms, ! server-parsed HTML, server-side includes, access control, CERN httpd ! metafiles emulation, proxy caching, etc. Apache also supports multiple ! virtual homing. ! </td> </tr> <tr> <td width="33%" align="center">postgresql</td> ! <td width="10%" align="center">Yes</td> <td width="90%" align="left"> Object-relational SQL database, descended from POSTGRES. |