http://issues.apache.org/jira/browse/LUCENE-721 -- Added in Clover code coverage, thanks to Michael Busch.

Updated the xdocs with a new file named systemrequirements that details the system requirements for using Lucene.  Linked to them via the developer-resources and the releases page.  Regenerated the site.

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@485001 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Grant Ingersoll 2006-12-09 16:32:22 +00:00
parent 65cd9b86bf
commit 6ccabb7c8f
27 changed files with 230 additions and 68 deletions

View File

@ -319,6 +319,12 @@ Documentation
4. Moved xdocs directory to src/site/src/documentation/content/xdocs per Issue 707. Site now builds using Forrest, just like the other Lucene siblings. See http://wiki.apache.org/jakarta-lucene/HowToUpdateTheWebsite for info on updating the website. (Grant Ingersoll with help from Steve Rowe, Chris Hostetter, Doug Cutting, Otis Gospodnetic, Yonik Seeley)
5. Added in Developer and System Requriements sections under Resources (Grant Ingersoll)
Build
1. Added in clover test code coverage per http://issues.apache.org/jira/browse/LUCENE-721 To enable clover code coverage, you must have clover.jar in the ANT classpath and specify -Drun.clover=true on the command line.(Michael Busch and Grant Ingersoll)
Release 2.0.0 2006-05-26
API Changes

View File

@ -45,6 +45,22 @@
<property name="junit.includes" value="**/Test*.java,**/*Test.java"/>
<property name="junit.excludes" value=""/>
<property name="clover.db.dir" location="${build.dir}/test/clover/db"/>
<property name="clover.report.dir" location="${build.dir}/test/clover/reports"/>
<available
property="clover.present"
classname="com.cenqua.clover.tasks.CloverReportTask"
/>
<condition property="clover.enabled">
<and>
<isset property="run.clover"/>
<isset property="clover.present"/>
</and>
</condition>
<available
property="javacc.present"
classname="org.javacc.parser.Main"
@ -112,7 +128,7 @@
</target>
<target name="compile-core" depends="init"
<target name="compile-core" depends="init, clover"
description="Compiles core classes">
<compile
srcdir="src/java"
@ -190,6 +206,48 @@
<fail if="tests.failed">Tests failed!</fail>
</target>
<!--
If you want clover test code coverage, run this before the tests. You need clover.jar and the license in your ANT classspath and you need to specify -Drun.clover=true on the command line.
See http://issues.apache.org/jira/browse/LUCENE-721
-->
<target name="clover" depends="clover.setup, clover.info" description="Instrument the Unit tests using Clover. Requires a Clover license and clover.jar in the ANT classpath. To use, specify -Drun.clover=true on the command line."/>
<target name="clover.setup" if="clover.enabled">
<taskdef resource="clovertasks"/>
<mkdir dir="${clover.db.dir}"/>
<clover-setup initString="${clover.db.dir}/lucene_coverage.db">
<fileset dir="src/java"/>
</clover-setup>
</target>
<target name="clover.info" unless="clover.present">
<echo>
Clover not found. Code coverage reports disabled.
</echo>
</target>
<target name="clover.check">
<fail unless="clover.present">
##################################################################
Clover not found.
Please make sure clover.jar is in ANT_HOME/lib, or made available
to Ant using other mechanisms like -lib or CLASSPATH.
##################################################################
</fail>
</target>
<!--
Run after Junit tests.
-->
<target name="generate-clover-reports" depends="clover.check, clover">
<mkdir dir="${clover.report.dir}"/>
<clover-report>
<current outfile="${clover.report.dir}" title="${final.name}">
<format type="html"/>
</current>
</clover-report>
</target>
<target name="generate-test-reports" description="Generates test reports">
<mkdir dir="${junit.reports}"/>
<junitreport todir="${junit.output.dir}">

View File

@ -118,6 +118,9 @@ document.write("<text>Last Published:</text> " + document.lastModified);
<a href="releases.html">Releases</a>
</div>
<div class="menuitem">
<a href="systemrequirements.html">System Requirements</a>
</div>
<div class="menuitem">
<a href="http://svn.apache.org/viewcvs.cgi/lucene/java/">Version Control</a>
</div>
</div>

View File

@ -120,6 +120,9 @@ document.write("<text>Last Published:</text> " + document.lastModified);
<a href="releases.html">Releases</a>
</div>
<div class="menuitem">
<a href="systemrequirements.html">System Requirements</a>
</div>
<div class="menuitem">
<a href="http://svn.apache.org/viewcvs.cgi/lucene/java/">Version Control</a>
</div>
</div>

View File

@ -120,6 +120,9 @@ document.write("<text>Last Published:</text> " + document.lastModified);
<a href="releases.html">Releases</a>
</div>
<div class="menuitem">
<a href="systemrequirements.html">System Requirements</a>
</div>
<div class="menuitem">
<a href="http://svn.apache.org/viewcvs.cgi/lucene/java/">Version Control</a>
</div>
</div>

View File

@ -120,6 +120,9 @@ document.write("<text>Last Published:</text> " + document.lastModified);
<a href="releases.html">Releases</a>
</div>
<div class="menuitem">
<a href="systemrequirements.html">System Requirements</a>
</div>
<div class="menuitem">
<a href="http://svn.apache.org/viewcvs.cgi/lucene/java/">Version Control</a>
</div>
</div>

View File

@ -120,6 +120,9 @@ document.write("<text>Last Published:</text> " + document.lastModified);
<a href="releases.html">Releases</a>
</div>
<div class="menuitem">
<a href="systemrequirements.html">System Requirements</a>
</div>
<div class="menuitem">
<a href="http://svn.apache.org/viewcvs.cgi/lucene/java/">Version Control</a>
</div>
</div>

View File

@ -120,6 +120,9 @@ document.write("<text>Last Published:</text> " + document.lastModified);
<a href="releases.html">Releases</a>
</div>
<div class="menuitem">
<a href="systemrequirements.html">System Requirements</a>
</div>
<div class="menuitem">
<a href="http://svn.apache.org/viewcvs.cgi/lucene/java/">Version Control</a>
</div>
</div>

View File

@ -118,6 +118,9 @@ document.write("<text>Last Published:</text> " + document.lastModified);
<a href="releases.html">Releases</a>
</div>
<div class="menuitem">
<a href="systemrequirements.html">System Requirements</a>
</div>
<div class="menuitem">
<a href="http://svn.apache.org/viewcvs.cgi/lucene/java/">Version Control</a>
</div>
</div>
@ -200,14 +203,14 @@ document.write("<text>Last Published:</text> " + document.lastModified);
<a name="N10020"></a><a name="Downloads"></a>
<h2 class="boxed">Downloads</h2>
<div class="section">
<p>Information on Lucene Java Downloads.</p>
<a name="N10028"></a><a name="Nightly"></a>
<p>System Requirements are detailed <a href="systemrequirements.html">here</a>.</p>
<a name="N1002C"></a><a name="Nightly"></a>
<h3 class="boxed">Nightly Build Download</h3>
<p>Nightly builds are based on the trunk version of the code checked into
<a href="https://svn.apache.org/repos/asf/lucene/java/trunk">SVN</a>
</p>
<a href="http://people.apache.org/dist/lucene/java/nightly/">Download</a><a name="N1003A"></a><a name="source"></a>
<a href="http://people.apache.org/dist/lucene/java/nightly/">Download</a><a name="N1003E"></a><a name="source"></a>
<h3 class="boxed">Source Code</h3>
<p>Subversion
The sourcefiles are now stored using Subversion (see http://subversion.tigris.org/ and http://svnbook.red-bean.com/)

View File

@ -69,10 +69,10 @@ endobj
>>
endobj
16 0 obj
<< /Length 1050 /Filter [ /ASCII85Decode /FlateDecode ]
<< /Length 1062 /Filter [ /ASCII85Decode /FlateDecode ]
>>
stream
Gatm:a_oie&A@B[GYEXBi\%4>->A&9D:'\"HY@_u/_X7#OKK?<q>4'J9e)H\!%A=Y*/^83oCupro3(R&(AnUQN0>)Uco`2cc'+nJ#,#(Ll'Jm2+@m&35]C?8)/mN-QpXOb-kr$Rhh1N'&7.d*2[a6@!.e-X4kLh\h,[#4EWKd5i7A9iVr3N@DGIpeLJ4nA/`#p5kc2_dFd3hm$@[W\9pZ$$SR;,Y."ec9HW8Q7@c@BO%att"_2q)+SBpjpC$"@2aK:4A.m7kI:-NrHDTi[jdM0u/GkfI+DI/SI[E)mM5C$,5)cpecN%C4c,+>>IVe/dj.UC.C!:1RAAr0tfqCM*"RL&F>HcRO386$tBglJYZo$],Q+4(s<`o@mkGGHl!D3-B2+t+#eng0mK0$R/S7],:CN4;D$V;r1D[]2[R2+lku_dot;:YO7k-p,D.EV?]h%QOJ=SQ&\m?##Zc:7p!,a"ek@,0'=uqGmDM>HKD_^ZTa*VoOWfo8R79U;SS:kZ).<#";3I84Ofb%>]%$45NV5Wc\/8#1ZNb[=3)W<Ya`c1m\jp(FJgW[9>]f!Ae"!BANO]g2dp6iUL/U*'kkH>fR+uUFoZ%+a$<EH<i4U+\D00(Oi(6RCZLF/6oQP9PArr$7S!b\VO\l)@\BhfRiFY>!5)2TUC9XAIE1>j_@C(g?cK6PpuVuX33eU*t*:B;Ylr,>udBg@9=RO_CAb)=U@g-$HIHLZW.e6kt%?dHeRbq]k3qVFZ*<!_hE@EmnXJZ8L@P+*:hsgF^a)5jFh74b0@F]:i<(WhdS1e`g!/JQXSbEXRM9f<FK5Ta(`nRfEU'KS(\E[&R\hTO-M%+1<`$pQ%hlYmJkP-BUH"54c'=3qrV>PCg^PKXiemX'nb1DeHoX1pm[>.(,JDlN-MNj":9#-\(o.;5KCnu7V\Dg@df&ML\a`JL8]op.n9Kh&<'3!\G&^NRnH+f@':GAqF\=QS#;upBs#.[eJ@,r=Tfo,XBt%[i@u*lFh"Mr^!+*V.oYbUs.s\eQKQP,A!`dh8l]\-lJ4o/!*&AucN~>
Gatm:?#S1G'Re<2nDbiMa59I5@tPpJQscuQJaqYVDB"n\SXjlf^W6.`mApbc"KKuH3qg8M*hReMb?=IG(-P(lVHJd)BV,^np;p0t!ao&:qW7*7&7l+k+?4HBN47gTbTWhl(^9'L\*.iJ`RbF3m=O"H6=:Ng&+53=^Qh[*>_(KPpj%VQ3Og3&S$Od=Tr;#KQ@=(TX4e9ZVClt5%Xru^V`kLD3WD'HU(!nclqocYN/7X1H;%g2"@JLIE'?2g<@K$aPM??j$6+LGTB.]09<H7uQeH[o&`C-:r4K<S[4#QgmXcjP+4ofYN&4-2&bXS5F1l6.<E74#!#ugoB8KMWL+MeXRL&GYGUOn:aAjgM15oS2b-,!bn::L8Aird2o1/XYToIL^8HK&>ID-s<fmE[&Q!3<n;FXo%OA^+TR6"=knJW]nc=+._p>+$FlHojN<DQ=t<-q5\FJ^]?<k4i*/#3(oT2[cSI;Y'+:1*Q`:SgM`7#^O/%*S@A=KUmc^m@bmk/WEV'96"IOt<QdjAg"@#";.284Ofb/VkjMkL,)9l`#cB9iF3"F/t6O_SopiN]&M3*a3?eGR+Be<NWrWp\e^^-GIKtF(K%eOVi+%7Hcu$JgD73Ifut,"VV`9%.A<N<na*^bT^HRWoIVV",p/Lae@'M$IdU?JC2S@ge_t7r9/ZCiM"m6d*bqHPV+Ha*%\;$#nO/CU],]lh#3WM>O/l'2fIa/*`g.h=II#mD-$2+-I#e\,ss`!b)\]&X1>iTTYkn,=0dDcr>=Fa+4QKKY_5!sK3RNU\J<0n;`D+VnU[@g8GBj9C=G`-=P@=kFr+]egYIeX:`[Sjd#>IEg;f]:&76+/H@(I5Ae[#E6/n,`8_3?[f:clGE#h)7"9H=bI@.S_=msmAQ$T4LB_GL"!Z6(Zp?SNlN)9Wi53NMC_HZgfp[Z3TZ#YV^]&o3eb97arI[-rg.MCg"dI9.!;j&gUHkbQ5edrh2HNo\-P-4FhBA/[&q+Eed&WXOn&/*h<ADS7+@qf;*bPHLGGs?APRk!<F.NGm^V)Q!<2R&HHAukL\0)>\D"_WJ~>
endstream
endobj
17 0 obj
@ -205,34 +205,34 @@ endobj
xref
0 29
0000000000 65535 f
0000004136 00000 n
0000004201 00000 n
0000004293 00000 n
0000004148 00000 n
0000004213 00000 n
0000004305 00000 n
0000000015 00000 n
0000000071 00000 n
0000000713 00000 n
0000000833 00000 n
0000000879 00000 n
0000004427 00000 n
0000004439 00000 n
0000001014 00000 n
0000004490 00000 n
0000004502 00000 n
0000001150 00000 n
0000004556 00000 n
0000004568 00000 n
0000001286 00000 n
0000004622 00000 n
0000004634 00000 n
0000001423 00000 n
0000002566 00000 n
0000004688 00000 n
0000002674 00000 n
0000002889 00000 n
0000003075 00000 n
0000003307 00000 n
0000003474 00000 n
0000003587 00000 n
0000003697 00000 n
0000003805 00000 n
0000003911 00000 n
0000004027 00000 n
0000002578 00000 n
0000004700 00000 n
0000002686 00000 n
0000002901 00000 n
0000003087 00000 n
0000003319 00000 n
0000003486 00000 n
0000003599 00000 n
0000003709 00000 n
0000003817 00000 n
0000003923 00000 n
0000004039 00000 n
trailer
<<
/Size 29
@ -240,5 +240,5 @@ trailer
/Info 4 0 R
>>
startxref
4739
4751
%%EOF

View File

@ -118,6 +118,9 @@ document.write("<text>Last Published:</text> " + document.lastModified);
<a href="releases.html">Releases</a>
</div>
<div class="menuitem">
<a href="systemrequirements.html">System Requirements</a>
</div>
<div class="menuitem">
<a href="http://svn.apache.org/viewcvs.cgi/lucene/java/">Version Control</a>
</div>
</div>

View File

@ -120,6 +120,9 @@ document.write("<text>Last Published:</text> " + document.lastModified);
<a href="releases.html">Releases</a>
</div>
<div class="menuitem">
<a href="systemrequirements.html">System Requirements</a>
</div>
<div class="menuitem">
<a href="http://svn.apache.org/viewcvs.cgi/lucene/java/">Version Control</a>
</div>
</div>

View File

@ -120,6 +120,9 @@ document.write("<text>Last Published:</text> " + document.lastModified);
<a href="releases.html">Releases</a>
</div>
<div class="menuitem">
<a href="systemrequirements.html">System Requirements</a>
</div>
<div class="menuitem">
<a href="http://svn.apache.org/viewcvs.cgi/lucene/java/">Version Control</a>
</div>
</div>

View File

@ -120,6 +120,9 @@ document.write("<text>Last Published:</text> " + document.lastModified);
<a href="releases.html">Releases</a>
</div>
<div class="menuitem">
<a href="systemrequirements.html">System Requirements</a>
</div>
<div class="menuitem">
<a href="http://svn.apache.org/viewcvs.cgi/lucene/java/">Version Control</a>
</div>
</div>

View File

@ -118,6 +118,9 @@ document.write("<text>Last Published:</text> " + document.lastModified);
<a href="releases.html">Releases</a>
</div>
<div class="menuitem">
<a href="systemrequirements.html">System Requirements</a>
</div>
<div class="menuitem">
<a href="http://svn.apache.org/viewcvs.cgi/lucene/java/">Version Control</a>
</div>
</div>
@ -187,6 +190,7 @@ document.write("<text>Last Published:</text> " + document.lastModified);
</li>
<ul>
<ul>
<li>
@ -321,7 +325,13 @@ document.write("<text>Last Published:</text> " + document.lastModified);
<li>
<a href="releases.html">Releases</a>&nbsp;&nbsp;&nbsp;_________________________&nbsp;&nbsp;<em>release</em>
</li>
</ul>
</ul>
<ul>
<li>
<a href="systemrequirements.html">System Requirements</a>&nbsp;&nbsp;&nbsp;_________________________&nbsp;&nbsp;<em>system</em>
</li>
</ul>
<ul>
<li>

View File

@ -36,10 +36,10 @@ endobj
>>
endobj
10 0 obj
<< /Length 1305 /Filter [ /ASCII85Decode /FlateDecode ]
<< /Length 1313 /Filter [ /ASCII85Decode /FlateDecode ]
>>
stream
Gatn'>ArL\!/9>+'n2Zu^uKd)7ljqU=j:^9K!l1OUFHBOU-_PE!8Duf:'/B%e=0'J.htb<F$=C^hlc+:5N\a(&V>!8,79l@L2lh-;%`u(=2=j^q\q4]&4Ad&B)XRB]H:Vn0kEUCYSc2UY3)K4dg4moJU'FG?o9\HjqiZQ.\l-G!TmVUmjAN.K/%(O50_Qq7eT99p[>ksZBf'-I0MpPr6OdMi)]X8`'YE$KfBaN,_<l7_>oc0aFtcW,2TU&+G??q^.e?@cXRZ].^5kPn9pqNZ6>5hb"(@87908_8rY=>_U5KC>5fTL&If!YO@2#&(upWdZ;CEZ&;qm=4OR!S:F2G?GT9$A2V$[iW=O\F#(e.sD(jX7?'L-.6j2PZl)$5<pKCUKF>8Q&$ca[1-kF_1(lGfeDUhU!\a0F'Gj4+8`%Y^16&M&IYj5!'NRn_&8M6e4(&GgOor&C%^*bt+fgI3ELgtm=X79&I;`u*CNfbt[f.,Nnc$Y`+KdoG["G'-2*4MceL.;>=YV/S3gM_Kr?FOBPOhr]Em?m=!pJFE4Q`)E;B'X<6T*"O"@PEXKa(f$s%hWjA93&<uk[Lf8H8uZPS$p5QEQ_V_+\kXX&XlJ_!de#pY8m-*H'lZ(iLYQn$[\_A._SRBi,1HH7'Yd@)k1hr<Zf,R$24Vc7b2]ZY'T)1Sa*eW:P8L+1:\!WEP8Q@0%.uuD8^k=\]j5LfX+m9e:3%RAq/40S$qd_2&]P/r?5](HqCp(95Ue%ZPPEAL'!i4;8O=)kJh+=S^`F6C#fZO/2NjHNebE<SPnJB<+k/52B;Ugoh[ac+-Ca$in.uUXG=a\R6CAVQ^-:j/9lBWc!H_r7_2YBBJL2H^;+!sKA<DreA2N$!X4K&X/2XU6n"-M+5a)5D^B_4e*JN.!&AW`15@X>[V1'F6-?Db)LnU&`gJ<k(KL7[Sj:GcA(rPpBf:@3+GBNQE\B@,XhqR6U>9/.7_2M>L-sH,R=EG:kr+UR&QYr,kU^V[(P4ZeeY*u,2NFai4L=acH)<]4LULnbgSrT/4^=3V)ANYBMiemIU"f)CF_$epb4?g(c^Kh2pVk,\Ce-d"g9s/g0Z9%=O^9LL&4>T=#I@uSS:V#FLe6#p483E![O71[9n^]fD7[&,:RYLUp&YAl#Y+`6Ddn_T]X]oAqcf7cL>3WnR"C!ZN]m3oVCU8Z=MPbrh\*bm7#Y?:6("/+95kFuK8r$mYA3g+Mq,CVopYane'K*/-%_6B9CoRX$^4kbg#\XElXP8Q4F]+dqf:A]l(D$nZfqk"G@d%N-1sPV@Gc7C!#D,u1B~>
Gatn'>BALX!/9>+'ma[<:j'8G8=CjRSaL;,R*EP:cAjV7GQKdcD:nd`au3WVNN1:&a\4t<3p/lYdHtO+q/&-;R33=o0qt=fAJfWp*$m<>C'38kI(TQF"@3.nBDO:Ah>8Y`&5rdt"KTY^jCUFJ1lhY)*a%P<"?$pqTRS[5W\URr(LXcYIt,9',FFX#k//r[mGqBNo'u\AWbc5!e/uNA@/9]h%<*tJGNPS-`^3pd=HYpY!F^N#!+`tY%M9dbrZQre%6i&4GL'b5T.@-ZW:74>AD%Pb"6G$8T<#!e:6fQoMM7m2(QJ>)#SA'_&s,L.q%Vk?A%&Dk-4l(^D`lH6e4h7#%sT'[oKLft8#_N&49^<_Ui.p8W4FJUkX5R6pZ^fqD-A7O5e<=M_1cHb?^6%]/;E/4])1b<Q!BB$=M9a`J&O*P$pfc<`GcYfVk'.bSKuh7qZd"5>E,RW7_WLbPZ^L(M25_lg/c[dS>OFN+HDR75dsbEme(sk2FUW#NX,]MKNN-X.eA]*Q=*dWB(oZPB"[NM_BO\\7+3kR'L,)*@991@A=7</WHo&m@u.rHN\.;sU$X)c`0I??<Dg`8m<Uc,''m!D`,a%;GonE1XpE9b%tQkpOuEkrqVimN9=Q2ho>4b3kEXc!9lN&W:nlT_c*beQ^SlKuBu4/,\W]`dPade[dA3f,kL6(fO*#8mA_aXeV2BBXViA2:37n!(!h5MA<V:haXPR<+l_`pYl]%e77GimEKe#_*X]3;t[!:,BB.0uZ'ICtDIHbRFoi^++9-[N2(7FTdIQRbYm$&.+VnNH6fPp27el2*Dr/.kN(8kKfZQ9amB6NA!;:\aJZJaONf6^e4)6$Kddps^r>_0GN8%GZ1;?\_,#o"r!XO`-7O&-s#5/,NhCF"5*dd/u=!&AujdYBU,[ci*fJs9\F2#^%(SMaDr/aDi)4b8hPbI1Upe'*<7+G@7fngJ];Xi%X7U>K:E7VYcn_]e<&bi6$JjF1pb8,:RK9(%I5Cf"p@<DDfUm,aq[0m+f+00R%)Xfc[%<n/gEc-`"(_(=XC=F+U(/=7qYMuIC;Tfch?NdurZ'=hh(]INdsQ15qa.J3*@Tn1EAWUd^CbT-lg0k==kl[:nU'L\<T9Tl+'V;WW3B8HcUEa:ltdt;q@dTtDq[iuYX0]M8XVU$j,]1U2cX->Pt>T;(XJqWB+55X06)r$Dj^_dO<'>^&(N#O]DR-Qb,E"FgbNX)Q0e_sLCRr-X?FdFenV)]Si"<fLcQ<Q?bAqr3!bDRig:AsGHo#\OZbB8<]K1<9)DCkG:[8E6t<(FKRA(uD6I,h/S~>
endstream
endobj
11 0 obj
@ -51,10 +51,10 @@ endobj
>>
endobj
12 0 obj
<< /Length 641 /Filter [ /ASCII85Decode /FlateDecode ]
<< /Length 662 /Filter [ /ASCII85Decode /FlateDecode ]
>>
stream
Gatn$95g:b&BF6eMET[K9Qu8?*h+Ql<EX#SF/pgLg?V7$%)k2+^3u><%&D_3&clF.Z"Eu"Ap9Wc.(G:hhZ4s;GC9f,"\PSTm[&k&q19K+\(m.=_7/>X$9m5N_Fdn:$>:/Ch8oqdV,I^-P&_0uP4,.`U):KNXNEA/@"::Be`PY2N6)SCI;qUE..e\r9(Q43[gAOn3B]igJ"djg:]Z%JNP,^'=/8,lVpUk9oUrbphl1?r&Vl*^qKCDng]bR)=:a-!:#a#BSHirN?(O747BmqjWtg</qpO.PonciZAO(Tm-\mE3fp6h?MULj#@\7Hl)\7S`h!H9<=&0aF;oFiFHffC^9[dfk4V<Xh^<X9*m^7F:j/Vo;Ht,e%(HE9?dG$GL1;iL%1iQ0gqp'0;f/f7ZL>KYT4VWh!^re+oH:7L=c:$\RoQJ=Jlf<LCR/j4jYO[PZM$DfGWlC'.+YY`q`,o3_NN*[0-.+=0G5(;WcC,a'cmm(3(!3BU-(9ZZ!C]#P<\O'%rE%6_d&I\iMq<B^Y_1)31[IB%ihAO*KQ'(-Lus_eeZ#_"loEt+2as!-='lgZXL4-ffileC[`6?=??GRK\gm]tH,jui*d5`:fVUaoKI'3*<8.50D>,r<Z:ej=pD5S!hBr~>
Gatn$gMY_1&;KZP'RL-&9R"O(nmrI\XX]R4_0;`]>Z_K8K3_tbjmBZD"P[WL+;k_+ZdqA@VqIW3X3eHb^#'kUC]""i"V`AI;VEK7jo5WB#"Wc%IX9naX3g`_.gSN>-<ti';Gm=&KZS73$42l9&jDHHUH,%cP6k`!V@`n?^5Z,57]t()r#jr7CF"s1Y9pslhO<LP@1eRuUItHZC=%>3gkfY7?3IBG;P=7+4cRH<i&bW=,%t8G#*#0A'7n[pd-UYQ<39eBd4h<`<t3=T.T?E%JbEK7\1gRfK([!/Sj&T3Yoee&(&5lIf%DeNWEMpZCl[ag@<SO0SWCWERnV)58`o&Ad%&iH,l@"$@s<g_8mOUO3F8Rs2RK%]6%FBUF4h+q9k17"1AkNPff(o-N;ChcWOEc5DSgsO9'mA7H/Ip]5-B<HhqT60`F`N>PeH3VpMJ2EPMFh7Z`hi5Tk"5#_S4241*dc_=&_m^`I)&1e;DqfW#AYb#a@`hWS?74V`8I4<:dJeN0TQ'"\LVhPQH__Pce=_.Jp;Q^d5$@lonbMc28&$UWjb_NJ`Y^1`!t%]HEYIDH<[H::$:7]A=6%5$cu"-s.E3V6Z)tNG4$+=hNt<ZZK4FM=]$8D0jhdj'nMGTHd*m2Q4:_S_3:'rbRnI(@Eh$@fbE~>
endstream
endobj
13 0 obj
@ -144,27 +144,27 @@ endobj
xref
0 22
0000000000 65535 f
0000003990 00000 n
0000004062 00000 n
0000004154 00000 n
0000004019 00000 n
0000004091 00000 n
0000004183 00000 n
0000000015 00000 n
0000000071 00000 n
0000000519 00000 n
0000000639 00000 n
0000000664 00000 n
0000004288 00000 n
0000004317 00000 n
0000000799 00000 n
0000002197 00000 n
0000002305 00000 n
0000003038 00000 n
0000004351 00000 n
0000003146 00000 n
0000003323 00000 n
0000003436 00000 n
0000003546 00000 n
0000003657 00000 n
0000003765 00000 n
0000003881 00000 n
0000002205 00000 n
0000002313 00000 n
0000003067 00000 n
0000004380 00000 n
0000003175 00000 n
0000003352 00000 n
0000003465 00000 n
0000003575 00000 n
0000003686 00000 n
0000003794 00000 n
0000003910 00000 n
trailer
<<
/Size 22
@ -172,5 +172,5 @@ trailer
/Info 4 0 R
>>
startxref
4402
4431
%%EOF

View File

@ -120,6 +120,9 @@ document.write("<text>Last Published:</text> " + document.lastModified);
<a href="../releases.html">Releases</a>
</div>
<div class="menuitem">
<a href="../systemrequirements.html">System Requirements</a>
</div>
<div class="menuitem">
<a href="http://svn.apache.org/viewcvs.cgi/lucene/java/">Version Control</a>
</div>
</div>

View File

@ -120,6 +120,9 @@ document.write("<text>Last Published:</text> " + document.lastModified);
<a href="releases.html">Releases</a>
</div>
<div class="menuitem">
<a href="systemrequirements.html">System Requirements</a>
</div>
<div class="menuitem">
<a href="http://svn.apache.org/viewcvs.cgi/lucene/java/">Version Control</a>
</div>
</div>

View File

@ -120,6 +120,9 @@ document.write("<text>Last Published:</text> " + document.lastModified);
<a href="releases.html">Releases</a>
</div>
<div class="menuitem">
<a href="systemrequirements.html">System Requirements</a>
</div>
<div class="menuitem">
<a href="http://svn.apache.org/viewcvs.cgi/lucene/java/">Version Control</a>
</div>
</div>

View File

@ -118,6 +118,9 @@ document.write("<text>Last Published:</text> " + document.lastModified);
<div class="menupagetitle">Releases</div>
</div>
<div class="menuitem">
<a href="systemrequirements.html">System Requirements</a>
</div>
<div class="menuitem">
<a href="http://svn.apache.org/viewcvs.cgi/lucene/java/">Version Control</a>
</div>
</div>
@ -193,7 +196,8 @@ document.write("<text>Last Published:</text> " + document.lastModified);
<h3 class="boxed">Official Release</h3>
<p>Official releases are usually created when the <a href="whoweare.html">developers</a> feel there are
sufficient changes, improvements and bug fixes to warrant a release.
Due to the voluntary nature of Lucene, no releases are scheduled in advance.</p>
Due to the voluntary nature of Lucene, no releases are scheduled in advance. System Requirements are detailed
<a href="systemrequirements.html">here</a>.</p>
<p>Both binary and source releases are available for
<a href="http://www.apache.org/dyn/closer.cgi/lucene/java/">download from the Apache Mirrors</a>
</p>

View File

@ -47,10 +47,10 @@ endobj
>>
endobj
12 0 obj
<< /Length 817 /Filter [ /ASCII85Decode /FlateDecode ]
<< /Length 847 /Filter [ /ASCII85Decode /FlateDecode ]
>>
stream
GatU19omaW&A@7.pp`k!YO095F/2'&X?aRa)fY9n:)h<7Mj(O7^W6.`1YK2<KIYLiJ'>S"`\Uqu_7MQ!)%\>48OCpd&Z+=)8KnaeCNP!pnK%i?_$%_>o)B<j^)*#D)Fhe^oFuZZQ>(<I&r:]MdNTfI*I&+o8'u94$N9Z8V-ETZL>l9J_0S%!Dsa5R<os!2V5enu*jsCqepdE"8fn6U[.f#6JdN_Rj7ib8q14;W>T?U!i0n.b'LuV_oY)fVgT%-XeJ&sOIqUWDl,eBNHhHhY0Vn6RfcV!LJ9Z1UgZKfo^mc\cF!6UTJD']s'P1;pF,'Umr*4t9VVr+U/@#*lmC=@,d8Bi5W:#oCPFN,=hq"nbk'<E:S5tURJfclh,d5mO_n"W>@s?W-mtK>)[N.i,Ks'/OXKEHQIA<gMY&?gmk!Zbqj@HZ5m[W,!XZq7$VED8%!3?#$2/"N`W16ctKK<$B<`uIV]9t+S\#-8GjaaS#C0F0c(,&>?(2UDq(%A%QNsbe.Z$!M&H#$e799;Z/mo>WeHnc%>rZ[A2QF>HH:!79@C*n1B>F4S1nZF&-AR?AKAAFGu*8l""SH(3&]=fE`l^c1krNUIi\mqqU>;7CC"D]A!&gtDQ$=DGM,m2iBM\%i[0n\<I1pr]RZ\EUk*JHN,Q^VjEg3^Xb&QnP-n9m1cY3q3Xh:%_;\VD0I&1,%rM\5bt[@W"]J3#":>Cn.7&I0rrjW#X&7l'WZd)"6O]6e__HIGrK=37N=ST-\nN0&:idSV\Y:W$Ri[7,-RZTcU7Cg6$"l[Zf+@j[t3>m"<_g?j"m3rX'iJA[$~>
GatU1?#Q2d'Rf.Gpp$#$(E8=Xj0C8eW_M5OhR5SW?kO^iVZtTBhp6Zq>W7MJBo3V7`kM3&F6qpu(4=2TV]`o%'k)dlB1tkrA76r!Z>4RXj8CP:dL_0^@Bo]j=oZ2Y%$N)/<h[Rl>Hl>'Rh\GhT9,=(Lt7.#i-kfg9B4)f:JeJghld<7K,/Q"F7nBPf@n<?R>5<Ybe_!@8iFh?re[qmYmiI!^R[VY0c!?$KLO^L734(9#T[p\Qmfd*+!H'694PH:X\:n0L@:bG>h*SLn)RgSHP[O-n\8gl"=Kl4pnVi+7s(VHQ4hEO3+r?CpemDX?:fQsr$))56oZ@;!C\3:p`&W=%l#@Dq576[;=u0)(6IE2S^dLI*ltIHXTF/?D\Nbdh13Iug+.#`b(AuV;VITMX*LP2D?-a&(0'24HEEY%M'Ti5`c66:[+arLfrM5ZI;,TAG&%)Yq?8lm%;8RA.j51D_B(gNSN<C_@qKY$=1?TZ@VaY?Y^KHa4qcITZ8p*Y48RsP^`S5Hnr5+[%@+#FNj@<\3er\X]JQbE_X73L<VD)Slfm<Lat(l_NR'qhe8=U[qU2_iTMnj;7!Tt7VR*fo&`aQKB-ih/NuAEe2Zed_G6+><fj56[m7udtr`iTAm(ko)<YPi[_t+^bJQ$4+gmJ>>l.G?mKl`dTKL,o+%P>?71Vr,87*IALBB];:0b@)HN]ETQ`&Rtd]qdc8$$cuN3QR>=;!P1`4sBqUf02_4=sr9N5@Hj'bePf!(rL()OGFn`A5)[Als=M9h@-=+Z/jR85oH(8)MZ?RAJ8LhQXPgp9\DU*WfJATe()EVj'])blT#es2]u.\Z?oT%>N@_=4k\6~>
endstream
endobj
13 0 obj
@ -148,27 +148,27 @@ endobj
xref
0 22
0000000000 65535 f
0000003058 00000 n
0000003123 00000 n
0000003215 00000 n
0000003088 00000 n
0000003153 00000 n
0000003245 00000 n
0000000015 00000 n
0000000071 00000 n
0000000632 00000 n
0000000752 00000 n
0000000784 00000 n
0000003338 00000 n
0000003368 00000 n
0000000919 00000 n
0000003401 00000 n
0000003431 00000 n
0000001055 00000 n
0000001964 00000 n
0000003467 00000 n
0000002072 00000 n
0000002319 00000 n
0000002502 00000 n
0000002615 00000 n
0000002725 00000 n
0000002833 00000 n
0000002949 00000 n
0000001994 00000 n
0000003497 00000 n
0000002102 00000 n
0000002349 00000 n
0000002532 00000 n
0000002645 00000 n
0000002755 00000 n
0000002863 00000 n
0000002979 00000 n
trailer
<<
/Size 22
@ -176,5 +176,5 @@ trailer
/Info 4 0 R
>>
startxref
3518
3548
%%EOF

View File

@ -120,6 +120,9 @@ document.write("<text>Last Published:</text> " + document.lastModified);
<a href="releases.html">Releases</a>
</div>
<div class="menuitem">
<a href="systemrequirements.html">System Requirements</a>
</div>
<div class="menuitem">
<a href="http://svn.apache.org/viewcvs.cgi/lucene/java/">Version Control</a>
</div>
</div>

View File

@ -120,6 +120,9 @@ document.write("<text>Last Published:</text> " + document.lastModified);
<a href="releases.html">Releases</a>
</div>
<div class="menuitem">
<a href="systemrequirements.html">System Requirements</a>
</div>
<div class="menuitem">
<a href="http://svn.apache.org/viewcvs.cgi/lucene/java/">Version Control</a>
</div>
</div>

View File

@ -14,7 +14,7 @@
href="">here</a></p>
</section> -->
<section id="Downloads"><title>Downloads</title>
<p>Information on Lucene Java Downloads.</p>
<p>System Requirements are detailed <a href="systemrequirements.html">here</a>.</p>
<section id="Nightly">
<title>Nightly Build Download</title>
<p>Nightly builds are based on the trunk version of the code checked into

View File

@ -11,7 +11,8 @@
<section id="Official"><title>Official Release</title>
<p>Official releases are usually created when the <a href="whoweare.html">developers</a> feel there are
sufficient changes, improvements and bug fixes to warrant a release.
Due to the voluntary nature of Lucene, no releases are scheduled in advance.</p>
Due to the voluntary nature of Lucene, no releases are scheduled in advance. System Requirements are detailed
<a href="systemrequirements.html">here</a>.</p>
<p>Both binary and source releases are available for
<a href="http://www.apache.org/dyn/closer.cgi/lucene/java/">download from the Apache Mirrors</a></p>
</section>

View File

@ -36,6 +36,10 @@ See http://forrest.apache.org/docs/linking.html for more info
'How can I use a start-up-page other than index.html?' in the FAQs has more
information tells you how to change that.
-->
<!--
With the exception of the About section, please try to keep items in alphabetical order by "label"
-->
<about label="About">
<overview label="Overview" href="index.html" description="Welcome to Java Lucene"/>
<features label="Features" href="features.html"/>
@ -61,7 +65,8 @@ See http://forrest.apache.org/docs/linking.html for more info
<developers label="Developers" href="developer-resources.html"/>
<issues label="Issue Tracking" href="ext:issues"/>
<contact label="Mailing Lists" href="mailinglists.html"/>
<release label="Releases" href="releases.html"/>
<release label="Releases" href="releases.html"/>
<system label="System Requirements" href="systemrequirements.html"/>
<svn label="Version Control" href="ext:source" />
</resources>
<versions label="Site Versions">

View File

@ -0,0 +1,30 @@
<?xml version="1.0"?>
<document>
<header><title>Apache Lucene - System Requirements</title></header>
<properties>
<author email="gsingers@apache.org">Grant Ingersoll</author>
</properties>
<body>
<!-- <section id="Code Coverage"><title>Code Coverage</title>
<p>Code Coverage reports are available <a
href="">here</a></p>
</section> -->
<section id="System Requirements"><title>System Requirements</title>
<p>
The latest Lucene <a href="releases.html">release</a> has the following minimum requirements:
<ul>
<li>Java 1.4.x or greater.</li>
<li>ANT 1.6.5 or greater.</li>
<li>JUnit 3.8.1 if you wish to run the unit tests.</li>
<li>CPU, Disk and Memory requirements are based on the many choices made in implementing Lucene (document size, number of documents, and number of hits retrieved to name a few.)
The <a href="benchmarks.html">benchmarks</a> page has some information related to performance on particular platforms.
Also, the <a href="http://svn.apache.org/viewvc/lucene/java/trunk/contrib/benchmark/">Contrib/benchmark</a> module has code related to benchmarking a standard set of documents.</li>
</ul>
</p>
<p>Contrib modules may have other requirements, refer to their documentation and build files for information.</p>
</section>
</body>
</document>