[Zope3-checkins] SVN: Zope3/trunk/src/z3checkins/ rename text files
to have .txt extensions to appease the Windows users
Fred L. Drake, Jr.
fred at zope.com
Thu May 27 13:19:07 EDT 2004
Log message for revision 25058:
rename text files to have .txt extensions to appease the Windows users
-=-
Deleted: Zope3/trunk/src/z3checkins/README
===================================================================
--- Zope3/trunk/src/z3checkins/README 2004-05-27 17:15:43 UTC (rev 25057)
+++ Zope3/trunk/src/z3checkins/README 2004-05-27 17:19:04 UTC (rev 25058)
@@ -1,105 +0,0 @@
-Zope 3 Checkins
-===============
-
-This is a Zope 3 product for keeping track of <zope3-checkins at zope.org> mailing
-list. It adds a new content object type: CheckinMessage. You can upload all
-messages from the mailing list to your Zope 3 instance with a simple procmail
-rule, and then view the latest checkins in your Mozilla sidebar or any news
-aggregator that supports RSS, e.g. Nautilus.
-
-It is also quite usable for other checkin-tracking mailing lists. However
-since there is no single standard on how the messages should be formatted,
-your mileage may vary.
-
-
-Installation
-------------
-
-Start up Zope 3 and add a Checkin Folder. You will be presented with a form.
-
- - the first field is a description used for checkins.rss view
- - the second field is a URL to the traditional mailing list archive.
- - the third field is a list of icon definitions used for checkins to
- different parts of the source trees. Each line should contain four
- fields:
-
- prefix icon-name alt-text title
-
- prefix is matched against the beginning of the checkin directory (put
- longer, more specific prefixes first. * is a catch-all prefix, and
- should be placed last). Lines starting with # are ignored.
-
- icon-name is a Zope 3 resource name. z3checkins comes with the following
- icons: zope3.png, product.png, message.png, branch.png.
-
- alt-text is a short alternate text
-
- title is a longer description, usually shown in a tooltip
-
-You would use the following configuration for zope3-checkins at zope.org:
-
- RSS view description:
- Latest Zope 3 Checkins
-
- URL of mailing list:
- http://mail.zope.org/pipermail/zope3-checkins/
-
- Icon definitions:
- # prefix icon title description
- Zope3/branches branch.png Branch Zope 3 branch
- * zope3.png Z3 Zope 3 trunk
-
-Then, go to the Metadata tab and set the title.
-
-Now you can create Checkin Messages in that folder. In the rest of this
-document I assume Zope 3 is accessible at http://localhost:8080/ and that
-the checkin folder is called 'zope3-checkins'.
-
-
-Upload script
--------------
-
-Here's an example of a shell script that uses curl to upload a file or a list
-of files, each containing a single RFC822 mail message:
-
- #!/bin/sh
- for file in "$@"; do
- curl -F field.data=@- -F UPDATE_SUBMIT=Submit -s -S \
- -u username:password \
- http://localhost:8080/zope3-checkins/+/CheckinMessage \
- < "$file" > /dev/null
- done
-
-Replace username:password with the username and password of a Zope 3 user that
-has zope.ManageContent permission in the 'zope3-checkins' folder.
-
-This script may be used to import archives in Maildir format. Or you can
-use formail or some other tool to split mbox folders available at
-http://mail.zope.org/pipermail/zope3-checkins/
-
-
-Procmail
---------
-
-Add this to your .procmailrc to upload new messages automatically:
-
-:0:
-* ^List-Id:.*<zope3-checkins\.zope\.org>
-| curl -F field.data=@- -F UPDATE_SUBMIT=Submit -s -S -u username:password \
- http://localhost:8080/zope3-checkins/+/CheckinMessage > /dev/null
-
-Replace username:password with the username and password of a Zope 3 user that
-has zope.ManageContent permission in the 'zope3-checkins' folder.
-
-
-RSS feed
---------
-
-Use the following URL to access last checkins in RSS format:
-
- http://localhost:8080/zope3-checkins/checkins.rss
-
-
-Good luck,
-Marius Gedminas
-<marius at pov.lt>
Copied: Zope3/trunk/src/z3checkins/README.txt (from rev 25057, Zope3/trunk/src/z3checkins/README)
Deleted: Zope3/trunk/src/z3checkins/TODO
===================================================================
--- Zope3/trunk/src/z3checkins/TODO 2004-05-27 17:15:43 UTC (rev 25057)
+++ Zope3/trunk/src/z3checkins/TODO 2004-05-27 17:19:04 UTC (rev 25058)
@@ -1,19 +0,0 @@
-I definitely want to do the following:
-
-- Make sure non-ASCII chars work both in headers and in bodies
-
-I'm not sure I'll find time for these:
-
-- Is storing all the messages in a single folder scalable enough?
-- Highlight branch tags in message body
-- Highlight quoted text in normal message bodies
-- Show checkin times in the user's timezone instead of server's (this probably
- needs some configuration page and cookies)
-- Replace newlines with <br/> elements in checkin messages in message_part.pt
-- Shorten descriptions in message_part.pt to first 100 chars (words? sentences?
- lines?)
-- Add links to the specific versions of the files mentioned in the CVS web
- interface
-- Filtering (by branch, by author, etc)
-- Threading?
-- Verify how all this works in other browsers beside Mozilla
Copied: Zope3/trunk/src/z3checkins/TODO.txt (from rev 25057, Zope3/trunk/src/z3checkins/TODO)
More information about the Zope3-Checkins
mailing list