details: https://code.openbravo.com/erp/devel/pi/rev/7d3ebe1b52c6 changeset: 32594:7d3ebe1b52c6 user: Stefan Hühner <stefan.huehner <at> openbravo.com> date: Tue Aug 29 09:02:20 2017 +0200 summary: Fixed 36735. Remove obsolete jslint related build.xml file.
That file only checks a now non-existent ftl template. The content of that template will be indirectly checked anyway by the jslint run done on generated js when modules are in development. diffstat: modules/org.openbravo.client.kernel/build.xml | 44 --------------------------- 1 files changed, 0 insertions(+), 44 deletions(-) diffs (49 lines): diff -r 71a9ac7e63b3 -r 7d3ebe1b52c6 modules/org.openbravo.client.kernel/build.xml --- a/modules/org.openbravo.client.kernel/build.xml Tue Aug 29 08:27:26 2017 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,45 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" ?> -<!-- -************************************************************************* -* The contents of this file are subject to the Openbravo Public License -* Version 1.1 (the "License"), being the Mozilla Public License -* Version 1.1 with a permitted attribution clause; you may not use this -* file except in compliance with the License. You may obtain a copy of -* the License at http://www.openbravo.com/legal/license.html -* Software distributed under the License is distributed on an "AS IS" -* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the -* License for the specific language governing rights and limitations -* under the License. -* The Original Code is Openbravo ERP. -* The Initial Developer of the Original Code is Openbravo SLU -* All portions are Copyright (C) 2010 Openbravo SLU -* All Rights Reserved. -* Contributor(s): ______________________________________. -************************************************************************ ---> -<project name="JSLint" default="lint" basedir="."> - <description> - Simple ant project to check JS templates - </description> - - <property name="src" location="src"/> - - <path id="ant.tasks.classpath"> - <fileset dir="lib" includes="**/*.jar" /> - </path> - - - <taskdef name="jslint" - classname="com.googlecode.jslint4java.ant.JSLintTask" - classpathref="ant.tasks.classpath" /> - - <target name="lint" description="Lints the base application JS file"> - <jslint> - <formatter type="plain" /> - <fileset dir="${src}"> - <include name="**/application_js.ftl"/> - </fileset> - </jslint> - </target> - -</project> ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot _______________________________________________ Openbravo-commits mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openbravo-commits
