You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oodt.apache.org by ma...@apache.org on 2010/07/13 04:34:38 UTC

svn commit: r963588 - in /incubator/oodt/trunk: CHANGES.txt filemgr/src/site/xdoc/user/basic.xml

Author: mattmann
Date: Tue Jul 13 02:34:38 2010
New Revision: 963588

URL: http://svn.apache.org/viewvc?rev=963588&view=rev
Log:
- fix for OODT-14 User guide pre-requisite to checkout and install oodt-core before attempting to build cas-filemgr

Modified:
    incubator/oodt/trunk/CHANGES.txt
    incubator/oodt/trunk/filemgr/src/site/xdoc/user/basic.xml

Modified: incubator/oodt/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/oodt/trunk/CHANGES.txt?rev=963588&r1=963587&r2=963588&view=diff
==============================================================================
--- incubator/oodt/trunk/CHANGES.txt (original)
+++ incubator/oodt/trunk/CHANGES.txt Tue Jul 13 02:34:38 2010
@@ -5,12 +5,13 @@ Apache OODT Change Log
 Release 0.1-incubating - Current Development
 -----------------------------------
 
-1. OODT-1 - Import grid product, profile, and query services into OODT SVN (mattmann, joes)
+* OODT-14 User guide pre-requisite to checkout and install oodt-core before attempting to 
+   build cas-filemgr (Cameron Goodale via mattmann)
 
-2. OODT-2 - Import CAS components into OODT SVN (mattmann, joes)
+* OODT-4 - Merge cas-commons and edm-commons (mattmann)
 
-3. OODT-8 - grid-product/pom.xml references tika ver. 0.2-SNAPSHOT, which no longer exists (David Kale via mattmann)
-
-4. OODT-4 - Merge cas-commons and edm-commons (mattmann)
+* OODT-8 - grid-product/pom.xml references tika ver. 0.2-SNAPSHOT, which no longer exists (David Kale via mattmann)
 
+* OODT-2 - Import CAS components into OODT SVN (mattmann, joes)
 
+* OODT-1 - Import grid product, profile, and query services into OODT SVN (mattmann, joes)

Modified: incubator/oodt/trunk/filemgr/src/site/xdoc/user/basic.xml
URL: http://svn.apache.org/viewvc/incubator/oodt/trunk/filemgr/src/site/xdoc/user/basic.xml?rev=963588&r1=963587&r2=963588&view=diff
==============================================================================
--- incubator/oodt/trunk/filemgr/src/site/xdoc/user/basic.xml (original)
+++ incubator/oodt/trunk/filemgr/src/site/xdoc/user/basic.xml Tue Jul 13 02:34:38 2010
@@ -39,6 +39,29 @@
      
       <a name="section1"/>
       <section name="Download and Build">
+      <div class="warning">
+        <p><b>Pre-Requisite:</b> Before you can build a copy of the CAS-File Manager you will
+        need to check out and install the oodt-core project.  Installing the oodt-core project
+        will update your Maven2 repo with several files that are required for the CAS-File Manager.
+        In order to check out and install the core follow the steps outlined below:</p>
+        <source>
+>mkdir /usr/local/src
+>cd /usr/local/src        
+>svn co http://oodt/repo/oodt-core        
+        </source>
+      <p>Once the subversion command completes you should have a directory at <code>/usr/local/src/oodt-core</code>
+      which will contain a couple files.  In order to build the project from this source, issue the following 
+      commands:</p>
+        <source>
+>cd /usr/local/src/oodt-core
+>mvn clean install        
+        </source>
+        <p>Once you get the Maven Build Successful message you can proceed with the installation 
+        of the CAS-File Manger</p>
+        </div>
+        <br/>
+        <br/>
+        
         <p>The most recent CAS-File Manager project can be downloaded from the OODT
         <a href="http://oodt.jpl.nasa.gov">website</a> or it can be checked out 
         from the OODT repository using Subversion. The CAS-File Manager project is 
@@ -72,7 +95,7 @@
       for the CAS-Filemgr project in the <code>/usr/local/src/cas-filemgr-v1.8.0</code>
       directory.</p>
       
-      <p>In order to build the projectfrom this source, issue the following 
+      <p>In order to build the project from this source, issue the following 
       commands:</p>
       
       <source>
@@ -148,7 +171,7 @@ bin/ etc/ logs/ doc/ lib/ policy/ LICENS
       Manager in a usable state, capable of archiving products and capturing basic 
       metadata. For the record, I haven't timed it, but its pretty fast...</p>
       
-      <p>We are going to set up the File Mnaager to use and XML-based Validation layer,
+      <p>We are going to set up the File Manager to use an XML-based Validation layer,
       and XML product policy, and a Lucene metadata Catalog. The first step is to edit
       the filemgr script in <code>$FILEMGR_HOME/bin</code>. Make the following 
       changes:</p>
@@ -194,8 +217,8 @@ bin/ etc/ logs/ doc/ lib/ policy/ LICENS
          Lucene index and associated files by setting the 
          <code>gov.nasa.jpl.oodt.cas.filemgr.catalog.lucene.idxPath</code> property
          to <code>$FILEMGR_HOME/catalog</code>. Make sure that this directory does
-         NOT exist the time you run the File Manager. If the File Manager does not find
-         a directory at thie specified location, it will create all of the necessary 
+         NOT exist the first time you run the File Manager. If the File Manager does not find
+         a directory at the specified location, it will create all of the necessary 
          directory structure and ancillary files.</li>
          
          <li>Specify the paths to the directories where the XML policy files are stored 
@@ -246,7 +269,7 @@ bin/ etc/ logs/ doc/ lib/ policy/ LICENS
 
       <source>
 > ./filemgr-client --url http://localhost:9000 --operation \
-   --ingestProduct --productName Blah.txt --productStructure Flat \
+   --ingestProduct --productName blah.txt --productStructure Flat \
    --productTypeName GenericFile \ 
    --metadataFile file:///usr/local/cas-filemgr-v1.8.0/bin/blah.txt.met \
    --refs file:///usr/local/cas-filemgr-v1.8.0/bin/blah.txt