You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2013/02/10 23:55:31 UTC

svn commit: r1444628 [2/2] - in /manifoldcf/trunk: ./ connectors/rss/ connectors/rss/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/rss/ connectors/webcrawler/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/webcrawler...

Modified: manifoldcf/trunk/connectors/wiki/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/wiki/WikiConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/wiki/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/wiki/WikiConnector.java?rev=1444628&r1=1444627&r2=1444628&view=diff
==============================================================================
--- manifoldcf/trunk/connectors/wiki/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/wiki/WikiConnector.java (original)
+++ manifoldcf/trunk/connectors/wiki/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/wiki/WikiConnector.java Sun Feb 10 22:55:30 2013
@@ -389,7 +389,7 @@ public class WikiConnector extends org.a
           //    sessionid="17ab96bd8ffbe8ca58a78657a918558e"
           //  />
           //</api>
-          XMLStream x = new XMLStream();
+          XMLStream x = new XMLStream(false);
           WikiLoginAPIContext c = new WikiLoginAPIContext(x,result);
           x.setContext(c);
           try {
@@ -541,7 +541,7 @@ public class WikiConnector extends org.a
           //    sessionid="17ab96bd8ffbe8ca58a78657a918558e"
           //  />
           //</api>
-          XMLStream x = new XMLStream();
+          XMLStream x = new XMLStream(false);
           WikiTokenLoginAPIContext c = new WikiTokenLoginAPIContext(x,result);
           x.setContext(c);
           try {
@@ -1890,7 +1890,7 @@ public class WikiConnector extends org.a
     throws ManifoldCFException, ServiceInterruption
   {
     // Parse the document.  This will cause various things to occur, within the instantiated XMLContext class.
-    XMLStream x = new XMLStream();
+    XMLStream x = new XMLStream(false);
     WikiCheckAPIContext c = new WikiCheckAPIContext(x);
     x.setContext(c);
     try
@@ -2268,7 +2268,7 @@ public class WikiConnector extends org.a
     throws ManifoldCFException, ServiceInterruption
   {
     // Parse the document.  This will cause various things to occur, within the instantiated XMLContext class.
-    XMLStream x = new XMLStream();
+    XMLStream x = new XMLStream(false);
     WikiListPagesAPIContext c = new WikiListPagesAPIContext(x,buffer,startPageTitle);
     x.setContext(c);
     try
@@ -2635,7 +2635,7 @@ public class WikiConnector extends org.a
     throws ManifoldCFException, ServiceInterruption
   {
     // Parse the document.  This will cause various things to occur, within the instantiated XMLContext class.
-    XMLStream x = new XMLStream();
+    XMLStream x = new XMLStream(false);
     WikiGetDocURLsAPIContext c = new WikiGetDocURLsAPIContext(x,urls);
     x.setContext(c);
     try
@@ -2957,7 +2957,7 @@ public class WikiConnector extends org.a
     throws ManifoldCFException, ServiceInterruption
   {
     // Parse the document.  This will cause various things to occur, within the instantiated XMLContext class.
-    XMLStream x = new XMLStream();
+    XMLStream x = new XMLStream(false);
     WikiGetTimestampAPIContext c = new WikiGetTimestampAPIContext(x,versions);
     x.setContext(c);
     try
@@ -3290,7 +3290,7 @@ public class WikiConnector extends org.a
           //    </namespaces>
           //  </query>
           //</api>
-          XMLStream x = new XMLStream();
+          XMLStream x = new XMLStream(false);
           WikiGetNamespacesAPIContext c = new WikiGetNamespacesAPIContext(x,namespaces);
           x.setContext(c);
           try
@@ -3710,7 +3710,7 @@ public class WikiConnector extends org.a
           //  </query>
           //</api>
 
-          XMLStream x = new XMLStream();
+          XMLStream x = new XMLStream(false);
           WikiGetDocInfoAPIContext c = new WikiGetDocInfoAPIContext(x);
           x.setContext(c);
           try

Modified: manifoldcf/trunk/mvn-bootstrap.bat
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/mvn-bootstrap.bat?rev=1444628&r1=1444627&r2=1444628&view=diff
==============================================================================
--- manifoldcf/trunk/mvn-bootstrap.bat (original)
+++ manifoldcf/trunk/mvn-bootstrap.bat Sun Feb 10 22:55:30 2013
@@ -14,8 +14,6 @@ rem WITHOUT WARRANTIES OR CONDITIONS OF 
 rem See the License for the specific language governing permissions and
 rem limitations under the License.
 
-cmd /c mvn install:install-file -Dfile=lib/xercesImpl.jar -DgroupId=xerces -DartifactId=xercesImpl -Dversion=2.9.1-mcf-1  -Dpackaging=jar
-
 cmd /c mvn install:install-file -Dfile=lib/opensaml.jar -DgroupId=org.opensaml -DartifactId=opensaml -Dversion=1.0.1 -Dpackaging=jar
 cmd /c mvn install:install-file -Dfile=lib/xmlsec.jar -DgroupId=xml-security -DartifactId=xmlsec -Dversion=1.4.1 -Dpackaging=jar
 

Modified: manifoldcf/trunk/mvn-bootstrap.sh
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/mvn-bootstrap.sh?rev=1444628&r1=1444627&r2=1444628&view=diff
==============================================================================
--- manifoldcf/trunk/mvn-bootstrap.sh (original)
+++ manifoldcf/trunk/mvn-bootstrap.sh Sun Feb 10 22:55:30 2013
@@ -21,8 +21,6 @@
 # Created: Wednesday, September 21 2011 by Alex Ott
 #
 
-mvn install:install-file -Dfile=lib/xercesImpl.jar -DgroupId=xerces -DartifactId=xercesImpl -Dversion=2.9.1-mcf-1  -Dpackaging=jar
-
 mvn install:install-file -Dfile=lib/opensaml.jar -DgroupId=org.opensaml -DartifactId=opensaml -Dversion=1.0.1 -Dpackaging=jar
 mvn install:install-file -Dfile=lib/xmlsec.jar -DgroupId=xml-security -DartifactId=xmlsec -Dversion=1.4.1 -Dpackaging=jar
 

Modified: manifoldcf/trunk/pom.xml
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/pom.xml?rev=1444628&r1=1444627&r2=1444628&view=diff
==============================================================================
--- manifoldcf/trunk/pom.xml (original)
+++ manifoldcf/trunk/pom.xml Sun Feb 10 22:55:30 2013
@@ -53,7 +53,7 @@
     <commons-el.version>1.0</commons-el.version>
     <commons-lang.version>2.6</commons-lang.version>
     <xalan.version>2.7.1</xalan.version>
-    <xerces.version>2.9.1-mcf-1</xerces.version>
+    <xerces.version>2.10.0</xerces.version>
     <jtds.version>1.2.4</jtds.version>
     <servlet-api.version>2.5</servlet-api.version>
     <jstl.version>1.2</jstl.version>