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/12/16 13:44:04 UTC

svn commit: r1774596 [20/35] - in /myfaces/site/publish/tobago: tobago-assembly/ tobago-core/ tobago-core/tlddoc/ tobago-core/tlddoc/tc/ tobago-core/xref-test/ tobago-core/xref-test/org/apache/myfaces/tobago/component/ tobago-core/xref-test/org/apache/...

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/clientConfig/ClientConfigController.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/clientConfig/ClientConfigController.html?rev=1774596&r1=1774595&r2=1774596&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/clientConfig/ClientConfigController.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-demo/xref/org/apache/myfaces/tobago/example/demo/clientConfig/ClientConfigController.html Fri Dec 16 13:43:52 2016
@@ -95,100 +95,112 @@
 <a class="jxr_linenumber" name="L87" href="#L87">87</a>      <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
 <a class="jxr_linenumber" name="L88" href="#L88">88</a>    }
 <a class="jxr_linenumber" name="L89" href="#L89">89</a>  
-<a class="jxr_linenumber" name="L90" href="#L90">90</a>  <em class="jxr_comment">// ///////////////////////////////////////////// logic</em>
-<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">void</strong> storeInTobagoContext() {
-<a class="jxr_linenumber" name="L93" href="#L93">93</a>      <strong class="jxr_keyword">final</strong> TobagoContext tobagoContext = TobagoContext.getInstance(FacesContext.getCurrentInstance());
-<a class="jxr_linenumber" name="L94" href="#L94">94</a>      LOG.info(<span class="jxr_string">"XXXXXXXXX "</span> + theme);
-<a class="jxr_linenumber" name="L95" href="#L95">95</a>      tobagoContext.setTheme(theme);
-<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>    <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> loadFromTobagoContext() {
-<a class="jxr_linenumber" name="L99" href="#L99">99</a>      <strong class="jxr_keyword">final</strong> TobagoContext tobagoContext = TobagoContext.getInstance(FacesContext.getCurrentInstance());
-<a class="jxr_linenumber" name="L100" href="#L100">100</a>     theme = tobagoContext.getTheme();
-<a class="jxr_linenumber" name="L101" href="#L101">101</a>   }
+<a class="jxr_linenumber" name="L90" href="#L90">90</a>  <em class="jxr_comment">/*</em>
+<a class="jxr_linenumber" name="L91" href="#L91">91</a>  <em class="jxr_comment">  public String resetTheme() {</em>
+<a class="jxr_linenumber" name="L92" href="#L92">92</a>  <em class="jxr_comment">    final ExternalContext externalContext = FacesContext.getCurrentInstance().getExternalContext();</em>
+<a class="jxr_linenumber" name="L93" href="#L93">93</a>  <em class="jxr_comment">    final Object request = externalContext.getRequest();</em>
+<a class="jxr_linenumber" name="L94" href="#L94">94</a>  <em class="jxr_comment">    final Object response = externalContext.getResponse();</em>
+<a class="jxr_linenumber" name="L95" href="#L95">95</a>  <em class="jxr_comment">    if (response instanceof HttpServletResponse &amp;&amp; request instanceof HttpServletRequest) {</em>
+<a class="jxr_linenumber" name="L96" href="#L96">96</a>  <em class="jxr_comment">      CookieUtils.removeThemeNameCookie((HttpServletRequest) request, (HttpServletResponse) response);</em>
+<a class="jxr_linenumber" name="L97" href="#L97">97</a>  <em class="jxr_comment">    }</em>
+<a class="jxr_linenumber" name="L98" href="#L98">98</a>  
+<a class="jxr_linenumber" name="L99" href="#L99">99</a>  <em class="jxr_comment">    return null;</em>
+<a class="jxr_linenumber" name="L100" href="#L100">100</a> <em class="jxr_comment">  }</em>
+<a class="jxr_linenumber" name="L101" href="#L101">101</a> <em class="jxr_comment">*/</em>
 <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> List&lt;SelectItem&gt; getLocaleItems() {
-<a class="jxr_linenumber" name="L104" href="#L104">104</a>     <strong class="jxr_keyword">final</strong> FacesContext facesContext = FacesContext.getCurrentInstance();
-<a class="jxr_linenumber" name="L105" href="#L105">105</a>     <strong class="jxr_keyword">final</strong> Application application = facesContext.getApplication();
-<a class="jxr_linenumber" name="L106" href="#L106">106</a>     <strong class="jxr_keyword">final</strong> Locale defaultLocale = application.getDefaultLocale();
-<a class="jxr_linenumber" name="L107" href="#L107">107</a>     <strong class="jxr_keyword">final</strong> Iterator supportedLocales = application.getSupportedLocales();
-<a class="jxr_linenumber" name="L108" href="#L108">108</a> 
-<a class="jxr_linenumber" name="L109" href="#L109">109</a>     <strong class="jxr_keyword">boolean</strong> defaultInList = false;
-<a class="jxr_linenumber" name="L110" href="#L110">110</a>     <strong class="jxr_keyword">final</strong> List&lt;SelectItem&gt; localeItems = <strong class="jxr_keyword">new</strong> ArrayList&lt;SelectItem&gt;();
-<a class="jxr_linenumber" name="L111" href="#L111">111</a>     <strong class="jxr_keyword">while</strong> (supportedLocales.hasNext()) {
-<a class="jxr_linenumber" name="L112" href="#L112">112</a>       <strong class="jxr_keyword">final</strong> Locale locale = (Locale) supportedLocales.next();
-<a class="jxr_linenumber" name="L113" href="#L113">113</a>       localeItems.add(createLocaleItem(locale));
-<a class="jxr_linenumber" name="L114" href="#L114">114</a>       <strong class="jxr_keyword">if</strong> (locale.equals(defaultLocale)) {
-<a class="jxr_linenumber" name="L115" href="#L115">115</a>         defaultInList = <strong class="jxr_keyword">true</strong>;
-<a class="jxr_linenumber" name="L116" href="#L116">116</a>       }
-<a class="jxr_linenumber" name="L117" href="#L117">117</a>     }
-<a class="jxr_linenumber" name="L118" href="#L118">118</a>     <em class="jxr_comment">// If the default is already in the list, don't add it.</em>
-<a class="jxr_linenumber" name="L119" href="#L119">119</a>     <em class="jxr_comment">// Background: Must the default be in the supported list? Yes or No?</em>
-<a class="jxr_linenumber" name="L120" href="#L120">120</a>     <em class="jxr_comment">// This question is not specified explicit and different implemented in the RI and MyFaces</em>
-<a class="jxr_linenumber" name="L121" href="#L121">121</a>     <strong class="jxr_keyword">if</strong> (!defaultInList &amp;&amp; defaultLocale != <strong class="jxr_keyword">null</strong>) {
-<a class="jxr_linenumber" name="L122" href="#L122">122</a>       localeItems.add(0, createLocaleItem(defaultLocale));
-<a class="jxr_linenumber" name="L123" href="#L123">123</a>     }
-<a class="jxr_linenumber" name="L124" href="#L124">124</a>     <strong class="jxr_keyword">return</strong> localeItems;
-<a class="jxr_linenumber" name="L125" href="#L125">125</a>   }
-<a class="jxr_linenumber" name="L126" href="#L126">126</a> 
-<a class="jxr_linenumber" name="L127" href="#L127">127</a>   <strong class="jxr_keyword">private</strong> SelectItem createLocaleItem(<strong class="jxr_keyword">final</strong> Locale localeItem) {
-<a class="jxr_linenumber" name="L128" href="#L128">128</a>     <strong class="jxr_keyword">if</strong> (locale != <strong class="jxr_keyword">null</strong>) {
-<a class="jxr_linenumber" name="L129" href="#L129">129</a>       <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> SelectItem(localeItem, localeItem.getDisplayName(locale));
-<a class="jxr_linenumber" name="L130" href="#L130">130</a>     } <strong class="jxr_keyword">else</strong> {
-<a class="jxr_linenumber" name="L131" href="#L131">131</a>       <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> SelectItem(localeItem, localeItem.getDisplayName(localeItem));
-<a class="jxr_linenumber" name="L132" href="#L132">132</a>     }
-<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>   <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <a href="../../../../../../../org/apache/myfaces/tobago/example/demo/clientConfig/ClientConfigController.html">ClientConfigController</a> getCurrentInstance(
-<a class="jxr_linenumber" name="L136" href="#L136">136</a>       <strong class="jxr_keyword">final</strong> FacesContext facesContext, <strong class="jxr_keyword">final</strong> String beanName) {
-<a class="jxr_linenumber" name="L137" href="#L137">137</a>     <strong class="jxr_keyword">return</strong> (ClientConfigController) facesContext.getApplication()
-<a class="jxr_linenumber" name="L138" href="#L138">138</a>         .getVariableResolver().resolveVariable(facesContext, beanName);
-<a class="jxr_linenumber" name="L139" href="#L139">139</a>   }
-<a class="jxr_linenumber" name="L140" href="#L140">140</a> 
-<a class="jxr_linenumber" name="L141" href="#L141">141</a>   <strong class="jxr_keyword">public</strong> Theme getTheme() {
-<a class="jxr_linenumber" name="L142" href="#L142">142</a>     <strong class="jxr_keyword">return</strong> theme;
-<a class="jxr_linenumber" name="L143" href="#L143">143</a>   }
-<a class="jxr_linenumber" name="L144" href="#L144">144</a> 
-<a class="jxr_linenumber" name="L145" href="#L145">145</a>   <strong class="jxr_keyword">public</strong> String getLocalizedTheme() {
-<a class="jxr_linenumber" name="L146" href="#L146">146</a>     <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = 0; i &lt; themeItems.length; i++) {
-<a class="jxr_linenumber" name="L147" href="#L147">147</a>       <strong class="jxr_keyword">final</strong> SelectItem themeItem = themeItems[i];
-<a class="jxr_linenumber" name="L148" href="#L148">148</a>       <strong class="jxr_keyword">if</strong> (ObjectUtils.equals(themeItem.getValue(), theme)) {
-<a class="jxr_linenumber" name="L149" href="#L149">149</a>         <strong class="jxr_keyword">return</strong> themeItem.getLabel();
-<a class="jxr_linenumber" name="L150" href="#L150">150</a>       }
-<a class="jxr_linenumber" name="L151" href="#L151">151</a>     }
-<a class="jxr_linenumber" name="L152" href="#L152">152</a>     <strong class="jxr_keyword">return</strong> <span class="jxr_string">"???"</span>;
-<a class="jxr_linenumber" name="L153" href="#L153">153</a>   }
-<a class="jxr_linenumber" name="L154" href="#L154">154</a> 
-<a class="jxr_linenumber" name="L155" href="#L155">155</a>   <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setTheme(<strong class="jxr_keyword">final</strong> Theme theme) {
-<a class="jxr_linenumber" name="L156" href="#L156">156</a>     <strong class="jxr_keyword">this</strong>.theme = theme;
-<a class="jxr_linenumber" name="L157" href="#L157">157</a>   }
-<a class="jxr_linenumber" name="L158" href="#L158">158</a> 
-<a class="jxr_linenumber" name="L159" href="#L159">159</a>   <strong class="jxr_keyword">public</strong> SelectItem[] getThemeItems() {
-<a class="jxr_linenumber" name="L160" href="#L160">160</a>     <strong class="jxr_keyword">return</strong> themeItems;
-<a class="jxr_linenumber" name="L161" href="#L161">161</a>   }
-<a class="jxr_linenumber" name="L162" href="#L162">162</a> 
-<a class="jxr_linenumber" name="L163" href="#L163">163</a>   <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setThemeItems(<strong class="jxr_keyword">final</strong> SelectItem[] themeItems) {
-<a class="jxr_linenumber" name="L164" href="#L164">164</a>     <strong class="jxr_keyword">this</strong>.themeItems = themeItems;
+<a class="jxr_linenumber" name="L103" href="#L103">103</a> <em class="jxr_comment">// ///////////////////////////////////////////// logic</em>
+<a class="jxr_linenumber" name="L104" href="#L104">104</a> 
+<a class="jxr_linenumber" name="L105" href="#L105">105</a>   <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> storeInTobagoContext() {
+<a class="jxr_linenumber" name="L106" href="#L106">106</a>     <strong class="jxr_keyword">final</strong> TobagoContext tobagoContext = TobagoContext.getInstance(FacesContext.getCurrentInstance());
+<a class="jxr_linenumber" name="L107" href="#L107">107</a>     tobagoContext.setTheme(theme);
+<a class="jxr_linenumber" name="L108" href="#L108">108</a>   }
+<a class="jxr_linenumber" name="L109" href="#L109">109</a> 
+<a class="jxr_linenumber" name="L110" href="#L110">110</a>   <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> loadFromTobagoContext() {
+<a class="jxr_linenumber" name="L111" href="#L111">111</a>     <strong class="jxr_keyword">final</strong> TobagoContext tobagoContext = TobagoContext.getInstance(FacesContext.getCurrentInstance());
+<a class="jxr_linenumber" name="L112" href="#L112">112</a>     theme = tobagoContext.getTheme();
+<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> List&lt;SelectItem&gt; getLocaleItems() {
+<a class="jxr_linenumber" name="L116" href="#L116">116</a>     <strong class="jxr_keyword">final</strong> FacesContext facesContext = FacesContext.getCurrentInstance();
+<a class="jxr_linenumber" name="L117" href="#L117">117</a>     <strong class="jxr_keyword">final</strong> Application application = facesContext.getApplication();
+<a class="jxr_linenumber" name="L118" href="#L118">118</a>     <strong class="jxr_keyword">final</strong> Locale defaultLocale = application.getDefaultLocale();
+<a class="jxr_linenumber" name="L119" href="#L119">119</a>     <strong class="jxr_keyword">final</strong> Iterator supportedLocales = application.getSupportedLocales();
+<a class="jxr_linenumber" name="L120" href="#L120">120</a> 
+<a class="jxr_linenumber" name="L121" href="#L121">121</a>     <strong class="jxr_keyword">boolean</strong> defaultInList = false;
+<a class="jxr_linenumber" name="L122" href="#L122">122</a>     <strong class="jxr_keyword">final</strong> List&lt;SelectItem&gt; localeItems = <strong class="jxr_keyword">new</strong> ArrayList&lt;SelectItem&gt;();
+<a class="jxr_linenumber" name="L123" href="#L123">123</a>     <strong class="jxr_keyword">while</strong> (supportedLocales.hasNext()) {
+<a class="jxr_linenumber" name="L124" href="#L124">124</a>       <strong class="jxr_keyword">final</strong> Locale locale = (Locale) supportedLocales.next();
+<a class="jxr_linenumber" name="L125" href="#L125">125</a>       localeItems.add(createLocaleItem(locale));
+<a class="jxr_linenumber" name="L126" href="#L126">126</a>       <strong class="jxr_keyword">if</strong> (locale.equals(defaultLocale)) {
+<a class="jxr_linenumber" name="L127" href="#L127">127</a>         defaultInList = <strong class="jxr_keyword">true</strong>;
+<a class="jxr_linenumber" name="L128" href="#L128">128</a>       }
+<a class="jxr_linenumber" name="L129" href="#L129">129</a>     }
+<a class="jxr_linenumber" name="L130" href="#L130">130</a>     <em class="jxr_comment">// If the default is already in the list, don't add it.</em>
+<a class="jxr_linenumber" name="L131" href="#L131">131</a>     <em class="jxr_comment">// Background: Must the default be in the supported list? Yes or No?</em>
+<a class="jxr_linenumber" name="L132" href="#L132">132</a>     <em class="jxr_comment">// This question is not specified explicit and different implemented in the RI and MyFaces</em>
+<a class="jxr_linenumber" name="L133" href="#L133">133</a>     <strong class="jxr_keyword">if</strong> (!defaultInList &amp;&amp; defaultLocale != <strong class="jxr_keyword">null</strong>) {
+<a class="jxr_linenumber" name="L134" href="#L134">134</a>       localeItems.add(0, createLocaleItem(defaultLocale));
+<a class="jxr_linenumber" name="L135" href="#L135">135</a>     }
+<a class="jxr_linenumber" name="L136" href="#L136">136</a>     <strong class="jxr_keyword">return</strong> localeItems;
+<a class="jxr_linenumber" name="L137" href="#L137">137</a>   }
+<a class="jxr_linenumber" name="L138" href="#L138">138</a> 
+<a class="jxr_linenumber" name="L139" href="#L139">139</a>   <strong class="jxr_keyword">private</strong> SelectItem createLocaleItem(<strong class="jxr_keyword">final</strong> Locale localeItem) {
+<a class="jxr_linenumber" name="L140" href="#L140">140</a>     <strong class="jxr_keyword">if</strong> (locale != <strong class="jxr_keyword">null</strong>) {
+<a class="jxr_linenumber" name="L141" href="#L141">141</a>       <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> SelectItem(localeItem, localeItem.getDisplayName(locale));
+<a class="jxr_linenumber" name="L142" href="#L142">142</a>     } <strong class="jxr_keyword">else</strong> {
+<a class="jxr_linenumber" name="L143" href="#L143">143</a>       <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> SelectItem(localeItem, localeItem.getDisplayName(localeItem));
+<a class="jxr_linenumber" name="L144" href="#L144">144</a>     }
+<a class="jxr_linenumber" name="L145" href="#L145">145</a>   }
+<a class="jxr_linenumber" name="L146" href="#L146">146</a> 
+<a class="jxr_linenumber" name="L147" href="#L147">147</a>   <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <a href="../../../../../../../org/apache/myfaces/tobago/example/demo/clientConfig/ClientConfigController.html">ClientConfigController</a> getCurrentInstance(
+<a class="jxr_linenumber" name="L148" href="#L148">148</a>       <strong class="jxr_keyword">final</strong> FacesContext facesContext, <strong class="jxr_keyword">final</strong> String beanName) {
+<a class="jxr_linenumber" name="L149" href="#L149">149</a>     <strong class="jxr_keyword">return</strong> (ClientConfigController) facesContext.getApplication()
+<a class="jxr_linenumber" name="L150" href="#L150">150</a>         .getVariableResolver().resolveVariable(facesContext, beanName);
+<a class="jxr_linenumber" name="L151" href="#L151">151</a>   }
+<a class="jxr_linenumber" name="L152" href="#L152">152</a> 
+<a class="jxr_linenumber" name="L153" href="#L153">153</a>   <strong class="jxr_keyword">public</strong> Theme getTheme() {
+<a class="jxr_linenumber" name="L154" href="#L154">154</a>     <strong class="jxr_keyword">return</strong> theme;
+<a class="jxr_linenumber" name="L155" href="#L155">155</a>   }
+<a class="jxr_linenumber" name="L156" href="#L156">156</a> 
+<a class="jxr_linenumber" name="L157" href="#L157">157</a>   <strong class="jxr_keyword">public</strong> String getLocalizedTheme() {
+<a class="jxr_linenumber" name="L158" href="#L158">158</a>     <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = 0; i &lt; themeItems.length; i++) {
+<a class="jxr_linenumber" name="L159" href="#L159">159</a>       <strong class="jxr_keyword">final</strong> SelectItem themeItem = themeItems[i];
+<a class="jxr_linenumber" name="L160" href="#L160">160</a>       <strong class="jxr_keyword">if</strong> (ObjectUtils.equals(themeItem.getValue(), theme)) {
+<a class="jxr_linenumber" name="L161" href="#L161">161</a>         <strong class="jxr_keyword">return</strong> themeItem.getLabel();
+<a class="jxr_linenumber" name="L162" href="#L162">162</a>       }
+<a class="jxr_linenumber" name="L163" href="#L163">163</a>     }
+<a class="jxr_linenumber" name="L164" href="#L164">164</a>     <strong class="jxr_keyword">return</strong> <span class="jxr_string">"???"</span>;
 <a class="jxr_linenumber" name="L165" href="#L165">165</a>   }
 <a class="jxr_linenumber" name="L166" href="#L166">166</a> 
-<a class="jxr_linenumber" name="L167" href="#L167">167</a>   <strong class="jxr_keyword">public</strong> Locale getLocale() {
-<a class="jxr_linenumber" name="L168" href="#L168">168</a>     <strong class="jxr_keyword">return</strong> locale;
+<a class="jxr_linenumber" name="L167" href="#L167">167</a>   <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setTheme(<strong class="jxr_keyword">final</strong> Theme theme) {
+<a class="jxr_linenumber" name="L168" href="#L168">168</a>     <strong class="jxr_keyword">this</strong>.theme = theme;
 <a class="jxr_linenumber" name="L169" href="#L169">169</a>   }
 <a class="jxr_linenumber" name="L170" href="#L170">170</a> 
-<a class="jxr_linenumber" name="L171" href="#L171">171</a>   <strong class="jxr_keyword">public</strong> String getLocalizedLocale() {
-<a class="jxr_linenumber" name="L172" href="#L172">172</a>     <strong class="jxr_keyword">if</strong> (locale != <strong class="jxr_keyword">null</strong>) {
-<a class="jxr_linenumber" name="L173" href="#L173">173</a>       <strong class="jxr_keyword">return</strong> locale.getDisplayName(locale);
-<a class="jxr_linenumber" name="L174" href="#L174">174</a>     } <strong class="jxr_keyword">else</strong>{
-<a class="jxr_linenumber" name="L175" href="#L175">175</a>       <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
-<a class="jxr_linenumber" name="L176" href="#L176">176</a>     }
+<a class="jxr_linenumber" name="L171" href="#L171">171</a>   <strong class="jxr_keyword">public</strong> SelectItem[] getThemeItems() {
+<a class="jxr_linenumber" name="L172" href="#L172">172</a>     <strong class="jxr_keyword">return</strong> themeItems;
+<a class="jxr_linenumber" name="L173" href="#L173">173</a>   }
+<a class="jxr_linenumber" name="L174" href="#L174">174</a> 
+<a class="jxr_linenumber" name="L175" href="#L175">175</a>   <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setThemeItems(<strong class="jxr_keyword">final</strong> SelectItem[] themeItems) {
+<a class="jxr_linenumber" name="L176" href="#L176">176</a>     <strong class="jxr_keyword">this</strong>.themeItems = themeItems;
 <a class="jxr_linenumber" name="L177" href="#L177">177</a>   }
 <a class="jxr_linenumber" name="L178" href="#L178">178</a> 
-<a class="jxr_linenumber" name="L179" href="#L179">179</a>   <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setLocale(<strong class="jxr_keyword">final</strong> Locale locale) {
-<a class="jxr_linenumber" name="L180" href="#L180">180</a>     <strong class="jxr_keyword">this</strong>.locale = locale;
+<a class="jxr_linenumber" name="L179" href="#L179">179</a>   <strong class="jxr_keyword">public</strong> Locale getLocale() {
+<a class="jxr_linenumber" name="L180" href="#L180">180</a>     <strong class="jxr_keyword">return</strong> locale;
 <a class="jxr_linenumber" name="L181" href="#L181">181</a>   }
 <a class="jxr_linenumber" name="L182" href="#L182">182</a> 
-<a class="jxr_linenumber" name="L183" href="#L183">183</a> }
+<a class="jxr_linenumber" name="L183" href="#L183">183</a>   <strong class="jxr_keyword">public</strong> String getLocalizedLocale() {
+<a class="jxr_linenumber" name="L184" href="#L184">184</a>     <strong class="jxr_keyword">if</strong> (locale != <strong class="jxr_keyword">null</strong>) {
+<a class="jxr_linenumber" name="L185" href="#L185">185</a>       <strong class="jxr_keyword">return</strong> locale.getDisplayName(locale);
+<a class="jxr_linenumber" name="L186" href="#L186">186</a>     } <strong class="jxr_keyword">else</strong>{
+<a class="jxr_linenumber" name="L187" href="#L187">187</a>       <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
+<a class="jxr_linenumber" name="L188" href="#L188">188</a>     }
+<a class="jxr_linenumber" name="L189" href="#L189">189</a>   }
+<a class="jxr_linenumber" name="L190" href="#L190">190</a> 
+<a class="jxr_linenumber" name="L191" href="#L191">191</a>   <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setLocale(<strong class="jxr_keyword">final</strong> Locale locale) {
+<a class="jxr_linenumber" name="L192" href="#L192">192</a>     <strong class="jxr_keyword">this</strong>.locale = locale;
+<a class="jxr_linenumber" name="L193" href="#L193">193</a>   }
+<a class="jxr_linenumber" name="L194" href="#L194">194</a> 
+<a class="jxr_linenumber" name="L195" href="#L195">195</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/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=1774596&r1=1774595&r2=1774596&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 Fri Dec 16 13:43:52 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-beta-2-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.clientConfig</title>
+		<title>Tobago Example Demo 3.0.1-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=1774596&r1=1774595&r2=1774596&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 Fri Dec 16 13:43:52 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-beta-2-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.clientConfig</title>
+		<title>Tobago Example Demo 3.0.1-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=1774596&r1=1774595&r2=1774596&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 Fri Dec 16 13:43:52 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-beta-2-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.formatter</title>
+		<title>Tobago Example Demo 3.0.1-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=1774596&r1=1774595&r2=1774596&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 Fri Dec 16 13:43:52 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-beta-2-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.formatter</title>
+		<title>Tobago Example Demo 3.0.1-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=1774596&r1=1774595&r2=1774596&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 Fri Dec 16 13:43:52 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-beta-2-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.info</title>
+		<title>Tobago Example Demo 3.0.1-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=1774596&r1=1774595&r2=1774596&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 Fri Dec 16 13:43:52 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-beta-2-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.info</title>
+		<title>Tobago Example Demo 3.0.1-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=1774596&r1=1774595&r2=1774596&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 Fri Dec 16 13:43:52 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-beta-2-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.nonfacesrequest</title>
+		<title>Tobago Example Demo 3.0.1-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=1774596&r1=1774595&r2=1774596&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 Fri Dec 16 13:43:52 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-beta-2-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.nonfacesrequest</title>
+		<title>Tobago Example Demo 3.0.1-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/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=1774596&r1=1774595&r2=1774596&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 Fri Dec 16 13:43:52 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-beta-2-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo</title>
+		<title>Tobago Example Demo 3.0.1-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=1774596&r1=1774595&r2=1774596&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 Fri Dec 16 13:43:52 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-beta-2-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo</title>
+		<title>Tobago Example Demo 3.0.1-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=1774596&r1=1774595&r2=1774596&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 Fri Dec 16 13:43:52 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-beta-2-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.sudoku</title>
+		<title>Tobago Example Demo 3.0.1-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=1774596&r1=1774595&r2=1774596&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 Fri Dec 16 13:43:52 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-beta-2-SNAPSHOT Reference Package org.apache.myfaces.tobago.example.demo.sudoku</title>
+		<title>Tobago Example Demo 3.0.1-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=1774596&r1=1774595&r2=1774596&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 Fri Dec 16 13:43:52 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-beta-2-SNAPSHOT Reference</title>
+		<title>Tobago Example Demo 3.0.1-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=1774596&r1=1774595&r2=1774596&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 Fri Dec 16 13:43:52 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-beta-2-SNAPSHOT Reference</title>
+		<title>Tobago Example Demo 3.0.1-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-beta-2-SNAPSHOT Reference</h2>
+		      	<h2>Tobago Example Demo 3.0.1-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=1774596&r1=1774595&r2=1774596&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 Fri Dec 16 13:43:52 2016
@@ -29,7 +29,7 @@
   
   
   <div class="date">
-    Last Published: 07 Dec 2016
+    Last Published: 16 Dec 2016
   </div>
             <ul>
       <li>

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=1774596&r1=1774595&r2=1774596&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 Fri Dec 16 13:43:52 2016
@@ -29,7 +29,7 @@
   
   
   <div class="date">
-    Last Published: 07 Dec 2016
+    Last Published: 16 Dec 2016
   </div>
             <ul>
       <li>
@@ -109,37 +109,19 @@
 <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-beta-2-SNAPSHOT</td>
+<td>3.0.1-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">
 <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-beta-2-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">
-<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-beta-2-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">
-<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-beta-2-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">
-<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-beta-2-SNAPSHOT</td>
+<td>3.0.1-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-standard">tobago-theme-standard</a></td>
-<td>3.0.0-beta-2-SNAPSHOT</td>
+<td>3.0.1-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 +308,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-beta-2-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.1-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,25 +318,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-beta-2-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>
-<tr class="b">
-<td>
-<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-beta-2-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>
-<tr class="b">
-<td>
-<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-beta-2-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.1-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 Speyside</th></tr>
@@ -363,16 +327,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-beta-2-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>
-<tr class="b">
-<td>
-<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-beta-2-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.1-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 Standard</th></tr>
@@ -381,7 +336,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-beta-2-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.1-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 Core</th></tr>
@@ -391,7 +346,7 @@
 <p><b>URL: </b><a class="externalLink" href="http://myfaces.apache.org/tobago/tobago-core">http://myfaces.apache.org/tobago/tobago-core</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.omnifaces:vdldoc:jar:2.1 (compile) <img id="_img15" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep14', '_img15' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep14" style="display:none">
+<li>org.omnifaces:vdldoc:jar:2.1 (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>Vdldoc</th></tr>
@@ -400,7 +355,7 @@
 <p><b>Description: </b>Facelets .taglib.xml documentation generator</p>
 <p><b>URL: </b><a class="externalLink" href="http://vdldoc.omnifaces.org">http://vdldoc.omnifaces.org</a></p>
 <p><b>Project Licenses: </b><a class="externalLink" href="http://opensource.org/licenses/BSD-3-Clause">New BSD License</a></p></td></tr></table></div></li>
-<li>commons-beanutils:commons-beanutils:jar:1.9.2 (compile) <img id="_img17" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep16', '_img17' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep16" style="display:none">
+<li>commons-beanutils:commons-beanutils:jar:1.9.2 (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>Apache Commons BeanUtils</th></tr>
@@ -410,7 +365,7 @@
 <p><b>URL: </b><a class="externalLink" href="http://commons.apache.org/proper/commons-beanutils/">http://commons.apache.org/proper/commons-beanutils/</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>commons-logging:commons-logging:jar:1.1.1 (compile) <img id="_img19" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep18', '_img19' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep18" style="display:none">
+<li>commons-logging:commons-logging:jar:1.1.1 (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>Commons Logging</th></tr>
@@ -420,7 +375,7 @@
     well known logging systems.</p>
 <p><b>URL: </b><a class="externalLink" href="http://commons.apache.org/logging">http://commons.apache.org/logging</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></ul></li>
-<li>commons-collections:commons-collections:jar:3.2.2 (compile) <img id="_img21" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep20', '_img21' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep20" style="display:none">
+<li>commons-collections:commons-collections:jar:3.2.2 (compile) <img id="_img15" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep14', '_img15' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep14" style="display:none">
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>Apache Commons Collections</th></tr>
@@ -429,7 +384,7 @@
 <p><b>Description: </b>Types that extend and augment the Java Collections Framework.</p>
 <p><b>URL: </b><a class="externalLink" href="http://commons.apache.org/collections/">http://commons.apache.org/collections/</a></p>
 <p><b>Project Licenses: </b><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache License, Version 2.0</a></p></td></tr></table></div></li>
-<li>org.slf4j:slf4j-api:jar:1.7.21 (compile) <img id="_img23" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep22', '_img23' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep22" style="display:none">
+<li>org.slf4j:slf4j-api:jar:1.7.21 (compile) <img id="_img17" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep16', '_img17' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep16" style="display:none">
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>SLF4J API Module</th></tr>
@@ -438,7 +393,7 @@
 <p><b>Description: </b>The slf4j API</p>
 <p><b>URL: </b><a class="externalLink" href="http://www.slf4j.org">http://www.slf4j.org</a></p>
 <p><b>Project Licenses: </b><a class="externalLink" href="http://www.opensource.org/licenses/mit-license.php">MIT License</a></p></td></tr></table></div></li>
-<li>commons-codec:commons-codec:jar:1.10 (compile) <img id="_img25" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep24', '_img25' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep24" style="display:none">
+<li>commons-codec:commons-codec:jar:1.10 (compile) <img id="_img19" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep18', '_img19' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep18" style="display:none">
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>Apache Commons Codec</th></tr>
@@ -450,7 +405,7 @@
      collection of phonetic encoding utilities.</p>
 <p><b>URL: </b><a class="externalLink" href="http://commons.apache.org/proper/commons-codec/">http://commons.apache.org/proper/commons-codec/</a></p>
 <p><b>Project Licenses: </b><a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache License, Version 2.0</a></p></td></tr></table></div></li>
-<li>org.jsoup:jsoup:jar:1.8.2 (compile) <img id="_img27" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep26', '_img27' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep26" style="display:none">
+<li>org.jsoup:jsoup:jar:1.8.2 (compile) <img id="_img21" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep20', '_img21' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep20" style="display:none">
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>jsoup</th></tr>
@@ -459,7 +414,7 @@
 <p><b>Description: </b>jsoup HTML parser</p>
 <p><b>URL: </b><a class="externalLink" href="http://jsoup.org/">http://jsoup.org/</a></p>
 <p><b>Project Licenses: </b><a class="externalLink" href="http://jsoup.org/license">The MIT License</a></p></td></tr></table></div></li></ul></li>
-<li>ch.qos.logback:logback-classic:jar:1.1.7 (runtime) <img id="_img29" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep28', '_img29' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep28" style="display:none">
+<li>ch.qos.logback:logback-classic:jar:1.1.7 (runtime) <img id="_img23" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep22', '_img23' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep22" style="display:none">
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>Logback Classic Module</th></tr>
@@ -468,7 +423,7 @@
 <p><b>Description: </b>logback-classic module</p>
 <p><b>URL: </b><a class="externalLink" href="http://logback.qos.ch/logback-classic">http://logback.qos.ch/logback-classic</a></p>
 <p><b>Project Licenses: </b><a class="externalLink" href="http://www.eclipse.org/legal/epl-v10.html">Eclipse Public License - v 1.0</a>, <a class="externalLink" href="http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html">GNU Lesser General Public License</a></p></td></tr></table></div></li>
-<li>ch.qos.logback:logback-core:jar:1.1.7 (runtime) <img id="_img31" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep30', '_img31' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep30" style="display:none">
+<li>ch.qos.logback:logback-core:jar:1.1.7 (runtime) <img id="_img25" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep24', '_img25' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep24" style="display:none">
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>Logback Core Module</th></tr>
@@ -477,7 +432,7 @@
 <p><b>Description: </b>logback-core module</p>
 <p><b>URL: </b><a class="externalLink" href="http://logback.qos.ch/logback-core">http://logback.qos.ch/logback-core</a></p>
 <p><b>Project Licenses: </b><a class="externalLink" href="http://www.eclipse.org/legal/epl-v10.html">Eclipse Public License - v 1.0</a>, <a class="externalLink" href="http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html">GNU Lesser General Public License</a></p></td></tr></table></div></li>
-<li>org.apache.myfaces.core:myfaces-api:jar:2.0.24 (compile) <img id="_img33" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep32', '_img33' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep32" style="display:none">
+<li>org.apache.myfaces.core:myfaces-api:jar:2.0.24 (compile) <img id="_img27" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep26', '_img27' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep26" style="display:none">
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>Apache MyFaces JSF-2.0 Core API</th></tr>
@@ -486,7 +441,7 @@
 <p><b>Description: </b>The public API classes of the Apache MyFaces CORE JSF-2.0 project</p>
 <p><b>URL: </b><a class="externalLink" href="http://myfaces.apache.org/core20/myfaces-api">http://myfaces.apache.org/core20/myfaces-api</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.core:myfaces-impl:jar:2.0.24 (runtime) <img id="_img35" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep34', '_img35' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep34" style="display:none">
+<li>org.apache.myfaces.core:myfaces-impl:jar:2.0.24 (runtime) <img id="_img29" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep28', '_img29' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep28" style="display:none">
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>Apache MyFaces JSF-2.0 Core Impl</th></tr>
@@ -496,7 +451,7 @@
 <p><b>URL: </b><a class="externalLink" href="http://myfaces.apache.org/core20/myfaces-impl">http://myfaces.apache.org/core20/myfaces-impl</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>commons-digester:commons-digester:jar:1.8 (runtime) <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">
+<li>commons-digester:commons-digester:jar:1.8 (runtime) <img id="_img31" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep30', '_img31' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep30" style="display:none">
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>Digester</th></tr>
@@ -507,7 +462,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>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="_img33" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep32', '_img33' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep32" style="display:none">
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>JUnit</th></tr>
@@ -517,7 +472,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="_img35" src="./images/icon_info_sml.gif" alt="[Information]" onclick="toggleDependencyDetails( '_dep34', '_img35' );" style="cursor: pointer; vertical-align: text-bottom;"></img><div id="_dep34" style="display:none">
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>Hamcrest Core</th></tr>
@@ -526,7 +481,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="_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>Servlet 3.0</th></tr>
@@ -535,7 +490,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="_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>Apache Geronimo Expression Language Spec 2.2</th></tr>
@@ -544,7 +499,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="_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>Java Portlet Specification V2.0</th></tr>
@@ -562,7 +517,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, Vdldoc</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>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 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>
@@ -680,54 +635,30 @@
 <td>1.5</td>
 <td>Yes</td></tr>
 <tr class="a">
-<td>tobago-core-3.0.0-beta-2-SNAPSHOT.jar</td>
+<td>tobago-core-3.0.1-SNAPSHOT.jar</td>
 <td>1 MB</td>
-<td>787</td>
-<td>720</td>
+<td>788</td>
+<td>721</td>
 <td>32</td>
 <td>1.6</td>
 <td>Yes</td></tr>
 <tr class="b">
-<td>tobago-theme-charlotteville-3.0.0-beta-2-SNAPSHOT.jar</td>
-<td>136.8 kB</td>
-<td>30</td>
-<td>0</td>
-<td>0</td>
-<td>-</td>
-<td>No</td></tr>
-<tr class="a">
-<td>tobago-theme-richmond-3.0.0-beta-2-SNAPSHOT.jar</td>
-<td>136.6 kB</td>
-<td>30</td>
-<td>0</td>
-<td>0</td>
-<td>-</td>
-<td>No</td></tr>
-<tr class="b">
-<td>tobago-theme-scarborough-3.0.0-beta-2-SNAPSHOT.jar</td>
-<td>136.7 kB</td>
-<td>30</td>
+<td>tobago-theme-speyside-3.0.1-SNAPSHOT.jar</td>
+<td>149.9 kB</td>
+<td>67</td>
 <td>0</td>
 <td>0</td>
 <td>-</td>
 <td>No</td></tr>
 <tr class="a">
-<td>tobago-theme-speyside-3.0.0-beta-2-SNAPSHOT.jar</td>
-<td>155.5 kB</td>
-<td>73</td>
-<td>0</td>
-<td>0</td>
-<td>-</td>
-<td>No</td></tr>
-<tr class="b">
-<td>tobago-theme-standard-3.0.0-beta-2-SNAPSHOT.jar</td>
+<td>tobago-theme-standard-3.0.1-SNAPSHOT.jar</td>
 <td>1.3 MB</td>
-<td>103</td>
+<td>96</td>
 <td>0</td>
 <td>0</td>
 <td>-</td>
 <td>No</td></tr>
-<tr class="a">
+<tr class="b">
 <td>hamcrest-core-1.3.jar</td>
 <td>45 kB</td>
 <td>52</td>
@@ -735,7 +666,7 @@
 <td>3</td>
 <td>1.5</td>
 <td>Yes</td></tr>
-<tr class="b">
+<tr class="a">
 <td>jsoup-1.8.2.jar</td>
 <td>315 kB</td>
 <td>250</td>
@@ -743,7 +674,7 @@
 <td>7</td>
 <td>1.5</td>
 <td>Yes</td></tr>
-<tr class="a">
+<tr class="b">
 <td>vdldoc-2.1.jar</td>
 <td>55.6 kB</td>
 <td>32</td>
@@ -751,7 +682,7 @@
 <td>1</td>
 <td>1.6</td>
 <td>Yes</td></tr>
-<tr class="b">
+<tr class="a">
 <td>slf4j-api-1.7.21.jar</td>
 <td>41.1 kB</td>
 <td>46</td>
@@ -759,7 +690,7 @@
 <td>4</td>
 <td>1.5</td>
 <td>Yes</td></tr>
-<tr class="a">
+<tr class="b">
 <th>Total</th>
 <th>Size</th>
 <th>Entries</th>
@@ -767,23 +698,23 @@
 <th>Packages</th>
 <th>Java Version</th>
 <th>Debug Information</th></tr>
-<tr class="b">
-<td>23</td>
-<td>9 MB</td>
-<td>5505</td>
-<td>4375</td>
+<tr class="a">
+<td>20</td>
+<td>8.6 MB</td>
+<td>5403</td>
+<td>4376</td>
 <td>270</td>
 <td>1.6</td>
 <td>18</td></tr>
-<tr class="a">
-<td>compile: 14</td>
-<td>compile: 5.6 MB</td>
-<td>compile: 2995</td>
-<td>compile: 2217</td>
+<tr class="b">
+<td>compile: 11</td>
+<td>compile: 5.2 MB</td>
+<td>compile: 2893</td>
+<td>compile: 2218</td>
 <td>compile: 87</td>
 <td>-</td>
 <td>compile: 9</td></tr>
-<tr class="b">
+<tr class="a">
 <td>test: 2</td>
 <td>test: 360 kB</td>
 <td>test: 375</td>
@@ -791,7 +722,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.9 MB</td>
 <td>runtime: 1910</td>
@@ -799,7 +730,7 @@
 <td>runtime: 142</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>
@@ -899,51 +830,39 @@
 <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="a">
-<td>org.apache.myfaces.tobago:tobago-core:jar:3.0.0-beta-2-SNAPSHOT</td>
+<td>org.apache.myfaces.tobago:tobago-core:jar:3.0.1-SNAPSHOT</td>
 <td>-</td>
 <td>-</td></tr>
 <tr class="b">
-<td>org.apache.myfaces.tobago:tobago-theme-charlotteville:jar:3.0.0-beta-2-SNAPSHOT</td>
+<td>org.apache.myfaces.tobago:tobago-theme-speyside:jar:3.0.1-SNAPSHOT</td>
 <td>-</td>
 <td>-</td></tr>
 <tr class="a">
-<td>org.apache.myfaces.tobago:tobago-theme-richmond:jar:3.0.0-beta-2-SNAPSHOT</td>
+<td>org.apache.myfaces.tobago:tobago-theme-standard:jar:3.0.1-SNAPSHOT</td>
 <td>-</td>
 <td>-</td></tr>
 <tr class="b">
-<td>org.apache.myfaces.tobago:tobago-theme-scarborough:jar:3.0.0-beta-2-SNAPSHOT</td>
-<td>-</td>
-<td>-</td></tr>
-<tr class="a">
-<td>org.apache.myfaces.tobago:tobago-theme-speyside:jar:3.0.0-beta-2-SNAPSHOT</td>
-<td>-</td>
-<td>-</td></tr>
-<tr class="b">
-<td>org.apache.myfaces.tobago:tobago-theme-standard:jar:3.0.0-beta-2-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="b">
+<tr class="a">
 <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="a">
+<tr class="b">
 <td>org.omnifaces:vdldoc:jar:2.1</td>
 <td><a class="externalLink" href="https://repo.maven.apache.org/maven2/org/omnifaces/vdldoc/2.1/vdldoc-2.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>org.slf4j:slf4j-api:jar:1.7.21</td>
 <td><a class="externalLink" href="https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.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>
+<tr class="a">
+<td>20 (compile: 11, test: 2, runtime: 4, provided: 3)</td>
 <td>17</td>
 <td>0</td></tr></table></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=1774596&r1=1774595&r2=1774596&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 Fri Dec 16 13:43:52 2016
@@ -29,7 +29,7 @@
   
   
   <div class="date">
-    Last Published: 07 Dec 2016
+    Last Published: 16 Dec 2016
   </div>
             <ul>
       <li>
@@ -108,53 +108,29 @@
 <td><b>Optional</b></td></tr>
 <tr class="b">
 <td>org.apache.myfaces.tobago</td>
-<td>tobago-theme-charlotteville</td>
-<td>3.0.0-beta-2-SNAPSHOT</td>
-<td>compile</td>
-<td></td>
-<td>jar</td>
-<td>false</td></tr>
-<tr class="a">
-<td>org.apache.myfaces.tobago</td>
-<td>tobago-theme-scarborough</td>
-<td>3.0.0-beta-2-SNAPSHOT</td>
-<td>compile</td>
-<td></td>
-<td>jar</td>
-<td>false</td></tr>
-<tr class="b">
-<td>org.apache.myfaces.tobago</td>
 <td>tobago-theme-speyside</td>
-<td>3.0.0-beta-2-SNAPSHOT</td>
+<td>3.0.1-SNAPSHOT</td>
 <td>compile</td>
 <td></td>
 <td>jar</td>
 <td>false</td></tr>
 <tr class="a">
 <td>org.apache.myfaces.tobago</td>
-<td>tobago-theme-richmond</td>
-<td>3.0.0-beta-2-SNAPSHOT</td>
-<td>compile</td>
-<td></td>
-<td>jar</td>
-<td>false</td></tr>
-<tr class="b">
-<td>org.apache.myfaces.tobago</td>
 <td>tobago-theme-standard</td>
-<td>3.0.0-beta-2-SNAPSHOT</td>
+<td>3.0.1-SNAPSHOT</td>
 <td>compile</td>
 <td></td>
 <td>jar</td>
 <td>false</td></tr>
-<tr class="a">
+<tr class="b">
 <td>org.apache.myfaces.tobago</td>
 <td>tobago-core</td>
-<td>3.0.0-beta-2-SNAPSHOT</td>
+<td>3.0.1-SNAPSHOT</td>
 <td>compile</td>
 <td></td>
 <td>jar</td>
 <td>false</td></tr>
-<tr class="b">
+<tr class="a">
 <td>ch.qos.logback</td>
 <td>logback-classic</td>
 <td>1.1.7</td>
@@ -162,7 +138,7 @@
 <td></td>
 <td>jar</td>
 <td>false</td></tr>
-<tr class="a">
+<tr class="b">
 <td>ch.qos.logback</td>
 <td>logback-core</td>
 <td>1.1.7</td>
@@ -170,7 +146,7 @@
 <td></td>
 <td>jar</td>
 <td>false</td></tr>
-<tr class="b">
+<tr class="a">
 <td>org.apache.myfaces.core</td>
 <td>myfaces-api</td>
 <td>2.0.24</td>
@@ -178,7 +154,7 @@
 <td></td>
 <td>jar</td>
 <td>false</td></tr>
-<tr class="a">
+<tr class="b">
 <td>org.apache.myfaces.core</td>
 <td>myfaces-impl</td>
 <td>2.0.24</td>
@@ -186,7 +162,7 @@
 <td></td>
 <td>jar</td>
 <td>false</td></tr>
-<tr class="b">
+<tr class="a">
 <td>junit</td>
 <td>junit</td>
 <td>4.12</td>
@@ -194,7 +170,7 @@
 <td></td>
 <td>jar</td>
 <td>false</td></tr>
-<tr class="a">
+<tr class="b">
 <td>org.apache.geronimo.specs</td>
 <td>geronimo-servlet_3.0_spec</td>
 <td>1.0</td>
@@ -202,7 +178,7 @@
 <td></td>
 <td>jar</td>
 <td>false</td></tr>
-<tr class="b">
+<tr class="a">
 <td>org.apache.geronimo.specs</td>
 <td>geronimo-el_2.2_spec</td>
 <td>1.0.4</td>
@@ -210,7 +186,7 @@
 <td></td>
 <td>jar</td>
 <td>false</td></tr>
-<tr class="a">
+<tr class="b">
 <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=1774596&r1=1774595&r2=1774596&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 Fri Dec 16 13:43:52 2016
@@ -29,7 +29,7 @@
   
   
   <div class="date">
-    Last Published: 07 Dec 2016
+    Last Published: 16 Dec 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-beta-2-SNAPSHOT&lt;/version&gt;
+  &lt;version&gt;3.0.1-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-beta-2-SNAPSHOT'</pre></div></div>
+<pre>'org.apache.myfaces.tobago:tobago-example-portlet:war:3.0.1-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-beta-2-SNAPSHOT&quot;&gt;
+<pre>&lt;dependency org=&quot;org.apache.myfaces.tobago&quot; name=&quot;tobago-example-portlet&quot; rev=&quot;3.0.1-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-beta-2-SNAPSHOT')
+@Grab(group='org.apache.myfaces.tobago', module='tobago-example-portlet', version='3.0.1-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-beta-2-SNAPSHOT'</pre></div></div>
+<pre>compile 'org.apache.myfaces.tobago:tobago-example-portlet:3.0.1-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-beta-2-SNAPSHOT&quot;</pre></div></div>
+<pre>libraryDependencies += &quot;org.apache.myfaces.tobago&quot; % &quot;tobago-example-portlet&quot; % &quot;3.0.1-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-beta-2-SNAPSHOT&quot;]</pre></div></div></div>
+<pre>[org.apache.myfaces.tobago/tobago-example-portlet &quot;3.0.1-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=1774596&r1=1774595&r2=1774596&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 Fri Dec 16 13:43:52 2016
@@ -29,7 +29,7 @@
   
   
   <div class="date">
-    Last Published: 07 Dec 2016
+    Last Published: 16 Dec 2016
   </div>
             <ul>
       <li>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/distribution-management.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/distribution-management.html?rev=1774596&r1=1774595&r2=1774596&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/distribution-management.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/distribution-management.html Fri Dec 16 13:43:52 2016
@@ -29,7 +29,7 @@
   
   
   <div class="date">
-    Last Published: 07 Dec 2016
+    Last Published: 16 Dec 2016
   </div>
             <ul>
       <li>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/findbugs.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/findbugs.html?rev=1774596&r1=1774595&r2=1774596&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/findbugs.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/findbugs.html Fri Dec 16 13:43:52 2016
@@ -29,7 +29,7 @@
   
   
   <div class="date">
-    Last Published: 07 Dec 2016
+    Last Published: 16 Dec 2016
   </div>
             <ul>
       <li>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/index.html?rev=1774596&r1=1774595&r2=1774596&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/index.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/index.html Fri Dec 16 13:43:52 2016
@@ -29,7 +29,7 @@
   
   
   <div class="date">
-    Last Published: 07 Dec 2016
+    Last Published: 16 Dec 2016
   </div>
             <ul>
       <li>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/integration.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/integration.html?rev=1774596&r1=1774595&r2=1774596&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/integration.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/integration.html Fri Dec 16 13:43:52 2016
@@ -29,7 +29,7 @@
   
   
   <div class="date">
-    Last Published: 07 Dec 2016
+    Last Published: 16 Dec 2016
   </div>
             <ul>
       <li>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/issue-tracking.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/issue-tracking.html?rev=1774596&r1=1774595&r2=1774596&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/issue-tracking.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/issue-tracking.html Fri Dec 16 13:43:52 2016
@@ -29,7 +29,7 @@
   
   
   <div class="date">
-    Last Published: 07 Dec 2016
+    Last Published: 16 Dec 2016
   </div>
             <ul>
       <li>

Modified: myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/javancss.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/javancss.html?rev=1774596&r1=1774595&r2=1774596&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/javancss.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-portlet/javancss.html Fri Dec 16 13:43:52 2016
@@ -29,7 +29,7 @@
   
   
   <div class="date">
-    Last Published: 07 Dec 2016
+    Last Published: 16 Dec 2016
   </div>
             <ul>
       <li>