diff options
author | albert-github <albert.tests@gmail.com> | 2018-11-26 11:36:33 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2018-11-26 11:36:33 (GMT) |
commit | b851ef73be5ea01726bca0b6d686508e54a4191d (patch) | |
tree | 268a5bf5e11a1dc52edf0a058463bf995013b4df /templates/html/htmlbase.tpl | |
parent | 01a8fb038a4a012a5d1f8ab60a4a2777c8aee021 (diff) | |
download | Doxygen-b851ef73be5ea01726bca0b6d686508e54a4191d.zip Doxygen-b851ef73be5ea01726bca0b6d686508e54a4191d.tar.gz Doxygen-b851ef73be5ea01726bca0b6d686508e54a4191d.tar.bz2 |
Warning running xmllint for xhtml
When running xmllint in the error output the following message appears:
`I/O error : Attempt to load network entity http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd`
Going to the website we see that there an automatic redirect was done from `http` to `https`.
Diffstat (limited to 'templates/html/htmlbase.tpl')
-rw-r--r-- | templates/html/htmlbase.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/html/htmlbase.tpl b/templates/html/htmlbase.tpl index e271d3a..47939fd 100644 --- a/templates/html/htmlbase.tpl +++ b/templates/html/htmlbase.tpl @@ -1,5 +1,5 @@ {% block header %} -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> |