r325 - in nuiton-js-raphaeljs/trunk: . src src/license src/main src/main/resources src/main/resources/META-INF src/main/resources/META-INF/nuiton-js src/site src/site/rst
Author: echatellier Date: 2013-12-20 21:47:45 +0100 (Fri, 20 Dec 2013) New Revision: 325 Url: http://nuiton.org/projects/nuiton-js/repository/revisions/325 Log: Initial import Added: nuiton-js-raphaeljs/trunk/LICENSE.txt nuiton-js-raphaeljs/trunk/README.txt nuiton-js-raphaeljs/trunk/pom.xml nuiton-js-raphaeljs/trunk/src/ nuiton-js-raphaeljs/trunk/src/license/ nuiton-js-raphaeljs/trunk/src/license/THIRD-PARTY.properties nuiton-js-raphaeljs/trunk/src/main/ nuiton-js-raphaeljs/trunk/src/main/resources/ nuiton-js-raphaeljs/trunk/src/main/resources/META-INF/ nuiton-js-raphaeljs/trunk/src/main/resources/META-INF/nuiton-js/ nuiton-js-raphaeljs/trunk/src/main/resources/META-INF/nuiton-js/wro-raphaeljs.xml nuiton-js-raphaeljs/trunk/src/site/ nuiton-js-raphaeljs/trunk/src/site/rst/ nuiton-js-raphaeljs/trunk/src/site/rst/index.rst.vm nuiton-js-raphaeljs/trunk/src/site/site_en.xml Added: nuiton-js-raphaeljs/trunk/LICENSE.txt =================================================================== --- nuiton-js-raphaeljs/trunk/LICENSE.txt (rev 0) +++ nuiton-js-raphaeljs/trunk/LICENSE.txt 2013-12-20 20:47:45 UTC (rev 325) @@ -0,0 +1,17 @@ +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 above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +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. Added: nuiton-js-raphaeljs/trunk/README.txt =================================================================== Added: nuiton-js-raphaeljs/trunk/pom.xml =================================================================== --- nuiton-js-raphaeljs/trunk/pom.xml (rev 0) +++ nuiton-js-raphaeljs/trunk/pom.xml 2013-12-20 20:47:45 UTC (rev 325) @@ -0,0 +1,97 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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> + + <!-- ************************************************************* --> + <!-- *** POM Relationships *************************************** --> + <!-- ************************************************************* --> + + <parent> + <groupId>org.nuiton.js</groupId> + <artifactId>nuiton-js-lib</artifactId> + <version>1.0.2-SNAPSHOT</version> + </parent> + + <artifactId>nuiton-js-raphaeljs</artifactId> + <version>2.1.2-1-SNAPSHOT</version> + + <name>Nuiton JS :: RaphaelJS</name> + <description>RaphaelJS jar packaging</description> + + <url>http://raphaeljs.com/</url> + + <licenses> + <license> + <name>MIT License</name> + <url>http://raphaeljs.com/license.html</url> + </license> + </licenses> + + <properties> + <license.licenseName>mit</license.licenseName> + + <upstreamVersion>2.1.2</upstreamVersion> + <upstreamUrl>https://github.com/DmitryBaranovskiy/raphael/archive</upstreamUrl> + <upstreamFile>v${upstreamVersion}.zip</upstreamFile> + <destDir>${project.build.outputDirectory}/META-INF/resources/${project.artifactId}</destDir> + </properties> + + <scm> + <connection>scm:svn:http://svn.nuiton.org/svn/nuiton-js/nuiton-js-raphaeljs/trunk</connection> + <developerConnection>scm:svn:http://svn.nuiton.org/svn/nuiton-js/nuiton-js-raphaeljs/trunk</developerConnection> + <url>http://www.nuiton.org/repositories/browse/nuiton-js/nuiton-js-raphaeljs/trunk</url> + </scm> + + <dependencies> + <dependency> + <groupId>org.nuiton.js</groupId> + <artifactId>nuiton-js-test</artifactId> + <version>1.0.2-SNAPSHOT</version> + <scope>test</scope> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>wagon-maven-plugin</artifactId> + <executions> + <execution> + <phase>process-resources</phase> + <goals> + <goal>download-single</goal> + </goals> + <configuration> + <url>${upstreamUrl}</url> + <fromFile>${upstreamFile}</fromFile> + <toFile>${project.build.directory}/${project.artifactId}.zip</toFile> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <executions> + <execution> + <phase>process-resources</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <echo message="unzip archive" /> + <unzip src="${project.build.directory}/${project.artifactId}.zip" dest="${project.build.directory}" /> + <echo message="moving resources" /> + <copy todir="${destDir}"> + <fileset dir="${project.build.directory}/raphael-${upstreamVersion}" includes="raphael.js" /> + </copy> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> +</project> Property changes on: nuiton-js-raphaeljs/trunk/pom.xml ___________________________________________________________________ Added: svn:mime-type + text/xml Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Added: nuiton-js-raphaeljs/trunk/src/license/THIRD-PARTY.properties =================================================================== --- nuiton-js-raphaeljs/trunk/src/license/THIRD-PARTY.properties (rev 0) +++ nuiton-js-raphaeljs/trunk/src/license/THIRD-PARTY.properties 2013-12-20 20:47:45 UTC (rev 325) @@ -0,0 +1,20 @@ +# Generated by org.codehaus.mojo.license.AddThirdPartyMojo +#------------------------------------------------------------------------------- +# Already used licenses in project : +# - BSD License +# - BSD style +# - COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 +# - Common Public License Version 1.0 +# - Indiana University Extreme! Lab Software License, vesion 1.1.1 +# - Lesser General Public License (LGPL) v 3.0 +# - Lesser General Public License (LPGL) +# - Lesser General Public License (LPGL) v 2.1 +# - MIT License +# - The Apache Software License, Version 2.0 +# - The MIT License +#------------------------------------------------------------------------------- +# Please fill the missing licenses for dependencies : +# +# +#Fri Dec 20 15:04:42 CET 2013 +javax.servlet--servlet-api--2.5=COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 Property changes on: nuiton-js-raphaeljs/trunk/src/license/THIRD-PARTY.properties ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Added: nuiton-js-raphaeljs/trunk/src/main/resources/META-INF/nuiton-js/wro-raphaeljs.xml =================================================================== --- nuiton-js-raphaeljs/trunk/src/main/resources/META-INF/nuiton-js/wro-raphaeljs.xml (rev 0) +++ nuiton-js-raphaeljs/trunk/src/main/resources/META-INF/nuiton-js/wro-raphaeljs.xml 2013-12-20 20:47:45 UTC (rev 325) @@ -0,0 +1,32 @@ +<!-- + #%L + Nuiton JS :: RaphaelJS + $Id$ + $HeadURL$ + %% + Copyright (C) 2013 CodeLutin, Chatellier Eric + %% + 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 above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + 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. + #L% + --> +<groups xmlns="http://www.isdc.ro/wro"> + <group name='raphael'> + <js>classpath:META-INF/resources/nuiton-js-raphaeljs/raphael.js</js> + </group> +</groups> Property changes on: nuiton-js-raphaeljs/trunk/src/main/resources/META-INF/nuiton-js/wro-raphaeljs.xml ___________________________________________________________________ Added: svn:mime-type + text/xml Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Added: nuiton-js-raphaeljs/trunk/src/site/rst/index.rst.vm =================================================================== --- nuiton-js-raphaeljs/trunk/src/site/rst/index.rst.vm (rev 0) +++ nuiton-js-raphaeljs/trunk/src/site/rst/index.rst.vm 2013-12-20 20:47:45 UTC (rev 325) @@ -0,0 +1,62 @@ +.. - +.. * #%L +.. * Nuiton JS :: RaphaelJS +.. * $Id$ +.. * $HeadURL$ +.. * %% +.. * Copyright (C) 2012 - 2013 CodeLutin +.. * %% +.. * This program is free software: you can redistribute it and/or modify +.. * it under the terms of the GNU Lesser General Public License as +.. * published by the Free Software Foundation, either version 3 of the +.. * License, or (at your option) any later version. +.. * +.. * This program is distributed in the hope that it will be useful, +.. * but WITHOUT ANY WARRANTY; without even the implied warranty of +.. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +.. * GNU General Lesser Public License for more details. +.. * +.. * You should have received a copy of the GNU General Lesser Public +.. * License along with this program. If not, see +.. * <http://www.gnu.org/licenses/lgpl-3.0.html>. +.. * #L% +.. - + +RaphaelJS +========= + +Raphaël_ is a small JavaScript library that should simplify your work with vector graphics +on the web. + +- documentation_ + +.. _Raphaël: http://raphaeljs.com/ +.. _documentation: http://raphaeljs.com/reference.html + +Use +--- + +Maven part:: + + <dependency> + <groupId>org.nuiton.js</groupId> + <artifactId>nuiton-js-raphaeljs</artifactId> + <version>${project.version}</version> + <scope>runtime</scope> + </dependency> + +JSP part:: + + <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> + + <script language="javascript" type="text/javascript" src="<c:url value="/nuiton-js/raphael.js"/>"></script> + +Available JS +------------ + +- raphael.js + +Available CSS +------------- + +*none* Property changes on: nuiton-js-raphaeljs/trunk/src/site/rst/index.rst.vm ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Added: nuiton-js-raphaeljs/trunk/src/site/site_en.xml =================================================================== --- nuiton-js-raphaeljs/trunk/src/site/site_en.xml (rev 0) +++ nuiton-js-raphaeljs/trunk/src/site/site_en.xml 2013-12-20 20:47:45 UTC (rev 325) @@ -0,0 +1,75 @@ +<!-- + #%L + Nuiton JS :: RaphaelJS + $Id$ + $HeadURL$ + %% + Copyright (C) 2012 - 2013 CodeLutin + %% + 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 above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + 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. + #L% + --> +<project name="${project.name}"> + + <bannerLeft> + <name>${project.name}</name> + <href>index.html</href> + </bannerLeft> + + <body> + + <head> + <script type="text/javascript" + src="http://maven-site.nuiton.org/public/js/mavenpom-site.js"> + </script> + + <link rel="stylesheet" type="text/css" + href="http://maven-site.nuiton.org/public/css/mavenpom-site.css"/> + </head> + + <breadcrumbs> + <item name="${project.name}" href="${project.url}"/> + </breadcrumbs> + + <menu ref="parent"/> + + <menu name="Users"> + <item name="Home" href="index.html"/> + </menu> + + <menu ref="reports"/> + + <footer> + + <div id='projectMetas' + projectversion='${project.version}' + platform='${project.platform}' + projectid='${project.projectId}' + scm='${project.scm.connection}' + scmwebeditorenabled='${project.scmwebeditorEnabled}' + scmwebeditorurl='${project.scmwebeditorUrl}' + siteSourcesType='${project.siteSourcesType}' + piwikEnabled='${project.piwikEnabled}' + piwikId='${project.piwikId}'> + </div> + </footer> + + </body> + +</project> Property changes on: nuiton-js-raphaeljs/trunk/src/site/site_en.xml ___________________________________________________________________ Added: svn:mime-type + text/xml Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native
participants (1)
-
echatellier@users.nuiton.org