You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@devicemap.apache.org by wk...@apache.org on 2014/07/30 19:45:56 UTC

svn commit: r1614722 - in /incubator/devicemap/trunk/examples: ddr-filter/ ddr-filter/src/ ddr-filter/src/main/ ddr-filter/src/main/resources/ ddr-filter/src/main/webapp/ ddr-filter/src/main/webapp/WEB-INF/ ddr-service/src/main/webapp/

Author: wkeil
Date: Wed Jul 30 17:45:55 2014
New Revision: 1614722

URL: http://svn.apache.org/r1614722
Log:
DMAP-35: Refactor Simple DDR 
Adding simple DDR filter example
Task-Url: https://issues.apache.org/jira/browse/DMAP-35

Added:
    incubator/devicemap/trunk/examples/ddr-filter/   (with props)
    incubator/devicemap/trunk/examples/ddr-filter/pom.xml
    incubator/devicemap/trunk/examples/ddr-filter/src/
    incubator/devicemap/trunk/examples/ddr-filter/src/main/
    incubator/devicemap/trunk/examples/ddr-filter/src/main/resources/
    incubator/devicemap/trunk/examples/ddr-filter/src/main/webapp/
    incubator/devicemap/trunk/examples/ddr-filter/src/main/webapp/WEB-INF/
    incubator/devicemap/trunk/examples/ddr-filter/src/main/webapp/WEB-INF/web.xml
    incubator/devicemap/trunk/examples/ddr-filter/src/main/webapp/index.jsp
Modified:
    incubator/devicemap/trunk/examples/ddr-service/src/main/webapp/index.jsp

Propchange: incubator/devicemap/trunk/examples/ddr-filter/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed Jul 30 17:45:55 2014
@@ -0,0 +1,4 @@
+.classpath
+.project
+.settings
+target

Added: incubator/devicemap/trunk/examples/ddr-filter/pom.xml
URL: http://svn.apache.org/viewvc/incubator/devicemap/trunk/examples/ddr-filter/pom.xml?rev=1614722&view=auto
==============================================================================
--- incubator/devicemap/trunk/examples/ddr-filter/pom.xml (added)
+++ incubator/devicemap/trunk/examples/ddr-filter/pom.xml Wed Jul 30 17:45:55 2014
@@ -0,0 +1,21 @@
+<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.apache.devicemap.examples</groupId>
+  <artifactId>dmap-ddr-filter</artifactId>
+  <packaging>war</packaging>
+  <version>0.0.1-SNAPSHOT</version>
+  <name>dmap-ddr-filter Maven Webapp</name>
+  <url>http://maven.apache.org</url>
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <finalName>dmap-ddr-filter</finalName>
+  </build>
+</project>

Added: incubator/devicemap/trunk/examples/ddr-filter/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/incubator/devicemap/trunk/examples/ddr-filter/src/main/webapp/WEB-INF/web.xml?rev=1614722&view=auto
==============================================================================
--- incubator/devicemap/trunk/examples/ddr-filter/src/main/webapp/WEB-INF/web.xml (added)
+++ incubator/devicemap/trunk/examples/ddr-filter/src/main/webapp/WEB-INF/web.xml Wed Jul 30 17:45:55 2014
@@ -0,0 +1,7 @@
+<!DOCTYPE web-app PUBLIC
+ "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
+ "http://java.sun.com/dtd/web-app_2_3.dtd" >
+
+<web-app>
+  <display-name>Archetype Created Web Application</display-name>
+</web-app>

Added: incubator/devicemap/trunk/examples/ddr-filter/src/main/webapp/index.jsp
URL: http://svn.apache.org/viewvc/incubator/devicemap/trunk/examples/ddr-filter/src/main/webapp/index.jsp?rev=1614722&view=auto
==============================================================================
--- incubator/devicemap/trunk/examples/ddr-filter/src/main/webapp/index.jsp (added)
+++ incubator/devicemap/trunk/examples/ddr-filter/src/main/webapp/index.jsp Wed Jul 30 17:45:55 2014
@@ -0,0 +1,5 @@
+<html>
+<body>
+<h2>Hello World!</h2>
+</body>
+</html>

Modified: incubator/devicemap/trunk/examples/ddr-service/src/main/webapp/index.jsp
URL: http://svn.apache.org/viewvc/incubator/devicemap/trunk/examples/ddr-service/src/main/webapp/index.jsp?rev=1614722&r1=1614721&r2=1614722&view=diff
==============================================================================
--- incubator/devicemap/trunk/examples/ddr-service/src/main/webapp/index.jsp (original)
+++ incubator/devicemap/trunk/examples/ddr-service/src/main/webapp/index.jsp Wed Jul 30 17:45:55 2014
@@ -3,7 +3,7 @@
 <head>
 <title>Device Map Java Client</title>
 <meta http-equiv="X-UA-Compatible" content="IE=edge">
-<script src="http://devicemap-vm.apache.org/dmapclient.js"></script>
+<script src="js/dmapclient.js"></script>
 </head>
 <body onload="main();">
 <h1>Device Map Java Client</h1>