mirror of
https://github.com/jezhiggins/arabica
synced 2024-12-30 22:23:40 +01:00
b559feb7be
fixed internal qname resolution - 2.4 says unprefixed names are not in the default namespace fixed xsl:element - unprefixed names, when no namespace uri is supplied are in teh default namespace
74 lines
2.2 KiB
C++
74 lines
2.2 KiB
C++
#ifndef ARABICA_XSLT_CALL_TEMPLATE_HANDLER_HPP
|
|
#define ARABICA_XSLT_CALL_TEMPLATE_HANDLER_HPP
|
|
|
|
#include "../xslt_call_template.hpp"
|
|
#include "xslt_with_param_handler.hpp"
|
|
|
|
namespace Arabica
|
|
{
|
|
namespace XSLT
|
|
{
|
|
|
|
class CallTemplateHandler : public SAX::DefaultHandler<std::string>
|
|
{
|
|
public:
|
|
CallTemplateHandler(CompilationContext& context) :
|
|
context_(context),
|
|
callTemplate_(0)
|
|
{
|
|
} // CallTemplateHandler
|
|
|
|
virtual void startElement(const std::string& namespaceURI,
|
|
const std::string& localName,
|
|
const std::string& qName,
|
|
const SAX::Attributes<std::string>& atts)
|
|
{
|
|
if(callTemplate_ == 0)
|
|
{
|
|
static const ValueRule rules[] = { { "name", true, 0 },
|
|
{ 0, false, 0} };
|
|
|
|
std::map<std::string, std::string> attrs = gatherAttributes(qName, atts, rules);
|
|
|
|
std::pair<std::string, std::string> name = context_.processInternalQName(attrs["name"]);
|
|
|
|
callTemplate_ = new CallTemplate(name);
|
|
return;
|
|
} // if(callTemplate_ == 0)
|
|
|
|
if((namespaceURI == StylesheetConstant::NamespaceURI()) && (localName == "with-param"))
|
|
{
|
|
context_.push(0,
|
|
new WithParamHandler(context_, *callTemplate_),
|
|
namespaceURI,
|
|
qName,
|
|
localName,
|
|
atts);
|
|
return;
|
|
} // if(localName == "with-param")
|
|
|
|
throw SAX::SAXException("xsl:apply-templates can only contain xsl:sort and xsl:with-param elements.");
|
|
} // startElement
|
|
|
|
virtual void endElement(const std::string& namespaceURI,
|
|
const std::string& localName,
|
|
const std::string& qName)
|
|
{
|
|
context_.parentContainer().add_item(callTemplate_);
|
|
context_.pop();
|
|
} // endElement
|
|
|
|
virtual void characters(const std::string& ch)
|
|
{
|
|
} // characters
|
|
|
|
private:
|
|
CompilationContext& context_;
|
|
CallTemplate* callTemplate_;
|
|
}; // class CallTemplateHandler
|
|
|
|
} // namespace XSLT
|
|
} // namespace Arabica
|
|
|
|
#endif // ARABICA_XSLT_CALL_TEMPLATE_HANDLER_HPP
|
|
|