You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@marmotta.apache.org by ja...@apache.org on 2014/03/17 12:00:17 UTC

[4/5] git commit: MARMOTTA-468: removed sgvizler webjar module from marmotta MARMOTTA-416: no more d3.js in the source

MARMOTTA-468: removed sgvizler webjar module from marmotta
MARMOTTA-416: no more d3.js in the source


Project: http://git-wip-us.apache.org/repos/asf/marmotta/repo
Commit: http://git-wip-us.apache.org/repos/asf/marmotta/commit/c4efc812
Tree: http://git-wip-us.apache.org/repos/asf/marmotta/tree/c4efc812
Diff: http://git-wip-us.apache.org/repos/asf/marmotta/diff/c4efc812

Branch: refs/heads/develop
Commit: c4efc8125362db932548f19d5a38885fd9e0c311
Parents: 7ab48b8
Author: Jakob Frank <ja...@apache.org>
Authored: Mon Mar 17 11:52:00 2014 +0100
Committer: Jakob Frank <ja...@apache.org>
Committed: Mon Mar 17 11:52:00 2014 +0100

----------------------------------------------------------------------
 extras/webjars/pom.xml                          |    1 -
 extras/webjars/sgvizler/pom.xml                 |   88 --
 .../webjars/sgvizler/src/main/resources/LICENSE |   16 -
 .../sgvizler/src/main/resources/REVISION        |    1 -
 .../src/main/resources/lib/d3.v2.min.js         |    4 -
 .../resources/lib/raphael-dracula.pack.min.js   |    7 -
 .../src/main/resources/sgvizler.chart.css       |   37 -
 .../sgvizler/src/main/resources/sgvizler.html   |  114 --
 .../sgvizler/src/main/resources/sgvizler.js     | 1277 ------------------
 9 files changed, 1545 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/marmotta/blob/c4efc812/extras/webjars/pom.xml
----------------------------------------------------------------------
diff --git a/extras/webjars/pom.xml b/extras/webjars/pom.xml
index 05e6671..704280b 100644
--- a/extras/webjars/pom.xml
+++ b/extras/webjars/pom.xml
@@ -49,7 +49,6 @@
     <modules>
         <module>snorql</module>
         <module>codemirror</module>
-        <module>sgvizler</module>
         <module>strftime</module>
     </modules>
     

http://git-wip-us.apache.org/repos/asf/marmotta/blob/c4efc812/extras/webjars/sgvizler/pom.xml
----------------------------------------------------------------------
diff --git a/extras/webjars/sgvizler/pom.xml b/extras/webjars/sgvizler/pom.xml
deleted file mode 100644
index 93e99d9..0000000
--- a/extras/webjars/sgvizler/pom.xml
+++ /dev/null
@@ -1,88 +0,0 @@
-<?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/xsd/maven-4.0.0.xsd">
-    <modelVersion>4.0.0</modelVersion>
-
-    <parent>
-        <groupId>org.apache.marmotta</groupId>
-        <artifactId>marmotta-parent</artifactId>
-        <version>3.2.0-SNAPSHOT</version>
-        <relativePath>../../../parent/</relativePath> 
-    </parent>
-
-    <name>Marmotta WebJar: sgvizler</name>
-    <groupId>org.apache.marmotta.webjars</groupId>
-    <artifactId>sgvizler</artifactId>
-    <packaging>jar</packaging>
-
-    <properties>
-        <webjar.version>0.5.1</webjar.version>
-    </properties>
-
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.sonatype.plugins</groupId>
-                <artifactId>yuicompressor-maven-plugin</artifactId>
-                <version>1.0.0</version>
-                <executions>
-                    <execution>
-                        <goals>
-                            <goal>aggregate</goal>
-                        </goals>
-                    </execution>
-                </executions>
-                <configuration>
-                    <nomunge>true</nomunge>
-                    <jswarn>false</jswarn>
-                    <sourceDirectory>${project.basedir}/src/main/resources</sourceDirectory>
-                    <output>${project.build.outputDirectory}/META-INF/resources/webjars/${project.artifactId}/${webjar.version}/sgvizler.js</output>
-                </configuration>
-            </plugin>
-            <plugin>
-                <!-- these are "extras", so they come from 3rd parties, no RAT check! -->
-                <groupId>org.apache.rat</groupId>
-                <artifactId>apache-rat-plugin</artifactId>
-                <configuration>
-                    <excludes>
-                        <exclude>src/**</exclude>
-                    </excludes>
-                </configuration>
-            </plugin>
-            <plugin>
-                <groupId>org.zeroturnaround</groupId>
-                <artifactId>jrebel-maven-plugin</artifactId>
-                <configuration>
-                    <relativePath>../../../</relativePath>
-                </configuration>
-            </plugin>
-        </plugins>
-        <resources>
-            <resource>
-                <directory>src/main/resources</directory>
-                <excludes>
-                    <exclude>**/*.js</exclude>
-                </excludes>
-                <filtering>false</filtering>
-                <targetPath>${project.build.outputDirectory}/META-INF/resources/webjars/${project.artifactId}/${webjar.version}</targetPath>
-            </resource>
-        </resources>
-     </build>
-
-</project>

http://git-wip-us.apache.org/repos/asf/marmotta/blob/c4efc812/extras/webjars/sgvizler/src/main/resources/LICENSE
----------------------------------------------------------------------
diff --git a/extras/webjars/sgvizler/src/main/resources/LICENSE b/extras/webjars/sgvizler/src/main/resources/LICENSE
deleted file mode 100644
index 0e50dba..0000000
--- a/extras/webjars/sgvizler/src/main/resources/LICENSE
+++ /dev/null
@@ -1,16 +0,0 @@
-Copyright (c) 2011 Martin G. Skjæveland
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/marmotta/blob/c4efc812/extras/webjars/sgvizler/src/main/resources/REVISION
----------------------------------------------------------------------
diff --git a/extras/webjars/sgvizler/src/main/resources/REVISION b/extras/webjars/sgvizler/src/main/resources/REVISION
deleted file mode 100644
index 4dc1283..0000000
--- a/extras/webjars/sgvizler/src/main/resources/REVISION
+++ /dev/null
@@ -1 +0,0 @@
-172:173