hlship 2004/06/05 12:36:37
Modified: src/documentation/content/xdocs site.xml sdl.xml
Added: . status.xml
Log:
Add status.xml, and add Change Log and TODO to the site menu.
Fix bad formatting inside SDL.xml.
Revision Changes Path
1.1 jakarta-hivemind/status.xml
Index: status.xml
===================================================================
<?xml version="1.0"?>
<!--
Copyright 2004 The Apache Software Foundation
Licensed 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.
-->
<status>
<developers>
<person name="Howard M. Lewis Ship" email="[EMAIL PROTECTED]"
id="HLS" />
</developers>
<todo>
<actions priority="Release 1.0">
<action context="lib" dev="HLS">JMX Integration</action>
<action context="lib" dev="HLS">Factory for
pipeline-based services.</action>
</actions>
</todo>
<changes>
<release version="1.0-beta-1" date="unreleased">
<action type="update" dev="HLS">Added change log.
</action>
</release>
</changes>
</status>
1.12 +2 -1 jakarta-hivemind/src/documentation/content/xdocs/site.xml
Index: site.xml
===================================================================
RCS file:
/home/cvs/jakarta-hivemind/src/documentation/content/xdocs/site.xml,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- site.xml 4 Jun 2004 19:29:18 -0000 1.11
+++ site.xml 5 Jun 2004 19:36:37 -0000 1.12
@@ -1,5 +1,4 @@
<?xml version="1.0"?>
-<!-- $Id$ -->
<!--
Copyright 2004 The Apache Software Foundation
@@ -37,6 +36,8 @@
<rules label="Contribution Processing Rules"
href="rules.html"/>
</reference>
+ <changes label="Change Log" href="changes.html"/>
+ <todo label="TODO" href="todo.html"/>
<downloads href="downloads.html" label="Downloads"/>
<bugs
href="http://issues.apache.org/jira/secure/BrowseProject.jspa?id=10500"
label="Bugs"/>
1.3 +32 -11 jakarta-hivemind/src/documentation/content/xdocs/sdl.xml
Index: sdl.xml
===================================================================
RCS file: /home/cvs/jakarta-hivemind/src/documentation/content/xdocs/sdl.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sdl.xml 26 May 2004 16:58:43 -0000 1.2
+++ sdl.xml 5 Jun 2004 19:36:37 -0000 1.3
@@ -1,5 +1,4 @@
<?xml version="1.0"?>
-<!-- $Id$ -->
<!--
Copyright 2004 The Apache Software Foundation
@@ -93,12 +92,29 @@
<p>
<strong>SDL format:</strong>
</p>
- <source><![CDATA[ module (id=some.module
version="1.0.0") { configuration
- (id=ControlPipeline) { schema { element
(name=processor) { attribute
- (name=name required=true) attribute
(name=service-id required=true
- translator=service) attribute (name=before)
attribute (name=after)
- conversion
(class=some.module.PipelineContribution) { map
- (property=controlService attribute=service-id)
} } } } }]]> </source>
+ <source><![CDATA[
+module (id=some.module version="1.0.0")
+{
+ configuration (id=ControlPipeline)
+ {
+ schema
+ {
+ element (name=processor)
+ {
+ attribute (name=name required=true)
+ attribute (name=service-id required=true translator=service)
+ attribute (name=before)
+ attribute (name=after)
+
+ conversion (class=some.module.PipelineContribution)
+ {
+ map (property=controlService attribute=service-id)
+ }
+ }
+ }
+ }
+}
+]]> </source>
<p>Some observations:</p>
<ul>
<li>SDL uses open and close braces to denote
containment of elements
@@ -107,8 +123,9 @@
following the element name</li>
<li>Elements without attributes can omit the
parenthesis (example:
<code>schema</code>)</li>
- <li>Elements that do not contain other elements
can omit the open and
- close braces denoting thier body
(example: <code>attribute</code>)</li>
+ <li>Elements that do not contain other elements
can omit the open and
+ close braces denoting thier body
(example:
+ <code>attribute</code>)</li>
<li>Most common strings do not have to be
quoted</li>
<li><em>All</em> whitespace not inside quotes
is ignored</li>
</ul>
@@ -127,8 +144,12 @@
<section>
<title>Comments</title>
<p>Comments are in the format traditional in Java and
C:</p>
- <source><![CDATA[ // This is a comment that extends to
the end of the
- current line. /* This is a multiline comment.
*/ ]]> </source>
+ <source><![CDATA[
+// This is a comment that extends to the end of the current line.
+
+/* This is a multiline
+ comment. */
+]]> </source>
<p>Comments may appear anywhere in an SDL document
(except within quoted
strings) and are always ignored.</p>
</section>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]