Updated license, copyright.

This commit is contained in:
Erik C. Thauvin 2004-07-29 17:29:37 +00:00
parent 8df9afb5bb
commit c5a5024b35
10 changed files with 215 additions and 177 deletions

View file

@ -1,9 +1,36 @@
/*
* @(#)LifeAction.java
*
* Copyright (C) 2004 by Erik C. Thauvin (erik@thauvin.net)
* Copyright (c) 2004, Erik C. Thauvin (http://www.thauvin.net/erik/)
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* Neither the name of the authors nor the names of its contributors may be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id$
*
*/
@ -17,7 +44,7 @@ import java.io.IOException;
/**
* The <code>LifeAction</code> class provides the base functionality for all actions.
*
* @author Erik C. Thauvin
* @author <a href="http://www.thauvin.net/erik/">Erik C. Thauvin</a>
* @version $Revision$, $Date$
*
* @created Jul 24, 2004

View file

@ -44,7 +44,7 @@ import java.io.IOException;
* The <code>LifeBlog</code> abstract class provides the base functionality for file transfer-based ({@link LifeFTP},
* {@link LifeMediaObject}, etc.) actions.
*
* @author Erik C. Thauvin
* @author <a href="http://www.thauvin.net/erik/">Erik C. Thauvin</a>
* @version $Revision$, $Date$
*
* @created Jul 20, 2004

View file

@ -59,7 +59,7 @@ import javax.swing.*;
/**
* The <code>LifeBlogger</code> class uploads/posts Lifeblog's favorite data to a blog.
*
* @author Erik C. Thauvin
* @author <a href="http://www.thauvin.net/erik/">Erik C. Thauvin</a>
* @version $Revision$, $Date$
*
* @created Jul 19, 2004

View file

@ -48,7 +48,7 @@ import java.io.IOException;
/**
* The <code>LifeFTP</code> class stores/uploads a file to a FTP server.
*
* @author Erik C. Thauvin
* @author <a href="http://www.thauvin.net/erik/">Erik C. Thauvin</a>
* @version $Revision$, $Date$
*
* @created Jul 20, 2004

View file

@ -45,7 +45,7 @@ import java.net.URLConnection;
/**
* The <code>LifeMediaObject</code> class posts a new media object via the metaWeblog.newMediaObject XML-RPC method.
*
* @author Erik C. Thauvin
* @author <a href="http://www.thauvin.net/erik/">Erik C. Thauvin</a>
* @version $Revision$, $Date$
*
* @created Jul 21, 2004

View file

@ -46,7 +46,7 @@ import java.net.URLConnection;
/**
* The <code>LifePostObject</code> class posts a new blog entry using the blogger.newPost() XML-RPC method.
*
* @author Erik C. Thauvin
* @author <a href="http://www.thauvin.net/erik/">Erik C. Thauvin</a>
* @version $Revision$, $Date$
*
* @created Jul 21, 2004

View file

@ -1,6 +1,9 @@
/*
* @(#)LifeRPCResponse.java
*
* Copyright (c) 2004, Erik C. Thauvin (http://www.thauvin.net/erik/)
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
@ -42,7 +45,7 @@ import java.io.InputStream;
/**
* The <code>LifeRPCResponse</code> class uses the Thinlet DOM parser to process a XML-RCP response.
*
* @author Erik C. Thauvin
* @author <a href="http://www.thauvin.net/erik/">Erik C. Thauvin</a>
* @version $Revision$, $Date$
*
* @created Jul 21, 2004

View file

@ -1,5 +1,5 @@
/* Created by JReleaseInfo AntTask from Open Source Competence Group */
/* Creation date Sat Jul 24 07:59:45 PDT 2004 */
/* Creation date Thu Jul 29 10:28:53 PDT 2004 */
package net.thauvin.lifeblogger;
import java.util.Date;
@ -12,21 +12,21 @@ import java.util.Date;
public class ReleaseInfo {
/** buildDate (set during build process to 1090681185796L). */
private static Date buildDate = new Date(1090681185796L);
/** buildDate (set during build process to 1091122133468L). */
private static Date buildDate = new Date(1091122133468L);
/**
* Get buildDate (set during build process to Sat Jul 24 07:59:45 PDT 2004).
* Get buildDate (set during build process to Thu Jul 29 10:28:53 PDT 2004).
* @return Date buildDate
*/
public static final Date getBuildDate() { return buildDate; }
/**
* Get buildNumber (set during build process to 111).
* Get buildNumber (set during build process to 113).
* @return int buildNumber
*/
public static final int getBuildNumber() { return 111; }
public static final int getBuildNumber() { return 113; }
/** version (set during build process to "0.1.0"). */