Added: manifoldcf/branches/CONNECTORS-676/connectors/dropbox/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/dropbox/viewConfiguration.html URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-676/connectors/dropbox/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/dropbox/viewConfiguration.html?rev=1470161&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-676/connectors/dropbox/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/dropbox/viewConfiguration.html (added) +++ manifoldcf/branches/CONNECTORS-676/connectors/dropbox/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/dropbox/viewConfiguration.html Sat Apr 20 13:19:46 2013 @@ -0,0 +1,48 @@ +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<table class="displaytable"> + <tr> + <td class="description" colspan="1"> + <nobr> + $Encoder.bodyEscape($ResourceBundle.getString('DropboxRepositoryConnector.ParametersColon')) + </nobr> + </td> + <td class="value" colspan="3"> + <nobr> + $Encoder.bodyEscape($ResourceBundle.getString('DropboxRepositoryConnector.AppKeyEquals'))$Encoder.bodyEscape($APP_KEY) + </nobr> + <br /> + <nobr> + $Encoder.bodyEscape($ResourceBundle.getString('DropboxRepositoryConnector.AppSecretEquals'))$Encoder.bodyEscape($APP_SECRET) + </nobr> + <br /> + <nobr> + $Encoder.bodyEscape($ResourceBundle.getString('DropboxRepositoryConnector.KeyEquals'))$Encoder.bodyEscape($KEY) + </nobr> + <br /> + <nobr> + $Encoder.bodyEscape($ResourceBundle.getString('DropboxRepositoryConnector.SecretEquals'))$Encoder.bodyEscape($SECRET) + </nobr> + <br /> + <nobr> + $Encoder.bodyEscape($ResourceBundle.getString('DropboxRepositoryConnector.PathEquals'))$Encoder.bodyEscape($PATH) + </nobr> + </td> + </tr> +</table> +
Added: manifoldcf/branches/CONNECTORS-676/connectors/dropbox/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/dropbox/viewSpecification.html URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-676/connectors/dropbox/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/dropbox/viewSpecification.html?rev=1470161&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-676/connectors/dropbox/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/dropbox/viewSpecification.html (added) +++ manifoldcf/branches/CONNECTORS-676/connectors/dropbox/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/dropbox/viewSpecification.html Sat Apr 20 13:19:46 2013 @@ -0,0 +1,28 @@ +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<!-- +<table class="displaytable"> + <tr> + <td class="description"> + $Encoder.bodyEscape($ResourceBundle.getString('DropboxRepositoryConnector.DROPBOXQueryColon')) + </td> + <td class="value"> + $Encoder.bodyEscape($DROPBOXQUERY) + </td> + </tr> +</table> +--> \ No newline at end of file Added: manifoldcf/branches/CONNECTORS-676/connectors/dropbox/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-676/connectors/dropbox/pom.xml?rev=1470161&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-676/connectors/dropbox/pom.xml (added) +++ manifoldcf/branches/CONNECTORS-676/connectors/dropbox/pom.xml Sat Apr 20 13:19:46 2013 @@ -0,0 +1,137 @@ +<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/xsd/maven-4.0.0.xsd"> + + <parent> + <groupId>org.apache.manifoldcf</groupId> + <artifactId>mcf-connectors</artifactId> + <version>1.2-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + + <packaging>jar</packaging> + + <developers> + <developer> + <name>Andrew Janowczyk</name> + <organization>Searchbox</organization> + <organizationUrl>http://www.searchbox.com</organizationUrl> + <url>http://www.searchbox.com</url> + </developer> + </developers> + + <artifactId>mcf-dropbox-connector</artifactId> + <name>ManifoldCF - Connectors - Dropbox</name> + + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> + + <build> + <sourceDirectory>${basedir}/connector/src/main/java</sourceDirectory> + <testSourceDirectory>${basedir}/connector/src/test/java</testSourceDirectory> + <resources> + <resource> + <directory>${basedir}/connector/src/main/resources</directory> + <includes> + <include>**/*.html</include> + <include>**/*.js</include> + </includes> + </resource> + </resources> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>native2ascii-maven-plugin</artifactId> + <version>1.0-alpha-1</version> + <configuration> + <dest>target/classes</dest> + <src>connector/src/main/native2ascii</src> + </configuration> + <executions> + <execution> + <id>native2ascii-utf8</id> + <goals> + <goal>native2ascii</goal> + </goals> + <configuration> + <encoding>UTF8</encoding> + <includes>**/*.properties</includes> + </configuration> + </execution> + </executions> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <excludes> + <exclude>**/*Postgresql*.java</exclude> + <exclude>**/*MySQL*.java</exclude> + </excludes> + <forkMode>always</forkMode> + <workingDirectory>target/test-output</workingDirectory> + </configuration> + </plugin> + + </plugins> + </build> + + + + + <dependencies> + <dependency> + <groupId>org.apache.manifoldcf</groupId> + <artifactId>mcf-core</artifactId> + <version>1.1.1</version> + </dependency> + <dependency> + <groupId>org.apache.manifoldcf</groupId> + <artifactId>mcf-pull-agent</artifactId> + <version>1.1.1</version> + </dependency> + <dependency> + <groupId>org.apache.manifoldcf</groupId> + <artifactId>mcf-agents</artifactId> + <version>1.1.1</version> + </dependency> + <dependency> + <groupId>org.apache.manifoldcf</groupId> + <artifactId>mcf-ui-core</artifactId> + <version>1.1.1</version> + </dependency> + <dependency> + <groupId>commons-lang</groupId> + <artifactId>commons-lang</artifactId> + <version>2.6</version> + <type>jar</type> + </dependency> + <dependency> + <groupId>com.dropbox</groupId> + <artifactId>dropbox-java-sdk</artifactId> + <version>1.5.3</version> + <type>jar</type> + </dependency> + + <dependency> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + <version>1.1.1</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <version>1.2.16</version> + <type>jar</type> + </dependency> + <dependency> + <groupId>com.googlecode.json-simple</groupId> + <artifactId>json-simple</artifactId> + <version>1.1</version> + <type>jar</type> + </dependency> + </dependencies> +</project> Modified: manifoldcf/branches/CONNECTORS-676/connectors/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-676/connectors/pom.xml?rev=1470161&r1=1470160&r2=1470161&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-676/connectors/pom.xml (original) +++ manifoldcf/branches/CONNECTORS-676/connectors/pom.xml Sat Apr 20 13:19:46 2013 @@ -50,6 +50,7 @@ <module>wiki</module> <module>alfresco</module> <module>elasticsearch</module> + <module>dropbox</module> </modules> </project>
