vgritsenko 2003/12/30 05:07:38
Modified: config symbols.xml system.xml web.xml
Log:
formatting/comments
Revision Changes Path
1.3 +6 -6 xml-xindice/config/symbols.xml
Index: symbols.xml
===================================================================
RCS file: /home/cvs/xml-xindice/config/symbols.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- symbols.xml 2 Nov 2002 06:23:50 -0000 1.2
+++ symbols.xml 30 Dec 2003 13:07:38 -0000 1.3
@@ -6,10 +6,10 @@
-->
<symbols>
- <symbol name="symbols" id="0" />
- <symbol name="symbol" id="1" />
- <symbol name="name" id="2" />
- <symbol name="id" id="3" />
- <symbol name="nsuri" id="4" />
+ <symbol name="symbols" id="0" />
+ <symbol name="symbol" id="1" />
+ <symbol name="name" id="2" />
+ <symbol name="id" id="3" />
+ <symbol name="nsuri" id="4" />
</symbols>
1.14 +16 -7 xml-xindice/config/system.xml
Index: system.xml
===================================================================
RCS file: /home/cvs/xml-xindice/config/system.xml,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- system.xml 18 Dec 2003 15:10:44 -0000 1.13
+++ system.xml 30 Dec 2003 13:07:38 -0000 1.14
@@ -1,22 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
+ - Xindice Database Configuration File
+ -
- Version: $Revision$ $Date$
- Author: Kimbro Staken ([EMAIL PROTECTED])
-->
-
<xindice>
+
<!--
- - TODO: Describe
- - Set use-metadata to on to enable metadata usage.
+ - Defines the database instance. This release supports only one
+ - database instance. Attributes:
+ - dbroot:
+ - Identifies location of the database.
+ - name:
+ - Name of the database instance,
+ - use-metadata:
+ - When set to 'on', enables external metadata facilities
+ - for this database instance.
-->
<root-collection dbroot="./db/" name="db" use-metadata="on">
- <!-- TODO: Show symbols config
+ <!-- TODO: Describe symbols config
<symbols>
</symbols>
-->
- <!-- TODO: Show filer config
+ <!-- TODO: Describe filer config
<filer class="" pagesize="" maxkeysize="">
</filer>
-->
@@ -28,7 +37,7 @@
</root-collection>
<!--
- - TODO: Describe
+ - TODO: Describe XML-RPC config
-->
<xml-rpc>
<driver name="xerces"/>
1.8 +21 -20 xml-xindice/config/web.xml
Index: web.xml
===================================================================
RCS file: /home/cvs/xml-xindice/config/web.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- web.xml 4 Aug 2003 02:09:48 -0000 1.7
+++ web.xml 30 Dec 2003 13:07:38 -0000 1.8
@@ -1,29 +1,30 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application
2.2//EN"
"http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
+
<!--
- Version: $Revision$ $Date$
- Authors: Kimbro Staken ([EMAIL PROTECTED])
- Vladimir R. Bossicard ([EMAIL PROTECTED])
-->
<web-app>
- <display-name>Apache Xindice</display-name>
- <description>Apache Xindice XMLRPC Server</description>
- <servlet>
- <servlet-name>xindice</servlet-name>
-
<servlet-class>org.apache.xindice.server.XindiceServlet</servlet-class>
- <init-param>
- <param-name>xindice.configuration</param-name>
- <param-value>/WEB-INF/system.xml</param-value>
- </init-param>
- <load-on-startup>1</load-on-startup>
- </servlet>
- <servlet-mapping>
- <servlet-name>xindice</servlet-name>
- <url-pattern>/*</url-pattern>
- </servlet-mapping>
- <servlet-mapping>
- <servlet-name>xindice</servlet-name>
- <url-pattern>/</url-pattern>
- </servlet-mapping>
+ <display-name>Apache Xindice</display-name>
+ <description>Apache Xindice XMLRPC Server</description>
+ <servlet>
+ <servlet-name>xindice</servlet-name>
+ <servlet-class>org.apache.xindice.server.XindiceServlet</servlet-class>
+ <init-param>
+ <param-name>xindice.configuration</param-name>
+ <param-value>/WEB-INF/system.xml</param-value>
+ </init-param>
+ <load-on-startup>1</load-on-startup>
+ </servlet>
+ <servlet-mapping>
+ <servlet-name>xindice</servlet-name>
+ <url-pattern>/*</url-pattern>
+ </servlet-mapping>
+ <servlet-mapping>
+ <servlet-name>xindice</servlet-name>
+ <url-pattern>/</url-pattern>
+ </servlet-mapping>
</web-app>