vmassol     2003/09/11 11:31:59

  Modified:    documentation/docs/xdocs sitemap.xml mock_vs_cactus.xml
  Log:
  - Fix broken links
  - Externalized external links in sitemap
  - Added disclaimer about the article being a bit old
  
  Revision  Changes    Path
  1.59      +5 -1      jakarta-cactus/documentation/docs/xdocs/sitemap.xml
  
  Index: sitemap.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/documentation/docs/xdocs/sitemap.xml,v
  retrieving revision 1.58
  retrieving revision 1.59
  diff -u -r1.58 -r1.59
  --- sitemap.xml       29 Aug 2003 14:10:45 -0000      1.58
  +++ sitemap.xml       11 Sep 2003 18:31:59 -0000      1.59
  @@ -398,6 +398,7 @@
     <external id="book_javatools" 
url="http://www.amazon.com/exec/obidos/ASIN/047120708X/"/>
     <external id="bug_database" url="http://jakarta.apache.org/site/bugs.html"/>
     <external id="bug_database_cactus_open" 
url="http://issues.apache.org/bugzilla/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;product=Cactus"/>
  +  <external id="c2_mock_object" url="http://c2.com/cgi/wiki?MockObject"/>
     <external id="c2_vma" url="http://c2.com/cgi/wiki?VincentMassol"/>
     <external id="c2_who_uses_cactus" url="http://c2.com/cgi/wiki?WhoUsesCactus"/>
     <external id="cactus_dutronc_lyrics" 
url="http://www.muriset.com/paroles/les_cactus.htm"/>
  @@ -416,7 +417,8 @@
     <external id="commons_logging" 
url="http://jakarta.apache.org/commons/logging.html"/>
     <external id="cruisecontrol" url="http://cruisecontrol.sourceforge.net/"/>
     <external id="cvs" url="http://jakarta.apache.org/site/cvsindex.html"/>
  -  <external id="eclipse" url="http://www.eclipse.org"/>  
  +  <external id="easymock" url="http://easymock.org"/>
  +  <external id="eclipse" url="http://www.eclipse.org"/>
     <external id="eblox" url="http://www.eblox.com"/>
     <external id="gump" url="http://jakarta.apache.org/gump/"/>
     <external id="gump_cactus_doc" 
url="http://cvs.apache.org/builds/gump/latest/jakarta-cactus-documentation.html"/>
  @@ -446,7 +448,9 @@
     <external id="korean" url="http://jakarta.apache-korea.org/cactus/index.html"/>
     <external id="maven" url="http://maven.apache.org"/>
     <external id="maven_cactus" 
url="http://maven.apache.org/reference/plugins/cactus"/>
  +  <external id="mockmaker" url="http://mockmaker.sourceforge.net/"/>
     <external id="mockobjects" url="http://www.mockobjects.com"/>
  +  <external id="mockobjects_endotesting" 
url="http://www.mockobjects.com/wiki/MocksObjectsPaper?action=AttachFile&amp;do=get&amp;target=mockobjects.pdf"/>
     <external id="nekohtml" url="http://www.apache.org/~andyc/neko/doc/html/"/>
     <external id="octo" url="http://www.octo.com"/>
     <external id="opensource" url="http://www.opensource.org/"/>
  
  
  
  1.6       +17 -17    jakarta-cactus/documentation/docs/xdocs/mock_vs_cactus.xml
  
  Index: mock_vs_cactus.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/documentation/docs/xdocs/mock_vs_cactus.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- mock_vs_cactus.xml        11 Sep 2003 18:14:13 -0000      1.5
  +++ mock_vs_cactus.xml        11 Sep 2003 18:31:59 -0000      1.6
  @@ -12,6 +12,12 @@
     <body>
   
       <section title="Mock Objects vs In-Container testing">
  +      <note><strong>
  +        This article was written about 2 years ago and is starting to
  +        be a bit old. The general content is still valid but several
  +        details are no longer true as the frameworks (be it Cactus or
  +        the mock objects frameworks) have evolved since then.
  +      </strong></note>
         <note>
           Throughout this article, we'll use the abbreviations MO for Mock
           Objects and IC for In-Container strategy.
  @@ -417,35 +423,29 @@
         <p>
           <ul>
             <li>
  -            <link href="http://mockobjects.sourceforge.net/endotesting.html";>
  +            <link href="ext:mockobjects_endotesting">
               "Endo-Testing: Unit Testing with Mock Objects"</link> (PDF).
               Describes the vision behind MO.
             </li>
             <li>
  -            <link href="http://c2.com/ppr/wiki/RecentChanges/MockObject.html";>
  -            Mock Object discussions on Wiki</link>.
  +            <link href="ext:c2_mock_object">Mock Object discussions on 
  +            Wiki</link>.
             </li>
             <li>
  -            <link href="http://mockobjects.sourceforge.net";>Mock Object
  -            project</link> on SourceForge. MO framework and some mock
  -            implementations.
  +            <link href="ext:mockobjects">Mock Object project</link> on 
  +            SourceForge. MO framework and some static mock implementations.
  +            Also supports runtime mocks using Dynamic Proxies.
             </li>
             <li>
  -            <link
  -            href="http://www.xpdeveloper.com/cgi-bin/wiki.cgi?MockMaker";>Mock
  -            Maker</link>. Generates build time MO implementations for the
  -            SourceForge Mock Objects project. Generation is done from
  -            interfaces.
  +            <link href="ext:mockmaker">MockMaker</link>. Generates build 
  +            time MO implementations for the SourceForge Mock Objects project.
  +            Generation is done from interfaces or classes.
             </li>
             <li>
  -            <link href="http://tammofreese.de/easymock/";>Easy Mock</link>.
  -            Uses dynamic proxies (JDK 1.3) to provide runtime
  +            <link href="ext:easymock">Easy Mock</link>.
  +            Uses Dynamic Proxies (JDK 1.3) to provide runtime
               mock implementations, thus eliminating the need for generating/
               writing the mock implementations.
  -          </li>
  -          <li>
  -            <link href="http://www.xpdeveloper.com";>xpdeveloper.com</link> web
  -            site and it's Extreme Tuesday Club (Xtc) ...
             </li>
           </ul>
         </p>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to