Fix docs

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/jcs/trunk@1778455 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/xdocs/faq.fml b/xdocs/faq.fml
index f8b78b0..06f6143 100644
--- a/xdocs/faq.fml
+++ b/xdocs/faq.fml
@@ -32,27 +32,6 @@
                     requires commons-logging.

                 </p>

 				<p>

-					As of version 1.2.7.0, the core of JCS (the LRU

-					memory cache, the indexed disk cache, the TCP

-					lateral, and the RMI remote server) requires only

-					two other jars.

-				</p>

-				<p>

-					<a

-						href="http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html">

-						concurrent

-					</a>

-				</p>

-				<p>commons-logging</p>

-

-				<p>

-					Versions 1.2.6.9 and below also require the

-					following two additional jars:

-				</p>

-

-				<p>commons-collections</p>

-				<p>commons-lang</p>

-				<p>

 					All of the other dependencies listed on the project

 					info page are for optional plugins.

 				</p>

@@ -64,8 +43,7 @@
 			<answer>

 				<p>

 					By default JCS looks for a cache.ccf file in the

-					classpath. You must have a configuration file on the

-					classpath to use JCS. The documentation describes

+					classpath. The documentation describes

 					how to configure the cache.

 				</p>

 			</answer>

@@ -82,15 +60,12 @@
 					classpath; instead you can do the following:

 				</p>

 				<code>

-					CompositeCacheManager ccm =

-					CompositeCacheManager.getUnconfiguredInstance();

-

 					Properties props = new Properties();

 

 					props.load(/* load properties from some location

 					defined by your app */);

 

-					ccm.configure(props);

+					JCS.setConfigProperties(props);

 				</code>

 			</answer>

 		</faq>

@@ -156,7 +131,7 @@
 					or get the source code from subversion with <code>svn co

 					http://svn.apache.org/repos/asf/commons/proper/jcs/trunk</code>.

 					The tagged releases are available with <code>svn co.</code> ex.

-					http://svn.apache.org/repos/asf/commons/proper/jcs/tags/jcs_1_2_7_0

+					https://svn.apache.org/repos/asf/commons/proper/jcs/tags/commons-jcs-2.0

 				</p>

 			</answer>

 		</faq>

diff --git a/xdocs/tasks.xml b/xdocs/tasks.xml
deleted file mode 100644
index 6e6715d..0000000
--- a/xdocs/tasks.xml
+++ /dev/null
@@ -1,52 +0,0 @@
-<?xml version="1.0"?>
-<!--
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements.  See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership.  The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License.  You may obtain a copy of the License at
-
-   http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied.  See the License for the
- specific language governing permissions and limitations
- under the License.
--->
-
-<document>
-  <properties>
-    <title>TODO (or not todo)</title>
-    <author email="ASmuts@therealm.com">Aaron Smuts</author>
-  </properties>
-
-  <body>
-    <section name="TODO">
-      <p>
-        The following is a list of items that need to be completed in
-        JCS.  Contributions are welcome!  If you want to get involved,
-        its as easy as reading the <a href="/site/source.html">source
-        page</a> and the <a href="/turbine/common/code-standards.html">
-        coding guidelines</a> established for Turbine family of projects.
-      </p>
-      <ul>
-        <li>Examples</li>
-        <li>XML config</li>
-        <li>
-          Run-time auxiliary selection (establish all lateral
-          available and choose via access)</li>
-        <li>Idle time check in
-          hub on get  ( only check maxLife expiration now)
-        </li>
-        <li>LFU memory cache</li>
-        <li>JUnit tests</li>
-        <li>Embedded servlet options</li>
-        <li>JMS lateral cache</li>
-      </ul>
-    </section>
-  </body>
-</document>