[PATCH] D14830: [html] Advertize the charset actually being used. NFC.
Arnaud A. de Grandmaison via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 25 02:02:50 PST 2016
This revision was automatically updated to reflect the committed changes.
Closed by commit rL258674: [html] Advertize the charset actually being used. NFC. (authored by aadg).
Changed prior to commit:
http://reviews.llvm.org/D14830?vs=40673&id=45846#toc
Repository:
rL LLVM
http://reviews.llvm.org/D14830
Files:
lnt/trunk/lnt/server/ui/templates/layout.html
Index: lnt/trunk/lnt/server/ui/templates/layout.html
===================================================================
--- lnt/trunk/lnt/server/ui/templates/layout.html
+++ lnt/trunk/lnt/server/ui/templates/layout.html
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
+ <meta charset="UTF-8"/>
<link href="{{ url_for('.static', filename='bootstrap/css/bootstrap.min.css')
}}" rel="stylesheet" media="screen"/>
<link href="{{ url_for('.static', filename='bootstrap/css/bootstrap-responsive.min.css')
@@ -23,12 +24,12 @@
<link rel="stylesheet" type="text/css" href="//cdn.datatables.net/1.10.8/css/jquery.dataTables.css" />
<!-- DataTables -->
- <script type="text/javascript" charset="utf8" src="//cdn.datatables.net/1.10.8/js/jquery.dataTables.js">
+ <script type="text/javascript" charset="UTF-8" src="//cdn.datatables.net/1.10.8/js/jquery.dataTables.js">
</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
- <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<style type="text/css">
/* Sticky footer styles ------------------------------------------------- */
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D14830.45846.patch
Type: text/x-patch
Size: 1274 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160125/b3adda26/attachment-0001.bin>
More information about the llvm-commits
mailing list