You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(46) |
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(1) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
(1) |
Jul
(15) |
Aug
(24) |
Sep
(14) |
Oct
(2) |
Nov
(1) |
Dec
(18) |
2002 |
Jan
(12) |
Feb
(5) |
Mar
(3) |
Apr
(1) |
May
(1) |
Jun
(10) |
Jul
(3) |
Aug
(4) |
Sep
|
Oct
(1) |
Nov
|
Dec
(5) |
2003 |
Jan
(1) |
Feb
(1) |
Mar
|
Apr
(1) |
May
(2) |
Jun
(4) |
Jul
(2) |
Aug
(4) |
Sep
|
Oct
(1) |
Nov
(1) |
Dec
(1) |
2004 |
Jan
(141) |
Feb
(79) |
Mar
(85) |
Apr
(38) |
May
(1) |
Jun
|
Jul
(78) |
Aug
(223) |
Sep
(107) |
Oct
(158) |
Nov
(136) |
Dec
|
2005 |
Jan
(7) |
Feb
(4) |
Mar
|
Apr
(13) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(2) |
Dec
(3) |
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
(100) |
Dec
(22) |
From: Gary L P. <gar...@us...> - 2000-11-07 05:19:24
|
Update of /cvsroot/jtidy/CVSROOT In directory slayer.i.sourceforge.net:/tmp/cvs-serv30830 Modified Files: syncmail Log Message: Lengthen sleep time. Index: syncmail =================================================================== RCS file: /cvsroot/jtidy/CVSROOT/syncmail,v retrieving revision 1.26 retrieving revision 1.27 diff -u -r1.26 -r1.27 --- syncmail 2000/11/07 05:14:42 1.26 +++ syncmail 2000/11/07 05:19:21 1.27 @@ -89,7 +89,7 @@ fp = open(file) else: update_cmd = 'cvs -fn checkout -r %s -p %s' % (newrev, file) - time.sleep(5) + time.sleep(15) fp = os.popen(update_cmd) lines = fp.readlines() fp.close() |
From: Gary L P. <gar...@us...> - 2000-11-07 05:16:50
|
Update of /cvsroot/jtidy/jtidy/src/org/xml/sax In directory slayer.i.sourceforge.net:/tmp/cvs-serv30744 Modified Files: InputSource.java Log Message: Fix invalid line ending. Index: InputSource.java =================================================================== RCS file: /cvsroot/jtidy/jtidy/src/org/xml/sax/InputSource.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- InputSource.java 2000/11/07 05:15:16 1.1 +++ InputSource.java 2000/11/07 05:16:47 1.2 @@ -305,7 +305,7 @@ } - + //////////////////////////////////////////////////////////////////// // Internal state. //////////////////////////////////////////////////////////////////// |
From: Gary L P. <gar...@us...> - 2000-11-07 05:15:23
|
Update of /cvsroot/jtidy/jtidy/src/org/xml/sax In directory slayer.i.sourceforge.net:/tmp/cvs-serv30583 Added Files: InputSource.java Log Message: Initial add of SAX classes --- NEW FILE --- |
From: Gary L P. <gar...@us...> - 2000-11-07 05:14:47
|
Update of /cvsroot/jtidy/CVSROOT In directory slayer.i.sourceforge.net:/tmp/cvs-serv30532 Modified Files: syncmail Log Message: Change update to checkout to avoid "was lost" error. Index: syncmail =================================================================== RCS file: /cvsroot/jtidy/CVSROOT/syncmail,v retrieving revision 1.25 retrieving revision 1.26 diff -u -r1.25 -r1.26 --- syncmail 2000/11/07 05:09:15 1.25 +++ syncmail 2000/11/07 05:14:42 1.26 @@ -88,8 +88,8 @@ if os.path.exists(file): fp = open(file) else: - update_cmd = 'cvs -fn update -r %s -p %s' % (newrev, file) - time.sleep(15) + update_cmd = 'cvs -fn checkout -r %s -p %s' % (newrev, file) + time.sleep(5) fp = os.popen(update_cmd) lines = fp.readlines() fp.close() |
From: Gary L P. <gar...@us...> - 2000-11-07 05:10:50
|
Update of /cvsroot/jtidy/jtidy/src/org/xml/sax In directory slayer.i.sourceforge.net:/tmp/cvs-serv30245 Added Files: HandlerBase.java Log Message: Initial add of SAX classes --- NEW FILE --- // SAX default handler base class. // No warranty; no copyright -- use this as you will. // $Id: HandlerBase.java,v 1.1 2000/11/07 05:10:22 garypeskin Exp $ package org.xml.sax; /** * Default base class for handlers. * * <blockquote> * <em>This module, both source code and documentation, is in the * Public Domain, and comes with <strong>NO WARRANTY</strong>.</em> * </blockquote> * * <p>This class implements the default behaviour for four SAX1 * interfaces: EntityResolver, DTDHandler, DocumentHandler, * and ErrorHandler. It is now obsolete, but is included in SAX2 to * support legacy SAX1 applications. SAX2 applications should use * the {@link org.xml.sax.helpers.DefaultHandler DefaultHandler} * class instead.</p> * * <p>Application writers can extend this class when they need to * implement only part of an interface; parser writers can * instantiate this class to provide default handlers when the * application has not supplied its own.</p> * * <p>Note that the use of this class is optional.</p> * * @deprecated This class works with the deprecated * {@link org.xml.sax.DocumentHandler DocumentHandler} * interface. It has been replaced by the SAX2 * {@link org.xml.sax.helpers.DefaultHandler DefaultHandler} * class. * @since SAX 1.0 * @author David Megginson, * <a href="mailto:sa...@me...">sa...@me...</a> * @version 2.0 * @see org.xml.sax.EntityResolver * @see org.xml.sax.DTDHandler * @see org.xml.sax.DocumentHandler * @see org.xml.sax.ErrorHandler */ public class HandlerBase implements EntityResolver, DTDHandler, DocumentHandler, ErrorHandler { //////////////////////////////////////////////////////////////////// // Default implementation of the EntityResolver interface. //////////////////////////////////////////////////////////////////// /** * Resolve an external entity. * * <p>Always return null, so that the parser will use the system * identifier provided in the XML document. This method implements * the SAX default behaviour: application writers can override it * in a subclass to do special translations such as catalog lookups * or URI redirection.</p> * * @param publicId The public identifer, or null if none is * available. * @param systemId The system identifier provided in the XML * document. * @return The new input source, or null to require the * default behaviour. * @exception org.xml.sax.SAXException Any SAX exception, possibly * wrapping another exception. * @see org.xml.sax.EntityResolver#resolveEntity */ public InputSource resolveEntity (String publicId, String systemId) throws SAXException { return null; } //////////////////////////////////////////////////////////////////// // Default implementation of DTDHandler interface. //////////////////////////////////////////////////////////////////// /** * Receive notification of a notation declaration. * * <p>By default, do nothing. Application writers may override this * method in a subclass if they wish to keep track of the notations * declared in a document.</p> * * @param name The notation name. * @param publicId The notation public identifier, or null if not * available. * @param systemId The notation system identifier. * @see org.xml.sax.DTDHandler#notationDecl */ public void notationDecl (String name, String publicId, String systemId) { // no op } /** * Receive notification of an unparsed entity declaration. * * <p>By default, do nothing. Application writers may override this * method in a subclass to keep track of the unparsed entities * declared in a document.</p> * * @param name The entity name. * @param publicId The entity public identifier, or null if not * available. * @param systemId The entity system identifier. * @param notationName The name of the associated notation. * @see org.xml.sax.DTDHandler#unparsedEntityDecl */ public void unparsedEntityDecl (String name, String publicId, String systemId, String notationName) { // no op } //////////////////////////////////////////////////////////////////// // Default implementation of DocumentHandler interface. //////////////////////////////////////////////////////////////////// /** * Receive a Locator object for document events. * * <p>By default, do nothing. Application writers may override this * method in a subclass if they wish to store the locator for use * with other document events.</p> * * @param locator A locator for all SAX document events. * @see org.xml.sax.DocumentHandler#setDocumentLocator * @see org.xml.sax.Locator */ public void setDocumentLocator (Locator locator) { // no op } /** * Receive notification of the beginning of the document. * * <p>By default, do nothing. Application writers may override this * method in a subclass to take specific actions at the beginning * of a document (such as allocating the root node of a tree or * creating an output file).</p> * * @exception org.xml.sax.SAXException Any SAX exception, possibly * wrapping another exception. * @see org.xml.sax.DocumentHandler#startDocument */ public void startDocument () throws SAXException { // no op } /** * Receive notification of the end of the document. * * <p>By default, do nothing. Application writers may override this * method in a subclass to take specific actions at the beginning * of a document (such as finalising a tree or closing an output * file).</p> * * @exception org.xml.sax.SAXException Any SAX exception, possibly * wrapping another exception. * @see org.xml.sax.DocumentHandler#endDocument */ public void endDocument () throws SAXException { // no op } /** * Receive notification of the start of an element. * * <p>By default, do nothing. Application writers may override this * method in a subclass to take specific actions at the start of * each element (such as allocating a new tree node or writing * output to a file).</p> * * @param name The element type name. * @param attributes The specified or defaulted attributes. * @exception org.xml.sax.SAXException Any SAX exception, possibly * wrapping another exception. * @see org.xml.sax.DocumentHandler#startElement */ public void startElement (String name, AttributeList attributes) throws SAXException { // no op } /** * Receive notification of the end of an element. * * <p>By default, do nothing. Application writers may override this * method in a subclass to take specific actions at the end of * each element (such as finalising a tree node or writing * output to a file).</p> * * @param name The element type name. * @param attributes The specified or defaulted attributes. * @exception org.xml.sax.SAXException Any SAX exception, possibly * wrapping another exception. * @see org.xml.sax.DocumentHandler#endElement */ public void endElement (String name) throws SAXException { // no op } /** * Receive notification of character data inside an element. * * <p>By default, do nothing. Application writers may override this * method to take specific actions for each chunk of character data * (such as adding the data to a node or buffer, or printing it to * a file).</p> * * @param ch The characters. * @param start The start position in the character array. * @param length The number of characters to use from the * character array. * @exception org.xml.sax.SAXException Any SAX exception, possibly * wrapping another exception. * @see org.xml.sax.DocumentHandler#characters */ public void characters (char ch[], int start, int length) throws SAXException { // no op } /** * Receive notification of ignorable whitespace in element content. * * <p>By default, do nothing. Application writers may override this * method to take specific actions for each chunk of ignorable * whitespace (such as adding data to a node or buffer, or printing * it to a file).</p> * * @param ch The whitespace characters. * @param start The start position in the character array. * @param length The number of characters to use from the * character array. * @exception org.xml.sax.SAXException Any SAX exception, possibly * wrapping another exception. * @see org.xml.sax.DocumentHandler#ignorableWhitespace */ public void ignorableWhitespace (char ch[], int start, int length) throws SAXException { // no op } /** * Receive notification of a processing instruction. * * <p>By default, do nothing. Application writers may override this * method in a subclass to take specific actions for each * processing instruction, such as setting status variables or * invoking other methods.</p> * * @param target The processing instruction target. * @param data The processing instruction data, or null if * none is supplied. * @exception org.xml.sax.SAXException Any SAX exception, possibly * wrapping another exception. * @see org.xml.sax.DocumentHandler#processingInstruction */ public void processingInstruction (String target, String data) throws SAXException { // no op } //////////////////////////////////////////////////////////////////// // Default implementation of the ErrorHandler interface. //////////////////////////////////////////////////////////////////// /** * Receive notification of a parser warning. * * <p>The default implementation does nothing. Application writers * may override this method in a subclass to take specific actions * for each warning, such as inserting the message in a log file or * printing it to the console.</p> * * @param e The warning information encoded as an exception. * @exception org.xml.sax.SAXException Any SAX exception, possibly * wrapping another exception. * @see org.xml.sax.ErrorHandler#warning * @see org.xml.sax.SAXParseException */ public void warning (SAXParseException e) throws SAXException { // no op } /** * Receive notification of a recoverable parser error. * * <p>The default implementation does nothing. Application writers * may override this method in a subclass to take specific actions * for each error, such as inserting the message in a log file or * printing it to the console.</p> * * @param e The warning information encoded as an exception. * @exception org.xml.sax.SAXException Any SAX exception, possibly * wrapping another exception. * @see org.xml.sax.ErrorHandler#warning * @see org.xml.sax.SAXParseException */ public void error (SAXParseException e) throws SAXException { // no op } /** * Report a fatal XML parsing error. * * <p>The default implementation throws a SAXParseException. * Application writers may override this method in a subclass if * they need to take specific actions for each fatal error (such as * collecting all of the errors into a single report): in any case, * the application must stop all regular processing when this * method is invoked, since the document is no longer reliable, and * the parser may no longer report parsing events.</p> * * @param e The error information encoded as an exception. * @exception org.xml.sax.SAXException Any SAX exception, possibly * wrapping another exception. * @see org.xml.sax.ErrorHandler#fatalError * @see org.xml.sax.SAXParseException */ public void fatalError (SAXParseException e) throws SAXException { throw e; } } // end of HandlerBase.java |
From: Gary L P. <gar...@us...> - 2000-11-07 05:09:18
|
Update of /cvsroot/jtidy/CVSROOT In directory slayer.i.sourceforge.net:/tmp/cvs-serv30148 Modified Files: syncmail Log Message: Revert to original code. Add sleep to the update function to overcome race condition. Debugging: syncmailIndex: syncmail =================================================================== RCS file: /cvsroot/jtidy/CVSROOT/syncmail,v retrieving revision 1.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- syncmail 2000/11/07 04:39:41 1.24 +++ syncmail 2000/11/07 05:09:15 1.25 @@ -33,7 +33,7 @@ --cvsroot=<path> Use <path> as the environment variable CVSROOT. Otherwise this - variable must exist in the environment. x + variable must exist in the environment. --help -h @@ -77,38 +77,36 @@ -def calculate_diff(basespec, filespec): +def calculate_diff(filespec): try: file, oldrev, newrev = string.split(filespec, ',') except ValueError: # No diff to report return '***** Bogus filespec: %s' % filespec - fullpath = basespec + file if oldrev == 'NONE': try: - if os.path.exists(fullpath): - fp = open(fullpath) + if os.path.exists(file): + fp = open(file) else: - update_cmd = 'cvs -fn checkout -r %s -p %s' % (newrev, fullpath) + update_cmd = 'cvs -fn update -r %s -p %s' % (newrev, file) + time.sleep(15) fp = os.popen(update_cmd) lines = fp.readlines() fp.close() lines.insert(0, '--- NEW FILE ---\n') - lines.insert(0, "Debugging: " + fullpath) except IOError, e: lines = ['***** Error reading new file: ', str(e), '\n***** file: ', file, ' cwd: ', os.getcwd()] elif newrev == 'NONE': - lines = ['--- %s DELETED ---\n' % fullpath] + lines = ['--- %s DELETED ---\n' % file] else: # This /has/ to happen in the background, otherwise we'll run into CVS # lock contention. What a crock. diffcmd = '/usr/bin/cvs -f diff -kk -u -r %s -r %s %s' % ( - oldrev, newrev, fullpath) + oldrev, newrev, file) fp = os.popen(diffcmd) lines = fp.readlines() sts = fp.close() - lines.insert(0, "Debugging: " + fullpath) # ignore the error code, it always seems to be 1 :( ## if sts: ## return 'Error code %d occurred during diff\n' % (sts >> 8) @@ -121,7 +119,7 @@ -def blast_mail(mailcmd, basedir, filestodiff): +def blast_mail(mailcmd, filestodiff): # cannot wait for child process or that will cause parent to retain cvs # lock for too long. Urg! if not os.fork(): @@ -133,10 +131,7 @@ fp.write('\n') # append the diffs if available for file in filestodiff: - fp.write(calculate_diff("", file)) - fp.write(calculate_diff("jtidy/", file)) - fp.write(calculate_diff("cvsroot/jtidy/", file)) - fp.write(calculate_diff(basedir, file)) + fp.write(calculate_diff(file)) fp.write('\n') fp.close() # doesn't matter what code we return, it isn't waited on @@ -182,9 +177,7 @@ if specs[-3:] == ['-', 'New', 'directory']: del specs[-3:] print 'Generating notification message...' - print 'Working directory is ' + os.getcwd() - print 'CVSROOT is ' + os.environ['CVSROOT'] - blast_mail(mailcmd, specs[0], specs[1:]) + blast_mail(mailcmd, specs[1:]) print 'Generating notification message... done.' Debugging: jtidy/syncmailDebugging: cvsroot/jtidy/syncmailDebugging: CVSROOTsyncmail |
From: Gary L P. <gar...@us...> - 2000-11-07 04:56:51
|
Update of /cvsroot/jtidy/jtidy/src/org/xml/sax In directory slayer.i.sourceforge.net:/tmp/cvs-serv29379 Modified Files: Test01.java Log Message: Testing only. Debugging: Test01.javaIndex: Test01.java =================================================================== RCS file: /cvsroot/jtidy/jtidy/src/org/xml/sax/Test01.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- Test01.java 2000/11/07 04:53:44 1.1 +++ Test01.java 2000/11/07 04:56:49 1.2 @@ -1 +1,3 @@ This is just a test for our CVS loginfo. +Second line for diff. + Debugging: jtidy/Test01.javaDebugging: cvsroot/jtidy/Test01.javaDebugging: jtidy/src/org/xml/saxTest01.java |
From: Gary L P. <gar...@us...> - 2000-11-07 04:53:47
|
Update of /cvsroot/jtidy/jtidy/src/org/xml/sax In directory slayer.i.sourceforge.net:/tmp/cvs-serv29139 Added Files: Test01.java Log Message: Testing only. Debugging: Test01.java--- NEW FILE --- This is just a test for our CVS loginfo. Debugging: jtidy/Test01.java--- NEW FILE --- Debugging: cvsroot/jtidy/Test01.java--- NEW FILE --- Debugging: jtidy/src/org/xml/saxTest01.java--- NEW FILE --- |
From: Gary L P. <gar...@us...> - 2000-11-07 04:42:44
|
Update of /cvsroot/jtidy/jtidy/src/org/xml/sax In directory slayer.i.sourceforge.net:/tmp/cvs-serv28563 Added Files: ErrorHandler.java Log Message: Initial add of SAX classes Debugging: ErrorHandler.java--- NEW FILE --- Debugging: jtidy/ErrorHandler.java--- NEW FILE --- Debugging: cvsroot/jtidy/ErrorHandler.java--- NEW FILE --- Debugging: jtidy/src/org/xml/saxErrorHandler.java--- NEW FILE --- |
From: Gary L P. <gar...@us...> - 2000-11-07 04:39:43
|
Update of /cvsroot/jtidy/CVSROOT In directory slayer.i.sourceforge.net:/tmp/cvs-serv28345 Modified Files: syncmail Log Message: Testing only. Debugging: syncmailIndex: syncmail =================================================================== RCS file: /cvsroot/jtidy/CVSROOT/syncmail,v retrieving revision 1.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- syncmail 2000/11/07 04:39:11 1.23 +++ syncmail 2000/11/07 04:39:41 1.24 @@ -33,7 +33,7 @@ --cvsroot=<path> Use <path> as the environment variable CVSROOT. Otherwise this - variable must exist in the environment. + variable must exist in the environment. x --help -h Debugging: jtidy/syncmailDebugging: cvsroot/jtidy/syncmailDebugging: CVSROOTsyncmail |
From: Gary L P. <gar...@us...> - 2000-11-07 04:39:14
|
Update of /cvsroot/jtidy/CVSROOT In directory slayer.i.sourceforge.net:/tmp/cvs-serv28314 Modified Files: syncmail Log Message: Testing only. Debugging: /syncmailIndex: /syncmail =================================================================== RCS file: /cvsroot/jtidy/CVSROOT//syncmail,v retrieving revision 1.22 retrieving revision 1.23 diff -u -r1.22 -r1.23 --- /syncmail 2000/11/07 04:33:44 1.22 +++ /syncmail 2000/11/07 04:39:11 1.23 @@ -83,7 +83,7 @@ except ValueError: # No diff to report return '***** Bogus filespec: %s' % filespec - fullpath = basespec + "/" + file + fullpath = basespec + file if oldrev == 'NONE': try: if os.path.exists(fullpath): Debugging: jtidy//syncmailDebugging: cvsroot/jtidy//syncmailDebugging: CVSROOT/syncmail |
From: Gary L P. <gar...@us...> - 2000-11-07 04:33:46
|
Update of /cvsroot/jtidy/CVSROOT In directory slayer.i.sourceforge.net:/tmp/cvs-serv27900 Modified Files: syncmail Log Message: Testing only. Debugging: /syncmailIndex: /syncmail =================================================================== RCS file: /cvsroot/jtidy/CVSROOT//syncmail,v retrieving revision 1.21 retrieving revision 1.22 diff -u -r1.21 -r1.22 --- /syncmail 2000/11/07 04:33:12 1.21 +++ /syncmail 2000/11/07 04:33:44 1.22 @@ -33,7 +33,7 @@ --cvsroot=<path> Use <path> as the environment variable CVSROOT. Otherwise this - variable must exist in the environment. x + variable must exist in the environment. --help -h Debugging: jtidy//syncmailDebugging: cvsroot/jtidy//syncmailDebugging: CVSROOT/syncmail |
From: Gary L P. <gar...@us...> - 2000-11-07 04:33:15
|
Update of /cvsroot/jtidy/CVSROOT In directory slayer.i.sourceforge.net:/tmp/cvs-serv27845 Modified Files: syncmail Log Message: Testing only. Index: /syncmail =================================================================== RCS file: /cvsroot/jtidy/CVSROOT//syncmail,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- /syncmail 2000/11/07 04:10:00 1.20 +++ /syncmail 2000/11/07 04:33:12 1.21 @@ -94,6 +94,7 @@ lines = fp.readlines() fp.close() lines.insert(0, '--- NEW FILE ---\n') + lines.insert(0, "Debugging: " + fullpath) except IOError, e: lines = ['***** Error reading new file: ', str(e), '\n***** file: ', file, ' cwd: ', os.getcwd()] @@ -107,6 +108,7 @@ fp = os.popen(diffcmd) lines = fp.readlines() sts = fp.close() + lines.insert(0, "Debugging: " + fullpath) # ignore the error code, it always seems to be 1 :( ## if sts: ## return 'Error code %d occurred during diff\n' % (sts >> 8) |
From: Gary L P. <gar...@us...> - 2000-11-07 04:10:02
|
Update of /cvsroot/jtidy/CVSROOT In directory slayer.i.sourceforge.net:/tmp/cvs-serv25908 Modified Files: syncmail Log Message: Testing only. Index: /syncmail =================================================================== RCS file: /cvsroot/jtidy/CVSROOT//syncmail,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- /syncmail 2000/11/07 04:09:19 1.19 +++ /syncmail 2000/11/07 04:10:00 1.20 @@ -33,7 +33,7 @@ --cvsroot=<path> Use <path> as the environment variable CVSROOT. Otherwise this - variable must exist in the environment. + variable must exist in the environment. x --help -h |
From: Gary L P. <gar...@us...> - 2000-11-07 04:09:23
|
Update of /cvsroot/jtidy/CVSROOT In directory slayer.i.sourceforge.net:/tmp/cvs-serv25871 Modified Files: syncmail Log Message: Testing only. |
From: Gary L P. <gar...@us...> - 2000-11-07 03:01:57
|
Update of /cvsroot/jtidy/CVSROOT In directory slayer.i.sourceforge.net:/tmp/cvs-serv21178 Modified Files: syncmail Log Message: Testing only. |
From: Gary L P. <gar...@us...> - 2000-11-07 03:01:30
|
Update of /cvsroot/jtidy/CVSROOT In directory slayer.i.sourceforge.net:/tmp/cvs-serv21148 Modified Files: syncmail Log Message: Testing only. CVSROOT/syncmail |
From: Gary L P. <gar...@us...> - 2000-11-07 02:59:32
|
Update of /cvsroot/jtidy/CVSROOT In directory slayer.i.sourceforge.net:/tmp/cvs-serv20886 Modified Files: syncmail Log Message: Testing only. CVSROOT/syncmail |
From: Gary L P. <gar...@us...> - 2000-11-07 02:58:49
|
Update of /cvsroot/jtidy/CVSROOT In directory slayer.i.sourceforge.net:/tmp/cvs-serv20829 Modified Files: syncmail Log Message: Testing only. /cvsroot/jtidy/CVSROOT/syncmail |
From: Gary L P. <gar...@us...> - 2000-11-07 02:47:25
|
Update of /cvsroot/jtidy/CVSROOT In directory slayer.i.sourceforge.net:/tmp/cvs-serv20091 Modified Files: syncmail Log Message: Testing only. /cvsroot/jtidy/CVSROOT/syncmail |
From: Gary L P. <gar...@us...> - 2000-11-07 02:46:39
|
Update of /cvsroot/jtidy/CVSROOT In directory slayer.i.sourceforge.net:/tmp/cvs-serv20035 Modified Files: syncmail Log Message: Testing only. |
From: Gary L P. <gar...@us...> - 2000-11-07 02:42:45
|
Update of /cvsroot/jtidy/CVSROOT In directory slayer.i.sourceforge.net:/tmp/cvs-serv19753 Modified Files: syncmail Log Message: Testing only. |
From: Gary L P. <gar...@us...> - 2000-11-07 02:42:04
|
Update of /cvsroot/jtidy/CVSROOT In directory slayer.i.sourceforge.net:/tmp/cvs-serv19698 Modified Files: syncmail Log Message: Testing only. |
From: Gary L P. <gar...@us...> - 2000-11-07 02:38:39
|
Update of /cvsroot/jtidy/CVSROOT In directory slayer.i.sourceforge.net:/tmp/cvs-serv19450 Modified Files: syncmail Log Message: Testing only. |
From: Gary L P. <gar...@us...> - 2000-11-07 02:37:51
|
Update of /cvsroot/jtidy/CVSROOT In directory slayer.i.sourceforge.net:/tmp/cvs-serv19425 Modified Files: syncmail Log Message: Testing only. |