// extension functions should go into a namespace, but which one?
// for now, keep them in default namespace to not break any code
registerFunction( null, // namespace URI
"evaluate",
new EvaluateFunction() );
registerFunction( null, // namespace URI
"lower-case",
new LowerFunction() );