MDL-25973 add missing charset
authorPetr Skoda <commits@skodak.org>
Fri, 14 Jan 2011 08:32:17 +0000 (09:32 +0100)
committerPetr Skoda <commits@skodak.org>
Fri, 14 Jan 2011 08:32:17 +0000 (09:32 +0100)
20 files changed:
admin/dbtransfer/lib.php
admin/xmldb/index.php
calendar/export_execute.php
filter/algebra/algebradebug.php
filter/tex/texdebug.php
lib/ajax/getnavbranch.php
lib/outputrenderers.php
lib/setup.php
lib/setuplib.php
mnet/publickey.php
mod/chat/chatd.php
mod/data/css.php
mod/data/js.php
repository/repository_ajax.php
theme/javascript.php
theme/styles.php
theme/styles_debug.php
user/selector/search.php
webservice/rest/locallib.php
webservice/soap/locallib.php

index 6d1b819..de868b3 100644 (file)
@@ -26,7 +26,7 @@ function dbtransfer_export_xml_database($description, $mdb) {
 
     session_get_instance()->write_close(); // release session
 
-    header('Content-Type: application/xhtml+xml');
+    header('Content-Type: application/xhtml+xml; charset=utf-8');
     header('Content-Disposition: attachment; filename=database.xml');
     header('Expires: 0');
     header('Cache-Control: must-revalidate,post-check=0,pre-check=0');
index 4b80b28..70c3f6d 100644 (file)
                         echo $OUTPUT->footer();
                         break;
                     case ACTION_GENERATE_XML:
-                        header('Content-type: application/xhtml+xml');
+                        header('Content-type: application/xhtml+xml; charset=utf-8');
                         echo $xmldb_action->getOutput();
                         break;
                 }
index e4d62bd..3fe48f1 100644 (file)
@@ -165,6 +165,6 @@ header('Pragma: no-cache');
 header('Accept-Ranges: none'); // Comment out if PDFs do not work...
 header('Content-disposition: attachment; filename='.$filename);
 header('Content-length: '.strlen($serialized));
-header('Content-type: text/calendar');
+header('Content-type: text/calendar; charset=utf-8');
 
 echo $serialized;
index 05853b4..67b715c 100644 (file)
@@ -183,7 +183,7 @@ function refineTeX($texexp) {
 }
 
 function outputText($texexp) {
-  header("Content-type: text/html");
+  header("Content-type: text/html; charset=utf-8");
   echo "<html><body><pre>\n";
   if ($texexp) {
     $texexp = str_replace('<','&lt;',$texexp);
index 4862224..a53f2ee 100644 (file)
@@ -96,7 +96,7 @@
 
 
     function outputText($texexp) {
-        header("Content-type: text/html");
+        header("Content-type: text/html; charset=utf-8");
         echo "<html><body><pre>\n";
         if ($texexp) {
             $texexp = str_replace('<', '&lt;', $texexp);
index 623f790..d00bef9 100644 (file)
@@ -48,7 +48,7 @@ try {
     $navigation = new global_navigation_for_ajax($PAGE, $branchtype, $branchid);
 
     $linkcategories = false;
-    
+
     if ($instanceid!==null) {
         // Get the db record for the block instance
         $blockrecord = $DB->get_record('block_instances', array('id'=>$instanceid,'blockname'=>'navigation'));
@@ -86,17 +86,17 @@ try {
         $block->trim($navigation, $trimmode, $trimlength, ceil($trimlength/2));
     }
     $converter = new navigation_json();
-    
+
     // Find the actuall branch we are looking for
     $branch = $navigation->find($branchid, $branchtype);
-    
+
     // Remove links to categories if required.
     if (!$linkcategories) {
         foreach ($branch->find_all_of_type(navigation_node::TYPE_CATEGORY) as $category) {
             $category->action = null;
         }
     }
-    
+
     // Stop buffering errors at this point
     $html = ob_get_contents();
     ob_end_clean();
@@ -116,6 +116,6 @@ if (empty($branch) || $branch->nodetype !== navigation_node::NODETYPE_BRANCH) {
 // Prepare an XML converter for the branch
 $converter->set_expandable($navigation->get_expandable());
 // Set XML headers
-header('Content-type: text/plain');
+header('Content-type: text/plain; charset=utf-8');
 // Convert and output the branch as XML
 echo $converter->convert($branch);
index 39a0ac5..bbcad53 100644 (file)
@@ -324,7 +324,7 @@ class core_renderer extends renderer_base {
             $output .= html_writer::empty_tag('link', array('rel' => 'alternate',
                     'type' => $type, 'title' => $alt->title, 'href' => $alt->url));
         }
-        
+
         if (!empty($CFG->additionalhtmlhead)) {
             $output .= "\n".$CFG->additionalhtmlhead;
         }
@@ -2719,9 +2719,9 @@ class core_renderer_ajax extends core_renderer {
     public function header() {
         // unfortunately YUI iframe upload does not support application/json
         if (!empty($_FILES)) {
-            @header('Content-type: text/plain');
+            @header('Content-type: text/plain; charset=utf-8');
         } else {
-            @header('Content-type: application/json');
+            @header('Content-type: application/json; charset=utf-8');
         }
 
         /// Headers to make it not cacheable and json
index b1b9fbf..e677754 100644 (file)
@@ -162,7 +162,7 @@ if (defined('WEB_CRON_EMULATED_CLI')) {
 // Detect CLI maintenance mode - this is useful when you need to mess with database, such as during upgrades
 if (file_exists("$CFG->dataroot/climaintenance.html")) {
     if (!CLI_SCRIPT) {
-        header('Content-type: text/html');
+        header('Content-type: text/html; charset=utf-8');
         /// Headers to make it not cacheable and json
         header('Cache-Control: no-store, no-cache, must-revalidate');
         header('Cache-Control: post-check=0, pre-check=0', false);
index 33ddf81..cbf6ffd 100644 (file)
@@ -1268,7 +1268,7 @@ width: 80%; -moz-border-radius: 20px; padding: 15px">
                     $e->stacktrace = format_backtrace($backtrace, true);
                 }
             }
-            @header('Content-Type: application/json');
+            @header('Content-Type: application/json; charset=utf-8');
             echo json_encode($e);
             return;
         }
index 10ddcbe..ac018ae 100644 (file)
@@ -15,6 +15,6 @@ if ($CFG->mnet_dispatcher_mode === 'off') {
     print_error('mnetdisabled', 'mnet');
 }
 
-header("Content-type: text/plain");
+header("Content-type: text/plain; charset=utf-8");
 $keypair = mnet_get_keypair();
 echo $keypair['certificate'];
index 9220c21..f255c17 100755 (executable)
@@ -363,7 +363,7 @@ EOD;
                 $header .= "Connection: close\n";
                 $header .= "Date: ".date('r')."\n";
                 $header .= "Server: Moodle\n";
-                $header .= "Content-Type: text/html\n";
+                $header .= "Content-Type: text/html; charset=utf-8\n";
                 $header .= "Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT\n";
                 $header .= "Cache-Control: no-cache, must-revalidate\n";
                 $header .= "Expires: Wed, 4 Oct 1978 09:32:45 GMT\n";
@@ -383,7 +383,7 @@ EOD;
                 $header .= "Connection: close\n";
                 $header .= "Date: ".date('r')."\n";
                 $header .= "Server: Moodle\n";
-                $header .= "Content-Type: text/html\n";
+                $header .= "Content-Type: text/html; charset=utf-8\n";
                 $header .= "Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT\n";
                 $header .= "Cache-Control: no-cache, must-revalidate\n";
                 $header .= "Expires: Wed, 4 Oct 1978 09:32:45 GMT\n";
@@ -461,7 +461,7 @@ EOD;
                 $header .= "Connection: close\n";
                 $header .= "Date: ".date('r')."\n";
                 $header .= "Server: Moodle\n";
-                $header .= "Content-Type: text/html\n";
+                $header .= "Content-Type: text/html; charset=utf-8\n";
                 $header .= "Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT\n";
                 $header .= "Cache-Control: no-cache, must-revalidate\n";
                 $header .= "Expires: Wed, 4 Oct 1978 09:32:45 GMT\n";
index 62b7bc5..a6f9616 100755 (executable)
@@ -37,7 +37,7 @@ if ($data = $DB->get_record('data', array('id'=>$d))) {
     header('Expires: ' . gmdate("D, d M Y H:i:s", time() + $lifetime) . ' GMT');
     header('Cache-control: max_age = '. $lifetime);
     header('Pragma: ');
-    header('Content-type: text/css');  // Correct MIME type
+    header('Content-type: text/css; charset=utf-8');  // Correct MIME type
 
     echo $data->csstemplate;
 }
\ No newline at end of file
index 455b7d0..38811ea 100644 (file)
@@ -38,7 +38,7 @@ if ($data = $DB->get_record('data', array('id'=>$d))) {
     header('Expires: ' . gmdate("D, d M Y H:i:s", time() + $lifetime) . ' GMT');
     header('Cache-control: max_age = '. $lifetime);
     header('Pragma: ');
-    header('Content-type: text/css');  // Correct MIME type
+    header('Content-type: text/css; charset=utf-8');  // Correct MIME type
 
     echo $data->jstemplate;
 }
\ No newline at end of file
index f460f78..0da0fc5 100755 (executable)
@@ -52,7 +52,7 @@ $saveas_path   = optional_param('savepath', '/', PARAM_PATH);   // save as file
 $search_text   = optional_param('s', '', PARAM_CLEANHTML);
 $linkexternal  = optional_param('linkexternal', '', PARAM_ALPHA);
 
-@header('Content-type: text/plain');
+@header('Content-type: text/plain; charset=utf-8');
 
 // if uploaded file is larger than post_max_size (php.ini) setting, $_POST content will lost
 if (empty($_POST) && !empty($action)) {
index 6e44df1..983731b 100644 (file)
@@ -95,7 +95,7 @@ function send_cached_js($jspath) {
     header('Expires: '. gmdate('D, d M Y H:i:s', time() + $lifetime) .' GMT');
     header('Pragma: ');
     header('Accept-Ranges: none');
-    header('Content-Type: application/javascript');
+    header('Content-Type: application/javascript; charset=utf-8');
     if (!min_enable_zlib_compression()) {
         header('Content-Length: '.filesize($jspath));
     }
@@ -110,7 +110,7 @@ function send_uncached_js($js) {
     header('Expires: '. gmdate('D, d M Y H:i:s', time() + 2) .' GMT');
     header('Pragma: ');
     header('Accept-Ranges: none');
-    header('Content-Type: application/javascript');
+    header('Content-Type: application/javascript; charset=utf-8');
     header('Content-Length: '.strlen($js));
 
     echo $js;
index 72694ca..2e99fe0 100644 (file)
@@ -132,7 +132,7 @@ EOF;
     header('Expires: '. gmdate('D, d M Y H:i:s', time() + $lifetime) .' GMT');
     header('Pragma: ');
     header('Accept-Ranges: none');
-    header('Content-Type: text/css');
+    header('Content-Type: text/css; charset=utf-8');
     header('Content-Length: '.strlen($css));
 
     echo $css;
@@ -147,7 +147,7 @@ function send_cached_css($csspath, $rev) {
     header('Expires: '. gmdate('D, d M Y H:i:s', time() + $lifetime) .' GMT');
     header('Pragma: ');
     header('Accept-Ranges: none');
-    header('Content-Type: text/css');
+    header('Content-Type: text/css; charset=utf-8');
     if (!min_enable_zlib_compression()) {
         header('Content-Length: '.filesize($csspath));
     }
index 712d1ef..25a50e6 100644 (file)
@@ -125,7 +125,7 @@ function send_uncached_css($css) {
     header('Expires: '. gmdate('D, d M Y H:i:s', time() + THEME_DESIGNER_CACHE_LIFETIME) .' GMT');
     header('Pragma: ');
     header('Accept-Ranges: none');
-    header('Content-Type: text/css');
+    header('Content-Type: text/css; charset=utf-8');
     //header('Content-Length: '.strlen($css));
 
     echo($css);
index 7259956..fcaf74e 100644 (file)
@@ -35,7 +35,7 @@ if (debugging('', DEBUG_DEVELOPER) && optional_param('debug', false, PARAM_BOOL)
     header('Content-type: text/plain; charset=UTF-8');
     $debugmode = true;
 } else {
-    header('Content-type: application/json');
+    header('Content-type: application/json; charset=utf-8');
     $debugmode = false;
 }
 
index 9c5d40b..8feba8f 100644 (file)
@@ -66,7 +66,7 @@ class webservice_rest_server extends webservice_base_server {
 
             $this->functionname = isset($_REQUEST['wsfunction']) ? $_REQUEST['wsfunction'] : null;
             unset($_REQUEST['wsfunction']);
-           
+
             $this->parameters = $_REQUEST;
         }
     }
@@ -108,7 +108,7 @@ class webservice_rest_server extends webservice_base_server {
      * @return void
      */
     protected function send_headers() {
-        header('Content-Type: application/xml');
+        header('Content-Type: application/xml; charset=utf-8');
         header('Content-Disposition: inline; filename="response.xml"');
         header('Cache-Control: private, must-revalidate, pre-check=0, post-check=0, max-age=0');
         header('Expires: '. gmdate('D, d M Y H:i:s', 0) .' GMT');
@@ -142,7 +142,7 @@ class webservice_rest_server extends webservice_base_server {
             if (!empty($returns)) {
                 foreach ($returns as $val) {
                     $mult .= self::xmlize_result($val, $desc->content);
-                } 
+                }
             }
             $mult .= '</MULTIPLE>'."\n";
             return $mult;
index 3d477eb..02e262b 100644 (file)
@@ -56,7 +56,7 @@ class webservice_soap_server extends webservice_zend_server {
         global $CFG;
 
         parent::init_zend_server();
-        
+
         if ($this->authmethod == WEBSERVICE_AUTHMETHOD_USERNAME) {
             $username = optional_param('wsusername', '', PARAM_RAW);
             $password = optional_param('wspassword', '', PARAM_RAW);
@@ -129,7 +129,7 @@ class webservice_soap_server extends webservice_zend_server {
 </SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>';
 
         $this->send_headers();
-        header('Content-Type: application/xml');
+        header('Content-Type: application/xml; charset=utf-8');
         header('Content-Disposition: inline; filename="response.xml"');
 
         echo $xml;