http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/anttasks/ResourceCollectionContainer.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/anttasks/ResourceCollectionContainer.html b/rat/xref/org/apache/rat/anttasks/ResourceCollectionContainer.html index 4424a9f..f828c6b 100644 --- a/rat/xref/org/apache/rat/anttasks/ResourceCollectionContainer.html +++ b/rat/xref/org/apache/rat/anttasks/ResourceCollectionContainer.html @@ -56,63 +56,61 @@ <a class="jxr_linenumber" name="L48" href="#L48">48</a> <a class="jxr_linenumber" name="L49" href="#L49">49</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> run(<a href="../../../../org/apache/rat/report/RatReport.html">RatReport</a> report) <strong class="jxr_keyword">throws</strong> RatException { <a class="jxr_linenumber" name="L50" href="#L50">50</a> <a href="../../../../org/apache/rat/anttasks/ResourceCollectionContainer.html">ResourceDocument</a> document = <strong class="jxr_keyword">new</strong> <a href="../../../../org/apache/rat/anttasks/ResourceCollectionContainer.html">ResourceDocument</a>(); -<a class="jxr_linenumber" name="L51" href="#L51">51</a> <strong class="jxr_keyword">for</strong> (Iterator<?> iter = rc.iterator(); iter.hasNext(); ) { -<a class="jxr_linenumber" name="L52" href="#L52">52</a> Resource r = (Resource) iter.next(); -<a class="jxr_linenumber" name="L53" href="#L53">53</a> <strong class="jxr_keyword">if</strong> (!r.isDirectory()) { -<a class="jxr_linenumber" name="L54" href="#L54">54</a> document.setResource(r); -<a class="jxr_linenumber" name="L55" href="#L55">55</a> document.getMetaData().clear(); -<a class="jxr_linenumber" name="L56" href="#L56">56</a> report.report(document); -<a class="jxr_linenumber" name="L57" href="#L57">57</a> } -<a class="jxr_linenumber" name="L58" href="#L58">58</a> } -<a class="jxr_linenumber" name="L59" href="#L59">59</a> } -<a class="jxr_linenumber" name="L60" href="#L60">60</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../org/apache/rat/anttasks/ResourceCollectionContainer.html">ResourceDocument</a> <strong class="jxr_keyword">implements</strong> <a href="../../../../org/apache/rat/api/Document.html">Document</a> { -<a class="jxr_linenumber" name="L61" href="#L61">61</a> -<a class="jxr_linenumber" name="L62" href="#L62">62</a> <strong class="jxr_keyword">private</strong> Resource resource; -<a class="jxr_linenumber" name="L63" href="#L63">63</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">final</strong> <a href="../../../../org/apache/rat/api/MetaData.html">MetaData</a> metaData = <strong class="jxr_keyword">new</strong> <a href="../../../../org/apache/rat/api/MetaData.html">MetaData</a>(); -<a class="jxr_linenumber" name="L64" href="#L64">64</a> -<a class="jxr_linenumber" name="L65" href="#L65">65</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> setResource(Resource resource) { -<a class="jxr_linenumber" name="L66" href="#L66">66</a> <strong class="jxr_keyword">this</strong>.resource = resource; -<a class="jxr_linenumber" name="L67" href="#L67">67</a> } -<a class="jxr_linenumber" name="L68" href="#L68">68</a> -<a class="jxr_linenumber" name="L69" href="#L69">69</a> <strong class="jxr_keyword">public</strong> Reader reader() <strong class="jxr_keyword">throws</strong> IOException { -<a class="jxr_linenumber" name="L70" href="#L70">70</a> <strong class="jxr_keyword">final</strong> InputStream in = resource.getInputStream(); -<a class="jxr_linenumber" name="L71" href="#L71">71</a> <strong class="jxr_keyword">final</strong> Reader result = <strong class="jxr_keyword">new</strong> InputStreamReader(in); -<a class="jxr_linenumber" name="L72" href="#L72">72</a> <strong class="jxr_keyword">return</strong> result; -<a class="jxr_linenumber" name="L73" href="#L73">73</a> } -<a class="jxr_linenumber" name="L74" href="#L74">74</a> -<a class="jxr_linenumber" name="L75" href="#L75">75</a> <strong class="jxr_keyword">public</strong> String getName() { -<a class="jxr_linenumber" name="L76" href="#L76">76</a> <em class="jxr_comment">// TODO: reconsider names</em> -<a class="jxr_linenumber" name="L77" href="#L77">77</a> String result = <strong class="jxr_keyword">null</strong>; -<a class="jxr_linenumber" name="L78" href="#L78">78</a> <strong class="jxr_keyword">if</strong> (resource instanceof FileResource) { -<a class="jxr_linenumber" name="L79" href="#L79">79</a> <strong class="jxr_keyword">final</strong> FileResource fileResource = (FileResource) resource; -<a class="jxr_linenumber" name="L80" href="#L80">80</a> <strong class="jxr_keyword">final</strong> File file = fileResource.getFile(); -<a class="jxr_linenumber" name="L81" href="#L81">81</a> result = DocumentImplUtils.toName(file); -<a class="jxr_linenumber" name="L82" href="#L82">82</a> } <strong class="jxr_keyword">else</strong> { -<a class="jxr_linenumber" name="L83" href="#L83">83</a> result = resource.getName(); -<a class="jxr_linenumber" name="L84" href="#L84">84</a> } -<a class="jxr_linenumber" name="L85" href="#L85">85</a> <strong class="jxr_keyword">return</strong> result; -<a class="jxr_linenumber" name="L86" href="#L86">86</a> } -<a class="jxr_linenumber" name="L87" href="#L87">87</a> -<a class="jxr_linenumber" name="L88" href="#L88">88</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> isComposite() { -<a class="jxr_linenumber" name="L89" href="#L89">89</a> <strong class="jxr_keyword">if</strong> (resource instanceof FileResource) { -<a class="jxr_linenumber" name="L90" href="#L90">90</a> <strong class="jxr_keyword">final</strong> FileResource fileResource = (FileResource) resource; -<a class="jxr_linenumber" name="L91" href="#L91">91</a> <strong class="jxr_keyword">final</strong> File file = fileResource.getFile(); -<a class="jxr_linenumber" name="L92" href="#L92">92</a> <strong class="jxr_keyword">return</strong> DocumentImplUtils.isZip(file); -<a class="jxr_linenumber" name="L93" href="#L93">93</a> } -<a class="jxr_linenumber" name="L94" href="#L94">94</a> <strong class="jxr_keyword">return</strong> false; -<a class="jxr_linenumber" name="L95" href="#L95">95</a> } -<a class="jxr_linenumber" name="L96" href="#L96">96</a> -<a class="jxr_linenumber" name="L97" href="#L97">97</a> <strong class="jxr_keyword">public</strong> <a href="../../../../org/apache/rat/api/MetaData.html">MetaData</a> getMetaData() { -<a class="jxr_linenumber" name="L98" href="#L98">98</a> <strong class="jxr_keyword">return</strong> metaData; -<a class="jxr_linenumber" name="L99" href="#L99">99</a> } -<a class="jxr_linenumber" name="L100" href="#L100">100</a> -<a class="jxr_linenumber" name="L101" href="#L101">101</a> <strong class="jxr_keyword">public</strong> InputStream inputStream() <strong class="jxr_keyword">throws</strong> IOException { -<a class="jxr_linenumber" name="L102" href="#L102">102</a> <strong class="jxr_keyword">return</strong> resource.getInputStream(); -<a class="jxr_linenumber" name="L103" href="#L103">103</a> } -<a class="jxr_linenumber" name="L104" href="#L104">104</a> } -<a class="jxr_linenumber" name="L105" href="#L105">105</a> } +<a class="jxr_linenumber" name="L51" href="#L51">51</a> <strong class="jxr_keyword">for</strong> (Resource r : rc) { +<a class="jxr_linenumber" name="L52" href="#L52">52</a> <strong class="jxr_keyword">if</strong> (!r.isDirectory()) { +<a class="jxr_linenumber" name="L53" href="#L53">53</a> document.setResource(r); +<a class="jxr_linenumber" name="L54" href="#L54">54</a> document.getMetaData().clear(); +<a class="jxr_linenumber" name="L55" href="#L55">55</a> report.report(document); +<a class="jxr_linenumber" name="L56" href="#L56">56</a> } +<a class="jxr_linenumber" name="L57" href="#L57">57</a> } +<a class="jxr_linenumber" name="L58" href="#L58">58</a> } +<a class="jxr_linenumber" name="L59" href="#L59">59</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../org/apache/rat/anttasks/ResourceCollectionContainer.html">ResourceDocument</a> <strong class="jxr_keyword">implements</strong> <a href="../../../../org/apache/rat/api/Document.html">Document</a> { +<a class="jxr_linenumber" name="L60" href="#L60">60</a> +<a class="jxr_linenumber" name="L61" href="#L61">61</a> <strong class="jxr_keyword">private</strong> Resource resource; +<a class="jxr_linenumber" name="L62" href="#L62">62</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">final</strong> <a href="../../../../org/apache/rat/api/MetaData.html">MetaData</a> metaData = <strong class="jxr_keyword">new</strong> <a href="../../../../org/apache/rat/api/MetaData.html">MetaData</a>(); +<a class="jxr_linenumber" name="L63" href="#L63">63</a> +<a class="jxr_linenumber" name="L64" href="#L64">64</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> setResource(Resource resource) { +<a class="jxr_linenumber" name="L65" href="#L65">65</a> <strong class="jxr_keyword">this</strong>.resource = resource; +<a class="jxr_linenumber" name="L66" href="#L66">66</a> } +<a class="jxr_linenumber" name="L67" href="#L67">67</a> +<a class="jxr_linenumber" name="L68" href="#L68">68</a> <strong class="jxr_keyword">public</strong> Reader reader() <strong class="jxr_keyword">throws</strong> IOException { +<a class="jxr_linenumber" name="L69" href="#L69">69</a> <strong class="jxr_keyword">final</strong> InputStream in = resource.getInputStream(); +<a class="jxr_linenumber" name="L70" href="#L70">70</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> InputStreamReader(in); +<a class="jxr_linenumber" name="L71" href="#L71">71</a> } +<a class="jxr_linenumber" name="L72" href="#L72">72</a> +<a class="jxr_linenumber" name="L73" href="#L73">73</a> <strong class="jxr_keyword">public</strong> String getName() { +<a class="jxr_linenumber" name="L74" href="#L74">74</a> <em class="jxr_comment">// TODO: reconsider names</em> +<a class="jxr_linenumber" name="L75" href="#L75">75</a> String result = <strong class="jxr_keyword">null</strong>; +<a class="jxr_linenumber" name="L76" href="#L76">76</a> <strong class="jxr_keyword">if</strong> (resource instanceof FileResource) { +<a class="jxr_linenumber" name="L77" href="#L77">77</a> <strong class="jxr_keyword">final</strong> FileResource fileResource = (FileResource) resource; +<a class="jxr_linenumber" name="L78" href="#L78">78</a> <strong class="jxr_keyword">final</strong> File file = fileResource.getFile(); +<a class="jxr_linenumber" name="L79" href="#L79">79</a> result = DocumentImplUtils.toName(file); +<a class="jxr_linenumber" name="L80" href="#L80">80</a> } <strong class="jxr_keyword">else</strong> { +<a class="jxr_linenumber" name="L81" href="#L81">81</a> result = resource.getName(); +<a class="jxr_linenumber" name="L82" href="#L82">82</a> } +<a class="jxr_linenumber" name="L83" href="#L83">83</a> <strong class="jxr_keyword">return</strong> result; +<a class="jxr_linenumber" name="L84" href="#L84">84</a> } +<a class="jxr_linenumber" name="L85" href="#L85">85</a> +<a class="jxr_linenumber" name="L86" href="#L86">86</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> isComposite() { +<a class="jxr_linenumber" name="L87" href="#L87">87</a> <strong class="jxr_keyword">if</strong> (resource instanceof FileResource) { +<a class="jxr_linenumber" name="L88" href="#L88">88</a> <strong class="jxr_keyword">final</strong> FileResource fileResource = (FileResource) resource; +<a class="jxr_linenumber" name="L89" href="#L89">89</a> <strong class="jxr_keyword">final</strong> File file = fileResource.getFile(); +<a class="jxr_linenumber" name="L90" href="#L90">90</a> <strong class="jxr_keyword">return</strong> DocumentImplUtils.isZip(file); +<a class="jxr_linenumber" name="L91" href="#L91">91</a> } +<a class="jxr_linenumber" name="L92" href="#L92">92</a> <strong class="jxr_keyword">return</strong> false; +<a class="jxr_linenumber" name="L93" href="#L93">93</a> } +<a class="jxr_linenumber" name="L94" href="#L94">94</a> +<a class="jxr_linenumber" name="L95" href="#L95">95</a> <strong class="jxr_keyword">public</strong> <a href="../../../../org/apache/rat/api/MetaData.html">MetaData</a> getMetaData() { +<a class="jxr_linenumber" name="L96" href="#L96">96</a> <strong class="jxr_keyword">return</strong> metaData; +<a class="jxr_linenumber" name="L97" href="#L97">97</a> } +<a class="jxr_linenumber" name="L98" href="#L98">98</a> +<a class="jxr_linenumber" name="L99" href="#L99">99</a> <strong class="jxr_keyword">public</strong> InputStream inputStream() <strong class="jxr_keyword">throws</strong> IOException { +<a class="jxr_linenumber" name="L100" href="#L100">100</a> <strong class="jxr_keyword">return</strong> resource.getInputStream(); +<a class="jxr_linenumber" name="L101" href="#L101">101</a> } +<a class="jxr_linenumber" name="L102" href="#L102">102</a> } +<a class="jxr_linenumber" name="L103" href="#L103">103</a> } </pre> <hr/> -<div id="footer">Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> </body> </html>
http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/anttasks/SubstringLicenseMatcher.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/anttasks/SubstringLicenseMatcher.html b/rat/xref/org/apache/rat/anttasks/SubstringLicenseMatcher.html index b6a8ec2..5f630ef 100644 --- a/rat/xref/org/apache/rat/anttasks/SubstringLicenseMatcher.html +++ b/rat/xref/org/apache/rat/anttasks/SubstringLicenseMatcher.html @@ -80,6 +80,6 @@ <a class="jxr_linenumber" name="L72" href="#L72">72</a> } </pre> <hr/> -<div id="footer">Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> </body> </html> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/anttasks/package-frame.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/anttasks/package-frame.html b/rat/xref/org/apache/rat/anttasks/package-frame.html index a1a31c7..05b4d13 100644 --- a/rat/xref/org/apache/rat/anttasks/package-frame.html +++ b/rat/xref/org/apache/rat/anttasks/package-frame.html @@ -3,7 +3,7 @@ <html xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> - <title>Apache Creadur Rat 0.13-SNAPSHOT Reference Package org.apache.rat.anttasks</title> + <title>Apache Creadur Rat 0.13 Reference Package org.apache.rat.anttasks</title> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="style" /> </head> <body> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/anttasks/package-summary.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/anttasks/package-summary.html b/rat/xref/org/apache/rat/anttasks/package-summary.html index e93431f..bf7e327 100644 --- a/rat/xref/org/apache/rat/anttasks/package-summary.html +++ b/rat/xref/org/apache/rat/anttasks/package-summary.html @@ -3,7 +3,7 @@ <html xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> - <title>Apache Creadur Rat 0.13-SNAPSHOT Reference Package org.apache.rat.anttasks</title> + <title>Apache Creadur Rat 0.13 Reference Package org.apache.rat.anttasks</title> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="style" /> </head> <body> @@ -98,7 +98,7 @@ </div> <hr /> <div id="footer"> - Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved. + Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved. </div> </body> </html> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/api/ContentType.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/api/ContentType.html b/rat/xref/org/apache/rat/api/ContentType.html index 992ef06..5093481 100644 --- a/rat/xref/org/apache/rat/api/ContentType.html +++ b/rat/xref/org/apache/rat/api/ContentType.html @@ -51,7 +51,7 @@ <a class="jxr_linenumber" name="L43" href="#L43">43</a> <strong class="jxr_keyword">this</strong>.subType = subType.toLowerCase(Locale.US); <a class="jxr_linenumber" name="L44" href="#L44">44</a> <strong class="jxr_keyword">this</strong>.parameters = <strong class="jxr_keyword">new</strong> HashMap<String, String>(parameters.size()); <a class="jxr_linenumber" name="L45" href="#L45">45</a> <strong class="jxr_keyword">for</strong> (Map.Entry<String, String> entry : parameters.entrySet()) { -<a class="jxr_linenumber" name="L46" href="#L46">46</a> <strong class="jxr_keyword">this</strong>.parameters.put(entry.getKey().toString().toLowerCase(Locale.US), entry.getValue()); +<a class="jxr_linenumber" name="L46" href="#L46">46</a> <strong class="jxr_keyword">this</strong>.parameters.put(entry.getKey().toLowerCase(Locale.US), entry.getValue()); <a class="jxr_linenumber" name="L47" href="#L47">47</a> } <a class="jxr_linenumber" name="L48" href="#L48">48</a> } <a class="jxr_linenumber" name="L49" href="#L49">49</a> @@ -85,6 +85,6 @@ <a class="jxr_linenumber" name="L77" href="#L77">77</a> } </pre> <hr/> -<div id="footer">Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> </body> </html> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/api/Document.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/api/Document.html b/rat/xref/org/apache/rat/api/Document.html index f4ed1bc..b995d63 100644 --- a/rat/xref/org/apache/rat/api/Document.html +++ b/rat/xref/org/apache/rat/api/Document.html @@ -66,6 +66,6 @@ <a class="jxr_linenumber" name="L58" href="#L58">58</a> } </pre> <hr/> -<div id="footer">Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> </body> </html> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/api/MetaData.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/api/MetaData.html b/rat/xref/org/apache/rat/api/MetaData.html index 60c221f..c13d7ac 100644 --- a/rat/xref/org/apache/rat/api/MetaData.html +++ b/rat/xref/org/apache/rat/api/MetaData.html @@ -318,6 +318,6 @@ <a class="jxr_linenumber" name="L310" href="#L310">310</a> </pre> <hr/> -<div id="footer">Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> </body> </html> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/api/MimeTyper.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/api/MimeTyper.html b/rat/xref/org/apache/rat/api/MimeTyper.html index e0d4409..431a252 100644 --- a/rat/xref/org/apache/rat/api/MimeTyper.html +++ b/rat/xref/org/apache/rat/api/MimeTyper.html @@ -45,6 +45,6 @@ <a class="jxr_linenumber" name="L37" href="#L37">37</a> } </pre> <hr/> -<div id="footer">Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> </body> </html> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/api/RatException.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/api/RatException.html b/rat/xref/org/apache/rat/api/RatException.html index 69f9d6e..e5f96af 100644 --- a/rat/xref/org/apache/rat/api/RatException.html +++ b/rat/xref/org/apache/rat/api/RatException.html @@ -48,6 +48,6 @@ <a class="jxr_linenumber" name="L40" href="#L40">40</a> } </pre> <hr/> -<div id="footer">Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> </body> </html> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/api/domain/LicenseFamily.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/api/domain/LicenseFamily.html b/rat/xref/org/apache/rat/api/domain/LicenseFamily.html index 3e51e31..ea90ee8 100644 --- a/rat/xref/org/apache/rat/api/domain/LicenseFamily.html +++ b/rat/xref/org/apache/rat/api/domain/LicenseFamily.html @@ -30,7 +30,7 @@ <a class="jxr_linenumber" name="L22" href="#L22">22</a> <em class="jxr_javadoccomment"> * Licenses are grouped into families. Each family has similar legal semantics,</em> <a class="jxr_linenumber" name="L23" href="#L23">23</a> <em class="jxr_javadoccomment"> * though some small details may differ.</em> <a class="jxr_linenumber" name="L24" href="#L24">24</a> <em class="jxr_javadoccomment"> * <p></em> -<a class="jxr_linenumber" name="L25" href="#L25">25</a> <em class="jxr_javadoccomment"> * For example, the <a href='<a href="http://opensource.org/licenses/BSD-3-Clause'>" target="alexandria_uri">http://opensource.org/licenses/BSD-3-Clause'></a>3</em> +<a class="jxr_linenumber" name="L25" href="#L25">25</a> <em class="jxr_javadoccomment"> * For example, the <a href='https://opensource.org/licenses/BSD-3-Clause'>3</em> <a class="jxr_linenumber" name="L26" href="#L26">26</a> <em class="jxr_javadoccomment"> * clause BSD license</a> is in a family where members differ by &lt;OWNER&gt;,</em> <a class="jxr_linenumber" name="L27" href="#L27">27</a> <em class="jxr_javadoccomment"> * &lt;ORGANIZATION&gt; and &lt;YEAR&gt; parameters.</em> <a class="jxr_linenumber" name="L28" href="#L28">28</a> <em class="jxr_javadoccomment"> * </em> @@ -107,6 +107,6 @@ <a class="jxr_linenumber" name="L99" href="#L99">99</a> } </pre> <hr/> -<div id="footer">Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> </body> </html> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/api/domain/LicenseFamilyBuilder.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/api/domain/LicenseFamilyBuilder.html b/rat/xref/org/apache/rat/api/domain/LicenseFamilyBuilder.html index 27bb4de..d85645a 100644 --- a/rat/xref/org/apache/rat/api/domain/LicenseFamilyBuilder.html +++ b/rat/xref/org/apache/rat/api/domain/LicenseFamilyBuilder.html @@ -104,6 +104,6 @@ <a class="jxr_linenumber" name="L96" href="#L96">96</a> } </pre> <hr/> -<div id="footer">Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> </body> </html> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/api/domain/RatLicenseFamily.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/api/domain/RatLicenseFamily.html b/rat/xref/org/apache/rat/api/domain/RatLicenseFamily.html index deaf73a..c80031b 100644 --- a/rat/xref/org/apache/rat/api/domain/RatLicenseFamily.html +++ b/rat/xref/org/apache/rat/api/domain/RatLicenseFamily.html @@ -98,8 +98,8 @@ <a class="jxr_linenumber" name="L90" href="#L90">90</a> <em class="jxr_javadoccomment"> * @param notes</em> <a class="jxr_linenumber" name="L91" href="#L91">91</a> <em class="jxr_javadoccomment"> * not null</em> <a class="jxr_linenumber" name="L92" href="#L92">92</a> <em class="jxr_javadoccomment"> */</em> -<a class="jxr_linenumber" name="L93" href="#L93">93</a> <strong class="jxr_keyword">private</strong> <a href="../../../../../org/apache/rat/api/domain/RatLicenseFamily.html">RatLicenseFamily</a>(<strong class="jxr_keyword">final</strong> String name, <strong class="jxr_keyword">final</strong> String category, -<a class="jxr_linenumber" name="L94" href="#L94">94</a> <strong class="jxr_keyword">final</strong> String notes) { +<a class="jxr_linenumber" name="L93" href="#L93">93</a> RatLicenseFamily(<strong class="jxr_keyword">final</strong> String name, <strong class="jxr_keyword">final</strong> String category, +<a class="jxr_linenumber" name="L94" href="#L94">94</a> <strong class="jxr_keyword">final</strong> String notes) { <a class="jxr_linenumber" name="L95" href="#L95">95</a> <strong class="jxr_keyword">this</strong>.name = name; <a class="jxr_linenumber" name="L96" href="#L96">96</a> <strong class="jxr_keyword">this</strong>.category = category; <a class="jxr_linenumber" name="L97" href="#L97">97</a> <strong class="jxr_keyword">this</strong>.notes = notes; @@ -145,6 +145,6 @@ <a class="jxr_linenumber" name="L137" href="#L137">137</a> } </pre> <hr/> -<div id="footer">Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> </body> </html> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/api/domain/package-frame.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/api/domain/package-frame.html b/rat/xref/org/apache/rat/api/domain/package-frame.html index 8dae45e..b463226 100644 --- a/rat/xref/org/apache/rat/api/domain/package-frame.html +++ b/rat/xref/org/apache/rat/api/domain/package-frame.html @@ -3,7 +3,7 @@ <html xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> - <title>Apache Creadur Rat 0.13-SNAPSHOT Reference Package org.apache.rat.api.domain</title> + <title>Apache Creadur Rat 0.13 Reference Package org.apache.rat.api.domain</title> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" /> </head> <body> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/api/domain/package-summary.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/api/domain/package-summary.html b/rat/xref/org/apache/rat/api/domain/package-summary.html index 2178b19..9b1cb41 100644 --- a/rat/xref/org/apache/rat/api/domain/package-summary.html +++ b/rat/xref/org/apache/rat/api/domain/package-summary.html @@ -3,7 +3,7 @@ <html xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> - <title>Apache Creadur Rat 0.13-SNAPSHOT Reference Package org.apache.rat.api.domain</title> + <title>Apache Creadur Rat 0.13 Reference Package org.apache.rat.api.domain</title> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" /> </head> <body> @@ -73,7 +73,7 @@ </div> <hr /> <div id="footer"> - Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved. + Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved. </div> </body> </html> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/api/package-frame.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/api/package-frame.html b/rat/xref/org/apache/rat/api/package-frame.html index 21dd367..955ae30 100644 --- a/rat/xref/org/apache/rat/api/package-frame.html +++ b/rat/xref/org/apache/rat/api/package-frame.html @@ -3,7 +3,7 @@ <html xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> - <title>Apache Creadur Rat 0.13-SNAPSHOT Reference Package org.apache.rat.api</title> + <title>Apache Creadur Rat 0.13 Reference Package org.apache.rat.api</title> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="style" /> </head> <body> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/api/package-summary.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/api/package-summary.html b/rat/xref/org/apache/rat/api/package-summary.html index 0d21b42..c64d6dc 100644 --- a/rat/xref/org/apache/rat/api/package-summary.html +++ b/rat/xref/org/apache/rat/api/package-summary.html @@ -3,7 +3,7 @@ <html xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> - <title>Apache Creadur Rat 0.13-SNAPSHOT Reference Package org.apache.rat.api</title> + <title>Apache Creadur Rat 0.13 Reference Package org.apache.rat.api</title> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="style" /> </head> <body> @@ -88,7 +88,7 @@ </div> <hr /> <div id="footer"> - Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved. + Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved. </div> </body> </html> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/config/AddLicenseHeaders.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/config/AddLicenseHeaders.html b/rat/xref/org/apache/rat/config/AddLicenseHeaders.html index c557f4d..250c9cc 100644 --- a/rat/xref/org/apache/rat/config/AddLicenseHeaders.html +++ b/rat/xref/org/apache/rat/config/AddLicenseHeaders.html @@ -52,6 +52,6 @@ <a class="jxr_linenumber" name="L44" href="#L44">44</a> } </pre> <hr/> -<div id="footer">Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> </body> </html> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/config/ConfigurationUtil.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/config/ConfigurationUtil.html b/rat/xref/org/apache/rat/config/ConfigurationUtil.html index d0456bb..2643bfc 100644 --- a/rat/xref/org/apache/rat/config/ConfigurationUtil.html +++ b/rat/xref/org/apache/rat/config/ConfigurationUtil.html @@ -52,6 +52,6 @@ <a class="jxr_linenumber" name="L44" href="#L44">44</a> } </pre> <hr/> -<div id="footer">Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> </body> </html> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/config/ReportFormat.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/config/ReportFormat.html b/rat/xref/org/apache/rat/config/ReportFormat.html index 22ac713..f5c63c2 100644 --- a/rat/xref/org/apache/rat/config/ReportFormat.html +++ b/rat/xref/org/apache/rat/config/ReportFormat.html @@ -33,14 +33,11 @@ <a class="jxr_linenumber" name="L25" href="#L25">25</a> XML; <a class="jxr_linenumber" name="L26" href="#L26">26</a> <a class="jxr_linenumber" name="L27" href="#L27">27</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> is(String optionGiven) { -<a class="jxr_linenumber" name="L28" href="#L28">28</a> <strong class="jxr_keyword">if</strong> (optionGiven == <strong class="jxr_keyword">null</strong> || optionGiven.length() == 0) { -<a class="jxr_linenumber" name="L29" href="#L29">29</a> <strong class="jxr_keyword">return</strong> false; -<a class="jxr_linenumber" name="L30" href="#L30">30</a> } -<a class="jxr_linenumber" name="L31" href="#L31">31</a> <strong class="jxr_keyword">return</strong> name().equalsIgnoreCase(optionGiven); -<a class="jxr_linenumber" name="L32" href="#L32">32</a> } -<a class="jxr_linenumber" name="L33" href="#L33">33</a> } +<a class="jxr_linenumber" name="L28" href="#L28">28</a> <strong class="jxr_keyword">return</strong> optionGiven != <strong class="jxr_keyword">null</strong> && optionGiven.length() != 0 && name().equalsIgnoreCase(optionGiven); +<a class="jxr_linenumber" name="L29" href="#L29">29</a> } +<a class="jxr_linenumber" name="L30" href="#L30">30</a> } </pre> <hr/> -<div id="footer">Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> </body> </html> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/config/SourceCodeManagementSystems.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/config/SourceCodeManagementSystems.html b/rat/xref/org/apache/rat/config/SourceCodeManagementSystems.html index 19d15f0..4a672c8 100644 --- a/rat/xref/org/apache/rat/config/SourceCodeManagementSystems.html +++ b/rat/xref/org/apache/rat/config/SourceCodeManagementSystems.html @@ -48,7 +48,7 @@ <a class="jxr_linenumber" name="L40" href="#L40">40</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="L41" href="#L41">41</a> <strong class="jxr_keyword">private</strong> String ignoreFile; <a class="jxr_linenumber" name="L42" href="#L42">42</a> -<a class="jxr_linenumber" name="L43" href="#L43">43</a> <strong class="jxr_keyword">private</strong> <a href="../../../../org/apache/rat/config/SourceCodeManagementSystems.html">SourceCodeManagementSystems</a>(String directory, String ignoreFile) { +<a class="jxr_linenumber" name="L43" href="#L43">43</a> <a href="../../../../org/apache/rat/config/SourceCodeManagementSystems.html">SourceCodeManagementSystems</a>(String directory, String ignoreFile) { <a class="jxr_linenumber" name="L44" href="#L44">44</a> <strong class="jxr_keyword">this</strong>.directory = directory; <a class="jxr_linenumber" name="L45" href="#L45">45</a> <strong class="jxr_keyword">this</strong>.ignoreFile = ignoreFile; <a class="jxr_linenumber" name="L46" href="#L46">46</a> } @@ -113,6 +113,6 @@ <a class="jxr_linenumber" name="L105" href="#L105">105</a> } </pre> <hr/> -<div id="footer">Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> </body> </html> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/config/package-frame.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/config/package-frame.html b/rat/xref/org/apache/rat/config/package-frame.html index 3f9bc28..ba9d15b 100644 --- a/rat/xref/org/apache/rat/config/package-frame.html +++ b/rat/xref/org/apache/rat/config/package-frame.html @@ -3,7 +3,7 @@ <html xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> - <title>Apache Creadur Rat 0.13-SNAPSHOT Reference Package org.apache.rat.config</title> + <title>Apache Creadur Rat 0.13 Reference Package org.apache.rat.config</title> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="style" /> </head> <body> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/config/package-summary.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/config/package-summary.html b/rat/xref/org/apache/rat/config/package-summary.html index 17d0441..f5c87f9 100644 --- a/rat/xref/org/apache/rat/config/package-summary.html +++ b/rat/xref/org/apache/rat/config/package-summary.html @@ -3,7 +3,7 @@ <html xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> - <title>Apache Creadur Rat 0.13-SNAPSHOT Reference Package org.apache.rat.config</title> + <title>Apache Creadur Rat 0.13 Reference Package org.apache.rat.config</title> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="style" /> </head> <body> @@ -78,7 +78,7 @@ </div> <hr /> <div id="footer"> - Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved. + Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved. </div> </body> </html> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/document/CompositeDocumentException.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/document/CompositeDocumentException.html b/rat/xref/org/apache/rat/document/CompositeDocumentException.html index f501238..d4293eb 100644 --- a/rat/xref/org/apache/rat/document/CompositeDocumentException.html +++ b/rat/xref/org/apache/rat/document/CompositeDocumentException.html @@ -47,6 +47,6 @@ <a class="jxr_linenumber" name="L39" href="#L39">39</a> } </pre> <hr/> -<div id="footer">Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> </body> </html> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/document/IDocumentAnalyser.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/document/IDocumentAnalyser.html b/rat/xref/org/apache/rat/document/IDocumentAnalyser.html index 4a9ec04..34e8106 100644 --- a/rat/xref/org/apache/rat/document/IDocumentAnalyser.html +++ b/rat/xref/org/apache/rat/document/IDocumentAnalyser.html @@ -35,6 +35,6 @@ <a class="jxr_linenumber" name="L27" href="#L27">27</a> } </pre> <hr/> -<div id="footer">Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> </body> </html> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/document/RatDocumentAnalysisException.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/document/RatDocumentAnalysisException.html b/rat/xref/org/apache/rat/document/RatDocumentAnalysisException.html index a0b71e8..ebc2a77 100644 --- a/rat/xref/org/apache/rat/document/RatDocumentAnalysisException.html +++ b/rat/xref/org/apache/rat/document/RatDocumentAnalysisException.html @@ -48,6 +48,6 @@ <a class="jxr_linenumber" name="L40" href="#L40">40</a> } </pre> <hr/> -<div id="footer">Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> </body> </html> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/document/ToNameTransformer.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/document/ToNameTransformer.html b/rat/xref/org/apache/rat/document/ToNameTransformer.html index 9efaf18..38668fb 100644 --- a/rat/xref/org/apache/rat/document/ToNameTransformer.html +++ b/rat/xref/org/apache/rat/document/ToNameTransformer.html @@ -48,6 +48,6 @@ <a class="jxr_linenumber" name="L40" href="#L40">40</a> } </pre> <hr/> -<div id="footer">Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> </body> </html> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/document/UnsuitableDocumentException.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/document/UnsuitableDocumentException.html b/rat/xref/org/apache/rat/document/UnsuitableDocumentException.html index b883510..87b09e7 100644 --- a/rat/xref/org/apache/rat/document/UnsuitableDocumentException.html +++ b/rat/xref/org/apache/rat/document/UnsuitableDocumentException.html @@ -54,6 +54,6 @@ <a class="jxr_linenumber" name="L46" href="#L46">46</a> } </pre> <hr/> -<div id="footer">Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> </body> </html> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/document/impl/AbstractMonolithicDocument.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/document/impl/AbstractMonolithicDocument.html b/rat/xref/org/apache/rat/document/impl/AbstractMonolithicDocument.html index 6474176..2149101 100644 --- a/rat/xref/org/apache/rat/document/impl/AbstractMonolithicDocument.html +++ b/rat/xref/org/apache/rat/document/impl/AbstractMonolithicDocument.html @@ -56,6 +56,6 @@ <a class="jxr_linenumber" name="L48" href="#L48">48</a> } </pre> <hr/> -<div id="footer">Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> </body> </html> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/document/impl/ArchiveEntryDocument.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/document/impl/ArchiveEntryDocument.html b/rat/xref/org/apache/rat/document/impl/ArchiveEntryDocument.html index 4ba1b25..6c2dbaf 100644 --- a/rat/xref/org/apache/rat/document/impl/ArchiveEntryDocument.html +++ b/rat/xref/org/apache/rat/document/impl/ArchiveEntryDocument.html @@ -88,6 +88,6 @@ <a class="jxr_linenumber" name="L80" href="#L80">80</a> } </pre> <hr/> -<div id="footer">Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> </body> </html> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/document/impl/DocumentImplUtils.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/document/impl/DocumentImplUtils.html b/rat/xref/org/apache/rat/document/impl/DocumentImplUtils.html index 1bd27f5..2a56f1d 100644 --- a/rat/xref/org/apache/rat/document/impl/DocumentImplUtils.html +++ b/rat/xref/org/apache/rat/document/impl/DocumentImplUtils.html @@ -39,35 +39,34 @@ <a class="jxr_linenumber" name="L31" href="#L31">31</a> <a class="jxr_linenumber" name="L32" href="#L32">32</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">static</strong> String toName(File file) { <a class="jxr_linenumber" name="L33" href="#L33">33</a> String path = file.getPath(); -<a class="jxr_linenumber" name="L34" href="#L34">34</a> String normalisedPath = path.replace('\\', '/'); -<a class="jxr_linenumber" name="L35" href="#L35">35</a> <strong class="jxr_keyword">return</strong> normalisedPath; -<a class="jxr_linenumber" name="L36" href="#L36">36</a> } -<a class="jxr_linenumber" name="L37" href="#L37">37</a> -<a class="jxr_linenumber" name="L38" href="#L38">38</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">boolean</strong> isZipStream(InputStream stream) { -<a class="jxr_linenumber" name="L39" href="#L39">39</a> ZipInputStream zip = <strong class="jxr_keyword">new</strong> ZipInputStream(stream); -<a class="jxr_linenumber" name="L40" href="#L40">40</a> <strong class="jxr_keyword">try</strong> { -<a class="jxr_linenumber" name="L41" href="#L41">41</a> zip.getNextEntry(); -<a class="jxr_linenumber" name="L42" href="#L42">42</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>; -<a class="jxr_linenumber" name="L43" href="#L43">43</a> } <strong class="jxr_keyword">catch</strong> (ZipException e) { -<a class="jxr_linenumber" name="L44" href="#L44">44</a> <strong class="jxr_keyword">return</strong> false; -<a class="jxr_linenumber" name="L45" href="#L45">45</a> } <strong class="jxr_keyword">catch</strong> (IOException e) { -<a class="jxr_linenumber" name="L46" href="#L46">46</a> <strong class="jxr_keyword">return</strong> false; -<a class="jxr_linenumber" name="L47" href="#L47">47</a> } <strong class="jxr_keyword">finally</strong> { -<a class="jxr_linenumber" name="L48" href="#L48">48</a> IOUtils.closeQuietly(zip); -<a class="jxr_linenumber" name="L49" href="#L49">49</a> } -<a class="jxr_linenumber" name="L50" href="#L50">50</a> } -<a class="jxr_linenumber" name="L51" href="#L51">51</a> -<a class="jxr_linenumber" name="L52" href="#L52">52</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">boolean</strong> isZip(File file) { -<a class="jxr_linenumber" name="L53" href="#L53">53</a> <strong class="jxr_keyword">try</strong> { -<a class="jxr_linenumber" name="L54" href="#L54">54</a> <strong class="jxr_keyword">return</strong> isZipStream(<strong class="jxr_keyword">new</strong> FileInputStream(file)); -<a class="jxr_linenumber" name="L55" href="#L55">55</a> } <strong class="jxr_keyword">catch</strong> (IOException e) { -<a class="jxr_linenumber" name="L56" href="#L56">56</a> <strong class="jxr_keyword">return</strong> false; -<a class="jxr_linenumber" name="L57" href="#L57">57</a> } -<a class="jxr_linenumber" name="L58" href="#L58">58</a> } -<a class="jxr_linenumber" name="L59" href="#L59">59</a> -<a class="jxr_linenumber" name="L60" href="#L60">60</a> } +<a class="jxr_linenumber" name="L34" href="#L34">34</a> <strong class="jxr_keyword">return</strong> path.replace('\\', '/'); +<a class="jxr_linenumber" name="L35" href="#L35">35</a> } +<a class="jxr_linenumber" name="L36" href="#L36">36</a> +<a class="jxr_linenumber" name="L37" href="#L37">37</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">boolean</strong> isZipStream(InputStream stream) { +<a class="jxr_linenumber" name="L38" href="#L38">38</a> ZipInputStream zip = <strong class="jxr_keyword">new</strong> ZipInputStream(stream); +<a class="jxr_linenumber" name="L39" href="#L39">39</a> <strong class="jxr_keyword">try</strong> { +<a class="jxr_linenumber" name="L40" href="#L40">40</a> zip.getNextEntry(); +<a class="jxr_linenumber" name="L41" href="#L41">41</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>; +<a class="jxr_linenumber" name="L42" href="#L42">42</a> } <strong class="jxr_keyword">catch</strong> (ZipException e) { +<a class="jxr_linenumber" name="L43" href="#L43">43</a> <strong class="jxr_keyword">return</strong> false; +<a class="jxr_linenumber" name="L44" href="#L44">44</a> } <strong class="jxr_keyword">catch</strong> (IOException e) { +<a class="jxr_linenumber" name="L45" href="#L45">45</a> <strong class="jxr_keyword">return</strong> false; +<a class="jxr_linenumber" name="L46" href="#L46">46</a> } <strong class="jxr_keyword">finally</strong> { +<a class="jxr_linenumber" name="L47" href="#L47">47</a> IOUtils.closeQuietly(zip); +<a class="jxr_linenumber" name="L48" href="#L48">48</a> } +<a class="jxr_linenumber" name="L49" href="#L49">49</a> } +<a class="jxr_linenumber" name="L50" href="#L50">50</a> +<a class="jxr_linenumber" name="L51" href="#L51">51</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">boolean</strong> isZip(File file) { +<a class="jxr_linenumber" name="L52" href="#L52">52</a> <strong class="jxr_keyword">try</strong> { +<a class="jxr_linenumber" name="L53" href="#L53">53</a> <strong class="jxr_keyword">return</strong> isZipStream(<strong class="jxr_keyword">new</strong> FileInputStream(file)); +<a class="jxr_linenumber" name="L54" href="#L54">54</a> } <strong class="jxr_keyword">catch</strong> (IOException e) { +<a class="jxr_linenumber" name="L55" href="#L55">55</a> <strong class="jxr_keyword">return</strong> false; +<a class="jxr_linenumber" name="L56" href="#L56">56</a> } +<a class="jxr_linenumber" name="L57" href="#L57">57</a> } +<a class="jxr_linenumber" name="L58" href="#L58">58</a> +<a class="jxr_linenumber" name="L59" href="#L59">59</a> } </pre> <hr/> -<div id="footer">Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> </body> </html> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/document/impl/FileDocument.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/document/impl/FileDocument.html b/rat/xref/org/apache/rat/document/impl/FileDocument.html index 22fc109..f723631 100644 --- a/rat/xref/org/apache/rat/document/impl/FileDocument.html +++ b/rat/xref/org/apache/rat/document/impl/FileDocument.html @@ -91,6 +91,6 @@ <a class="jxr_linenumber" name="L83" href="#L83">83</a> } </pre> <hr/> -<div id="footer">Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> </body> </html> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/document/impl/MonolithicFileDocument.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/document/impl/MonolithicFileDocument.html b/rat/xref/org/apache/rat/document/impl/MonolithicFileDocument.html index 511e8f9..c9aa256 100644 --- a/rat/xref/org/apache/rat/document/impl/MonolithicFileDocument.html +++ b/rat/xref/org/apache/rat/document/impl/MonolithicFileDocument.html @@ -81,6 +81,6 @@ <a class="jxr_linenumber" name="L73" href="#L73">73</a> } </pre> <hr/> -<div id="footer">Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> </body> </html> http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/xref/org/apache/rat/document/impl/guesser/ArchiveGuesser.html ---------------------------------------------------------------------- diff --git a/rat/xref/org/apache/rat/document/impl/guesser/ArchiveGuesser.html b/rat/xref/org/apache/rat/document/impl/guesser/ArchiveGuesser.html index a23da63..4cd9de9 100644 --- a/rat/xref/org/apache/rat/document/impl/guesser/ArchiveGuesser.html +++ b/rat/xref/org/apache/rat/document/impl/guesser/ArchiveGuesser.html @@ -74,6 +74,6 @@ <a class="jxr_linenumber" name="L66" href="#L66">66</a> } </pre> <hr/> -<div id="footer">Copyright © 2006–2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> +<div id="footer">Copyright © 2006–2018 <a href="https://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div> </body> </html>
