You are not logged in Log in Join
You are here: Home » Members » natsukashi » Products

Log in
Name

Password

 

Products

Up one level

 Title   Type   Size   Last Modified   Description 
CMF-based MailMessage and MailFolder objects Software Package   2002-01-31

CMFMail README

CMF-based content objects that provide a skeleton for an mail folder and mail message. The following content objects are provided with a set of pre-defined properties:

  • MailMessage - mail message
  • MailFolder - folder for containing mail messages and other mail folders.

See the INSTALL.txt file for how to get the product installed and customized within your CMF.

See the DEPENDENCIES.txt file for a description of the required products.

This product is a near clone of the ZMailIn product in terms of features and spirit. However, the interfaces and implementation have been modified to push as much functionality into the CMF (such as the portal catalog, use of skins, etc.) and tailored to match the author's personal taste.

Portions of code copyright New Information Paradigms Ltd.

Portions of code taken from the prototype MaillistArchive product.

CMF-based PropertyManager-like objects Software Package   2002-01-31

CMFPropertyCore README

CMF-based content objects and folders that can be used as building blocks for other CMF-based content. The following content objects and folders are provided:

  • PropertyContent - CMF-based PropertyManager-like object
  • PropertyFolder - mix of PortalFolder and PropertyContent
  • PropertyBTreeFolder - mix of PortalBTreeFolder and PropertyContent

See the INSTALL.txt file for how to get the product installed and customized within your CMF.

See the DEPENDENCIES.txt file for a description of the required products.

CMFPropertyCore is currently being used by the following other CMF-based products:

CMF-based Address Book Software Package   2002-01-31

CMFUsrManOrg README

CMF-based content objects that provide a skeleton for an Address Book. The following content objects are provided with a set of pre-defined properties:

  • Man - entry for a person
  • Org - entry for an organization
  • Name - name
  • Tel - telephone
  • Loc - location or address
  • Uri - e-mail, url, etc.

An optional tool, CMFUsrManOrg MemberDataTool, is also included for allowing a Man object to be "attached" to each CMF portal Member. This allows a portal Member to maintain his/her own contact and demographic information.

See the INSTALL.txt file for how to get the product installed and customized within your CMF.

See the DEPENDENCIES.txt file for a description of the required products.

Splitter for Japanese text Software Package   2002-01-31

JSplitter provides a replacement for the word Splitter that ZCatalog uses, allowing ZCatalog to do full text search of Japanese. JSplitter uses the freely available ChaSen library to do morphological analysis on Japanese text, which informs the breaking of the text into words (Japanese words are not normally delimited by spaces).

This product is based on the original JSplitter product. Modifications have been made to the original product to update for usage with Zope 2.4.1 and to replace the python-based KConv module with the perl-based JCode.pm module.

ZEO ClientStorage Software Package   2002-01-31

MountedStorage README

MountedStorage is a product that helps ease the use of mounting and packing ZEO ClientStorages. This product is merely a repackaging of the features (and some base source code) offered by the ExternalMount and MountedFileStorage products with the following differences:

  • external methods are not required.
  • currently, only ZEO ClientStorages are supported (however, other storages could be added fairly easily by following the ClientStorage.py template).
  • a standard ZODB.ZApplication.ZApplicationWrapper is used to access the mounted storage (MountedFileStorage uses a application wrapper class specific to MountedFileStorage).
  • Control_Panel/Database "Mounts" tab for listing information and packing maintenance of mounted ZODB storages.

See the INSTALL.txt file for how to get the product installed and within your Zope environment.

See the DEPENDENCIES.txt file for a description of the required products.

Zope's ZPublisher Client meets Python's CGIHTTPServer!! Software Package   2002-01-31

ZPublisherClientMonkeyPatch README

Zope's ZPublisher Client meets Python's CGIHTTPServer!!

Unfortunately, it is not always possible to do everything in Zope. Sometimes, one needs to interface with another webserver and/or an external cgi program.

The ZPublisher Client included with the standard zope distribution fetches and returns pages using the http protocol. This product extends the ZPublisher Client in the following directions:

  • adds "https://" support if your python has been built and installed with the "Socket module compiled with SSL support" option.
  • adds "file://" external CGI program support by subclassing (and modifing some behavior of) the CGIHTTPServer.CGIHTTPRequestHandler included in the standard python library. This handler allows zope to fork (non-fork methods are available for non-unix platforms) a child process for executing and returning the result of an external CGI program.
  • adds a new "helper" method ProxyClient to be used when the ZPublisher Client is acting as a proxy for the original zope request. ProxyClient will extract information from the zope request object (if given as an argument) and then invoke the normal Client method with the extracted information. The extracted information includes items such as the request method, form data, cookies, REMOTE_ADDR, REMOTE_HOST, etc.

See the INSTALL.txt file for how to get the product installed and setup in your environment.

See the DEPENDENCIES.txt file for a description of the required products and/or libraries.

This product was inspired by ideas presented in the following links: