Commit 815f006f authored by Hanno Schlichting's avatar Hanno Schlichting

Updated the default value for ``management_page_charset`` from iso-8859-1 to...

Updated the default value for ``management_page_charset`` from iso-8859-1 to the nowadays more standard utf-8.
parent ed47b9fd
...@@ -11,6 +11,9 @@ Zope 2.12.2 (unreleased) ...@@ -11,6 +11,9 @@ Zope 2.12.2 (unreleased)
Features Added 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. - Added IPubBeforeAbort event to mirror IPubBeforeCommit in failure scenarios.
This event is fired just before IPubFailure, but, crucially, while the This event is fired just before IPubFailure, but, crucially, while the
transaction is still open. transaction is still open.
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<html> <html>
<head> <head>
<dtml-unless management_page_charset> <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> </dtml-unless>
<meta http-equiv="content-type" content="text/html;charset=&dtml-management_page_charset;" /> <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)"> <dtml-call "RESPONSE.setHeader('content-type','text/html;charset='+management_page_charset)">
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment