[Zope-Checkins] SVN: Zope/branches/2.12/ Updated the default value for ``management_page_charset`` from iso-8859-1 to the nowadays more standard utf-8.
Hanno Schlichting
hannosch at hannosch.eu
Sun Nov 29 14:57:01 EST 2009
Log message for revision 106106:
Updated the default value for ``management_page_charset`` from iso-8859-1 to the nowadays more standard utf-8.
Changed:
U Zope/branches/2.12/doc/CHANGES.rst
U Zope/branches/2.12/src/App/dtml/manage_page_header.dtml
-=-
Modified: Zope/branches/2.12/doc/CHANGES.rst
===================================================================
--- Zope/branches/2.12/doc/CHANGES.rst 2009-11-29 19:53:35 UTC (rev 106105)
+++ Zope/branches/2.12/doc/CHANGES.rst 2009-11-29 19:57:01 UTC (rev 106106)
@@ -11,6 +11,9 @@
Features Added
++++++++++++++
+- Updated the default value for ``management_page_charset`` from iso-8859-1
+ to the nowadays more standard utf-8.
+
- Added IPubBeforeAbort event to mirror IPubBeforeCommit in failure scenarios.
This event is fired just before IPubFailure, but, crucially, while the
transaction is still open.
Modified: Zope/branches/2.12/src/App/dtml/manage_page_header.dtml
===================================================================
--- Zope/branches/2.12/src/App/dtml/manage_page_header.dtml 2009-11-29 19:53:35 UTC (rev 106105)
+++ Zope/branches/2.12/src/App/dtml/manage_page_header.dtml 2009-11-29 19:57:01 UTC (rev 106106)
@@ -2,7 +2,7 @@
<html>
<head>
<dtml-unless management_page_charset>
-<dtml-call "REQUEST.set('management_page_charset','iso-8859-1')">
+<dtml-call "REQUEST.set('management_page_charset','utf-8')">
</dtml-unless>
<meta http-equiv="content-type" content="text/html;charset=&dtml-management_page_charset;" />
<dtml-call "RESPONSE.setHeader('content-type','text/html;charset='+management_page_charset)">
More information about the Zope-Checkins
mailing list