You are viewing a plain text version of this content. The canonical link for it is here.
Posted to droids-commits@incubator.apache.org by bc...@apache.org on 2011/02/09 12:24:21 UTC

svn commit: r1068860 - in /incubator/droids/branch/bchapuis: droids-crawler/ droids-crawler/src/site/ droids-crawler/src/site/apt/ droids-crawler/src/site/resources/ droids-crawler/src/site/resources/css/ droids-crawler/src/site/resources/images/ droid...

Author: bchapuis
Date: Wed Feb  9 12:24:20 2011
New Revision: 1068860

URL: http://svn.apache.org/viewvc?rev=1068860&view=rev
Log:
Added the sources for the droids-crawler and droids-walker modules.

Added:
    incubator/droids/branch/bchapuis/droids-crawler/pom.xml   (with props)
    incubator/droids/branch/bchapuis/droids-crawler/src/site/
    incubator/droids/branch/bchapuis/droids-crawler/src/site/apt/
    incubator/droids/branch/bchapuis/droids-crawler/src/site/apt/index.apt
    incubator/droids/branch/bchapuis/droids-crawler/src/site/resources/
    incubator/droids/branch/bchapuis/droids-crawler/src/site/resources/css/
    incubator/droids/branch/bchapuis/droids-crawler/src/site/resources/css/site.css
    incubator/droids/branch/bchapuis/droids-crawler/src/site/resources/images/
    incubator/droids/branch/bchapuis/droids-crawler/src/site/resources/images/apache.png   (with props)
    incubator/droids/branch/bchapuis/droids-crawler/src/site/resources/images/droids-logo.png   (with props)
    incubator/droids/branch/bchapuis/droids-crawler/src/site/site.xml
    incubator/droids/branch/bchapuis/droids-crawler/src/test/
    incubator/droids/branch/bchapuis/droids-crawler/src/test/java/
    incubator/droids/branch/bchapuis/droids-crawler/src/test/java/org/
    incubator/droids/branch/bchapuis/droids-crawler/src/test/java/org/apache/
    incubator/droids/branch/bchapuis/droids-crawler/src/test/java/org/apache/droids/
    incubator/droids/branch/bchapuis/droids-crawler/src/test/java/org/apache/droids/crawler/
    incubator/droids/branch/bchapuis/droids-crawler/src/test/resources/
    incubator/droids/branch/bchapuis/droids-walker/src/site/
    incubator/droids/branch/bchapuis/droids-walker/src/site/apt/
    incubator/droids/branch/bchapuis/droids-walker/src/site/apt/index.apt
    incubator/droids/branch/bchapuis/droids-walker/src/site/resources/
    incubator/droids/branch/bchapuis/droids-walker/src/site/resources/css/
    incubator/droids/branch/bchapuis/droids-walker/src/site/resources/css/site.css
    incubator/droids/branch/bchapuis/droids-walker/src/site/resources/images/
    incubator/droids/branch/bchapuis/droids-walker/src/site/resources/images/apache.png   (with props)
    incubator/droids/branch/bchapuis/droids-walker/src/site/resources/images/droids-logo.png   (with props)
    incubator/droids/branch/bchapuis/droids-walker/src/site/site.xml
    incubator/droids/branch/bchapuis/droids-walker/src/test/
    incubator/droids/branch/bchapuis/droids-walker/src/test/java/
    incubator/droids/branch/bchapuis/droids-walker/src/test/java/org/
    incubator/droids/branch/bchapuis/droids-walker/src/test/java/org/apache/
    incubator/droids/branch/bchapuis/droids-walker/src/test/java/org/apache/droids/
    incubator/droids/branch/bchapuis/droids-walker/src/test/java/org/apache/droids/walker/
    incubator/droids/branch/bchapuis/droids-walker/src/test/resources/

Added: incubator/droids/branch/bchapuis/droids-crawler/pom.xml
URL: http://svn.apache.org/viewvc/incubator/droids/branch/bchapuis/droids-crawler/pom.xml?rev=1068860&view=auto
==============================================================================
--- incubator/droids/branch/bchapuis/droids-crawler/pom.xml (added)
+++ incubator/droids/branch/bchapuis/droids-crawler/pom.xml Wed Feb  9 12:24:20 2011
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   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.
+-->
+<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>
+  <parent>
+    <artifactId>droids</artifactId>
+    <groupId>org.apache.droids</groupId>
+    <version>0.1-incubating-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+  <artifactId>droids-crawler</artifactId>
+  <name>Droids Crawler</name>
+  <inceptionYear>2007</inceptionYear>
+  <description>
+   Droids Crawler
+  </description>
+  <packaging>jar</packaging>  
+
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.droids</groupId>
+      <artifactId>droids-core</artifactId>
+      <version>${pom.version}</version>
+    </dependency>
+  </dependencies>
+
+</project>

Propchange: incubator/droids/branch/bchapuis/droids-crawler/pom.xml
------------------------------------------------------------------------------
    svn:executable = *

Added: incubator/droids/branch/bchapuis/droids-crawler/src/site/apt/index.apt
URL: http://svn.apache.org/viewvc/incubator/droids/branch/bchapuis/droids-crawler/src/site/apt/index.apt?rev=1068860&view=auto
==============================================================================
    (empty)

Added: incubator/droids/branch/bchapuis/droids-crawler/src/site/resources/css/site.css
URL: http://svn.apache.org/viewvc/incubator/droids/branch/bchapuis/droids-crawler/src/site/resources/css/site.css?rev=1068860&view=auto
==============================================================================
--- incubator/droids/branch/bchapuis/droids-crawler/src/site/resources/css/site.css (added)
+++ incubator/droids/branch/bchapuis/droids-crawler/src/site/resources/css/site.css Wed Feb  9 12:24:20 2011
@@ -0,0 +1,13 @@
+#banner {
+  height: 121px;
+  background-image: none;
+}
+
+#navcolumn h5 {
+  color: #01709c;
+}
+
+#bannerRight {
+  margin-top: 40px;
+  margin-right: 10px;
+}
\ No newline at end of file

Added: incubator/droids/branch/bchapuis/droids-crawler/src/site/resources/images/apache.png
URL: http://svn.apache.org/viewvc/incubator/droids/branch/bchapuis/droids-crawler/src/site/resources/images/apache.png?rev=1068860&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/droids/branch/bchapuis/droids-crawler/src/site/resources/images/apache.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/droids/branch/bchapuis/droids-crawler/src/site/resources/images/droids-logo.png
URL: http://svn.apache.org/viewvc/incubator/droids/branch/bchapuis/droids-crawler/src/site/resources/images/droids-logo.png?rev=1068860&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/droids/branch/bchapuis/droids-crawler/src/site/resources/images/droids-logo.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/droids/branch/bchapuis/droids-crawler/src/site/site.xml
URL: http://svn.apache.org/viewvc/incubator/droids/branch/bchapuis/droids-crawler/src/site/site.xml?rev=1068860&view=auto
==============================================================================
--- incubator/droids/branch/bchapuis/droids-crawler/src/site/site.xml (added)
+++ incubator/droids/branch/bchapuis/droids-crawler/src/site/site.xml Wed Feb  9 12:24:20 2011
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project name="Apache Droids">
+    <skin>
+        <groupId>org.apache.maven.skins</groupId>
+        <artifactId>maven-stylus-skin</artifactId>
+        <version>1.2</version>
+    </skin>
+    <bannerLeft>
+        <name>Maven</name>
+        <src>/images/droids-logo.png</src>
+        <href>http://incubator.apache.org/droids/</href>
+    </bannerLeft>
+    <bannerRight>
+        <name>Maven</name>
+        <src>/images/apache.png</src>
+        <href>http://www.apache.org/</href>
+    </bannerRight>
+    <body>
+        <links>
+            <item name="Apache" href="http://incubator.apache.org/" />
+            <item name="Apache Incubator" href="index.html" />
+        </links>
+        <menu ref="parent" />
+        <menu name="About">
+            <item name="Overview" href="/index.html" />
+            <item name="Features" href="/features.html" />
+            <item name="Who we are" href="/woweare.html" />
+            <item name="License" href="http://www.apache.org/licenses" />
+        </menu>
+        <menu name="Documentation">
+            <item name="Install" href="/install.html" />
+            <item name="Getting started" href="/getting-started.html" />
+            <item name="Wiki" href="https://cwiki.apache.org/confluence/display/DROIDS/Index" />
+        </menu>
+        <menu name="Resources">
+            
+            <item name="Issue Tracking" href="/issue-tracking.html" />
+            <item name="Mailing Lists" href="/mail-lists.html" />
+            <item name="Source Repository" href="/source-repository.html" />
+            <item name="Javadoc" href="/apidocs/index.html" />
+            <item name="Dependencies" href="/dependencies.html" />
+        </menu>
+    </body>
+</project>
\ No newline at end of file

Added: incubator/droids/branch/bchapuis/droids-walker/src/site/apt/index.apt
URL: http://svn.apache.org/viewvc/incubator/droids/branch/bchapuis/droids-walker/src/site/apt/index.apt?rev=1068860&view=auto
==============================================================================
    (empty)

Added: incubator/droids/branch/bchapuis/droids-walker/src/site/resources/css/site.css
URL: http://svn.apache.org/viewvc/incubator/droids/branch/bchapuis/droids-walker/src/site/resources/css/site.css?rev=1068860&view=auto
==============================================================================
--- incubator/droids/branch/bchapuis/droids-walker/src/site/resources/css/site.css (added)
+++ incubator/droids/branch/bchapuis/droids-walker/src/site/resources/css/site.css Wed Feb  9 12:24:20 2011
@@ -0,0 +1,13 @@
+#banner {
+  height: 121px;
+  background-image: none;
+}
+
+#navcolumn h5 {
+  color: #01709c;
+}
+
+#bannerRight {
+  margin-top: 40px;
+  margin-right: 10px;
+}
\ No newline at end of file

Added: incubator/droids/branch/bchapuis/droids-walker/src/site/resources/images/apache.png
URL: http://svn.apache.org/viewvc/incubator/droids/branch/bchapuis/droids-walker/src/site/resources/images/apache.png?rev=1068860&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/droids/branch/bchapuis/droids-walker/src/site/resources/images/apache.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/droids/branch/bchapuis/droids-walker/src/site/resources/images/droids-logo.png
URL: http://svn.apache.org/viewvc/incubator/droids/branch/bchapuis/droids-walker/src/site/resources/images/droids-logo.png?rev=1068860&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/droids/branch/bchapuis/droids-walker/src/site/resources/images/droids-logo.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/droids/branch/bchapuis/droids-walker/src/site/site.xml
URL: http://svn.apache.org/viewvc/incubator/droids/branch/bchapuis/droids-walker/src/site/site.xml?rev=1068860&view=auto
==============================================================================
--- incubator/droids/branch/bchapuis/droids-walker/src/site/site.xml (added)
+++ incubator/droids/branch/bchapuis/droids-walker/src/site/site.xml Wed Feb  9 12:24:20 2011
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project name="Apache Droids">
+    <skin>
+        <groupId>org.apache.maven.skins</groupId>
+        <artifactId>maven-stylus-skin</artifactId>
+        <version>1.2</version>
+    </skin>
+    <bannerLeft>
+        <name>Maven</name>
+        <src>/images/droids-logo.png</src>
+        <href>http://incubator.apache.org/droids/</href>
+    </bannerLeft>
+    <bannerRight>
+        <name>Maven</name>
+        <src>/images/apache.png</src>
+        <href>http://www.apache.org/</href>
+    </bannerRight>
+    <body>
+        <links>
+            <item name="Apache" href="http://incubator.apache.org/" />
+            <item name="Apache Incubator" href="index.html" />
+        </links>
+        <menu ref="parent" />
+        <menu name="About">
+            <item name="Overview" href="/index.html" />
+            <item name="Features" href="/features.html" />
+            <item name="Who we are" href="/woweare.html" />
+            <item name="License" href="http://www.apache.org/licenses" />
+        </menu>
+        <menu name="Documentation">
+            <item name="Install" href="/install.html" />
+            <item name="Getting started" href="/getting-started.html" />
+            <item name="Wiki" href="https://cwiki.apache.org/confluence/display/DROIDS/Index" />
+        </menu>
+        <menu name="Resources">
+            
+            <item name="Issue Tracking" href="/issue-tracking.html" />
+            <item name="Mailing Lists" href="/mail-lists.html" />
+            <item name="Source Repository" href="/source-repository.html" />
+            <item name="Javadoc" href="/apidocs/index.html" />
+            <item name="Dependencies" href="/dependencies.html" />
+        </menu>
+    </body>
+</project>
\ No newline at end of file