--- a/model/ProvenanceModel.html Thu Aug 04 23:18:43 2011 +0100
+++ b/model/ProvenanceModel.html Thu Aug 04 23:22:33 2011 +0100
@@ -1091,7 +1091,7 @@
<li>For use, generation, and derivation event, the first argument is the 'effect' (i.e. most recent item) and the second argument is the 'cause' (i.e. least recent item). This order is compatible with the temporal layout of the graphical notation.
</li>
<li> BNF grammar for the Provenance Abstract Syntax Notation,
-<div data-include='grammar.txt'></div>
+<div data-include='grammar.html'></div>
</li>
</ul>
</section>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/model/grammar.html Thu Aug 04 23:22:33 2011 +0100
@@ -0,0 +1,17 @@
+<construct> :== <name> '(' <argument+> ')'
+<argument+> ::= <argument> | <argument> ',' <argument+>
+<argument> ::= <identifier>
+ | <role>
+ | <time>
+ | <properties>
+
+<properties> ::= [ <attribute-value*> ]
+<attribute-value*> ::= | <attribute-value> ',' <attribute-value*>
+<attribute-value> ::= <attribute> ':' <value>
+
+<value> ::= <string> | <number> | <time>
+
+
+<role> ::= token
+<identifier> ::= token
+<attribute> ::= token