You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@turbine.apache.org by ep...@apache.org on 2003/10/24 14:45:59 UTC

cvs commit: jakarta-turbine-2/src/java/org/apache/turbine/services/localization package.html

epugh       2003/10/24 05:45:59

  Modified:    src/java/org/apache/turbine/services/crypto/provider
                        OldJavaCrypt.java UnixCrypt.java package.html
                        JavaCrypt.java ClearCrypt.java
               src/java/org/apache/turbine/services/cache CachedObject.java
                        RefreshableCachedObject.java
                        TurbineGlobalCacheService.java
                        GlobalCacheService.java TurbineGlobalCache.java
                        ObjectExpiredException.java package.html
                        Refreshable.java
               src/java/org/apache/turbine/services/crypto package.html
                        CryptoAlgorithm.java TurbineCrypto.java
                        CryptoService.java TurbineCryptoService.java
               src/java/org/apache/turbine/services/mimetype/util
                        MimeTypeMapper.java CharSetMap.java MimeType.java
                        MimeTypeMap.java
               src/java/org/apache/turbine/services/mimetype
                        TurbineMimeTypes.java package.html
                        TurbineMimeTypeService.java MimeTypeService.java
               src/java/org/apache/turbine/services/intake package.html
               src/java/org/apache/turbine/services/localization
                        package.html
  Log:
  Deprecated in favor of Fulcrum Components
  
  Revision  Changes    Path
  1.6       +2 -1      jakarta-turbine-2/src/java/org/apache/turbine/services/crypto/provider/OldJavaCrypt.java
  
  Index: OldJavaCrypt.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/crypto/provider/OldJavaCrypt.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- OldJavaCrypt.java	7 Apr 2003 15:30:49 -0000	1.5
  +++ OldJavaCrypt.java	24 Oct 2003 12:45:58 -0000	1.6
  @@ -77,6 +77,7 @@
    *
    * Nevertheless it can be used as the default crypto algorithm .
    *
  + * @deprecated Use the Fulcrum Crypto component instead.
    * @author <a href="mailto:hps@intermeta.de">Henning P. Schmiedehausen</a>
    * @version $Id$
    */
  
  
  
  1.5       +2 -1      jakarta-turbine-2/src/java/org/apache/turbine/services/crypto/provider/UnixCrypt.java
  
  Index: UnixCrypt.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/crypto/provider/UnixCrypt.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- UnixCrypt.java	9 Mar 2003 03:06:26 -0000	1.4
  +++ UnixCrypt.java	24 Oct 2003 12:45:58 -0000	1.5
  @@ -59,6 +59,7 @@
   /**
    * Implements Standard Unix crypt(3) for use with the Crypto Service.
    *
  + * @deprecated Use the Fulcrum Crypto component instead.
    * @author <a href="mailto:hps@intermeta.de">Henning P. Schmiedehausen</a>
    * @version $Id$
    */
  
  
  
  1.2       +4 -2      jakarta-turbine-2/src/java/org/apache/turbine/services/crypto/provider/package.html
  
  Index: package.html
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/crypto/provider/package.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- package.html	11 Jan 2003 14:19:34 -0000	1.1
  +++ package.html	24 Oct 2003 12:45:58 -0000	1.2
  @@ -5,7 +5,9 @@
   
   <body>
   Algorithm providers for the Crypto Service.
  -<br>
  +<br/>
  +This service has been deprecated in favor of the Fulcrum Crypto component available from
  +<a href="http://jakarta.apache.org/turbine/fulcrum/fulcrum-crypto">Fulcrum Crypto</a>
   <font size="-2">$Id$</font>
   </body>
   </html>
  
  
  
  1.6       +2 -1      jakarta-turbine-2/src/java/org/apache/turbine/services/crypto/provider/JavaCrypt.java
  
  Index: JavaCrypt.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/crypto/provider/JavaCrypt.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- JavaCrypt.java	7 Apr 2003 15:30:49 -0000	1.5
  +++ JavaCrypt.java	24 Oct 2003 12:45:58 -0000	1.6
  @@ -74,6 +74,7 @@
    *
    * This provider can be used as the default crypto algorithm provider.
    *
  + * @deprecated Use the Fulcrum Crypto component instead.
    * @author <a href="mailto:hps@intermeta.de">Henning P. Schmiedehausen</a>
    * @version $Id$
    */
  
  
  
  1.6       +2 -1      jakarta-turbine-2/src/java/org/apache/turbine/services/crypto/provider/ClearCrypt.java
  
  Index: ClearCrypt.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/crypto/provider/ClearCrypt.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- ClearCrypt.java	7 Apr 2003 15:30:49 -0000	1.5
  +++ ClearCrypt.java	24 Oct 2003 12:45:58 -0000	1.6
  @@ -64,6 +64,7 @@
    *
    * Can be used as the default crypto algorithm
    *
  + * @deprecated Use the Fulcrum Crypto component instead.
    * @author <a href="mailto:hps@intermeta.de">Henning P. Schmiedehausen</a>
    * @version $Id$
    */
  
  
  
  1.7       +2 -1      jakarta-turbine-2/src/java/org/apache/turbine/services/cache/CachedObject.java
  
  Index: CachedObject.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/cache/CachedObject.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- CachedObject.java	4 Apr 2003 14:59:29 -0000	1.6
  +++ CachedObject.java	24 Oct 2003 12:45:58 -0000	1.7
  @@ -62,6 +62,7 @@
    * Wrapper for an object you want to store in a cache for a period of
    * time.
    *
  + * @deprecated Use the Fulcrum Cache component instead.
    * @author <a href="mailto:mbryson@mont.mindspring.com">Dave Bryson</a>
    * @author <a href="mailto:hps@intermeta.de">Henning P. Schmiedehausen</a>
    * @version $Id$
  
  
  
  1.6       +2 -1      jakarta-turbine-2/src/java/org/apache/turbine/services/cache/RefreshableCachedObject.java
  
  Index: RefreshableCachedObject.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/cache/RefreshableCachedObject.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- RefreshableCachedObject.java	7 Apr 2003 15:30:49 -0000	1.5
  +++ RefreshableCachedObject.java	24 Oct 2003 12:45:58 -0000	1.6
  @@ -66,6 +66,7 @@
    * This extends CachedObject and provides a method for refreshing the
    * cached object, and resetting its expire time.
    *
  + * @deprecated Use the Fulcrum Cache component instead.
    * @author <a href="mailto:nissim@nksystems.com">Nissim Karpenstein</a>
    * @author <a href="mailto:hps@intermeta.de">Henning P. Schmiedehausen</a>
    * @version $Id$
  
  
  
  1.11      +3 -1      jakarta-turbine-2/src/java/org/apache/turbine/services/cache/TurbineGlobalCacheService.java
  
  Index: TurbineGlobalCacheService.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/cache/TurbineGlobalCacheService.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- TurbineGlobalCacheService.java	12 Aug 2003 23:24:26 -0000	1.10
  +++ TurbineGlobalCacheService.java	24 Oct 2003 12:45:58 -0000	1.11
  @@ -92,6 +92,8 @@
    * <dt>cache.check.frequency</dt><dd>Cache check frequency in Millis (1000
    Millis = 1 second).  If this property is not present, the default value is 5000</dd>
    * </dl>
  + * 
  + * @deprecated Use the Fulcrum Cache component instead.
    * @author <a href="mailto:mbryson@mont.mindspring.com">Dave Bryson</a>
    * @author <a href="mailto:jon@clearink.com">Jon S. Stevens</a>
    * @author <a href="mailto:john@zenplex.com">John Thorhauer</a>
  
  
  
  1.8       +2 -1      jakarta-turbine-2/src/java/org/apache/turbine/services/cache/GlobalCacheService.java
  
  Index: GlobalCacheService.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/cache/GlobalCacheService.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- GlobalCacheService.java	7 Apr 2003 15:34:52 -0000	1.7
  +++ GlobalCacheService.java	24 Oct 2003 12:45:58 -0000	1.8
  @@ -61,6 +61,7 @@
   /**
    * GlobalCacheService interface.
    *
  + * @deprecated Use the Fulcrum Cache component instead.
    * @author <a href="mailto:mbryson@mont.mindspring.com">Dave Bryson</a>
    * @version $Id$
    */
  
  
  
  1.6       +2 -1      jakarta-turbine-2/src/java/org/apache/turbine/services/cache/TurbineGlobalCache.java
  
  Index: TurbineGlobalCache.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/cache/TurbineGlobalCache.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- TurbineGlobalCache.java	9 Mar 2003 03:06:25 -0000	1.5
  +++ TurbineGlobalCache.java	24 Oct 2003 12:45:58 -0000	1.6
  @@ -65,6 +65,7 @@
    * implementation of the GlobalCacheService used by the System, according to
    * the settings in TurbineResources.
    *
  + * @deprecated Use the Fulcrum Cache component instead.
    * @author <a href="mailto:sean@informage.net">Sean Legassick</a>
    * @version $Id$
    */
  
  
  
  1.4       +2 -1      jakarta-turbine-2/src/java/org/apache/turbine/services/cache/ObjectExpiredException.java
  
  Index: ObjectExpiredException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/cache/ObjectExpiredException.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ObjectExpiredException.java	9 Mar 2003 03:06:25 -0000	1.3
  +++ ObjectExpiredException.java	24 Oct 2003 12:45:58 -0000	1.4
  @@ -58,6 +58,7 @@
    * Exception thrown when an item either does not exist or has expired
    * from the GlobalCache.
    *
  + * @deprecated Use the Fulcrum Cache component instead.
    * @author <a href="mailto:mbryson@mont.mindspring.com">Dave Bryson</a>
    * @version $Id$
    */
  
  
  
  1.2       +4 -2      jakarta-turbine-2/src/java/org/apache/turbine/services/cache/package.html
  
  Index: package.html
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/cache/package.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- package.html	3 Sep 2003 08:21:53 -0000	1.1
  +++ package.html	24 Oct 2003 12:45:58 -0000	1.2
  @@ -5,7 +5,9 @@
   
   <body>
   Global caching service for java objects.
  -<br>
  +<br/>
  +This service has been deprecated in favor of the Fulcrum Cache component available from
  +<a href="http://jakarta.apache.org/turbine/fulcrum/fulcrum-cache">Fulcrum Cache</a>
   <font size="-2">$Id$</font>
   </body>
   </html>
  
  
  
  1.5       +2 -1      jakarta-turbine-2/src/java/org/apache/turbine/services/cache/Refreshable.java
  
  Index: Refreshable.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/cache/Refreshable.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Refreshable.java	9 Mar 2003 03:06:25 -0000	1.4
  +++ Refreshable.java	24 Oct 2003 12:45:58 -0000	1.5
  @@ -58,6 +58,7 @@
    * This is the interface for objects you want to refresh themselves
    * from the cache.
    *
  + * @deprecated Use the Fulcrum Cache component instead.
    * @author <a href="mailto:nissim@nksystems.com">Nissim Karpenstein</a>
    * @version $Id$
    */
  
  
  
  1.2       +4 -2      jakarta-turbine-2/src/java/org/apache/turbine/services/crypto/package.html
  
  Index: package.html
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/crypto/package.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- package.html	11 Jan 2003 14:19:34 -0000	1.1
  +++ package.html	24 Oct 2003 12:45:58 -0000	1.2
  @@ -5,7 +5,9 @@
   
   <body>
   Contains the Crypto Service providing you with a variety of Crypto algorithms.
  -<br>
  +<br/>
  +This service has been deprecated in favor of the Fulcrum Crypto component available from
  +<a href="http://jakarta.apache.org/turbine/fulcrum/fulcrum-crypto">Fulcrum Crypto</a>
   <font size="-2">$Id$</font>
   </body>
   </html>
  
  
  
  1.5       +2 -1      jakarta-turbine-2/src/java/org/apache/turbine/services/crypto/CryptoAlgorithm.java
  
  Index: CryptoAlgorithm.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/crypto/CryptoAlgorithm.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- CryptoAlgorithm.java	9 Mar 2003 03:06:26 -0000	1.4
  +++ CryptoAlgorithm.java	24 Oct 2003 12:45:58 -0000	1.5
  @@ -58,6 +58,7 @@
    * This interface describes the various Crypto Algorithms that are
    * handed out by the Crypto Service.
    *
  + * @deprecated Use the Fulcrum Crypto component instead.
    * @author <a href="mailto:hps@intermeta.de">Henning P. Schmiedehausen</a>
    * @version $Id$
    */
  
  
  
  1.5       +2 -1      jakarta-turbine-2/src/java/org/apache/turbine/services/crypto/TurbineCrypto.java
  
  Index: TurbineCrypto.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/crypto/TurbineCrypto.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- TurbineCrypto.java	9 Mar 2003 03:06:26 -0000	1.4
  +++ TurbineCrypto.java	24 Oct 2003 12:45:58 -0000	1.5
  @@ -65,6 +65,7 @@
    * various implementations of the Crypto Security Service, according
    * to the settings in TurbineResources.
    *
  + * @deprecated Use the Fulcrum Crypto component instead.
    * @author <a href="mailto:hps@intermeta.de">Henning P. Schmiedehausen</a>
    * @version $Id$
    *
  
  
  
  1.7       +2 -1      jakarta-turbine-2/src/java/org/apache/turbine/services/crypto/CryptoService.java
  
  Index: CryptoService.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/crypto/CryptoService.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- CryptoService.java	7 Apr 2003 15:34:52 -0000	1.6
  +++ CryptoService.java	24 Oct 2003 12:45:58 -0000	1.7
  @@ -67,6 +67,7 @@
    * It contains no actual crypto code so it should be fine to import/export
    * everywhere.
    *
  + * @deprecated Use the Fulcrum Crypto component instead.
    * @author <a href="mailto:hps@intermeta.de">Henning P. Schmiedehausen</a>
    * @version $Id$
    *
  
  
  
  1.6       +2 -1      jakarta-turbine-2/src/java/org/apache/turbine/services/crypto/TurbineCryptoService.java
  
  Index: TurbineCryptoService.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/crypto/TurbineCryptoService.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- TurbineCryptoService.java	7 Apr 2003 15:30:49 -0000	1.5
  +++ TurbineCryptoService.java	24 Oct 2003 12:45:58 -0000	1.6
  @@ -72,6 +72,7 @@
    * Algorithms (provided in Turbine.Services.properties) or tries to get them via
    * the normal java mechanisms if this fails.
    *
  + * @deprecated Use the Fulcrum Crypto component instead.
    * @author <a href="mailto:hps@intermeta.de">Henning P. Schmiedehausen</a>
    * @version $Id$
    *
  
  
  
  1.4       +2 -1      jakarta-turbine-2/src/java/org/apache/turbine/services/mimetype/util/MimeTypeMapper.java
  
  Index: MimeTypeMapper.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/mimetype/util/MimeTypeMapper.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- MimeTypeMapper.java	9 Mar 2003 03:06:29 -0000	1.3
  +++ MimeTypeMapper.java	24 Oct 2003 12:45:58 -0000	1.4
  @@ -71,6 +71,7 @@
    * by a MIME type name followed by a list of extensions separated
    * by a whitespace.
    *
  + * @deprecated Use the Fulcrum Mimetype component instead.
    * @author <a href="mailto:ilkka.priha@simsoft.fi">Ilkka Priha</a>
    * @version $Id$
    */
  
  
  
  1.5       +2 -1      jakarta-turbine-2/src/java/org/apache/turbine/services/mimetype/util/CharSetMap.java
  
  Index: CharSetMap.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/mimetype/util/CharSetMap.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- CharSetMap.java	7 Apr 2003 15:30:51 -0000	1.4
  +++ CharSetMap.java	24 Oct 2003 12:45:58 -0000	1.5
  @@ -74,6 +74,7 @@
    * In addition, this class maintains static default mappings
    * and constructors support application specific mappings.
    *
  + * @deprecated Use the Fulcrum Mimetype component instead.
    * @author <a href="mailto:ilkka.priha@simsoft.fi">Ilkka Priha</a>
    * @version $Id$
    */
  
  
  
  1.4       +2 -1      jakarta-turbine-2/src/java/org/apache/turbine/services/mimetype/util/MimeType.java
  
  Index: MimeType.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/mimetype/util/MimeType.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- MimeType.java	9 Mar 2003 03:06:29 -0000	1.3
  +++ MimeType.java	24 Oct 2003 12:45:58 -0000	1.4
  @@ -61,6 +61,7 @@
    * The representation is parsed from a string based
    * representation of the MIME type, as defined in the RFC1345.
    *
  + * @deprecated Use the Fulcrum Mimetype component instead.s
    * @author <a href="mailto:ilkka.priha@simsoft.fi">Ilkka Priha</a>
    * @version $Id$
    */
  
  
  
  1.5       +2 -1      jakarta-turbine-2/src/java/org/apache/turbine/services/mimetype/util/MimeTypeMap.java
  
  Index: MimeTypeMap.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/mimetype/util/MimeTypeMap.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- MimeTypeMap.java	9 Mar 2003 03:06:29 -0000	1.4
  +++ MimeTypeMap.java	24 Oct 2003 12:45:58 -0000	1.5
  @@ -68,6 +68,7 @@
    * In addition, this class maintains static default mappings
    * and constructors support application specific mappings.
    *
  + * @deprecated Use the Fulcrum Mimetype component instead.
    * @author <a href="mailto:ilkka.priha@simsoft.fi">Ilkka Priha</a>
    * @version $Id$
    */
  
  
  
  1.4       +2 -1      jakarta-turbine-2/src/java/org/apache/turbine/services/mimetype/TurbineMimeTypes.java
  
  Index: TurbineMimeTypes.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/mimetype/TurbineMimeTypes.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- TurbineMimeTypes.java	9 Mar 2003 03:06:29 -0000	1.3
  +++ TurbineMimeTypes.java	24 Oct 2003 12:45:58 -0000	1.4
  @@ -63,6 +63,7 @@
   /**
    * This is a static accessor to MIME types and charsets.
    *
  + * @deprecated Use the Fulcrum Mimetype component instead.
    * @author <a href="mailto:ilkka.priha@simsoft.fi">Ilkka Priha</a>
    * @version $Id$
    */
  
  
  
  1.2       +5 -2      jakarta-turbine-2/src/java/org/apache/turbine/services/mimetype/package.html
  
  Index: package.html
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/mimetype/package.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- package.html	3 Sep 2003 08:21:53 -0000	1.1
  +++ package.html	24 Oct 2003 12:45:58 -0000	1.2
  @@ -5,7 +5,10 @@
   
   <body>
   Provides mapping between MIME types and their corresponding file extensions.
  -<br>
  +<br/>
  +This service has been deprecated in favor of the Fulcrum Mimetype component available from
  +<a href="http://jakarta.apache.org/turbine/fulcrum/fulcrum-mimetype">Fulcrum Mimetype</a>
  +<br/>
   <font size="-2">$Id$</font>
   </body>
   </html>
  
  
  
  1.7       +3 -2      jakarta-turbine-2/src/java/org/apache/turbine/services/mimetype/TurbineMimeTypeService.java
  
  Index: TurbineMimeTypeService.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/mimetype/TurbineMimeTypeService.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- TurbineMimeTypeService.java	7 Apr 2003 15:30:51 -0000	1.6
  +++ TurbineMimeTypeService.java	24 Oct 2003 12:45:58 -0000	1.7
  @@ -84,7 +84,8 @@
    * the current class jar. The default mapping file is defined
    * with the charset.file property. In addition, the service maintains
    * a set of most common mappings.
  - *
  + * 
  + * @deprecated Use the Fulcrum Mimetype component instead.
    * @author <a href="mailto:ilkka.priha@simsoft.fi">Ilkka Priha</a>
    * @version $Id$
    */
  
  
  
  1.5       +2 -1      jakarta-turbine-2/src/java/org/apache/turbine/services/mimetype/MimeTypeService.java
  
  Index: MimeTypeService.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/mimetype/MimeTypeService.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- MimeTypeService.java	7 Apr 2003 15:34:52 -0000	1.4
  +++ MimeTypeService.java	24 Oct 2003 12:45:58 -0000	1.5
  @@ -67,6 +67,7 @@
    * properties or files located in user's home directory, Java home
    * directory or the current class jar depending on the implementation.
    *
  + * @deprecated Use the Fulcrum Mimetype component instead.
    * @author <a href="mailto:ilkka.priha@simsoft.fi">Ilkka Priha</a>
    * @version $Id$
    */
  
  
  
  1.3       +2 -2      jakarta-turbine-2/src/java/org/apache/turbine/services/intake/package.html
  
  Index: package.html
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/intake/package.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- package.html	14 Oct 2003 12:17:24 -0000	1.2
  +++ package.html	24 Oct 2003 12:45:59 -0000	1.3
  @@ -7,7 +7,7 @@
   The intake service can validate user input from HTML forms.
   <br/>
   This service has been deprecated in favor of the Fulcrum Intake component available from
  -<a href="http://jakarta.apache.org/turbine/fulcrum/intake">Fulcrum Intake</a>
  +<a href="http://jakarta.apache.org/turbine/fulcrum/fulcrum-intake">Fulcrum Intake</a>
   <br/>
   <font size="-2">$Id$</font>
   </body>
  
  
  
  1.3       +2 -2      jakarta-turbine-2/src/java/org/apache/turbine/services/localization/package.html
  
  Index: package.html
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/localization/package.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- package.html	14 Oct 2003 09:43:14 -0000	1.2
  +++ package.html	24 Oct 2003 12:45:59 -0000	1.3
  @@ -7,7 +7,7 @@
   This service provides access and tools for multilingual applications in Turbine.
   <br/>
   This service has been deprecated in favor of the Fulcrum Localization component available from
  -<a href="http://jakarta.apache.org/turbine/fulcrum/localization">Fulcrum Localization</a>
  +<a href="http://jakarta.apache.org/turbine/fulcrum/fulcrum-localization">Fulcrum Localization</a>
   <font size="-2">$Id$</font>
   </body>
   </html>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: turbine-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: turbine-dev-help@jakarta.apache.org