Author: kwright
Date: Mon Dec 24 22:36:14 2012
New Revision: 1425688
URL: http://svn.apache.org/viewvc?rev=1425688&view=rev
Log:
Fix for CONNECTORS-591. Committed on behalf of Minoru Osuka.
Modified:
manifoldcf/trunk/CHANGES.txt
manifoldcf/trunk/connectors/elasticsearch/build.xml
Modified: manifoldcf/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/manifoldcf/trunk/CHANGES.txt?rev=1425688&r1=1425687&r2=1425688&view=diff
==============================================================================
--- manifoldcf/trunk/CHANGES.txt (original)
+++ manifoldcf/trunk/CHANGES.txt Mon Dec 24 22:36:14 2012
@@ -3,6 +3,9 @@ $Id$
======================= 1.1-dev =====================
+CONNECTORS-591: Elasticsearch download URL has changed.
+(Minoru Osuka)
+
CONNECTORS-589: Parse multiple link tags inside an entry tag, for
Atom feeds.
(David Morana, Karl Wright)
Modified: manifoldcf/trunk/connectors/elasticsearch/build.xml
URL:
http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/elasticsearch/build.xml?rev=1425688&r1=1425687&r2=1425688&view=diff
==============================================================================
--- manifoldcf/trunk/connectors/elasticsearch/build.xml (original)
+++ manifoldcf/trunk/connectors/elasticsearch/build.xml Mon Dec 24 22:36:14 2012
@@ -22,7 +22,7 @@
<target name="download-dependencies">
<mkdir dir="build/download"/>
- <get
src="http://cloud.github.com/downloads/elasticsearch/elasticsearch/elasticsearch-0.19.0.tar.gz"
+ <get
src="http://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.19.0.tar.gz"
dest="build/download/elasticsearch.tar.gz"/>
<gunzip src="build/download/elasticsearch.tar.gz"/>
<untar src="build/download/elasticsearch.tar"
dest="test-materials-proprietary"/>
@@ -30,7 +30,7 @@
<!-- download and install the attachment plugin -->
<mkdir dir="test-materials-proprietary/elasticsearch-0.19.0/plugins"/>
- <get
src="http://cloud.github.com/downloads/elasticsearch/elasticsearch-mapper-attachments/elasticsearch-mapper-attachments-1.2.0.zip"
+ <get
src="http://download.elasticsearch.org/elasticsearch/elasticsearch-mapper-attachments/elasticsearch-mapper-attachments-1.2.0.zip"
dest="test-materials-proprietary/elasticsearch-0.19.0/plugins/mapper-attachments.zip"/>
<unzip
src="test-materials-proprietary/elasticsearch-0.19.0/plugins/mapper-attachments.zip"
dest="test-materials-proprietary/elasticsearch-0.19.0/plugins/mapper-attachments"/>