[cpp-sp] branch dev/vc22-dev updated (28a31a48 -> f8f0adaf)

Rod Widdowson rdw at steadingsoftware.com
Tue Jan 7 11:34:30 UTC 2025


This is an automated email from the git hooks/post-receive script.

rdw pushed a change to branch dev/vc22-dev
in repository cpp-sp.

 discard 28a31a48 REMOVABLE Supress compile of modules which whine about msxml
 discard b59a6cc3 Force 8-bit APrs to Win32
 discard bdf8abd4 REMOVABLE: Path For Xerces
 discard d58601a8 REMOVABLE: Path For XMLTooling
 discard 67de7a01 REMOVABLE:  Define SHIBDSP_LITE
 discard df173a16 track Changes
 discard e7c256ee Add Impl, IO, Logging, Remoting and Util source files to compile
 discard aed3bd56 Add the handler files to the compile
 discard de3110c1 Add All Header files to the project
 discard ee8f4efc Turn off warning 4275 everywhere
 discard eb11bb3f Windows Build initial ShibSp project
     add 18c5e86c Start migration of error handling code.
     add 1806b39e Try and fix a variable name clash.
     add 6853fdd9 Migrate components off of Application class.
     add 5222d23c Add missing define for strcasecmp to AbstractSPRequest
     add a01ba8c2 Change namespace exp:: to regexp::
     add 3d676393 Add default case to  BoostPropertySet::hasProperty()
     new b2510e55 Windows Build initial ShibSp project
     new 6b231470 Turn off warning 4275 everywhere
     new ee2011ad Add All Header files to the project
     new 42b0de22 Add the handler files to the compile
     new c71aa34b Add Impl, IO, Logging, Remoting and Util source files to compile
     new a322faa9 REMOVABLE default cases for comment out functions
     new c0a9661b REMOVABLE:  Define SHIBDSP_LITE
     new e310cadb REMOVABLE: Path For XMLTooling
     new af0051cf REMOVABLE: Path For Xerces
     new aa01f383 Force 8-bit APIs to Win32
     new 05e3c928 REMOVABLE wire logshib into build path for XMLServiceProvider
     new f8f0adaf REMOVABLE Suppress compile of modules which whine about msxml

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (28a31a48)
            \
             N -- N -- N   refs/heads/dev/vc22-dev (f8f0adaf)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 12 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Projects/vc22/shibsp.vcxproj                     |   6 +-
 apache/mod_shib_24.cpp                           |  15 +-
 fastcgi/shibauthorizer.cpp                       |   8 +-
 fastcgi/shibresponder.cpp                        |  10 +-
 iis7_shib/IIS7Request.cpp                        |  12 +-
 iis7_shib/ShibHttpModule.cpp                     |   2 +-
 shibsp/AbstractSPRequest.cpp                     | 345 +++++++++++++++++------
 shibsp/AbstractSPRequest.h                       |  16 +-
 shibsp/Agent.cpp                                 |   8 +-
 shibsp/Agent.h                                   |  11 +-
 shibsp/Application.h                             |   5 +-
 shibsp/Makefile.am                               |   4 +-
 shibsp/SPConfig.cpp                              |  14 -
 shibsp/SPRequest.h                               |  50 +++-
 shibsp/ServiceProvider.cpp                       | 187 ++++--------
 shibsp/ServiceProvider.h                         |  15 +-
 shibsp/SessionCache.h                            |  65 ++---
 shibsp/attribute/Attribute.cpp                   |   8 +-
 shibsp/exceptions.h                              | 143 ++++++++--
 shibsp/handler/AbstractHandler.h                 |  33 +--
 shibsp/handler/AssertionConsumerService.h        |  41 +--
 shibsp/handler/Handler.h                         |  48 +---
 shibsp/handler/LogoutHandler.h                   |  27 +-
 shibsp/handler/impl/AbstractHandler.cpp          | 175 +++++-------
 shibsp/handler/impl/AdminLogoutInitiator.cpp     |  46 ++-
 shibsp/handler/impl/AssertionConsumerService.cpp |  63 ++---
 shibsp/handler/impl/AssertionLookup.cpp          |  11 +-
 shibsp/handler/impl/AttributeCheckerHandler.cpp  |  28 +-
 shibsp/handler/impl/DiscoveryFeed.cpp            |  37 +--
 shibsp/handler/impl/LocalLogoutInitiator.cpp     |  36 ++-
 shibsp/handler/impl/LogoutHandler.cpp            |  78 +----
 shibsp/handler/impl/MetadataGenerator.cpp        |  26 +-
 shibsp/handler/impl/RemotedHandler.cpp           |   3 +-
 shibsp/handler/impl/SAML2Logout.cpp              |  10 +-
 shibsp/handler/impl/SAML2LogoutInitiator.cpp     |  21 +-
 shibsp/handler/impl/SAML2SessionInitiator.cpp    |  29 +-
 shibsp/handler/impl/SAMLDSSessionInitiator.cpp   |  31 +-
 shibsp/handler/impl/SecuredHandler.cpp           |   3 +-
 shibsp/handler/impl/SessionHandler.cpp           |   1 -
 shibsp/handler/impl/SessionInitiator.cpp         |   8 +-
 shibsp/handler/impl/StatusHandler.cpp            |  29 +-
 shibsp/impl/AgentConfig.cpp                      |   1 -
 shibsp/impl/StorageServiceSessionCache.cpp       | 251 +++++------------
 shibsp/impl/StorageServiceSessionCache.h         |  53 ++--
 shibsp/impl/StoredSession.cpp                    | 213 +-------------
 shibsp/impl/StoredSession.h                      |   7 +-
 shibsp/impl/XMLAccessControl.cpp                 |  22 +-
 shibsp/impl/XMLApplication.cpp                   |   9 +-
 shibsp/impl/XMLRequestMapper.cpp                 |  46 +--
 shibsp/impl/XMLServiceProvider.cpp               |   2 +-
 shibsp/io/HTTPResponse.h                         |  18 +-
 shibsp/io/impl/HTTPResponse.cpp                  |   6 +-
 shibsp/remoting/ddf.h                            |  24 +-
 shibsp/remoting/impl/ddf.cpp                     |  28 +-
 shibsp/util/BoostPropertySet.cpp                 |   1 +
 tests/impl/XMLAccessControlTests.cpp             |   2 +-
 tests/impl/XMLRequestMapperTests.cpp             |   2 +-
 57 files changed, 970 insertions(+), 1423 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list