Ignore:
Timestamp:
Mar 11, 2009, 10:01:39 AM (14 years ago)
Author:
Nicklas Nordborg
Message:

Fixes #127: Update to final release of Apache Mina FTP server

Location:
extensions/net.sf.basedb.ftp/trunk
Files:
3 added
3 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • extensions/net.sf.basedb.ftp/trunk/META-INF/MANIFEST.MF

    r915 r985  
    11Manifest-Version: 1.0
    2 Class-Path: lib/ftpserver/ftplet-api-1.0.0-M4.jar
    3  lib/ftpserver/ftpserver-core-1.0.0-M4.jar
    4  lib/ftpserver/mina-core-2.0.0-M3.jar
     2Class-Path: lib/ftpserver/ftplet-api-1.0.0.jar
     3 lib/ftpserver/ftpserver-core-1.0.0.jar
     4 lib/ftpserver/mina-core-2.0.0-M4.jar
    55 lib/ftpserver/slf4j-api-1.5.2.jar
    66 lib/ftpserver/slf4j-log4j12-1.5.2.jar
  • extensions/net.sf.basedb.ftp/trunk/README

    r741 r985  
    11== Requirements ==
    22
    3  1. BASE 2.8.0 or later.
     3 1. BASE 2.10.0 or later.
    44 
    55== Introduction ==
    66
    77This package is an extension package to BASE that installs a small FTP
    8 server as part of the web server. The code in this package currently
    9 uses beta software from the Apache foundation. Thus, we can't make
    10 any guarantee about functionality or stability of this extension. We recommend
    11 testing on a development server before using this software in a production
    12 environment. For the same reason we can't make any promises about API
    13 compatibility between releases. The API may change at any time.
     8server as part of the web server. It uses the Apache FTP Server library
     9for the actual handling of the FTP protcol.
    1410
    1511 * The homepage for this extension:
  • extensions/net.sf.basedb.ftp/trunk/build.xml

    r921 r985  
    2424-->
    2525<project
    26   name="MevLauncher"
     26  name="FtpServerExtension"
    2727  default="jar"
    2828  basedir=".">
     
    4646  <property name="javac.target" value="1.5" />
    4747  <property name="javac.encoding" value="ISO-8859-1" />
    48   <property name="depend.jars" value="http://base2.thep.lu.se/base/jars/2.8.0" />
     48  <property name="depend.jars" value="http://base2.thep.lu.se/base/jars/2.10.0" />
    4949
    5050  <!-- set up classpath for compiling -->
  • extensions/net.sf.basedb.ftp/trunk/src/net/sf/basedb/clients/ftp/BaseFtpFile.java

    r939 r985  
    214214  /**
    215215    Ignored since BASE doesn't allow us to change this.
    216   */
    217   @Override
    218   public void setLastModified(long lastModified)
    219   {}
     216    @return Always "false"
     217  */
     218  @Override
     219  public boolean setLastModified(long lastModified)
     220  {
     221    return false;
     222  }
    220223 
    221224  /**
Note: See TracChangeset for help on using the changeset viewer.