You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shale.apache.org by cr...@apache.org on 2006/11/18 04:14:23 UTC

svn commit: r476424 - in /shale/framework/trunk/shale-view: ./ src/site/xdoc/index.xml

Author: craigmcc
Date: Fri Nov 17 19:14:23 2006
New Revision: 476424

URL: http://svn.apache.org/viewvc?view=rev&rev=476424
Log:
Fix a couple of broken relative links to shale-view javadocs, caused when
this module was factored out of shale-core.

SHALE-334

Modified:
    shale/framework/trunk/shale-view/   (props changed)
    shale/framework/trunk/shale-view/src/site/xdoc/index.xml

Propchange: shale/framework/trunk/shale-view/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Nov 17 19:14:23 2006
@@ -0,0 +1 @@
+target

Modified: shale/framework/trunk/shale-view/src/site/xdoc/index.xml
URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-view/src/site/xdoc/index.xml?view=diff&rev=476424&r1=476423&r2=476424
==============================================================================
--- shale/framework/trunk/shale-view/src/site/xdoc/index.xml (original)
+++ shale/framework/trunk/shale-view/src/site/xdoc/index.xml Fri Nov 17 19:14:23 2006
@@ -178,7 +178,7 @@
 
         <ul>
           <li>Implement the
-              <a href="shale-core/apidocs/org/apache/shale/view/ViewController.html" target="_blank">
+              <a href="apidocs/org/apache/shale/view/ViewController.html" target="_blank">
               <code>ViewController</code></a>
               interface.  The 
               most convenient way to do this is likely to be extending the 
@@ -189,7 +189,7 @@
           <li>Declare your backing bean as a <code>&lt;managed-bean&gt;</code>, 
               using a <code>&lt;managed-bean-name&gt;</code> value that can be 
               mapped from the view identifier.  (See 
-              <a href="shale-core/apidocs/org/apache/shale/view/impl/DefaultViewControllerMapper.html" target="_blank">
+              <a href="apidocs/org/apache/shale/view/impl/DefaultViewControllerMapper.html" target="_blank">
               <code>DefaultViewControllerMapper</code></a> for the details of
               the default mapping.)
               In nearly all circumstances, you will want the bean to be placed 
@@ -207,7 +207,7 @@
               plus standard JavaServer Faces event handlers for things like
               actions and value changes.</li>
           <li>(Optional but recommended) Write a corresponding JUnit test
-              case using the Shale <a href="features-test-framework.html">Test Framework</a>.
+              case using the Shale <a href="../shale-test/index.html">Test Framework</a>.
               Because nearly all of your property and event handling methods
               have no JavaServer Faces API dependencies for their parameter
               signatures, it is generally quite easy to write such tests.</li>