Hi Vishal!
Do you still have login access to people.apache.org? You are defintely
in the authorisation file for svn, so if you log in to people.apache.org
you should be able to change your subversion password as per:
https://svn.apache.org/change-password
If that doesn't work, let me know and I will reset.
Cheers,
Berin
Vishal Mahajan wrote:
I don't seem to have the commit access in svn, and it has been long
period of inactivity on the list for me. Anyways, attached is a small
compile error fix in the project main branch.
Vishal
------------------------------------------------------------------------
Index: org/apache/xml/security/transforms/implementations/TransformXPath.java
===================================================================
--- org/apache/xml/security/transforms/implementations/TransformXPath.java
(revision 451991)
+++ org/apache/xml/security/transforms/implementations/TransformXPath.java
(working copy)
@@ -120,7 +120,7 @@
private boolean needsCircunvent(String str) {
//return true;
//return false;
- return str.contains("namespace") || str.contains("name()");
+ return (str.indexOf("namespace") != -1) || (str.indexOf("name()") !=
-1);
}
static class XPathNodeFilter implements NodeFilter {