Modified: incubator/droids/branches/0.2.x-cleanup/droids-walker/pom.xml URL: http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-walker/pom.xml?rev=1418399&r1=1418398&r2=1418399&view=diff ============================================================================== --- incubator/droids/branches/0.2.x-cleanup/droids-walker/pom.xml (original) +++ incubator/droids/branches/0.2.x-cleanup/droids-walker/pom.xml Fri Dec 7 17:12:35 2012 @@ -2,24 +2,33 @@ <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> + <packaging>jar</packaging> + <parent> <groupId>org.apache.droids</groupId> <artifactId>droids</artifactId> <version>0.3.0-incubating-SNAPSHOT</version> </parent> - <groupId>org.apache.droids</groupId> + <artifactId>droids-walker</artifactId> - <version>0.3.0-incubating-SNAPSHOT</version> <name>droids-walker</name> - <url>http://maven.apache.org</url> - <properties> - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - </properties> + <dependencies> <dependency> + <groupId>org.apache.droids</groupId> + <artifactId>droids-core</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> - <version>3.8.1</version> + <version>${junit.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> + <version>1.0.7</version> <scope>test</scope> </dependency> </dependencies>
Modified: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/protocol/file/FileProtocol.java URL: http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/protocol/file/FileProtocol.java?rev=1418399&r1=1417006&r2=1418399&view=diff ============================================================================== --- incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/protocol/file/FileProtocol.java (original) +++ incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/protocol/file/FileProtocol.java Fri Dec 7 17:12:35 2012 @@ -24,7 +24,7 @@ import java.net.URI; import org.apache.droids.core.Protocol; import org.apache.droids.core.Task; -import org.apache.droids.robot.walker.FileTask; +import org.apache.droids.walker.FileTask; /** * @@ -36,7 +36,12 @@ import org.apache.droids.robot.walker.Fi */ public class FileProtocol implements Protocol { - @Override + @Override + public String scheme() { + return "file://"; + } + + @Override public boolean isAllowed(URI uri) { File file = new File(extractLocation(uri)); return file.canRead(); Modified: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/walker/FileTask.java URL: http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/walker/FileTask.java?rev=1418399&r1=1417006&r2=1418399&view=diff ============================================================================== --- incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/walker/FileTask.java (original) +++ incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/walker/FileTask.java Fri Dec 7 17:12:35 2012 @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.droids.robot.walker; +package org.apache.droids.walker; import java.io.BufferedInputStream; import java.io.File; @@ -24,28 +24,37 @@ import java.io.InputStream; import java.net.URI; import java.util.Date; +import org.apache.droids.core.ContentEntity; import org.apache.droids.core.Task; public class FileTask implements Task { private static final long serialVersionUID = 122177113684842951L; + private ContentEntity contentEntity; private final Date started; private final int depth; private final File file; private boolean aborted = false; - public FileTask(File file) { + public FileTask(File file) { this.file = file; this.depth = 0; this.started = new Date(); + this.contentEntity = new ContentEntity(); } public FileTask(File file, int depth) { this.file = file; this.depth = depth; this.started = new Date(); + this.contentEntity = new ContentEntity(); } + @Override + public ContentEntity getContentEntity() { + return contentEntity; + } + @Override public URI getURI() { return file.toURI(); @@ -79,9 +88,4 @@ public class FileTask implements Task { public boolean isAborted() { return aborted; } - - @Override - public InputStream getContent() throws FileNotFoundException { - return new BufferedInputStream(new FileInputStream(file)); - } } \ No newline at end of file Modified: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/walker/FileWorker.java URL: http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/walker/FileWorker.java?rev=1418399&r1=1417006&r2=1418399&view=diff ============================================================================== --- incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/walker/FileWorker.java (original) +++ incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/walker/FileWorker.java Fri Dec 7 17:12:35 2012 @@ -14,43 +14,38 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.droids.robot.walker; +package org.apache.droids.walker; import java.io.File; -import java.util.Queue; - import org.apache.droids.core.Worker; import org.apache.droids.exception.InvalidTaskException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -public class FileWorker implements Worker<FileTask> -{ +public class FileWorker implements Worker<FileTask> { - private final Logger log = LoggerFactory.getLogger(FileWorker.class); - final Queue<FileTask> queue; + private final Logger logger = LoggerFactory.getLogger(FileWorker.class); + final WalkingDroid droid; - public FileWorker(Queue<FileTask> queue) - { - this.queue = queue; - } - - @Override - public void execute(FileTask task) throws InvalidTaskException - { - File file = task.getFile(); - if (file.isDirectory()) { - File[] files = file.listFiles(); - if (files != null) { - for (File f : files) { - queue.add(new FileTask(f, task.getDepth() + 1)); - } - } - } else { - if (log.isInfoEnabled()) { - log.info("FILE: " + file.getAbsolutePath()); - } - } - } + public FileWorker(WalkingDroid droid) { + this.droid = droid; + } + + @Override + public void execute(FileTask task) throws InvalidTaskException { + File file = task.getFile(); + if (file.isDirectory()) { + File[] files = file.listFiles(); + if (files != null) { + for (File f : files) { + droid.add(new FileTask(f, task.getDepth() + 1)); + } + } + } else { + if (logger.isInfoEnabled()) { + logger.info("FILE: " + file.getAbsolutePath()); + } + } + } } Modified: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/walker/SimpleWalkingDroid.java URL: http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/walker/SimpleWalkingDroid.java?rev=1418399&r1=1417006&r2=1418399&view=diff ============================================================================== --- incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/walker/SimpleWalkingDroid.java (original) +++ incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/walker/SimpleWalkingDroid.java Fri Dec 7 17:12:35 2012 @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.droids.robot.walker; +package org.apache.droids.walker; import java.io.File; import java.util.ArrayList; @@ -29,61 +29,41 @@ import org.apache.droids.core.AbstractDr import org.apache.droids.core.MultiThreadedTaskMaster; import org.apache.droids.core.TaskMaster; import org.apache.droids.exception.InvalidTaskException; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; -public class SimpleWalkingDroid extends AbstractDroid<FileTask> implements WalkingDroid -{ - - private Collection<File> initialFiles; - - public SimpleWalkingDroid(Queue<FileTask> queue, TaskMaster<FileTask> taskMaster) - { - super(queue, taskMaster); - } - - @Override - public void setInitialFiles(Collection<File> initialFiles) - { - this.initialFiles = initialFiles; - } - - @Override - public void init() throws InvalidTaskException - { - Preconditions.checkState(initialFiles != null, "FileSystemWalker requires at least one starting file"); - Preconditions.checkState(!initialFiles.isEmpty(), "FileSystemWalker requires at least one starting file"); - for (File file : initialFiles) { - queue.add(new FileTask(file, 0)); - } - } - - @Override - public void finished() - { - log.info("FINISHED!!!"); - } - - @Override - public FileWorker getNewWorker() - { - return new FileWorker(queue); - } - - //------------------------------------------------------------------ - //------------------------------------------------------------------ - public static void main(String[] args) throws Exception - { - MultiThreadedTaskMaster<FileTask> taskMaster = new MultiThreadedTaskMaster<FileTask>(); - taskMaster.setPoolSize(3); - - Queue<FileTask> queue = new LinkedList<FileTask>(); - - Collection<File> files = new ArrayList<File>(); - files.add(new File(args[0])); //APACHE/droids/src" ) ); - - SimpleWalkingDroid simple = new SimpleWalkingDroid(queue, taskMaster); - simple.setInitialFiles(files); - simple.init(); - simple.start(); // TODO? perhaps start internally calls init()? - simple.getTaskMaster().awaitTermination(0, TimeUnit.SECONDS); - } +public class SimpleWalkingDroid extends AbstractDroid<FileTask> implements WalkingDroid { + private Collection<File> initialFiles; + private static Logger logger = LoggerFactory.getLogger(SimpleWalkingDroid.class); + + public SimpleWalkingDroid(Queue<FileTask> queue, TaskMaster<FileTask> taskMaster) { + super(queue, taskMaster); + } + + @Override + public void setInitialFiles(Collection<File> initialFiles) { + this.initialFiles = initialFiles; + } + + @Override + public void start() { + Preconditions.checkState(initialFiles != null, + "FileSystemWalker requires at least one starting file"); + Preconditions.checkState(!initialFiles.isEmpty(), + "FileSystemWalker requires at least one starting file"); + for (File file : initialFiles) { + queue.add(new FileTask(file, 0)); + } + super.start(); + } + + @Override + public void finished() { + logger.info("FINISHED!!!"); + } + + @Override + public FileWorker getNewWorker() { + return new FileWorker(this); + } } Modified: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/walker/WalkingDroid.java URL: http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/walker/WalkingDroid.java?rev=1418399&r1=1417006&r2=1418399&view=diff ============================================================================== --- incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/walker/WalkingDroid.java (original) +++ incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/walker/WalkingDroid.java Fri Dec 7 17:12:35 2012 @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.droids.robot.walker; +package org.apache.droids.walker; import java.io.File; import java.util.Collection; Added: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/java/org/apache/droids/walker/WalkingDroidTest.java URL: http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/java/org/apache/droids/walker/WalkingDroidTest.java?rev=1418399&view=auto ============================================================================== --- incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/java/org/apache/droids/walker/WalkingDroidTest.java (added) +++ incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/java/org/apache/droids/walker/WalkingDroidTest.java Fri Dec 7 17:12:35 2012 @@ -0,0 +1,32 @@ +package org.apache.droids.walker; + +import java.io.File; +import java.util.Collection; +import java.util.LinkedList; +import java.util.Queue; + +import org.apache.droids.core.SequentialTaskMaster; +import org.apache.droids.core.TaskMaster; +import org.apache.droids.exception.InvalidTaskException; +import org.junit.Test; + +public class WalkingDroidTest { + + @Test + public void testWalkingDroid() throws InvalidTaskException { + Queue<FileTask> queue = new LinkedList<FileTask>(); + TaskMaster<FileTask> taskMaster = new SequentialTaskMaster<FileTask>(); + + Collection<File> initialFiles = new LinkedList<File>(); + try { + initialFiles.add(new File(this.getClass().getClassLoader().getResource("docs").getFile())); + } catch (NullPointerException npe) { + npe.printStackTrace(); + } + SimpleWalkingDroid droid = new SimpleWalkingDroid(queue, taskMaster); + droid.setInitialFiles(initialFiles); + + droid.start(); + + } +} Propchange: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/java/org/apache/droids/walker/WalkingDroidTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/java/org/apache/droids/walker/WalkingDroidTest.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/java/org/apache/droids/walker/WalkingDroidTest.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/L2R_Cloud/aceu-2012-apache-cloudStack-scalability.odp URL: http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/L2R_Cloud/aceu-2012-apache-cloudStack-scalability.odp?rev=1418399&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/L2R_Cloud/aceu-2012-apache-cloudStack-scalability.odp ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/L2R_Cloud/aceu-2012-building-cross-platform-hybrid-applications-using-AMQP-1_0-with-apache-qpid.pdf URL: http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/L2R_Cloud/aceu-2012-building-cross-platform-hybrid-applications-using-AMQP-1_0-with-apache-qpid.pdf?rev=1418399&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/L2R_Cloud/aceu-2012-building-cross-platform-hybrid-applications-using-AMQP-1_0-with-apache-qpid.pdf ------------------------------------------------------------------------------ svn:mime-type = application/pdf Added: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/L2R_Cloud/aceu-2012-building-cross-platform-hybrid-applications-using-AMQP-1_0-with-apache-qpid.pptx URL: http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/L2R_Cloud/aceu-2012-building-cross-platform-hybrid-applications-using-AMQP-1_0-with-apache-qpid.pptx?rev=1418399&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/L2R_Cloud/aceu-2012-building-cross-platform-hybrid-applications-using-AMQP-1_0-with-apache-qpid.pptx ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/L2R_Cloud/aceu-2012-getting-started-with-AMQP-1_0-using-apache-qpid.pdf URL: http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/L2R_Cloud/aceu-2012-getting-started-with-AMQP-1_0-using-apache-qpid.pdf?rev=1418399&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/L2R_Cloud/aceu-2012-getting-started-with-AMQP-1_0-using-apache-qpid.pdf ------------------------------------------------------------------------------ svn:mime-type = application/pdf Added: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/L2R_Cloud/aceu-2012-integration-in-the-cloud-IPaaS-with-fuse-technology.pdf URL: http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/L2R_Cloud/aceu-2012-integration-in-the-cloud-IPaaS-with-fuse-technology.pdf?rev=1418399&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/L2R_Cloud/aceu-2012-integration-in-the-cloud-IPaaS-with-fuse-technology.pdf ------------------------------------------------------------------------------ svn:mime-type = application/pdf Added: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/L2R_Cloud/aceu-2012-introduction-to-apache-cloudstack.odp URL: http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/L2R_Cloud/aceu-2012-introduction-to-apache-cloudstack.odp?rev=1418399&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/L2R_Cloud/aceu-2012-introduction-to-apache-cloudstack.odp ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/L2R_Cloud/aceu-2012-what-is-new-in-cloudstack-4.0.odp URL: http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/L2R_Cloud/aceu-2012-what-is-new-in-cloudstack-4.0.odp?rev=1418399&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/L2R_Cloud/aceu-2012-what-is-new-in-cloudstack-4.0.odp ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/PR-Lucene/aceu-2012-elastic-search-in-production_lessons-learned.pdf URL: http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/PR-Lucene/aceu-2012-elastic-search-in-production_lessons-learned.pdf?rev=1418399&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/PR-Lucene/aceu-2012-elastic-search-in-production_lessons-learned.pdf ------------------------------------------------------------------------------ svn:mime-type = application/pdf Added: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/PR-Lucene/aceu-2012-fundamentals-of-information-retrieval-illustration-with-apache-lucene.pptx URL: http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/PR-Lucene/aceu-2012-fundamentals-of-information-retrieval-illustration-with-apache-lucene.pptx?rev=1418399&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/PR-Lucene/aceu-2012-fundamentals-of-information-retrieval-illustration-with-apache-lucene.pptx ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/PR-Lucene/aceu-2012-lucene-4-performance-tuning.pdf URL: http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/PR-Lucene/aceu-2012-lucene-4-performance-tuning.pdf?rev=1418399&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/PR-Lucene/aceu-2012-lucene-4-performance-tuning.pdf ------------------------------------------------------------------------------ svn:mime-type = application/pdf Added: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/PR-Lucene/aceu-2012-query-parsing-tips-and-tricks.pdf URL: http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/PR-Lucene/aceu-2012-query-parsing-tips-and-tricks.pdf?rev=1418399&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/PR-Lucene/aceu-2012-query-parsing-tips-and-tricks.pdf ------------------------------------------------------------------------------ svn:mime-type = application/pdf Added: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/PR-Lucene/aceu-2012-searching-relational-like-data-with-lucene.pdf URL: http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/PR-Lucene/aceu-2012-searching-relational-like-data-with-lucene.pdf?rev=1418399&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/PR-Lucene/aceu-2012-searching-relational-like-data-with-lucene.pdf ------------------------------------------------------------------------------ svn:mime-type = application/pdf Added: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/PR-Lucene/aceu-2012-solr-4-the-NoSQL-database.pdf URL: http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/PR-Lucene/aceu-2012-solr-4-the-NoSQL-database.pdf?rev=1418399&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/PR-Lucene/aceu-2012-solr-4-the-NoSQL-database.pdf ------------------------------------------------------------------------------ svn:mime-type = application/pdf Added: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/PR-Lucene/aceu-2012-solr-4-the-NoSQL-database.pptx URL: http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/PR-Lucene/aceu-2012-solr-4-the-NoSQL-database.pptx?rev=1418399&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/PR-Lucene/aceu-2012-solr-4-the-NoSQL-database.pptx ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/PR-Lucene/aceu-2012-solrcloud-round-table.pptx URL: http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/PR-Lucene/aceu-2012-solrcloud-round-table.pptx?rev=1418399&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/PR-Lucene/aceu-2012-solrcloud-round-table.pptx ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/aceu-2012-apachecon-europe-keynote.pdf URL: http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/aceu-2012-apachecon-europe-keynote.pdf?rev=1418399&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/resources/docs/aceu-2012-apachecon-europe-keynote.pdf ------------------------------------------------------------------------------ svn:mime-type = application/pdf Modified: incubator/droids/branches/0.2.x-cleanup/pom.xml URL: http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/pom.xml?rev=1418399&r1=1418398&r2=1418399&view=diff ============================================================================== --- incubator/droids/branches/0.2.x-cleanup/pom.xml (original) +++ incubator/droids/branches/0.2.x-cleanup/pom.xml Fri Dec 7 17:12:35 2012 @@ -349,10 +349,12 @@ <modules> <module>droids-core</module> <module>droids-norobots</module> - <module>droids-spring</module> + <!--module>droids-spring</module> <module>droids-solr</module> <module>droids-tika</module> <module>droids-examples</module> + <module>droids-crawler</module--> + <module>droids-walker</module> </modules> -</project> +</project> \ No newline at end of file
