From: Scott Cantor Date: Tue, 14 Sep 2010 02:44:51 +0000 (+0000) Subject: Doc cleanups. X-Git-Tag: 2.4RC1~48 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fcpp-sp.git;a=commitdiff_plain;h=e4717bcf2f43d754d94c61b4d883e977951fc7b5 Doc cleanups. --- diff --git a/shibsp/attribute/Attribute.h b/shibsp/attribute/Attribute.h index c734909..6b2f012 100644 --- a/shibsp/attribute/Attribute.h +++ b/shibsp/attribute/Attribute.h @@ -112,7 +112,7 @@ namespace shibsp { /** * Sets whether the attribute should be exported for CGI use. * - * @param export true iff the attribute should NOT be exported + * @param internal true iff the attribute should NOT be exported */ void setInternal(bool internal); diff --git a/shibsp/attribute/filtering/BasicFilteringContext.h b/shibsp/attribute/filtering/BasicFilteringContext.h index 636e8fa..1136f34 100644 --- a/shibsp/attribute/filtering/BasicFilteringContext.h +++ b/shibsp/attribute/filtering/BasicFilteringContext.h @@ -29,6 +29,9 @@ namespace shibsp { class SHIBSP_API Attribute; + /** + * A trivial FilteringContext implementation. + */ class SHIBSP_API BasicFilteringContext : public FilteringContext { public: diff --git a/shibsp/handler/AbstractHandler.h b/shibsp/handler/AbstractHandler.h index c9b0e59..740534e 100644 --- a/shibsp/handler/AbstractHandler.h +++ b/shibsp/handler/AbstractHandler.h @@ -171,13 +171,12 @@ namespace shibsp { * * @param application the associated Application * @param response outgoing HTTP response - * @param request incoming HTTP request * @param url action url for the form * @param postData list of parameters to load into the form, as DDF string members */ virtual long sendPostResponse( const Application& application, - xmltooling::HTTPResponse& httpResponse, + xmltooling::HTTPResponse& response, const char* url, DDF& postData ) const;