r435 - in nuiton-js-angular-ui-bootstrap/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: 2014-05-07 15:55:29 +0200 (Wed, 07 May 2014) New Revision: 435 Url: http://forge.nuiton.org/projects/nuiton-js/repository/revisions/435 Log: Initial import. Added: nuiton-js-angular-ui-bootstrap/trunk/LICENSE.txt nuiton-js-angular-ui-bootstrap/trunk/README.txt nuiton-js-angular-ui-bootstrap/trunk/pom.xml nuiton-js-angular-ui-bootstrap/trunk/src/ nuiton-js-angular-ui-bootstrap/trunk/src/license/ nuiton-js-angular-ui-bootstrap/trunk/src/license/THIRD-PARTY.properties nuiton-js-angular-ui-bootstrap/trunk/src/main/ nuiton-js-angular-ui-bootstrap/trunk/src/main/resources/ nuiton-js-angular-ui-bootstrap/trunk/src/main/resources/META-INF/ nuiton-js-angular-ui-bootstrap/trunk/src/main/resources/META-INF/nuiton-js/ nuiton-js-angular-ui-bootstrap/trunk/src/main/resources/META-INF/nuiton-js/wro-angular-ui-bootstrap.xml nuiton-js-angular-ui-bootstrap/trunk/src/site/ nuiton-js-angular-ui-bootstrap/trunk/src/site/rst/ nuiton-js-angular-ui-bootstrap/trunk/src/site/rst/index.rst.vm nuiton-js-angular-ui-bootstrap/trunk/src/site/site_en.xml Added: nuiton-js-angular-ui-bootstrap/trunk/LICENSE.txt =================================================================== --- nuiton-js-angular-ui-bootstrap/trunk/LICENSE.txt (rev 0) +++ nuiton-js-angular-ui-bootstrap/trunk/LICENSE.txt 2014-05-07 13:55:29 UTC (rev 435) @@ -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-angular-ui-bootstrap/trunk/README.txt =================================================================== Added: nuiton-js-angular-ui-bootstrap/trunk/pom.xml =================================================================== --- nuiton-js-angular-ui-bootstrap/trunk/pom.xml (rev 0) +++ nuiton-js-angular-ui-bootstrap/trunk/pom.xml 2014-05-07 13:55:29 UTC (rev 435) @@ -0,0 +1,106 @@ +<?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</version> + </parent> + + <artifactId>nuiton-js-angular-ui-bootstrap</artifactId> + <version>0.11.0-1-SNAPSHOT</version> + + <name>Nuiton JS :: AngularJS UI-Bootstrap</name> + <description>Bootstrap components written in pure AngularJS by the AngularUI Team</description> + + <url>http://angular-ui.github.io/bootstrap/</url> + + <properties> + <license.licenseName>mit</license.licenseName> + + <upstreamVersion>0.11.0</upstreamVersion> + <upstreamUrl>http://angular-ui.github.io/bootstrap/</upstreamUrl> + <upstreamFile>ui-bootstrap-tpls-${upstreamVersion}.js</upstreamFile> + <destDir>${project.build.outputDirectory}/META-INF/resources/${project.artifactId}</destDir> + </properties> + + <licenses> + <license> + <name>MIT License</name> + <url>https://raw.github.com/angular-ui/ui-utils/master/LICENSE</url> + </license> + </licenses> + + <scm> + <connection>scm:svn:https://svn.nuiton.org/nuiton-js/nuiton-js-angular-ui-bootstrap/trunk</connection> + <developerConnection>scm:svn:https://svn.nuiton.org/nuiton-js/nuiton-js-angular-ui-bootstrap/trunk</developerConnection> + <url>https://forge.nuiton.org/projects/nuiton-js/repository/show/nuiton-js-angular-ui-bootstrap/trunk</url> + </scm> + + <dependencies> + <dependency> + <groupId>org.nuiton.js</groupId> + <artifactId>nuiton-js-angularjs</artifactId> + <version>1.2.10-1</version> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.nuiton.js</groupId> + <artifactId>nuiton-js-bootstrap</artifactId> + <version>3.1.1-1-SNAPSHOT</version> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.nuiton.js</groupId> + <artifactId>nuiton-js-test</artifactId> + <version>1.0.2</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}/${upstreamFile}</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="moving resources" /> + <copy todir="${destDir}" file="${project.build.directory}/${upstreamFile}" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> +</project> Property changes on: nuiton-js-angular-ui-bootstrap/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-angular-ui-bootstrap/trunk/src/license/THIRD-PARTY.properties =================================================================== --- nuiton-js-angular-ui-bootstrap/trunk/src/license/THIRD-PARTY.properties (rev 0) +++ nuiton-js-angular-ui-bootstrap/trunk/src/license/THIRD-PARTY.properties 2014-05-07 13:55:29 UTC (rev 435) @@ -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 : +# +# +#Mon Dec 30 12:06:41 CET 2013 +javax.servlet--servlet-api--2.5=COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 Property changes on: nuiton-js-angular-ui-bootstrap/trunk/src/license/THIRD-PARTY.properties ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Added: nuiton-js-angular-ui-bootstrap/trunk/src/main/resources/META-INF/nuiton-js/wro-angular-ui-bootstrap.xml =================================================================== --- nuiton-js-angular-ui-bootstrap/trunk/src/main/resources/META-INF/nuiton-js/wro-angular-ui-bootstrap.xml (rev 0) +++ nuiton-js-angular-ui-bootstrap/trunk/src/main/resources/META-INF/nuiton-js/wro-angular-ui-bootstrap.xml 2014-05-07 13:55:29 UTC (rev 435) @@ -0,0 +1,38 @@ +<!-- + #%L + Nuiton JS :: AngularJS + $Id$ + $HeadURL$ + %% + Copyright (C) 2014 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"> + + <import>classpath:META-INF/nuiton-js/wro-bootstrap.xml</import> + <import>classpath:META-INF/nuiton-js/wro-angularjs.xml</import> + + <group name='angular-ui-boostrap'> + <group-ref>bootstrap</group-ref> + <group-ref>angular</group-ref> + <js>classpath:META-INF/resources/nuiton-js-angular-ui-bootstrap/*.js</js> + </group> +</groups> Property changes on: nuiton-js-angular-ui-bootstrap/trunk/src/main/resources/META-INF/nuiton-js/wro-angular-ui-bootstrap.xml ___________________________________________________________________ Added: svn:mime-type + text/xml Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Added: nuiton-js-angular-ui-bootstrap/trunk/src/site/rst/index.rst.vm =================================================================== --- nuiton-js-angular-ui-bootstrap/trunk/src/site/rst/index.rst.vm (rev 0) +++ nuiton-js-angular-ui-bootstrap/trunk/src/site/rst/index.rst.vm 2014-05-07 13:55:29 UTC (rev 435) @@ -0,0 +1,78 @@ +.. - +.. * #%L +.. * Nuiton JS :: Mustache +.. * $Id$ +.. * $HeadURL$ +.. * %% +.. * Copyright (C) 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% +.. - + +AngularJS UI-Utils +================== + +Swiss-Army-Knife of AngularJS tools (with no external dependencies!). + +- documentation_ + +.. _documentation: https://github.com/angular-ui/ui-utils + +Use +--- + +Maven part:: + + <dependency> + <groupId>org.nuiton.js</groupId> + <artifactId>nuiton-js-angular-ui-utils</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/angular-ui-utils.js"/>"></script> + +Available JS +------------ + +- angular-ui-utils.js + +Or as single package: + +- angular-ui-event.js +- angular-ui-format.js +- angular-ui-highlight.js +- angular-ui-ie-shiv.js +- angular-ui-indeterminate.js +- angular-ui-inflector.js +- angular-ui-jq.js +- angular-ui-keypress.js +- angular-ui-mask.js +- angular-ui-reset.js +- angular-ui-route.js +- angular-ui-scrollfix.js +- angular-ui-showhide.js +- angular-ui-unique.js +- angular-ui-validate.js + +Available CSS +------------- + +*none* Property changes on: nuiton-js-angular-ui-bootstrap/trunk/src/site/rst/index.rst.vm ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Added: nuiton-js-angular-ui-bootstrap/trunk/src/site/site_en.xml =================================================================== --- nuiton-js-angular-ui-bootstrap/trunk/src/site/site_en.xml (rev 0) +++ nuiton-js-angular-ui-bootstrap/trunk/src/site/site_en.xml 2014-05-07 13:55:29 UTC (rev 435) @@ -0,0 +1,75 @@ +<!-- + #%L + Nuiton JS :: AngularJS UI-Utils + $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-angular-ui-bootstrap/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