You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-dev@lucene.apache.org by Chris Hostetter <ho...@apache.org> on 2006/12/15 20:58:04 UTC

Re: svn commit: r487638 - in /incubator/solr/trunk: README.txt build.xml

I'd appreciate a little copy editing on this ... i'm not the best
grammerist.

Also: one hitch when adding the site to the distribution, was that the
link the the left nav of the HTML pages ot the javadocs doesn't work ...
it wants one extra level of "docs" tags and i couldn't think of anyway to
fix it that wouldn't break the actual website.

We may want to move stuff arround on the site so a relative link can work
better.



: Date: Fri, 15 Dec 2006 19:53:11 -0000
: From: hossman@apache.org
: Reply-To: solr-dev@lucene.apache.org
: To: solr-commits@lucene.apache.org
: Subject: svn commit: r487638 - in /incubator/solr/trunk: README.txt
:     build.xml
:
: Author: hossman
: Date: Fri Dec 15 11:53:10 2006
: New Revision: 487638
:
: URL: http://svn.apache.org/viewvc?view=rev&rev=487638
: Log:
: added copy of the website to the distribution, and added some verbage to the README.txt file so it would be more usefull to people downloading distributions
:
: Modified:
:     incubator/solr/trunk/README.txt
:     incubator/solr/trunk/build.xml
:
: Modified: incubator/solr/trunk/README.txt
: URL: http://svn.apache.org/viewvc/incubator/solr/trunk/README.txt?view=diff&rev=487638&r1=487637&r2=487638
: ==============================================================================
: --- incubator/solr/trunk/README.txt (original)
: +++ incubator/solr/trunk/README.txt Fri Dec 15 11:53:10 2006
: @@ -32,11 +32,46 @@
:  code repositories, and other details, please see the Solr incubation web site at
:  http://incubator.apache.org/projects/solr.html.
:
: -See the "example" directory for an example Solr setup.
:
:
: -Instructions for Building Apache Solr
: --------------------------------------
: +Getting Started
: +---------------
: +
: +See the "example" directory for an example Solr setup.  A tutorial
: +using the example setup can be found in "docs/tutorial.html"
: +
: +
: +
: +Files Included In Apache Solr Distributions
: +-------------------------------------------
: +
: +dist/apache-solr-XX-incubating.war
: +  The Apache Solr Application.  Deploy this WAR file to any servlet
: +  container to run Apache Solr
: +
: +dist/apache-solr-XX-incubating.jar
: +  The Apache Solr Libraries.  This JAR file is needed to compile
: +  Apache Solr Plugins (see http://wiki.apache.org/solr/SolrPlugins for
: +  more information).
: +
: +example/
: +  A Self contained example Solr instance, complete with sample
: +  configuration, documents to index, and the Jetty Servlet container.
: +  Please see example/README.txt for information about runnig this example
: +
: +docs/index.html
: +  The contents of the Apache Solr website.
: +
: +docs/api/index.html
: +  The Apache Solr Javadoc API documentation.
: +
: +src/
: +  The Apache Solr source code.
: +
: +
: +
: +Instructions for Building Apache Solr from Source
: +-------------------------------------------------
:
:  1. Download the J2SE 5.0 JDK (Java Development Kit) or later from http://java.sun.com.
:     You will need the JDK installed, and the %JAVA_HOME%\bin directory included
: @@ -48,8 +83,10 @@
:     command path.  To test this, issue a "ant -version" command from your
:     shell and verify that Ant is available.
:
: -3. Download the Apache Solr source distribution, linked from the above incubator
: -   web site.  Expand the distribution to a folder of your choice, e.g. c:\solr.
: +3. Download the Apache Solr distribution, linked from the above incubator
: +   web site.  Expand the distribution to a folder of your choice, e.g. c:\solr.   Alternately, you can obtain a copy of the latest Apache Solr source code
: +   directly from the Subversion repository:
: +   http://incubator.apache.org/solr/version_control.html
:
:  4. Navigate to that folder and issue an "ant" command to see the available options
:     for building, testing, and packaging solr.
:
: Modified: incubator/solr/trunk/build.xml
: URL: http://svn.apache.org/viewvc/incubator/solr/trunk/build.xml?view=diff&rev=487638&r1=487637&r2=487638
: ==============================================================================
: --- incubator/solr/trunk/build.xml (original)
: +++ incubator/solr/trunk/build.xml Fri Dec 15 11:53:10 2006
: @@ -404,6 +404,9 @@
:            description="Packages the Solr Distribution files and Documentation."
:            depends="dist, example, javadoc">
:
: +    <copy todir="${build.docs}">
: +      <fileset dir="site" />
: +    </copy>
:      <zip destfile="${dist}/${fullnamever}.zip">
:        <zipfileset dir="."
:          prefix="${fullnamever}"
: @@ -412,8 +415,8 @@
:        <zipfileset dir="."
:          prefix="${fullnamever}"
:          includes="dist/*.jar dist/*.war" />
: -      <zipfileset dir="${dest}/docs/api/"
: -        prefix="${fullnamever}/docs/api/" />
: +      <zipfileset dir="${build.docs}"
: +        prefix="${fullnamever}/docs/" />
:      </zip>
:      <solr-checksum file="${dist}/${fullnamever}.zip"/>
:
: @@ -425,8 +428,8 @@
:        <tarfileset dir="."
:          prefix="${fullnamever}"
:          includes="dist/*.jar dist/*.war" />
: -      <tarfileset dir="${dest}/docs/api/"
: -        prefix="${fullnamever}/docs/api/" />
: +      <tarfileset dir="${build.docs}"
: +        prefix="${fullnamever}/docs/" />
:      </tar>
:      <solr-checksum file="${dist}/${fullnamever}.tgz"/>
:
:
:

-Hoss