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

svn commit: r964659 - in /incubator/oodt/trunk/profile/src/site/xdoc: adv/index.xml handler/index.xml info/index.xml querying/index.xml rep/index.xml

Author: kelly
Date: Fri Jul 16 02:53:06 2010
New Revision: 964659

URL: http://svn.apache.org/viewvc?rev=964659&view=rev
Log:
Work around more svn checksum errors by using another tinier commit

Modified:
    incubator/oodt/trunk/profile/src/site/xdoc/adv/index.xml   (contents, props changed)
    incubator/oodt/trunk/profile/src/site/xdoc/handler/index.xml
    incubator/oodt/trunk/profile/src/site/xdoc/info/index.xml   (props changed)
    incubator/oodt/trunk/profile/src/site/xdoc/querying/index.xml   (props changed)
    incubator/oodt/trunk/profile/src/site/xdoc/rep/index.xml   (contents, props changed)

Modified: incubator/oodt/trunk/profile/src/site/xdoc/adv/index.xml
URL: http://svn.apache.org/viewvc/incubator/oodt/trunk/profile/src/site/xdoc/adv/index.xml?rev=964659&r1=964658&r2=964659&view=diff
==============================================================================
--- incubator/oodt/trunk/profile/src/site/xdoc/adv/index.xml (original)
+++ incubator/oodt/trunk/profile/src/site/xdoc/adv/index.xml Fri Jul 16 02:53:06 2010
@@ -969,8 +969,8 @@ TrackExpr.class</source>
       <source>#!/bin/sh
 exec java -Djava.ext.dirs=$PS_HOME/lib \
     -Dhandlers=NullHandler,MusicHandler \
-    jpl.eda.ExecServer \
-    jpl.eda.profile.rmi.ProfileServiceImpl \
+    org.apache.oodt.ExecServer \
+    org.apache.oodt.profile.rmi.ProfileServiceImpl \
     urn:eda:rmi:MyProfileService</source>
 
       <p>Now the profile server will delegate to <em>two</em>
@@ -995,7 +995,7 @@ exec java -Djava.ext.dirs=$PS_HOME/lib \
       <source>% <b>$PS_HOME/bin/pc 'artist = Delerium
  AND album != Poem OR artist = Bach'</b><![CDATA[
 Object context ready; delegating to:
-[jpl.eda.object.jndi.RMIContext@dec8b3]
+[org.apache.oodt.object.jndi.RMIContext@dec8b3]
 [<?xml version="1.0" encoding="UTF-8"?>
 <profile><profAttributes><profId>urn:sk:tr91BC.mp3</profId>...]]></source>
 

Propchange: incubator/oodt/trunk/profile/src/site/xdoc/adv/index.xml
            ('svn:executable' removed)

Modified: incubator/oodt/trunk/profile/src/site/xdoc/handler/index.xml
URL: http://svn.apache.org/viewvc/incubator/oodt/trunk/profile/src/site/xdoc/handler/index.xml?rev=964659&r1=964658&r2=964659&view=diff
==============================================================================
--- incubator/oodt/trunk/profile/src/site/xdoc/handler/index.xml (original)
+++ incubator/oodt/trunk/profile/src/site/xdoc/handler/index.xml Fri Jul 16 02:53:06 2010
@@ -38,7 +38,7 @@
       </p>
       <ol>
 	<li>Creating a class that implements (however indirectly)
-	  the <code>jpl.eda.profile.handlers.ProfileHandler</code> interface.
+	  the <code>org.apache.oodt.profile.handlers.ProfileHandler</code> interface.
 	</li>
 	<li>Creating a new process that runs either the RMI or
 	    CORBA <code>ProfileServiceImpl</code> class,
@@ -87,12 +87,12 @@
 	  an extension of the other):
 	</p>
 	<ul>
-	  <li><code>jpl.eda.profile.handlers.ProfileHandler</code>
+	  <li><code>org.apache.oodt.profile.handlers.ProfileHandler</code>
 	      is the basic profile handler.  It defines methods for
 	    <em>handling</em> searches for profiles.
 	  </li>
 
-	  <li><code>jpl.eda.profile.handlers.ProfileManager</code> is an
+	  <li><code>org.apache.oodt.profile.handlers.ProfileManager</code> is an
 	    extension that not just <em>handles</em> profile queries
 	    but also <em>manages</em> the set of profiles maintained
 	    by the server, by providing methods for adding to,
@@ -114,12 +114,12 @@
 	  as follows:
 	</p>
 
-	<source>package jpl.eda.profile.handlers;
+	<source>package org.apache.oodt.profile.handlers;
 
 import java.util.List;
-import jpl.eda.profile.Profile;
-import jpl.eda.profile.ProfileException;
-import jpl.eda.xmlquery.XMLQuery;
+import org.apache.oodt.profile.Profile;
+import org.apache.oodt.profile.ProfileException;
+import org.apache.oodt.xmlquery.XMLQuery;
 
 public interface ProfileHandler {
   List findProfiles(XMLQuery query) throws ProfileException;
@@ -161,13 +161,13 @@ public interface ProfileHandler {
 	  builds on the <code>ProfileHandler</code>, and is
 	  listed below:
 	</p>
-	<source>package jpl.eda.profile.handlers;
+	<source>package org.apache.oodt.profile.handlers;
 
 import java.util.Collection;
 import java.util.Iterator;
-import jpl.eda.profile.Profile;
-import jpl.eda.profile.ProfileException;
-import jpl.eda.xmlquery.XMLQuery;
+import org.apache.oodt.profile.Profile;
+import org.apache.oodt.profile.ProfileException;
+import org.apache.oodt.xmlquery.XMLQuery;
 
 public interface ProfileManager extends ProfileHandler {
   void add(Profile profile) throws ProfileException;
@@ -234,9 +234,9 @@ public interface ProfileManager extends 
 	</p>
 	<source>import java.util.Collections;
 import java.util.List;
-import jpl.eda.profile.Profile;
-import jpl.eda.profile.handlers.ProfileHandler;
-import jpl.eda.xmlquery.XMLQuery;
+import org.apache.oodt.profile.Profile;
+import org.apache.oodt.profile.handlers.ProfileHandler;
+import org.apache.oodt.xmlquery.XMLQuery;
 
 public class NullHandler implements ProfileHandler {
   public List findProfiles(XMLQuery query) {
@@ -354,12 +354,12 @@ total 404
 
 	<source>#!/bin/sh
 exec java -Djava.ext.dirs=$PS_HOME/lib \
-    gov.nasa.jpl.oodt.rmi.RMIRegistry</source>
+    org.apache.oodt.rmi.RMIRegistry</source>
 
 	<p>This script tells the Java virtual machine to find
 	  extension jars in the directory <code>$PS_HOME/lib</code>.  It
 	  then says that the main class to execute is
-	  <code>gov.nasa.jpl.oodt.rmi.RMIRegistry</code>.
+	  <code>org.apache.oodt.rmi.RMIRegistry</code>.
 	</p>
 
 	<p>Go ahead and make this script executable and start the RMI
@@ -438,15 +438,15 @@ total 1580
 	<source>#!/bin/sh
 exec java -Djava.ext.dirs=$PS_HOME/lib \
     -Dhandlers=NullHandler \
-    jpl.eda.ExecServer \
-    jpl.eda.profile.rmi.ProfileServiceImpl \
+    org.apache.oodt.ExecServer \
+    org.apache.oodt.profile.rmi.ProfileServiceImpl \
     urn:eda:rmi:MyProfileService</source>
 
 	<p>Make the script executable and start the profile server:</p>
 
 	<source>% <b>chmod 755 $PS_HOME/bin/ps</b>
 % <b>$PS_HOME/bin/ps</b>
-Object context ready; delegating to: [jpl.eda.object.jndi.RMIContext@dec8b3]</source>
+Object context ready; delegating to: [org.apache.oodt.object.jndi.RMIContext@dec8b3]</source>
 
 	<p>The profile server will start, check its
 	  <code>handlers</code> property, and create an object of each
@@ -527,7 +527,7 @@ if [ $# -ne 1 ]; then
    exit 1
 fi
 exec java -Djava.ext.dirs=$PS_HOME/lib \
-     jpl.eda.profile.ProfileClient \
+     org.apache.oodt.profile.ProfileClient \
      urn:eda:rmi:MyProfileService \
      "$1"</source>
 
@@ -535,7 +535,7 @@ exec java -Djava.ext.dirs=$PS_HOME/lib \
 
 	<source>% <b>chmod 755 $PS_HOME/bin/pc</b>
 % <b>$PS_HOME/bin/pc "temperature = 37"</b>
-Object context ready; delegating to: [jpl.eda.object.jndi.RMIContext@dec8b3]
+Object context ready; delegating to: [org.apache.oodt.object.jndi.RMIContext@dec8b3]
 []</source>
 
 	<p>Although it may not look spetacular, this is a success!

Propchange: incubator/oodt/trunk/profile/src/site/xdoc/info/index.xml
            ('svn:executable' removed)

Propchange: incubator/oodt/trunk/profile/src/site/xdoc/querying/index.xml
            ('svn:executable' removed)

Modified: incubator/oodt/trunk/profile/src/site/xdoc/rep/index.xml
URL: http://svn.apache.org/viewvc/incubator/oodt/trunk/profile/src/site/xdoc/rep/index.xml?rev=964659&r1=964658&r2=964659&view=diff
==============================================================================
--- incubator/oodt/trunk/profile/src/site/xdoc/rep/index.xml (original)
+++ incubator/oodt/trunk/profile/src/site/xdoc/rep/index.xml Fri Jul 16 02:53:06 2010
@@ -134,7 +134,7 @@
 
     <section name="Java Representation of Profiles">
       <p>The OODT source code includes a class
-	<code>jpl.eda.profile.Profile</code> for object
+	<code>org.apache.oodt.profile.Profile</code> for object
 	represenation of a profile.  You can construct a
 	<code>Profile</code> object from an RDF or XML
 	document or create a blank one to populate with metadata
@@ -224,7 +224,7 @@
 
 	  <subsection name="Common Attributes of Profile Elements">
 	    <p>The class
-	      <code>jpl.eda.profile.ProfileElement</code>
+	      <code>org.apache.oodt.profile.ProfileElement</code>
 	      contains the common parts of every profile element, such
 	      as its required name, its optional description, and so
 	      forth.  Use the value <code>null</code> for any

Propchange: incubator/oodt/trunk/profile/src/site/xdoc/rep/index.xml
            ('svn:executable' removed)