http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/learn/examples/dropdownchoice.html ---------------------------------------------------------------------- diff --git a/content/learn/examples/dropdownchoice.html b/content/learn/examples/dropdownchoice.html index eabf1c1..633c5f2 100644 --- a/content/learn/examples/dropdownchoice.html +++ b/content/learn/examples/dropdownchoice.html @@ -69,13 +69,13 @@ select the manager of an employee.</p> <span class="cm">/** * Used to display the person. */</span> - <span class="kd">public</span> <span class="n">String</span> <span class="n">toString</span><span class="o">()</span> <span class="o">{</span> + <span class="kd">public</span> <span class="n">String</span> <span class="nf">toString</span><span class="o">()</span> <span class="o">{</span> <span class="k">return</span> <span class="n">name</span><span class="o">;</span> <span class="o">}</span> <span class="cm">/** * Gets the list of possible managers from the database. */</span> - <span class="kd">public</span> <span class="kd">static</span> <span class="n">List</span><span class="o"><</span><span class="n">Person</span><span class="o">></span> <span class="n">getManagers</span><span class="o">()</span> <span class="o">{</span> + <span class="kd">public</span> <span class="kd">static</span> <span class="n">List</span><span class="o"><</span><span class="n">Person</span><span class="o">></span> <span class="nf">getManagers</span><span class="o">()</span> <span class="o">{</span> <span class="c1">// gets the managers from the database</span> <span class="o">}</span> <span class="o">}</span></code></pre></figure> @@ -115,7 +115,7 @@ The <code class="highlighter-rouge"><option></code> tags are there for pre with the generated choices.</p> <p>Letâs see how the page looks like from the Java side:</p> <figure class="highlight"><pre><code class="language-java" data-lang="java"><span class="kd">public</span> <span class="kd">class</span> <span class="nc">AssignManagerPage</span> <span class="kd">extends</span> <span class="n">WebPage</span> <span class="o">{</span> - <span class="kd">public</span> <span class="n">AssignManagerPage</span><span class="o">(</span><span class="n">Person</span> <span class="n">employee</span><span class="o">)</span> <span class="o">{</span> + <span class="kd">public</span> <span class="nf">AssignManagerPage</span><span class="o">(</span><span class="n">Person</span> <span class="n">employee</span><span class="o">)</span> <span class="o">{</span> <span class="n">Form</span> <span class="n">form</span> <span class="o">=</span> <span class="k">new</span> <span class="n">Form</span><span class="o">(</span><span class="s">"form"</span><span class="o">);</span> <span class="n">add</span><span class="o">(</span><span class="n">form</span><span class="o">);</span> <span class="n">form</span><span class="o">.</span><span class="na">add</span><span class="o">(</span><span class="k">new</span> <span class="n">Label</span><span class="o">(</span><span class="s">"name"</span><span class="o">,</span> <span class="k">new</span> <span class="n">PropertyModel</span><span class="o"><</span><span class="n">String</span><span class="o">>(</span><span class="n">employee</span><span class="o">,</span> <span class="s">"name"</span><span class="o">)));</span> @@ -124,7 +124,7 @@ with the generated choices.</p> <span class="k">new</span> <span class="n">PropertyModel</span><span class="o"><</span><span class="n">Person</span><span class="o">>(</span><span class="n">employee</span><span class="o">,</span> <span class="s">"managedBy"</span><span class="o">),</span> <span class="k">new</span> <span class="n">LoadableDetachableModel</span><span class="o"><</span><span class="n">List</span><span class="o"><</span><span class="n">Person</span><span class="o">>>()</span> <span class="o">{</span> <span class="nd">@Override</span> - <span class="kd">protected</span> <span class="n">Object</span> <span class="n">load</span><span class="o">()</span> <span class="o">{</span> + <span class="kd">protected</span> <span class="n">Object</span> <span class="nf">load</span><span class="o">()</span> <span class="o">{</span> <span class="k">return</span> <span class="n">Person</span><span class="o">.</span><span class="na">getManagers</span><span class="o">();</span> <span class="o">}</span> <span class="o">}</span> @@ -192,7 +192,7 @@ the rest of your application.</p> <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body>
http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/learn/examples/guestbook.html ---------------------------------------------------------------------- diff --git a/content/learn/examples/guestbook.html b/content/learn/examples/guestbook.html index eb0ead4..f545735 100644 --- a/content/learn/examples/guestbook.html +++ b/content/learn/examples/guestbook.html @@ -66,25 +66,25 @@ of this example.</p> <span class="kd">public</span> <span class="kd">class</span> <span class="nc">Comment</span> <span class="kd">implements</span> <span class="n">IClusterable</span> <span class="o">{</span> <span class="kd">private</span> <span class="n">String</span> <span class="n">text</span><span class="o">;</span> <span class="kd">private</span> <span class="n">Date</span> <span class="n">date</span> <span class="o">=</span> <span class="k">new</span> <span class="n">Date</span><span class="o">();</span> - <span class="kd">public</span> <span class="n">Comment</span><span class="o">()</span> <span class="o">{</span> + <span class="kd">public</span> <span class="nf">Comment</span><span class="o">()</span> <span class="o">{</span> <span class="o">}</span> - <span class="kd">public</span> <span class="n">Comment</span><span class="o">(</span><span class="kd">final</span> <span class="n">Comment</span> <span class="n">comment</span><span class="o">)</span> <span class="o">{</span> + <span class="kd">public</span> <span class="nf">Comment</span><span class="o">(</span><span class="kd">final</span> <span class="n">Comment</span> <span class="n">comment</span><span class="o">)</span> <span class="o">{</span> <span class="k">this</span><span class="o">.</span><span class="na">text</span> <span class="o">=</span> <span class="n">comment</span><span class="o">.</span><span class="na">text</span><span class="o">;</span> <span class="k">this</span><span class="o">.</span><span class="na">date</span> <span class="o">=</span> <span class="n">comment</span><span class="o">.</span><span class="na">date</span><span class="o">;</span> <span class="o">}</span> - <span class="kd">public</span> <span class="n">String</span> <span class="n">getText</span><span class="o">()</span> <span class="o">{</span> + <span class="kd">public</span> <span class="n">String</span> <span class="nf">getText</span><span class="o">()</span> <span class="o">{</span> <span class="k">return</span> <span class="n">text</span><span class="o">;</span> <span class="o">}</span> - <span class="kd">public</span> <span class="kt">void</span> <span class="n">setText</span><span class="o">(</span><span class="n">String</span> <span class="n">text</span><span class="o">)</span> <span class="o">{</span> + <span class="kd">public</span> <span class="kt">void</span> <span class="nf">setText</span><span class="o">(</span><span class="n">String</span> <span class="n">text</span><span class="o">)</span> <span class="o">{</span> <span class="k">this</span><span class="o">.</span><span class="na">text</span> <span class="o">=</span> <span class="n">text</span><span class="o">;</span> <span class="o">}</span> - <span class="kd">public</span> <span class="n">Date</span> <span class="n">getDate</span><span class="o">()</span> <span class="o">{</span> + <span class="kd">public</span> <span class="n">Date</span> <span class="nf">getDate</span><span class="o">()</span> <span class="o">{</span> <span class="k">return</span> <span class="n">date</span><span class="o">;</span> <span class="o">}</span> - <span class="kd">public</span> <span class="kt">void</span> <span class="n">setDate</span><span class="o">(</span><span class="n">Date</span> <span class="n">date</span><span class="o">)</span> <span class="o">{</span> + <span class="kd">public</span> <span class="kt">void</span> <span class="nf">setDate</span><span class="o">(</span><span class="n">Date</span> <span class="n">date</span><span class="o">)</span> <span class="o">{</span> <span class="k">this</span><span class="o">.</span><span class="na">date</span> <span class="o">=</span> <span class="n">date</span><span class="o">;</span> <span class="o">}</span> - <span class="kd">public</span> <span class="n">String</span> <span class="n">toString</span><span class="o">()</span> <span class="o">{</span> + <span class="kd">public</span> <span class="n">String</span> <span class="nf">toString</span><span class="o">()</span> <span class="o">{</span> <span class="k">return</span> <span class="s">"[Comment date = "</span> <span class="o">+</span> <span class="n">date</span> <span class="o">+</span> <span class="s">", text = "</span> <span class="o">+</span> <span class="n">text</span> <span class="o">+</span> <span class="s">"]"</span><span class="o">;</span> <span class="o">}</span> <span class="o">}</span></code></pre></figure> @@ -123,13 +123,13 @@ accomplished in just a few lines of code.</p> <span class="cm">/** * Constructor that is invoked when page is invoked without a session. */</span> - <span class="kd">public</span> <span class="n">GuestBook</span><span class="o">()</span> <span class="o">{</span> + <span class="kd">public</span> <span class="nf">GuestBook</span><span class="o">()</span> <span class="o">{</span> <span class="c1">// Add comment form</span> <span class="n">add</span><span class="o">(</span><span class="k">new</span> <span class="n">CommentForm</span><span class="o">(</span><span class="s">"commentForm"</span><span class="o">));</span> <span class="c1">// Add commentListView of existing comments</span> <span class="n">add</span><span class="o">(</span><span class="k">new</span> <span class="n">PropertyListView</span><span class="o"><</span><span class="n">Comment</span><span class="o">>(</span><span class="s">"comments"</span><span class="o">,</span> <span class="n">commentList</span><span class="o">)</span> <span class="o">{</span> <span class="nd">@Override</span> - <span class="kd">public</span> <span class="kt">void</span> <span class="n">populateItem</span><span class="o">(</span><span class="kd">final</span> <span class="n">ListItem</span><span class="o"><</span><span class="n">Comment</span><span class="o">></span> <span class="n">listItem</span><span class="o">)</span> <span class="o">{</span> + <span class="kd">public</span> <span class="kt">void</span> <span class="nf">populateItem</span><span class="o">(</span><span class="kd">final</span> <span class="n">ListItem</span><span class="o"><</span><span class="n">Comment</span><span class="o">></span> <span class="n">listItem</span><span class="o">)</span> <span class="o">{</span> <span class="n">listItem</span><span class="o">.</span><span class="na">add</span><span class="o">(</span><span class="k">new</span> <span class="n">Label</span><span class="o">(</span><span class="s">"date"</span><span class="o">));</span> <span class="n">listItem</span><span class="o">.</span><span class="na">add</span><span class="o">(</span><span class="k">new</span> <span class="n">MultiLineLabel</span><span class="o">(</span><span class="s">"text"</span><span class="o">));</span> <span class="o">}</span> @@ -139,7 +139,7 @@ accomplished in just a few lines of code.</p> * A form that allows a user to add a comment. */</span> <span class="kd">public</span> <span class="kd">final</span> <span class="kd">class</span> <span class="nc">CommentForm</span> <span class="kd">extends</span> <span class="n">Form</span><span class="o"><</span><span class="n">ValueMap</span><span class="o">></span> <span class="o">{</span> - <span class="kd">public</span> <span class="n">CommentForm</span><span class="o">(</span><span class="kd">final</span> <span class="n">String</span> <span class="n">id</span><span class="o">)</span> <span class="o">{</span> + <span class="kd">public</span> <span class="nf">CommentForm</span><span class="o">(</span><span class="kd">final</span> <span class="n">String</span> <span class="n">id</span><span class="o">)</span> <span class="o">{</span> <span class="c1">// Construct form with no validation listener</span> <span class="kd">super</span><span class="o">(</span><span class="n">id</span><span class="o">,</span> <span class="k">new</span> <span class="n">CompoundPropertyModel</span><span class="o"><</span><span class="n">ValueMap</span><span class="o">>(</span><span class="k">new</span> <span class="n">ValueMap</span><span class="o">()));</span> <span class="c1">// this is just to make the unit test happy</span> @@ -153,7 +153,7 @@ accomplished in just a few lines of code.</p> * Show the resulting valid edit */</span> <span class="nd">@Override</span> - <span class="kd">public</span> <span class="kd">final</span> <span class="kt">void</span> <span class="n">onSubmit</span><span class="o">()</span> <span class="o">{</span> + <span class="kd">public</span> <span class="kd">final</span> <span class="kt">void</span> <span class="nf">onSubmit</span><span class="o">()</span> <span class="o">{</span> <span class="n">ValueMap</span> <span class="n">values</span> <span class="o">=</span> <span class="n">getModelObject</span><span class="o">();</span> <span class="c1">// check if the honey pot is filled</span> <span class="k">if</span> <span class="o">(</span><span class="n">StringUtils</span><span class="o">.</span><span class="na">isNotBlank</span><span class="o">((</span><span class="n">String</span><span class="o">)</span><span class="n">values</span><span class="o">.</span><span class="na">get</span><span class="o">(</span><span class="s">"comment"</span><span class="o">)))</span> <span class="o">{</span> @@ -173,7 +173,7 @@ accomplished in just a few lines of code.</p> <span class="cm">/** * Clears the comments. */</span> - <span class="kd">public</span> <span class="kd">static</span> <span class="kt">void</span> <span class="n">clear</span><span class="o">()</span> <span class="o">{</span> + <span class="kd">public</span> <span class="kd">static</span> <span class="kt">void</span> <span class="nf">clear</span><span class="o">()</span> <span class="o">{</span> <span class="n">commentList</span><span class="o">.</span><span class="na">clear</span><span class="o">();</span> <span class="o">}</span> <span class="o">}</span></code></pre></figure> @@ -236,10 +236,10 @@ final treat the modifications to the <code class="highlighter-rouge">web.xml</co <span class="kn">import</span> <span class="nn">org.apache.wicket.Page</span><span class="o">;</span> <span class="kn">import</span> <span class="nn">org.apache.wicket.examples.WicketExampleApplication</span><span class="o">;</span> <span class="kd">public</span> <span class="kd">class</span> <span class="nc">GuestBookApplication</span> <span class="kd">extends</span> <span class="n">WicketExampleApplication</span> <span class="o">{</span> - <span class="kd">public</span> <span class="n">GuestBookApplication</span><span class="o">()</span> <span class="o">{</span> + <span class="kd">public</span> <span class="nf">GuestBookApplication</span><span class="o">()</span> <span class="o">{</span> <span class="o">}</span> <span class="nd">@Override</span> - <span class="kd">public</span> <span class="n">Class</span><span class="o"><</span> <span class="o">?</span> <span class="kd">extends</span> <span class="n">Page</span><span class="o">></span> <span class="n">getHomePage</span><span class="o">()</span> <span class="o">{</span> + <span class="kd">public</span> <span class="n">Class</span><span class="o"><</span> <span class="o">?</span> <span class="kd">extends</span> <span class="n">Page</span><span class="o">></span> <span class="nf">getHomePage</span><span class="o">()</span> <span class="o">{</span> <span class="k">return</span> <span class="n">GuestBook</span><span class="o">.</span><span class="na">class</span><span class="o">;</span> <span class="o">}</span> <span class="o">}</span></code></pre></figure> @@ -260,7 +260,7 @@ file for running this application.</p> <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/learn/examples/helloworld.html ---------------------------------------------------------------------- diff --git a/content/learn/examples/helloworld.html b/content/learn/examples/helloworld.html index 3a25549..d2856e4 100644 --- a/content/learn/examples/helloworld.html +++ b/content/learn/examples/helloworld.html @@ -68,13 +68,13 @@ without having to go through the whole build-deploy cycle.</p> defines what the home page is, and allows for some configuration.</p> <figure class="highlight"><pre><code class="language-java" data-lang="java"><span class="kn">import</span> <span class="nn">org.apache.wicket.protocol.http.WebApplication</span><span class="o">;</span> <span class="kd">public</span> <span class="kd">class</span> <span class="nc">HelloWorldApplication</span> <span class="kd">extends</span> <span class="n">WebApplication</span> <span class="o">{</span> - <span class="kd">public</span> <span class="n">HelloWorldApplication</span><span class="o">()</span> <span class="o">{</span> + <span class="kd">public</span> <span class="nf">HelloWorldApplication</span><span class="o">()</span> <span class="o">{</span> <span class="o">}</span> <span class="cm">/** * @see org.apache.wicket.Application#getHomePage() */</span> <span class="nd">@Override</span> - <span class="kd">public</span> <span class="n">Class</span> <span class="n">getHomePage</span><span class="o">()</span> <span class="o">{</span> + <span class="kd">public</span> <span class="n">Class</span> <span class="nf">getHomePage</span><span class="o">()</span> <span class="o">{</span> <span class="k">return</span> <span class="n">HelloWorld</span><span class="o">.</span><span class="na">class</span><span class="o">;</span> <span class="o">}</span> <span class="o">}</span></code></pre></figure> @@ -85,7 +85,7 @@ rendered by the HelloWorld page is returned.</p> <figure class="highlight"><pre><code class="language-java" data-lang="java"><span class="kn">import</span> <span class="nn">org.apache.wicket.markup.html.WebPage</span><span class="o">;</span> <span class="kn">import</span> <span class="nn">org.apache.wicket.markup.html.basic.Label</span><span class="o">;</span> <span class="kd">public</span> <span class="kd">class</span> <span class="nc">HelloWorld</span> <span class="kd">extends</span> <span class="n">WebPage</span> <span class="o">{</span> - <span class="kd">public</span> <span class="n">HelloWorld</span><span class="o">()</span> <span class="o">{</span> + <span class="kd">public</span> <span class="nf">HelloWorld</span><span class="o">()</span> <span class="o">{</span> <span class="n">add</span><span class="o">(</span><span class="k">new</span> <span class="n">Label</span><span class="o">(</span><span class="s">"message"</span><span class="o">,</span> <span class="s">"Hello World!"</span><span class="o">));</span> <span class="o">}</span> <span class="o">}</span></code></pre></figure> @@ -167,7 +167,7 @@ required web.xml were needed to create this application.</p> <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/learn/examples/index.html ---------------------------------------------------------------------- diff --git a/content/learn/examples/index.html b/content/learn/examples/index.html index 77df55b..e360da1 100644 --- a/content/learn/examples/index.html +++ b/content/learn/examples/index.html @@ -76,7 +76,7 @@ fragments feature. Fragments are a type of inline panels.</li> <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/learn/examples/markupinheritance.html ---------------------------------------------------------------------- diff --git a/content/learn/examples/markupinheritance.html b/content/learn/examples/markupinheritance.html index 874b249..ef47356 100644 --- a/content/learn/examples/markupinheritance.html +++ b/content/learn/examples/markupinheritance.html @@ -125,7 +125,7 @@ look at the example at hand. Letâs first create the base page.</p> <span class="kn">import</span> <span class="nn">wicket.markup.html.basic.Label</span><span class="o">;</span> <span class="kn">import</span> <span class="nn">wicket.markup.html.link.BookmarkablePageLink</span><span class="o">;</span> <span class="kd">public</span> <span class="kd">abstract</span> <span class="kd">class</span> <span class="nc">BasePage</span> <span class="kd">extends</span> <span class="n">WebPage</span> <span class="o">{</span> - <span class="kd">public</span> <span class="n">BasePage</span><span class="o">()</span> <span class="o">{</span> + <span class="kd">public</span> <span class="nf">BasePage</span><span class="o">()</span> <span class="o">{</span> <span class="n">add</span><span class="o">(</span><span class="k">new</span> <span class="n">BookmarkablePageLink</span><span class="o">(</span><span class="s">"page1"</span><span class="o">,</span> <span class="n">Page1</span><span class="o">.</span><span class="na">class</span><span class="o">));</span> <span class="n">add</span><span class="o">(</span><span class="k">new</span> <span class="n">BookmarkablePageLink</span><span class="o">(</span><span class="s">"page2"</span><span class="o">,</span> <span class="n">Page2</span><span class="o">.</span><span class="na">class</span><span class="o">));</span> <span class="n">add</span><span class="o">(</span><span class="k">new</span> <span class="n">Label</span><span class="o">(</span><span class="s">"footer"</span><span class="o">,</span> <span class="s">"This is in the footer"</span><span class="o">));</span> @@ -166,7 +166,7 @@ markup file and Java class. Letâs first implement <code class="highlighter-rou <figure class="highlight"><pre><code class="language-java" data-lang="java"><span class="kn">package</span> <span class="n">wicket</span><span class="o">.</span><span class="na">quickstart</span><span class="o">;</span> <span class="kn">import</span> <span class="nn">wicket.markup.html.basic.Label</span><span class="o">;</span> <span class="kd">public</span> <span class="kd">class</span> <span class="nc">Page1</span> <span class="kd">extends</span> <span class="n">BasePage</span> <span class="o">{</span> - <span class="kd">public</span> <span class="n">Page1</span><span class="o">()</span> <span class="o">{</span> + <span class="kd">public</span> <span class="nf">Page1</span><span class="o">()</span> <span class="o">{</span> <span class="n">add</span><span class="o">(</span><span class="k">new</span> <span class="n">Label</span><span class="o">(</span><span class="s">"label1"</span><span class="o">,</span> <span class="s">"This is in the subclass Page1"</span><span class="o">));</span> <span class="o">}</span> <span class="o">}</span></code></pre></figure> @@ -190,7 +190,7 @@ Wicket will not be able to render the component in the final page.</p> <figure class="highlight"><pre><code class="language-java" data-lang="java"><span class="kn">package</span> <span class="n">wicket</span><span class="o">.</span><span class="na">quickstart</span><span class="o">;</span> <span class="kn">import</span> <span class="nn">wicket.markup.html.basic.Label</span><span class="o">;</span> <span class="kd">public</span> <span class="kd">class</span> <span class="nc">Page2</span> <span class="kd">extends</span> <span class="n">BasePage</span> <span class="o">{</span> - <span class="kd">public</span> <span class="n">Page2</span><span class="o">()</span> <span class="o">{</span> + <span class="kd">public</span> <span class="nf">Page2</span><span class="o">()</span> <span class="o">{</span> <span class="n">add</span><span class="o">(</span><span class="k">new</span> <span class="n">Label</span><span class="o">(</span><span class="s">"label2"</span><span class="o">,</span> <span class="s">"This is in the subclass Page2"</span><span class="o">));</span> <span class="o">}</span> <span class="o">}</span></code></pre></figure> @@ -225,7 +225,7 @@ inheritance:</p> <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/learn/examples/navomatic.html ---------------------------------------------------------------------- diff --git a/content/learn/examples/navomatic.html b/content/learn/examples/navomatic.html index f8ef5c8..4ab7364 100644 --- a/content/learn/examples/navomatic.html +++ b/content/learn/examples/navomatic.html @@ -114,9 +114,9 @@ this case, we set Page1 to be our home page.</p> <figure class="highlight"><pre><code class="language-java" data-lang="java"><span class="kn">package</span> <span class="n">org</span><span class="o">.</span><span class="na">apache</span><span class="o">.</span><span class="na">wicket</span><span class="o">.</span><span class="na">examples</span><span class="o">.</span><span class="na">navomatic</span><span class="o">;</span> <span class="kn">import</span> <span class="nn">org.apache.wicket.protocol.http.WebApplication</span><span class="o">;</span> <span class="kd">public</span> <span class="kd">class</span> <span class="nc">NavomaticApplication</span> <span class="kd">extends</span> <span class="n">WebApplication</span> <span class="o">{</span> - <span class="kd">public</span> <span class="n">NavomaticApplication</span><span class="o">()</span> <span class="o">{</span> + <span class="kd">public</span> <span class="nf">NavomaticApplication</span><span class="o">()</span> <span class="o">{</span> <span class="o">}</span> - <span class="kd">public</span> <span class="n">Class</span> <span class="n">getHomePage</span><span class="o">()</span> <span class="o">{</span> + <span class="kd">public</span> <span class="n">Class</span> <span class="nf">getHomePage</span><span class="o">()</span> <span class="o">{</span> <span class="k">return</span> <span class="n">Page1</span><span class="o">.</span><span class="na">class</span><span class="o">;</span> <span class="o">}</span> <span class="o">}</span></code></pre></figure> @@ -125,7 +125,7 @@ this case, we set Page1 to be our home page.</p> <figure class="highlight"><pre><code class="language-java" data-lang="java"><span class="kn">package</span> <span class="n">wicket</span><span class="o">.</span><span class="na">examples</span><span class="o">.</span><span class="na">navomatic</span><span class="o">;</span> <span class="kn">import</span> <span class="nn">org.apache.wicket.markup.html.WebPage</span><span class="o">;</span> <span class="kd">public</span> <span class="kd">class</span> <span class="nc">Page1</span> <span class="kd">extends</span> <span class="n">WebPage</span> <span class="o">{</span> - <span class="kd">public</span> <span class="n">Page1</span><span class="o">()</span> <span class="o">{</span> + <span class="kd">public</span> <span class="nf">Page1</span><span class="o">()</span> <span class="o">{</span> <span class="n">add</span><span class="o">(</span><span class="k">new</span> <span class="n">NavomaticBorder</span><span class="o">(</span><span class="s">"navomaticBorder"</span><span class="o">));</span> <span class="o">}</span> <span class="o">}</span></code></pre></figure> @@ -146,7 +146,7 @@ two names match, Wicket associates the NavomaticBorder Java component with the <p>The Page2 Java and HTML files look almost identical (and weâll omit the sources for Page3 altogether because it follows the same pattern):</p> <figure class="highlight"><pre><code class="language-java" data-lang="java"><span class="kd">public</span> <span class="kd">class</span> <span class="nc">Page2</span> <span class="kd">extends</span> <span class="n">WebPage</span> <span class="o">{</span> - <span class="kd">public</span> <span class="n">Page2</span><span class="o">()</span> <span class="o">{</span> + <span class="kd">public</span> <span class="nf">Page2</span><span class="o">()</span> <span class="o">{</span> <span class="n">add</span><span class="o">(</span><span class="k">new</span> <span class="n">NavomaticBorder</span><span class="o">(</span><span class="s">"navomaticBorder"</span><span class="o">));</span> <span class="o">}</span> <span class="o">}</span></code></pre></figure> @@ -167,7 +167,7 @@ is in the NavomaticBorder markup.</p> <span class="kn">import</span> <span class="nn">org.apache.wicket.markup.html.border.Border</span><span class="o">;</span> <span class="kn">import</span> <span class="nn">org.apache.wicket.markup.html.border.BoxBorder</span><span class="o">;</span> <span class="kd">public</span> <span class="kd">class</span> <span class="nc">NavomaticBorder</span> <span class="kd">extends</span> <span class="n">Border</span> <span class="o">{</span> - <span class="kd">public</span> <span class="n">NavomaticBorder</span><span class="o">(</span><span class="kd">final</span> <span class="n">String</span> <span class="n">componentName</span><span class="o">)</span> <span class="o">{</span> + <span class="kd">public</span> <span class="nf">NavomaticBorder</span><span class="o">(</span><span class="kd">final</span> <span class="n">String</span> <span class="n">componentName</span><span class="o">)</span> <span class="o">{</span> <span class="kd">super</span><span class="o">(</span><span class="n">componentName</span><span class="o">);</span> <span class="n">addToBorder</span><span class="o">(</span><span class="k">new</span> <span class="n">BoxBorder</span><span class="o">(</span><span class="s">"navigationBorder"</span><span class="o">));</span> <span class="n">addToBorder</span><span class="o">(</span><span class="k">new</span> <span class="n">BoxBorder</span><span class="o">(</span><span class="s">"bodyBorder"</span><span class="o">));</span> @@ -244,7 +244,7 @@ sections need to be added to the web.xml in the WEB-INF folder.</p> <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/learn/examples/usingfragments.html ---------------------------------------------------------------------- diff --git a/content/learn/examples/usingfragments.html b/content/learn/examples/usingfragments.html index f1835bc..a827efd 100644 --- a/content/learn/examples/usingfragments.html +++ b/content/learn/examples/usingfragments.html @@ -86,9 +86,9 @@ and web markup container.</p> <span class="kn">import</span> <span class="nn">wicket.markup.html.list.Loop</span><span class="o">;</span> <span class="kn">import</span> <span class="nn">wicket.markup.html.panel.Fragment</span><span class="o">;</span> <span class="kd">public</span> <span class="kd">class</span> <span class="nc">Index</span> <span class="kd">extends</span> <span class="n">QuickStartPage</span> <span class="o">{</span> - <span class="kd">public</span> <span class="n">Index</span><span class="o">()</span> <span class="o">{</span> + <span class="kd">public</span> <span class="nf">Index</span><span class="o">()</span> <span class="o">{</span> <span class="n">Loop</span> <span class="n">loop</span> <span class="o">=</span> <span class="k">new</span> <span class="n">Loop</span><span class="o">(</span><span class="s">"list"</span><span class="o">,</span> <span class="mi">5</span><span class="o">)</span> <span class="o">{</span> - <span class="kd">protected</span> <span class="kt">void</span> <span class="n">populateItem</span><span class="o">(</span><span class="n">LoopItem</span> <span class="n">item</span><span class="o">)</span> <span class="o">{</span> + <span class="kd">protected</span> <span class="kt">void</span> <span class="nf">populateItem</span><span class="o">(</span><span class="n">LoopItem</span> <span class="n">item</span><span class="o">)</span> <span class="o">{</span> <span class="n">String</span> <span class="n">fragmentId</span> <span class="o">=</span> <span class="s">"fragment"</span> <span class="o">+</span> <span class="o">(</span><span class="n">item</span><span class="o">.</span><span class="na">getIteration</span><span class="o">()</span> <span class="o">%</span> <span class="mi">2</span> <span class="o">+</span> <span class="mi">1</span><span class="o">);</span> <span class="n">item</span><span class="o">.</span><span class="na">add</span><span class="o">(</span><span class="k">new</span> <span class="n">Fragment</span><span class="o">(</span><span class="s">"panel"</span><span class="o">,</span> <span class="n">fragmentId</span><span class="o">,</span> <span class="n">Index</span><span class="o">.</span><span class="na">this</span><span class="o">));</span> <span class="o">}</span> @@ -123,14 +123,14 @@ subclass for fragment one to encapsulate the component.</p> <span class="kn">import</span> <span class="nn">wicket.markup.html.panel.Fragment</span><span class="o">;</span> <span class="kd">public</span> <span class="kd">class</span> <span class="nc">Index</span> <span class="kd">extends</span> <span class="n">QuickStartPage</span> <span class="o">{</span> <span class="kd">public</span> <span class="kd">class</span> <span class="nc">Fragment1</span> <span class="kd">extends</span> <span class="n">Fragment</span> <span class="o">{</span> - <span class="kd">public</span> <span class="n">Fragment1</span><span class="o">(</span><span class="n">String</span> <span class="n">id</span><span class="o">,</span> <span class="n">String</span> <span class="n">markupId</span><span class="o">)</span> <span class="o">{</span> + <span class="kd">public</span> <span class="nf">Fragment1</span><span class="o">(</span><span class="n">String</span> <span class="n">id</span><span class="o">,</span> <span class="n">String</span> <span class="n">markupId</span><span class="o">)</span> <span class="o">{</span> <span class="kd">super</span><span class="o">(</span><span class="n">id</span><span class="o">,</span> <span class="n">markupId</span><span class="o">,</span> <span class="n">Index</span><span class="o">.</span><span class="na">this</span><span class="o">);</span> <span class="n">add</span><span class="o">(</span><span class="k">new</span> <span class="n">Label</span><span class="o">(</span><span class="s">"label"</span><span class="o">,</span> <span class="s">"Hello, World!"</span><span class="o">));</span> <span class="o">}</span> <span class="o">}</span> - <span class="kd">public</span> <span class="n">Index</span><span class="o">()</span> <span class="o">{</span> + <span class="kd">public</span> <span class="nf">Index</span><span class="o">()</span> <span class="o">{</span> <span class="n">Loop</span> <span class="n">loop</span> <span class="o">=</span> <span class="k">new</span> <span class="n">Loop</span><span class="o">(</span><span class="s">"list"</span><span class="o">,</span> <span class="mi">5</span><span class="o">)</span> <span class="o">{</span> - <span class="kd">protected</span> <span class="kt">void</span> <span class="n">populateItem</span><span class="o">(</span><span class="n">LoopItem</span> <span class="n">item</span><span class="o">)</span> <span class="o">{</span> + <span class="kd">protected</span> <span class="kt">void</span> <span class="nf">populateItem</span><span class="o">(</span><span class="n">LoopItem</span> <span class="n">item</span><span class="o">)</span> <span class="o">{</span> <span class="kt">int</span> <span class="n">index</span> <span class="o">=</span> <span class="o">(</span><span class="n">item</span><span class="o">.</span><span class="na">getIteration</span><span class="o">()</span> <span class="o">%</span> <span class="mi">2</span> <span class="o">+</span> <span class="mi">1</span><span class="o">);</span> <span class="n">String</span> <span class="n">fragmentId</span> <span class="o">=</span> <span class="s">"fragment"</span> <span class="o">+</span> <span class="n">index</span><span class="o">;</span> <span class="k">if</span> <span class="o">(</span><span class="n">index</span> <span class="o">==</span> <span class="mi">1</span><span class="o">)</span> <span class="o">{</span> @@ -157,7 +157,7 @@ introduced a new Wicket tag: <code class="highlighter-rouge"><wicket:fragment <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/learn/index.html ---------------------------------------------------------------------- diff --git a/content/learn/index.html b/content/learn/index.html index e7b2f10..31acdb4 100644 --- a/content/learn/index.html +++ b/content/learn/index.html @@ -99,9 +99,8 @@ projects.</p> </li> <li>Wicket 7.x <ul> - <li><a href="http://ci.apache.org/projects/wicket/guide/7.x/">HTML</a></li> - <li><a href="http://ci.apache.org/projects/wicket/guide/7.x/guide/single.html">HTML (single page)</a></li> - <li><a href="http://ci.apache.org/projects/wicket/guide/7.x/guide/single.pdf">PDF</a></li> + <li><a href="http://ci.apache.org/projects/wicket/guide/7.x/single.html">HTML (single page)</a></li> + <li><a href="http://ci.apache.org/projects/wicket/guide/7.x/single.pdf">PDF</a></li> </ul> </li> <li>Wicket 6.x @@ -187,7 +186,7 @@ Find <a href="/contribute/ides.html">here</a> how to work with Wicket projects w <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2009/07/30/wicket-1.3.7-released.html ---------------------------------------------------------------------- diff --git a/content/news/2009/07/30/wicket-1.3.7-released.html b/content/news/2009/07/30/wicket-1.3.7-released.html index 3267aa0..fa4b158 100644 --- a/content/news/2009/07/30/wicket-1.3.7-released.html +++ b/content/news/2009/07/30/wicket-1.3.7-released.html @@ -143,7 +143,7 @@ since Wicket 1.3.0.</p> <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2009/07/30/wicket-1.4-takes-typesafety-to-the-next-level.html ---------------------------------------------------------------------- diff --git a/content/news/2009/07/30/wicket-1.4-takes-typesafety-to-the-next-level.html b/content/news/2009/07/30/wicket-1.4-takes-typesafety-to-the-next-level.html index e99a3c5..cbe4d0d 100644 --- a/content/news/2009/07/30/wicket-1.4-takes-typesafety-to-the-next-level.html +++ b/content/news/2009/07/30/wicket-1.4-takes-typesafety-to-the-next-level.html @@ -99,7 +99,7 @@ nationalities, credit card processors, etc.</p> <p>The signature of a constructor for the <code class="highlighter-rouge">DropDownChoice</code> component in Wicket 1.3 was:</p> <figure class="highlight"><pre><code class="language-java" data-lang="java"><span class="kd">public</span> <span class="kd">class</span> <span class="nc">DropDownChoice</span> <span class="kd">extends</span> <span class="o">...</span> - <span class="kd">public</span> <span class="n">DropDownChoice</span><span class="o">(</span><span class="n">String</span> <span class="n">id</span><span class="o">,</span> <span class="n">IModel</span> <span class="n">model</span><span class="o">,</span> <span class="n">IModel</span> <span class="n">choices</span><span class="o">)</span> + <span class="kd">public</span> <span class="nf">DropDownChoice</span><span class="o">(</span><span class="n">String</span> <span class="n">id</span><span class="o">,</span> <span class="n">IModel</span> <span class="n">model</span><span class="o">,</span> <span class="n">IModel</span> <span class="n">choices</span><span class="o">)</span> <span class="o">}</span></code></pre></figure> <p>As you can see, this constructor doesnât give much insight into what goes where (other than the names of the parameters). The first parameter is the @@ -110,7 +110,7 @@ to assign the right IModel values to the right parameters. Now take a look at the same constructor, but now in Wicket 1.4. The signature for our generified constructor looks like the following example.</p> <figure class="highlight"><pre><code class="language-java" data-lang="java"><span class="kd">public</span> <span class="o"><</span><span class="n">T</span><span class="o">></span> <span class="n">DropDownChoice</span> <span class="kd">extends</span> <span class="o">...</span> - <span class="kd">public</span> <span class="n">DropDownChoice</span><span class="o">(</span><span class="n">String</span> <span class="n">id</span><span class="o">,</span> <span class="n">IModel</span><span class="o"><</span><span class="n">T</span><span class="o">></span> <span class="n">model</span><span class="o">,</span> <span class="n">IModel</span><span class="o"><?</span> <span class="kd">extends</span> <span class="n">List</span><span class="o"><?</span> <span class="kd">extends</span> <span class="n">T</span><span class="o">>></span> <span class="n">choices</span><span class="o">)</span> + <span class="kd">public</span> <span class="nf">DropDownChoice</span><span class="o">(</span><span class="n">String</span> <span class="n">id</span><span class="o">,</span> <span class="n">IModel</span><span class="o"><</span><span class="n">T</span><span class="o">></span> <span class="n">model</span><span class="o">,</span> <span class="n">IModel</span><span class="o"><?</span> <span class="kd">extends</span> <span class="n">List</span><span class="o"><?</span> <span class="kd">extends</span> <span class="n">T</span><span class="o">>></span> <span class="n">choices</span><span class="o">)</span> <span class="o">}</span></code></pre></figure> <p>Here we communicate that the first <code class="highlighter-rouge">IModel</code> parameter is a <code class="highlighter-rouge">T</code>, which is the single value that will be provided when the <code class="highlighter-rouge">DropDownChoice</code> selects one @@ -129,9 +129,9 @@ use a model or use two different model types: which one should be in the lead? We chose to generify only the components that clearly benefited from the extra type information, leading to clean code like this:</p> <figure class="highlight"><pre><code class="language-java" data-lang="java"><span class="n">ListView</span><span class="o"><</span><span class="n">Person</span><span class="o">></span> <span class="n">peopleListView</span> <span class="o">=</span> <span class="k">new</span> <span class="n">ListView</span><span class="o"><</span><span class="n">Person</span><span class="o">>(</span><span class="s">"people"</span><span class="o">,</span> <span class="n">people</span><span class="o">)</span> <span class="o">{</span> - <span class="kd">protected</span> <span class="kt">void</span> <span class="n">populateItem</span><span class="o">(</span><span class="n">ListItem</span><span class="o"><</span><span class="n">Person</span><span class="o">></span> <span class="n">item</span><span class="o">)</span> <span class="o">{</span> + <span class="kd">protected</span> <span class="kt">void</span> <span class="nf">populateItem</span><span class="o">(</span><span class="n">ListItem</span><span class="o"><</span><span class="n">Person</span><span class="o">></span> <span class="n">item</span><span class="o">)</span> <span class="o">{</span> <span class="n">item</span><span class="o">.</span><span class="na">add</span><span class="o">(</span><span class="k">new</span> <span class="n">Link</span><span class="o"><</span><span class="n">Person</span><span class="o">>(</span><span class="s">"editPerson"</span><span class="o">,</span> <span class="n">item</span><span class="o">.</span><span class="na">getModel</span><span class="o">()){</span> - <span class="kd">public</span> <span class="kt">void</span> <span class="n">onClick</span><span class="o">()</span> <span class="o">{</span> + <span class="kd">public</span> <span class="kt">void</span> <span class="nf">onClick</span><span class="o">()</span> <span class="o">{</span> <span class="n">Person</span> <span class="n">p</span> <span class="o">=</span> <span class="n">getModelObject</span><span class="o">();</span> <span class="n">setResponsePage</span><span class="o">(</span><span class="k">new</span> <span class="n">EditPersonPage</span><span class="o">(</span><span class="n">p</span><span class="o">));</span> <span class="o">}</span> @@ -145,7 +145,7 @@ the extra type information, leading to clean code like this:</p> <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2009/07/index.html ---------------------------------------------------------------------- diff --git a/content/news/2009/07/index.html b/content/news/2009/07/index.html index 33eab2c..cea08c8 100644 --- a/content/news/2009/07/index.html +++ b/content/news/2009/07/index.html @@ -167,7 +167,7 @@ minimum platform, we were able...</p> <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2009/08/21/wicket-1.4.1-released.html ---------------------------------------------------------------------- diff --git a/content/news/2009/08/21/wicket-1.4.1-released.html b/content/news/2009/08/21/wicket-1.4.1-released.html index d0f7875..bb212d0 100644 --- a/content/news/2009/08/21/wicket-1.4.1-released.html +++ b/content/news/2009/08/21/wicket-1.4.1-released.html @@ -78,7 +78,7 @@ instance.</p> <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2009/08/index.html ---------------------------------------------------------------------- diff --git a/content/news/2009/08/index.html b/content/news/2009/08/index.html index 8690642..737787e 100644 --- a/content/news/2009/08/index.html +++ b/content/news/2009/08/index.html @@ -158,7 +158,7 @@ of Apache Wicket 1.4.</p> <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2009/10/12/wicket-1.4.2-released.html ---------------------------------------------------------------------- diff --git a/content/news/2009/10/12/wicket-1.4.2-released.html b/content/news/2009/10/12/wicket-1.4.2-released.html index 7774f72..a563f27 100644 --- a/content/news/2009/10/12/wicket-1.4.2-released.html +++ b/content/news/2009/10/12/wicket-1.4.2-released.html @@ -72,7 +72,7 @@ of Apache Wicket 1.4.</p> <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2009/10/24/wicket-1.4.3-released.html ---------------------------------------------------------------------- diff --git a/content/news/2009/10/24/wicket-1.4.3-released.html b/content/news/2009/10/24/wicket-1.4.3-released.html index fc8cf33..999edae 100644 --- a/content/news/2009/10/24/wicket-1.4.3-released.html +++ b/content/news/2009/10/24/wicket-1.4.3-released.html @@ -71,7 +71,7 @@ of Apache Wicket 1.4.</p> <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2009/10/index.html ---------------------------------------------------------------------- diff --git a/content/news/2009/10/index.html b/content/news/2009/10/index.html index ba8dfff..2fc938c 100644 --- a/content/news/2009/10/index.html +++ b/content/news/2009/10/index.html @@ -166,7 +166,7 @@ of Apache Wicket 1.4.</p> <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2009/12/13/wicket-1.4.4-released.html ---------------------------------------------------------------------- diff --git a/content/news/2009/12/13/wicket-1.4.4-released.html b/content/news/2009/12/13/wicket-1.4.4-released.html index ca94507..6a32a25 100644 --- a/content/news/2009/12/13/wicket-1.4.4-released.html +++ b/content/news/2009/12/13/wicket-1.4.4-released.html @@ -72,7 +72,7 @@ of Apache Wicket 1.4.</p> <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2009/12/21/wicket-1.4.5-released.html ---------------------------------------------------------------------- diff --git a/content/news/2009/12/21/wicket-1.4.5-released.html b/content/news/2009/12/21/wicket-1.4.5-released.html index 99b8e49..e70caf3 100644 --- a/content/news/2009/12/21/wicket-1.4.5-released.html +++ b/content/news/2009/12/21/wicket-1.4.5-released.html @@ -74,7 +74,7 @@ environments.</p> <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2009/12/index.html ---------------------------------------------------------------------- diff --git a/content/news/2009/12/index.html b/content/news/2009/12/index.html index 3f3d267..04aea3c 100644 --- a/content/news/2009/12/index.html +++ b/content/news/2009/12/index.html @@ -167,7 +167,7 @@ caused certain applicat...</p> <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2009/index.html ---------------------------------------------------------------------- diff --git a/content/news/2009/index.html b/content/news/2009/index.html index 68b2aa0..fb4cf51 100644 --- a/content/news/2009/index.html +++ b/content/news/2009/index.html @@ -216,7 +216,7 @@ <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2010/02/01/wicket-1.4.6-released.html ---------------------------------------------------------------------- diff --git a/content/news/2010/02/01/wicket-1.4.6-released.html b/content/news/2010/02/01/wicket-1.4.6-released.html index 845ebc2..2653d76 100644 --- a/content/news/2010/02/01/wicket-1.4.6-released.html +++ b/content/news/2010/02/01/wicket-1.4.6-released.html @@ -72,7 +72,7 @@ that make Wicket 1.4 even more stable in production environments.</p> <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2010/02/index.html ---------------------------------------------------------------------- diff --git a/content/news/2010/02/index.html b/content/news/2010/02/index.html index 6348967..d53c7fe 100644 --- a/content/news/2010/02/index.html +++ b/content/news/2010/02/index.html @@ -154,7 +154,7 @@ <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2010/03/05/wicket-1.4.7-released.html ---------------------------------------------------------------------- diff --git a/content/news/2010/03/05/wicket-1.4.7-released.html b/content/news/2010/03/05/wicket-1.4.7-released.html index eea4383..b3d37d3 100644 --- a/content/news/2010/03/05/wicket-1.4.7-released.html +++ b/content/news/2010/03/05/wicket-1.4.7-released.html @@ -70,7 +70,7 @@ <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2010/03/index.html ---------------------------------------------------------------------- diff --git a/content/news/2010/03/index.html b/content/news/2010/03/index.html index e9b5fc5..359ae23 100644 --- a/content/news/2010/03/index.html +++ b/content/news/2010/03/index.html @@ -156,7 +156,7 @@ <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2010/05/03/wicket-1.4.8-released.html ---------------------------------------------------------------------- diff --git a/content/news/2010/05/03/wicket-1.4.8-released.html b/content/news/2010/05/03/wicket-1.4.8-released.html index 167d7fc..c9c8927 100644 --- a/content/news/2010/05/03/wicket-1.4.8-released.html +++ b/content/news/2010/05/03/wicket-1.4.8-released.html @@ -73,7 +73,7 @@ <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2010/05/24/wicket-1.4.9-released.html ---------------------------------------------------------------------- diff --git a/content/news/2010/05/24/wicket-1.4.9-released.html b/content/news/2010/05/24/wicket-1.4.9-released.html index b740b71..16e03c3 100644 --- a/content/news/2010/05/24/wicket-1.4.9-released.html +++ b/content/news/2010/05/24/wicket-1.4.9-released.html @@ -112,7 +112,7 @@ ThreadLocal</li> <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2010/05/index.html ---------------------------------------------------------------------- diff --git a/content/news/2010/05/index.html b/content/news/2010/05/index.html index 8cfc8fd..daaf59f 100644 --- a/content/news/2010/05/index.html +++ b/content/news/2010/05/index.html @@ -176,7 +176,7 @@ fifteen bug fixes and improvements.</p> <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2010/08/04/martin-grigorov-committer.html ---------------------------------------------------------------------- diff --git a/content/news/2010/08/04/martin-grigorov-committer.html b/content/news/2010/08/04/martin-grigorov-committer.html index e946f5c..7f3fd06 100644 --- a/content/news/2010/08/04/martin-grigorov-committer.html +++ b/content/news/2010/08/04/martin-grigorov-committer.html @@ -62,7 +62,7 @@ contributes to several <a href="http://wicketstuff.org">Wicket Stuff projects</a <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2010/08/11/wicket-1.4.10-released.html ---------------------------------------------------------------------- diff --git a/content/news/2010/08/11/wicket-1.4.10-released.html b/content/news/2010/08/11/wicket-1.4.10-released.html index 9f11979..2be7867 100644 --- a/content/news/2010/08/11/wicket-1.4.10-released.html +++ b/content/news/2010/08/11/wicket-1.4.10-released.html @@ -81,7 +81,7 @@ thirty bug fixes and improvements.</p> * </p> * */</span> - <span class="kd">protected</span> <span class="kt">void</span> <span class="n">onInitialize</span><span class="o">()</span> <span class="o">{}</span> + <span class="kd">protected</span> <span class="kt">void</span> <span class="nf">onInitialize</span><span class="o">()</span> <span class="o">{}</span> <span class="o">}</span></code></pre></figure> <p>Component configuration allows developers to easier configure component states such as visibility, enabled, etc. From the javadoc:</p> <figure class="highlight"><pre><code class="language-java" data-lang="java"><span class="kd">public</span> <span class="kd">class</span> <span class="nc">Component</span> <span class="o">{</span> @@ -143,7 +143,7 @@ thirty bug fixes and improvements.</p> * } * </pre> */</span> - <span class="kd">protected</span> <span class="kt">void</span> <span class="n">onConfigure</span><span class="o">()</span> <span class="o">{}</span> + <span class="kd">protected</span> <span class="kt">void</span> <span class="nf">onConfigure</span><span class="o">()</span> <span class="o">{}</span> <span class="o">}</span></code></pre></figure> <ul> <li><a href="http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.10/">Subversion tag</a></li> @@ -167,7 +167,7 @@ source)</li> <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2010/08/11/wicket-1.5-M1-released.html ---------------------------------------------------------------------- diff --git a/content/news/2010/08/11/wicket-1.5-M1-released.html b/content/news/2010/08/11/wicket-1.5-M1-released.html index e9de8ae..1862d37 100644 --- a/content/news/2010/08/11/wicket-1.5-M1-released.html +++ b/content/news/2010/08/11/wicket-1.5-M1-released.html @@ -74,7 +74,7 @@ distribution</a> (including source)</li> <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2010/08/24/peter-ertl-committer.html ---------------------------------------------------------------------- diff --git a/content/news/2010/08/24/peter-ertl-committer.html b/content/news/2010/08/24/peter-ertl-committer.html index 9184dc5..50d9897 100644 --- a/content/news/2010/08/24/peter-ertl-committer.html +++ b/content/news/2010/08/24/peter-ertl-committer.html @@ -62,7 +62,7 @@ user list.</p> <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2010/08/index.html ---------------------------------------------------------------------- diff --git a/content/news/2010/08/index.html b/content/news/2010/08/index.html index 2309250..8e928de 100644 --- a/content/news/2010/08/index.html +++ b/content/news/2010/08/index.html @@ -176,7 +176,7 @@ provide our users with a more powerful and flexible request processing pipeline. <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2010/09/09/wicket-1.4.11-released.html ---------------------------------------------------------------------- diff --git a/content/news/2010/09/09/wicket-1.4.11-released.html b/content/news/2010/09/09/wicket-1.4.11-released.html index babb780..bab211e 100644 --- a/content/news/2010/09/09/wicket-1.4.11-released.html +++ b/content/news/2010/09/09/wicket-1.4.11-released.html @@ -72,7 +72,7 @@ fifty bug fixes and improvements.</p> <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2010/09/17/wicket.1.4.12-released.html ---------------------------------------------------------------------- diff --git a/content/news/2010/09/17/wicket.1.4.12-released.html b/content/news/2010/09/17/wicket.1.4.12-released.html index 0f71039..5bd9637 100644 --- a/content/news/2010/09/17/wicket.1.4.12-released.html +++ b/content/news/2010/09/17/wicket.1.4.12-released.html @@ -71,7 +71,7 @@ <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body> http://git-wip-us.apache.org/repos/asf/wicket-site/blob/2997f365/content/news/2010/09/17/wicket.1.5-M2.1-released.html ---------------------------------------------------------------------- diff --git a/content/news/2010/09/17/wicket.1.5-M2.1-released.html b/content/news/2010/09/17/wicket.1.5-M2.1-released.html index b10b3cb..38aea03 100644 --- a/content/news/2010/09/17/wicket.1.5-M2.1-released.html +++ b/content/news/2010/09/17/wicket.1.5-M2.1-released.html @@ -75,7 +75,7 @@ distribution</a> (including source)</li> <footer class="l-container"> <div class="l-full"> <img src="/img/asf_logo_url.svg" style="height:90px; float:left; margin-right:10px;"> - <div style="margin-top:12px;">Copyright © 2016 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> + <div style="margin-top:12px;">Copyright © 2017 â The Apache Software Foundation. Apache Wicket, Wicket, Apache, the Apache feather logo, and the Apache Wicket project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div> </div> </footer> </body>
