Changeset 985 for extensions/net.sf.basedb.ftp
- Timestamp:
- Mar 11, 2009, 10:01:39 AM (14 years ago)
- 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 1 1 Manifest-Version: 1.0 2 Class-Path: lib/ftpserver/ftplet-api-1.0.0 -M4.jar3 lib/ftpserver/ftpserver-core-1.0.0 -M4.jar4 lib/ftpserver/mina-core-2.0.0-M 3.jar2 Class-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 5 5 lib/ftpserver/slf4j-api-1.5.2.jar 6 6 lib/ftpserver/slf4j-log4j12-1.5.2.jar -
extensions/net.sf.basedb.ftp/trunk/README
r741 r985 1 1 == Requirements == 2 2 3 1. BASE 2. 8.0 or later.3 1. BASE 2.10.0 or later. 4 4 5 5 == Introduction == 6 6 7 7 This 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. 8 server as part of the web server. It uses the Apache FTP Server library 9 for the actual handling of the FTP protcol. 14 10 15 11 * The homepage for this extension: -
extensions/net.sf.basedb.ftp/trunk/build.xml
r921 r985 24 24 --> 25 25 <project 26 name=" MevLauncher"26 name="FtpServerExtension" 27 27 default="jar" 28 28 basedir="."> … … 46 46 <property name="javac.target" value="1.5" /> 47 47 <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" /> 49 49 50 50 <!-- set up classpath for compiling --> -
extensions/net.sf.basedb.ftp/trunk/src/net/sf/basedb/clients/ftp/BaseFtpFile.java
r939 r985 214 214 /** 215 215 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 } 220 223 221 224 /**
Note: See TracChangeset
for help on using the changeset viewer.