You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2016/09/20 15:16:53 UTC

svn commit: r1761593 [12/19] - in /myfaces/site/publish/tobago: tobago-example/ tobago-example/tobago-example-addressbook/ tobago-example/tobago-example-addressbook/xref/ tobago-example/tobago-example-addressbook/xref/org/apache/myfaces/tobago/example/...

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/SheetController.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/SheetController.html?rev=1761593&r1=1761592&r2=1761593&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/SheetController.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/SheetController.html Tue Sep 20 15:16:50 2016
@@ -35,84 +35,124 @@
 <a class="jxr_linenumber" name="L27" href="#L27">27</a>  <strong class="jxr_keyword">import</strong> org.slf4j.LoggerFactory;
 <a class="jxr_linenumber" name="L28" href="#L28">28</a>  
 <a class="jxr_linenumber" name="L29" href="#L29">29</a>  <strong class="jxr_keyword">import</strong> javax.enterprise.context.SessionScoped;
-<a class="jxr_linenumber" name="L30" href="#L30">30</a>  <strong class="jxr_keyword">import</strong> javax.faces.component.UIData;
-<a class="jxr_linenumber" name="L31" href="#L31">31</a>  <strong class="jxr_keyword">import</strong> javax.faces.event.ActionEvent;
-<a class="jxr_linenumber" name="L32" href="#L32">32</a>  <strong class="jxr_keyword">import</strong> javax.inject.Named;
-<a class="jxr_linenumber" name="L33" href="#L33">33</a>  <strong class="jxr_keyword">import</strong> java.io.Serializable;
-<a class="jxr_linenumber" name="L34" href="#L34">34</a>  <strong class="jxr_keyword">import</strong> java.util.List;
-<a class="jxr_linenumber" name="L35" href="#L35">35</a>  
-<a class="jxr_linenumber" name="L36" href="#L36">36</a>  @SessionScoped
-<a class="jxr_linenumber" name="L37" href="#L37">37</a>  @Named
-<a class="jxr_linenumber" name="L38" href="#L38">38</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/myfaces/tobago/example/demo/SheetController.html">SheetController</a> <strong class="jxr_keyword">implements</strong> Serializable {
-<a class="jxr_linenumber" name="L39" href="#L39">39</a>  
-<a class="jxr_linenumber" name="L40" href="#L40">40</a>    <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> Logger LOG = LoggerFactory.getLogger(SheetController.<strong class="jxr_keyword">class</strong>);
+<a class="jxr_linenumber" name="L30" href="#L30">30</a>  <strong class="jxr_keyword">import</strong> javax.faces.component.UIComponent;
+<a class="jxr_linenumber" name="L31" href="#L31">31</a>  <strong class="jxr_keyword">import</strong> javax.faces.component.UIData;
+<a class="jxr_linenumber" name="L32" href="#L32">32</a>  <strong class="jxr_keyword">import</strong> javax.faces.context.FacesContext;
+<a class="jxr_linenumber" name="L33" href="#L33">33</a>  <strong class="jxr_keyword">import</strong> javax.faces.convert.DateTimeConverter;
+<a class="jxr_linenumber" name="L34" href="#L34">34</a>  <strong class="jxr_keyword">import</strong> javax.faces.event.ActionEvent;
+<a class="jxr_linenumber" name="L35" href="#L35">35</a>  <strong class="jxr_keyword">import</strong> javax.inject.Named;
+<a class="jxr_linenumber" name="L36" href="#L36">36</a>  <strong class="jxr_keyword">import</strong> java.io.Serializable;
+<a class="jxr_linenumber" name="L37" href="#L37">37</a>  <strong class="jxr_keyword">import</strong> java.util.Calendar;
+<a class="jxr_linenumber" name="L38" href="#L38">38</a>  <strong class="jxr_keyword">import</strong> java.util.Date;
+<a class="jxr_linenumber" name="L39" href="#L39">39</a>  <strong class="jxr_keyword">import</strong> java.util.GregorianCalendar;
+<a class="jxr_linenumber" name="L40" href="#L40">40</a>  <strong class="jxr_keyword">import</strong> java.util.List;
 <a class="jxr_linenumber" name="L41" href="#L41">41</a>  
-<a class="jxr_linenumber" name="L42" href="#L42">42</a>    <strong class="jxr_keyword">private</strong> List&lt;SolarObject&gt; solarList;
-<a class="jxr_linenumber" name="L43" href="#L43">43</a>    <strong class="jxr_keyword">private</strong> SheetState sheetState;
-<a class="jxr_linenumber" name="L44" href="#L44">44</a>    <strong class="jxr_keyword">private</strong> SolarObject selectedSolarObject;
-<a class="jxr_linenumber" name="L45" href="#L45">45</a>    <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">boolean</strong> automaticLayout;
-<a class="jxr_linenumber" name="L46" href="#L46">46</a>    <strong class="jxr_keyword">private</strong> List&lt;Markup&gt; markup;
+<a class="jxr_linenumber" name="L42" href="#L42">42</a>  @SessionScoped
+<a class="jxr_linenumber" name="L43" href="#L43">43</a>  @Named
+<a class="jxr_linenumber" name="L44" href="#L44">44</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/myfaces/tobago/example/demo/SheetController.html">SheetController</a> <strong class="jxr_keyword">implements</strong> Serializable {
+<a class="jxr_linenumber" name="L45" href="#L45">45</a>  
+<a class="jxr_linenumber" name="L46" href="#L46">46</a>    <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> Logger LOG = LoggerFactory.getLogger(SheetController.<strong class="jxr_keyword">class</strong>);
 <a class="jxr_linenumber" name="L47" href="#L47">47</a>  
-<a class="jxr_linenumber" name="L48" href="#L48">48</a>    <strong class="jxr_keyword">public</strong> <a href="../../../../../../org/apache/myfaces/tobago/example/demo/SheetController.html">SheetController</a>() {
-<a class="jxr_linenumber" name="L49" href="#L49">49</a>      solarList = SolarObject.getList();
-<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> List&lt;SolarObject&gt; getSolarList() {
-<a class="jxr_linenumber" name="L53" href="#L53">53</a>      <strong class="jxr_keyword">return</strong> solarList;
-<a class="jxr_linenumber" name="L54" href="#L54">54</a>    }
-<a class="jxr_linenumber" name="L55" href="#L55">55</a>  
-<a class="jxr_linenumber" name="L56" href="#L56">56</a>    <strong class="jxr_keyword">public</strong> SheetState getSheetState() {
-<a class="jxr_linenumber" name="L57" href="#L57">57</a>      <strong class="jxr_keyword">return</strong> sheetState;
-<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">public</strong> <strong class="jxr_keyword">void</strong> setSheetState(SheetState sheetState) {
-<a class="jxr_linenumber" name="L61" href="#L61">61</a>      <strong class="jxr_keyword">this</strong>.sheetState = sheetState;
-<a class="jxr_linenumber" name="L62" href="#L62">62</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">public</strong> <strong class="jxr_keyword">void</strong> selectSolarObject(<strong class="jxr_keyword">final</strong> ActionEvent actionEvent) {
-<a class="jxr_linenumber" name="L65" href="#L65">65</a>      LOG.info(<span class="jxr_string">"actionEvent="</span> + actionEvent);
-<a class="jxr_linenumber" name="L66" href="#L66">66</a>      <strong class="jxr_keyword">final</strong> UIData data = ComponentUtils.findAncestor(actionEvent.getComponent(), UIData.<strong class="jxr_keyword">class</strong>);
-<a class="jxr_linenumber" name="L67" href="#L67">67</a>      <strong class="jxr_keyword">if</strong> (data != <strong class="jxr_keyword">null</strong>) {
-<a class="jxr_linenumber" name="L68" href="#L68">68</a>        selectedSolarObject = (SolarObject) data.getRowData();
-<a class="jxr_linenumber" name="L69" href="#L69">69</a>        LOG.info(<span class="jxr_string">"Selected: "</span> + selectedSolarObject.getName());
-<a class="jxr_linenumber" name="L70" href="#L70">70</a>      } <strong class="jxr_keyword">else</strong> {
-<a class="jxr_linenumber" name="L71" href="#L71">71</a>        selectedSolarObject = <strong class="jxr_keyword">null</strong>;
-<a class="jxr_linenumber" name="L72" href="#L72">72</a>        LOG.info(<span class="jxr_string">"Deselect."</span>);
-<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>  
-<a class="jxr_linenumber" name="L76" href="#L76">76</a>    <strong class="jxr_keyword">public</strong> SolarObject getSelectedSolarObject() {
-<a class="jxr_linenumber" name="L77" href="#L77">77</a>      <strong class="jxr_keyword">return</strong> selectedSolarObject;
-<a class="jxr_linenumber" name="L78" href="#L78">78</a>    }
-<a class="jxr_linenumber" name="L79" href="#L79">79</a>  
-<a class="jxr_linenumber" name="L80" href="#L80">80</a>    <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> getNumberOfSelections() {
-<a class="jxr_linenumber" name="L81" href="#L81">81</a>      <strong class="jxr_keyword">return</strong> sheetState.getSelectedRows().size();
-<a class="jxr_linenumber" name="L82" href="#L82">82</a>    }
-<a class="jxr_linenumber" name="L83" href="#L83">83</a>  
-<a class="jxr_linenumber" name="L84" href="#L84">84</a>    <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> getSelectedRowNumber() {
-<a class="jxr_linenumber" name="L85" href="#L85">85</a>      <strong class="jxr_keyword">if</strong> (sheetState.getSelectedRows().size() &lt;= 0) {
-<a class="jxr_linenumber" name="L86" href="#L86">86</a>        <strong class="jxr_keyword">return</strong> -1;
-<a class="jxr_linenumber" name="L87" href="#L87">87</a>      } <strong class="jxr_keyword">else</strong> {
-<a class="jxr_linenumber" name="L88" href="#L88">88</a>        <strong class="jxr_keyword">return</strong> sheetState.getSelectedRows().get(0);
-<a class="jxr_linenumber" name="L89" href="#L89">89</a>      }
-<a class="jxr_linenumber" name="L90" href="#L90">90</a>    }
-<a class="jxr_linenumber" name="L91" href="#L91">91</a>  
-<a class="jxr_linenumber" name="L92" href="#L92">92</a>    <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> isAutomaticLayout() {
-<a class="jxr_linenumber" name="L93" href="#L93">93</a>      <strong class="jxr_keyword">return</strong> automaticLayout;
-<a class="jxr_linenumber" name="L94" href="#L94">94</a>    }
-<a class="jxr_linenumber" name="L95" href="#L95">95</a>  
-<a class="jxr_linenumber" name="L96" href="#L96">96</a>    <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setAutomaticLayout(<strong class="jxr_keyword">boolean</strong> automaticLayout) {
-<a class="jxr_linenumber" name="L97" href="#L97">97</a>      <strong class="jxr_keyword">this</strong>.automaticLayout = automaticLayout;
-<a class="jxr_linenumber" name="L98" href="#L98">98</a>    }
-<a class="jxr_linenumber" name="L99" href="#L99">99</a>  
-<a class="jxr_linenumber" name="L100" href="#L100">100</a>   <strong class="jxr_keyword">public</strong> List&lt;Markup&gt; getMarkup() {
-<a class="jxr_linenumber" name="L101" href="#L101">101</a>     <strong class="jxr_keyword">return</strong> markup;
-<a class="jxr_linenumber" name="L102" href="#L102">102</a>   }
-<a class="jxr_linenumber" name="L103" href="#L103">103</a> 
-<a class="jxr_linenumber" name="L104" href="#L104">104</a>   <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setMarkup(List&lt;Markup&gt; markup) {
-<a class="jxr_linenumber" name="L105" href="#L105">105</a>     <strong class="jxr_keyword">this</strong>.markup = markup;
-<a class="jxr_linenumber" name="L106" href="#L106">106</a>   }
-<a class="jxr_linenumber" name="L107" href="#L107">107</a> }
+<a class="jxr_linenumber" name="L48" href="#L48">48</a>    <strong class="jxr_keyword">private</strong> List&lt;SolarObject&gt; solarList;
+<a class="jxr_linenumber" name="L49" href="#L49">49</a>    <strong class="jxr_keyword">private</strong> SheetState sheetState;
+<a class="jxr_linenumber" name="L50" href="#L50">50</a>    <strong class="jxr_keyword">private</strong> SolarObject selectedSolarObject;
+<a class="jxr_linenumber" name="L51" href="#L51">51</a>    <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">boolean</strong> automaticLayout;
+<a class="jxr_linenumber" name="L52" href="#L52">52</a>    <strong class="jxr_keyword">private</strong> List&lt;Markup&gt; markup;
+<a class="jxr_linenumber" name="L53" href="#L53">53</a>    <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">int</strong> columnEventSample;
+<a class="jxr_linenumber" name="L54" href="#L54">54</a>  
+<a class="jxr_linenumber" name="L55" href="#L55">55</a>    <strong class="jxr_keyword">public</strong> <a href="../../../../../../org/apache/myfaces/tobago/example/demo/SheetController.html">SheetController</a>() {
+<a class="jxr_linenumber" name="L56" href="#L56">56</a>      solarList = SolarObject.getList();
+<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">public</strong> List&lt;SolarObject&gt; getSolarList() {
+<a class="jxr_linenumber" name="L60" href="#L60">60</a>      <strong class="jxr_keyword">return</strong> solarList;
+<a class="jxr_linenumber" name="L61" href="#L61">61</a>    }
+<a class="jxr_linenumber" name="L62" href="#L62">62</a>  
+<a class="jxr_linenumber" name="L63" href="#L63">63</a>    <strong class="jxr_keyword">public</strong> SheetState getSheetState() {
+<a class="jxr_linenumber" name="L64" href="#L64">64</a>      <strong class="jxr_keyword">return</strong> sheetState;
+<a class="jxr_linenumber" name="L65" href="#L65">65</a>    }
+<a class="jxr_linenumber" name="L66" href="#L66">66</a>  
+<a class="jxr_linenumber" name="L67" href="#L67">67</a>    <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setSheetState(SheetState sheetState) {
+<a class="jxr_linenumber" name="L68" href="#L68">68</a>      <strong class="jxr_keyword">this</strong>.sheetState = sheetState;
+<a class="jxr_linenumber" name="L69" href="#L69">69</a>    }
+<a class="jxr_linenumber" name="L70" href="#L70">70</a>  
+<a class="jxr_linenumber" name="L71" href="#L71">71</a>    <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> selectSolarObject(<strong class="jxr_keyword">final</strong> ActionEvent actionEvent) {
+<a class="jxr_linenumber" name="L72" href="#L72">72</a>      LOG.info(<span class="jxr_string">"actionEvent="</span> + actionEvent);
+<a class="jxr_linenumber" name="L73" href="#L73">73</a>      <strong class="jxr_keyword">final</strong> UIData data = ComponentUtils.findAncestor(actionEvent.getComponent(), UIData.<strong class="jxr_keyword">class</strong>);
+<a class="jxr_linenumber" name="L74" href="#L74">74</a>      <strong class="jxr_keyword">if</strong> (data != <strong class="jxr_keyword">null</strong>) {
+<a class="jxr_linenumber" name="L75" href="#L75">75</a>        selectedSolarObject = (SolarObject) data.getRowData();
+<a class="jxr_linenumber" name="L76" href="#L76">76</a>        LOG.info(<span class="jxr_string">"Selected: "</span> + selectedSolarObject.getName());
+<a class="jxr_linenumber" name="L77" href="#L77">77</a>      } <strong class="jxr_keyword">else</strong> {
+<a class="jxr_linenumber" name="L78" href="#L78">78</a>        selectedSolarObject = <strong class="jxr_keyword">null</strong>;
+<a class="jxr_linenumber" name="L79" href="#L79">79</a>        LOG.info(<span class="jxr_string">"Deselect."</span>);
+<a class="jxr_linenumber" name="L80" href="#L80">80</a>      }
+<a class="jxr_linenumber" name="L81" href="#L81">81</a>    }
+<a class="jxr_linenumber" name="L82" href="#L82">82</a>  
+<a class="jxr_linenumber" name="L83" href="#L83">83</a>    <strong class="jxr_keyword">public</strong> SolarObject getSelectedSolarObject() {
+<a class="jxr_linenumber" name="L84" href="#L84">84</a>      <strong class="jxr_keyword">return</strong> selectedSolarObject;
+<a class="jxr_linenumber" name="L85" href="#L85">85</a>    }
+<a class="jxr_linenumber" name="L86" href="#L86">86</a>  
+<a class="jxr_linenumber" name="L87" href="#L87">87</a>    <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> getNumberOfSelections() {
+<a class="jxr_linenumber" name="L88" href="#L88">88</a>      <strong class="jxr_keyword">return</strong> sheetState.getSelectedRows().size();
+<a class="jxr_linenumber" name="L89" href="#L89">89</a>    }
+<a class="jxr_linenumber" name="L90" href="#L90">90</a>  
+<a class="jxr_linenumber" name="L91" href="#L91">91</a>    <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> getSelectedRowNumber() {
+<a class="jxr_linenumber" name="L92" href="#L92">92</a>      <strong class="jxr_keyword">if</strong> (sheetState.getSelectedRows().size() &lt;= 0) {
+<a class="jxr_linenumber" name="L93" href="#L93">93</a>        <strong class="jxr_keyword">return</strong> -1;
+<a class="jxr_linenumber" name="L94" href="#L94">94</a>      } <strong class="jxr_keyword">else</strong> {
+<a class="jxr_linenumber" name="L95" href="#L95">95</a>        <strong class="jxr_keyword">return</strong> sheetState.getSelectedRows().get(0);
+<a class="jxr_linenumber" name="L96" href="#L96">96</a>      }
+<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> <strong class="jxr_keyword">boolean</strong> isAutomaticLayout() {
+<a class="jxr_linenumber" name="L100" href="#L100">100</a>     <strong class="jxr_keyword">return</strong> automaticLayout;
+<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>   <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setAutomaticLayout(<strong class="jxr_keyword">boolean</strong> automaticLayout) {
+<a class="jxr_linenumber" name="L104" href="#L104">104</a>     <strong class="jxr_keyword">this</strong>.automaticLayout = automaticLayout;
+<a class="jxr_linenumber" name="L105" href="#L105">105</a>   }
+<a class="jxr_linenumber" name="L106" href="#L106">106</a> 
+<a class="jxr_linenumber" name="L107" href="#L107">107</a>   <strong class="jxr_keyword">public</strong> List&lt;Markup&gt; getMarkup() {
+<a class="jxr_linenumber" name="L108" href="#L108">108</a>     <strong class="jxr_keyword">return</strong> markup;
+<a class="jxr_linenumber" name="L109" href="#L109">109</a>   }
+<a class="jxr_linenumber" name="L110" href="#L110">110</a> 
+<a class="jxr_linenumber" name="L111" href="#L111">111</a>   <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setMarkup(List&lt;Markup&gt; markup) {
+<a class="jxr_linenumber" name="L112" href="#L112">112</a>     <strong class="jxr_keyword">this</strong>.markup = markup;
+<a class="jxr_linenumber" name="L113" href="#L113">113</a>   }
+<a class="jxr_linenumber" name="L114" href="#L114">114</a> 
+<a class="jxr_linenumber" name="L115" href="#L115">115</a>   <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setColumnEventSample(<strong class="jxr_keyword">int</strong> columnEventSample) {
+<a class="jxr_linenumber" name="L116" href="#L116">116</a>     <strong class="jxr_keyword">this</strong>.columnEventSample = columnEventSample;
+<a class="jxr_linenumber" name="L117" href="#L117">117</a>   }
+<a class="jxr_linenumber" name="L118" href="#L118">118</a> 
+<a class="jxr_linenumber" name="L119" href="#L119">119</a>   <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> getColumnEventSample() {
+<a class="jxr_linenumber" name="L120" href="#L120">120</a>     <strong class="jxr_keyword">return</strong> columnEventSample;
+<a class="jxr_linenumber" name="L121" href="#L121">121</a>   }
+<a class="jxr_linenumber" name="L122" href="#L122">122</a> 
+<a class="jxr_linenumber" name="L123" href="#L123">123</a>   <strong class="jxr_keyword">public</strong> javax.faces.convert.Converter getYearConverter() {
+<a class="jxr_linenumber" name="L124" href="#L124">124</a> 
+<a class="jxr_linenumber" name="L125" href="#L125">125</a>     <strong class="jxr_keyword">final</strong> DateTimeConverter dateTimeConverter = <strong class="jxr_keyword">new</strong> DateTimeConverter() {
+<a class="jxr_linenumber" name="L126" href="#L126">126</a> 
+<a class="jxr_linenumber" name="L127" href="#L127">127</a>       @Override
+<a class="jxr_linenumber" name="L128" href="#L128">128</a>       <strong class="jxr_keyword">public</strong> Object getAsObject(FacesContext facesContext, UIComponent uiComponent, String value) {
+<a class="jxr_linenumber" name="L129" href="#L129">129</a>         <strong class="jxr_keyword">final</strong> Date date = (Date) <strong class="jxr_keyword">super</strong>.getAsObject(facesContext, uiComponent, value);
+<a class="jxr_linenumber" name="L130" href="#L130">130</a>         <strong class="jxr_keyword">final</strong> Calendar calendar = GregorianCalendar.getInstance(facesContext.getViewRoot().getLocale());
+<a class="jxr_linenumber" name="L131" href="#L131">131</a>         calendar.setTime(date);
+<a class="jxr_linenumber" name="L132" href="#L132">132</a>         <strong class="jxr_keyword">return</strong> calendar.get(Calendar.YEAR);
+<a class="jxr_linenumber" name="L133" href="#L133">133</a>       }
+<a class="jxr_linenumber" name="L134" href="#L134">134</a> 
+<a class="jxr_linenumber" name="L135" href="#L135">135</a>       @Override
+<a class="jxr_linenumber" name="L136" href="#L136">136</a>       <strong class="jxr_keyword">public</strong> String getAsString(FacesContext facesContext, UIComponent uiComponent, Object value) {
+<a class="jxr_linenumber" name="L137" href="#L137">137</a>         <strong class="jxr_keyword">final</strong> Calendar calendar = GregorianCalendar.getInstance(facesContext.getViewRoot().getLocale());
+<a class="jxr_linenumber" name="L138" href="#L138">138</a>         calendar.set(Calendar.YEAR, (Integer) value);
+<a class="jxr_linenumber" name="L139" href="#L139">139</a>         <strong class="jxr_keyword">final</strong> Date date = calendar.getTime();
+<a class="jxr_linenumber" name="L140" href="#L140">140</a>         <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">super</strong>.getAsString(facesContext, uiComponent, date);
+<a class="jxr_linenumber" name="L141" href="#L141">141</a>       }
+<a class="jxr_linenumber" name="L142" href="#L142">142</a>     };
+<a class="jxr_linenumber" name="L143" href="#L143">143</a> 
+<a class="jxr_linenumber" name="L144" href="#L144">144</a>     dateTimeConverter.setPattern(<span class="jxr_string">"yyyy"</span>);
+<a class="jxr_linenumber" name="L145" href="#L145">145</a>     <strong class="jxr_keyword">return</strong> dateTimeConverter;
+<a class="jxr_linenumber" name="L146" href="#L146">146</a>   }
+<a class="jxr_linenumber" name="L147" href="#L147">147</a> }
 </pre>
 <hr/>
 <div id="footer">Copyright &#169; 2002&#x2013;2016 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/actionlistener/package-frame.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/actionlistener/package-frame.html?rev=1761593&r1=1761592&r2=1761593&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/actionlistener/package-frame.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/actionlistener/package-frame.html Tue Sep 20 15:16:50 2016
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Tobago Example Demo 3.0.0-alpha-6-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.actionlistener</title>
+		<title>Tobago Example Demo 3.0.0-alpha-7-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.actionlistener</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/actionlistener/package-summary.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/actionlistener/package-summary.html?rev=1761593&r1=1761592&r2=1761593&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/actionlistener/package-summary.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/actionlistener/package-summary.html Tue Sep 20 15:16:50 2016
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Tobago Example Demo 3.0.0-alpha-6-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.actionlistener</title>
+		<title>Tobago Example Demo 3.0.0-alpha-7-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.actionlistener</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/bestpractice/package-frame.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/bestpractice/package-frame.html?rev=1761593&r1=1761592&r2=1761593&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/bestpractice/package-frame.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/bestpractice/package-frame.html Tue Sep 20 15:16:50 2016
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Tobago Example Demo 3.0.0-alpha-6-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.bestpractice</title>
+		<title>Tobago Example Demo 3.0.0-alpha-7-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.bestpractice</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/bestpractice/package-summary.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/bestpractice/package-summary.html?rev=1761593&r1=1761592&r2=1761593&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/bestpractice/package-summary.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/bestpractice/package-summary.html Tue Sep 20 15:16:50 2016
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Tobago Example Demo 3.0.0-alpha-6-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.bestpractice</title>
+		<title>Tobago Example Demo 3.0.0-alpha-7-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.bestpractice</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/clientConfig/package-frame.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/clientConfig/package-frame.html?rev=1761593&r1=1761592&r2=1761593&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/clientConfig/package-frame.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/clientConfig/package-frame.html Tue Sep 20 15:16:50 2016
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Tobago Example Demo 3.0.0-alpha-6-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.clientConfig</title>
+		<title>Tobago Example Demo 3.0.0-alpha-7-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.clientConfig</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/clientConfig/package-summary.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/clientConfig/package-summary.html?rev=1761593&r1=1761592&r2=1761593&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/clientConfig/package-summary.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/clientConfig/package-summary.html Tue Sep 20 15:16:50 2016
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Tobago Example Demo 3.0.0-alpha-6-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.clientConfig</title>
+		<title>Tobago Example Demo 3.0.0-alpha-7-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.clientConfig</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/formatter/package-frame.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/formatter/package-frame.html?rev=1761593&r1=1761592&r2=1761593&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/formatter/package-frame.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/formatter/package-frame.html Tue Sep 20 15:16:50 2016
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Tobago Example Demo 3.0.0-alpha-6-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.formatter</title>
+		<title>Tobago Example Demo 3.0.0-alpha-7-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.formatter</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/formatter/package-summary.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/formatter/package-summary.html?rev=1761593&r1=1761592&r2=1761593&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/formatter/package-summary.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/formatter/package-summary.html Tue Sep 20 15:16:50 2016
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Tobago Example Demo 3.0.0-alpha-6-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.formatter</title>
+		<title>Tobago Example Demo 3.0.0-alpha-7-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.formatter</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/info/package-frame.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/info/package-frame.html?rev=1761593&r1=1761592&r2=1761593&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/info/package-frame.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/info/package-frame.html Tue Sep 20 15:16:50 2016
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Tobago Example Demo 3.0.0-alpha-6-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.info</title>
+		<title>Tobago Example Demo 3.0.0-alpha-7-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.info</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/info/package-summary.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/info/package-summary.html?rev=1761593&r1=1761592&r2=1761593&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/info/package-summary.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/info/package-summary.html Tue Sep 20 15:16:50 2016
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Tobago Example Demo 3.0.0-alpha-6-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.info</title>
+		<title>Tobago Example Demo 3.0.0-alpha-7-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.info</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/nonfacesrequest/package-frame.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/nonfacesrequest/package-frame.html?rev=1761593&r1=1761592&r2=1761593&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/nonfacesrequest/package-frame.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/nonfacesrequest/package-frame.html Tue Sep 20 15:16:50 2016
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Tobago Example Demo 3.0.0-alpha-6-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.nonfacesrequest</title>
+		<title>Tobago Example Demo 3.0.0-alpha-7-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.nonfacesrequest</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/nonfacesrequest/package-summary.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/nonfacesrequest/package-summary.html?rev=1761593&r1=1761592&r2=1761593&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/nonfacesrequest/package-summary.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/nonfacesrequest/package-summary.html Tue Sep 20 15:16:50 2016
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Tobago Example Demo 3.0.0-alpha-6-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.nonfacesrequest</title>
+		<title>Tobago Example Demo 3.0.0-alpha-7-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.nonfacesrequest</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/overview/package-frame.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/overview/package-frame.html?rev=1761593&r1=1761592&r2=1761593&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/overview/package-frame.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/overview/package-frame.html Tue Sep 20 15:16:50 2016
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Tobago Example Demo 3.0.0-alpha-6-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.overview</title>
+		<title>Tobago Example Demo 3.0.0-alpha-7-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.overview</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/overview/package-summary.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/overview/package-summary.html?rev=1761593&r1=1761592&r2=1761593&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/overview/package-summary.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/overview/package-summary.html Tue Sep 20 15:16:50 2016
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Tobago Example Demo 3.0.0-alpha-6-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.overview</title>
+		<title>Tobago Example Demo 3.0.0-alpha-7-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.overview</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/package-frame.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/package-frame.html?rev=1761593&r1=1761592&r2=1761593&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/package-frame.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/package-frame.html Tue Sep 20 15:16:50 2016
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Tobago Example Demo 3.0.0-alpha-6-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo</title>
+		<title>Tobago Example Demo 3.0.0-alpha-7-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/package-summary.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/package-summary.html?rev=1761593&r1=1761592&r2=1761593&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/package-summary.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/package-summary.html Tue Sep 20 15:16:50 2016
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Tobago Example Demo 3.0.0-alpha-6-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo</title>
+		<title>Tobago Example Demo 3.0.0-alpha-7-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/sudoku/package-frame.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/sudoku/package-frame.html?rev=1761593&r1=1761592&r2=1761593&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/sudoku/package-frame.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/sudoku/package-frame.html Tue Sep 20 15:16:50 2016
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Tobago Example Demo 3.0.0-alpha-6-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.sudoku</title>
+		<title>Tobago Example Demo 3.0.0-alpha-7-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.sudoku</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/sudoku/package-summary.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/sudoku/package-summary.html?rev=1761593&r1=1761592&r2=1761593&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/sudoku/package-summary.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/sudoku/package-summary.html Tue Sep 20 15:16:50 2016
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Tobago Example Demo 3.0.0-alpha-6-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.sudoku</title>
+		<title>Tobago Example Demo 3.0.0-alpha-7-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.sudoku</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/overview-frame.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/overview-frame.html?rev=1761593&r1=1761592&r2=1761593&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/overview-frame.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/overview-frame.html Tue Sep 20 15:16:50 2016
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Tobago Example Demo 3.0.0-alpha-6-SNAPSHOT Reference</title>
+		<title>Tobago Example Demo 3.0.0-alpha-7-SNAPSHOT Reference</title>
 		<link rel="stylesheet" type="text/css" href="stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/overview-summary.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/overview-summary.html?rev=1761593&r1=1761592&r2=1761593&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/overview-summary.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/overview-summary.html Tue Sep 20 15:16:50 2016
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Tobago Example Demo 3.0.0-alpha-6-SNAPSHOT Reference</title>
+		<title>Tobago Example Demo 3.0.0-alpha-7-SNAPSHOT Reference</title>
 		<link rel="stylesheet" type="text/css" href="stylesheet.css" title="style" />
 	</head>
 	<body>
@@ -24,7 +24,7 @@
 	        </ul>
       	</div>
 		
-		      	<h2>Tobago Example Demo 3.0.0-alpha-6-SNAPSHOT Reference</h2>
+		      	<h2>Tobago Example Demo 3.0.0-alpha-7-SNAPSHOT Reference</h2>
 
 		<table class="summary">
         	<thead>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/checkstyle.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/checkstyle.html?rev=1761593&r1=1761592&r2=1761593&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/checkstyle.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/checkstyle.html Tue Sep 20 15:16:50 2016
@@ -29,7 +29,7 @@
   
   
   <div class="date">
-    Last Published: 09 Sep 2016
+    Last Published: 20 Sep 2016
   </div>
             <ul>
       <li>
@@ -133,7 +133,7 @@
 <tr class="b">
 <td>Header
 <ul>
-<li><b>headerFile</b>: <tt>&quot;/oldosiris/home/weber/tmp/tobago-2.0.10-site/tobago/tobago-example/tobago-example-portlet/target/checkstyle-header.txt&quot;</tt></li></ul></td>
+<li><b>headerFile</b>: <tt>&quot;/Volumes/tobago-site/tobago/tobago-example/tobago-example-portlet/target/checkstyle-header.txt&quot;</tt></li></ul></td>
 <td>0</td>
 <td><img alt="Errors" src="images/icon_error_sml.gif" />&#160;Error</td></tr>
 <tr class="a">

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/dependencies.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/dependencies.html?rev=1761593&r1=1761592&r2=1761593&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/dependencies.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/dependencies.html Tue Sep 20 15:16:50 2016
@@ -29,7 +29,7 @@
   
   
   <div class="date">
-    Last Published: 09 Sep 2016
+    Last Published: 20 Sep 2016
   </div>
             <ul>
       <li>
@@ -101,51 +101,45 @@
 <th>Type</th>
 <th>Licenses</th></tr>
 <tr class="b">
-<td>commons-lang</td>
-<td><a class="externalLink" href="http://commons.apache.org/lang/">commons-lang</a></td>
-<td>2.6</td>
-<td>jar</td>
-<td><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></td></tr>
-<tr class="a">
 <td>org.apache.myfaces.core</td>
 <td><a class="externalLink" href="http://myfaces.apache.org/core20/myfaces-api">myfaces-api</a></td>
 <td>2.0.24</td>
 <td>jar</td>
 <td><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></td></tr>
-<tr class="b">
+<tr class="a">
 <td>org.apache.myfaces.tobago</td>
 <td><a class="externalLink" href="http://myfaces.apache.org/tobago/tobago-core">tobago-core</a></td>
-<td>3.0.0-alpha-6-SNAPSHOT</td>
+<td>3.0.0-alpha-7-SNAPSHOT</td>
 <td>jar</td>
 <td><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></td></tr>
-<tr class="a">
+<tr class="b">
 <td>org.apache.myfaces.tobago</td>
 <td><a class="externalLink" href="http://myfaces.apache.org/tobago/tobago-theme/tobago-theme-charlotteville">tobago-theme-charlotteville</a></td>
-<td>3.0.0-alpha-6-SNAPSHOT</td>
+<td>3.0.0-alpha-7-SNAPSHOT</td>
 <td>jar</td>
 <td><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></td></tr>
-<tr class="b">
+<tr class="a">
 <td>org.apache.myfaces.tobago</td>
 <td><a class="externalLink" href="http://myfaces.apache.org/tobago/tobago-theme/tobago-theme-richmond">tobago-theme-richmond</a></td>
-<td>3.0.0-alpha-6-SNAPSHOT</td>
+<td>3.0.0-alpha-7-SNAPSHOT</td>
 <td>jar</td>
 <td><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></td></tr>
-<tr class="a">
+<tr class="b">
 <td>org.apache.myfaces.tobago</td>
 <td><a class="externalLink" href="http://myfaces.apache.org/tobago/tobago-theme/tobago-theme-scarborough">tobago-theme-scarborough</a></td>
-<td>3.0.0-alpha-6-SNAPSHOT</td>
+<td>3.0.0-alpha-7-SNAPSHOT</td>
 <td>jar</td>
 <td><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></td></tr>
-<tr class="b">
+<tr class="a">
 <td>org.apache.myfaces.tobago</td>
 <td><a class="externalLink" href="http://myfaces.apache.org/tobago/tobago-theme/tobago-theme-speyside">tobago-theme-speyside</a></td>
-<td>3.0.0-alpha-6-SNAPSHOT</td>
+<td>3.0.0-alpha-7-SNAPSHOT</td>
 <td>jar</td>
 <td><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></td></tr>
-<tr class="a">
+<tr class="b">
 <td>org.apache.myfaces.tobago</td>
 <td><a class="externalLink" href="http://myfaces.apache.org/tobago/tobago-theme/tobago-theme-standard">tobago-theme-standard</a></td>
-<td>3.0.0-alpha-6-SNAPSHOT</td>
+<td>3.0.0-alpha-7-SNAPSHOT</td>
 <td>jar</td>
 <td><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></td></tr></table></div><a name="Project_Dependencies_runtime"></a>
 <div class="section">
@@ -326,7 +320,7 @@
 <div class="section">
 <h3><a name="Dependency_Tree"></a>Dependency Tree</h3>
 <ul>
-<li>org.apache.myfaces.tobago:tobago-example-portlet:war:3.0.0-alpha-6-SNAPSHOT <img id="_img1" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep0', '_img1' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep0" style="display:none">
+<li>org.apache.myfaces.tobago:tobago-example-portlet:war:3.0.0-alpha-7-SNAPSHOT <img id="_img1" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep0', '_img1' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep0" style="display:none">
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>Tobago Example for Portlets</th></tr>
@@ -336,7 +330,7 @@
 <p><b>URL: </b><a class="externalLink" href="http://myfaces.apache.org/tobago/tobago-example/tobago-example-portlet">http://myfaces.apache.org/tobago/tobago-example/tobago-example-portlet</a></p>
 <p><b>Project Licenses: </b><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></p></td></tr></table></div>
 <ul>
-<li>org.apache.myfaces.tobago:tobago-theme-charlotteville:jar:3.0.0-alpha-6-SNAPSHOT (compile) <img id="_img3" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep2', '_img3' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep2" style="display:none">
+<li>org.apache.myfaces.tobago:tobago-theme-charlotteville:jar:3.0.0-alpha-7-SNAPSHOT (compile) <img id="_img3" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep2', '_img3' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep2" style="display:none">
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>Tobago Theme Charlotteville</th></tr>
@@ -345,7 +339,7 @@
 <p><b>Description: </b>The goal of Tobago is to provide the community with a well designed set of user interface components based on JSF and run on MyFaces.</p>
 <p><b>URL: </b><a class="externalLink" href="http://myfaces.apache.org/tobago/tobago-theme/tobago-theme-charlotteville">http://myfaces.apache.org/tobago/tobago-theme/tobago-theme-charlotteville</a></p>
 <p><b>Project Licenses: </b><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></p></td></tr></table></div></li>
-<li>org.apache.myfaces.tobago:tobago-theme-scarborough:jar:3.0.0-alpha-6-SNAPSHOT (compile) <img id="_img5" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep4', '_img5' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep4" style="display:none">
+<li>org.apache.myfaces.tobago:tobago-theme-scarborough:jar:3.0.0-alpha-7-SNAPSHOT (compile) <img id="_img5" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep4', '_img5' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep4" style="display:none">
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>Tobago Theme Scarborough</th></tr>
@@ -354,7 +348,7 @@
 <p><b>Description: </b>The goal of Tobago is to provide the community with a well designed set of user interface components based on JSF and run on MyFaces.</p>
 <p><b>URL: </b><a class="externalLink" href="http://myfaces.apache.org/tobago/tobago-theme/tobago-theme-scarborough">http://myfaces.apache.org/tobago/tobago-theme/tobago-theme-scarborough</a></p>
 <p><b>Project Licenses: </b><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></p></td></tr></table></div></li>
-<li>org.apache.myfaces.tobago:tobago-theme-speyside:jar:3.0.0-alpha-6-SNAPSHOT (compile) <img id="_img7" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep6', '_img7' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep6" style="display:none">
+<li>org.apache.myfaces.tobago:tobago-theme-speyside:jar:3.0.0-alpha-7-SNAPSHOT (compile) <img id="_img7" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep6', '_img7' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep6" style="display:none">
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>Tobago Theme Speyside</th></tr>
@@ -363,7 +357,7 @@
 <p><b>Description: </b>The goal of Tobago is to provide the community with a well designed set of user interface components based on JSF and run on MyFaces.</p>
 <p><b>URL: </b><a class="externalLink" href="http://myfaces.apache.org/tobago/tobago-theme/tobago-theme-speyside">http://myfaces.apache.org/tobago/tobago-theme/tobago-theme-speyside</a></p>
 <p><b>Project Licenses: </b><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></p></td></tr></table></div></li>
-<li>org.apache.myfaces.tobago:tobago-theme-richmond:jar:3.0.0-alpha-6-SNAPSHOT (compile) <img id="_img9" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep8', '_img9' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep8" style="display:none">
+<li>org.apache.myfaces.tobago:tobago-theme-richmond:jar:3.0.0-alpha-7-SNAPSHOT (compile) <img id="_img9" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep8', '_img9' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep8" style="display:none">
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>Tobago Theme Richmond</th></tr>
@@ -372,7 +366,7 @@
 <p><b>Description: </b>The goal of Tobago is to provide the community with a well designed set of user interface components based on JSF and run on MyFaces.</p>
 <p><b>URL: </b><a class="externalLink" href="http://myfaces.apache.org/tobago/tobago-theme/tobago-theme-richmond">http://myfaces.apache.org/tobago/tobago-theme/tobago-theme-richmond</a></p>
 <p><b>Project Licenses: </b><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></p></td></tr></table></div></li>
-<li>org.apache.myfaces.tobago:tobago-theme-standard:jar:3.0.0-alpha-6-SNAPSHOT (compile) <img id="_img11" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep10', '_img11' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep10" style="display:none">
+<li>org.apache.myfaces.tobago:tobago-theme-standard:jar:3.0.0-alpha-7-SNAPSHOT (compile) <img id="_img11" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep10', '_img11' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep10" style="display:none">
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>Tobago Theme Standard</th></tr>
@@ -381,7 +375,7 @@
 <p><b>Description: </b>The goal of Tobago is to provide the community with a well designed set of user interface components based on JSF and run on MyFaces.</p>
 <p><b>URL: </b><a class="externalLink" href="http://myfaces.apache.org/tobago/tobago-theme/tobago-theme-standard">http://myfaces.apache.org/tobago/tobago-theme/tobago-theme-standard</a></p>
 <p><b>Project Licenses: </b><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></p></td></tr></table></div></li>
-<li>org.apache.myfaces.tobago:tobago-core:jar:3.0.0-alpha-6-SNAPSHOT (compile) <img id="_img13" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep12', '_img13' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep12" style="display:none">
+<li>org.apache.myfaces.tobago:tobago-core:jar:3.0.0-alpha-7-SNAPSHOT (compile) <img id="_img13" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep12', '_img13' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep12" style="display:none">
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>Tobago Core</th></tr>
@@ -498,18 +492,7 @@
     pattern of nested XML elements is recognized.</p>
 <p><b>URL: </b><a class="externalLink" href="http://jakarta.apache.org/commons/digester/">http://jakarta.apache.org/commons/digester/</a></p>
 <p><b>Project Licenses: </b><a href="/LICENSE.txt">The Apache Software License, Version 2.0</a></p></td></tr></table></div></li></ul></li>
-<li>commons-lang:commons-lang:jar:2.6 (compile) <img id="_img37" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep36', '_img37' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep36" style="display:none">
-<table border="0" class="bodyTable">
-<tr class="a">
-<th>Commons Lang</th></tr>
-<tr class="b">
-<td>
-<p><b>Description: </b>Commons Lang, a package of Java utility classes for the
-        classes that are in java.lang's hierarchy, or are considered to be so
-        standard as to justify existence in java.lang.</p>
-<p><b>URL: </b><a class="externalLink" href="http://commons.apache.org/lang/">http://commons.apache.org/lang/</a></p>
-<p><b>Project Licenses: </b><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></p></td></tr></table></div></li>
-<li>junit:junit:jar:4.12 (test) <img id="_img39" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep38', '_img39' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep38" style="display:none">
+<li>junit:junit:jar:4.12 (test) <img id="_img37" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep36', '_img37' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep36" style="display:none">
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>JUnit</th></tr>
@@ -519,7 +502,7 @@
 <p><b>URL: </b><a class="externalLink" href="http://junit.org">http://junit.org</a></p>
 <p><b>Project Licenses: </b><a class="externalLink" href="http://www.eclipse.org/legal/epl-v10.html">Eclipse Public License 1.0</a></p></td></tr></table></div>
 <ul>
-<li>org.hamcrest:hamcrest-core:jar:1.3 (test) <img id="_img41" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep40', '_img41' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep40" style="display:none">
+<li>org.hamcrest:hamcrest-core:jar:1.3 (test) <img id="_img39" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep38', '_img39' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep38" style="display:none">
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>Hamcrest Core</th></tr>
@@ -528,7 +511,7 @@
 <p><b>Description: </b>This is the core API of hamcrest matcher framework to be used by third-party framework providers. This includes the a foundation set of matcher implementations for common operations.</p>
 <p><b>URL: </b><a class="externalLink" href="https://github.com/hamcrest/JavaHamcrest/hamcrest-core">https://github.com/hamcrest/JavaHamcrest/hamcrest-core</a></p>
 <p><b>Project Licenses: </b><a class="externalLink" href="http://www.opensource.org/licenses/bsd-license.php">New BSD License</a></p></td></tr></table></div></li></ul></li>
-<li>org.apache.geronimo.specs:geronimo-servlet_3.0_spec:jar:1.0 (provided) <img id="_img43" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep42', '_img43' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep42" style="display:none">
+<li>org.apache.geronimo.specs:geronimo-servlet_3.0_spec:jar:1.0 (provided) <img id="_img41" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep40', '_img41' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep40" style="display:none">
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>Servlet 3.0</th></tr>
@@ -537,7 +520,7 @@
 <p><b>Description: </b>Servlet 3.0 API</p>
 <p><b>URL: </b><a class="externalLink" href="http://geronimo.apache.org/maven/specs/geronimo-servlet_3.0_spec/1.0">http://geronimo.apache.org/maven/specs/geronimo-servlet_3.0_spec/1.0</a></p>
 <p><b>Project Licenses: </b><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></p></td></tr></table></div></li>
-<li>org.apache.geronimo.specs:geronimo-el_2.2_spec:jar:1.0.4 (provided) <img id="_img45" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep44', '_img45' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep44" style="display:none">
+<li>org.apache.geronimo.specs:geronimo-el_2.2_spec:jar:1.0.4 (provided) <img id="_img43" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep42', '_img43' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep42" style="display:none">
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>Apache Geronimo Expression Language Spec 2.2</th></tr>
@@ -546,7 +529,7 @@
 <p><b>Description: </b>Expression Languague API 2.2</p>
 <p><b>URL: </b><a class="externalLink" href="http://geronimo.apache.org/maven/specs/geronimo-el_2.2_spec/1.0.4">http://geronimo.apache.org/maven/specs/geronimo-el_2.2_spec/1.0.4</a></p>
 <p><b>Project Licenses: </b><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0</a></p></td></tr></table></div></li>
-<li>javax.portlet:portlet-api:jar:2.0 (provided) <img id="_img47" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep46', '_img47' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep46" style="display:none">
+<li>javax.portlet:portlet-api:jar:2.0 (provided) <img id="_img45" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep44', '_img45' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep44" style="display:none">
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>Java Portlet Specification V2.0</th></tr>
@@ -564,7 +547,7 @@
 <p><b>Apache License, Version 2.0: </b>Apache Commons Codec, Apache Commons Collections</p>
 <p><b>GNU Lesser General Public License: </b>Logback Classic Module, Logback Core Module</p>
 <p><b>New BSD License: </b>Hamcrest Core</p>
-<p><b>The Apache Software License, Version 2.0: </b>Apache Commons BeanUtils, Apache Geronimo Expression Language Spec 2.2, Apache MyFaces JSF-2.0 Core API, Apache MyFaces JSF-2.0 Core Impl, Commons Lang, Commons Logging, Digester, Servlet 3.0, Tobago Core, Tobago Example for Portlets, Tobago Theme Charlotteville, Tobago Theme Richmond, Tobago Theme Scarborough, Tobago Theme Speyside, Tobago Theme Standard</p>
+<p><b>The Apache Software License, Version 2.0: </b>Apache Commons BeanUtils, Apache Geronimo Expression Language Spec 2.2, Apache MyFaces JSF-2.0 Core API, Apache MyFaces JSF-2.0 Core Impl, Commons Logging, Digester, Servlet 3.0, Tobago Core, Tobago Example for Portlets, Tobago Theme Charlotteville, Tobago Theme Richmond, Tobago Theme Scarborough, Tobago Theme Speyside, Tobago Theme Standard</p>
 <p><b>Eclipse Public License - v 1.0: </b>Logback Classic Module, Logback Core Module</p></div><a name="Dependency_File_Details"></a>
 <div class="section">
 <h2><a name="Dependency_File_Details"></a>Dependency File Details</h2>
@@ -626,14 +609,6 @@
 <td>1.2</td>
 <td>Yes</td></tr>
 <tr class="b">
-<td>commons-lang-2.6.jar</td>
-<td>284.2 kB</td>
-<td>155</td>
-<td>133</td>
-<td>10</td>
-<td>1.3</td>
-<td>Yes</td></tr>
-<tr class="a">
 <td>commons-logging-1.1.1.jar</td>
 <td>60.7 kB</td>
 <td>42</td>
@@ -641,7 +616,7 @@
 <td>2</td>
 <td>1.1</td>
 <td>Yes</td></tr>
-<tr class="b">
+<tr class="a">
 <td>portlet-api-2.0.jar</td>
 <td>48 kB</td>
 <td>71</td>
@@ -649,7 +624,7 @@
 <td>2</td>
 <td>1.5</td>
 <td>Yes</td></tr>
-<tr class="a">
+<tr class="b">
 <td>junit-4.12.jar</td>
 <td>314.9 kB</td>
 <td>323</td>
@@ -657,7 +632,7 @@
 <td>30</td>
 <td>1.5</td>
 <td>Yes</td></tr>
-<tr class="b">
+<tr class="a">
 <td>geronimo-el_2.2_spec-1.0.4.jar</td>
 <td>47.5 kB</td>
 <td>47</td>
@@ -665,7 +640,7 @@
 <td>2</td>
 <td>1.5</td>
 <td>Yes</td></tr>
-<tr class="a">
+<tr class="b">
 <td>geronimo-servlet_3.0_spec-1.0.jar</td>
 <td>96.3 kB</td>
 <td>107</td>
@@ -673,7 +648,7 @@
 <td>4</td>
 <td>1.5</td>
 <td>Yes</td></tr>
-<tr class="b">
+<tr class="a">
 <td>myfaces-api-2.0.24.jar</td>
 <td>1.1 MB</td>
 <td>696</td>
@@ -681,7 +656,7 @@
 <td>18</td>
 <td>1.5</td>
 <td>Yes</td></tr>
-<tr class="a">
+<tr class="b">
 <td>myfaces-impl-2.0.24.jar</td>
 <td>1.9 MB</td>
 <td>1147</td>
@@ -689,55 +664,55 @@
 <td>74</td>
 <td>1.5</td>
 <td>Yes</td></tr>
-<tr class="b">
-<td>tobago-core-3.0.0-alpha-6-SNAPSHOT.jar</td>
-<td>888.2 kB</td>
+<tr class="a">
+<td>tobago-core-3.0.0-alpha-7-SNAPSHOT.jar</td>
+<td>887.8 kB</td>
 <td>790</td>
 <td>727</td>
 <td>33</td>
 <td>1.6</td>
 <td>Yes</td></tr>
-<tr class="a">
-<td>tobago-theme-charlotteville-3.0.0-alpha-6-SNAPSHOT.jar</td>
-<td>11.5 kB</td>
+<tr class="b">
+<td>tobago-theme-charlotteville-3.0.0-alpha-7-SNAPSHOT.jar</td>
+<td>11.4 kB</td>
 <td>23</td>
 <td>0</td>
 <td>0</td>
 <td>-</td>
 <td>No</td></tr>
-<tr class="b">
-<td>tobago-theme-richmond-3.0.0-alpha-6-SNAPSHOT.jar</td>
+<tr class="a">
+<td>tobago-theme-richmond-3.0.0-alpha-7-SNAPSHOT.jar</td>
 <td>22.2 kB</td>
 <td>51</td>
 <td>0</td>
 <td>0</td>
 <td>-</td>
 <td>No</td></tr>
-<tr class="a">
-<td>tobago-theme-scarborough-3.0.0-alpha-6-SNAPSHOT.jar</td>
-<td>31.1 kB</td>
+<tr class="b">
+<td>tobago-theme-scarborough-3.0.0-alpha-7-SNAPSHOT.jar</td>
+<td>31 kB</td>
 <td>71</td>
 <td>0</td>
 <td>0</td>
 <td>-</td>
 <td>No</td></tr>
-<tr class="b">
-<td>tobago-theme-speyside-3.0.0-alpha-6-SNAPSHOT.jar</td>
+<tr class="a">
+<td>tobago-theme-speyside-3.0.0-alpha-7-SNAPSHOT.jar</td>
 <td>33.3 kB</td>
 <td>70</td>
 <td>0</td>
 <td>0</td>
 <td>-</td>
 <td>No</td></tr>
-<tr class="a">
-<td>tobago-theme-standard-3.0.0-alpha-6-SNAPSHOT.jar</td>
+<tr class="b">
+<td>tobago-theme-standard-3.0.0-alpha-7-SNAPSHOT.jar</td>
 <td>1.6 MB</td>
 <td>209</td>
 <td>92</td>
 <td>5</td>
 <td>1.6</td>
 <td>Yes</td></tr>
-<tr class="b">
+<tr class="a">
 <td>hamcrest-core-1.3.jar</td>
 <td>45 kB</td>
 <td>52</td>
@@ -745,7 +720,7 @@
 <td>3</td>
 <td>1.5</td>
 <td>Yes</td></tr>
-<tr class="a">
+<tr class="b">
 <td>jsoup-1.8.2.jar</td>
 <td>315 kB</td>
 <td>250</td>
@@ -753,7 +728,7 @@
 <td>7</td>
 <td>1.5</td>
 <td>Yes</td></tr>
-<tr class="b">
+<tr class="a">
 <td>slf4j-api-1.7.12.jar</td>
 <td>32.1 kB</td>
 <td>39</td>
@@ -761,7 +736,7 @@
 <td>3</td>
 <td>1.5</td>
 <td>Yes</td></tr>
-<tr class="a">
+<tr class="b">
 <th>Total</th>
 <th>Size</th>
 <th>Entries</th>
@@ -769,23 +744,23 @@
 <th>Packages</th>
 <th>Java Version</th>
 <th>Debug Information</th></tr>
-<tr class="b">
-<td>23</td>
-<td>8.8 MB</td>
-<td>5743</td>
-<td>4576</td>
-<td>281</td>
-<td>1.6</td>
-<td>19</td></tr>
 <tr class="a">
-<td>compile: 14</td>
-<td>compile: 5.5 MB</td>
-<td>compile: 3272</td>
-<td>compile: 2437</td>
-<td>compile: 101</td>
-<td>-</td>
-<td>compile: 10</td></tr>
+<td>22</td>
+<td>8.6 MB</td>
+<td>5588</td>
+<td>4443</td>
+<td>271</td>
+<td>1.6</td>
+<td>18</td></tr>
 <tr class="b">
+<td>compile: 13</td>
+<td>compile: 5.2 MB</td>
+<td>compile: 3117</td>
+<td>compile: 2304</td>
+<td>compile: 91</td>
+<td>-</td>
+<td>compile: 9</td></tr>
+<tr class="a">
 <td>test: 2</td>
 <td>test: 360 kB</td>
 <td>test: 375</td>
@@ -793,7 +768,7 @@
 <td>test: 33</td>
 <td>-</td>
 <td>test: 2</td></tr>
-<tr class="a">
+<tr class="b">
 <td>runtime: 4</td>
 <td>runtime: 2.8 MB</td>
 <td>runtime: 1871</td>
@@ -801,7 +776,7 @@
 <td>runtime: 139</td>
 <td>-</td>
 <td>runtime: 4</td></tr>
-<tr class="b">
+<tr class="a">
 <td>provided: 3</td>
 <td>provided: 191.9 kB</td>
 <td>provided: 225</td>
@@ -819,23 +794,59 @@
 <th>Snapshot</th>
 <th>Blacklisted</th></tr>
 <tr class="b">
+<td>easytel</td>
+<td><a class="externalLink" href="http://repo.e-konzern.de/nexus/content/repositories/easytel">http://repo.e-konzern.de/nexus/content/repositories/easytel</a></td>
+<td>Yes</td>
+<td>No</td>
+<td>Yes</td></tr>
+<tr class="a">
+<td>easytel-thirdparty</td>
+<td><a class="externalLink" href="http://repo.e-konzern.de/nexus/content/repositories/easytel-thirdparty">http://repo.e-konzern.de/nexus/content/repositories/easytel-thirdparty</a></td>
+<td>Yes</td>
+<td>No</td>
+<td>Yes</td></tr>
+<tr class="b">
+<td>easytel-snapshots</td>
+<td><a class="externalLink" href="http://repo.e-konzern.de/nexus/content/repositories/easytel-snapshots">http://repo.e-konzern.de/nexus/content/repositories/easytel-snapshots</a></td>
+<td>No</td>
+<td>Yes</td>
+<td>Yes</td></tr>
+<tr class="a">
 <td>central</td>
 <td><a class="externalLink" href="https://repo.maven.apache.org/maven2">https://repo.maven.apache.org/maven2</a></td>
 <td>Yes</td>
 <td>No</td>
 <td>No</td></tr>
-<tr class="a">
+<tr class="b">
 <td>tomcat</td>
 <td><a class="externalLink" href="http://tomcat.apache.org/dev/dist/m2-repository">http://tomcat.apache.org/dev/dist/m2-repository</a></td>
 <td>Yes</td>
 <td>Yes</td>
 <td>Yes</td></tr>
+<tr class="a">
+<td>ewetel</td>
+<td><a class="externalLink" href="http://repo.e-konzern.de/nexus/content/repositories/ewetel">http://repo.e-konzern.de/nexus/content/repositories/ewetel</a></td>
+<td>Yes</td>
+<td>No</td>
+<td>Yes</td></tr>
 <tr class="b">
+<td>ewetel-snapshots</td>
+<td><a class="externalLink" href="http://repo.e-konzern.de/nexus/content/repositories/ewetel-snapshots">http://repo.e-konzern.de/nexus/content/repositories/ewetel-snapshots</a></td>
+<td>No</td>
+<td>Yes</td>
+<td>Yes</td></tr>
+<tr class="a">
 <td>codehaus.snapshots</td>
 <td><a class="externalLink" href="http://snapshots.repository.codehaus.org">http://snapshots.repository.codehaus.org</a></td>
 <td>No</td>
 <td>Yes</td>
 <td>Yes</td></tr>
+<tr class="b">
+<td>ewetel-tools</td>
+<td><a class="externalLink" href="http://repo.e-konzern.de/nexus/content/repositories/ewetel-tools">http://repo.e-konzern.de/nexus/content/repositories/ewetel-tools</a></td>
+<td>Yes</td>
+<td>No</td>
+<td>Yes</td></tr>
 <tr class="a">
 <td>apache.snapshots</td>
 <td><a class="externalLink" href="http://repository.apache.org/snapshots">http://repository.apache.org/snapshots</a></td>
@@ -873,80 +884,76 @@
 <td><a class="externalLink" href="https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar"><img alt="Found at https://repo.maven.apache.org/maven2" src="images/icon_success_sml.gif" /></a></td>
 <td>-</td></tr>
 <tr class="b">
-<td>commons-lang:commons-lang:jar:2.6</td>
-<td><a class="externalLink" href="https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.6/commons-lang-2.6.jar"><img alt="Found at https://repo.maven.apache.org/maven2" src="images/icon_success_sml.gif" /></a></td>
-<td>-</td></tr>
-<tr class="a">
 <td>commons-logging:commons-logging:jar:1.1.1</td>
 <td><a class="externalLink" href="https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar"><img alt="Found at https://repo.maven.apache.org/maven2" src="images/icon_success_sml.gif" /></a></td>
 <td>-</td></tr>
-<tr class="b">
+<tr class="a">
 <td>javax.portlet:portlet-api:jar:2.0</td>
 <td><a class="externalLink" href="https://repo.maven.apache.org/maven2/javax/portlet/portlet-api/2.0/portlet-api-2.0.jar"><img alt="Found at https://repo.maven.apache.org/maven2" src="images/icon_success_sml.gif" /></a></td>
 <td>-</td></tr>
-<tr class="a">
+<tr class="b">
 <td>junit:junit:jar:4.12</td>
 <td><a class="externalLink" href="https://repo.maven.apache.org/maven2/junit/junit/4.12/junit-4.12.jar"><img alt="Found at https://repo.maven.apache.org/maven2" src="images/icon_success_sml.gif" /></a></td>
 <td>-</td></tr>
-<tr class="b">
+<tr class="a">
 <td>org.apache.geronimo.specs:geronimo-el_2.2_spec:jar:1.0.4</td>
 <td><a class="externalLink" href="https://repo.maven.apache.org/maven2/org/apache/geronimo/specs/geronimo-el_2.2_spec/1.0.4/geronimo-el_2.2_spec-1.0.4.jar"><img alt="Found at https://repo.maven.apache.org/maven2" src="images/icon_success_sml.gif" /></a></td>
 <td>-</td></tr>
-<tr class="a">
+<tr class="b">
 <td>org.apache.geronimo.specs:geronimo-servlet_3.0_spec:jar:1.0</td>
 <td><a class="externalLink" href="https://repo.maven.apache.org/maven2/org/apache/geronimo/specs/geronimo-servlet_3.0_spec/1.0/geronimo-servlet_3.0_spec-1.0.jar"><img alt="Found at https://repo.maven.apache.org/maven2" src="images/icon_success_sml.gif" /></a></td>
 <td>-</td></tr>
-<tr class="b">
+<tr class="a">
 <td>org.apache.myfaces.core:myfaces-api:jar:2.0.24</td>
 <td><a class="externalLink" href="https://repo.maven.apache.org/maven2/org/apache/myfaces/core/myfaces-api/2.0.24/myfaces-api-2.0.24.jar"><img alt="Found at https://repo.maven.apache.org/maven2" src="images/icon_success_sml.gif" /></a></td>
 <td>-</td></tr>
-<tr class="a">
+<tr class="b">
 <td>org.apache.myfaces.core:myfaces-impl:jar:2.0.24</td>
 <td><a class="externalLink" href="https://repo.maven.apache.org/maven2/org/apache/myfaces/core/myfaces-impl/2.0.24/myfaces-impl-2.0.24.jar"><img alt="Found at https://repo.maven.apache.org/maven2" src="images/icon_success_sml.gif" /></a></td>
 <td>-</td></tr>
-<tr class="b">
-<td>org.apache.myfaces.tobago:tobago-core:jar:3.0.0-alpha-6-SNAPSHOT</td>
-<td>-</td>
-<td>-</td></tr>
 <tr class="a">
-<td>org.apache.myfaces.tobago:tobago-theme-charlotteville:jar:3.0.0-alpha-6-SNAPSHOT</td>
+<td>org.apache.myfaces.tobago:tobago-core:jar:3.0.0-alpha-7-SNAPSHOT</td>
 <td>-</td>
 <td>-</td></tr>
 <tr class="b">
-<td>org.apache.myfaces.tobago:tobago-theme-richmond:jar:3.0.0-alpha-6-SNAPSHOT</td>
+<td>org.apache.myfaces.tobago:tobago-theme-charlotteville:jar:3.0.0-alpha-7-SNAPSHOT</td>
 <td>-</td>
 <td>-</td></tr>
 <tr class="a">
-<td>org.apache.myfaces.tobago:tobago-theme-scarborough:jar:3.0.0-alpha-6-SNAPSHOT</td>
+<td>org.apache.myfaces.tobago:tobago-theme-richmond:jar:3.0.0-alpha-7-SNAPSHOT</td>
 <td>-</td>
 <td>-</td></tr>
 <tr class="b">
-<td>org.apache.myfaces.tobago:tobago-theme-speyside:jar:3.0.0-alpha-6-SNAPSHOT</td>
+<td>org.apache.myfaces.tobago:tobago-theme-scarborough:jar:3.0.0-alpha-7-SNAPSHOT</td>
 <td>-</td>
 <td>-</td></tr>
 <tr class="a">
-<td>org.apache.myfaces.tobago:tobago-theme-standard:jar:3.0.0-alpha-6-SNAPSHOT</td>
+<td>org.apache.myfaces.tobago:tobago-theme-speyside:jar:3.0.0-alpha-7-SNAPSHOT</td>
 <td>-</td>
 <td>-</td></tr>
 <tr class="b">
+<td>org.apache.myfaces.tobago:tobago-theme-standard:jar:3.0.0-alpha-7-SNAPSHOT</td>
+<td>-</td>
+<td>-</td></tr>
+<tr class="a">
 <td>org.hamcrest:hamcrest-core:jar:1.3</td>
 <td><a class="externalLink" href="https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar"><img alt="Found at https://repo.maven.apache.org/maven2" src="images/icon_success_sml.gif" /></a></td>
 <td>-</td></tr>
-<tr class="a">
+<tr class="b">
 <td>org.jsoup:jsoup:jar:1.8.2</td>
 <td><a class="externalLink" href="https://repo.maven.apache.org/maven2/org/jsoup/jsoup/1.8.2/jsoup-1.8.2.jar"><img alt="Found at https://repo.maven.apache.org/maven2" src="images/icon_success_sml.gif" /></a></td>
 <td>-</td></tr>
-<tr class="b">
+<tr class="a">
 <td>org.slf4j:slf4j-api:jar:1.7.12</td>
 <td><a class="externalLink" href="https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.12/slf4j-api-1.7.12.jar"><img alt="Found at https://repo.maven.apache.org/maven2" src="images/icon_success_sml.gif" /></a></td>
 <td>-</td></tr>
-<tr class="a">
+<tr class="b">
 <th>Total</th>
 <th>central</th>
 <th>apache.snapshots</th></tr>
-<tr class="b">
-<td>23 (compile: 14, test: 2, runtime: 4, provided: 3)</td>
-<td>17</td>
+<tr class="a">
+<td>22 (compile: 13, test: 2, runtime: 4, provided: 3)</td>
+<td>16</td>
 <td>0</td></tr></table></div>
       </div>
     </div>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/dependency-analysis.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/dependency-analysis.html?rev=1761593&r1=1761592&r2=1761593&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/dependency-analysis.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/dependency-analysis.html Tue Sep 20 15:16:50 2016
@@ -29,7 +29,7 @@
   
   
   <div class="date">
-    Last Published: 09 Sep 2016
+    Last Published: 20 Sep 2016
   </div>
             <ul>
       <li>
@@ -109,7 +109,7 @@
 <tr class="b">
 <td>org.apache.myfaces.tobago</td>
 <td>tobago-theme-charlotteville</td>
-<td>3.0.0-alpha-6-SNAPSHOT</td>
+<td>3.0.0-alpha-7-SNAPSHOT</td>
 <td>compile</td>
 <td></td>
 <td>jar</td>
@@ -117,7 +117,7 @@
 <tr class="a">
 <td>org.apache.myfaces.tobago</td>
 <td>tobago-theme-scarborough</td>
-<td>3.0.0-alpha-6-SNAPSHOT</td>
+<td>3.0.0-alpha-7-SNAPSHOT</td>
 <td>compile</td>
 <td></td>
 <td>jar</td>
@@ -125,7 +125,7 @@
 <tr class="b">
 <td>org.apache.myfaces.tobago</td>
 <td>tobago-theme-speyside</td>
-<td>3.0.0-alpha-6-SNAPSHOT</td>
+<td>3.0.0-alpha-7-SNAPSHOT</td>
 <td>compile</td>
 <td></td>
 <td>jar</td>
@@ -133,7 +133,7 @@
 <tr class="a">
 <td>org.apache.myfaces.tobago</td>
 <td>tobago-theme-richmond</td>
-<td>3.0.0-alpha-6-SNAPSHOT</td>
+<td>3.0.0-alpha-7-SNAPSHOT</td>
 <td>compile</td>
 <td></td>
 <td>jar</td>
@@ -141,7 +141,7 @@
 <tr class="b">
 <td>org.apache.myfaces.tobago</td>
 <td>tobago-theme-standard</td>
-<td>3.0.0-alpha-6-SNAPSHOT</td>
+<td>3.0.0-alpha-7-SNAPSHOT</td>
 <td>compile</td>
 <td></td>
 <td>jar</td>
@@ -149,7 +149,7 @@
 <tr class="a">
 <td>org.apache.myfaces.tobago</td>
 <td>tobago-core</td>
-<td>3.0.0-alpha-6-SNAPSHOT</td>
+<td>3.0.0-alpha-7-SNAPSHOT</td>
 <td>compile</td>
 <td></td>
 <td>jar</td>
@@ -187,14 +187,6 @@
 <td>jar</td>
 <td>false</td></tr>
 <tr class="b">
-<td>commons-lang</td>
-<td>commons-lang</td>
-<td>2.6</td>
-<td>compile</td>
-<td></td>
-<td>jar</td>
-<td>false</td></tr>
-<tr class="a">
 <td>junit</td>
 <td>junit</td>
 <td>4.12</td>
@@ -202,7 +194,7 @@
 <td></td>
 <td>jar</td>
 <td>false</td></tr>
-<tr class="b">
+<tr class="a">
 <td>org.apache.geronimo.specs</td>
 <td>geronimo-servlet_3.0_spec</td>
 <td>1.0</td>
@@ -210,7 +202,7 @@
 <td></td>
 <td>jar</td>
 <td>false</td></tr>
-<tr class="a">
+<tr class="b">
 <td>org.apache.geronimo.specs</td>
 <td>geronimo-el_2.2_spec</td>
 <td>1.0.4</td>
@@ -218,7 +210,7 @@
 <td></td>
 <td>jar</td>
 <td>false</td></tr>
-<tr class="b">
+<tr class="a">
 <td>javax.portlet</td>
 <td>portlet-api</td>
 <td>2.0</td>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/dependency-info.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/dependency-info.html?rev=1761593&r1=1761592&r2=1761593&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/dependency-info.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/dependency-info.html Tue Sep 20 15:16:50 2016
@@ -29,7 +29,7 @@
   
   
   <div class="date">
-    Last Published: 09 Sep 2016
+    Last Published: 20 Sep 2016
   </div>
             <ul>
       <li>
@@ -95,37 +95,37 @@
 <pre>&lt;dependency&gt;
   &lt;groupId&gt;org.apache.myfaces.tobago&lt;/groupId&gt;
   &lt;artifactId&gt;tobago-example-portlet&lt;/artifactId&gt;
-  &lt;version&gt;3.0.0-alpha-6-SNAPSHOT&lt;/version&gt;
+  &lt;version&gt;3.0.0-alpha-7-SNAPSHOT&lt;/version&gt;
   &lt;type&gt;war&lt;/type&gt;
 &lt;/dependency&gt;</pre></div></div>
 <div class="section">
 <h3><a name="Apache_Buildr"></a>Apache Buildr</h3><a name="Apache_Buildr"></a>
 <div class="source">
-<pre>'org.apache.myfaces.tobago:tobago-example-portlet:war:3.0.0-alpha-6-SNAPSHOT'</pre></div></div>
+<pre>'org.apache.myfaces.tobago:tobago-example-portlet:war:3.0.0-alpha-7-SNAPSHOT'</pre></div></div>
 <div class="section">
 <h3><a name="Apache_Ivy"></a>Apache Ivy</h3><a name="Apache_Ivy"></a>
 <div class="source">
-<pre>&lt;dependency org=&quot;org.apache.myfaces.tobago&quot; name=&quot;tobago-example-portlet&quot; rev=&quot;3.0.0-alpha-6-SNAPSHOT&quot;&gt;
+<pre>&lt;dependency org=&quot;org.apache.myfaces.tobago&quot; name=&quot;tobago-example-portlet&quot; rev=&quot;3.0.0-alpha-7-SNAPSHOT&quot;&gt;
   &lt;artifact name=&quot;tobago-example-portlet&quot; type=&quot;war&quot; /&gt;
 &lt;/dependency&gt;</pre></div></div>
 <div class="section">
 <h3><a name="Groovy_Grape"></a>Groovy Grape</h3><a name="Groovy_Grape"></a>
 <div class="source">
 <pre>@Grapes(
-@Grab(group='org.apache.myfaces.tobago', module='tobago-example-portlet', version='3.0.0-alpha-6-SNAPSHOT')
+@Grab(group='org.apache.myfaces.tobago', module='tobago-example-portlet', version='3.0.0-alpha-7-SNAPSHOT')
 )</pre></div></div>
 <div class="section">
 <h3><a name="GradleGrails"></a>Gradle/Grails</h3><a name="GradleGrails"></a>
 <div class="source">
-<pre>compile 'org.apache.myfaces.tobago:tobago-example-portlet:3.0.0-alpha-6-SNAPSHOT'</pre></div></div>
+<pre>compile 'org.apache.myfaces.tobago:tobago-example-portlet:3.0.0-alpha-7-SNAPSHOT'</pre></div></div>
 <div class="section">
 <h3><a name="Scala_SBT"></a>Scala SBT</h3><a name="Scala_SBT"></a>
 <div class="source">
-<pre>libraryDependencies += &quot;org.apache.myfaces.tobago&quot; % &quot;tobago-example-portlet&quot; % &quot;3.0.0-alpha-6-SNAPSHOT&quot;</pre></div></div>
+<pre>libraryDependencies += &quot;org.apache.myfaces.tobago&quot; % &quot;tobago-example-portlet&quot; % &quot;3.0.0-alpha-7-SNAPSHOT&quot;</pre></div></div>
 <div class="section">
 <h3><a name="Leiningen"></a>Leiningen</h3><a name="Leiningen"></a>
 <div class="source">
-<pre>[org.apache.myfaces.tobago/tobago-example-portlet &quot;3.0.0-alpha-6-SNAPSHOT&quot;]</pre></div></div></div>
+<pre>[org.apache.myfaces.tobago/tobago-example-portlet &quot;3.0.0-alpha-7-SNAPSHOT&quot;]</pre></div></div></div>
       </div>
     </div>
     <div class="clear"></div>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/dependency-management.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/dependency-management.html?rev=1761593&r1=1761592&r2=1761593&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/dependency-management.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/dependency-management.html Tue Sep 20 15:16:50 2016
@@ -29,7 +29,7 @@
   
   
   <div class="date">
-    Last Published: 09 Sep 2016
+    Last Published: 20 Sep 2016
   </div>
             <ul>
       <li>