r432 - in trunk: . chorem-entities chorem-webmotion chorem-webmotion/src/main/java/org/chorem/webmotion/converters chorem-webmotion/src/main/webapp/WEB-INF/jsp/financial chorem-webmotion/src/main/webapp/js chorem-webmotion/src/main/webapp/js/financial chorem-webmotion/src/test/java/org/chorem/webmotion/converters
Author: ymartel Date: 2014-08-11 14:13:23 +0200 (Mon, 11 Aug 2014) New Revision: 432 Url: http://forge.chorem.org/projects/chorem/repository/revisions/432 Log: Clean dependencies Add some license headers Modified: trunk/chorem-entities/LICENSE.txt trunk/chorem-webmotion/LICENSE.txt trunk/chorem-webmotion/src/main/java/org/chorem/webmotion/converters/JsonConverter.java trunk/chorem-webmotion/src/main/java/org/chorem/webmotion/converters/JsonHelper.java trunk/chorem-webmotion/src/main/webapp/WEB-INF/jsp/financial/expenseAccountEntryEdit.html trunk/chorem-webmotion/src/main/webapp/js/angular-ui-bootstrap-tpls-0.11.0.js trunk/chorem-webmotion/src/main/webapp/js/financial/expenseAccount.js trunk/chorem-webmotion/src/test/java/org/chorem/webmotion/converters/JsonConverterTest.java trunk/pom.xml Modified: trunk/chorem-entities/LICENSE.txt =================================================================== --- trunk/chorem-entities/LICENSE.txt 2014-08-11 08:07:53 UTC (rev 431) +++ trunk/chorem-entities/LICENSE.txt 2014-08-11 12:13:23 UTC (rev 432) @@ -658,4 +658,4 @@ You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU AGPL, see -<http://www.gnu.org/licenses/>. \ No newline at end of file +<http://www.gnu.org/licenses/>. Modified: trunk/chorem-webmotion/LICENSE.txt =================================================================== --- trunk/chorem-webmotion/LICENSE.txt 2014-08-11 08:07:53 UTC (rev 431) +++ trunk/chorem-webmotion/LICENSE.txt 2014-08-11 12:13:23 UTC (rev 432) @@ -658,4 +658,4 @@ You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU AGPL, see -<http://www.gnu.org/licenses/>. \ No newline at end of file +<http://www.gnu.org/licenses/>. Modified: trunk/chorem-webmotion/src/main/java/org/chorem/webmotion/converters/JsonConverter.java =================================================================== --- trunk/chorem-webmotion/src/main/java/org/chorem/webmotion/converters/JsonConverter.java 2014-08-11 08:07:53 UTC (rev 431) +++ trunk/chorem-webmotion/src/main/java/org/chorem/webmotion/converters/JsonConverter.java 2014-08-11 12:13:23 UTC (rev 432) @@ -1,5 +1,26 @@ package org.chorem.webmotion.converters; +/* + * #%L + * Chorem :: webmotion + * %% + * Copyright (C) 2011 - 2014 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import org.apache.commons.beanutils.converters.AbstractConverter; /** Modified: trunk/chorem-webmotion/src/main/java/org/chorem/webmotion/converters/JsonHelper.java =================================================================== --- trunk/chorem-webmotion/src/main/java/org/chorem/webmotion/converters/JsonHelper.java 2014-08-11 08:07:53 UTC (rev 431) +++ trunk/chorem-webmotion/src/main/java/org/chorem/webmotion/converters/JsonHelper.java 2014-08-11 12:13:23 UTC (rev 432) @@ -1,5 +1,26 @@ package org.chorem.webmotion.converters; +/* + * #%L + * Chorem :: webmotion + * %% + * Copyright (C) 2011 - 2014 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import java.lang.reflect.Type; import java.util.Date; Modified: trunk/chorem-webmotion/src/main/webapp/WEB-INF/jsp/financial/expenseAccountEntryEdit.html =================================================================== --- trunk/chorem-webmotion/src/main/webapp/WEB-INF/jsp/financial/expenseAccountEntryEdit.html 2014-08-11 08:07:53 UTC (rev 431) +++ trunk/chorem-webmotion/src/main/webapp/WEB-INF/jsp/financial/expenseAccountEntryEdit.html 2014-08-11 12:13:23 UTC (rev 432) @@ -1,3 +1,23 @@ +<!-- + #%L + Chorem :: webmotion + %% + Copyright (C) 2011 - 2014 CodeLutin + %% + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero 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 Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + #L% + --> <td><input type="text" ng-model="newExpenseAccountEntry.justificationNumber" name="newExpenseAccountEntry.justificationNumber" size="10" style='width:100%'></td> <td> Modified: trunk/chorem-webmotion/src/main/webapp/js/angular-ui-bootstrap-tpls-0.11.0.js =================================================================== --- trunk/chorem-webmotion/src/main/webapp/js/angular-ui-bootstrap-tpls-0.11.0.js 2014-08-11 08:07:53 UTC (rev 431) +++ trunk/chorem-webmotion/src/main/webapp/js/angular-ui-bootstrap-tpls-0.11.0.js 2014-08-11 12:13:23 UTC (rev 432) @@ -1,4 +1,24 @@ /* + * #%L + * Chorem :: webmotion + * %% + * Copyright (C) 2011 - 2014 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ +/* * angular-ui-bootstrap * http://angular-ui.github.io/bootstrap/ Modified: trunk/chorem-webmotion/src/main/webapp/js/financial/expenseAccount.js =================================================================== --- trunk/chorem-webmotion/src/main/webapp/js/financial/expenseAccount.js 2014-08-11 08:07:53 UTC (rev 431) +++ trunk/chorem-webmotion/src/main/webapp/js/financial/expenseAccount.js 2014-08-11 12:13:23 UTC (rev 432) @@ -1,3 +1,23 @@ +/* + * #%L + * Chorem :: webmotion + * %% + * Copyright (C) 2011 - 2014 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ var app = angular.module('expenseAccountPage', ['ngResource', 'ui.bootstrap']); app.controller("expenseAccountView", function($scope, $resource, $modal, $log, expenseAccountInit) { Modified: trunk/chorem-webmotion/src/test/java/org/chorem/webmotion/converters/JsonConverterTest.java =================================================================== --- trunk/chorem-webmotion/src/test/java/org/chorem/webmotion/converters/JsonConverterTest.java 2014-08-11 08:07:53 UTC (rev 431) +++ trunk/chorem-webmotion/src/test/java/org/chorem/webmotion/converters/JsonConverterTest.java 2014-08-11 12:13:23 UTC (rev 432) @@ -1,5 +1,26 @@ package org.chorem.webmotion.converters; +/* + * #%L + * Chorem :: webmotion + * %% + * Copyright (C) 2011 - 2014 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import java.util.Date; import java.util.Set; Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2014-08-11 08:07:53 UTC (rev 431) +++ trunk/pom.xml 2014-08-11 12:13:23 UTC (rev 432) @@ -258,31 +258,37 @@ <groupId>org.nuiton.js</groupId> <artifactId>nuiton-js-wro</artifactId> <version>${nuitonjsWro.version}</version> + <scope>runtime</scope> </dependency> <dependency> <groupId>org.nuiton.js</groupId> <artifactId>nuiton-js-angularjs</artifactId> <version>${nuitonjsAngularjs.version}</version> + <scope>runtime</scope> </dependency> <dependency> <groupId>org.nuiton.js</groupId> <artifactId>nuiton-js-jquery</artifactId> <version>${nuitonjsJquery.version}</version> + <scope>runtime</scope> </dependency> <dependency> <groupId>org.nuiton.js</groupId> <artifactId>nuiton-js-jquery-ui</artifactId> <version>${nuitonjsJqueryui.version}</version> + <scope>runtime</scope> </dependency> <dependency> <groupId>org.nuiton.js</groupId> <artifactId>nuiton-js-jqplot</artifactId> <version>${nuitonjsJqplot.version}</version> + <scope>runtime</scope> </dependency> <dependency> <groupId>org.nuiton.js</groupId> <artifactId>nuiton-js-bootstrap</artifactId> <version>${nuitonjsBootstrap.version}</version> + <scope>runtime</scope> </dependency> <!-- <dependency> <groupId>org.nuiton.js</groupId>
participants (1)
-
ymartel@users.chorem.org