changed the Turtle to use xsd:hexBinary. How to I make the modulus look reasonably good, so that it does not bblfish
authorHenry Story <henry.story@bblfish.net>
Tue, 22 Nov 2011 22:43:08 +0100
branchbblfish
changeset 198 49ee69e74cf9
parent 197 a1b91a2f2d76
child 199 20d8a5e1079a
changed the Turtle to use xsd:hexBinary. How to I make the modulus look reasonably good, so that it does not
just span all the way to the right?
spec/index-respec.html
--- a/spec/index-respec.html	Tue Nov 22 21:59:07 2011 +0100
+++ b/spec/index-respec.html	Tue Nov 22 22:43:08 2011 +0100
@@ -612,36 +612,16 @@
 <h1>Turtle</h1>
 <p>A widely used format for writing RDF graphs is the Turtle notation. </p>
 <pre class="example">
- @prefix cert: &lt;http://www.w3.org/ns/auth/cert#&gt; .
- @prefix rsa: &lt;http://www.w3.org/ns/auth/rsa#&gt; .
+ @prefix : &lt;http://www.w3.org/ns/auth/cert#&gt; .
+ @prefix xsd: &lt;http://www.w3.org/2001/XMLSchema#&gt; .
  @prefix foaf: &lt;http://xmlns.com/foaf/0.1/&gt; .
- @prefix : &lt;https://bob.example/profile#&gt; .
+ @prefix bob: &lt;https://bob.example/profile#&gt; .
 
- :me a foaf:Person;
+ bob:me a foaf:Person;
    foaf:name "Joe";
-   cert:key [
-     a rsa:RSAPublicKey;
-     rsa:modulus """
-       00:cb:24:ed:85:d6:4d:79:4b:69:c7:01:c1:86:ac:
-       c0:59:50:1e:85:60:00:f6:61:c9:32:04:d8:38:0e:
-       07:19:1c:5c:8b:36:8d:2a:c3:2a:42:8a:cb:97:03:
-       98:66:43:68:dc:2a:86:73:20:22:0f:75:5e:99:ca:
-       2e:ec:da:e6:2e:8d:15:fb:58:e1:b7:6a:e5:9c:b7:
-       ac:e8:83:83:94:d5:9e:72:50:b4:49:17:6e:51:a4:
-       94:95:1a:1c:36:6c:62:17:d8:76:8d:68:2d:de:78:
-       dd:4d:55:e6:13:f8:83:9c:f2:75:d4:c8:40:37:43:
-       e7:86:26:01:f3:c4:9a:63:66:e1:2b:b8:f4:98:26:
-       2c:3c:77:de:19:bc:e4:0b:32:f8:9a:e6:2c:37:80:
-       f5:b6:27:5b:e3:37:e2:b3:15:3a:e2:ba:72:a9:97:
-       5a:e7:1a:b7:24:64:94:97:06:6b:66:0f:cf:77:4b:
-       75:43:d9:80:95:2d:2e:85:86:20:0e:da:41:58:b0:
-       14:e7:54:65:d9:1e:cf:93:ef:c7:ac:17:0c:11:fc:
-       72:46:fc:6d:ed:79:c3:77:80:00:0a:c4:e0:79:f6:
-       71:fd:4f:20:7a:d7:70:80:9e:0e:2d:7b:0e:f5:49:
-       3b:ef:e7:35:44:d8:e1:be:3d:dd:b5:24:55:c6:13:
-       91:a1
-     """^^cert:hex;
-     rsa:public_exponent 65537 ;
+   :key [ a :RSAPublicKey;
+     :modulus "00cb24ed85d64d794b69c701c186acc059501e856000f661c93204d8380e07191c5c8b368d2ac32a428acb970398664368dc2a867320220f755e99ca2eecdae62e8d15fb58e1b76ae59cb7ace8838394d59e7250b449176e51a494951a1c366c6217d8768d682dde78dd4d55e613f8839cf275d4c8403743e7862601f3c49a6366e12bb8f498262c3c77de19bce40b32f89ae62c3780f5b6275be337e2b3153ae2ba72a9975ae71ab724649497066b660fcf774b7543d980952d2e8586200eda4158b014e75465d91ecf93efc7ac170c11fc7246fc6ded79c37780000ac4e079f671fd4f207ad770809e0e2d7b0ef5493befe73544d8e1be3dddb52455c61391a1"^^xsd:hexBinary;
+     :exponent 65537 ;
      ] .
 </pre>
 </section>