Fixed report validation issues.

`X-UA-Compatible` is reported as invalid, but it's necessary for the
built-in viewer to work.
This commit is contained in:
WrinklyNinja
2014-02-01 17:13:40 +00:00
parent 1c9b4691a5
commit a71f002bfd
2 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -376,7 +376,7 @@ To translate the BOSS application:
<li>Ysne58: For testing and keeping the thread links on BOSS's Nexus site pages up to date.
<li>For testing and feedback prior to releases: The Beta Testing &amp; Analysis Guild at <a href="http://tesalliance.org/forums/">TES Alliance</a>, AndalayBay, dAb, dj2005, Dubiousness, hyno111, Invader, matter2003, NightStar, olminator, saebel, Telyn, wiz0floyd, wormheart, Zanderat and zone22.
</ul>
<p>BOSS is written in C++ and makes use of the <a href="http://www.davekoelle.com/alphanum.html">Alphanum</a>, <a href="http://www.boost.org/">Boost</a>, <a href="http://github.com/WrinklyNinja/libespm">libespm</a>, <a href="http://github.com/libgit2/libgit2">libgit2</a>, <a href="http://github.com/WrinklyNinja/libloadorder">libloadorder</a>, <a href="http://code.google.com/p/pugixml/">PugiXML</a>, <a href="http://www.wxwidgets.org/">wxWidgets</a> and <a href="http://code.google.com/p/yaml-cpp/">yaml-cpp</a> libraries. BOSS's reports are written in XHTML/CSS/Javascript and make use of <a href="http://github.com/inexorabletash/polyfill">Polyfill.js</a> to provide Internet Explorer 8 compatibility. Copyright license information for all these may be found <a href="licenses/Licenses.txt">here</a>.
<p>BOSS is written in C++ and makes use of the <a href="http://www.davekoelle.com/alphanum.html">Alphanum</a>, <a href="http://www.boost.org/">Boost</a>, <a href="http://github.com/WrinklyNinja/libespm">libespm</a>, <a href="http://github.com/libgit2/libgit2">libgit2</a>, <a href="http://github.com/WrinklyNinja/libloadorder">libloadorder</a>, <a href="http://code.google.com/p/pugixml/">PugiXML</a>, <a href="http://www.wxwidgets.org/">wxWidgets</a> and <a href="http://code.google.com/p/yaml-cpp/">yaml-cpp</a> libraries. BOSS's reports are written in HTML5/CSS3/Javascript and make use of <a href="http://github.com/inexorabletash/polyfill">Polyfill.js</a> to provide Internet Explorer 8 compatibility. Copyright license information for all these may be found <a href="licenses/Licenses.txt">here</a>.
<h2 id="project">Project Members</h2>
+8 -8
View File
@@ -118,7 +118,7 @@ namespace boss {
node = head.append_child();
node.set_name("meta");
node.append_attribute("http-equiv").set_value("X-UA-Compatible");
node.append_attribute("content").set_value("IE=9");
node.append_attribute("content").set_value("IE=edge");
node = head.append_child();
node.set_name("meta");
@@ -453,7 +453,7 @@ namespace boss {
input.append_attribute("type").set_value("checkbox");
input.append_attribute("id").set_value("hideVersionNumbers");
input.append_attribute("data-class").set_value("version");
input.text().set(boost::locale::translate("Hide Version Numbers").str().c_str());
label.text().set(boost::locale::translate("Hide Version Numbers").str().c_str());
label = filters.append_child();
label.set_name("label");
@@ -462,7 +462,7 @@ namespace boss {
input.append_attribute("type").set_value("checkbox");
input.append_attribute("id").set_value("hideCRCs");
input.append_attribute("data-class").set_value("crc");
input.text().set(boost::locale::translate("Hide CRCs").str().c_str());
label.text().set(boost::locale::translate("Hide CRCs").str().c_str());
label = filters.append_child();
label.set_name("label");
@@ -471,7 +471,7 @@ namespace boss {
input.append_attribute("type").set_value("checkbox");
input.append_attribute("id").set_value("hideBashTags");
input.append_attribute("data-class").set_value("tag");
input.text().set(boost::locale::translate("Hide Bash Tag Suggestions").str().c_str());
label.text().set(boost::locale::translate("Hide Bash Tag Suggestions").str().c_str());
label = filters.append_child();
label.set_name("label");
@@ -479,7 +479,7 @@ namespace boss {
input.set_name("input");
input.append_attribute("type").set_value("checkbox");
input.append_attribute("id").set_value("hideNotes");
input.text().set(boost::locale::translate("Hide Notes").str().c_str());
label.text().set(boost::locale::translate("Hide Notes").str().c_str());
label = filters.append_child();
label.set_name("label");
@@ -487,7 +487,7 @@ namespace boss {
input.set_name("input");
input.append_attribute("type").set_value("checkbox");
input.append_attribute("id").set_value("hideDoNotCleanMessages");
input.text().set(boost::locale::translate("Hide 'Do Not Clean' Messages").str().c_str());
label.text().set(boost::locale::translate("Hide 'Do Not Clean' Messages").str().c_str());
label = filters.append_child();
label.set_name("label");
@@ -495,7 +495,7 @@ namespace boss {
input.set_name("input");
input.append_attribute("type").set_value("checkbox");
input.append_attribute("id").set_value("hideAllPluginMessages");
input.text().set(boost::locale::translate("Hide All Plugin Messages").str().c_str());
label.text().set(boost::locale::translate("Hide All Plugin Messages").str().c_str());
label = filters.append_child();
label.set_name("label");
@@ -503,7 +503,7 @@ namespace boss {
input.set_name("input");
input.append_attribute("type").set_value("checkbox");
input.append_attribute("id").set_value("hideMessagelessPlugins");
input.text().set(boost::locale::translate("Hide Messageless Plugins").str().c_str());
label.text().set(boost::locale::translate("Hide Messageless Plugins").str().c_str());
pugi::xml_node span;