bloritsch 2003/06/19 13:32:00
Modified: src/xdocs features.xml index.xml whitepaper.xml
Added: src/xdocs book.xml tabs.xml
Removed: src/xdocs announcement.xml changes.xml
src/xdocs/css ns4_only.css print.css site.css tigris.css
src/xdocs/images header.gif
src/xdocs/stylesheets changes.vsl docs.vsl project.xml
templates.vm velocity.properties
Log:
make the documentation work
Revision Changes Path
1.10 +11 -6 avalon-logkit/src/xdocs/features.xml
Index: features.xml
===================================================================
RCS file: /home/cvs/avalon-logkit/src/xdocs/features.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- features.xml 19 Aug 2002 09:30:53 -0000 1.9
+++ features.xml 19 Jun 2003 20:31:59 -0000 1.10
@@ -1,16 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.1//EN"
"document-v11.dtd">
+
<document>
- <properties>
+ <header>
<title>Logkit - Features</title>
+
+ <authors>
+ <person name="Avalon Documentation Team" email="[EMAIL PROTECTED]"/>
+ </authors>
- <author email="peter at apache.org">Peter Donald</author>
-
- </properties>
+ </header>
<body>
-<section name="Features">
+ <section>
+ <title>Features</title>
<p>
<strong>This document is under construction!</strong><br/>
The LogKit provides the following features:
@@ -61,4 +66,4 @@
</section>
</body>
-</document>
\ No newline at end of file
+</document>
1.10 +16 -10 avalon-logkit/src/xdocs/index.xml
Index: index.xml
===================================================================
RCS file: /home/cvs/avalon-logkit/src/xdocs/index.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- index.xml 7 Feb 2003 20:10:18 -0000 1.9
+++ index.xml 19 Jun 2003 20:31:59 -0000 1.10
@@ -1,20 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.1//EN"
"document-v11.dtd">
+
<document>
- <properties>
- <title>LogKit - Introduction</title>
-
- <author email="[EMAIL PROTECTED]">Avalon Documentation Team</author>
-
- </properties>
+
+ <header>
+ <title>Logkit - Introduction</title>
+
+ <authors>
+ <person name="Avalon Documentation Team" email="[EMAIL PROTECTED]"/>
+ </authors>
+
+ </header>
+
<body>
- <section name="Introduction">
+ <section><title>Introduction</title>
<p>
LogKit is a logging toolkit designed for secure performance oriented logging
in applications. To get started using LogKit, it is recomended that you
read the
- <link href="whitepaper.html" type="simple" show="replace"
actuate="user">whitepaper</link> and browse the
- <link href="http://avalon.apache.org/logkit/api/index.html" type="simple"
show="replace" actuate="user">API docs</link>.
+ <link href="whitepaper.html">whitepaper</link> and browse the
+ <link href="http://avalon.apache.org/logkit/api/index.html">API docs</link>.
</p>
</section>
</body>
-</document>
\ No newline at end of file
+</document>
1.11 +26 -19 avalon-logkit/src/xdocs/whitepaper.xml
Index: whitepaper.xml
===================================================================
RCS file: /home/cvs/avalon-logkit/src/xdocs/whitepaper.xml,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- whitepaper.xml 6 Jun 2003 02:46:33 -0000 1.10
+++ whitepaper.xml 19 Jun 2003 20:31:59 -0000 1.11
@@ -1,13 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.1//EN"
"document-v11.dtd">
+
<document>
- <properties>
- <title>LogKit - Whitepaper</title>
- <author email="peter at apache.org">Peter Donald</author>
+ <header>
+ <title>Logkit - Whitepaper</title>
+
+ <authors>
+ <person name="Avalon Documentation Team" email="[EMAIL PROTECTED]"/>
+ </authors>
+
+ </header>
- </properties>
<body>
- <section name="Abstract">
+ <section>
+ <title>Abstract</title>
<p>
Logging is an integral component to any software development project.
During the development stages it offers a valuable source of debugging
@@ -16,7 +23,7 @@
arise. This whitepaper describes the design and implementation of LogKit.
</p>
</section>
- <section name="Introduction">
+ <section><title>Introduction</title>
<p>
LogKit, began life as a facade for a more complex logging toolkit. During
@@ -42,7 +49,7 @@
</section>
- <section name="Structure and Elements">
+ <section><title>Structure and Elements</title>
<p>
The most basic components of LogKit are the Logger, the LogEvent and the
@@ -53,7 +60,7 @@
</p>
</section>
- <section name="Priorities">
+ <section><title>Priorities</title>
<p>
One of the advantages of a logging toolkit is fine grain control over which
statements get printed. At some times during development you may wish to
enable
@@ -132,7 +139,7 @@
</section>
- <section name="Categories">
+ <section><title>Categories</title>
<p>
In a complex system it is often not enough to suppress logging based on
priority.
@@ -175,7 +182,7 @@
</section>
- <section name="Log Targets">
+ <section><title>Log Targets</title>
<p>
In LogKit, LogTargets are the destination of LogEvents. Decoupling LogEvent
@@ -191,7 +198,7 @@
runtime performance penalty.
</p>
- <subsection name="Filters">
+ <section><title>Filters</title>
<p>
Filters are a special kind of LogTarget. Instead of writing to an output
@@ -209,9 +216,9 @@
for pager log target.
</p>
- </subsection>
+ </section>
- <subsection name="AsyncLogTarget">
+ <section><title>AsyncLogTarget</title>
<p>
AsyncLogTarget is another kind of special LogTarget. It takes a log event
@@ -234,11 +241,11 @@
logger.setLogTargets( new LogTarget[] { asyncTarget } );
</source>
- </subsection>
+ </section>
</section>
- <section name="Formatters">
+ <section><title>Formatters</title>
<p>
LogTargets that write to a serial or unstructured store (ie filesystem or
@@ -294,7 +301,7 @@
</section>
- <section name="Context">
+ <section><title>Context</title>
<p>
In many systems you need to include extra information depending in logs
that depends
@@ -376,7 +383,7 @@
</section>
- <section name="Examples">
+ <section><title>Examples</title>
<p>
One of the best ways to learn how to use a toolkit is to see an
@@ -428,7 +435,7 @@
</section>
- <section name="Conclusion">
+ <section><title>Conclusion</title>
<p>
LogKit is a friendly, easy to use logging toolkit. It is high performing and
@@ -442,4 +449,4 @@
</body>
-</document>
\ No newline at end of file
+</document>
1.7 +22 -23 avalon-logkit/src/xdocs/book.xml
1.1 avalon-logkit/src/xdocs/tabs.xml
Index: tabs.xml
===================================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE tabs PUBLIC "-//APACHE//DTD Cocoon Documentation Tab V1.0//EN"
"tab-cocoon-v10.dtd">
<tabs software="Avalon-Fortress-Documentation"
title="Avalon-Fortress-Documentation"
copyright="Copyright (C) 2003 Apache Software Foundation">
<tab label="Home" href="http://avalon.apache.org/"/>
<tab label="Framework" href="http://avalon.apache.org/framework/"/>
<tab label="Components" href="http://avalon.apache.org/components/"/>
<tab label="Containers" href="http://avalon.apache.org/containers/"/>
<tab label="Apps" href="http://avalon.apache.org/apps/"/>
<tab label="Sandbox" href="http://avalon.apache.org/sandbox/"/>
</tabs>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]