RE: [Zope] Mailing list to web archive?
-----Original Message----- From: Nitin Borwankar [mailto:nitin@borwankar.com] Sent: Tuesday, November 16, 1999 18:41 To: Ray Thompson Cc: zope@zope.org Subject: Re: [Zope] Mailing list to web archive?
Ray Thompson wrote:
I'm trying to find a means for creating a web-based archive
from a mailing
list. I'm using Confera and am wondering if there's anything out there that's akin to something like Hypermail.
I am assuming you have taken a look at Mailman at www.list.org and the pipermail package therein, which is a (simplified?) Python implementation of Hypermail, I believe. Mailman is extremely simple to setup and to administer over the web.
But it doesn't intergrate well with Zope and its about time it did. Ontop of this the html based storage of achives is very inflexible, un searchable and ugly.
On 11/16/99 5:59 PM, Jay, Dylan at djay@lucent.com wrote:
But it doesn't intergrate well with Zope and its about time it did. Ontop of this the html based storage of achives is very inflexible, un searchable and ugly.
I'm sure the Mailman people would be more than happy to accept patches which do this ;-) A bunch of people have tossed around the idea, but it's simply a matter of resources. Chris -- | Christopher Petrilli Python Powered Digital Creations, Inc. | petrilli@digicool.com http://www.digicool.com
"DJ" == Dylan Jay <djay@lucent.com> writes:
DJ> But it doesn't intergrate well with Zope and its about time it DJ> did. Absolutely. There's been a lot of thoughts in this direction, but so far no code. I encourage anybody interested in looking into Zopifying Mailman to join the mailman-developers list http://www.python.org/mailman/listinfo/mailman-developers DJ> Ontop of this the html based storage of achives is very DJ> inflexible, un searchable and ugly. Yep. Pipermail has the advantage that it's all Python and comes bundled with Mailman, but it is not industrial strength. Nobody seems that fired up to improve Pipermail though, so I don't know that this will improve. On the other hand, it shouldn't be hard to integrate your favorite external archiver. On the third hand, I don't think any of the popular archivers provide searching either. I've run outta hands... -Barry
Hello, I'm having a problem trying to increment an integer here is the code: <dtml-in "sqlView.expressCampaigns()"> <dtml-call "REQUEST.set('ctn', CTN + 1)"> </dtml-in> I have a SQL Query that returns a column called "CTN" in the database (MySQL) this is defined as an integer, and currently has the value of "20000" (the table only contains one entry right now). I want to set the variable "ctn" to the CTN returned from the query plus 1. This is the error I get: Error Type: TypeError Error Value: illegal argument type for built-in operation When I view the source of the page I just see CTN: 20000, which I had printing out at one point but have since removed, but no error information or anything. Any thoughts would be appreciated. Thanks, --James
Don't know if this is the right way to do it, but this is what I do: <dtml-in "sqlView.expressCampaigns()"> <dtml-let newctn="CTN +1"> <dtml-call "REQUEST.set('ctn', newctn)"> </dtml-let> </dtml-in> ----- Original Message ----- From: James Punteney <jamesp@mmgco.com> To: <zope@zope.org> Sent: Wednesday, November 17, 1999 1:59 PM Subject: [Zope] Incrementing an Integer
Hello,
I'm having a problem trying to increment an integer here is the code: <dtml-in "sqlView.expressCampaigns()"> <dtml-call "REQUEST.set('ctn', CTN + 1)"> </dtml-in>
I have a SQL Query that returns a column called "CTN" in the database (MySQL) this is defined as an integer, and currently has the value of "20000" (the table only contains one entry right now). I want to set the variable "ctn" to the CTN returned from the query plus 1.
This is the error I get: Error Type: TypeError Error Value: illegal argument type for built-in operation
When I view the source of the page I just see CTN: 20000, which I had printing out at one point but have since removed, but no error information or anything.
Any thoughts would be appreciated.
Thanks, --James
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope No cross posts or HTML encoding! (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
participants (5)
-
Barry A. Warsaw -
Christopher Petrilli -
James Punteney -
Jay, Dylan -
Jim Sanford