Skip to content

Commit c8304f7

Browse files
committed
update
update
1 parent 0a7036f commit c8304f7

File tree

246 files changed

+176778
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

246 files changed

+176778
-0
lines changed

DAVExplorer-latest/DAVExplorer-0.91/DAVExplorer.bat

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@echo off
2+
java -jar DAVExplorer.jar
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#! /bin/sh
2+
java -jar DAVExplorer.jar
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@echo off
2+
java -jar -DSSL=yes DAVExplorer.jar
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#! /bin/sh
2+
java -jar -DSSL=yes DAVExplorer.jar
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
Installation procedure
2+
3+
The preferred Java version to run DAV Explorer is Java 2 (JDK 1.2 and above.)
4+
DAV Explorer also runs with JDK 1.1.8 and Swing 1.1.1. However, this may
5+
restrict the capabilities of DAV Explorer.
6+
7+
Note: If not compiling from source, skip steps 1-3 and 5.
8+
If use of SSL is not required, step 4 can also be skipped.
9+
10+
1. Login to the DAV Explorer Subversion archive with any Subversion client.
11+
The Subversion archive is located at
12+
http://louvre.ics.uci.edu:8080/svn/DAVExplorer/
13+
NOTE: the archive location may change in the near future, so be sure to check
14+
the DAV Explorer download website http://www.ics.uci.edu/~webdav/download.html
15+
for any changes.
16+
17+
2. Navigate to your chosen source directory.
18+
19+
3. Retrieve all DAV Explorer source files from the DAV Explorer Subversion
20+
archive, from the trunk directory, using your favorite Subversion client tool.
21+
The command line format:
22+
svn checkout http://louvre.ics.uci.edu:8080/svn/DAVExplorer/trunk DAVExplorer
23+
24+
4. If SSL support is required, retrieve the Java Secure Socket Extensions from
25+
http://java.sun.com/products/jsse/
26+
Install the JSSE files according to the JSSE documentation.
27+
Note that from JDK 1.4 on, JSSE is included in the JDK.
28+
Make sure that the appropriate X.509 certificates are installed at the
29+
Webserver.
30+
31+
5. Compile all Java source files with Java 2 by running make in the dav_explorer
32+
directory directly below your source directory. This also creates a
33+
DAVExplorer.jar file in the dav_explorer directory.
34+
The DAV Explorer sources do not compile without the JSSE files present.
35+
Note that the Makefile does not work under MS Windows. Instead, running the
36+
make.bat file in the dav_explorer directory achieves the same result.
37+
Under MS Windows, you can also run the DAVjar.bat file from the dav_explorer
38+
directory to create the DAVExplorer.jar file.
39+
Under Unix, the DAVjar.sh shell script serves the same purpose.
40+
We also provide an Eclipse workspace file in the source distribution.
41+
42+
6. Run the DAV Explorer.
43+
Under MS Windows, run the DAVExplorer.bat file from the dav_explorer directory.
44+
Under Unix, run the DAVExplorer.sh shell script from the dav_explorer directory.
45+
You can also run DAVExplorer by using the command 'java -jar DAVExplorer.jar'.
46+
For SSL support, run DAVExplorerSSL.bat or DAVExplorerSSL.sh, respectively.
47+
Alternatively, the command 'java -jar -Dssl=true DAVExplorer.jar' can be used.
48+
SSL support can also be selected from the Edit menu.
49+
Under MacOS 9, you can use the provided MRJ wrapper DAVExplorer.bin.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
Copyright (c) 1999-2005 Regents of the University of California.
2+
All rights reserved.
3+
4+
This software was developed at the University of California, Irvine.
5+
6+
Redistribution and use in source and binary forms, with or without
7+
modification, are permitted provided that the following conditions
8+
are met:
9+
10+
1. Redistributions of source code must retain the above copyright
11+
notice, this list of conditions and the following disclaimer.
12+
13+
2. Redistributions in binary form must reproduce the above copyright
14+
notice, this list of conditions and the following disclaimer in
15+
the documentation and/or other materials provided with the
16+
distribution.
17+
18+
3. All advertising materials mentioning features or use of this
19+
software must display the following acknowledgment:
20+
"This product includes software developed at the University of
21+
California, Irvine for use in the DAV Explorer project
22+
(http://www.ics.uci.edu/~webdav/)."
23+
24+
4. The name of the University may not be used to endorse or promote
25+
products derived from this software without specific prior written
26+
permission.
27+
28+
5. Products derived from this software may not be called "DAV Explorer"
29+
nor may "DAV Explorer" appear in their names without prior written
30+
permission. For written permission, please contact the DAV Explorer
31+
Group at UCI at [email protected].
32+
33+
6. Redistributions of any form whatsoever must retain the following
34+
acknowledgment:
35+
"This product includes software developed at the University of
36+
California, Irvine for use in the DAV Explorer project
37+
(http://www.ics.uci.edu/~webdav/)."
38+
39+
THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
40+
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
41+
WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
42+
IN NO EVENT SHALL THE UNIVERSITY OR THE PROGRAM CONTRIBUTORS BE LIABLE
43+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
44+
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
45+
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
46+
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
47+
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
48+
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
49+
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

0 commit comments

Comments
 (0)