You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2010/10/31 18:21:51 UTC

svn commit: r1029424 - in /wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication: pages/ panel/

Author: mgrigorov
Date: Sun Oct 31 17:21:51 2010
New Revision: 1029424

URL: http://svn.apache.org/viewvc?rev=1029424&view=rev
Log:
WICKET-3140 Missing xml headers in localized SignIn pages

Add <?xml ...?> processing instruction to all .html pages in wicket-auth-roles which missed them


Modified:
    wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/pages/SignInPage.html
    wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/pages/SignInPage_fr.html
    wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/pages/SignInPage_ru.html
    wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/pages/SignOutPage.html
    wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/pages/SignOutPage_fr.html
    wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel.html
    wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_de.html
    wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_fr.html
    wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_ja.html
    wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_ko.html
    wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_nl.html
    wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_zh_CN.html

Modified: wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/pages/SignInPage.html
URL: http://svn.apache.org/viewvc/wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/pages/SignInPage.html?rev=1029424&r1=1029423&r2=1029424&view=diff
==============================================================================
--- wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/pages/SignInPage.html (original)
+++ wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/pages/SignInPage.html Sun Oct 31 17:21:51 2010
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="UTF-8" ?>
 <!--
    Licensed to the Apache Software Foundation (ASF) under one or more
    contributor license agreements.  See the NOTICE file distributed with

Modified: wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/pages/SignInPage_fr.html
URL: http://svn.apache.org/viewvc/wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/pages/SignInPage_fr.html?rev=1029424&r1=1029423&r2=1029424&view=diff
==============================================================================
--- wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/pages/SignInPage_fr.html (original)
+++ wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/pages/SignInPage_fr.html Sun Oct 31 17:21:51 2010
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="UTF-8" ?>
 <!--
    Licensed to the Apache Software Foundation (ASF) under one or more
    contributor license agreements.  See the NOTICE file distributed with

Modified: wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/pages/SignInPage_ru.html
URL: http://svn.apache.org/viewvc/wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/pages/SignInPage_ru.html?rev=1029424&r1=1029423&r2=1029424&view=diff
==============================================================================
--- wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/pages/SignInPage_ru.html (original)
+++ wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/pages/SignInPage_ru.html Sun Oct 31 17:21:51 2010
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="UTF-8" ?>
 <!--
    Licensed to the Apache Software Foundation (ASF) under one or more
    contributor license agreements.  See the NOTICE file distributed with

Modified: wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/pages/SignOutPage.html
URL: http://svn.apache.org/viewvc/wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/pages/SignOutPage.html?rev=1029424&r1=1029423&r2=1029424&view=diff
==============================================================================
--- wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/pages/SignOutPage.html (original)
+++ wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/pages/SignOutPage.html Sun Oct 31 17:21:51 2010
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="UTF-8" ?>
 <!--
    Licensed to the Apache Software Foundation (ASF) under one or more
    contributor license agreements.  See the NOTICE file distributed with

Modified: wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/pages/SignOutPage_fr.html
URL: http://svn.apache.org/viewvc/wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/pages/SignOutPage_fr.html?rev=1029424&r1=1029423&r2=1029424&view=diff
==============================================================================
--- wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/pages/SignOutPage_fr.html (original)
+++ wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/pages/SignOutPage_fr.html Sun Oct 31 17:21:51 2010
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="UTF-8" ?>
 <!--
    Licensed to the Apache Software Foundation (ASF) under one or more
    contributor license agreements.  See the NOTICE file distributed with

Modified: wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel.html
URL: http://svn.apache.org/viewvc/wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel.html?rev=1029424&r1=1029423&r2=1029424&view=diff
==============================================================================
--- wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel.html (original)
+++ wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel.html Sun Oct 31 17:21:51 2010
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="UTF-8" ?>
 <!--
    Licensed to the Apache Software Foundation (ASF) under one or more
    contributor license agreements.  See the NOTICE file distributed with

Modified: wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_de.html
URL: http://svn.apache.org/viewvc/wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_de.html?rev=1029424&r1=1029423&r2=1029424&view=diff
==============================================================================
--- wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_de.html (original)
+++ wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_de.html Sun Oct 31 17:21:51 2010
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="UTF-8" ?>
 <!--
    Licensed to the Apache Software Foundation (ASF) under one or more
    contributor license agreements.  See the NOTICE file distributed with

Modified: wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_fr.html
URL: http://svn.apache.org/viewvc/wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_fr.html?rev=1029424&r1=1029423&r2=1029424&view=diff
==============================================================================
--- wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_fr.html (original)
+++ wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_fr.html Sun Oct 31 17:21:51 2010
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="UTF-8" ?>
 <!--
    Licensed to the Apache Software Foundation (ASF) under one or more
    contributor license agreements.  See the NOTICE file distributed with

Modified: wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_ja.html
URL: http://svn.apache.org/viewvc/wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_ja.html?rev=1029424&r1=1029423&r2=1029424&view=diff
==============================================================================
--- wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_ja.html (original)
+++ wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_ja.html Sun Oct 31 17:21:51 2010
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="UTF-8" ?>
 <!--
    Licensed to the Apache Software Foundation (ASF) under one or more
    contributor license agreements.  See the NOTICE file distributed with

Modified: wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_ko.html
URL: http://svn.apache.org/viewvc/wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_ko.html?rev=1029424&r1=1029423&r2=1029424&view=diff
==============================================================================
--- wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_ko.html (original)
+++ wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_ko.html Sun Oct 31 17:21:51 2010
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="UTF-8" ?>
 <!--
    Licensed to the Apache Software Foundation (ASF) under one or more
    contributor license agreements.  See the NOTICE file distributed with

Modified: wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_nl.html
URL: http://svn.apache.org/viewvc/wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_nl.html?rev=1029424&r1=1029423&r2=1029424&view=diff
==============================================================================
--- wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_nl.html (original)
+++ wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_nl.html Sun Oct 31 17:21:51 2010
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="UTF-8" ?>
 <!--
    Licensed to the Apache Software Foundation (ASF) under one or more
    contributor license agreements.  See the NOTICE file distributed with
@@ -51,4 +52,4 @@
 		</form>
   </wicket:panel>
 </body>
-</html>
\ No newline at end of file
+</html>

Modified: wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_zh_CN.html
URL: http://svn.apache.org/viewvc/wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_zh_CN.html?rev=1029424&r1=1029423&r2=1029424&view=diff
==============================================================================
--- wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_zh_CN.html (original)
+++ wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel_zh_CN.html Sun Oct 31 17:21:51 2010
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="UTF-8" ?>
 <!--
    Licensed to the Apache Software Foundation (ASF) under one or more
    contributor license agreements.  See the NOTICE file distributed with
@@ -51,4 +52,4 @@
 		</form>
   </wicket:panel>
 </body>
-</html>
\ No newline at end of file
+</html>