Author: tv Date: Sun Feb 19 16:16:41 2012 New Revision: 1291018 URL: http://svn.apache.org/viewvc?rev=1291018&view=rev Log: Avoid name conflict with maven plugins page
Added: commons/proper/jcs/trunk/xdocs/JCSPlugins.xml (contents, props changed) - copied, changed from r1291017, commons/proper/jcs/trunk/xdocs/Plugins.xml Removed: commons/proper/jcs/trunk/xdocs/Plugins.xml Modified: commons/proper/jcs/trunk/src/site/site.xml commons/proper/jcs/trunk/xdocs/getting_started/intro.xml commons/proper/jcs/trunk/xdocs/index.xml Modified: commons/proper/jcs/trunk/src/site/site.xml URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/site/site.xml?rev=1291018&r1=1291017&r2=1291018&view=diff ============================================================================== --- commons/proper/jcs/trunk/src/site/site.xml (original) +++ commons/proper/jcs/trunk/src/site/site.xml Sun Feb 19 16:16:41 2012 @@ -40,7 +40,7 @@ <menu name="Getting Started"> <item name="Overview" href="/getting_started/intro.html" /> <item name="Basic JCS Config" href="/BasicJCSConfiguration.html" /> - <item name="Plugin Overview" href="/Plugins.html" /> + <item name="Plugin Overview" href="/JCSPlugins.html" /> <item name="Basic Web Example" href="/UsingJCSBasicWeb.html" /> </menu> @@ -52,7 +52,7 @@ <item name="Region Properties" href="/RegionProperties.html" /> <item name="Basic Web Example" href="/UsingJCSBasicWeb.html" /> </item> - <item name="Auxiliary" href="/Plugins.html" collapse="true"> + <item name="Auxiliary" href="/JCSPlugins.html" collapse="true"> <item name="Cache Event Logging" href="/CacheEventLogging.html" /> <item name="Indexed Disk Cache" href="/IndexedDiskAuxCache.html" /> <item name="Indexed Disk Properties" href="/IndexedDiskCacheProperties.html" /> Copied: commons/proper/jcs/trunk/xdocs/JCSPlugins.xml (from r1291017, commons/proper/jcs/trunk/xdocs/Plugins.xml) URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/xdocs/JCSPlugins.xml?p2=commons/proper/jcs/trunk/xdocs/JCSPlugins.xml&p1=commons/proper/jcs/trunk/xdocs/Plugins.xml&r1=1291017&r2=1291018&rev=1291018&view=diff ============================================================================== (empty) Propchange: commons/proper/jcs/trunk/xdocs/JCSPlugins.xml ------------------------------------------------------------------------------ cvs2svn:cvs-rev = 1.2 Propchange: commons/proper/jcs/trunk/xdocs/JCSPlugins.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: commons/proper/jcs/trunk/xdocs/JCSPlugins.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Modified: commons/proper/jcs/trunk/xdocs/getting_started/intro.xml URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/xdocs/getting_started/intro.xml?rev=1291018&r1=1291017&r2=1291018&view=diff ============================================================================== --- commons/proper/jcs/trunk/xdocs/getting_started/intro.xml (original) +++ commons/proper/jcs/trunk/xdocs/getting_started/intro.xml Sun Feb 19 16:16:41 2012 @@ -20,7 +20,7 @@ <document> <properties> - <title>Getting Started -- Intoduction</title> + <title>Getting Started -- Introduction</title> <author email="asm...@apache.org">Aaron Smuts</author> </properties> @@ -33,7 +33,7 @@ dependencies, (4) configure JCS, and (5) then start programming to it. The purpose of the getting started guide is to help you get up and running with JCS as - quickly as possible. In depth doumentation on the + quickly as possible. In depth documentation on the various features of JCS is provided in the User's Guide. </p> </section> @@ -69,7 +69,7 @@ Disk Cache, for example, allows you to swap items onto disk when a memory threshold is reached. You can read more about the available auxiliaries - <a href="../Plugins.html">HERE</a> + <a href="../JCSPlugins.html">HERE</a> . </p> </section> Modified: commons/proper/jcs/trunk/xdocs/index.xml URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/xdocs/index.xml?rev=1291018&r1=1291017&r2=1291018&view=diff ============================================================================== --- commons/proper/jcs/trunk/xdocs/index.xml (original) +++ commons/proper/jcs/trunk/xdocs/index.xml Sun Feb 19 16:16:41 2012 @@ -28,7 +28,7 @@ for high read, low put applications. Latency times drop sharply and bottlenecks move away from the database in an effectively cached system. - <a href="getting_started/intro.html"> Learn how to start using JCS.</a> + <a href="getting_started/intro.html">Learn how to start using JCS.</a> </p> <p> The JCS goes beyond simply caching objects in memory. It provides numerous additional features:</p> @@ -63,7 +63,7 @@ <section name="JCS is a Composite Cache"> <p> The foundation of JCS is the Composite Cache, which is the - <a href="Plugins.html">pluggable</a> + <a href="JCSPlugins.html">pluggable</a> controller for a cache region. Four types of caches can be plugged into the Composite Cache for any given region: (1) Memory, (2) Disk, (3) Lateral, and (4) Remote. The Composite Cache orchestrates access @@ -88,7 +88,7 @@ <subsection name="Indexed Disk Cache"> <p> The - <a href="IndexedDiskAuxCache.html"> Indexed Disk Cache</a> + <a href="IndexedDiskAuxCache.html">Indexed Disk Cache</a> is a fast, reliable, and <a href="IndexedDiskCacheProperties.html"> highly configurable</a> swap for cached data. The indexed disk cache follows the fastest @@ -105,7 +105,7 @@ <subsection name="JDBC Disk Cache"> <p> The - <a href="JDBCDiskCache.html"> JDBC Disk Cache</a> + <a href="JDBCDiskCache.html">JDBC Disk Cache</a> is a fast, reliable, and <a href="JDBCDiskCacheProperties.html"> highly configurable</a> disk cache. It stores both the keys and elements in a JDBC @@ -121,7 +121,7 @@ <subsection name="TCP Lateral Cache"> <p> The - <a href="LateralTCPAuxCache.html"> TCP Lateral Cache</a> + <a href="LateralTCPAuxCache.html">TCP Lateral Cache</a> provides an easy way to distribute cached data to multiple servers. It comes with a <a href="LateralUDPDiscovery.html">UDP discovery</a> @@ -141,7 +141,7 @@ <subsection name="RMI Remote Cache"> <p> JCS also provides an RMI based - <a href="RemoteAuxCache.html"> Remote Cache Server</a> + <a href="RemoteAuxCache.html">Remote Cache Server</a> . Rather than having each node connect to every other node, you can use the remote cache server as the connection point. Each node connects to the remove server, which then broadcasts events to the @@ -172,7 +172,7 @@ <p> JCS is not a fork, an offshoot, a branch, or any other derivation of JCS. Nor is JCS named after another library. JCS is a mature project that has been under development and in use since 2001. Over - the years JCS has encorporated numerous bug fixes and has added + the years JCS has incorporated numerous bug fixes and has added dozens of features, making it the best designed and most feature rich caching solution available.</p> </section>