LUCENE-7546: people.apache.org -> home.apache.org

(cherry picked from commit 77605fe)
This commit is contained in:
David Smiley 2016-11-11 13:00:37 -05:00
parent 16967ffdbb
commit d8d3d29f99
4 changed files with 12 additions and 7 deletions

View File

@ -32,6 +32,11 @@ Improvements
* LUCENE-7524: Added more detailed explanation of how IDF is computed in * LUCENE-7524: Added more detailed explanation of how IDF is computed in
ClassicSimilarity and BM25Similarity. (Adrien Grand) ClassicSimilarity and BM25Similarity. (Adrien Grand)
Other
* LUCENE-7546: Fixed references to benchmark wikipedia data and the Jenkins line-docs file
(David Smiley)
======================= Lucene 6.3.0 ======================= ======================= Lucene 6.3.0 =======================
API Changes API Changes

View File

@ -59,7 +59,7 @@
</target> </target>
<target name="get-enwiki" unless="enwiki.exists"> <target name="get-enwiki" unless="enwiki.exists">
<get src="http://people.apache.org/~gsingers/wikipedia/enwiki-20070527-pages-articles.xml.bz2" <get src="http://home.apache.org/~dsmiley/data/enwiki-20070527-pages-articles.xml.bz2"
dest="temp/enwiki-20070527-pages-articles.xml.bz2"/> dest="temp/enwiki-20070527-pages-articles.xml.bz2"/>
</target> </target>
@ -77,7 +77,7 @@
<!-- note: latest data is at: http://download.geonames.org/export/dump/allCountries.zip <!-- note: latest data is at: http://download.geonames.org/export/dump/allCountries.zip
and then randomize with: gsort -R -S 1500M file.txt > file_random.txt and then randomize with: gsort -R -S 1500M file.txt > file_random.txt
and then compress with: bzip2 -9 -k file_random.txt --> and then compress with: bzip2 -9 -k file_random.txt -->
<get src="http://people.apache.org/~dsmiley/data/geonames_20130921_randomOrder_allCountries.txt.bz2" <get src="http://home.apache.org/~dsmiley/data/geonames_20130921_randomOrder_allCountries.txt.bz2"
dest="temp/allCountries.txt.bz2"/> dest="temp/allCountries.txt.bz2"/>
</target> </target>
@ -140,7 +140,7 @@
<property name="top.100k.words.archive.filename" <property name="top.100k.words.archive.filename"
value="top.100k.words.de.en.fr.uk.wikipedia.2009-11.tar.bz2"/> value="top.100k.words.de.en.fr.uk.wikipedia.2009-11.tar.bz2"/>
<property name="top.100k.words.archive.base.url" <property name="top.100k.words.archive.base.url"
value="http://people.apache.org/~rmuir/wikipedia"/> value="http://home.apache.org/~rmuir/wikipedia"/>
<target name="get-top-100k-words-archive" unless="top.100k.words.archive.present"> <target name="get-top-100k-words-archive" unless="top.100k.words.archive.present">
<mkdir dir="temp"/> <mkdir dir="temp"/>
<get src="${top.100k.words.archive.base.url}/${top.100k.words.archive.filename}" <get src="${top.100k.words.archive.base.url}/${top.100k.words.archive.filename}"

View File

@ -559,7 +559,7 @@
<target name="get-jenkins-line-docs" unless="enwiki.exists"> <target name="get-jenkins-line-docs" unless="enwiki.exists">
<sequential> <sequential>
<!-- TODO: can get .lzma instead (it's ~17% smaller) but there's no builtin ant support...? --> <!-- TODO: can get .lzma instead (it's ~17% smaller) but there's no builtin ant support...? -->
<get src="http://people.apache.org/~mikemccand/enwiki.random.lines.txt.bz2" <get src="http://home.apache.org/~mikemccand/enwiki.random.lines.txt.bz2"
dest="enwiki.random.lines.txt.bz2"/> dest="enwiki.random.lines.txt.bz2"/>
<bunzip2 src="enwiki.random.lines.txt.bz2" dest="enwiki.random.lines.txt"/> <bunzip2 src="enwiki.random.lines.txt.bz2" dest="enwiki.random.lines.txt"/>
</sequential> </sequential>

View File

@ -2305,12 +2305,12 @@ ${ant.project.name}.test.dependencies=${test.classpath.list}
<macrodef name="copy-to-stage-macro"> <macrodef name="copy-to-stage-macro">
<attribute name="artifacts.dir"/> <attribute name="artifacts.dir"/>
<sequential> <sequential>
<sshexec host="people.apache.org" <sshexec host="home.apache.org"
username="${scp.user}" username="${scp.user}"
keyfile="${keyfile}" keyfile="${keyfile}"
command="mkdir -p ${remote.staging.dir}"/> command="mkdir -p ${remote.staging.dir}"/>
<echo>Uploading artifacts to ${scp.user}@people.apache.org:${remote.staging.dir}</echo> <echo>Uploading artifacts to ${scp.user}@home.apache.org:${remote.staging.dir}</echo>
<scp todir="${scp.user}@people.apache.org:${remote.staging.dir}" <scp todir="${scp.user}@home.apache.org:${remote.staging.dir}"
username="${scp.user}" username="${scp.user}"
keyfile="${keyfile}" keyfile="${keyfile}"
verbose="true"> verbose="true">