From: <sta...@us...> - 2007-02-16 06:04:33
|
Revision: 1497 http://archive-access.svn.sourceforge.net/archive-access/?rev=1497&view=rev Author: stack-sf Date: 2007-02-15 22:04:32 -0800 (Thu, 15 Feb 2007) Log Message: ----------- Use new s3 URL handler. * .classpath * project.properties * project.xml Replace s3 jar with jets3t. * src/plugin/index-wax/plugin.xml * lib/archive-commons-1.11.0-200612262257.jar * src/plugin/index-wax/lib/archive-commons-1.11.0-200612262257.jar * src/plugin/index-wax/lib/archive-commons-1.11.0-200702160009.jar Update archive-commons to get the new version of s3 handler. * lib/jets3t-0.5.0.jar Added. * lib/s3-20061030.jar Removed. Modified Paths: -------------- trunk/archive-access/projects/nutchwax/.classpath trunk/archive-access/projects/nutchwax/project.properties trunk/archive-access/projects/nutchwax/project.xml trunk/archive-access/projects/nutchwax/src/plugin/index-wax/plugin.xml Added Paths: ----------- trunk/archive-access/projects/nutchwax/lib/archive-commons-1.11.0-200702160009.jar trunk/archive-access/projects/nutchwax/lib/jets3t-0.5.0.jar trunk/archive-access/projects/nutchwax/src/plugin/index-wax/lib/archive-commons-1.11.0-200702160009.jar Removed Paths: ------------- trunk/archive-access/projects/nutchwax/lib/archive-commons-1.11.0-200612262257.jar trunk/archive-access/projects/nutchwax/lib/s3-20061030.jar trunk/archive-access/projects/nutchwax/src/plugin/index-wax/lib/archive-commons-1.11.0-200612262257.jar Modified: trunk/archive-access/projects/nutchwax/.classpath =================================================================== --- trunk/archive-access/projects/nutchwax/.classpath 2007-02-15 18:14:32 UTC (rev 1496) +++ trunk/archive-access/projects/nutchwax/.classpath 2007-02-16 06:04:32 UTC (rev 1497) @@ -5,7 +5,7 @@ <classpathentry kind="lib" path="lib/commons-codec-1.3.jar"/> <classpathentry kind="lib" path="lib/commons-httpclient-3.0-rc3.jar"/> <classpathentry kind="lib" path="lib/dsi.unimi.it-1.2.0.jar"/> - <classpathentry kind="lib" path="lib/s3-20061030.jar"/> + <classpathentry kind="lib" path="lib/jets3t-0.5.0.jar"/> <classpathentry kind="lib" path="conf"/> <classpathentry kind="lib" path="build"/> <classpathentry combineaccessrules="false" kind="src" path="/heritrix"/> Deleted: trunk/archive-access/projects/nutchwax/lib/archive-commons-1.11.0-200612262257.jar =================================================================== (Binary files differ) Added: trunk/archive-access/projects/nutchwax/lib/archive-commons-1.11.0-200702160009.jar =================================================================== (Binary files differ) Property changes on: trunk/archive-access/projects/nutchwax/lib/archive-commons-1.11.0-200702160009.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/archive-access/projects/nutchwax/lib/jets3t-0.5.0.jar =================================================================== (Binary files differ) Property changes on: trunk/archive-access/projects/nutchwax/lib/jets3t-0.5.0.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Deleted: trunk/archive-access/projects/nutchwax/lib/s3-20061030.jar =================================================================== (Binary files differ) Modified: trunk/archive-access/projects/nutchwax/project.properties =================================================================== --- trunk/archive-access/projects/nutchwax/project.properties 2007-02-15 18:14:32 UTC (rev 1496) +++ trunk/archive-access/projects/nutchwax/project.properties 2007-02-16 06:04:32 UTC (rev 1497) @@ -1,5 +1,4 @@ -maven.xdoc.version=${pom.currentVersion} -maven.docs.outputencoding=UTF-8 +maven.xdoc.version=${pom.currentVersion} maven.docs.outputencoding=UTF-8 # maven.xdoc.theme=classic maven.xdoc.date=left # maven.ui.section.background=#fff @@ -25,7 +24,7 @@ maven.jar.servlet-api = ${basedir}/nutch/lib/servlet-api.jar maven.jar.commons-codec = ${basedir}/lib/commons-codec-1.3.jar maven.jar.commons-httpclient-local = ${basedir}/lib/commons-httpclient-3.0-rc3.jar -maven.jar.s3 = ${basedir}/lib/s3-20061030.jar +maven.jar.jets3t = ${basedir}/lib/jets3t-0.5.0.jar maven.jar.local-commons-logging = ${basedir}/nutch/lib/commons-logging-1.0.4.jar maven.jar.lucene = ${basedir}/nutch/lib/lucene-core-2.0.0.jar Modified: trunk/archive-access/projects/nutchwax/project.xml =================================================================== --- trunk/archive-access/projects/nutchwax/project.xml 2007-02-15 18:14:32 UTC (rev 1496) +++ trunk/archive-access/projects/nutchwax/project.xml 2007-02-16 06:04:32 UTC (rev 1497) @@ -285,20 +285,16 @@ </properties> </dependency> <dependency> - <id>s3</id> - <version>1.0.0</version> - <url>http://builds.archive.org:8080/cruisecontrol/buildresults/HEAD-heritrix</url> + <id>jets3t</id> + <version>0.5.0</version> + <url>http://jets3t.s3.amazonaws.com/</url> <properties> <war.bundle>true</war.bundle> <description> - This jar contains code for accessing S3. Its a subset of code - obtained at URL given above. Here's how I made this jar - (after changing some of the statics to have public rather than - default access): - 1131 javac com/amazon/thirdparty/Base64.java com/amazon/s3/Utils.java com/amazon/s3/AWSAuthConnection.java - 1132 jar -cf s3-20061030.jar `find com -name '*.class'` + Use same S3 lib as hadoop. </description> - <license /> + <license>Apache 2.0 + http://www.apache.org/licenses/LICENSE-2.0</license> </properties> </dependency> </dependencies> Deleted: trunk/archive-access/projects/nutchwax/src/plugin/index-wax/lib/archive-commons-1.11.0-200612262257.jar =================================================================== (Binary files differ) Added: trunk/archive-access/projects/nutchwax/src/plugin/index-wax/lib/archive-commons-1.11.0-200702160009.jar =================================================================== (Binary files differ) Property changes on: trunk/archive-access/projects/nutchwax/src/plugin/index-wax/lib/archive-commons-1.11.0-200702160009.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: trunk/archive-access/projects/nutchwax/src/plugin/index-wax/plugin.xml =================================================================== --- trunk/archive-access/projects/nutchwax/src/plugin/index-wax/plugin.xml 2007-02-15 18:14:32 UTC (rev 1496) +++ trunk/archive-access/projects/nutchwax/src/plugin/index-wax/plugin.xml 2007-02-16 06:04:32 UTC (rev 1497) @@ -12,7 +12,7 @@ <!--Alternative is to change the nutch script so that it includes libs from other than its local directory. Without that, need to have lib local to plugin.--> - <library name="archive-commons-1.11.0-200612262257.jar" /> + <library name="archive-commons-1.11.0-200702160009.jar" /> </runtime> <extension id="org.archive.access.nutch.indexer" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |