Difference between revisions of "Talk:CharsetEncoding"

From MPDLMediaWiki
Jump to navigation Jump to search
m
m
Line 3: Line 3:


<code>
<code>
<jsp:directive.page pageEncoding="UTF-8" />
      <jsp:directive.page pageEncoding="UTF-8" />
</code>
</code>


Line 9: Line 9:


<code>
<code>
<head>
      <head>
<title>eSciDoc - Login page</title>
        <title>eSciDoc - Login page</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
      </head>
</code>
</code>

Revision as of 09:14, 27 October 2009

HTML[edit]

Currently the charset encoding is handed over in HTTP header:

      <jsp:directive.page pageEncoding="UTF-8" />

Some pages come with encoding handed over in the html head:

     <head>
       <title>eSciDoc - Login page</title>
       <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
     </head>