You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by ri...@apache.org on 2005/08/23 05:33:30 UTC

svn commit: r239316 - in /beehive/trunk/docs/forrest/release/src/documentation/content/xdocs: controls/controls_containment.xml tabs.xml

Author: rich
Date: Mon Aug 22 20:33:26 2005
New Revision: 239316

URL: http://svn.apache.org/viewcvs?rev=239316&view=rev
Log:
Fixed some references to incubator.apache.org/beehive.


Modified:
    beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/controls/controls_containment.xml
    beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/tabs.xml

Modified: beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/controls/controls_containment.xml
URL: http://svn.apache.org/viewcvs/beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/controls/controls_containment.xml?rev=239316&r1=239315&r2=239316&view=diff
==============================================================================
--- beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/controls/controls_containment.xml (original)
+++ beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/controls/controls_containment.xml Mon Aug 22 20:33:26 2005
@@ -104,7 +104,7 @@
 
      <section><title>ControlBeanContext</title>
 
-      <p>The <a href="http://incubator.apache.org/beehive/apidocs/classref_controls/org/apache/beehive/controls/api/context/ControlBeanContext.html">org.apache.beehive.controls.api.context.ControlBeanContext</a> interface extends the base java.bean.BeanContextServices interface to add the unique services available to JavaBeans that are Beehive Controls.  These include access to control property values bound by annotations, external configuration, or client invocation of property accessors, as well as a unique set of lifecycle events.
+      <p>The <a href="../apidocs/classref_controls/org/apache/beehive/controls/api/context/ControlBeanContext.html">org.apache.beehive.controls.api.context.ControlBeanContext</a> interface extends the base java.bean.BeanContextServices interface to add the unique services available to JavaBeans that are Beehive Controls.  These include access to control property values bound by annotations, external configuration, or client invocation of property accessors, as well as a unique set of lifecycle events.
       </p>
 
       <p>Every Control is guaranteed to have an associated peer ControlBeanContext that can be used to query Control properties, nest other controls (either declaratively or programmatically), and to receive lifecycle events.  This is true even if the Control is not itself nested within a parent context.  
@@ -116,7 +116,7 @@
       @Context ControlBeanContext myContext;
       </source>
 
-      <p>within the Control Implementation class, or by calling the <a href="http://incubator.apache.org/beehive/apidocs/classref_controls/org/apache/beehive/controls/api/bean/ControlBean.html#getControlBeanContext()">org.apache.beehive.controls.api.bean.ControlBean.getControlBeanContext()</a> API on a Control bean instance.
+      <p>within the Control Implementation class, or by calling the <a href="../apidocs/classref_controls/org/apache/beehive/controls/api/bean/ControlBean.html#getControlBeanContext()">org.apache.beehive.controls.api.bean.ControlBean.getControlBeanContext()</a> API on a Control bean instance.
       </p>
  
       <section><title>Control Identifiers</title>
@@ -148,7 +148,7 @@
 
       </section><!-- Control Identity -->
 
-      <p>The <a href="http://incubator.apache.org/beehive/apidocs/classref_controls/org/apache/beehive/controls/runtime/bean/ControlBeanContext.html">org.apache.beehive.controls.runtime.bean.ControlBeanContext</a> class provides a concrete implementation of the ControlBeanContext interface for the Controls runtime.  
+      <p>The <a href="../apidocs/classref_controls/org/apache/beehive/controls/runtime/bean/ControlBeanContext.html">org.apache.beehive.controls.runtime.bean.ControlBeanContext</a> class provides a concrete implementation of the ControlBeanContext interface for the Controls runtime.  
       </p>
       <p>This class is used:</p>
       <ul>
@@ -160,7 +160,7 @@
 
      <section><title>ControlBean</title>
 
-      <p>The <a href="http://incubator.apache.org/beehive/apidocs/classref_controls/org/apache/beehive/controls/api/bean/ControlBean.html">org.apache.beehive.controls.api.bean.ControlBean</a> interface defines a base interface implemented by all Controls.  It provides accessors for:
+      <p>The <a href="../apidocs/classref_controls/org/apache/beehive/controls/api/bean/ControlBean.html">org.apache.beehive.controls.api.bean.ControlBean</a> interface defines a base interface implemented by all Controls.  It provides accessors for:
       </p>
     
       <ul>
@@ -170,7 +170,7 @@
        <li>The public interface (@ControlInterface or @ControlExtension) implemented by the Control.</li>
       </ul>
 
-      <p>The <a href="http://incubator.apache.org/beehive/apidocs/classref_controls/org/apache/beehive/controls/runtime/bean/ControlBean.html">org.apache.beehive.controls.runtime.bean.ControlBean</a> class provides a concrete implementation of the ControlBean interface, and is used as the base class for all code-generated Control JavaBeans.
+      <p>The <a href="../apidocs/classref_controls/org/apache/beehive/controls/runtime/bean/ControlBean.html">org.apache.beehive.controls.runtime.bean.ControlBean</a> class provides a concrete implementation of the ControlBean interface, and is used as the base class for all code-generated Control JavaBeans.
       </p>
 
      </section><!-- ControlBean -->
@@ -178,14 +178,14 @@
      <section><title>ControlContainerContext</title>
 
       <p>The 
-		<a href="http://incubator.apache.org/beehive/apidocs/classref_controls/org/apache/beehive/controls/runtime/bean/ControlContainerContext.html">org.apache.beehive.controls.runtime.bean.ControlContainerContext</a> class extends the base ControlBeanContext class to define a base integration model (and default implementation, where appropriate) of containment and services to integrate an external container type with the Controls runtime.  Examples of existing external containers for controls are the Servlet container, 
+		<a href="../apidocs/classref_controls/org/apache/beehive/controls/runtime/bean/ControlContainerContext.html">org.apache.beehive.controls.runtime.bean.ControlContainerContext</a> class extends the base ControlBeanContext class to define a base integration model (and default implementation, where appropriate) of containment and services to integrate an external container type with the Controls runtime.  Examples of existing external containers for controls are the Servlet container, 
 		the EJB container, the Spring bean container, ...
       </p>
 
       <p>An external container can provide additional services to Controls that are running within its scope, such as a definition of how long it is OK for Controls to acquire and hold resources, the integration of a native container configuration model, or contextual services that are unique and specific to the container.   
       </p>
     
-      <p>For any given container, a custom subclass of the ControlContainerContext class can be provided that defines the unique attributes and semantics of the container for controls executing within it.  For example, the <a href="http://incubator.apache.org/beehive/apidocs/classref_controls/org/apache/beehive/controls/runtime/servlet/ServletBeanContext.html">ServletBeanContext</a> class provided as part of the Controls runtime provides control containment for the web tier.  The ServletBeanContext defines the resource scope for Controls such that any control instance can hold a resource (connection, session, ...) for the lifetime of a single http request (but no longer).  Additionally, it exposes web-tier-specific contextual services, such as access to the current ServletContext or active HttpServletRequest instance.
+      <p>For any given container, a custom subclass of the ControlContainerContext class can be provided that defines the unique attributes and semantics of the container for controls executing within it.  For example, the <a href="../apidocs/classref_controls/org/apache/beehive/controls/runtime/servlet/ServletBeanContext.html">ServletBeanContext</a> class provided as part of the Controls runtime provides control containment for the web tier.  The ServletBeanContext defines the resource scope for Controls such that any control instance can hold a resource (connection, session, ...) for the lifetime of a single http request (but no longer).  Additionally, it exposes web-tier-specific contextual services, such as access to the current ServletContext or active HttpServletRequest instance.
       </p>
 
       <p>The following section on Control Container Services describes many of the services and behaviors that can be customized by a ControlContainerContext subclass.

Modified: beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/tabs.xml
URL: http://svn.apache.org/viewcvs/beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/tabs.xml?rev=239316&r1=239315&r2=239316&view=diff
==============================================================================
--- beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/tabs.xml (original)
+++ beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/tabs.xml Mon Aug 22 20:33:26 2005
@@ -17,6 +17,6 @@
     be displayed when their parent tab is selected.    
   -->
 
-  <tab id="home" label="Home" dir="" href="http://incubator.apache.org/beehive"/>
+  <tab id="home" label="Home" dir="" href="http://beehive.apache.org"/>
   <tab id="release-svn" label="Beehive SVN" dir="" indexfile="index.html"/>
 </tabs>