[cpp-xmltooling COMMIT] in /branches/REL_1/xmltooling: AbstractXMLObject.cpp XMLObjectBuilder.cpp XMLToolingConfig.cp...
noreply at shibboleth.net
noreply at shibboleth.net
Thu Jan 22 19:33:51 EST 2015
Author: scantor
Date: Thu Jan 22 19:33:51 2015
New Revision: 1044
URL: http://svn.shibboleth.net/view/cpp-xmltooling?rev=1044&view=rev
Log:
SSPCPP-616 - clean up concatenated string literals
Modified:
branches/REL_1/xmltooling/AbstractXMLObject.cpp
branches/REL_1/xmltooling/XMLObjectBuilder.cpp
branches/REL_1/xmltooling/XMLToolingConfig.cpp
branches/REL_1/xmltooling/encryption/impl/Decrypter.cpp
branches/REL_1/xmltooling/impl/MemoryStorageService.cpp
branches/REL_1/xmltooling/impl/UnknownElement.cpp
branches/REL_1/xmltooling/security/impl/AbstractPKIXTrustEngine.cpp
branches/REL_1/xmltooling/security/impl/ChainingCredentialResolver.cpp
branches/REL_1/xmltooling/security/impl/ChainingTrustEngine.cpp
branches/REL_1/xmltooling/security/impl/CredentialCriteria.cpp
branches/REL_1/xmltooling/security/impl/ExplicitKeyTrustEngine.cpp
branches/REL_1/xmltooling/security/impl/FilesystemCredentialResolver.cpp
branches/REL_1/xmltooling/security/impl/InlineKeyResolver.cpp
branches/REL_1/xmltooling/security/impl/PKIXPathValidator.cpp
branches/REL_1/xmltooling/security/impl/SecurityHelper.cpp
branches/REL_1/xmltooling/security/impl/StaticPKIXTrustEngine.cpp
branches/REL_1/xmltooling/signature/impl/XMLSecSignatureImpl.cpp
branches/REL_1/xmltooling/soap/impl/CURLSOAPTransport.cpp
branches/REL_1/xmltooling/soap/impl/SOAPClient.cpp
branches/REL_1/xmltooling/util/CurlURLInputStream.cpp
branches/REL_1/xmltooling/util/ParserPool.cpp
branches/REL_1/xmltooling/util/ReplayCache.cpp
branches/REL_1/xmltooling/util/Win32Threads.cpp
Modified: branches/REL_1/xmltooling/AbstractXMLObject.cpp
URL: http://svn.shibboleth.net/view/cpp-xmltooling/branches/REL_1/xmltooling/AbstractXMLObject.cpp?rev=1044&r1=1043&r2=1044&view=diff
==============================================================================
--- branches/REL_1/xmltooling/AbstractXMLObject.cpp (original)
+++ branches/REL_1/xmltooling/AbstractXMLObject.cpp Thu Jan 22 19:33:51 2015
@@ -87,7 +87,7 @@
}
AbstractXMLObject::AbstractXMLObject(const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix, const QName* schemaType)
- : m_log(logging::Category::getInstance(XMLTOOLING_LOGCAT".XMLObject")),
+ : m_log(logging::Category::getInstance(XMLTOOLING_LOGCAT ".XMLObject")),
m_schemaLocation(nullptr), m_noNamespaceSchemaLocation(nullptr), m_nil(xmlconstants::XML_BOOL_NULL),
m_parent(nullptr), m_elementQname(nsURI, localName, prefix)
{
Modified: branches/REL_1/xmltooling/XMLObjectBuilder.cpp
URL: http://svn.shibboleth.net/view/cpp-xmltooling/branches/REL_1/xmltooling/XMLObjectBuilder.cpp?rev=1044&r1=1043&r2=1044&view=diff
==============================================================================
--- branches/REL_1/xmltooling/XMLObjectBuilder.cpp (original)
+++ branches/REL_1/xmltooling/XMLObjectBuilder.cpp Thu Jan 22 19:33:51 2015
@@ -85,7 +85,7 @@
#ifdef _DEBUG
xmltooling::NDC ndc("getBuilder");
#endif
- Category& log=Category::getInstance(XMLTOOLING_LOGCAT".XMLObject.Builder");
+ Category& log=Category::getInstance(XMLTOOLING_LOGCAT ".XMLObject.Builder");
auto_ptr<QName> schemaType(XMLHelper::getXSIType(domElement));
const XMLObjectBuilder* xmlObjectBuilder = schemaType.get() ? getBuilder(*(schemaType.get())) : nullptr;
Modified: branches/REL_1/xmltooling/XMLToolingConfig.cpp
URL: http://svn.shibboleth.net/view/cpp-xmltooling/branches/REL_1/xmltooling/XMLToolingConfig.cpp?rev=1044&r1=1043&r2=1044&view=diff
==============================================================================
--- branches/REL_1/xmltooling/XMLToolingConfig.cpp (original)
+++ branches/REL_1/xmltooling/XMLToolingConfig.cpp Thu Jan 22 19:33:51 2015
@@ -132,7 +132,7 @@
class TXFMOutputLog : public TXFMBase {
TXFMOutputLog();
public:
- TXFMOutputLog(DOMDocument* doc) : TXFMBase(doc), m_log(Category::getInstance(XMLTOOLING_LOGCAT".Signature.Debugger")) {
+ TXFMOutputLog(DOMDocument* doc) : TXFMBase(doc), m_log(Category::getInstance(XMLTOOLING_LOGCAT ".Signature.Debugger")) {
input = nullptr;
}
~TXFMOutputLog() {
@@ -178,7 +178,7 @@
};
TXFMBase* TXFMOutputLogFactory(DOMDocument* doc) {
- if (Category::getInstance(XMLTOOLING_LOGCAT".Signature.Debugger").isDebugEnabled())
+ if (Category::getInstance(XMLTOOLING_LOGCAT ".Signature.Debugger").isDebugEnabled())
return new TXFMOutputLog(doc);
return nullptr;
}
@@ -351,12 +351,12 @@
}
#ifndef XMLTOOLING_NO_XMLSEC
- Category::getInstance(XMLTOOLING_LOGCAT".Signature.Debugger").setAdditivity(false);
+ Category::getInstance(XMLTOOLING_LOGCAT ".Signature.Debugger").setAdditivity(false);
#endif
}
catch (const ConfigureFailure& e) {
string msg = string("error in file permissions or logging configuration: ") + e.what();
- Category::getInstance(XMLTOOLING_LOGCAT".Logging").crit(msg);
+ Category::getInstance(XMLTOOLING_LOGCAT ".Logging").crit(msg);
#ifdef WIN32
[... 833 lines stripped ...]
More information about the commits
mailing list