mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-06-20 09:07:14 +02:00
Update POCO to 1.11.0
This commit is contained in:
2
vendor/POCO/PageCompiler/src/CodeWriter.cpp
vendored
2
vendor/POCO/PageCompiler/src/CodeWriter.cpp
vendored
@ -337,7 +337,7 @@ void CodeWriter::writeResponse(std::ostream& ostr)
|
||||
}
|
||||
if (!contentSecurityPolicy.empty())
|
||||
{
|
||||
ostr << "\tresponse.set(\"Content-Secure-Policy\"s, \"" << contentSecurityPolicy << "\"s);\n";
|
||||
ostr << "\tresponse.set(\"Content-Security-Policy\"s, \"" << contentSecurityPolicy << "\"s);\n";
|
||||
}
|
||||
if (compressed)
|
||||
{
|
||||
|
@ -216,7 +216,7 @@ protected:
|
||||
helpFormatter.setHeader(
|
||||
"\n"
|
||||
"The POCO C++ Server Page Compiler.\n"
|
||||
"Copyright (c) 2008-2020 by Applied Informatics Software Engineering GmbH.\n"
|
||||
"Copyright (c) 2008-2021 by Applied Informatics Software Engineering GmbH.\n"
|
||||
"All rights reserved.\n\n"
|
||||
"This program compiles web pages containing embedded C++ code "
|
||||
"into a C++ class that can be used with the HTTP server "
|
||||
@ -225,7 +225,7 @@ protected:
|
||||
);
|
||||
helpFormatter.setFooter(
|
||||
"For more information, please see the POCO C++ Libraries "
|
||||
"documentation at <http://pocoproject.org/docs/>."
|
||||
"documentation at <https://pocoproject.org/docs/>."
|
||||
);
|
||||
helpFormatter.setIndent(8);
|
||||
helpFormatter.format(std::cout);
|
||||
|
Reference in New Issue
Block a user