From: <bra...@us...> - 2008-04-01 02:00:09
|
Revision: 2225 http://archive-access.svn.sourceforge.net/archive-access/?rev=2225&view=rev Author: bradtofel Date: 2008-03-31 19:00:10 -0700 (Mon, 31 Mar 2008) Log Message: ----------- BUGFIX: changed declared META tag encoding to utf-8, thanks Lukas ADDED: @page declaration indicate utf-8 encoding as well. Modified Paths: -------------- trunk/archive-access/projects/wayback/wayback-webapp/src/main/webapp/template/UI-header.jsp Modified: trunk/archive-access/projects/wayback/wayback-webapp/src/main/webapp/template/UI-header.jsp =================================================================== --- trunk/archive-access/projects/wayback/wayback-webapp/src/main/webapp/template/UI-header.jsp 2008-03-21 01:10:43 UTC (rev 2224) +++ trunk/archive-access/projects/wayback/wayback-webapp/src/main/webapp/template/UI-header.jsp 2008-04-01 02:00:10 UTC (rev 2225) @@ -2,6 +2,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <%@ page import="org.archive.wayback.core.UIResults" %> <%@ page import="org.archive.wayback.util.StringFormatter" %> +<%@ page language="java" pageEncoding="utf-8" contentType="text/html;charset=utf-8"%> <% UIResults results = UIResults.getFromRequest(request); StringFormatter fmt = results.getFormatter(); @@ -12,7 +13,7 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> - <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> + <meta http-equiv="content-type" content="text/html; charset=utf-8"> <link rel="stylesheet" type="text/css" href="<%= contextRoot %>css/styles.css" @@ -53,7 +54,7 @@ <!-- URL FORM --> - <form action="<%= contextRoot %>query" method="GET"> + <form action="<%= contextRoot %>query" method="get"> <tr> @@ -83,7 +84,7 @@ <option>1996</option> </select> - <input type="Submit" name="Submit" value="<%= fmt.format("UIGlobal.urlSearchButton") %>" align="absMiddle"> + <input type="submit" name="Submit" value="<%= fmt.format("UIGlobal.urlSearchButton") %>" align="absMiddle"> <a href="<%= contextRoot %>advanced_search.jsp" style="color:white;font-size:11px"> <%= fmt.format("UIGlobal.advancedSearchLink") %> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |