- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 11 Feb 2010 14:23:41 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/markup/schema
In directory hutz:/tmp/cvs-serv4450/schema
Modified Files:
common.rnc embed.rnc
Log Message:
checkpointing
Index: common.rnc
===================================================================
RCS file: /sources/public/html5/markup/schema/common.rnc,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- common.rnc 28 Jan 2010 17:11:53 -0000 1.2
+++ common.rnc 11 Feb 2010 14:23:38 -0000 1.3
@@ -358,6 +358,18 @@
common.data.zero =
w:zero
+## Rectangle
+ common.data.rectangle =
+ w:rectangle
+
+## Circle
+ common.data.circle =
+ w:circle
+
+## Polyline
+ common.data.polyline =
+ w:polyline
+
common-form.attrs.form = ( notAllowed )
common.attrs.aria = ( notAllowed )
Index: embed.rnc
===================================================================
RCS file: /sources/public/html5/markup/schema/embed.rnc,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- embed.rnc 28 Jan 2010 17:11:53 -0000 1.2
+++ embed.rnc 11 Feb 2010 14:23:39 -0000 1.3
@@ -446,7 +446,7 @@
}
area.attrs.coords.rect =
attribute coords {
- w:rectangle
+ common.data.rectangle
# xsd:token {
# pattern = "-?[0-9]+,-?[0-9]+,-?[0-9]+,-?[0-9]+"
# }
@@ -457,7 +457,7 @@
}
area.attrs.coords.circle =
attribute coords {
- w:circle
+ common.data.circle
# xsd:token {
# pattern = "-?[0-9]+,-?[0-9]+,[0-9]+"
# }
@@ -468,7 +468,7 @@
}
area.attrs.coords.poly =
attribute coords {
- w:polyline
+ common.data.polyline
# xsd:token {
# pattern = "-?[0-9]+,-?[0-9]+,-?[0-9]+,-?[0-9]+,-?[0-9]+,-?[0-9]+(,-?[0-9]+,-?[0-9]+)*"
# }
Received on Thursday, 11 February 2010 14:23:42 UTC