Added: websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/TypeHandler.java.html ============================================================================== --- websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/TypeHandler.java.html (added) +++ websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/TypeHandler.java.html Sat May 9 18:19:15 2015 @@ -0,0 +1,245 @@ +<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../.resources/report.css" type="text/css"/><link rel="shortcut icon" href="../.resources/report.gif" type="image/gif"/><title>TypeHandler.java</title><link rel="stylesheet" href="../.resources/prettify.css" type="text/css"/><script type="text/javascript" src="../.resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../.sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Apache Commons CLI</a> > <a href="index.source.html" class="el_package">org.apache.commons.cli</a> > <span class="el_source">TypeHandler.java</span></div><h1>Ty peHandler.java</h1><pre class="source lang-java linenums">/** + * 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. + */ + +package org.apache.commons.cli; + +import java.io.File; + +import java.net.MalformedURLException; +import java.net.URL; + +import java.util.Date; + +/** + * This is a temporary implementation. TypeHandler will handle the + * pluggableness of OptionTypes and it will direct all of these types + * of conversion functionalities to ConvertUtils component in Commons + * already. BeanUtils I think. + * + * @version $Id: TypeHandler.java 1443102 2013-02-06 18:12:16Z tn $ + */ +<span class="nc" id="L35">public class TypeHandler</span> +{ + /** + * Returns the <code>Object</code> of type <code>obj</code> + * with the value of <code>str</code>. + * + * @param str the command line value + * @param obj the type of argument + * @return The instance of <code>obj</code> initialised with + * the value of <code>str</code>. + * @throws ParseException if the value creation for the given object type failed + */ + public static Object createValue(String str, Object obj) throws ParseException + { +<span class="fc" id="L49"> return createValue(str, (Class<?>) obj);</span> + } + + /** + * Returns the <code>Object</code> of type <code>clazz</code> + * with the value of <code>str</code>. + * + * @param str the command line value + * @param clazz the type of argument + * @return The instance of <code>clazz</code> initialised with + * the value of <code>str</code>. + * @throws ParseException if the value creation for the given class failed + */ + public static Object createValue(String str, Class<?> clazz) throws ParseException + { +<span class="fc bfc" id="L64" title="All 2 branches covered."> if (PatternOptionBuilder.STRING_VALUE == clazz)</span> + { +<span class="fc" id="L66"> return str;</span> + } +<span class="fc bfc" id="L68" title="All 2 branches covered."> else if (PatternOptionBuilder.OBJECT_VALUE == clazz)</span> + { +<span class="fc" id="L70"> return createObject(str);</span> + } +<span class="fc bfc" id="L72" title="All 2 branches covered."> else if (PatternOptionBuilder.NUMBER_VALUE == clazz)</span> + { +<span class="fc" id="L74"> return createNumber(str);</span> + } +<span class="pc bpc" id="L76" title="1 of 2 branches missed."> else if (PatternOptionBuilder.DATE_VALUE == clazz)</span> + { +<span class="nc" id="L78"> return createDate(str);</span> + } +<span class="fc bfc" id="L80" title="All 2 branches covered."> else if (PatternOptionBuilder.CLASS_VALUE == clazz)</span> + { +<span class="fc" id="L82"> return createClass(str);</span> + } +<span class="fc bfc" id="L84" title="All 2 branches covered."> else if (PatternOptionBuilder.FILE_VALUE == clazz)</span> + { +<span class="fc" id="L86"> return createFile(str);</span> + } +<span class="fc bfc" id="L88" title="All 2 branches covered."> else if (PatternOptionBuilder.EXISTING_FILE_VALUE == clazz)</span> + { +<span class="fc" id="L90"> return createFile(str);</span> + } +<span class="pc bpc" id="L92" title="1 of 2 branches missed."> else if (PatternOptionBuilder.FILES_VALUE == clazz)</span> + { +<span class="nc" id="L94"> return createFiles(str);</span> + } +<span class="pc bpc" id="L96" title="1 of 2 branches missed."> else if (PatternOptionBuilder.URL_VALUE == clazz)</span> + { +<span class="fc" id="L98"> return createURL(str);</span> + } + else + { +<span class="nc" id="L102"> return null;</span> + } + } + + /** + * Create an Object from the classname and empty constructor. + * + * @param classname the argument value + * @return the initialised object + * @throws ParseException if the class could not be found or the object could not be created + */ + public static Object createObject(String classname) throws ParseException + { + Class<?> cl; + + try + { +<span class="fc" id="L119"> cl = Class.forName(classname);</span> + } +<span class="fc" id="L121"> catch (ClassNotFoundException cnfe)</span> + { +<span class="fc" id="L123"> throw new ParseException("Unable to find the class: " + classname);</span> +<span class="fc" id="L124"> }</span> + + try + { +<span class="fc" id="L128"> return cl.newInstance();</span> + } +<span class="fc" id="L130"> catch (Exception e)</span> + { +<span class="fc" id="L132"> throw new ParseException(e.getClass().getName() + "; Unable to create an instance of: " + classname);</span> + } + } + + /** + * Create a number from a String. If a . is present, it creates a + * Double, otherwise a Long. + * + * @param str the value + * @return the number represented by <code>str</code> + * @throws ParseException if <code>str</code> is not a number + */ + public static Number createNumber(String str) throws ParseException + { + try + { +<span class="fc bfc" id="L148" title="All 2 branches covered."> if (str.indexOf('.') != -1)</span> + { +<span class="fc" id="L150"> return Double.valueOf(str);</span> + } + else + { +<span class="fc" id="L154"> return Long.valueOf(str);</span> + } + } +<span class="fc" id="L157"> catch (NumberFormatException e)</span> + { +<span class="fc" id="L159"> throw new ParseException(e.getMessage());</span> + } + } + + /** + * Returns the class whose name is <code>classname</code>. + * + * @param classname the class name + * @return The class if it is found + * @throws ParseException if the class could not be found + */ + public static Class<?> createClass(String classname) throws ParseException + { + try + { +<span class="fc" id="L174"> return Class.forName(classname);</span> + } +<span class="fc" id="L176"> catch (ClassNotFoundException e)</span> + { +<span class="fc" id="L178"> throw new ParseException("Unable to find the class: " + classname);</span> + } + } + + /** + * Returns the date represented by <code>str</code>. + * <p> + * This method is not yet implemented and always throws an + * {@link UnsupportedOperationException}. + * + * @param str the date string + * @return The date if <code>str</code> is a valid date string, + * otherwise return null. + * @throws UnsupportedOperationException always + */ + public static Date createDate(String str) + { +<span class="fc" id="L195"> throw new UnsupportedOperationException("Not yet implemented");</span> + } + + /** + * Returns the URL represented by <code>str</code>. + * + * @param str the URL string + * @return The URL in <code>str</code> is well-formed + * @throws ParseException if the URL in <code>str</code> is not well-formed + */ + public static URL createURL(String str) throws ParseException + { + try + { +<span class="fc" id="L209"> return new URL(str);</span> + } +<span class="fc" id="L211"> catch (MalformedURLException e)</span> + { +<span class="fc" id="L213"> throw new ParseException("Unable to parse the URL: " + str);</span> + } + } + + /** + * Returns the File represented by <code>str</code>. + * + * @param str the File location + * @return The file represented by <code>str</code>. + */ + public static File createFile(String str) + { +<span class="fc" id="L225"> return new File(str);</span> + } + + /** + * Returns the File[] represented by <code>str</code>. + * <p> + * This method is not yet implemented and always throws an + * {@link UnsupportedOperationException}. + * + * @param str the paths to the files + * @return The File[] represented by <code>str</code>. + * @throws UnsupportedOperationException always + */ + public static File[] createFiles(String str) + { + // to implement/port: + // return FileW.findFiles(str); +<span class="fc" id="L242"> throw new UnsupportedOperationException("Not yet implemented");</span> + } +} +</pre><div class="footer"><span class="right">Created with <a href="http://www.eclemma.org/jacoco">JaCoCo</a> 0.7.2.201409121644</span></div></body></html> \ No newline at end of file
Propchange: websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/TypeHandler.java.html ------------------------------------------------------------------------------ svn:eol-style = native Added: websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/UnrecognizedOptionException.html ============================================================================== --- websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/UnrecognizedOptionException.html (added) +++ websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/UnrecognizedOptionException.html Sat May 9 18:19:15 2015 @@ -0,0 +1 @@ +<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../.resources/report.css" type="text/css"/><link rel="shortcut icon" href="../.resources/report.gif" type="image/gif"/><title>UnrecognizedOptionException</title><script type="text/javascript" src="../.resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../.sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Apache Commons CLI</a> > <a href="index.html" class="el_package">org.apache.commons.cli</a> > <span class="el_class">UnrecognizedOptionException</span></div><h1>UnrecognizedOptionException</h1><table class="coverage" cellspacing="0" id="c overagetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 14</td><td class="ctr2">100%</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">0</td><td class ="ctr2">3</td><td class="ctr1">0</td><td class="ctr2">6</td><td class="ctr1">0</td><td class="ctr2">3</td></tr></tfoot><tbody><tr><td id="a2"><a href="UnrecognizedOptionException.java.html#L57" class="el_method">UnrecognizedOptionException(String, String)</a></td><td class="bar" id="b0"><img src="../.resources/greenbar.gif" width="120" height="10" title="7" alt="7"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">1</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">3</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a1"><a href="UnrecognizedOptionException.java.html#L44" class="el_method">UnrecognizedOptionException(String)</a></td><td class="bar" id="b1"><img src="../.resources/greenbar.gif" width="68" height="10" title="4" alt="4"/></td><td class="ctr2" id="c1">100%</td><td class="bar" id="d1"/><td class="ctr2" id="e1">n/a</td><td class ="ctr1" id="f1">0</td><td class="ctr2" id="g1">1</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i1">2</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">1</td></tr><tr><td id="a0"><a href="UnrecognizedOptionException.java.html#L69" class="el_method">getOption()</a></td><td class="bar" id="b2"><img src="../.resources/greenbar.gif" width="51" height="10" title="3" alt="3"/></td><td class="ctr2" id="c2">100%</td><td class="bar" id="d2"/><td class="ctr2" id="e2">n/a</td><td class="ctr1" id="f2">0</td><td class="ctr2" id="g2">1</td><td class="ctr1" id="h2">0</td><td class="ctr2" id="i2">1</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k2">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.eclemma.org/jacoco">JaCoCo</a> 0.7.2.201409121644</span></div></body></html> \ No newline at end of file Propchange: websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/UnrecognizedOptionException.html ------------------------------------------------------------------------------ svn:eol-style = native Added: websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/UnrecognizedOptionException.java.html ============================================================================== --- websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/UnrecognizedOptionException.java.html (added) +++ websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/UnrecognizedOptionException.java.html Sat May 9 18:19:15 2015 @@ -0,0 +1,72 @@ +<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../.resources/report.css" type="text/css"/><link rel="shortcut icon" href="../.resources/report.gif" type="image/gif"/><title>UnrecognizedOptionException.java</title><link rel="stylesheet" href="../.resources/prettify.css" type="text/css"/><script type="text/javascript" src="../.resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../.sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Apache Commons CLI</a> > <a href="index.source.html" class="el_package">org.apache.commons.cli</a> > <span class="el_source">UnrecognizedOptionE xception.java</span></div><h1>UnrecognizedOptionException.java</h1><pre class="source lang-java linenums">/** + * 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. + */ + +package org.apache.commons.cli; + +/** + * Exception thrown during parsing signalling an unrecognized + * option was seen. + * + * @version $Id: UnrecognizedOptionException.java 1443102 2013-02-06 18:12:16Z tn $ + */ +public class UnrecognizedOptionException extends ParseException +{ + /** + * This exception {@code serialVersionUID}. + */ + private static final long serialVersionUID = -252504690284625623L; + + /** The unrecognized option */ + private String option; + + /** + * Construct a new <code>UnrecognizedArgumentException</code> + * with the specified detail message. + * + * @param message the detail message + */ + public UnrecognizedOptionException(String message) + { +<span class="fc" id="L44"> super(message);</span> +<span class="fc" id="L45"> }</span> + + /** + * Construct a new <code>UnrecognizedArgumentException</code> + * with the specified option and detail message. + * + * @param message the detail message + * @param option the unrecognized option + * @since 1.2 + */ + public UnrecognizedOptionException(String message, String option) + { +<span class="fc" id="L57"> this(message);</span> +<span class="fc" id="L58"> this.option = option;</span> +<span class="fc" id="L59"> }</span> + + /** + * Returns the unrecognized option. + * + * @return the related option + * @since 1.2 + */ + public String getOption() + { +<span class="fc" id="L69"> return option;</span> + } +} +</pre><div class="footer"><span class="right">Created with <a href="http://www.eclemma.org/jacoco">JaCoCo</a> 0.7.2.201409121644</span></div></body></html> \ No newline at end of file Propchange: websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/UnrecognizedOptionException.java.html ------------------------------------------------------------------------------ svn:eol-style = native Added: websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/Util.html ============================================================================== --- websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/Util.html (added) +++ websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/Util.html Sat May 9 18:19:15 2015 @@ -0,0 +1 @@ +<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../.resources/report.css" type="text/css"/><link rel="shortcut icon" href="../.resources/report.gif" type="image/gif"/><title>Util</title><script type="text/javascript" src="../.resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../.sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Apache Commons CLI</a> > <a href="index.html" class="el_package">org.apache.commons.cli</a> > <span class="el_class">Util</span></div><h1>Util</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleS ort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">3 of 62</td><td class="ctr2">95%</td><td class="bar">0 of 14</td><td class="ctr2">100%</td><td class="ctr1">1</td><td class="ctr2">10</td><td class="ctr1">1</td><td class="ctr2">12</td><td cl ass="ctr1">1</td><td class="ctr2">3</td></tr></tfoot><tbody><tr><td id="a2"><a href="Util.java.html#L25" class="el_method">Util()</a></td><td class="bar" id="b0"><img src="../.resources/redbar.gif" width="10" height="10" title="3" alt="3"/></td><td class="ctr2" id="c2">0%</td><td class="bar" id="d2"/><td class="ctr2" id="e2">n/a</td><td class="ctr1" id="f0">1</td><td class="ctr2" id="g2">1</td><td class="ctr1" id="h0">1</td><td class="ctr2" id="i2">1</td><td class="ctr1" id="j0">1</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a0"><a href="Util.java.html#L64" class="el_method">stripLeadingAndTrailingQuotes(String)</a></td><td class="bar" id="b1"><img src="../.resources/greenbar.gif" width="120" height="10" title="33" alt="33"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d0"><img src="../.resources/greenbar.gif" width="120" height="10" title="8" alt="8"/></td><td class="ctr2" id="e0">100%</td><td class="ctr1" id="f1">0</td><td class="ctr2" id="g0">5</td><td class= "ctr1" id="h1">0</td><td class="ctr2" id="i1">4</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">1</td></tr><tr><td id="a1"><a href="Util.java.html#L37" class="el_method">stripLeadingHyphens(String)</a></td><td class="bar" id="b2"><img src="../.resources/greenbar.gif" width="94" height="10" title="26" alt="26"/></td><td class="ctr2" id="c1">100%</td><td class="bar" id="d1"><img src="../.resources/greenbar.gif" width="90" height="10" title="6" alt="6"/></td><td class="ctr2" id="e1">100%</td><td class="ctr1" id="f2">0</td><td class="ctr2" id="g1">4</td><td class="ctr1" id="h2">0</td><td class="ctr2" id="i0">7</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k2">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.eclemma.org/jacoco">JaCoCo</a> 0.7.2.201409121644</span></div></body></html> \ No newline at end of file Propchange: websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/Util.html ------------------------------------------------------------------------------ svn:eol-style = native Added: websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/Util.java.html ============================================================================== --- websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/Util.java.html (added) +++ websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/Util.java.html Sat May 9 18:19:15 2015 @@ -0,0 +1,73 @@ +<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../.resources/report.css" type="text/css"/><link rel="shortcut icon" href="../.resources/report.gif" type="image/gif"/><title>Util.java</title><link rel="stylesheet" href="../.resources/prettify.css" type="text/css"/><script type="text/javascript" src="../.resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../.sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Apache Commons CLI</a> > <a href="index.source.html" class="el_package">org.apache.commons.cli</a> > <span class="el_source">Util.java</span></div><h1>Util.java</h1><p re class="source lang-java linenums">/** + * 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. + */ + +package org.apache.commons.cli; + +/** + * Contains useful helper methods for classes within this package. + * + * @version $Id: Util.java 1443102 2013-02-06 18:12:16Z tn $ + */ +<span class="nc" id="L25">final class Util</span> +{ + /** + * Remove the hyphens from the beginning of <code>str</code> and + * return the new String. + * + * @param str The string from which the hyphens should be removed. + * + * @return the new String. + */ + static String stripLeadingHyphens(String str) + { +<span class="fc bfc" id="L37" title="All 2 branches covered."> if (str == null)</span> + { +<span class="fc" id="L39"> return null;</span> + } +<span class="fc bfc" id="L41" title="All 2 branches covered."> if (str.startsWith("--"))</span> + { +<span class="fc" id="L43"> return str.substring(2, str.length());</span> + } +<span class="fc bfc" id="L45" title="All 2 branches covered."> else if (str.startsWith("-"))</span> + { +<span class="fc" id="L47"> return str.substring(1, str.length());</span> + } + +<span class="fc" id="L50"> return str;</span> + } + + /** + * Remove the leading and trailing quotes from <code>str</code>. + * E.g. if str is '"one two"', then 'one two' is returned. + * + * @param str The string from which the leading and trailing quotes + * should be removed. + * + * @return The string without the leading and trailing quotes. + */ + static String stripLeadingAndTrailingQuotes(String str) + { +<span class="fc" id="L64"> int length = str.length();</span> +<span class="fc bfc" id="L65" title="All 8 branches covered."> if (length > 1 && str.startsWith("\"") && str.endsWith("\"") && str.substring(1, length - 1).indexOf('"') == -1)</span> + { +<span class="fc" id="L67"> str = str.substring(1, length - 1);</span> + } + +<span class="fc" id="L70"> return str;</span> + } +} +</pre><div class="footer"><span class="right">Created with <a href="http://www.eclemma.org/jacoco">JaCoCo</a> 0.7.2.201409121644</span></div></body></html> \ No newline at end of file Propchange: websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/Util.java.html ------------------------------------------------------------------------------ svn:eol-style = native Added: websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/index.html ============================================================================== --- websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/index.html (added) +++ websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/index.html Sat May 9 18:19:15 2015 @@ -0,0 +1 @@ +<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../.resources/report.css" type="text/css"/><link rel="shortcut icon" href="../.resources/report.gif" type="image/gif"/><title>org.apache.commons.cli</title><script type="text/javascript" src="../.resources/sort.js"></script></head><body onload="initialSort(['breadcrumb', 'coveragetable'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="index.source.html" class="el_source">Source Files</a><a href="../.sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Apache Commons CLI</a> > <span class="el_package">org.apache.commons.cli</span></div><h1>org.apache.commons.cli</h1><table class="coverage" cellspacing="0" id="coverag etable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td><td class="sortable ctr1" id="l" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="m" onclick="toggleSort(this)">Classes</td></tr></thead><tfoot><tr><td>Total</td>< td class="bar">189 of 4,878</td><td class="ctr2">96%</td><td class="bar">47 of 690</td><td class="ctr2">93%</td><td class="ctr1">60</td><td class="ctr2">612</td><td class="ctr1">46</td><td class="ctr2">1,157</td><td class="ctr1">16</td><td class="ctr2">263</td><td class="ctr1">0</td><td class="ctr2">23</td></tr></tfoot><tbody><tr><td id="a10"><a href="Option.html" class="el_class">Option</a></td><td class="bar" id="b0"><img src="../.resources/redbar.gif" width="7" height="10" title="61" alt="61"/><img src="../.resources/greenbar.gif" width="63" height="10" title="501" alt="501"/></td><td class="ctr2" id="c22">89%</td><td class="bar" id="d0"><img src="../.resources/redbar.gif" width="12" height="10" title="16" alt="16"/><img src="../.resources/greenbar.gif" width="50" height="10" title="66" alt="66"/></td><td class="ctr2" id="e16">80%</td><td class="ctr1" id="f0">17</td><td class="ctr2" id="g2">89</td><td class="ctr1" id="h0">12</td><td class="ctr2" id="i2">129</td><td class="ctr1" i d="j1">3</td><td class="ctr2" id="k0">48</td><td class="ctr1" id="l0">0</td><td class="ctr2" id="m0">1</td></tr><tr><td id="a6"><a href="HelpFormatter.html" class="el_class">HelpFormatter</a></td><td class="bar" id="b1"><img src="../.resources/redbar.gif" width="5" height="10" title="46" alt="46"/><img src="../.resources/greenbar.gif" width="114" height="10" title="902" alt="902"/></td><td class="ctr2" id="c18">95%</td><td class="bar" id="d2"><img src="../.resources/redbar.gif" width="6" height="10" title="9" alt="9"/><img src="../.resources/greenbar.gif" width="85" height="10" title="113" alt="113"/></td><td class="ctr2" id="e14">93%</td><td class="ctr1" id="f1">13</td><td class="ctr2" id="g0">103</td><td class="ctr1" id="h1">11</td><td class="ctr2" id="i0">213</td><td class="ctr1" id="j0">4</td><td class="ctr2" id="k1">42</td><td class="ctr1" id="l1">0</td><td class="ctr2" id="m1">1</td></tr><tr><td id="a4"><a href="DefaultParser.html" class="el_class">DefaultParser</a></td><td cl ass="bar" id="b2"><img src="../.resources/redbar.gif" width="3" height="10" title="25" alt="25"/><img src="../.resources/greenbar.gif" width="105" height="10" title="836" alt="836"/></td><td class="ctr2" id="c13">97%</td><td class="bar" id="d1"><img src="../.resources/redbar.gif" width="8" height="10" title="11" alt="11"/><img src="../.resources/greenbar.gif" width="111" height="10" title="147" alt="147"/></td><td class="ctr2" id="e12">93%</td><td class="ctr1" id="f2">11</td><td class="ctr2" id="g1">103</td><td class="ctr1" id="h2">5</td><td class="ctr2" id="i1">187</td><td class="ctr1" id="j9">0</td><td class="ctr2" id="k2">24</td><td class="ctr1" id="l2">0</td><td class="ctr2" id="m2">1</td></tr><tr><td id="a20"><a href="TypeHandler.html" class="el_class">TypeHandler</a></td><td class="bar" id="b3"><img src="../.resources/redbar.gif" width="1" height="10" title="11" alt="11"/><img src="../.resources/greenbar.gif" width="19" height="10" title="156" alt="156"/></td><td class="ctr2" id="c20">93%</td><td class="bar" id="d4"><img src="../.resources/redbar.gif" width="2" height="10" title="3" alt="3"/><img src="../.resources/greenbar.gif" width="12" height="10" title="17" alt="17"/></td><td class="ctr2" id="e15">85%</td><td class="ctr1" id="f3">4</td><td class="ctr2" id="g9">20</td><td class="ctr1" id="h3">4</td><td class="ctr2" id="i9">42</td><td class="ctr1" id="j4">1</td><td class="ctr2" id="k8">10</td><td class="ctr1" id="l3">0</td><td class="ctr2" id="m3">1</td></tr><tr><td id="a17"><a href="Parser.html" class="el_class">Parser</a></td><td class="bar" id="b4"><img src="../.resources/redbar.gif" width="1" height="10" title="9" alt="9"/><img src="../.resources/greenbar.gif" width="49" height="10" title="389" alt="389"/></td><td class="ctr2" id="c12">98%</td><td class="bar" id="d3"><img src="../.resources/redbar.gif" width="3" height="10" title="5" alt="5"/><img src="../.resources/greenbar.gif" width="53" height="10" title="71" alt="71"/></td><td class="ctr2" id ="e11">93%</td><td class="ctr1" id="f4">4</td><td class="ctr2" id="g3">51</td><td class="ctr1" id="h6">2</td><td class="ctr2" id="i3">106</td><td class="ctr1" id="j10">0</td><td class="ctr2" id="k7">13</td><td class="ctr1" id="l4">0</td><td class="ctr2" id="m4">1</td></tr><tr><td id="a14"><a href="Options.html" class="el_class">Options</a></td><td class="bar" id="b5"><img src="../.resources/redbar.gif" width="1" height="10" title="9" alt="9"/><img src="../.resources/greenbar.gif" width="33" height="10" title="264" alt="264"/></td><td class="ctr2" id="c15">97%</td><td class="bar" id="d9"><img src="../.resources/greenbar.gif" width="15" height="10" title="20" alt="20"/></td><td class="ctr2" id="e0">100%</td><td class="ctr1" id="f8">1</td><td class="ctr2" id="g7">27</td><td class="ctr1" id="h7">2</td><td class="ctr2" id="i7">57</td><td class="ctr1" id="j5">1</td><td class="ctr2" id="k5">17</td><td class="ctr1" id="l5">0</td><td class="ctr2" id="m5">1</td></tr><tr><td id="a11"><a href=" Option$Builder.html" class="el_class">Option.Builder</a></td><td class="bar" id="b6"><img src="../.resources/redbar.gif" width="1" height="10" title="9" alt="9"/><img src="../.resources/greenbar.gif" width="11" height="10" title="88" alt="88"/></td><td class="ctr2" id="c21">91%</td><td class="bar" id="d13"><img src="../.resources/greenbar.gif" width="4" height="10" title="6" alt="6"/></td><td class="ctr2" id="e1">100%</td><td class="ctr1" id="f5">2</td><td class="ctr2" id="g10">18</td><td class="ctr1" id="h4">3</td><td class="ctr2" id="i11">32</td><td class="ctr1" id="j2">2</td><td class="ctr2" id="k6">15</td><td class="ctr1" id="l6">0</td><td class="ctr2" id="m6">1</td></tr><tr><td id="a12"><a href="OptionBuilder.html" class="el_class">OptionBuilder</a></td><td class="bar" id="b7"><img src="../.resources/redbar.gif" width="1" height="10" title="8" alt="8"/><img src="../.resources/greenbar.gif" width="18" height="10" title="146" alt="146"/></td><td class="ctr2" id="c19">95%</td><td class="bar" id="d15"><img src="../.resources/greenbar.gif" width="3" height="10" title="4" alt="4"/></td><td class="ctr2" id="e2">100%</td><td class="ctr1" id="f6">2</td><td class="ctr2" id="g8">24</td><td class="ctr1" id="h5">3</td><td class="ctr2" id="i5">66</td><td class="ctr1" id="j3">2</td><td class="ctr2" id="k3">22</td><td class="ctr1" id="l7">0</td><td class="ctr2" id="m7">1</td></tr><tr><td id="a18"><a href="PatternOptionBuilder.html" class="el_class">PatternOptionBuilder</a></td><td class="bar" id="b8"><img src="../.resources/greenbar.gif" width="20" height="10" title="163" alt="163"/></td><td class="ctr2" id="c14">97%</td><td class="bar" id="d5"><img src="../.resources/greenbar.gif" width="32" height="10" title="43" alt="43"/></td><td class="ctr2" id="e9">98%</td><td class="ctr1" id="f7">2</td><td class="ctr2" id="g6">31</td><td class="ctr1" id="h8">2</td><td class="ctr2" id="i8">51</td><td class="ctr1" id="j6">1</td><td class="ctr2" id="k11">5</td><td class="ctr1" id="l8 ">0</td><td class="ctr2" id="m8">1</td></tr><tr><td id="a15"><a href="OptionValidator.html" class="el_class">OptionValidator</a></td><td class="bar" id="b9"><img src="../.resources/greenbar.gif" width="10" height="10" title="86" alt="86"/></td><td class="ctr2" id="c16">97%</td><td class="bar" id="d11"><img src="../.resources/greenbar.gif" width="12" height="10" title="16" alt="16"/></td><td class="ctr2" id="e3">100%</td><td class="ctr1" id="f9">1</td><td class="ctr2" id="g12">12</td><td class="ctr1" id="h9">1</td><td class="ctr2" id="i15">14</td><td class="ctr1" id="j7">1</td><td class="ctr2" id="k12">4</td><td class="ctr1" id="l9">0</td><td class="ctr2" id="m9">1</td></tr><tr><td id="a22"><a href="Util.html" class="el_class">Util</a></td><td class="bar" id="b10"><img src="../.resources/greenbar.gif" width="7" height="10" title="59" alt="59"/></td><td class="ctr2" id="c17">95%</td><td class="bar" id="d12"><img src="../.resources/greenbar.gif" width="10" height="10" title="14" alt="1 4"/></td><td class="ctr2" id="e4">100%</td><td class="ctr1" id="f10">1</td><td class="ctr2" id="g14">10</td><td class="ctr1" id="h10">1</td><td class="ctr2" id="i16">12</td><td class="ctr1" id="j8">1</td><td class="ctr2" id="k15">3</td><td class="ctr1" id="l10">0</td><td class="ctr2" id="m10">1</td></tr><tr><td id="a19"><a href="PosixParser.html" class="el_class">PosixParser</a></td><td class="bar" id="b11"><img src="../.resources/greenbar.gif" width="42" height="10" title="334" alt="334"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d8"><img src="../.resources/greenbar.gif" width="39" height="10" title="52" alt="52"/></td><td class="ctr2" id="e5">100%</td><td class="ctr1" id="f13">0</td><td class="ctr2" id="g5">33</td><td class="ctr1" id="h11">0</td><td class="ctr2" id="i4">69</td><td class="ctr1" id="j11">0</td><td class="ctr2" id="k10">7</td><td class="ctr1" id="l11">0</td><td class="ctr2" id="m11">1</td></tr><tr><td id="a3"><a href="CommandLine.html" class="el_clas s">CommandLine</a></td><td class="bar" id="b12"><img src="../.resources/greenbar.gif" width="35" height="10" title="282" alt="282"/></td><td class="ctr2" id="c1">100%</td><td class="bar" id="d6"><img src="../.resources/greenbar.gif" width="23" height="10" title="31" alt="31"/></td><td class="ctr2" id="e10">97%</td><td class="ctr1" id="f11">1</td><td class="ctr2" id="g4">36</td><td class="ctr1" id="h12">0</td><td class="ctr2" id="i6">59</td><td class="ctr1" id="j12">0</td><td class="ctr2" id="k4">20</td><td class="ctr1" id="l12">0</td><td class="ctr2" id="m12">1</td></tr><tr><td id="a5"><a href="GnuParser.html" class="el_class">GnuParser</a></td><td class="bar" id="b13"><img src="../.resources/greenbar.gif" width="18" height="10" title="145" alt="145"/></td><td class="ctr2" id="c2">100%</td><td class="bar" id="d10"><img src="../.resources/greenbar.gif" width="15" height="10" title="20" alt="20"/></td><td class="ctr2" id="e6">100%</td><td class="ctr1" id="f14">0</td><td class="ctr2" i d="g13">12</td><td class="ctr1" id="h13">0</td><td class="ctr2" id="i12">28</td><td class="ctr1" id="j13">0</td><td class="ctr2" id="k19">2</td><td class="ctr1" id="l13">0</td><td class="ctr2" id="m13">1</td></tr><tr><td id="a13"><a href="OptionGroup.html" class="el_class">OptionGroup</a></td><td class="bar" id="b14"><img src="../.resources/greenbar.gif" width="16" height="10" title="130" alt="130"/></td><td class="ctr2" id="c3">100%</td><td class="bar" id="d7"><img src="../.resources/greenbar.gif" width="9" height="10" title="13" alt="13"/></td><td class="ctr2" id="e13">93%</td><td class="ctr1" id="f12">1</td><td class="ctr2" id="g11">16</td><td class="ctr1" id="h14">0</td><td class="ctr2" id="i10">35</td><td class="ctr1" id="j14">0</td><td class="ctr2" id="k9">9</td><td class="ctr1" id="l14">0</td><td class="ctr2" id="m14">1</td></tr><tr><td id="a1"><a href="AmbiguousOptionException.html" class="el_class">AmbiguousOptionException</a></td><td class="bar" id="b15"><img src="../.reso urces/greenbar.gif" width="7" height="10" title="61" alt="61"/></td><td class="ctr2" id="c4">100%</td><td class="bar" id="d16"><img src="../.resources/greenbar.gif" width="3" height="10" title="4" alt="4"/></td><td class="ctr2" id="e7">100%</td><td class="ctr1" id="f15">0</td><td class="ctr2" id="g16">5</td><td class="ctr1" id="h15">0</td><td class="ctr2" id="i13">16</td><td class="ctr1" id="j15">0</td><td class="ctr2" id="k16">3</td><td class="ctr1" id="l15">0</td><td class="ctr2" id="m15">1</td></tr><tr><td id="a9"><a href="MissingOptionException.html" class="el_class">MissingOptionException</a></td><td class="bar" id="b16"><img src="../.resources/greenbar.gif" width="7" height="10" title="56" alt="56"/></td><td class="ctr2" id="c5">100%</td><td class="bar" id="d14"><img src="../.resources/greenbar.gif" width="4" height="10" title="6" alt="6"/></td><td class="ctr2" id="e8">100%</td><td class="ctr1" id="f16">0</td><td class="ctr2" id="g15">7</td><td class="ctr1" id="h16">0</td><td class="ctr2" id="i14">15</td><td class="ctr1" id="j16">0</td><td class="ctr2" id="k13">4</td><td class="ctr1" id="l16">0</td><td class="ctr2" id="m16">1</td></tr><tr><td id="a0"><a href="AlreadySelectedException.html" class="el_class">AlreadySelectedException</a></td><td class="bar" id="b17"><img src="../.resources/greenbar.gif" width="4" height="10" title="37" alt="37"/></td><td class="ctr2" id="c6">100%</td><td class="bar" id="d17"/><td class="ctr2" id="e17">n/a</td><td class="ctr1" id="f17">0</td><td class="ctr2" id="g17">4</td><td class="ctr1" id="h17">0</td><td class="ctr2" id="i17">9</td><td class="ctr1" id="j17">0</td><td class="ctr2" id="k14">4</td><td class="ctr1" id="l17">0</td><td class="ctr2" id="m17">1</td></tr><tr><td id="a8"><a href="MissingArgumentException.html" class="el_class">MissingArgumentException</a></td><td class="bar" id="b18"><img src="../.resources/greenbar.gif" width="2" height="10" title="22" alt="22"/></td><td class="ctr2" id="c7">100%</td><td class="b ar" id="d18"/><td class="ctr2" id="e18">n/a</td><td class="ctr1" id="f18">0</td><td class="ctr2" id="g18">3</td><td class="ctr1" id="h18">0</td><td class="ctr2" id="i18">6</td><td class="ctr1" id="j18">0</td><td class="ctr2" id="k17">3</td><td class="ctr1" id="l18">0</td><td class="ctr2" id="m18">1</td></tr><tr><td id="a21"><a href="UnrecognizedOptionException.html" class="el_class">UnrecognizedOptionException</a></td><td class="bar" id="b19"><img src="../.resources/greenbar.gif" width="1" height="10" title="14" alt="14"/></td><td class="ctr2" id="c8">100%</td><td class="bar" id="d19"/><td class="ctr2" id="e19">n/a</td><td class="ctr1" id="f19">0</td><td class="ctr2" id="g19">3</td><td class="ctr1" id="h19">0</td><td class="ctr2" id="i19">6</td><td class="ctr1" id="j19">0</td><td class="ctr2" id="k18">3</td><td class="ctr1" id="l19">0</td><td class="ctr2" id="m19">1</td></tr><tr><td id="a7"><a href="HelpFormatter$OptionComparator.html" class="el_class">HelpFormatter.OptionComparator </a></td><td class="bar" id="b20"><img src="../.resources/greenbar.gif" width="1" height="10" title="9" alt="9"/></td><td class="ctr2" id="c9">100%</td><td class="bar" id="d20"/><td class="ctr2" id="e20">n/a</td><td class="ctr1" id="f20">0</td><td class="ctr2" id="g20">2</td><td class="ctr1" id="h20">0</td><td class="ctr2" id="i20">2</td><td class="ctr1" id="j20">0</td><td class="ctr2" id="k20">2</td><td class="ctr1" id="l20">0</td><td class="ctr2" id="m20">1</td></tr><tr><td id="a2"><a href="BasicParser.html" class="el_class">BasicParser</a></td><td class="bar" id="b21"/><td class="ctr2" id="c10">100%</td><td class="bar" id="d21"/><td class="ctr2" id="e21">n/a</td><td class="ctr1" id="f21">0</td><td class="ctr2" id="g21">2</td><td class="ctr1" id="h21">0</td><td class="ctr2" id="i21">2</td><td class="ctr1" id="j21">0</td><td class="ctr2" id="k21">2</td><td class="ctr1" id="l21">0</td><td class="ctr2" id="m21">1</td></tr><tr><td id="a16"><a href="ParseException.html" class="el_class ">ParseException</a></td><td class="bar" id="b22"/><td class="ctr2" id="c11">100%</td><td class="bar" id="d22"/><td class="ctr2" id="e22">n/a</td><td class="ctr1" id="f22">0</td><td class="ctr2" id="g22">1</td><td class="ctr1" id="h22">0</td><td class="ctr2" id="i22">2</td><td class="ctr1" id="j22">0</td><td class="ctr2" id="k22">1</td><td class="ctr1" id="l22">0</td><td class="ctr2" id="m22">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.eclemma.org/jacoco">JaCoCo</a> 0.7.2.201409121644</span></div></body></html> \ No newline at end of file Propchange: websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/index.html ------------------------------------------------------------------------------ svn:eol-style = native Added: websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/index.source.html ============================================================================== --- websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/index.source.html (added) +++ websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/index.source.html Sat May 9 18:19:15 2015 @@ -0,0 +1 @@ +<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../.resources/report.css" type="text/css"/><link rel="shortcut icon" href="../.resources/report.gif" type="image/gif"/><title>org.apache.commons.cli</title><script type="text/javascript" src="../.resources/sort.js"></script></head><body onload="initialSort(['breadcrumb', 'coveragetable'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="index.html" class="el_class">Classes</a><a href="../.sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Apache Commons CLI</a> > <span class="el_package">org.apache.commons.cli</span></div><h1>org.apache.commons.cli</h1><table class="coverage" cellspacing="0" id="coveragetable"><thea d><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td><td class="sortable ctr1" id="l" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="m" onclick="toggleSort(this)">Classes</td></tr></thead><tfoot><tr><td>Total</td><td class="bar ">189 of 4,878</td><td class="ctr2">96%</td><td class="bar">47 of 690</td><td class="ctr2">93%</td><td class="ctr1">60</td><td class="ctr2">612</td><td class="ctr1">46</td><td class="ctr2">1,157</td><td class="ctr1">16</td><td class="ctr2">263</td><td class="ctr1">0</td><td class="ctr2">23</td></tr></tfoot><tbody><tr><td id="a9"><a href="Option.java.html" class="el_source">Option.java</a></td><td class="bar" id="b0"><img src="../.resources/redbar.gif" width="8" height="10" title="70" alt="70"/><img src="../.resources/greenbar.gif" width="73" height="10" title="589" alt="589"/></td><td class="ctr2" id="c20">89%</td><td class="bar" id="d0"><img src="../.resources/redbar.gif" width="12" height="10" title="16" alt="16"/><img src="../.resources/greenbar.gif" width="54" height="10" title="72" alt="72"/></td><td class="ctr2" id="e15">82%</td><td class="ctr1" id="f0">19</td><td class="ctr2" id="g0">107</td><td class="ctr1" id="h0">15</td><td class="ctr2" id="i2">161</td><td class="ctr1" id= "j0">5</td><td class="ctr2" id="k0">63</td><td class="ctr1" id="l0">0</td><td class="ctr2" id="m0">2</td></tr><tr><td id="a6"><a href="HelpFormatter.java.html" class="el_source">HelpFormatter.java</a></td><td class="bar" id="b1"><img src="../.resources/redbar.gif" width="5" height="10" title="46" alt="46"/><img src="../.resources/greenbar.gif" width="114" height="10" title="911" alt="911"/></td><td class="ctr2" id="c16">95%</td><td class="bar" id="d2"><img src="../.resources/redbar.gif" width="6" height="10" title="9" alt="9"/><img src="../.resources/greenbar.gif" width="85" height="10" title="113" alt="113"/></td><td class="ctr2" id="e13">93%</td><td class="ctr1" id="f1">13</td><td class="ctr2" id="g1">105</td><td class="ctr1" id="h1">11</td><td class="ctr2" id="i0">214</td><td class="ctr1" id="j1">4</td><td class="ctr2" id="k1">44</td><td class="ctr1" id="l1">0</td><td class="ctr2" id="m1">2</td></tr><tr><td id="a4"><a href="DefaultParser.java.html" class="el_source">DefaultParser .java</a></td><td class="bar" id="b2"><img src="../.resources/redbar.gif" width="3" height="10" title="25" alt="25"/><img src="../.resources/greenbar.gif" width="104" height="10" title="836" alt="836"/></td><td class="ctr2" id="c12">97%</td><td class="bar" id="d1"><img src="../.resources/redbar.gif" width="8" height="10" title="11" alt="11"/><img src="../.resources/greenbar.gif" width="111" height="10" title="147" alt="147"/></td><td class="ctr2" id="e11">93%</td><td class="ctr1" id="f2">11</td><td class="ctr2" id="g2">103</td><td class="ctr1" id="h2">5</td><td class="ctr2" id="i1">187</td><td class="ctr1" id="j8">0</td><td class="ctr2" id="k2">24</td><td class="ctr1" id="l2">0</td><td class="ctr2" id="m2">1</td></tr><tr><td id="a18"><a href="TypeHandler.java.html" class="el_source">TypeHandler.java</a></td><td class="bar" id="b3"><img src="../.resources/redbar.gif" width="1" height="10" title="11" alt="11"/><img src="../.resources/greenbar.gif" width="19" height="10" title="156" al t="156"/></td><td class="ctr2" id="c19">93%</td><td class="bar" id="d4"><img src="../.resources/redbar.gif" width="2" height="10" title="3" alt="3"/><img src="../.resources/greenbar.gif" width="12" height="10" title="17" alt="17"/></td><td class="ctr2" id="e14">85%</td><td class="ctr1" id="f3">4</td><td class="ctr2" id="g9">20</td><td class="ctr1" id="h3">4</td><td class="ctr2" id="i9">42</td><td class="ctr1" id="j3">1</td><td class="ctr2" id="k7">10</td><td class="ctr1" id="l3">0</td><td class="ctr2" id="m3">1</td></tr><tr><td id="a15"><a href="Parser.java.html" class="el_source">Parser.java</a></td><td class="bar" id="b4"><img src="../.resources/redbar.gif" width="1" height="10" title="9" alt="9"/><img src="../.resources/greenbar.gif" width="48" height="10" title="389" alt="389"/></td><td class="ctr2" id="c11">98%</td><td class="bar" id="d3"><img src="../.resources/redbar.gif" width="3" height="10" title="5" alt="5"/><img src="../.resources/greenbar.gif" width="53" height="10" tit le="71" alt="71"/></td><td class="ctr2" id="e10">93%</td><td class="ctr1" id="f4">4</td><td class="ctr2" id="g3">51</td><td class="ctr1" id="h5">2</td><td class="ctr2" id="i3">106</td><td class="ctr1" id="j9">0</td><td class="ctr2" id="k6">13</td><td class="ctr1" id="l4">0</td><td class="ctr2" id="m4">1</td></tr><tr><td id="a12"><a href="Options.java.html" class="el_source">Options.java</a></td><td class="bar" id="b5"><img src="../.resources/redbar.gif" width="1" height="10" title="9" alt="9"/><img src="../.resources/greenbar.gif" width="33" height="10" title="264" alt="264"/></td><td class="ctr2" id="c14">97%</td><td class="bar" id="d9"><img src="../.resources/greenbar.gif" width="15" height="10" title="20" alt="20"/></td><td class="ctr2" id="e0">100%</td><td class="ctr1" id="f7">1</td><td class="ctr2" id="g7">27</td><td class="ctr1" id="h6">2</td><td class="ctr2" id="i7">57</td><td class="ctr1" id="j4">1</td><td class="ctr2" id="k5">17</td><td class="ctr1" id="l5">0</td><td class= "ctr2" id="m5">1</td></tr><tr><td id="a10"><a href="OptionBuilder.java.html" class="el_source">OptionBuilder.java</a></td><td class="bar" id="b6"><img src="../.resources/redbar.gif" width="1" height="10" title="8" alt="8"/><img src="../.resources/greenbar.gif" width="18" height="10" title="146" alt="146"/></td><td class="ctr2" id="c18">95%</td><td class="bar" id="d14"><img src="../.resources/greenbar.gif" width="3" height="10" title="4" alt="4"/></td><td class="ctr2" id="e1">100%</td><td class="ctr1" id="f5">2</td><td class="ctr2" id="g8">24</td><td class="ctr1" id="h4">3</td><td class="ctr2" id="i5">66</td><td class="ctr1" id="j2">2</td><td class="ctr2" id="k3">22</td><td class="ctr1" id="l6">0</td><td class="ctr2" id="m6">1</td></tr><tr><td id="a16"><a href="PatternOptionBuilder.java.html" class="el_source">PatternOptionBuilder.java</a></td><td class="bar" id="b7"><img src="../.resources/greenbar.gif" width="20" height="10" title="163" alt="163"/></td><td class="ctr2" id="c13">97% </td><td class="bar" id="d5"><img src="../.resources/greenbar.gif" width="32" height="10" title="43" alt="43"/></td><td class="ctr2" id="e8">98%</td><td class="ctr1" id="f6">2</td><td class="ctr2" id="g6">31</td><td class="ctr1" id="h7">2</td><td class="ctr2" id="i8">51</td><td class="ctr1" id="j5">1</td><td class="ctr2" id="k10">5</td><td class="ctr1" id="l7">0</td><td class="ctr2" id="m7">1</td></tr><tr><td id="a13"><a href="OptionValidator.java.html" class="el_source">OptionValidator.java</a></td><td class="bar" id="b8"><img src="../.resources/greenbar.gif" width="10" height="10" title="86" alt="86"/></td><td class="ctr2" id="c15">97%</td><td class="bar" id="d11"><img src="../.resources/greenbar.gif" width="12" height="10" title="16" alt="16"/></td><td class="ctr2" id="e2">100%</td><td class="ctr1" id="f8">1</td><td class="ctr2" id="g11">12</td><td class="ctr1" id="h8">1</td><td class="ctr2" id="i14">14</td><td class="ctr1" id="j6">1</td><td class="ctr2" id="k11">4</td><td class= "ctr1" id="l8">0</td><td class="ctr2" id="m8">1</td></tr><tr><td id="a20"><a href="Util.java.html" class="el_source">Util.java</a></td><td class="bar" id="b9"><img src="../.resources/greenbar.gif" width="7" height="10" title="59" alt="59"/></td><td class="ctr2" id="c17">95%</td><td class="bar" id="d12"><img src="../.resources/greenbar.gif" width="10" height="10" title="14" alt="14"/></td><td class="ctr2" id="e3">100%</td><td class="ctr1" id="f9">1</td><td class="ctr2" id="g13">10</td><td class="ctr1" id="h9">1</td><td class="ctr2" id="i15">12</td><td class="ctr1" id="j7">1</td><td class="ctr2" id="k14">3</td><td class="ctr1" id="l9">0</td><td class="ctr2" id="m9">1</td></tr><tr><td id="a17"><a href="PosixParser.java.html" class="el_source">PosixParser.java</a></td><td class="bar" id="b10"><img src="../.resources/greenbar.gif" width="41" height="10" title="334" alt="334"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d8"><img src="../.resources/greenbar.gif" width="39" h eight="10" title="52" alt="52"/></td><td class="ctr2" id="e4">100%</td><td class="ctr1" id="f12">0</td><td class="ctr2" id="g5">33</td><td class="ctr1" id="h10">0</td><td class="ctr2" id="i4">69</td><td class="ctr1" id="j10">0</td><td class="ctr2" id="k9">7</td><td class="ctr1" id="l10">0</td><td class="ctr2" id="m10">1</td></tr><tr><td id="a3"><a href="CommandLine.java.html" class="el_source">CommandLine.java</a></td><td class="bar" id="b11"><img src="../.resources/greenbar.gif" width="35" height="10" title="282" alt="282"/></td><td class="ctr2" id="c1">100%</td><td class="bar" id="d6"><img src="../.resources/greenbar.gif" width="23" height="10" title="31" alt="31"/></td><td class="ctr2" id="e9">97%</td><td class="ctr1" id="f10">1</td><td class="ctr2" id="g4">36</td><td class="ctr1" id="h11">0</td><td class="ctr2" id="i6">59</td><td class="ctr1" id="j11">0</td><td class="ctr2" id="k4">20</td><td class="ctr1" id="l11">0</td><td class="ctr2" id="m11">1</td></tr><tr><td id="a5"><a hre f="GnuParser.java.html" class="el_source">GnuParser.java</a></td><td class="bar" id="b12"><img src="../.resources/greenbar.gif" width="18" height="10" title="145" alt="145"/></td><td class="ctr2" id="c2">100%</td><td class="bar" id="d10"><img src="../.resources/greenbar.gif" width="15" height="10" title="20" alt="20"/></td><td class="ctr2" id="e5">100%</td><td class="ctr1" id="f13">0</td><td class="ctr2" id="g12">12</td><td class="ctr1" id="h12">0</td><td class="ctr2" id="i11">28</td><td class="ctr1" id="j12">0</td><td class="ctr2" id="k18">2</td><td class="ctr1" id="l12">0</td><td class="ctr2" id="m12">1</td></tr><tr><td id="a11"><a href="OptionGroup.java.html" class="el_source">OptionGroup.java</a></td><td class="bar" id="b13"><img src="../.resources/greenbar.gif" width="16" height="10" title="130" alt="130"/></td><td class="ctr2" id="c3">100%</td><td class="bar" id="d7"><img src="../.resources/greenbar.gif" width="9" height="10" title="13" alt="13"/></td><td class="ctr2" id="e12" >93%</td><td class="ctr1" id="f11">1</td><td class="ctr2" id="g10">16</td><td >class="ctr1" id="h13">0</td><td class="ctr2" id="i10">35</td><td class="ctr1" >id="j13">0</td><td class="ctr2" id="k8">9</td><td class="ctr1" >id="l13">0</td><td class="ctr2" id="m13">1</td></tr><tr><td id="a1"><a >href="AmbiguousOptionException.java.html" >class="el_source">AmbiguousOptionException.java</a></td><td class="bar" >id="b14"><img src="../.resources/greenbar.gif" width="7" height="10" >title="61" alt="61"/></td><td class="ctr2" id="c4">100%</td><td class="bar" >id="d15"><img src="../.resources/greenbar.gif" width="3" height="10" >title="4" alt="4"/></td><td class="ctr2" id="e6">100%</td><td class="ctr1" >id="f14">0</td><td class="ctr2" id="g15">5</td><td class="ctr1" >id="h14">0</td><td class="ctr2" id="i12">16</td><td class="ctr1" >id="j14">0</td><td class="ctr2" id="k15">3</td><td class="ctr1" >id="l14">0</td><td class="ctr2" id="m14">1</td></tr><tr><td id="a8"><a >href="MissingOptionException.java.html" class="el_source">MissingOptionException.java</a></td><td class="bar" id="b15"><img src="../.resources/greenbar.gif" width="7" height="10" title="56" alt="56"/></td><td class="ctr2" id="c5">100%</td><td class="bar" id="d13"><img src="../.resources/greenbar.gif" width="4" height="10" title="6" alt="6"/></td><td class="ctr2" id="e7">100%</td><td class="ctr1" id="f15">0</td><td class="ctr2" id="g14">7</td><td class="ctr1" id="h15">0</td><td class="ctr2" id="i13">15</td><td class="ctr1" id="j15">0</td><td class="ctr2" id="k12">4</td><td class="ctr1" id="l15">0</td><td class="ctr2" id="m15">1</td></tr><tr><td id="a0"><a href="AlreadySelectedException.java.html" class="el_source">AlreadySelectedException.java</a></td><td class="bar" id="b16"><img src="../.resources/greenbar.gif" width="4" height="10" title="37" alt="37"/></td><td class="ctr2" id="c6">100%</td><td class="bar" id="d16"/><td class="ctr2" id="e16">n/a</td><td class="ctr1" id="f16">0</td><td class="ctr2" id="g16">4</td><td cla ss="ctr1" id="h16">0</td><td class="ctr2" id="i16">9</td><td class="ctr1" id="j16">0</td><td class="ctr2" id="k13">4</td><td class="ctr1" id="l16">0</td><td class="ctr2" id="m16">1</td></tr><tr><td id="a7"><a href="MissingArgumentException.java.html" class="el_source">MissingArgumentException.java</a></td><td class="bar" id="b17"><img src="../.resources/greenbar.gif" width="2" height="10" title="22" alt="22"/></td><td class="ctr2" id="c7">100%</td><td class="bar" id="d17"/><td class="ctr2" id="e17">n/a</td><td class="ctr1" id="f17">0</td><td class="ctr2" id="g17">3</td><td class="ctr1" id="h17">0</td><td class="ctr2" id="i17">6</td><td class="ctr1" id="j17">0</td><td class="ctr2" id="k16">3</td><td class="ctr1" id="l17">0</td><td class="ctr2" id="m17">1</td></tr><tr><td id="a19"><a href="UnrecognizedOptionException.java.html" class="el_source">UnrecognizedOptionException.java</a></td><td class="bar" id="b18"><img src="../.resources/greenbar.gif" width="1" height="10" title="14" alt= "14"/></td><td class="ctr2" id="c8">100%</td><td class="bar" id="d18"/><td class="ctr2" id="e18">n/a</td><td class="ctr1" id="f18">0</td><td class="ctr2" id="g18">3</td><td class="ctr1" id="h18">0</td><td class="ctr2" id="i18">6</td><td class="ctr1" id="j18">0</td><td class="ctr2" id="k17">3</td><td class="ctr1" id="l18">0</td><td class="ctr2" id="m18">1</td></tr><tr><td id="a2"><a href="BasicParser.java.html" class="el_source">BasicParser.java</a></td><td class="bar" id="b19"/><td class="ctr2" id="c9">100%</td><td class="bar" id="d19"/><td class="ctr2" id="e19">n/a</td><td class="ctr1" id="f19">0</td><td class="ctr2" id="g19">2</td><td class="ctr1" id="h19">0</td><td class="ctr2" id="i19">2</td><td class="ctr1" id="j19">0</td><td class="ctr2" id="k19">2</td><td class="ctr1" id="l19">0</td><td class="ctr2" id="m19">1</td></tr><tr><td id="a14"><a href="ParseException.java.html" class="el_source">ParseException.java</a></td><td class="bar" id="b20"/><td class="ctr2" id="c10">100%</td> <td class="bar" id="d20"/><td class="ctr2" id="e20">n/a</td><td class="ctr1" id="f20">0</td><td class="ctr2" id="g20">1</td><td class="ctr1" id="h20">0</td><td class="ctr2" id="i20">2</td><td class="ctr1" id="j20">0</td><td class="ctr2" id="k20">1</td><td class="ctr1" id="l20">0</td><td class="ctr2" id="m20">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.eclemma.org/jacoco">JaCoCo</a> 0.7.2.201409121644</span></div></body></html> \ No newline at end of file Propchange: websites/production/commons/content/proper/commons-cli/jacoco/org.apache.commons.cli/index.source.html ------------------------------------------------------------------------------ svn:eol-style = native Modified: websites/production/commons/content/proper/commons-cli/jdepend-report.html ============================================================================== --- websites/production/commons/content/proper/commons-cli/jdepend-report.html (original) +++ websites/production/commons/content/proper/commons-cli/jdepend-report.html Sat May 9 18:19:15 2015 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 06 April 2015 + | Generated by Apache Maven Doxia at 09 May 2015 | Rendered using Apache Maven Fluido Skin 1.3.0 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="iso-8859-1" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20150406" /> + <meta name="Date-Revision-yyyymmdd" content="20150509" /> <meta http-equiv="Content-Language" content="en" /> <title>Commons CLI – JDepend Report Metrics</title> @@ -21,7 +21,7 @@ <script type="text/javascript" src="./js/site.js"></script> -<link rel="stylesheet" type="text/css" media="all" href="./css/prettify.css"/> +<link rel="stylesheet" href="./css/prettify.css" media="all" type="text/css"/> <script src="./js/prettify.js" type="text/javascript"></script> <script type="text/javascript">window.onload=function() { prettyPrint(); @@ -43,8 +43,8 @@ <a class="brand" href="http://commons.apache.org/proper/commons-cli/">Apache Commons CLI ™</a> <ul class="nav"> - <li id="publishDate">Last Published: 06 April 2015</li> - <li class="divider">|</li> <li id="projectVersion">Version: 1.3-SNAPSHOT</li> + <li id="publishDate">Last Published: 09 May 2015</li> + <li class="divider">|</li> <li id="projectVersion">Version: 1.3</li> </ul> <div class="pull-right"> <ul class="nav"> <li> @@ -112,12 +112,12 @@ Option properties</a> </li> <li class="none"> - <a href="apidocs/index.html" title="Javadoc (Current 1.3-SNAPSHOT)"> - Javadoc (Current 1.3-SNAPSHOT)</a> + <a href="apidocs/index.html" title="Javadoc (Current 1.3)"> + Javadoc (Current 1.3)</a> </li> <li class="none"> - <a href="javadocs/api-release/index.html" title="Javadoc (1.2)"> - Javadoc (1.2)</a> + <a href="javadocs/api-release/index.html" title="Javadoc (1.3)"> + Javadoc (1.3)</a> </li> </ul> <ul class="nav nav-list"> @@ -126,7 +126,7 @@ <a href="project-info.html" title="Project Information"> Project Information</a> </li> - <li class="expanded"> + <li class="expanded"> <a href="project-reports.html" title="Project Reports"> Project Reports</a> <ul> @@ -167,24 +167,20 @@ JDepend</a> </li> <li class="none"> - <a href="checkstyle.html" title="Checkstyle"> - Checkstyle</a> - </li> - <li class="none"> - <a href="findbugs.html" title="FindBugs Report"> - FindBugs Report</a> + <a href="jacoco/index.html" title="JaCoCo Test"> + JaCoCo Test</a> </li> <li class="none"> - <a href="cobertura/index.html" title="Cobertura Test Coverage"> - Cobertura Test Coverage</a> + <a href="checkstyle.html" title="Checkstyle"> + Checkstyle</a> </li> <li class="none"> - <a href="pmd.html" title="PMD Report"> - PMD Report</a> + <a href="findbugs.html" title="FindBugs"> + FindBugs</a> </li> <li class="none"> - <a href="cpd.html" title="CPD Report"> - CPD Report</a> + <a href="cpd.html" title="CPD"> + CPD</a> </li> </ul> </li> Modified: websites/production/commons/content/proper/commons-cli/jira-report.html ============================================================================== --- websites/production/commons/content/proper/commons-cli/jira-report.html (original) +++ websites/production/commons/content/proper/commons-cli/jira-report.html Sat May 9 18:19:15 2015 @@ -1,13 +1,13 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 06 April 2015 + | Generated by Apache Maven Doxia at 09 May 2015 | Rendered using Apache Maven Fluido Skin 1.3.0 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="iso-8859-1" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20150406" /> + <meta name="Date-Revision-yyyymmdd" content="20150509" /> <meta http-equiv="Content-Language" content="en" /> <title>Commons CLI – JIRA Report</title> @@ -21,7 +21,7 @@ <script type="text/javascript" src="./js/site.js"></script> -<link rel="stylesheet" type="text/css" media="all" href="./css/prettify.css"/> +<link rel="stylesheet" href="./css/prettify.css" media="all" type="text/css"/> <script src="./js/prettify.js" type="text/javascript"></script> <script type="text/javascript">window.onload=function() { prettyPrint(); @@ -43,8 +43,8 @@ <a class="brand" href="http://commons.apache.org/proper/commons-cli/">Apache Commons CLI ™</a> <ul class="nav"> - <li id="publishDate">Last Published: 06 April 2015</li> - <li class="divider">|</li> <li id="projectVersion">Version: 1.3-SNAPSHOT</li> + <li id="publishDate">Last Published: 09 May 2015</li> + <li class="divider">|</li> <li id="projectVersion">Version: 1.3</li> </ul> <div class="pull-right"> <ul class="nav"> <li> @@ -112,12 +112,12 @@ Option properties</a> </li> <li class="none"> - <a href="apidocs/index.html" title="Javadoc (Current 1.3-SNAPSHOT)"> - Javadoc (Current 1.3-SNAPSHOT)</a> + <a href="apidocs/index.html" title="Javadoc (Current 1.3)"> + Javadoc (Current 1.3)</a> </li> <li class="none"> - <a href="javadocs/api-release/index.html" title="Javadoc (1.2)"> - Javadoc (1.2)</a> + <a href="javadocs/api-release/index.html" title="Javadoc (1.3)"> + Javadoc (1.3)</a> </li> </ul> <ul class="nav nav-list"> @@ -126,7 +126,7 @@ <a href="project-info.html" title="Project Information"> Project Information</a> </li> - <li class="expanded"> + <li class="expanded"> <a href="project-reports.html" title="Project Reports"> Project Reports</a> <ul> @@ -167,24 +167,20 @@ JDepend</a> </li> <li class="none"> - <a href="checkstyle.html" title="Checkstyle"> - Checkstyle</a> - </li> - <li class="none"> - <a href="findbugs.html" title="FindBugs Report"> - FindBugs Report</a> + <a href="jacoco/index.html" title="JaCoCo Test"> + JaCoCo Test</a> </li> <li class="none"> - <a href="cobertura/index.html" title="Cobertura Test Coverage"> - Cobertura Test Coverage</a> + <a href="checkstyle.html" title="Checkstyle"> + Checkstyle</a> </li> <li class="none"> - <a href="pmd.html" title="PMD Report"> - PMD Report</a> + <a href="findbugs.html" title="FindBugs"> + FindBugs</a> </li> <li class="none"> - <a href="cpd.html" title="CPD Report"> - CPD Report</a> + <a href="cpd.html" title="CPD"> + CPD</a> </li> </ul> </li> @@ -774,13 +770,21 @@ <td>Closed</td></tr> <tr class="b"> <td>1.3</td> +<td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-248">CLI-248</a></td> +<td>Documentation</td> +<td>dead links on doc page</td> +<td>Bug</td> +<td>Fixed</td> +<td>Resolved</td></tr> +<tr class="a"> +<td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-241">CLI-241</a></td> <td>Validation</td> <td>OptionValidator Implementation Does Not Agree With JavaDoc</td> <td>Bug</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="a"> +<tr class="b"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-230">CLI-230</a></td> <td>CLI-1.x, Options definition</td> @@ -788,7 +792,7 @@ <td>Bug</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="b"> +<tr class="a"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-224">CLI-224</a></td> <td>CLI-1.x</td> @@ -796,7 +800,7 @@ <td>Bug</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="a"> +<tr class="b"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-220">CLI-220</a></td> <td>CLI-1.x, Documentation</td> @@ -804,7 +808,7 @@ <td>Bug</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="b"> +<tr class="a"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-215">CLI-215</a></td> <td>CLI-1.x</td> @@ -812,7 +816,7 @@ <td>Bug</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="a"> +<tr class="b"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-209">CLI-209</a></td> <td>CLI-1.x</td> @@ -820,7 +824,7 @@ <td>Bug</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="b"> +<tr class="a"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-208">CLI-208</a></td> <td>Documentation</td> @@ -828,7 +832,7 @@ <td>Bug</td> <td>Fixed</td> <td>Closed</td></tr> -<tr class="a"> +<tr class="b"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-207">CLI-207</a></td> <td>Help formatter</td> @@ -836,7 +840,7 @@ <td>Bug</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="b"> +<tr class="a"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-205">CLI-205</a></td> <td>Help formatter</td> @@ -844,7 +848,7 @@ <td>Bug</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="a"> +<tr class="b"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-204">CLI-204</a></td> <td>Parser</td> @@ -852,7 +856,7 @@ <td>Bug</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="b"> +<tr class="a"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-203">CLI-203</a></td> <td>Parser</td> @@ -860,7 +864,7 @@ <td>Bug</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="a"> +<tr class="b"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-202">CLI-202</a></td> <td>Parser</td> @@ -868,7 +872,7 @@ <td>Bug</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="b"> +<tr class="a"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-201">CLI-201</a></td> <td>Parser</td> @@ -876,7 +880,7 @@ <td>Bug</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="a"> +<tr class="b"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-200">CLI-200</a></td> <td>Documentation</td> @@ -884,7 +888,7 @@ <td>Bug</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="b"> +<tr class="a"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-197">CLI-197</a></td> <td>Documentation</td> @@ -892,7 +896,7 @@ <td>Bug</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="a"> +<tr class="b"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-193">CLI-193</a></td> <td>CLI-1.x</td> @@ -900,7 +904,7 @@ <td>Bug</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="b"> +<tr class="a"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-191">CLI-191</a></td> <td></td> @@ -908,7 +912,7 @@ <td>Bug</td> <td>Fixed</td> <td>Closed</td></tr> -<tr class="a"> +<tr class="b"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-186">CLI-186</a></td> <td>Help formatter</td> @@ -916,7 +920,7 @@ <td>Bug</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="b"> +<tr class="a"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-185">CLI-185</a></td> <td>Parser</td> @@ -924,7 +928,7 @@ <td>Bug</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="a"> +<tr class="b"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-184">CLI-184</a></td> <td></td> @@ -932,7 +936,7 @@ <td>Bug</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="b"> +<tr class="a"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-183">CLI-183</a></td> <td></td> @@ -940,7 +944,7 @@ <td>Bug</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="a"> +<tr class="b"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-182">CLI-182</a></td> <td>Options definition</td> @@ -948,7 +952,7 @@ <td>Bug</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="b"> +<tr class="a"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-161">CLI-161</a></td> <td>Parser</td> @@ -956,7 +960,7 @@ <td>Bug</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="a"> +<tr class="b"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-240">CLI-240</a></td> <td></td> @@ -964,7 +968,7 @@ <td>Improvement</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="b"> +<tr class="a"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-234">CLI-234</a></td> <td>Documentation</td> @@ -972,7 +976,7 @@ <td>Improvement</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="a"> +<tr class="b"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-231">CLI-231</a></td> <td>CLI-1.x</td> @@ -980,7 +984,7 @@ <td>Improvement</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="b"> +<tr class="a"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-214">CLI-214</a></td> <td>CLI-1.x</td> @@ -988,7 +992,7 @@ <td>Improvement</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="a"> +<tr class="b"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-212">CLI-212</a></td> <td>Help formatter</td> @@ -996,7 +1000,7 @@ <td>Improvement</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="b"> +<tr class="a"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-181">CLI-181</a></td> <td>Parser</td> @@ -1004,7 +1008,7 @@ <td>Improvement</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="a"> +<tr class="b"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-169">CLI-169</a></td> <td>Help formatter</td> @@ -1012,7 +1016,7 @@ <td>Improvement</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="b"> +<tr class="a"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-167">CLI-167</a></td> <td>Parser</td> @@ -1020,7 +1024,7 @@ <td>Improvement</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="a"> +<tr class="b"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-160">CLI-160</a></td> <td>Parser</td> @@ -1028,7 +1032,7 @@ <td>Improvement</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="b"> +<tr class="a"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-218">CLI-218</a></td> <td>CLI-1.x</td> @@ -1036,7 +1040,7 @@ <td>New Feature</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="a"> +<tr class="b"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-223">CLI-223</a></td> <td>CLI-1.x</td> @@ -1044,7 +1048,7 @@ <td>Task</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="b"> +<tr class="a"> <td>1.3</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-227">CLI-227</a></td> <td>CLI-1.x</td> @@ -1052,7 +1056,7 @@ <td>Test</td> <td>Fixed</td> <td>Resolved</td></tr> -<tr class="a"> +<tr class="b"> <td>1.2</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-177">CLI-177</a></td> <td>Options definition</td> @@ -1060,7 +1064,7 @@ <td>Bug</td> <td>Fixed</td> <td>Closed</td></tr> -<tr class="b"> +<tr class="a"> <td>1.2</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-175">CLI-175</a></td> <td>CLI-1.x</td> @@ -1068,7 +1072,7 @@ <td>Bug</td> <td>Fixed</td> <td>Closed</td></tr> -<tr class="a"> +<tr class="b"> <td>1.2</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-165">CLI-165</a></td> <td>Parser</td> @@ -1076,21 +1080,13 @@ <td>Bug</td> <td>Fixed</td> <td>Closed</td></tr> -<tr class="b"> +<tr class="a"> <td>1.2</td> <td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-164">CLI-164</a></td> <td>Parser</td> <td>PosixParser ignores unrecognized tokens starting with '-'</td> <td>Bug</td> <td>Fixed</td> -<td>Closed</td></tr> -<tr class="a"> -<td>1.2</td> -<td><a class="externalLink" href="https://issues.apache.org/jira/browse/CLI-163">CLI-163</a></td> -<td>Parser</td> -<td>PosixParser keeps bursting tokens even if a non option character is found</td> -<td>Bug</td> -<td>Fixed</td> <td>Closed</td></tr></table></div> </td> </tr> Modified: websites/production/commons/content/proper/commons-cli/mail-lists.html ============================================================================== --- websites/production/commons/content/proper/commons-cli/mail-lists.html (original) +++ websites/production/commons/content/proper/commons-cli/mail-lists.html Sat May 9 18:19:15 2015 @@ -1,6 +1,6 @@ <!DOCTYPE html> <!-- - | Generated by Apache Maven Doxia at 06 April 2015 + | Generated by Apache Maven Doxia at 09 May 2015 | Rendered using Apache Maven Fluido Skin 1.3.0 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> @@ -8,7 +8,7 @@ <meta charset="iso-8859-1" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="author" content="Commons Documentation Team" /> - <meta name="Date-Revision-yyyymmdd" content="20150406" /> + <meta name="Date-Revision-yyyymmdd" content="20150509" /> <meta http-equiv="Content-Language" content="en" /> <title>Commons CLI – Commons CLI Mailing Lists</title> @@ -22,7 +22,7 @@ <script type="text/javascript" src="./js/site.js"></script> -<link rel="stylesheet" type="text/css" media="all" href="./css/prettify.css"/> +<link rel="stylesheet" href="./css/prettify.css" media="all" type="text/css"/> <script src="./js/prettify.js" type="text/javascript"></script> <script type="text/javascript">window.onload=function() { prettyPrint(); @@ -44,8 +44,8 @@ <a class="brand" href="http://commons.apache.org/proper/commons-cli/">Apache Commons CLI ™</a> <ul class="nav"> - <li id="publishDate">Last Published: 06 April 2015</li> - <li class="divider">|</li> <li id="projectVersion">Version: 1.3-SNAPSHOT</li> + <li id="publishDate">Last Published: 09 May 2015</li> + <li class="divider">|</li> <li id="projectVersion">Version: 1.3</li> </ul> <div class="pull-right"> <ul class="nav"> <li> @@ -113,12 +113,12 @@ Option properties</a> </li> <li class="none"> - <a href="apidocs/index.html" title="Javadoc (Current 1.3-SNAPSHOT)"> - Javadoc (Current 1.3-SNAPSHOT)</a> + <a href="apidocs/index.html" title="Javadoc (Current 1.3)"> + Javadoc (Current 1.3)</a> </li> <li class="none"> - <a href="javadocs/api-release/index.html" title="Javadoc (1.2)"> - Javadoc (1.2)</a> + <a href="javadocs/api-release/index.html" title="Javadoc (1.3)"> + Javadoc (1.3)</a> </li> </ul> <ul class="nav nav-list"> @@ -173,7 +173,7 @@ </li> </ul> </li> - <li class="collapsed"> + <li class="collapsed"> <a href="project-reports.html" title="Project Reports"> Project Reports</a> </li> Added: websites/production/commons/content/proper/commons-cli/profile.jacoco ============================================================================== (empty)