[jira] [Updated] (CONNECTORS-1603) Global config cannot be replaced when invalid XML stored in Zookeeper

2019-04-25 Thread Raman Gupta (JIRA)


 [ 
https://issues.apache.org/jira/browse/CONNECTORS-1603?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Raman Gupta updated CONNECTORS-1603:

Summary: Global config cannot be replaced when invalid XML stored in 
Zookeeper  (was: Global config corrupted when invalid XML stored in Zookeeper)

> Global config cannot be replaced when invalid XML stored in Zookeeper
> -
>
> Key: CONNECTORS-1603
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1603
> Project: ManifoldCF
>  Issue Type: Bug
>Reporter: Raman Gupta
>Priority: Major
>
> When using Zookeeper to store the global config, it seems that the 
> properties-global.xml is stored verbatim. However, if this file contains 
> invalid XML, then all subsequent operations fail, including storing the 
> global config again, as before the global config is stored, the existing 
> global config is read and parsed, which fails.
> The only workaround to this is to use ZK to delete the current configuration 
> at key `/org.apache.manifoldcf/configuration`,
> It should be possible for the `ZooKeeperLockManager` command to overwrite the 
> configuration at `/org.apache.manifoldcf/configuration` even if the current 
> value is invalid.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (CONNECTORS-1603) Global config corrupted when invalid XML stored in Zookeeper

2019-04-25 Thread Raman Gupta (JIRA)


 [ 
https://issues.apache.org/jira/browse/CONNECTORS-1603?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Raman Gupta updated CONNECTORS-1603:

Description: 
When using Zookeeper to store the global config, it seems that the 
properties-global.xml is stored verbatim. However, if this file contains 
invalid XML, then all subsequent operations fail, including storing the global 
config again, as before the global config is stored, the existing global config 
is read and parsed, which fails.

The only workaround to this is to use ZK to delete the current configuration at 
key `/org.apache.manifoldcf/configuration`,

It should be possible for the `ZooKeeperLockManager` command to overwrite the 
configuration at `/org.apache.manifoldcf/configuration` even if the current 
value is invalid.

  was:
When using Zookeeper to store the global config, it is impossible to have 
entities in the input XML. For example if we have a db password with value 
"foo", then we have to encode this in the global config XML like this:



When writing the global config to Zookeeper, it appears like this XML file is 
parsed, but then written to ZooKeeper as:



Now, when this global config is read from ZooKeeper, Manifold parses it as XML 
again, and of course fails with the error:

Caused by: org.xml.sax.SAXParseException; lineNumber: 31; columnNumber: 81; The 
reference to entity "bar" must end with the ';' delimiter.
 at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
 at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)
 at java.xml/javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:122)
 at org.apache.manifoldcf.core.common.XMLDoc.init(XMLDoc.java:359)
 ... 9 more

 


> Global config corrupted when invalid XML stored in Zookeeper
> 
>
> Key: CONNECTORS-1603
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1603
> Project: ManifoldCF
>  Issue Type: Bug
>Reporter: Raman Gupta
>Priority: Major
>
> When using Zookeeper to store the global config, it seems that the 
> properties-global.xml is stored verbatim. However, if this file contains 
> invalid XML, then all subsequent operations fail, including storing the 
> global config again, as before the global config is stored, the existing 
> global config is read and parsed, which fails.
> The only workaround to this is to use ZK to delete the current configuration 
> at key `/org.apache.manifoldcf/configuration`,
> It should be possible for the `ZooKeeperLockManager` command to overwrite the 
> configuration at `/org.apache.manifoldcf/configuration` even if the current 
> value is invalid.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (CONNECTORS-1603) Global config corrupted when invalid XML stored in Zookeeper

2019-04-25 Thread Raman Gupta (JIRA)


 [ 
https://issues.apache.org/jira/browse/CONNECTORS-1603?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Raman Gupta updated CONNECTORS-1603:

Summary: Global config corrupted when invalid XML stored in Zookeeper  
(was: Global config XML double-decoded when stored in Zookeeper)

> Global config corrupted when invalid XML stored in Zookeeper
> 
>
> Key: CONNECTORS-1603
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1603
> Project: ManifoldCF
>  Issue Type: Bug
>Reporter: Raman Gupta
>Priority: Major
>
> When using Zookeeper to store the global config, it is impossible to have 
> entities in the input XML. For example if we have a db password with value 
> "foo", then we have to encode this in the global config XML like this:
> 
> When writing the global config to Zookeeper, it appears like this XML file is 
> parsed, but then written to ZooKeeper as:
> 
> Now, when this global config is read from ZooKeeper, Manifold parses it as 
> XML again, and of course fails with the error:
> Caused by: org.xml.sax.SAXParseException; lineNumber: 31; columnNumber: 81; 
> The reference to entity "bar" must end with the ';' delimiter.
>  at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
>  at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)
>  at java.xml/javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:122)
>  at org.apache.manifoldcf.core.common.XMLDoc.init(XMLDoc.java:359)
>  ... 9 more
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (CONNECTORS-1603) Global config XML double-decoded when stored in Zookeeper

2019-04-25 Thread Raman Gupta (JIRA)


 [ 
https://issues.apache.org/jira/browse/CONNECTORS-1603?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Raman Gupta updated CONNECTORS-1603:

Description: 
When using Zookeeper to store the global config, it is impossible to have 
entities in the input XML. For example if we have a db password with value 
"foo", then we have to encode this in the global config XML like this:



When writing the global config to Zookeeper, it appears like this XML file is 
parsed, but then written to ZooKeeper as:



Now, when this global config is read from ZooKeeper, Manifold parses it as XML 
again, and of course fails with the error:

Caused by: org.xml.sax.SAXParseException; lineNumber: 31; columnNumber: 81; The 
reference to entity "bar" must end with the ';' delimiter.
 at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
 at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)
 at java.xml/javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:122)
 at org.apache.manifoldcf.core.common.XMLDoc.init(XMLDoc.java:359)
 ... 9 more

 

  was:
When using Zookeeper to store the global config, it is impossible to have 
entities in the input XML. For example if we have a db password with value 
"foo", then we have to encode this in the global config XML like this:



When writing the global config to Zookeeper, it appears like this XML file is 
parsed, but then written to ZooKeeper as:



Now, when this global config is read from ZooKeeper, Manifold parses it as XML 
again, and of course fails with the error:

{{
Caused by: org.xml.sax.SAXParseException; lineNumber: 31; columnNumber: 81; The 
reference to entity "bar" must end with the ';' delimiter.
 at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
 at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)
 at java.xml/javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:122)
 at org.apache.manifoldcf.core.common.XMLDoc.init(XMLDoc.java:359)
 ... 9 more
}}


 


> Global config XML double-decoded when stored in Zookeeper
> -
>
> Key: CONNECTORS-1603
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1603
> Project: ManifoldCF
>  Issue Type: Bug
>Reporter: Raman Gupta
>Priority: Major
>
> When using Zookeeper to store the global config, it is impossible to have 
> entities in the input XML. For example if we have a db password with value 
> "foo", then we have to encode this in the global config XML like this:
> 
> When writing the global config to Zookeeper, it appears like this XML file is 
> parsed, but then written to ZooKeeper as:
> 
> Now, when this global config is read from ZooKeeper, Manifold parses it as 
> XML again, and of course fails with the error:
> Caused by: org.xml.sax.SAXParseException; lineNumber: 31; columnNumber: 81; 
> The reference to entity "bar" must end with the ';' delimiter.
>  at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
>  at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)
>  at java.xml/javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:122)
>  at org.apache.manifoldcf.core.common.XMLDoc.init(XMLDoc.java:359)
>  ... 9 more
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (CONNECTORS-1603) Global config XML double-decoded when stored in Zookeeper

2019-04-25 Thread Raman Gupta (JIRA)


 [ 
https://issues.apache.org/jira/browse/CONNECTORS-1603?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Raman Gupta updated CONNECTORS-1603:

Description: 
When using Zookeeper to store the global config, it is impossible to have 
entities in the input XML. For example if we have a db password with value 
"foo", then we have to encode this in the global config XML like this:



When writing the global config to Zookeeper, it appears like this XML file is 
parsed, but then written to ZooKeeper as:



Now, when this global config is read from ZooKeeper, Manifold parses it as XML 
again, and of course fails with the error:

{{
Caused by: org.xml.sax.SAXParseException; lineNumber: 31; columnNumber: 81; The 
reference to entity "bar" must end with the ';' delimiter.
 at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
 at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)
 at java.xml/javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:122)
 at org.apache.manifoldcf.core.common.XMLDoc.init(XMLDoc.java:359)
 ... 9 more
}}


 

  was:
When using Zookeeper to store the global config, it is impossible to have 
entities in the input XML. For example if we have a db password with value 
"foo", then we have to encode this in the global config XML like this:

  

When writing the global config to Zookeeper, it appears like this XML file is 
parsed, but then written to ZooKeeper as:

  

Now, when this global config is read from ZooKeeper, Manifold parses it as XML 
again, and of course fails with the error:

{{Caused by: org.xml.sax.SAXParseException; lineNumber: 31; columnNumber: 81; 
The reference to entity "bar" must end with the ';' delimiter.
at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)
at 
java.xml/javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:122)
at org.apache.manifoldcf.core.common.XMLDoc.init(XMLDoc.java:359)
... 9 more
}}


> Global config XML double-decoded when stored in Zookeeper
> -
>
> Key: CONNECTORS-1603
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1603
> Project: ManifoldCF
>  Issue Type: Bug
>Reporter: Raman Gupta
>Priority: Major
>
> When using Zookeeper to store the global config, it is impossible to have 
> entities in the input XML. For example if we have a db password with value 
> "foo", then we have to encode this in the global config XML like this:
> 
> When writing the global config to Zookeeper, it appears like this XML file is 
> parsed, but then written to ZooKeeper as:
> 
> Now, when this global config is read from ZooKeeper, Manifold parses it as 
> XML again, and of course fails with the error:
> {{
> Caused by: org.xml.sax.SAXParseException; lineNumber: 31; columnNumber: 81; 
> The reference to entity "bar" must end with the ';' delimiter.
>  at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
>  at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)
>  at java.xml/javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:122)
>  at org.apache.manifoldcf.core.common.XMLDoc.init(XMLDoc.java:359)
>  ... 9 more
> }}
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Created] (CONNECTORS-1603) Global config XML double-decoded when stored in Zookeeper

2019-04-25 Thread Raman Gupta (JIRA)
Raman Gupta created CONNECTORS-1603:
---

 Summary: Global config XML double-decoded when stored in Zookeeper
 Key: CONNECTORS-1603
 URL: https://issues.apache.org/jira/browse/CONNECTORS-1603
 Project: ManifoldCF
  Issue Type: Bug
Reporter: Raman Gupta


When using Zookeeper to store the global config, it is impossible to have 
entities in the input XML. For example if we have a db password with value 
"foo", then we have to encode this in the global config XML like this:

  

When writing the global config to Zookeeper, it appears like this XML file is 
parsed, but then written to ZooKeeper as:

  

Now, when this global config is read from ZooKeeper, Manifold parses it as XML 
again, and of course fails with the error:

Caused by: org.xml.sax.SAXParseException; lineNumber: 31; columnNumber: 81; The 
reference to entity "bar" must end with the ';' delimiter.
at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)
at 
java.xml/javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:122)
at org.apache.manifoldcf.core.common.XMLDoc.init(XMLDoc.java:359)
... 9 more




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (CONNECTORS-1603) Global config XML double-decoded when stored in Zookeeper

2019-04-25 Thread Raman Gupta (JIRA)


 [ 
https://issues.apache.org/jira/browse/CONNECTORS-1603?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Raman Gupta updated CONNECTORS-1603:

Description: 
When using Zookeeper to store the global config, it is impossible to have 
entities in the input XML. For example if we have a db password with value 
"foo", then we have to encode this in the global config XML like this:

  

When writing the global config to Zookeeper, it appears like this XML file is 
parsed, but then written to ZooKeeper as:

  

Now, when this global config is read from ZooKeeper, Manifold parses it as XML 
again, and of course fails with the error:

{{Caused by: org.xml.sax.SAXParseException; lineNumber: 31; columnNumber: 81; 
The reference to entity "bar" must end with the ';' delimiter.
at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)
at 
java.xml/javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:122)
at org.apache.manifoldcf.core.common.XMLDoc.init(XMLDoc.java:359)
... 9 more
}}

  was:
When using Zookeeper to store the global config, it is impossible to have 
entities in the input XML. For example if we have a db password with value 
"foo", then we have to encode this in the global config XML like this:

  

When writing the global config to Zookeeper, it appears like this XML file is 
parsed, but then written to ZooKeeper as:

  

Now, when this global config is read from ZooKeeper, Manifold parses it as XML 
again, and of course fails with the error:

Caused by: org.xml.sax.SAXParseException; lineNumber: 31; columnNumber: 81; The 
reference to entity "bar" must end with the ';' delimiter.
at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)
at 
java.xml/javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:122)
at org.apache.manifoldcf.core.common.XMLDoc.init(XMLDoc.java:359)
... 9 more



> Global config XML double-decoded when stored in Zookeeper
> -
>
> Key: CONNECTORS-1603
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1603
> Project: ManifoldCF
>  Issue Type: Bug
>Reporter: Raman Gupta
>Priority: Major
>
> When using Zookeeper to store the global config, it is impossible to have 
> entities in the input XML. For example if we have a db password with value 
> "foo", then we have to encode this in the global config XML like this:
>value="foobar"/>
> When writing the global config to Zookeeper, it appears like this XML file is 
> parsed, but then written to ZooKeeper as:
>   
> Now, when this global config is read from ZooKeeper, Manifold parses it as 
> XML again, and of course fails with the error:
> {{Caused by: org.xml.sax.SAXParseException; lineNumber: 31; columnNumber: 81; 
> The reference to entity "bar" must end with the ';' delimiter.
> at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
> at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)
> at 
> java.xml/javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:122)
> at org.apache.manifoldcf.core.common.XMLDoc.init(XMLDoc.java:359)
> ... 9 more
> }}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[VOTE] Release Apache ManifoldCF 2.13, RC1

2019-04-25 Thread Karl Wright
Please vote on whether to release Apache ManifoldCF 2.13, RC0.  The release
artifact can be found at:
https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13.
There is also a release tag at
https://svn.apache.org/repos/asf/manifoldcf/tags/release-2.13-RC1.

This release contains primarily a redeveloped Jcifs connector, to work with
jcifs-ng, plus a modest number of bug fixes.

The release has been respun due to a syntax error in the jcifs connector
pom.

Karl


[CANCEL] [VOTE] Release Apache ManifoldCF 2.13, RC0

2019-04-25 Thread Karl Wright
The jcifs pom file is corrupt.  Will fix and spin RC1.

Karl


On Thu, Apr 25, 2019 at 2:40 PM Rafa Haro  wrote:

> I will forward you the email
>
> El El jue, 25 abr 2019 a las 20:37, Karl Wright 
> escribió:
>
> > Which job?  I did not receive a notice.
> > Karl
> >
> >
> > On Thu, Apr 25, 2019 at 3:55 AM Rafa Haro  wrote:
> >
> >> Jenkins build is broken (trunk). Probably not related to the Release,
> but
> >> I
> >> warn just in case. I will try to download both source and binary files
> >> later and check them Karl
> >>
> >> On Thu, Apr 25, 2019 at 9:14 AM Karl Wright  wrote:
> >>
> >> > It works fine for me.  Here it is again:
> >> >
> >>
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/
> >> >
> >> > I see:
> >> >
> >> > dist - Revision 33773: /dev/manifoldcf/apache-manifoldcf-2.13
> >> >
> >> >- .. 
> >> >- apache-manifoldcf-2.13-bin.tar.gz
> >> ><
> >> >
> >>
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.tar.gz
> >> > >
> >> >- apache-manifoldcf-2.13-bin.tar.gz.asc
> >> ><
> >> >
> >>
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.tar.gz.asc
> >> > >
> >> >- apache-manifoldcf-2.13-bin.tar.gz.md5
> >> ><
> >> >
> >>
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.tar.gz.md5
> >> > >
> >> >- apache-manifoldcf-2.13-bin.tar.gz.sha512
> >> ><
> >> >
> >>
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.tar.gz.sha512
> >> > >
> >> >- apache-manifoldcf-2.13-bin.zip
> >> ><
> >> >
> >>
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.zip
> >> > >
> >> >- apache-manifoldcf-2.13-bin.zip.asc
> >> ><
> >> >
> >>
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.zip.asc
> >> > >
> >> >- apache-manifoldcf-2.13-bin.zip.md5
> >> ><
> >> >
> >>
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.zip.md5
> >> > >
> >> >- apache-manifoldcf-2.13-bin.zip.sha512
> >> ><
> >> >
> >>
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.zip.sha512
> >> > >
> >> >- apache-manifoldcf-2.13-lib.tar.gz
> >> ><
> >> >
> >>
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.tar.gz
> >> > >
> >> >- apache-manifoldcf-2.13-lib.tar.gz.asc
> >> ><
> >> >
> >>
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.tar.gz.asc
> >> > >
> >> >- apache-manifoldcf-2.13-lib.tar.gz.md5
> >> ><
> >> >
> >>
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.tar.gz.md5
> >> > >
> >> >- apache-manifoldcf-2.13-lib.tar.gz.sha512
> >> ><
> >> >
> >>
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.tar.gz.sha512
> >> > >
> >> >- apache-manifoldcf-2.13-lib.zip
> >> ><
> >> >
> >>
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.zip
> >> > >
> >> >- apache-manifoldcf-2.13-lib.zip.asc
> >> ><
> >> >
> >>
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.zip.asc
> >> > >
> >> >- apache-manifoldcf-2.13-lib.zip.md5
> >> ><
> >> >
> >>
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.zip.md5
> >> > >
> >> >- apache-manifoldcf-2.13-lib.zip.sha512
> >> ><
> >> >
> >>
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.zip.sha512
> >> > >
> >> >- apache-manifoldcf-2.13-src.tar.gz
> >> ><
> >> >
> >>
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.tar.gz
> >> > >
> >> >- apache-manifoldcf-2.13-src.tar.gz.asc
> >> ><
> >> >
> >>
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.tar.gz.asc
> >> > >
> >> >- apache-manifoldcf-2.13-src.tar.gz.md5
> >> ><
> >> >
> >>
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.tar.gz.md5
> >> > >
> >> >- apache-manifoldcf-2.13-src.tar.gz.sha512
> >> ><
> >> >
> >>
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.tar.gz.sha512
> >> > >
> >> >- apache-manifoldcf-2.13-src.zip
> >> ><
> >> >
> >>
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.zip
> >> > >
> >> >- apache-manifoldcf-2.13-src.zip.asc
> >> > 

[jira] [Commented] (CONNECTORS-1602) Continuous crawling doesn't recrawl everything

2019-04-25 Thread Karl Wright (JIRA)


[ 
https://issues.apache.org/jira/browse/CONNECTORS-1602?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16826349#comment-16826349
 ] 

Karl Wright commented on CONNECTORS-1602:
-

Continuous crawling bases the next crawl time on the last time the document 
changed.  In general it doubles the crawling interval, up to the maximum, 
before retrying.  So if your document doesn't change very often, the crawler 
may wait quite some time before reviewing it.

The best way to see what it is going to do is to find the document in the 
Document Status report, and see when ManifoldCF intends to recrawl it.



> Continuous crawling doesn't recrawl everything
> --
>
> Key: CONNECTORS-1602
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1602
> Project: ManifoldCF
>  Issue Type: Bug
>  Components: Web connector
>Reporter: Donald Van den Driessche
>Priority: Major
>
> When crawling a website in continuous crawling mode we saw that not all 
> documents are recrawled.
> The site is quite extensive. We figured out that after crawling a 
> document/page gets a recrawl timestamp in between the recrawl interval and 
> max recrawl interval.
> But if these values occur within the first crawl, Manifold starts recrawling 
> those, but seems to ignore the rest of the website. Also sometimes documents 
> get recrawled 5 times while other don't get recrawled. Apparently due to the 
> same issue.
>  
> Is it possible to shed a bit more light on the continuous crawling?
> Is it a good system to use for crawling a (extensive) website?



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


Re: [VOTE] Release Apache ManifoldCF 2.13, RC0

2019-04-25 Thread Rafa Haro
I will forward you the email

El El jue, 25 abr 2019 a las 20:37, Karl Wright 
escribió:

> Which job?  I did not receive a notice.
> Karl
>
>
> On Thu, Apr 25, 2019 at 3:55 AM Rafa Haro  wrote:
>
>> Jenkins build is broken (trunk). Probably not related to the Release, but
>> I
>> warn just in case. I will try to download both source and binary files
>> later and check them Karl
>>
>> On Thu, Apr 25, 2019 at 9:14 AM Karl Wright  wrote:
>>
>> > It works fine for me.  Here it is again:
>> >
>> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/
>> >
>> > I see:
>> >
>> > dist - Revision 33773: /dev/manifoldcf/apache-manifoldcf-2.13
>> >
>> >- .. 
>> >- apache-manifoldcf-2.13-bin.tar.gz
>> ><
>> >
>> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.tar.gz
>> > >
>> >- apache-manifoldcf-2.13-bin.tar.gz.asc
>> ><
>> >
>> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.tar.gz.asc
>> > >
>> >- apache-manifoldcf-2.13-bin.tar.gz.md5
>> ><
>> >
>> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.tar.gz.md5
>> > >
>> >- apache-manifoldcf-2.13-bin.tar.gz.sha512
>> ><
>> >
>> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.tar.gz.sha512
>> > >
>> >- apache-manifoldcf-2.13-bin.zip
>> ><
>> >
>> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.zip
>> > >
>> >- apache-manifoldcf-2.13-bin.zip.asc
>> ><
>> >
>> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.zip.asc
>> > >
>> >- apache-manifoldcf-2.13-bin.zip.md5
>> ><
>> >
>> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.zip.md5
>> > >
>> >- apache-manifoldcf-2.13-bin.zip.sha512
>> ><
>> >
>> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.zip.sha512
>> > >
>> >- apache-manifoldcf-2.13-lib.tar.gz
>> ><
>> >
>> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.tar.gz
>> > >
>> >- apache-manifoldcf-2.13-lib.tar.gz.asc
>> ><
>> >
>> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.tar.gz.asc
>> > >
>> >- apache-manifoldcf-2.13-lib.tar.gz.md5
>> ><
>> >
>> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.tar.gz.md5
>> > >
>> >- apache-manifoldcf-2.13-lib.tar.gz.sha512
>> ><
>> >
>> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.tar.gz.sha512
>> > >
>> >- apache-manifoldcf-2.13-lib.zip
>> ><
>> >
>> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.zip
>> > >
>> >- apache-manifoldcf-2.13-lib.zip.asc
>> ><
>> >
>> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.zip.asc
>> > >
>> >- apache-manifoldcf-2.13-lib.zip.md5
>> ><
>> >
>> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.zip.md5
>> > >
>> >- apache-manifoldcf-2.13-lib.zip.sha512
>> ><
>> >
>> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.zip.sha512
>> > >
>> >- apache-manifoldcf-2.13-src.tar.gz
>> ><
>> >
>> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.tar.gz
>> > >
>> >- apache-manifoldcf-2.13-src.tar.gz.asc
>> ><
>> >
>> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.tar.gz.asc
>> > >
>> >- apache-manifoldcf-2.13-src.tar.gz.md5
>> ><
>> >
>> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.tar.gz.md5
>> > >
>> >- apache-manifoldcf-2.13-src.tar.gz.sha512
>> ><
>> >
>> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.tar.gz.sha512
>> > >
>> >- apache-manifoldcf-2.13-src.zip
>> ><
>> >
>> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.zip
>> > >
>> >- apache-manifoldcf-2.13-src.zip.asc
>> ><
>> >
>> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.zip.asc
>> > >
>> >- apache-manifoldcf-2.13-src.zip.md5
>> ><
>> >
>> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.zip.md5
>> > >
>> >- apache-manifoldcf-2.13-src.zip.sha512
>> ><
>> >
>> 

Re: [VOTE] Release Apache ManifoldCF 2.13, RC0

2019-04-25 Thread Karl Wright
Which job?  I did not receive a notice.
Karl


On Thu, Apr 25, 2019 at 3:55 AM Rafa Haro  wrote:

> Jenkins build is broken (trunk). Probably not related to the Release, but I
> warn just in case. I will try to download both source and binary files
> later and check them Karl
>
> On Thu, Apr 25, 2019 at 9:14 AM Karl Wright  wrote:
>
> > It works fine for me.  Here it is again:
> >
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/
> >
> > I see:
> >
> > dist - Revision 33773: /dev/manifoldcf/apache-manifoldcf-2.13
> >
> >- .. 
> >- apache-manifoldcf-2.13-bin.tar.gz
> ><
> >
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.tar.gz
> > >
> >- apache-manifoldcf-2.13-bin.tar.gz.asc
> ><
> >
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.tar.gz.asc
> > >
> >- apache-manifoldcf-2.13-bin.tar.gz.md5
> ><
> >
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.tar.gz.md5
> > >
> >- apache-manifoldcf-2.13-bin.tar.gz.sha512
> ><
> >
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.tar.gz.sha512
> > >
> >- apache-manifoldcf-2.13-bin.zip
> ><
> >
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.zip
> > >
> >- apache-manifoldcf-2.13-bin.zip.asc
> ><
> >
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.zip.asc
> > >
> >- apache-manifoldcf-2.13-bin.zip.md5
> ><
> >
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.zip.md5
> > >
> >- apache-manifoldcf-2.13-bin.zip.sha512
> ><
> >
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.zip.sha512
> > >
> >- apache-manifoldcf-2.13-lib.tar.gz
> ><
> >
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.tar.gz
> > >
> >- apache-manifoldcf-2.13-lib.tar.gz.asc
> ><
> >
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.tar.gz.asc
> > >
> >- apache-manifoldcf-2.13-lib.tar.gz.md5
> ><
> >
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.tar.gz.md5
> > >
> >- apache-manifoldcf-2.13-lib.tar.gz.sha512
> ><
> >
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.tar.gz.sha512
> > >
> >- apache-manifoldcf-2.13-lib.zip
> ><
> >
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.zip
> > >
> >- apache-manifoldcf-2.13-lib.zip.asc
> ><
> >
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.zip.asc
> > >
> >- apache-manifoldcf-2.13-lib.zip.md5
> ><
> >
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.zip.md5
> > >
> >- apache-manifoldcf-2.13-lib.zip.sha512
> ><
> >
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.zip.sha512
> > >
> >- apache-manifoldcf-2.13-src.tar.gz
> ><
> >
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.tar.gz
> > >
> >- apache-manifoldcf-2.13-src.tar.gz.asc
> ><
> >
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.tar.gz.asc
> > >
> >- apache-manifoldcf-2.13-src.tar.gz.md5
> ><
> >
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.tar.gz.md5
> > >
> >- apache-manifoldcf-2.13-src.tar.gz.sha512
> ><
> >
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.tar.gz.sha512
> > >
> >- apache-manifoldcf-2.13-src.zip
> ><
> >
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.zip
> > >
> >- apache-manifoldcf-2.13-src.zip.asc
> ><
> >
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.zip.asc
> > >
> >- apache-manifoldcf-2.13-src.zip.md5
> ><
> >
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.zip.md5
> > >
> >- apache-manifoldcf-2.13-src.zip.sha512
> ><
> >
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.zip.sha512
> > >
> >- apache-manifoldcf-2.13.CHANGES.txt
> ><
> >
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13.CHANGES.txt
> > >

[jira] [Created] (CONNECTORS-1602) Continuous crawling doesn't recrawl everything

2019-04-25 Thread Donald Van den Driessche (JIRA)
Donald Van den Driessche created CONNECTORS-1602:


 Summary: Continuous crawling doesn't recrawl everything
 Key: CONNECTORS-1602
 URL: https://issues.apache.org/jira/browse/CONNECTORS-1602
 Project: ManifoldCF
  Issue Type: Bug
  Components: Web connector
Reporter: Donald Van den Driessche


When crawling a website in continuous crawling mode we saw that not all 
documents are recrawled.

The site is quite extensive. We figured out that after crawling a document/page 
gets a recrawl timestamp in between the recrawl interval and max recrawl 
interval.

But if these values occur within the first crawl, Manifold starts recrawling 
those, but seems to ignore the rest of the website. Also sometimes documents 
get recrawled 5 times while other don't get recrawled. Apparently due to the 
same issue.

 

Is it possible to shed a bit more light on the continuous crawling?

Is it a good system to use for crawling a (extensive) website?



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


RE: [VOTE] Release Apache ManifoldCF 2.13, RC0

2019-04-25 Thread Irindu Nugawela
Thanks Karl, It works 

Sent from Mail for Windows 10

From: Karl Wright
Sent: Thursday, April 25, 2019 12:44 PM
To: dev
Subject: Re: [VOTE] Release Apache ManifoldCF 2.13, RC0

It works fine for me.  Here it is again:
https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/

I see:

dist - Revision 33773: /dev/manifoldcf/apache-manifoldcf-2.13

   - .. 
   - apache-manifoldcf-2.13-bin.tar.gz
   

   - apache-manifoldcf-2.13-bin.tar.gz.asc
   

   - apache-manifoldcf-2.13-bin.tar.gz.md5
   

   - apache-manifoldcf-2.13-bin.tar.gz.sha512
   

   - apache-manifoldcf-2.13-bin.zip
   

   - apache-manifoldcf-2.13-bin.zip.asc
   

   - apache-manifoldcf-2.13-bin.zip.md5
   

   - apache-manifoldcf-2.13-bin.zip.sha512
   

   - apache-manifoldcf-2.13-lib.tar.gz
   

   - apache-manifoldcf-2.13-lib.tar.gz.asc
   

   - apache-manifoldcf-2.13-lib.tar.gz.md5
   

   - apache-manifoldcf-2.13-lib.tar.gz.sha512
   

   - apache-manifoldcf-2.13-lib.zip
   

   - apache-manifoldcf-2.13-lib.zip.asc
   

   - apache-manifoldcf-2.13-lib.zip.md5
   

   - apache-manifoldcf-2.13-lib.zip.sha512
   

   - apache-manifoldcf-2.13-src.tar.gz
   

   - apache-manifoldcf-2.13-src.tar.gz.asc
   

   - apache-manifoldcf-2.13-src.tar.gz.md5
   

   - apache-manifoldcf-2.13-src.tar.gz.sha512
   

   - apache-manifoldcf-2.13-src.zip
   

   - apache-manifoldcf-2.13-src.zip.asc
   

   - apache-manifoldcf-2.13-src.zip.md5
   

   - apache-manifoldcf-2.13-src.zip.sha512
   

   - apache-manifoldcf-2.13.CHANGES.txt
   

   - apache-manifoldcf-2.13.KEYS
   




On Wed, Apr 24, 2019 at 9:28 PM Irindu Nugawela 
wrote:

> Hi Karl,
> The URL does not direct to the artifact it gives me the following error
> when I try to visit the link
> Not Found
> The requested URL /repos/dist/dev/manifoldcf/apache-manifoldcf-2.13. was
> not found on this server.
> Please rectify the issue, Thank you very much
>
> Sent from Mail for Windows 10
>
> From: Karl Wright
> Sent: Thursday, April 25, 2019 3:24 AM
> To: dev
> Subject: [VOTE] Release Apache ManifoldCF 2.13, RC0
>
> Please vote on 

Re: [VOTE] Release Apache ManifoldCF 2.13, RC0

2019-04-25 Thread Rafa Haro
Jenkins build is broken (trunk). Probably not related to the Release, but I
warn just in case. I will try to download both source and binary files
later and check them Karl

On Thu, Apr 25, 2019 at 9:14 AM Karl Wright  wrote:

> It works fine for me.  Here it is again:
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/
>
> I see:
>
> dist - Revision 33773: /dev/manifoldcf/apache-manifoldcf-2.13
>
>- .. 
>- apache-manifoldcf-2.13-bin.tar.gz
><
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.tar.gz
> >
>- apache-manifoldcf-2.13-bin.tar.gz.asc
><
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.tar.gz.asc
> >
>- apache-manifoldcf-2.13-bin.tar.gz.md5
><
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.tar.gz.md5
> >
>- apache-manifoldcf-2.13-bin.tar.gz.sha512
><
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.tar.gz.sha512
> >
>- apache-manifoldcf-2.13-bin.zip
><
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.zip
> >
>- apache-manifoldcf-2.13-bin.zip.asc
><
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.zip.asc
> >
>- apache-manifoldcf-2.13-bin.zip.md5
><
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.zip.md5
> >
>- apache-manifoldcf-2.13-bin.zip.sha512
><
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-bin.zip.sha512
> >
>- apache-manifoldcf-2.13-lib.tar.gz
><
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.tar.gz
> >
>- apache-manifoldcf-2.13-lib.tar.gz.asc
><
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.tar.gz.asc
> >
>- apache-manifoldcf-2.13-lib.tar.gz.md5
><
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.tar.gz.md5
> >
>- apache-manifoldcf-2.13-lib.tar.gz.sha512
><
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.tar.gz.sha512
> >
>- apache-manifoldcf-2.13-lib.zip
><
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.zip
> >
>- apache-manifoldcf-2.13-lib.zip.asc
><
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.zip.asc
> >
>- apache-manifoldcf-2.13-lib.zip.md5
><
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.zip.md5
> >
>- apache-manifoldcf-2.13-lib.zip.sha512
><
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-lib.zip.sha512
> >
>- apache-manifoldcf-2.13-src.tar.gz
><
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.tar.gz
> >
>- apache-manifoldcf-2.13-src.tar.gz.asc
><
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.tar.gz.asc
> >
>- apache-manifoldcf-2.13-src.tar.gz.md5
><
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.tar.gz.md5
> >
>- apache-manifoldcf-2.13-src.tar.gz.sha512
><
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.tar.gz.sha512
> >
>- apache-manifoldcf-2.13-src.zip
><
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.zip
> >
>- apache-manifoldcf-2.13-src.zip.asc
><
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.zip.asc
> >
>- apache-manifoldcf-2.13-src.zip.md5
><
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.zip.md5
> >
>- apache-manifoldcf-2.13-src.zip.sha512
><
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13-src.zip.sha512
> >
>- apache-manifoldcf-2.13.CHANGES.txt
><
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13.CHANGES.txt
> >
>- apache-manifoldcf-2.13.KEYS
><
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/apache-manifoldcf-2.13.KEYS
> >
>
>
>
> On Wed, Apr 24, 2019 at 9:28 PM Irindu Nugawela 
> wrote:
>
> > Hi Karl,
> > The URL does not direct to the artifact it gives me the following error
> > when I try to visit the link
> > Not Found
> > The requested URL 

Re: [VOTE] Release Apache ManifoldCF 2.13, RC0

2019-04-25 Thread Karl Wright
It works fine for me.  Here it is again:
https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13/

I see:

dist - Revision 33773: /dev/manifoldcf/apache-manifoldcf-2.13

   - .. 
   - apache-manifoldcf-2.13-bin.tar.gz
   

   - apache-manifoldcf-2.13-bin.tar.gz.asc
   

   - apache-manifoldcf-2.13-bin.tar.gz.md5
   

   - apache-manifoldcf-2.13-bin.tar.gz.sha512
   

   - apache-manifoldcf-2.13-bin.zip
   

   - apache-manifoldcf-2.13-bin.zip.asc
   

   - apache-manifoldcf-2.13-bin.zip.md5
   

   - apache-manifoldcf-2.13-bin.zip.sha512
   

   - apache-manifoldcf-2.13-lib.tar.gz
   

   - apache-manifoldcf-2.13-lib.tar.gz.asc
   

   - apache-manifoldcf-2.13-lib.tar.gz.md5
   

   - apache-manifoldcf-2.13-lib.tar.gz.sha512
   

   - apache-manifoldcf-2.13-lib.zip
   

   - apache-manifoldcf-2.13-lib.zip.asc
   

   - apache-manifoldcf-2.13-lib.zip.md5
   

   - apache-manifoldcf-2.13-lib.zip.sha512
   

   - apache-manifoldcf-2.13-src.tar.gz
   

   - apache-manifoldcf-2.13-src.tar.gz.asc
   

   - apache-manifoldcf-2.13-src.tar.gz.md5
   

   - apache-manifoldcf-2.13-src.tar.gz.sha512
   

   - apache-manifoldcf-2.13-src.zip
   

   - apache-manifoldcf-2.13-src.zip.asc
   

   - apache-manifoldcf-2.13-src.zip.md5
   

   - apache-manifoldcf-2.13-src.zip.sha512
   

   - apache-manifoldcf-2.13.CHANGES.txt
   

   - apache-manifoldcf-2.13.KEYS
   




On Wed, Apr 24, 2019 at 9:28 PM Irindu Nugawela 
wrote:

> Hi Karl,
> The URL does not direct to the artifact it gives me the following error
> when I try to visit the link
> Not Found
> The requested URL /repos/dist/dev/manifoldcf/apache-manifoldcf-2.13. was
> not found on this server.
> Please rectify the issue, Thank you very much
>
> Sent from Mail for Windows 10
>
> From: Karl Wright
> Sent: Thursday, April 25, 2019 3:24 AM
> To: dev
> Subject: [VOTE] Release Apache ManifoldCF 2.13, RC0
>
> Please vote on whether to release Apache ManifoldCF 2.13, RC0.  The release
> artifact can be found at:
> https://dist.apache.org/repos/dist/dev/manifoldcf/apache-manifoldcf-2.13.
> There is also