diff options
author | Anika Henke <anika@selfthinker.org> | 2012-07-14 12:10:08 +0100 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2012-07-14 12:10:08 +0100 |
commit | c8839c220c49633ea45ce5d0e4be1f411f66ad6c (patch) | |
tree | 58c6fba882a0d2d550aa04872ffd6036d1819519 | |
parent | 4a14c3a4f530437180e3523cc34ab4464cea7dfa (diff) | |
download | rpg-c8839c220c49633ea45ce5d0e4be1f411f66ad6c.tar.gz rpg-c8839c220c49633ea45ce5d0e4be1f411f66ad6c.tar.bz2 |
changed all doctypes to html5 doctype
-rw-r--r-- | inc/actions.php | 8 | ||||
-rw-r--r-- | inc/init.php | 3 | ||||
-rw-r--r-- | install.php | 8 | ||||
-rw-r--r-- | lib/exe/index.html | 5 | ||||
-rw-r--r-- | lib/images/fileicons/index.php | 6 | ||||
-rw-r--r-- | lib/images/index.html | 5 | ||||
-rw-r--r-- | lib/index.html | 5 | ||||
-rw-r--r-- | lib/plugins/index.html | 5 | ||||
-rw-r--r-- | lib/scripts/index.html | 5 | ||||
-rw-r--r-- | lib/styles/index.html | 5 | ||||
-rw-r--r-- | lib/tpl/index.php | 5 |
11 files changed, 23 insertions, 37 deletions
diff --git a/inc/actions.php b/inc/actions.php index d4bd5b20e..fc15713d8 100644 --- a/inc/actions.php +++ b/inc/actions.php @@ -568,12 +568,10 @@ function act_export($act){ $output = rawWiki($ID,$REV); break; case 'xhtml': - $pre .= '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"' . DOKU_LF; - $pre .= ' "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">' . DOKU_LF; - $pre .= '<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="'.$conf['lang'].'"' . DOKU_LF; - $pre .= ' lang="'.$conf['lang'].'" dir="'.$lang['direction'].'">' . DOKU_LF; + $pre .= '<!DOCTYPE html>' . DOKU_LF; + $pre .= '<html lang="'.$conf['lang'].'" dir="'.$lang['direction'].'">' . DOKU_LF; $pre .= '<head>' . DOKU_LF; - $pre .= ' <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />' . DOKU_LF; + $pre .= ' <meta charset="utf-8" />' . DOKU_LF; $pre .= ' <title>'.$ID.'</title>' . DOKU_LF; // get metaheaders diff --git a/inc/init.php b/inc/init.php index a28050736..00ab2afe9 100644 --- a/inc/init.php +++ b/inc/init.php @@ -497,8 +497,7 @@ function is_ssl(){ */ function nice_die($msg){ echo<<<EOT -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" - "http://www.w3.org/TR/html4/loose.dtd"> +<!DOCTYPE html> <html> <head><title>DokuWiki Setup Error</title></head> <body style="font-family: Arial, sans-serif"> diff --git a/install.php b/install.php index 0a2bf0a46..6669de49d 100644 --- a/install.php +++ b/install.php @@ -61,12 +61,10 @@ $dokuwiki_hash = array( // begin output header('Content-Type: text/html; charset=utf-8'); ?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $LC?>" - lang="<?php echo $LC?>" dir="<?php echo $lang['direction']?>"> +<!DOCTYPE html> +<html lang="<?php echo $LC?>" dir="<?php echo $lang['direction']?>"> <head> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <meta charset="utf-8" /> <title><?php echo $lang['i_installer']?></title> <style type="text/css"> body { width: 90%; margin: 0 auto; font: 84% Verdana, Helvetica, Arial, sans-serif; } diff --git a/lib/exe/index.html b/lib/exe/index.html index d614603ac..977f90e10 100644 --- a/lib/exe/index.html +++ b/lib/exe/index.html @@ -1,6 +1,5 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> +<!DOCTYPE html> +<html> <head> <meta http-equiv="refresh" content="0; URL=../../" /> <meta name="robots" content="noindex" /> diff --git a/lib/images/fileicons/index.php b/lib/images/fileicons/index.php index c1e64fe2a..f90e7e6f0 100644 --- a/lib/images/fileicons/index.php +++ b/lib/images/fileicons/index.php @@ -1,7 +1,5 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" - lang="en" dir="ltr"> +<!DOCTYPE html> +<html lang="en" dir="ltr"> <head> <title>filetype icons</title> diff --git a/lib/images/index.html b/lib/images/index.html index d614603ac..977f90e10 100644 --- a/lib/images/index.html +++ b/lib/images/index.html @@ -1,6 +1,5 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> +<!DOCTYPE html> +<html> <head> <meta http-equiv="refresh" content="0; URL=../../" /> <meta name="robots" content="noindex" /> diff --git a/lib/index.html b/lib/index.html index 8cb33512e..885c954a4 100644 --- a/lib/index.html +++ b/lib/index.html @@ -1,6 +1,5 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> +<!DOCTYPE html> +<html> <head> <meta http-equiv="refresh" content="0; URL=../" /> <meta name="robots" content="noindex" /> diff --git a/lib/plugins/index.html b/lib/plugins/index.html index d614603ac..977f90e10 100644 --- a/lib/plugins/index.html +++ b/lib/plugins/index.html @@ -1,6 +1,5 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> +<!DOCTYPE html> +<html> <head> <meta http-equiv="refresh" content="0; URL=../../" /> <meta name="robots" content="noindex" /> diff --git a/lib/scripts/index.html b/lib/scripts/index.html index d614603ac..977f90e10 100644 --- a/lib/scripts/index.html +++ b/lib/scripts/index.html @@ -1,6 +1,5 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> +<!DOCTYPE html> +<html> <head> <meta http-equiv="refresh" content="0; URL=../../" /> <meta name="robots" content="noindex" /> diff --git a/lib/styles/index.html b/lib/styles/index.html index d614603ac..977f90e10 100644 --- a/lib/styles/index.html +++ b/lib/styles/index.html @@ -1,6 +1,5 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> +<!DOCTYPE html> +<html> <head> <meta http-equiv="refresh" content="0; URL=../../" /> <meta name="robots" content="noindex" /> diff --git a/lib/tpl/index.php b/lib/tpl/index.php index 4570f70f5..357cc1f0d 100644 --- a/lib/tpl/index.php +++ b/lib/tpl/index.php @@ -12,9 +12,8 @@ if(!defined('DOKU_INC')) define('DOKU_INC',dirname(__FILE__).'/../../'); if(!defined('NOSESSION')) define('NOSESSION',1); require_once(DOKU_INC.'inc/init.php'); ?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> +<!DOCTYPE html> +<html lang="en" dir="ltr"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Template Replacements</title> |