--> |
R u l e M L |
<-- |
This is a revised DTD draft for RuleML. Each DTD in the evolving hierarchy corresponds to a specific RuleML sublanguage. The DTDs use a modularization approach similar to the one in XHTML in order to offer appropriate flexibility and accomodate different implementations and approaches. We will write a technical report on this system of RuleML DTDs (see also KR Principles and DTD Modularization).
The current Version 0.8 differs from the earlier Version 0.7 by principally shifting the approach from a positional representation of rules towards an object-centered one. This was motivated by RuleML's semantic neutrality w.r.t. backward and forward reasoning as well as by a comparison of the mostly positional XML data model with the mostly object-centered RDF data model: In Version 0.7, a rule ('if') element's children were positionalized, XML-style, in the fixed order of a conclusion followed by premises; in Version 0.8, a rule ('imp') element's children are predicate-object ('role'-'type') pairs, RDF-style, whose positions are immaterial. Thus, while Version 0.8, as well as future versions, remain based on XML, we make an object-centered usage of XML via novel 'role' tag names complementing the normal 'type' tag names. In order not to change too many things at once, we didn't yet work on proceeding from DTDs to XML Schemas. However, we already see some places where the added expressive power of XML Schemas could help Version 0.8, in particular, XML Schema datatypes. The XML Schema expressiveness should also improve the other important change in RuleML, namely the replacement of Version 0.7 ur elements by corresponding Version 0.8 attributes. This permits not only each ind but also each rel (as required for RDF triples) etc. to be regarded as a URI 'object'. Important additions in RuleML 0.8 are the n-tuple (tup) and role-list (roli) datatypes, which can be employed, respectively, in a positional and non-positional manner, to replace all n-ary operations by unary ones.
The DTD files etc. of the earlier Version 0.7 will be kept "as is"; actually, RuleML 0.7 can be regarded as a language in its own right, which may serve future RuleML versions as a "purely positional" reference language for feature comparisons etc. Since to our knowledge not many rulebases have yet been written in Version 0.7 (with the notable exception of GEDCOM), we currently have no full-blown XSLT translator for automatically upgrading them to Version 0.8. However, there is a GEDCOM-oriented upgrading translator (cf. the GEDCOM entry of the RuleML Rulebase Library), which should be easy to adapt to other RuleML 0.7-to-0.8 upgrades. Version 0.8 was partially inspired by a presentation of RuleML 0.7 to an RDF audience. Hence, a RuleML 0.7-to-RuleML 0.8 translator could probably be constructed taking our experimental RuleML 0.7-to-RDF translator as a starting point. Since RuleML 0.7 is a positional system with similarities to RFML, a 0.7-to-0.8 translator could also take advantage of the translator from RFML to RuleML 0.8.
The upper layer of the RuleML hierarchy of rules is discussed in our main page's design section. In that terminology, the system of RuleML DTDs presented here only covers derivation rules, not reaction rules (special tags for facts have now been introduced).
This is because we think it is important to start with a subset of simple rules, test and refine our principal strategy using these, and then work 'up' to the more general categories of rules in the hierarchy. For this we choose Datalog, a language corresponding to relational databases (ground facts without complex domains or 'constructors') augmented by views (possibly recursive rules), and work a few steps upwards to further declarative rules as allowed in (equational) Horn logic. We also introduce a URL/URI language corresponding to simple objects. The 'UR'-Datalog join of both of these classes then permits inferences over RDF-like 'resources' and can be re-specialized to RDF triples: hierarchy slide.
Regarding the concrete markup syntax, we have been experimenting with several DTDs prior to the current, still preliminary, version. The rationale for our current tags is as follows.
Here we exemplify RuleML 0.8 in the context of six versions of rule representations as trees and their corresponding XML markups, from totally ordered (most concise) to totally labeled, with Seq containers (most verbose). The first version corresponds to RuleML 0.7 with if replaced by imp. The last version is the one most related to RDF. The T3/X3 version corresponds to RuleML 0.8, which employs RDF-like role labels exactly where they prevent order overspecification (which arbitrarily puts a non-positional type into the child order) and uses the natural XML child order instead of RDF's Seq containers.
We will use the following sample rule:
A person owns an object
if that person buys the object from a merchant and the person keeps the object.
T1: As an Ordered Tree ("|"-Arcs: Ordered left to right, as if labeled 1, 2, ...):
imp---------------------------------
| |
| |
| |
atom------------------ and----------------------------------------
| | | | |
| | | | |
| | | | |
rel var var atom--------------------------- atom------------------
. . . | | | | | | |
. . . | | | | | | |
. . . | | | | | | |
own person object rel var var var rel var var
. . . . . . .
. . . . . . .
. . . . . . .
buy person merchant object keep person object
X1: As XML Markup without any Roles:
<imp>
<atom>
<rel>own</rel>
<var>person</var>
<var>object</var>
</atom>
<!-- explicit 'and' -->
<and>
<atom>
<rel>buy</rel>
<var>person</var>
<var>merchant</var>
<var>object</var>
</atom>
<atom>
<rel>keep</rel>
<var>person</var>
<var>object</var>
</atom>
</and>
</imp>
T2: As an Order-Biased Tree ("|"-Arcs: Ordered left to right, implicitly labeled 1, 2, ...;
"*"-Arcs: Unordered but explicitly labeled):
imp---------------------------------
* *
head * body *
* *
atom------------------ and----------------------------------------
| | | | |
| | | | |
| | | | |
rel var var atom--------------------------- atom------------------
. . . | | | | | | |
. . . | | | | | | |
. . . | | | | | | |
own person object rel var var var rel var var
. . . . . . .
. . . . . . .
. . . . . . .
buy person merchant object keep person object
X2: As XML Markup with Roles only for parents all of whose child Types are Non-Positional:
<imp>
<_head>
<atom>
<rel>own</rel>
<var>person</var>
<var>object</var>
</atom>
</_head>
<_body>
<!-- explicit 'and' -->
<and>
<atom>
<rel>buy</rel>
<var>person</var>
<var>merchant</var>
<var>object</var>
</atom>
<atom>
<rel>keep</rel>
<var>person</var>
<var>object</var>
</atom>
</and>
</_body>
</imp>
T3: As an Order-Labeled Tree ("|"-Arcs: Ordered left to right, implicitly labeled 1, 2, ...;
"*"-Arcs: Explicitly labeled as in Arc-Labeled Trees below):
imp---------------------------------
* *
head * body *
* *
atom------------------ and----------------------------------------
* | | | |
opr * | | | |
* | | | |
rel var var atom--------------------------- atom------------------
. . . * | | | * | |
. . . opr * | | | opr * | |
. . . * | | | * | |
own person object rel var var var rel var var
. . . . . . .
. . . . . . .
. . . . . . .
buy person merchant object keep person object
X3: As XML Markup with Roles only for Non-Positional Types:
<imp>
<_head>
<atom>
<_opr><rel>own</rel></_opr>
<var>person</var>
<var>object</var>
</atom>
</_head>
<_body>
<!-- explicit 'and' -->
<and>
<atom>
<_opr><rel>buy</rel></_opr>
<var>person</var>
<var>merchant</var>
<var>object</var>
</atom>
<atom>
<_opr><rel>keep</rel></_opr>
<var>person</var>
<var>object</var>
</atom>
</and>
</_body>
</imp>
T4: As a Label-Biased Tree:
imp---------------------------------
* *
head * body *
* *
atom------------------ and----------------------------------------
* * * | |
opr * 1 * 2 * | |
* * * | |
rel var var atom--------------------------- atom------------------
. . . * * * * * * *
. . . opr * 1 * 2 * 3 * opr * 1 * 2 *
. . . * * * * * * *
own person object rel var var var rel var var
. . . . . . .
. . . . . . .
. . . . . . .
buy person merchant object keep person object
X4: As XML Markup with Roles for all parents having at least one Non-Positional Type as child:
<imp>
<_head>
<atom>
<_opr><rel>own</rel></_opr>
<_1><var>person</var></_1>
<_2><var>object</var></_2>
</atom>
</_head>
<_body>
<!-- explicit 'and' -->
<and>
<atom>
<_opr><rel>buy</rel></_opr>
<_1><var>person</var></_1>
<_2><var>merchant</var></_2>
<_3><var>object</var></_3>
</atom>
<atom>
<_opr><rel>keep</rel></_opr>
<_1><var>person</var></_1>
<_2><var>object</var></_2>
</atom>
</and>
</_body>
</imp>
T5: As an Arc-Labeled Tree (Special case of a Directed Arc-Labeled Graph):
imp---------------------------------
* *
head * body *
* *
atom------------------ and----------------------------------------
* * * * *
opr * 1 * 2 * 1 * 2 *
* * * * *
rel var var atom--------------------------- atom------------------
. . . * * * * * * *
. . . opr * 1 * 2 * 3 * opr * 1 * 2 *
. . . * * * * * * *
own person object rel var var var rel var var
. . . . . . .
. . . . . . .
. . . . . . .
buy person merchant object keep person object
X5: As XML Markup with Roles for Every Embedded Type:
<imp>
<_head>
<atom>
<_opr><rel>own</rel></_opr>
<_1><var>person</var></_1>
<_2><var>object</var></_2>
</atom>
</_head>
<_body>
<!-- explicit 'and' -->
<and>
<_1>
<atom>
<_opr><rel>buy</rel></_opr>
<_1><var>person</var></_1>
<_2><var>merchant</var></_2>
<_3><var>object</var></_3>
</atom>
</_1>
<_2>
<atom>
<_opr><rel>keep</rel></_opr>
<_1><var>person</var></_1>
<_2><var>object</var></_2>
</atom>
</_2>
</and>
</_body>
</imp>
T6: As an Arc-Labeled Tree with Seq Nodes (RDF-like Sequence Containers):
imp-----------------------------------------
* *
head * body *
* *
atom--------------- and--------
* * *
opr * args * args *
* * *
rel Seq---------- Seq---------------
. * * * *
. 1 * 2 * 1 * 2 *
. * * * *
own var var atom atom
. .
. .
. . . . .
person object
X6: As XML Markup with Roles for Every Embedded Type including Seq Types:
<imp>
<_head>
<atom>
<_opr><rel>own</rel></_opr>
<_args>
<Seq>
<_1><var>person</var></_1>
<_2><var>object</var></_2>
</Seq>
</_args>
</atom>
</_head>
<_body>
<!-- explicit 'and' -->
<and>
<_args>
<Seq>
<_1>
<atom>
<_opr><rel>buy</rel></_opr>
<_args>
<Seq>
<_1><var>person</var></_1>
<_2><var>merchant</var></_2>
<_3><var>object</var></_3>
</Seq>
</_args>
</atom>
</_1>
<_2>
<atom>
<_opr><rel>keep</rel></_opr>
<_args>
<Seq>
<_1><var>person</var></_1>
<_2><var>object</var></_2>
</Seq>
</_args>
</atom>
</_2>
</Seq>
</_args>
</and>
</_body>
</imp>
A comparison of these six tree/markup versions shows the following:
However, RuleML 0.8 also provides an n-tuple datatype in its http://www.ruleml.org/0.8/dtd/ruleml-hornlog.dtd. This tup type can be employed to reduce all atoms to binary "_opr"-"_1" element pairs, where the original n arguments after opr become the n elements of a single tup argument under an (implicit) _1 role. Similarly for nanos and cterms. Such a 'tupping' of arguments may be used to confine positional types to n-tuples and other built-ins (e.g., 'and'). The Version T7/X7 below exemplifies.
T7: As an Order-Labeled Tree with tupped Arguments:
imp-----------------------------------------
* *
head * body *
* *
atom--------------- and----------------------------------------
* | | |
opr * | | |
* | | |
rel tup---------- atom atom
. | |
. | |
. | |
own var var
. .
. .
. . . . .
person object
X7: As XML Markup with tupped Arguments and Roles only for Non-Positional Types:
<imp>
<_head>
<atom>
<_opr><rel>own</rel></_opr>
<tup>
<var>person</var>
<var>object</var>
</tup>
</atom>
</_head>
<_body>
<!-- explicit 'and' -->
<and>
<atom>
<_opr><rel>buy</rel></_opr>
<tup>
<var>person</var>
<var>merchant</var>
<var>object</var>
</tup>
</atom>
<atom>
<_opr><rel>keep</rel></_opr>
<tup>
<var>person</var>
<var>object</var>
</tup>
</atom>
</and>
</_body>
</imp>
For the above T3/X3 version constituting RuleML 0.8 we now exemplify the abstraction achieved by regarding all commutative possibilities as equivalent. In this 'abstract syntax' commutative tree variants will be graph-theoretically equivalent and the corresponding commutative markup variants will be algebraically equivalent. More precisely, for trees the branching order of the (explicitly labeled) "*" arcs is immaterial and for markups the following equation holds: <element>. . .<_role1>...</_role1>. . .<_role2>...</_role2>. . .</element> = <element>. . .<_role2>...</_role2>. . .<_role1>...</_role1>. . .</element>. Note that such an abstraction is also implicit in RDF graphs and serializations, since both the triples within RDF models and the pairs within rdf:Description can be permuted without information loss. The following examples of the sixteen equivalent 'Commutations' of T3/X3 illustrate, starting with our original T3/X3 version.
T3[1of16]: RuleML 0.8 Tree in the first of 16 Graph-theoretically Equivalent Commutations:
imp---------------------------------
* *
head * body *
* *
atom------------------ and----------------------------------------
* | | | |
opr * | | | |
* | | | |
rel var var atom--------------------------- atom------------------
. . . * | | | * | |
. . . opr * | | | opr * | |
. . . * | | | * | |
own person object rel var var var rel var var
. . . . . . .
. . . . . . .
. . . . . . .
buy person merchant object keep person object
X3[1of16]: RuleML 0.8 Markup in the first of 16 Algebraically Equivalent Commutations:
<imp>
<_head>
<atom>
<_opr><rel>own</rel></_opr>
<var>person</var>
<var>object</var>
</atom>
</_head>
<_body>
<!-- explicit 'and' -->
<and>
<atom>
<_opr><rel>buy</rel></_opr>
<var>person</var>
<var>merchant</var>
<var>object</var>
</atom>
<atom>
<_opr><rel>keep</rel></_opr>
<var>person</var>
<var>object</var>
</atom>
</and>
</_body>
</imp>
T3[2of16]: RuleML 0.8 Tree in the second of 16 Graph-theoretically Equivalent Commutations:
imp---------------------------------
* *
head * body *
* *
atom---------------- and----------------------------------------
| | * | |
| | * opr | |
| | * | |
var var rel atom--------------------------- atom------------------
. . . * | | | * | |
. . . opr * | | | opr * | |
. . . * | | | * | |
object person own rel var var var rel var var
. . . . . . .
. . . . . . .
. . . . . . .
buy person merchant object keep person object
X3[2of16]: RuleML 0.8 Markup in the second of 16 Algebraically Equivalent Commutations:
<imp>
<_head>
<atom>
<var>person</var>
<var>object</var>
<_opr><rel>own</rel></_opr>
</atom>
</_head>
<_body>
<!-- explicit 'and' -->
<and>
<atom>
<_opr><rel>buy</rel></_opr>
<var>person</var>
<var>merchant</var>
<var>object</var>
</atom>
<atom>
<_opr><rel>keep</rel></_opr>
<var>person</var>
<var>object</var>
</atom>
</and>
</_body>
</imp>
. . .
T3[9of16]: RuleML 0.8 Tree in the ninth of 16 Graph-theoretically Equivalent Commutations:
imp--------------------------------------------------------------------------
* *
body * head *
* *
and---------------------------------------- atom------------------
| | * | |
| | opr * | |
| | * | |
atom--------------------------- atom------------------ rel var var
* | | | * | | . . .
opr * | | | opr * | | . . .
* | | | * | | . . .
rel var var var rel var var own person object
. . . . . . .
. . . . . . .
. . . . . . .
buy person merchant object keep person object
X3[9of16]: RuleML 0.8 Markup in the ninth of 16 Algebraically Equivalent Commutations:
<imp>
<_body>
<!-- explicit 'and' -->
<and>
<atom>
<_opr><rel>buy</rel></_opr>
<var>person</var>
<var>merchant</var>
<var>object</var>
</atom>
<atom>
<_opr><rel>keep</rel></_opr>
<var>person</var>
<var>object</var>
</atom>
</and>
</_body>
<_head>
<atom>
<_opr><rel>own</rel></_opr>
<var>person</var>
<var>object</var>
</atom>
</_head>
</imp>
. . .
T3[16of16]: RuleML 0.8 Tree in the sixteenth of 16 Graph-theoretically Equivalent Commutations:
imp--------------------------------------------------------------------------
* *
body * head *
* *
and---------------------------------------- atom----------------
| | | | *
| | | | * opr
| | | | *
atom--------------------------- atom------------------ var var rel
| | | * | | * . . .
| | | * opr | | * opr . . .
| | | * | | * . . .
var var var rel var var rel object person own
. . . . . . .
. . . . . . .
. . . . . . .
person merchant object buy person object keep
X3[16of16]: RuleML 0.8 Markup in the sixteenth of 16 Algebraically Equivalent Commutations:
<imp>
<_body>
<!-- explicit 'and' -->
<and>
<atom>
<var>person</var>
<var>merchant</var>
<var>object</var>
<_opr><rel>buy</rel></_opr>
</atom>
<atom>
<var>person</var>
<var>object</var>
<_opr><rel>keep</rel></_opr>
</atom>
</and>
</_body>
<_head>
<atom>
<var>person</var>
<var>object</var>
<_opr><rel>own</rel></_opr>
</atom>
</_head>
</imp>
Appended below is a preliminary DTD, designated version 0.8, for a Datalog subset of RuleML (Appendix 1). Also appended below is a simple example rulebase that conforms to that DTD, and instructions for how to validate the example against the DTD.
There now also is a family of DTD's, specified in a modular fashion (using parameter ENTITY declarations), also designated vers. 0.8, at this URL: http://www.ruleml.org/0.8/dtd . Note that this family of DTD's is, overall, more raw/immature than just the Datalog member of that family. Note that the Datalog DTD on the website is a bit more complex, a proper superset of, the one appended below. The one below is called "monolith", because it has stripped out the ENTITY interface declarations that are in the website (non-"monolith") version.
To see the DTD's on the website: After you clicked on the *.dtd files, you may have to select View | Page Source. Thus, we provide additional *.dtd.txt links. Downloading should work anyway.
You can try things out "monolithically", as explained in Appendix 3, using the own.ruleml example of Appendix 2 (the Warnings here concern only stylistic matters).
You may also use the non-"monolith" modules to study XML's "INCLUDE"/"IGNORE" overriding method for DTDs that are read in via "ENTITY % ... SYSTEM *.dtd" declarations. But you can get the gist of the definitions also when treating most of these house-keeping directives as no-ops.
After some discussions, we found a set of tag names that sound reasonable to us. Feedback is very welcome.
Facts now use an explicit, abbreviating "fact" tag. Similarly, abbreviating tags will probably be needed for reaction rules and integrity constraints.
User comments on all levels are currently taken care of by XML; look at the sample datalog document own.ruleml.
More sample files -- each referring to the most specific DTD still validating them -- can be found at: http://www.ruleml.org/0.8/exa . See the instructions above (about View | Page Source, etc.) for viewing the content etc.
Should the 'UR' attribute in inds etc. be renamed from (XHTML-like) 'href' to (our favorite) 'uref', 'ur', 'resource', or something else?
More issues are being collected by Said Tabet.
<!-- An XML DTD for a Datalog RuleML Sublanguage: Monolith Version --> <!-- Last Modification: 2001-07-07 --> <!-- ELEMENT Declarations --> <!-- 'rulebase' root element uses 'imp' rules and 'fact' assertions as top-level elements --> <!ELEMENT rulebase ((imp | fact)*)> <!-- 'imp' rules are usable as general implications on the top-level --> <!-- 'imp' element uses a conclusion role _head followed by a premise role _body, or equivalently --> <!-- (since roles constitute unordered elements), uses a premise role _body followed by a conclusion role _head --> <!-- "<imp>_head _body</imp>" stands for "_head is implied by _body", i.e., "_head is true is implied by _body is true", or equivalently, --> <!-- "<imp>_body _head</imp>" stands for "_body implies _head", i.e., "_body is true implies _head is true" --> <!ELEMENT imp ((_head, _body) | (_body, _head))> <!-- 'fact' assertions are usable as degenerate rules on the top-level --> <!-- 'fact' element uses just a conclusion role _head --> <!-- "<fact>_head</fact>" stands for "_head is implied by true", i.e., "_head is true" --> <!ELEMENT fact (_head) > <!-- _head role is usable within 'imp' rules and 'fact' assertions --> <!-- _body role is usable within 'imp' rules --> <!-- _head uses an atomic formula --> <!-- _body uses an atomic formula or an 'and' --> <!ELEMENT _head (atom)> <!ELEMENT _body (atom | and)> <!-- an 'and' is usable within _body's --> <!-- 'and' uses zero or more atomic formulas --> <!-- "<and>atom</and>" is equivalent to "atom"--> <!-- "<and></and>" is equivalent to "true"--> <!ELEMENT and (atom*)> <!-- atomic formulas are usable within _head's, _body's, and 'and's --> <!-- atom element uses an: --> <!-- _opr ("operator of relations") role followed by a sequence of zero or more arguments, or similarly --> <!-- (since roles constitute unordered elements, and the zero-argument case must not cause ambiguity), --> <!-- a sequence of one or more arguments followed by an _opr role --> <!-- the arguments may be ind(ividual)s or var(iable)s --> <!ELEMENT atom ((_opr, (ind | var)*) | ((ind | var)+, _opr))> <!-- _opr is usable within atoms --> <!-- _opr uses rel(ation) symbol --> <!ELEMENT _opr (rel)> <!-- there is one kind of fixed argument --> <!-- individual constant, as in predicate logic --> <!ELEMENT ind (#PCDATA)> <!-- there is one kind of variable argument --> <!-- logical variable, as in logic programming --> <!ELEMENT var (#PCDATA)> <!-- there are only fixed (first-order) relations --> <!-- relation or predicate symbol --> <!ELEMENT rel (#PCDATA)> |
<?xml version="1.0" standalone="no"?> <!DOCTYPE rulebase SYSTEM "http://www.ruleml.org/0.8/dtd/ruleml-datalog-monolith.dtd"> <rulebase> <!-- start XML comment ... This example rulebase contains four rules. The first and second rules are implications; the third and fourth ones are facts. In English: The first rule implies that a person owns an object if that person buys the object from a merchant and the person keeps the object. As an OrdLab Tree: imp--------------------------------- * * head * body * * * atom------------------ and---------------------------------------- * | | | | opr * | | | | * | | | | rel var var atom--------------------------- atom------------------ . . . * | | | * | | . . . opr * | | | opr * | | . . . * | | | * | | own person object rel var var var rel var var . . . . . . . . . . . . . . . . . . . . . buy person merchant object keep person object ... end XML comment --> <imp> <_head> <atom> <_opr><rel>own</rel></_opr> <var>person</var> <var>object</var> </atom> </_head> <_body> <!-- explicit 'and' --> <and> <atom> <_opr><rel>buy</rel></_opr> <var>person</var> <var>merchant</var> <var>object</var> </atom> <atom> <_opr><rel>keep</rel></_opr> <var>person</var> <var>object</var> </atom> </and> </_body> </imp> <!-- The second rule implies that a person buys an object from a merchant if the merchant sells the object to the person. --> <imp> <_head> <atom> <_opr><rel>buy</rel></_opr> <var>person</var> <var>merchant</var> <var>object</var> </atom> </_head> <_body> <atom> <_opr><rel>sell</rel></_opr> <var>merchant</var> <var>person</var> <var>object</var> </atom> </_body> </imp> <!-- The third rule is a fact that asserts that John sells XMLBible to Mary. --> <fact> <_head> <atom> <_opr><rel>sell</rel></_opr> <ind>John</ind> <ind>Mary</ind> <ind>XMLBible</ind> </atom> </_head> </fact> <!-- The fourth rule is a fact that asserts that Mary keeps XMLBible. Observe that this fact is binary - i.e., there are two arguments for the relation. RDF viewed as a logical knowledge representation is, likewise, binary, although its arguments have type restrictions, e.g., the first must be a resource (basically, a URI). Some of the DTD's on the RuleML website handle URL's/URI's (UR's); see especially urc-datalog.dtd for inferencing with RDF-like facts --> <fact> <_head> <atom> <_opr><rel>keep</rel></_opr> <ind>Mary</ind> <ind>XMLBible</ind> </atom> </_head> </fact> </rulebase> |
Validating a RuleML 0.8 Sample Document: own.ruleml > Go tohttp://www.stg.brown.edu/service/xmlvalid/ > Paste in at URI: http://www.ruleml.org/0.8/exa/own.ruleml > Hit the 'Validate' button > You should get: Validation Results for http://www.ruleml.org/0.8/exa/own.ruleml Warnings: line 39, http://www.ruleml.org/0.8/exa/own.ruleml: warning (901): deprecated sequence within comment ending at: -- Document validates OK. |
Site Contact:
Harold Boley.
Page Version: 2002-03-07
"Practice what you preach": XML source of this homepage at index.xml (index.xml.txt);
transformed to HTML via the adaptation of Michael Sintek's SliML XSLT stylesheet at homepage.xsl (View | Page Source)