From a978c2d37ab57a04d6ad57afd7415b6be347154d Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Fri, 17 May 2013 09:39:26 -0400 Subject: [PATCH] Upgrade notes for IDL2js locale support Minor Apache configuration change required. Signed-off-by: Bill Erickson Signed-off-by: Mike Rylander --- .../Administration/idl2js-locale-support.txt | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 docs/RELEASE_NOTES_NEXT/Administration/idl2js-locale-support.txt diff --git a/docs/RELEASE_NOTES_NEXT/Administration/idl2js-locale-support.txt b/docs/RELEASE_NOTES_NEXT/Administration/idl2js-locale-support.txt new file mode 100644 index 0000000000..21297e80c2 --- /dev/null +++ b/docs/RELEASE_NOTES_NEXT/Administration/idl2js-locale-support.txt @@ -0,0 +1,28 @@ +Upgrade Notes : IDL2js Locale Support +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +The following Apache configuration changes are required to support the +locale-aware IDL2js module. + +// note: there's no Apache conf highlighting. 'bash' works well enough. +[source, bash] +----------------------------------------------------------------- +# file: eg_vhost.conf + +# this is the new part +# capture locale CGI param for /reports/fm_IDL.xml +RewriteCond %{REQUEST_URI} ^/reports/fm_IDL.xml +RewriteCond %{QUERY_STRING} locale=([^&;]*) +RewriteRule . - [E=locale:%1] + +# it should be placed just above this existing config section + + IDLChunkStripPI "yes" + IDLChunkEscapeScript "no" + IDLChunkStripComments "yes" + IDLChunkStripDoctype "yes" + IDLChunkContentType "application/xml; charset=utf-8" + AddOutputFilter INCLUDES;IDLCHUNK .xml + +----------------------------------------------------------------- + -- 2.43.2