diff Lib/IMPL/DOM/Schema.pm @ 266:89179bb8c388

*corrected TTView to handle plain (and undefined) values *added URL generating methods to Application::Action *fixed the compare validatior for schemas
author cin
date Mon, 14 Jan 2013 03:10:06 +0400
parents 0f59b2de72af
children 4ddb27ff4a0b
line wrap: on
line diff
--- a/Lib/IMPL/DOM/Schema.pm	Thu Jan 10 03:25:02 2013 +0400
+++ b/Lib/IMPL/DOM/Schema.pm	Mon Jan 14 03:10:06 2013 +0400
@@ -128,7 +128,7 @@
     if ( my ($schemaNode) = $this->selectNodes(sub { $_->isa(Node) and $_[0]->name eq $node->nodeName })) {
         $schemaNode->Validate($node);
     } else {
-        return new IMPL::DOM::Schema::ValidationError(Node => $node, Message=> "A specified document (%Node.nodeName%) doesn't match the schema");
+        return new IMPL::DOM::Schema::ValidationError(node => $node, message=> "A specified document (%Node.nodeName%) doesn't match the schema");
     }
 }