From: <sta...@us...> - 2007-03-01 01:11:36
|
Revision: 1529 http://archive-access.svn.sourceforge.net/archive-access/?rev=1529&view=rev Author: stack-sf Date: 2007-02-28 17:11:34 -0800 (Wed, 28 Feb 2007) Log Message: ----------- m2 machinations. Added initial pom.xml. Also added src/site and src/site/main/resources. The latter is duplicate of src/resources for the moment so both m2 and m1 continue to build. Added Paths: ----------- trunk/archive-access/projects/wayback/pom.xml trunk/archive-access/projects/wayback/src/main/ trunk/archive-access/projects/wayback/src/main/resources/ trunk/archive-access/projects/wayback/src/main/resources/WaybackUI.properties trunk/archive-access/projects/wayback/src/main/resources/WaybackUI_fr_CA.properties trunk/archive-access/projects/wayback/src/site/ trunk/archive-access/projects/wayback/src/site/resources/ trunk/archive-access/projects/wayback/src/site/resources/css/ trunk/archive-access/projects/wayback/src/site/resources/images/ trunk/archive-access/projects/wayback/src/site/resources/images/ia_logo.gif trunk/archive-access/projects/wayback/src/site/site.xml Added: trunk/archive-access/projects/wayback/pom.xml =================================================================== --- trunk/archive-access/projects/wayback/pom.xml (rev 0) +++ trunk/archive-access/projects/wayback/pom.xml 2007-03-01 01:11:34 UTC (rev 1529) @@ -0,0 +1,226 @@ +<?xml version="1.0"?> +<!-- + POM reference: http://maven.apache.org/pom.html + + List of the better articles on maven: + + http://www.javaworld.com/javaworld/jw-05-2006/jw-0529-maven.html + http://www.javaworld.com/javaworld/jw-02-2006/jw-0227-maven_p.html + + URLs on converting from 1.0 to 2.0 maven (not much good generally): + + http://wiki.osafoundation.org/bin/view/Journal/Maven2Upgrade + http://maven.apache.org/guides/mini/guide-m1-m2.html + --> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + <groupId>org.archive</groupId> + <artifactId>wayback</artifactId> + <version>0.9.0-SNAPSHOT</version> + <packaging>war</packaging> + <name>Wayback</name> + <description>The wayback project is an open source implementation of the + Internet Archive's Wayback Machine. + </description> + <url>http://archive-access.sourceforge.net/projects/wayback/</url> + <inceptionYear>2005</inceptionYear> + <licenses> + <license> + <name>GNU LESSER GENERAL PUBLIC LICENSE</name> + <url>http://www.gnu.org/licenses/lgpl.txt</url> + <distribution>repo</distribution> + </license> + </licenses> + <organization> + <name>Internet Archive</name> + <url>http://www.archive.org/</url> + </organization> + <issueManagement> + <system>SourceForge</system> + <url>http://sourceforge.net/tracker/?group_id=118427</url> + </issueManagement> + <ciManagement> + <system>cruisecontrol</system> + <url>http://builds.archive.org:8080/cruisecontrol/</url> + </ciManagement> + <mailingLists> + <mailingList> + <name>Archive Access ARC Tools Discussion List</name> + <subscribe> + http://lists.sourceforge.net/lists/listinfo/archive-access-discuss + </subscribe> + <unsubscribe> + http://lists.sourceforge.net/lists/listinfo/archive-access-discuss + </unsubscribe> + <post>archive-access-discuss</post> + <archive> + http://sourceforge.net/mailarchive/forum.php?forum_id=45842 + </archive> + </mailingList> + <mailingList> + <name>Archive Access ARC Tools Commits</name> + <subscribe> + https://lists.sourceforge.net/lists/listinfo/archive-access-cvs + </subscribe> + <unsubscribe> + https://lists.sourceforge.net/lists/listinfo/archive-access-cvs + </unsubscribe> + <post>archive-access-cvs</post> + <archive> + http://sourceforge.net/mailarchive/forum.php?forum=archive-access-cvs + </archive> + </mailingList> + </mailingLists> + <scm> + <connection>scm:svn:https://archive-access.svn.sourceforge.net/svnroot/archive-access/projects/nutchwax</connection> + <tag>HEAD</tag> + <url>https://archive-access.svn.sourceforge.net/svnroot/archive-access/projects/nutchwax</url> + </scm> + <prerequisites> + <maven>2.0.5</maven> + </prerequisites> + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>3.8.1</version> +<!--Needed because we have test code under src/java. + <scope>test</scope> + --> + </dependency> + + <dependency> + <groupId>org.mozilla</groupId> + <artifactId>juniversalchardet</artifactId> + <version>1.0</version> + </dependency> + <dependency> + <groupId>com.sleepycat</groupId> + <artifactId>je</artifactId> + <version>3.2.13</version> + </dependency> + <dependency> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + <version>1.0.4</version> + </dependency> + <dependency> + <groupId>commons-httpclient</groupId> + <artifactId>commons-httpclient</artifactId> + <version>3.0.1</version> + </dependency> + <dependency> + <groupId>commons-cli</groupId> + <artifactId>commons-cli</artifactId> + <version>1.0-beta-2</version> + </dependency> + <dependency> + <groupId>org.gnu</groupId> + <artifactId>libidn</artifactId> + <version>0.5.9</version> + </dependency> + <dependency> + <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> + <version>1.3</version> + </dependency> + <dependency> + <groupId>commons-pool</groupId> + <artifactId>commons-pool</artifactId> + <version>1.3</version> + </dependency> + <dependency> + <groupId>commons-collections</groupId> + <artifactId>commons-collections</artifactId> + <version>3.1</version> + </dependency> + <dependency> + <groupId>it.unimi.dsi</groupId> + <artifactId>mg4j</artifactId> + <version>1.0.1</version> + </dependency> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + <version>2.4</version> + </dependency> + <dependency> + <groupId>org.archive</groupId> + <artifactId>archive-commons</artifactId> +<!--SNAPSHOT means use latest. When archive-commons is deployed to the local repository, use: +$ JAVA_HOME=/usr/lib/j2sdk1.5-sun/ bash /0/builds/bin/maven-2.0.5/bin/mvn deploy:deploy-file \ + -Dfile=/tmp/archive-commons-1.11.0-SNAPSHOT.jar -Durl=file:/0/maven2-repository/ \ + -DgroupId=org.archive -DartifactId=archive-commons -Dpackaging=jar -Dversion=1.11.0-SNAPSHOT + --> + <version>1.11.0-SNAPSHOT</version> + </dependency> + </dependencies> + <build> + <plugins> + <plugin> + <artifactId>maven-site-plugin</artifactId> + <configuration> + <xdocDirectory> + ${basedir}/xdocs + </xdocDirectory> + </configuration> + </plugin> + <plugin> + <artifactId>maven-war-plugin</artifactId> + <configuration> + <warSourceDirectory> + ${basedir}/src/webapp + </warSourceDirectory> + </configuration> + </plugin> + </plugins> + </build> + <reporting> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <javadocDirectory> + ${basedir}/src/java + </javadocDirectory> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-project-info-reports-plugin</artifactId> + <reportSets> + <reportSet> + <reports> + <report>dependencies</report> + <report>project-team</report> + <report>mailing-list</report> + <report>cim</report> + <report>issue-tracking</report> + <report>license</report> + <report>scm</report> + </reports> + </reportSet> + </reportSets> + </plugin> + </plugins> + </reporting> + <repositories> + <repository> + <releases> + <enabled>true</enabled> + <updatePolicy>always</updatePolicy> + <checksumPolicy>warn</checksumPolicy> + </releases> + <snapshots> + <enabled>true</enabled> + <updatePolicy>never</updatePolicy> + <checksumPolicy>fail</checksumPolicy> + </snapshots> + <id>internetarchive</id> + <name>Internet Archive Maven Repository</name> + <url>http://builds.archive.org:8080/maven2</url> + <layout>default</layout> + </repository> + </repositories> +</project> Added: trunk/archive-access/projects/wayback/src/main/resources/WaybackUI.properties =================================================================== --- trunk/archive-access/projects/wayback/src/main/resources/WaybackUI.properties (rev 0) +++ trunk/archive-access/projects/wayback/src/main/resources/WaybackUI.properties 2007-03-01 01:11:34 UTC (rev 1529) @@ -0,0 +1,94 @@ +Exception.wayback.title=Wayback Exception +Exception.wayback.message=An unknown exception has occured. {0} +Exception.accessControl.title=Access Control Exception +Exception.accessControl.message=Access to this content has been blocked. {0} +Exception.badQuery.title=Bad Query Exception +Exception.badQuery.message=The request is missing information, or is not understood by this server. {0} +Exception.betterRequest.title=Better Request Exception +Exception.betterRequest.message=The request you made can be better expressed with another request. {0} +Exception.configuration.title=Configuration Exception +Exception.configuration.message=This service has not been properly configured. {0} +Exception.resourceIndexNotAvailable.title=Resource Index Not Available Exception +Exception.resourceIndexNotAvailable.message=The Resource Index required to satisfy this request is temporarily unavailable. Please try again later. +Exception.resourceNotAvailable.title=Resource Not Available +Exception.resourceNotAvailable.message=The Resource you have requested is temporarily unavailable. Please try again later. +Exception.resourceNotInArchive.title=Resource Not In Archive +Exception.resourceNotInArchive.message=The Resource you requested is not in this archive. + +UIGlobal.pageTitle=Internet Archive Wayback Machine +UIGlobal.helpLink=Help +UIGlobal.enterWebAddress=Enter Web Address: +UIGlobal.selectYearAll=All +UIGlobal.urlSearchButton=Take Me Back +UIGlobal.advancedSearchLink=Adv. Search +UIGlobal.homeLink=Home +UIGlobal.indexPage=This is the new Wayback Machine prototype. Any URL in ARC files accessible to this sevice can be searched above. +UIGlobal.helpPage=Please refer to the <a href="{0}">Wayback FAQ</a>. + +MetaReplay.title=Document Metadata +MetaReplay.HTTPHeaders=HTTP Headers +MetaReplay.originalURL=Original URL +MetaReplay.URLKey=URL Key +MetaReplay.captureDate=Capture Date +MetaReplay.captureDateDisplay={0,date,H:mm:ss MMM d, yyyy} +MetaReplay.archiveID=Archive ID +MetaReplay.MIMEType=Mime Type +MetaReplay.digest=Digest + +TimelineView.viewingVersion=Viewing version {0,number,integer} of {1,number,integer} +TimelineView.viewingVersionDate={0,date,H:mm:ss MMM d, yyyy} +TimelineView.timeRange=Time Range +TimelineView.timeRange.years=Years +TimelineView.timeRange.months=Months +TimelineView.timeRange.days=Days +TimelineView.timeRange.hours=Hours +TimelineView.timeRange.unknown=UNKNOWN +TimelineView.timeRange.auto=Auto({0}) +TimelineView.metaDataCheck=Metadata: +TimelineView.markDateTitle={0,date,H:mm:ss MMM d, yyyy} +TimelineView.firstVersionTitle=First version ({0,date,H:mm:ss MMM d, yyyy}) +TimelineView.prevVersionTitle=Previous version ({0,date,H:mm:ss MMM d, yyyy}) +TimelineView.nextVersionTitle=Next version ({0,date,H:mm:ss MMM d, yyyy}) +TimelineView.lastVersionTitle=Last version ({0,date,H:mm:ss MMM d, yyyy}) +TimelineView.frameSetTitle=WB-Timeline +TimelineView.frameSetNoFramesMessage=You need a browser that supports frames to see this, well not exactly _this_, but what would have been here if you had a frames-capable browser. + + +ReplayView.banner=Wayback - External links, forms, and search boxes may not function within this collection. Url: {0} time: {1,date,H:mm:ss MMM dd, yyyy} +ReplayView.bannerHideLink=[hide] + +PathQuery.resultsSummary={0,number,integer} results for {1} +PathQuery.resultRange=between {0,date,MMM dd, yyyy} and {1,date,MMM dd, yyyy} +PathQuery.newVersionIndicator=(new version) +PathQuery.redirectIndicator=(redirect) +PathQuery.classicResultLinkText={0,date,MMM d, yyyy} + +PathPrefixQuery.showingResults=Showing {0,number,integer} to {1,number,integer} of {2,number,integer} results for {3} +PathPrefixQuery.unchangedIndicator=unchanged + +PathQueryClassic.searchedFor=Searched for <a href="{0}"><b>{0}</b></a> +PathQueryClassic.searchResults=Search Results for {0,date,MMM d, yyyy} - {1,date,MMM d, yyyy} +PathQueryClassic.resultsSummary={0,choice,0#0 Results|1#1 Result|1<{0,number,integer} Results} + +ResultPartition.columnSummary={0,choice,0#0 pages|1#1 page|1<{0,number,integer} pages} +ResultPartitions.day={0,date,MMM d} +ResultPartitions.hour={0,date,h a} +ResultPartitions.month={0,date,MMM yyyy} +ResultPartitions.twoMonth={0,date,MMM yyyy} - {1,date,MMM yyyy} +ResultPartitions.week={0,date,MMM d} - {1,date,MMM d} +ResultPartitions.year={0,date,yyyy} + +ReplayView.javaScriptComment=\ +// FILE ARCHIVED ON {0,date,H:mm:ss MMM d, yyyy} AND RETRIEVED FROM THE\n\ +// INTERNET ARCHIVE ON {1,date,H:mm:ss MMM d, yyyy}.\n\ +// JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.\n\ +//\n\ +// ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.\n\ +// SECTION 108(a)(3)).\n\ +\n + +AdvancedSearch.url=URL: +AdvancedSearch.exactDate=Exact Date: +AdvancedSearch.earliestDate=Earliest Date: +AdvancedSearch.latestDate=Latest Date: +AdvancedSearch.submitButton=Submit Added: trunk/archive-access/projects/wayback/src/main/resources/WaybackUI_fr_CA.properties =================================================================== --- trunk/archive-access/projects/wayback/src/main/resources/WaybackUI_fr_CA.properties (rev 0) +++ trunk/archive-access/projects/wayback/src/main/resources/WaybackUI_fr_CA.properties 2007-03-01 01:11:34 UTC (rev 1529) @@ -0,0 +1,94 @@ +Exception.wayback.title=[Wayback Exception] +Exception.wayback.message=[An unknown exception has occured. {0}] +Exception.accessControl.title=[Access Control Exception] +Exception.accessControl.message=[Access to this content has been blocked. {0}] +Exception.badQuery.title=[Bad Query Exception] +Exception.badQuery.message=[The request is missing information, or is not understood by this server. {0}] +Exception.betterRequest.title=[Better Request Exception] +Exception.betterRequest.message=[The request you made can be better expressed with another request. {0}] +Exception.configuration.title=[Configuration Exception] +Exception.configuration.message=[This service has not been properly configured. {0}] +Exception.resourceIndexNotAvailable.title=[Resource Index Not Available Exception] +Exception.resourceIndexNotAvailable.message=[The Resource Index required to satisfy this request is temporarily unavailable. Please try again later.] +Exception.resourceNotAvailable.title=[Resource Not Available] +Exception.resourceNotAvailable.message=[The Resource you have requested is temporarily unavailable. Please try again later.] +Exception.resourceNotInArchive.title=[Resource Not In Archive] +Exception.resourceNotInArchive.message=[The Resource you requested is not in this archive.] + +UIGlobal.pageTitle=[Internet Archive Wayback Machine] +UIGlobal.helpLink=[Help] +UIGlobal.enterWebAddress=[Enter Web Address:] +UIGlobal.selectYearAll=[All] +UIGlobal.urlSearchButton=[Take Me Back] +UIGlobal.advancedSearchLink=[Adv. Search] +UIGlobal.homeLink=[Home] +UIGlobal.indexPage=[This is the new Wayback Machine prototype. Any URL in ARC files accessible to this sevice can be searched above.] +UIGlobal.helpPage=[Please refer to the <a href="{0}">Wayback FAQ</a>.] + +MetaReplay.title=[Document Metadata] +MetaReplay.HTTPHeaders=[HTTP Headers] +MetaReplay.originalURL=[Original URL] +MetaReplay.URLKey=[URL Key] +MetaReplay.captureDate=[Capture Date] +MetaReplay.captureDateDisplay={0,date,[H:mm:ss MMM d, yyyy]} +MetaReplay.archiveID=[Archive ID] +MetaReplay.MIMEType=[Mime Type] +MetaReplay.digest=[Digest] + +TimelineView.viewingVersion=[Viewing version {0,number,integer} of {1,number,integer}] +TimelineView.viewingVersionDate={0,date,[H:mm:ss MMM d, yyyy]} +TimelineView.timeRange=[Time Range] +TimelineView.timeRange.years=[Years] +TimelineView.timeRange.months=[Months] +TimelineView.timeRange.days=[Days] +TimelineView.timeRange.hours=[Hours] +TimelineView.timeRange.unknown=[UNKNOWN] +TimelineView.timeRange.auto=[Auto({0})] +TimelineView.metaDataCheck=[Metadata:] +TimelineView.markDateTitle={0,date,[H:mm:ss MMM d, yyyy]} +TimelineView.firstVersionTitle=[First version ({0,date,/H:mm:ss MMM d, yyyy/})] +TimelineView.prevVersionTitle=[Previous version ({0,date,/H:mm:ss MMM d, yyyy/})] +TimelineView.nextVersionTitle=[Next version ({0,date,/H:mm:ss MMM d, yyyy/})] +TimelineView.lastVersionTitle=[Last version ({0,date,/H:mm:ss MMM d, yyyy/})] +TimelineView.frameSetTitle=[WB-Timeline] +TimelineView.frameSetNoFramesMessage=[You need a browser that supports frames to see this, well not exactly _this_, but what would have been here if you had a frames-capable browser.] + + +ReplayView.banner=[Wayback - External links, forms, and search boxes may not function within this collection. Url: {0} time: {1,date,H:mm:ss MMM dd, yyyy}] +ReplayView.bannerHideLink=[hide] + +PathQuery.resultsSummary=[{0,number,integer} results for {1}] +PathQuery.resultRange=[between {0,date,MMM dd, yyyy} and {1,date,MMM dd, yyyy}] +PathQuery.newVersionIndicator=[(new version)] +PathQuery.redirectIndicator=[(redirect)] +PathQuery.classicResultLinkText={0,date,/MMM d, yyyy/} + +PathPrefixQuery.showingResults=[Showing {0,number,integer} to {1,number,integer} of {2,number,integer} results for {3}] +PathPrefixQuery.unchangedIndicator=[unchanged] + +PathQueryClassic.searchedFor=[Searched for <a href="{0}"><b>{0}</b></a>] +PathQueryClassic.searchResults=[Search Results for {0,date,MMM d, yyyy} - {1,date,MMM d, yyyy}] +PathQueryClassic.resultsSummary=[{0,choice,0#0 Results|1#1 Result|1<{0,number,integer} Results}] + +ResultPartition.columnSummary=[{0,choice,0#0 pages|1#1 page|1<{0,number,integer} pages}] +ResultPartitions.day=[{0,date,MMM d}] +ResultPartitions.hour=[{0,date,h a}] +ResultPartitions.month=[{0,date,MMM yyyy}] +ResultPartitions.twoMonth=[{0,date,MMM yyyy} - {1,date,MMM yyyy}] +ResultPartitions.week=[{0,date,MMM d} - {1,date,MMM d}] +ResultPartitions.year=[{0,date,yyyy}] + +ReplayView.javaScriptComment=\ +// FILE ARCHIVED ON {0,date,/H:mm:ss MMM d, yyyy/} AND RETRIEVED FROM THE\n\ +// INTERNET ARCHIVE ON {1,date,/H:mm:ss MMM d, yyyy/}.\n\ +// JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.\n\ +//\n\ +// ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.\n\ +// SECTION 108(a)(3)).\n\ +\n + +AdvancedSearch.url=[URL:] +AdvancedSearch.exactDate=[Exact Date:] +AdvancedSearch.earliestDate=[Earliest Date:] +AdvancedSearch.latestDate=[Latest Date:] +AdvancedSearch.submitButton=[Submit] Added: trunk/archive-access/projects/wayback/src/site/resources/images/ia_logo.gif =================================================================== (Binary files differ) Property changes on: trunk/archive-access/projects/wayback/src/site/resources/images/ia_logo.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/archive-access/projects/wayback/src/site/site.xml =================================================================== --- trunk/archive-access/projects/wayback/src/site/site.xml (rev 0) +++ trunk/archive-access/projects/wayback/src/site/site.xml 2007-03-01 01:11:34 UTC (rev 1529) @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<project name="nutchwax"> + +<!--Have nothing showing on LHS--> +<bannerLeft> + <name /> +</bannerLeft> + +<bannerRight> + <name>Wayback</name> + <src>ia_logo.gif</src> + <href >http://archive-access.sf.net/projects/wayback/</href> +</bannerRight> + +<publishDate format="dd MMM yyyy" /> + +<body> + + <links> + <item name="Sourceforge" href="http://archive-access.sf.net"/> + <item name="Heritrix" href="http://crawler.archive.org"/> + <item name="Home" href="index.html"/> + </links> + + <menu name="Overview"> + <item name="Requirements" href="requirements.html"/> + <item name="Downloads" href="downloads.html"/> + <item name="User Manual" href="user_manual.html"/> + <item name="FAQ" href="/faq.html"/> + <item name="API" href="./apidocs"/> + <item name="Browse/Submit a Bug" + href="http://sourceforge.net/tracker/?group_id=118427&atid=681137"/> + </menu> + + <!--Its not possible to change the labels used in reports, not yet anyways. + Current ones don't jibe well. Reports are headed 'Project Documentation' + but its only a subset of all documentation. + --> + ${reports} + + <!--I want to get the sourceforge image in here but not sure how. + --> + +</body> +</project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |