index.html
79.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>CC/PP Implementors Guide: Harmonization with Existing
Vocabularies and Content Transformation Heuristics</title>
<link rel="stylesheet" type="text/css"
href="http://www.w3.org/StyleSheets/TR/W3C-NOTE.css">
</head>
<div class="head">
<a href="http://www.w3.org/"><img src="http://www.w3.org/Icons/w3c_home" alt="W3C" border="0"
height="48" width="72" /></a>
<h1>CC/PP Implementors Guide: <br>
Harmonization with Existing Vocabularies and Content Transformation
Heuristics</h1>
<h2>W3C Note 20 December 2001</h2>
<dl>
<dt>This version:</dt>
<dd><a
href="http://www.w3.org/TR/2001/NOTE-CCPP-COORDINATION-20011220/">
http://www.w3.org/TR/2001/NOTE-CCPP-COORDINATION-20011220/</a></dd>
<dt>Latest version:</dt>
<dd><a
href="http://www.w3.org/TR/CCPP-COORDINATION/">http://www.w3.org/TR/CCPP-COORDINATION/</a></dd>
<!--
<dt>This version:</dt>
<dd><a
href="http://www.w3.org/TR/2001/2001-09-13-NOTE-CCPP-COORDINATION/">http://www.w3.org/TR/2001/2001-09-11-NOTE-CCPP-COORDINATION/</a></dd>
-->
<dt>Editors:</dt>
<dd>Johan Hjelm, <a
href="mailto:johan.hjelm@nrj.ericsson.se">johan.hjelm@nrj.ericsson.se</a>,
Nippon Ericsson KK</dd>
<dd>Lalitha Suryanarayana, <a
href="mailto:lalitha@tri.sbc.com">lalitha@tri.sbc.com</a>, SBC
Technology Resources</dd>
</dl>
<p class="copyright"><a
href="http://www.w3.org/Consortium/Legal/ipr-notice-20000612#Copyright">
Copyright</a> ©2001 <a href="http://www.w3.org/"><abbr
title="World Wide Web Consortium">W3C</abbr></a><sup>®</sup> (<a
href="http://www.lcs.mit.edu/"><abbr title="Massachusetts Institute of
Technology">MIT</abbr></a>, <a href="http://www.inria.fr/"><abbr
lang="fr" title="Institut National de Recherche en Informatique et
Automatique">INRIA</abbr></a>, <a
href="http://www.keio.ac.jp/">Keio</a>), All Rights Reserved. W3C <a
href="http://www.w3.org/Consortium/Legal/ipr-notice-20000612#Legal_Disclaimer">liability</a>,
<a
href="http://www.w3.org/Consortium/Legal/ipr-notice-20000612#W3C_Trademarks">trademark</a>,
<a
href="http://www.w3.org/Consortium/Legal/copyright-documents-19990405">document
use</a> and <a
href="http://www.w3.org/Consortium/Legal/copyright-software-19980720">software
licensing</a> rules apply.</p>
</div>
<hr>
<h2><a name="abstract" ID="abstract"></a>Abstract</h2>
<p>This document describes how existing vocabularies for different classes of
devices and user agents can be used in CC/PP components, and how to create
schemas that encapsulate existing vocabularies. It discusses the results of
the coordination with the IETF CONNEG Working Group, as well as the WAP Forum
UAPROF Working Group and several other groups, which have related activities.
It contains a number of schemas and software examples which has been
contributed voluntarily by individuals.</p>
<p>It also gives an example of heuristics, which can be used to adapt content
to a CC/PP profile, thus giving some guidelines for those who want to use
CC/PP to implement content adaptation. It also serves to provide vocabulary
and schema designers with key guidelines regarding extensions to existing
vocabularies or development of new ones.</p>
<h2><a name="status" ID="status"></a>Status of this document</h2>
<p>This document is a Note made available by the World Wide Web Consortium
(W3C) for discussion only. This indicates no endorsement of its content. This
is the first public draft of this Note, and it is a work in progress,
representing the current consensus of the CC/PP working group. Future updates
and changes are likely.</p>
<p>The working group is part of the <a
href="http://www.w3.org/2001/di/">W3C Device Independence Activity.</a>
Continued status of the work is reported on the <a
href="http://www.w3.org/Mobile/CCPP/">CC/PP Working Group Home Page</a> (<a
href="http://www.w3.org/Mobile/CCPP/Group/">Member-only link</a> ).</p>
<p>This document incorporates suggestions resulting from reviews and active
participation by members of the IETF CONNEG working group and the WAP Forum
User Agent Profile Drafting Committee, as well as the FIPA. It also is also
intended to be a "developers guide" that will help implementers in
interpreting the CC/PP Specification, to the extent that this information is
not covered in the CC/PP Specification.</p>
<p>Please send comments and feedback to <a
href="mailto:www-mobile@w3.org">www-mobile@w3.org.</a></p>
<p>A list of current W3C Recommendations and other technical documents can be
found at <a href="http://www.w3.org/TR/">http://www.w3.org/TR/</a> .</p>
<h2><a name="toc" ID="toc"></a>Table of contents</h2>
<h2><a name="Introduction" ID="Introduction"></a>1. Introduction</h2>
<p>Using CC/PP is actually very simple. Based on a description of a device
(or a requirement for a device), which is part of the request for a resource,
you output a document that is formatted according to some heuristics which
are contingent on that description and deliver it to the user.</p>
<p>There are a number of vocabularies that can be used to describe device
capabilities, user preferences, and other information related to the users
delivery context. CC/PP provides a way of expressing such vocabularies in the
<a href="http://www.w3.org/RDF/">W3C Resource Description Framework</a>, RDF,
and describes how they could be organized to be transported and handled by
user agents such as browsers in an efficient manner.</p>
<p>This document also describes how the profile can be used to derive an
optimized presentation. Since there can be an infinite number of possible
heuristics for how device capabilities are matched with profiles, we try to
describe how the author or owner of the content can select how a specific set
of situational variables (device capabilities, user preferences) should be
applied to create or adapt a document. In this document, an XSLT example is
discussed. However, given a rules language, the heuristics could be expressed
in that instead; it is also possible to write programs in other languages
(PERL, C, Java, ECMAScript) that perform the adaptation.</p>
<h3><a name="overview" id="overview"></a>1.1 Overview of CC/PP and vocabularies</h3>
<p>The <a href="/TR/CCPP-struct-vocab">CC/PP Structure and Vocabularies Working Draft</a> describes how such vocabularies can be created and
communicated to the origin server using the CC/PP framework. CC/PP in itself
does not describe a vocabulary (although a simple demonstration vocabulary is
provided in the Structure and Vocabularies working draft). This document
describes a number of existing vocabularies, and how they can be conveyed as
part of a CC/PP profile. It also discusses the harmonization that has taken
place with other groups.</p>
<p>The CC/PP specification contains a few vocabulary items. However, it
should be stressed that to the extent that they are not structural, they are
there for illustration only. Other groups have been encouraged to create
their own schemas for vocabularies, and have indeed done so, as the FIPA and
UAPROF examples demonstrate.</p>
<p>In principle, there is no limit on the number of vocabularies that can be
created or used. In fact, RDF and XML namespaces allow for independent
creation of interoperable vocabularies. Clearly, there can be no mandate that
a specific set of vocabularies should be used. Nor can there be a mandate
that a specific set of attributes within a vocabulary ought to be used within
the context of an application. Schema interoperability, enabled by RDF and
the use of XML namespaces, allows for the selection of any number of
attributes within the context of a user agent profile, since it becomes
possible to select any element that is present in a schema using the XML
namespace mechanism.</p>
<p>A vocabulary is analogous to a dictionary. It identifies all the possible
attributes in a schema, which is similar to a database schema. A profile is
an instance of the vocabulary. Different devices and user agents may refer to
the same schema, support the same vocabulary, but communicate different
profiles to the origin servers. Any vocabularies can be used in CC/PP,
provided there is an RDF Schema for them, since this is required by the RDF
processor.</p>
<p>Writing vocabularies that conform to CC/PP is relatively easy. They have
to be created as an RDF Schema, made available at a URI, and be usable in a
component in the CC/PP framework. Vocabularies can be included in CC/PP using
XML namespace. If a vocabulary is not written as an RDF Schema, and does not
conform to the CC/PP component structure, it will not be possible to use in
CC/PP.</p>
<p>The device vocabulary defined in <a
href="/TR/CCPP-struct-vocab/#Appendix_C">appendix C of the CC/PP
specification</a> is not a mandatory
part of the core CC/PP format specification, but is included in the
specification for use by CC/PP-aware applications that may need to describe
certain common features. Designers of CC/PP applications who need to describe
such capabilities are encouraged to use this vocabulary rather than define
new terms, in the interest of interoperability. This vocabulary is based in
part on work done in the IETF Media Feature Registration (CONNEG) Working
Group (which was closed in 2001) and on the vocabulary of the <a
href="http://www.wapforum.org/">WAP Forum UAPROF working group</a>.</p>
<h3><a name="what" id="what"></a>1.2 What is CC/PP?</h3>
<p>CC/PP is, simply put, a data structure that lets you send device
capabilities and other situational parameters from a client to a server. It
can be included in a separate header in HTTP, and there are transports
defined for other protocols. What happens when it gets to the server, and how
it is created, is not discussed in the specification (but this document
attempts to provide some guidance).</p>
<p>CC/PP is organized in components. They are not fixed, and anyone can
create components, as well as vocabularies.</p>
<p>CC/PP contains a vocabulary for handling of structural items, such as how
to append a proxy description to the description of a client (if, for
instance, the proxy can provide services for the client - for instance, a
transcoding proxy may add the languages it can transcode into to the
languages that the client can accept).</p>
<h3><a name="StructureOfDoc" ID="StructureOfDoc"></a></h3>
<h2><a name="use-vocab" id="use-vocab"></a>2. Use of vocabularies in CC/PP</h2>
<p>Creating new vocabularies for CC/PP is very easy, as described in section
1.2. </p>
<h3><a name="extend-vocab" id="extend-vocab"></a>2.1 Extending the Schema/Vocabulary</h3>
<p>The WAP Forum has specified a core vocabulary and ways to extend that. The
following text is taken from the document Guidelines for UAProf Vocabulary
Extensions by Lalitha Suryanarayana, that outlines how the core vocabulary
should be extended. While the example is from the UAProf vocabulary, the
principle extends to the creation of any CC/PP vocabulary.</p>
<p>The UAProf core vocabulary consists of five main components, each of which
asserts a set of attributes (called CPI). The structure and layout
constitutes a schema. The use of the XML namespace mechanism and RDF
inherently provide UAProf with an extensibility mechanism. A profile can
consist of attributes from multiple vocabularies. Extensions to the schema
can be made, either by adding new attributes to an existing vocabulary or,
creating a new standalone vocabulary. Which method should be followed is left
to the schema designer.</p>
<p>However, the following criteria serve as guidelines in helping make that
determination (It is recommended that the set of attributes to be added is
first identified and characterized):</p>
<dl>
<dt>Are the new attributes generic enough to apply to all classes of
devices?</dt>
<dd>-If the answer is yes, you may want to include it in the core
vocabulary.</dd>
<dd>-Under such a scenario, next, determine whether some or all of the
new attributes fall into one or more of the existing components
(specified in the core vocabulary). If they do, ensure that the
attributes are not already part of the vocabulary in terms of
semantics. If they are not, you may wish to add these attributes to the
existing components. If however, the new attributes are essential to
the core vocabulary but cannot be added to existing components, you may
want to specify a new component (and attributes) for the core
vocabulary.</dd>
<dd>-When you create a new vocabulary, post a message to the <a
href="mailto:www-mobile@w3.org">www-mobile public discussion list</a>,
to see if anyone has created a vocabulary similar to yours. If someone
has solved your problem, then why solve it again?</dd>
<dt>On the other hand, if the attributes are application specific, and if
only an initial set of attributes has been identified to date (implying
that the list of attributes may grow over time), a separate vocabulary
might be most suitable for your application.</dt>
<dd>-The new vocabulary must be specified in RDF schema. The vocabulary
must be identified with an XML namespace.</dd>
<dd>-It is your responsibility to develop the schema, maintain it on an
ongoing basis, and make sure the namespace continues to exist.</dd>
<dd>-The attributes will not be part of the CC/PP vocabulary, and does
not have to be incorporated into any other specifications
documents.</dd>
<dd>-Be sure to make your vocabulary publicly available, not only for
purposes of implementation, but also, for new designers who may either
wish to leverage some of your work (attributes or components) as they
develop their vocabularies.
<p>-Remember that it has to be machine readable (i.e. accessible as a
file), since RDF processors will need to access the schema the first
time they encounter it.</p>
</dd>
</dl>
<h3><a id="conneg" name="conneg"></a>2.2 CONNEG</h3>
<h4><a name="conneg-bg" id="conneg-bg"></a>2.2.1 Background</h4>
<p>The CONNEG working group in the <a href="http://www.ietf.org">IETF</a> has
defined a number of "media feature tags", which can be used to describe the
optimal visual properties for the representation of a document (there are no
tags for other media types than visual). The group, which was closed in 2000,
also created a matching algebra for the media tags. The rationale for the
work was to provide a number of Internet application protocols have a need to
provide content negotiation for the resources with which they interact. A
framework for such negotiation was created, part of which is a way to
describe the range of media features which can be handled by the sender,
recipient or document transmission format of a message. A format for a
vocabulary of individual media features and procedures for feature
registration are presented in RFC 2506, Media Feature Tag Registration
Procedure.</p>
<p>Appendix E.1 of the CC/PP specification provides a brief discussion
the
relationship to and use of CONNEG attributes. The following provides a more
in-depth look into how to combine CONNEG with CC/PP [<a
href="#Footnote1">FOOTNOTE1</a>].</p>
<h4><a name="conneg-vocab" id="conneg-vocab"></a>2.2.2 The CONNEG vocabulary</h4>
<p></p>
<ul>
<li><em>Syntax</em>: The CONNEG syntax differs significantly from the CC/PP
syntax. Harmonization of the syntax is not reasonable, and is not
important if semantic compatibility is to be maintained, as automated
syntax mapping is quite easy. The XML syntax is important as the common
cross-application interchange format for RDF.)</li>
<li><em>Vocabulary</em>: The fundamental approach of CC/PP and CONNEG to
vocabulary definition is quite different, and in many cases will prove
difficult to reconcile (specifically: CC/PP regards feature matching
semantics as being a property of the attribute concerned; CONNEG does
not). Hopefully, future vocabularies will be defined using data types
with simple, attribute-independent matching semantics.</li>
</ul>
<h5><a name="use-conneg-vocab" id="use-conneg-vocab"></a>
2.2.2.1 Using the Conneg vocabulary in CC/PP</h5>
<p>The IETF has defined an IANA registry for media feature tags and a syntax
for relational-style expressions using these to describe client and server
media features. A small common vocabulary has been defined, which has been
used as a basis for the CC/PP client common vocabulary. The IETF Internet fax
Working Group has also created additional registrations to describe the
capabilities of fax machines.</p>
<p>RFC 2506 defines three kinds of media feature tags:<br>
</p>
<dl>
<dt>IETF tree</dt>
<dd>registered feature tags that are simple names, which are defined and
assigned under the auspices of the IETF standards process.</dd>
<dt>Global tree</dt>
<dd>registered feature tags that are simple names preceded by 'g.'. These
are defined by groups other than the IETF, but are registered with IANA
to ensure uniqueness of these names.</dd>
<dt>Unregistered</dt>
<dd>feature tags that consist of 'u.' followed by a slightly restricted
form of URI.</dd>
</dl>
<p>It is notable that the all three tag types provide unique names, which
enables them to be mapped into the XML namespace mechanism. There is
currently a proposal to create a URN namespace for IANA registries. This
would create a mechanism to allow IANA-registered feature tags to be used
directly as URIs in CC/PP expressions. Unregistered feature tags may be used
in CC/PP expressions by stripping off the leading 'u.' and taking the
resulting URI string. Thus, any feature tag registered per RFC 2506 would be
available for use directly in a CC/PP profile. The registry here would help
to provide a common reference point for features that are compatible with
CONNEG-style matching semantics.</p>
<p>A couple of Internet drafts have recently been published that may help us
to overcome the disparity between CONNEG and CC/PP vocabularies. Using
<a
href="http://search.ietf.org/internet-drafts/draft-klyne-urn-ietf-conneg-01.txt">
http://search.ietf.org/internet-drafts/draft-klyne-urn-ietf-conneg-01.txt</a>
(which uses <a
href="http://search.ietf.org/internet-drafts/draft-mealling-iana-urn-02.txt">
http://search.ietf.org/internet-drafts/draft-mealling-iana-urn-02.txt</a>)
enables the definition of a URI form for CONNEG media feature tags that
could be used in a CC/PP profile. This would change the namespace identifier
used in appendix C of the CC/PP specification, which is non-normative.</p>
<p>Currently, however, no XML representation of the Conneg vocabulary exists.
It is out of the scope of this group to create such a representation, but any
volunteer efforts are welcome. The registered media features can be
found in
the <a
href="http://www.isi.edu/in-notes/iana/assignments/media-feature-tags">IANA
Registry</a>.</p>
<h3><a id="fipa" name="fipa"></a>2.3 FIPA</h3>
<h4><a name="fipa-bg" id="fipa-bg"></a>2.3.1 Background</h4>
<p>The Foundation For Intelligent Physical Agents, FIPA, has developed a
device vocabulary. FIPA is an international organization that is dedicated to
promoting the industry of intelligent agents by openly developing
specifications supporting interoperability among agents and agent-based
applications. <a href="http://www.fipa.org/specs/fipa00091/PC00091A.html">The
Fipa-Device ontology</a> can be used by agents to pass profiles of devices to
each other and validate them against the ontology.</p>
<h4><a name="fipa-vocab" id="fipa-vocab"></a>2.3.2 The FIPA vocabulary</h4>
<p>The FIPA ontology consists of a set of frames, which represent the classes
of objects in the domain of discourse within the framework of the Fipa-Device
ontology. The following terms are used to describe the objects of the
domain:</p>
<ul>
<li>Frame. This is the mandatory name of this entity that must be used to
represent each instance of this class.</li>
<li>Ontology. This is the name of the ontology, whose domain of discourse
includes the parameters described in the table.</li>
<li>Parameter. This is the mandatory name of a parameter of this frame.</li>
<li>Description. This is a natural language description of the semantics of
each parameter.</li>
<li>Presence. This indicates whether each parameter is mandatory or
optional.</li>
<li>Type. This is the type of the values of the parameter: Integer, Word,
String, URL, Term, Set or Sequence.</li>
<li>Reserved Values. This is a list of FIPA-defined constants that can
assume values for this parameter.</li>
</ul>
<h5>2.3.2.1 Using the FIPA vocabulary in CC/PP</h5>
<p>Despite the differences in definition formats (FIPA defines
functionalities in its own language, not in RDF Schema), the FIPA-device
ontology could be used in a CC/PP profile. This can be accomplished in a
similar fashion as with UAProf. So, if a client wants to inform a server that
the device is fipa-compliant he can do so with CC/PP profile as follows:
</p>
<pre><?xml version="1.0"?>
<rdf:RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:ccpp="http://www.w3.org/2000/07/04-ccpp#"
xmlns:fipa="http://www.fipa.org/profiles/device-20010202#"
xmlns:uaprof="http://www.wapforum.org/UAPROF/ccppschema-19991014#">
<rdf:Description rdf:about="http://www.foo.com/profiles/ProfileX">
<ccpp:component>
<rdf:Description rdf:about="http://www.foo.com/TerminalHardware">
<rdf:type rdf:resource="http://www.foo.com/Schema#HardwarePlatform" />
<ccpp:Defaults rdf:resource="http://www.foo.com/profiles/hwproperties" />
<fipa:compliancy>true</fipa:compliancy>
</rdf:Description>
</ccpp:component>
<ccpp:component>
<rdf:Description rdf:about="http://www.foo.com/TerminalSoftware">
<rdf:type rdf:resource="http://www.foo.com/Schema#SoftwarePlatform" />
<ccpp:Defaults rdf:resource="http://www.foo.com/profiles/swproperties" />
<fipa:ap-description>FIPA-OS v2.1.1</fipa:ap-description>
</rdf:Description>
</ccpp:component>
<ccpp:component>
<rdf:Description rdf:about="http://www.foo.com/Browser">
<rdf:type rdf:resource="http://www.foo.com/Schema#BrowserUA" />
<ccpp:Defaults rdf:resource="http://www.foo.com/profiles/browserproperties" />
<uaprof:BrowserName>Internet Explorer</uaprof:BrowserName>
<uaprof:BrowserVersion>5.0</uaprof:BrowserVersion>
</rdf:Description>
</ccpp:component>
</rdf:Description>
</rdf:RDF></pre>
<h3><a name="wap-uaprof" id="wap-uaprof"></a>2.4 WAP UAPROF</h3>
<h4><a name="wap-uaprof-bg" id="wap-uaprof-bg"></a>2.4.1 Background</h4>
<p>Simultaneously with the CC/PP work in the W3C, the <a
href="http://www.wapforum.org">WAP Forum</a> initiated an activity to create a
capabilities and preferences description system. It was decided to use the
CC/PP framework, and create a vocabulary for WAP devices in that framework.
The latest version, published as part of the WAP 2.0 release, is
WAP-248-UAPROF-20010522, available from the <a
href="http://www1.wapforum.org/tech/terms.asp?doc=WAP-174-UAProf-19991110-a.pdf">WAP
Forum technical specifications page</a>. The WAP Forum has also developed
extensions to the CC/PP core vocabulary for specific applications such as
multimedia messaging (MMS) and WAP Push.</p>
<p>The WAP Forum UAPROF drafting committee has used CC/PP to create a custom
vocabulary for mobile devices which conform to the WAP specification. It is
used for render customized content based on the information sent in the
profile, and to adapt content to the specific device with which the user
accesses it.</p>
<h4><a name="uaprof-vocab" id="uaprof-vocab"></a>2.4.2 The UAPROF vocabulary</h4>
<p>The schema for WAP User Agent Profiles consists of description blocks for
the following key components:<br>
</p>
<ul>
<li>HardwarePlatform: A collection of properties that adequately describe
the hardware characteristics of the terminal device. This includes, the
type of device, model number, display size, input and output methods,
etc.</li>
<li>SoftwarePlatform: A collection of attributes associated with the
operating environment of the device. Attributes provide information on
the operating system software, video and audio encoders supported by the
device, and user's preference on language.</li>
<li>BrowserUA: A set of attributes to describe the HTML browser
application</li>
<li>NetworkCharacteristics: Information about the network-related
infrastructure and environment such as bearer information. These
attributes can influence the resulting content, due to the variation in
capabilities and characteristics of various network infrastructures in
terms of bandwidth and device accessibility.</li>
<li>WapCharacteristics: A set of attributes pertaining to WAP capabilities
supported on the device. This includes details on the capabilities and
characteristics related to the WML Browser, Wireless Telephony
Application (WTA), etc.</li>
<li>PushCharacteristics: A set of attributes pertaining to Push specific
capabilities supported by the device. This includes details on supported
MIME-types, the maximum size of a push-message shipped to the device, the
number of possibly buffered push-messages on the device, etc. Additional
components can be added to the schema to describe capabilities pertaining
to other user agents such as an email application or hardware
extensions.</li>
</ul>
<h5>2.4.2.1 Using the UAPROF vocabulary in CC/PP</h5>
<p>Below is an example CC/PP profile using the UAPROF vocabulary [UAPROF].
The latest version of this specification is WAP-248-UAPROF-20010522.</p>
<pre><?xml version="1.0"?>
<rdf:RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:prf="http://www.wapforum.org/profiles/UAPROF/ccppschema-20010430#">
<rdf:Description rdf:ID="MyDeviceProfile">
<prf:component>
<rdf:Description rdf:ID="HardwarePlatform">
<rdf:type rdf:resource="http://www.wapforum.org/profiles/UAPROF/ccppschema-20010430#HardwarePlatform"/>
<prf:BluetoothProfile>
<rdf:Bag>
<rdf:li>headset</rdf:li>
<rdf:li>dialup</rdf:li>
<rdf:li>lanaccess</rdf:li>
</rdf:Bag>
</prf:BluetoothProfile>
<prf:ScreenSize>121x87</prf:ScreenSize>
<prf:Model>R999</prf:Model>
<prf:InputCharSet>
<rdf:Bag>
<rdf:li>ISO-8859-1</rdf:li>
<rdf:li>US-ASCII</rdf:li>
<rdf:li>UTF-8</rdf:li>
<rdf:li>ISO-10646-UCS-2</rdf:li>
</rdf:Bag>
</prf:InputCharSet>
<prf:ScreenSizeChar>15x6</prf:ScreenSizeChar>
<prf:BitsPerPixel>2</prf:BitsPerPixel>
<prf:ColorCapable>No</prf:ColorCapable>
<prf:TextInputCapable>Yes</prf:TextInputCapable>
<prf:ImageCapable>Yes</prf:ImageCapable>
<prf:Keyboard>PhoneKeypad</prf:Keyboard>
<prf:NumberOfSoftKeys>0</prf:NumberOfSoftKeys>
<prf:Vendor>myprofileprovider</prf:Vendor>
<prf:OutputCharSet>
<rdf:Bag>
<rdf:li>ISO-8859-1</rdf:li>
<rdf:li>US-ASCII</rdf:li>
<rdf:li>UTF-8</rdf:li>
<rdf:li>ISO-10646-UCS-2</rdf:li>
</rdf:Bag>
</prf:OutputCharSet>
<prf:ScreenSizeChar>15x6</prf:ScreenSizeChar>
<prf:BitsPerPixel>2</prf:BitsPerPixel>
<prf:ColorCapable>No</prf:ColorCapable>
<prf:TextInputCapable>Yes</prf:TextInputCapable>
<prf:ImageCapable>Yes</prf:ImageCapable>
<prf:Keyboard>PhoneKeypad</prf:Keyboard>
<prf:NumberOfSoftKeys>0</prf:NumberOfSoftKeys>
<prf:Vendor>myprofileprovider</prf:Vendor>
<prf:OutputCharSet>
<rdf:Bag>
<rdf:li>ISO-8859-1</rdf:li>
<rdf:li>US-ASCII</rdf:li>
<rdf:li>UTF-8</rdf:li>
<rdf:li>ISO-10646-UCS-2</rdf:li>
</rdf:Bag>
</prf:OutputCharSet>
<prf:SoundOutputCapable>Yes</prf:SoundOutputCapable>
<prf:StandardFontProportional>Yes</prf:StandardFontProportional>
</rdf:Description>
</prf:component>
<prf:component>
<rdf:Description rdf:ID="SoftwarePlatform">
<rdf:type rdf:resource="http://www.wapforum.org/profiles/UAPROF/ccppschema-20010430#SoftwarePlatform"/>
<prf:AcceptDownloadableSoftware>No</prf:AcceptDownloadableSoftware>
</rdf:Description>
</prf:component>
<prf:component>
<rdf:Description rdf:ID="NetworkCharacteristics">
<rdf:type rdf:resource="http://www.wapforum.org/profiles/UAPROF/ccppschema-20010430#NetworkCharacteristics"/>
<prf:SecuritySupport>
<rdf:Bag>
<rdf:li>WTLS-1</rdf:li>
<rdf:li>WTLS-2</rdf:li>
<rdf:li>WTLS-3</rdf:li>
<rdf:li>signText</rdf:li>
</rdf:Bag>
</prf:SecuritySupport>
<prf:SupportedBearers>
<rdf:Bag>
<rdf:li>TwoWaySMS</rdf:li>
<rdf:li>CSD</rdf:li>
<rdf:li>GPRS</rdf:li>
</rdf:Bag>
</prf:SupportedBearers>
<prf:SupportedBluetoothVersion>1.1</prf:SupportedBluetoothVersion>
</rdf:Description>
</prf:component>
<prf:component>
<rdf:Description rdf:ID="BrowserUA">
<rdf:type rdf:resource="http://www.wapforum.org/profiles/UAPROF/ccppschema-20010430#BrowserUA"/>
<prf:BrowserName>Ericsson</prf:BrowserName>
<prf:CcppAccept>
<rdf:Bag>
<rdf:li>application/vnd.wap.wmlc</rdf:li>
<rdf:li>application/vnd.wap.wbxml</rdf:li>
<rdf:li>application/vnd.wap.wmlscriptc</rdf:li>
<rdf:li>application/vnd.wap.multipart.mixed</rdf:li>
<rdf:li>application/vnd.wap.multipart.form-data</rdf:li>
<rdf:li>text/vnd.wap.wml</rdf:li>
<rdf:li>text/vnd.wap.wmlscript</rdf:li>
<rdf:li>text/x-vCard</rdf:li>
<rdf:li>text/x-vCalendar</rdf:li>
<rdf:li>text/x-vMel</rdf:li>
<rdf:li>text/x-eMelody</rdf:li>
<rdf:li>image/vnd.wap.wbmp</rdf:li>
<rdf:li>image/gif</rdf:li>
</rdf:Bag>
</prf:CcppAccept>
<prf:CcppAccept-Charset>
<rdf:Bag>
<rdf:li>US-ASCII</rdf:li>
<rdf:li>ISO-8859-1</rdf:li>
<rdf:li>UTF-8</rdf:li>
<rdf:li>ISO-10646-UCS-2</rdf:li>
</rdf:Bag>
</prf:CcppAccept-Charset>
<prf:CcppAccept-Encoding>
<rdf:Bag>
<rdf:li>base64</rdf:li>
</rdf:Bag>
</prf:CcppAccept-Encoding>
<prf:FramesCapable>No</prf:FramesCapable>
<prf:TablesCapable>Yes</prf:TablesCapable>
</rdf:Description>
</prf:component>
<prf:component>
<rdf:Description rdf:ID="WapCharacteristics">
<rdf:type rdf:resource="http://www.wapforum.org/profiles/UAPROF/ccppschema-20010430#WapCharacteristics"/>
<prf:WapDeviceClass>C</prf:WapDeviceClass>
<prf:WapVersion>2.0</prf:WapVersion>
<prf:WmlVersion>
<rdf:Bag>
<rdf:li>2.0</rdf:li>
</rdf:Bag>
</prf:WmlVersion>
<prf:WmlDeckSize>3000</prf:WmlDeckSize>
<prf:WmlScriptVersion>
<rdf:Bag>
<rdf:li>1.2.1</rdf:li>
</rdf:Bag>
</prf:WmlScriptVersion>
<prf:WmlScriptLibraries>
<rdf:Bag>
<rdf:li>Lang</rdf:li>
<rdf:li>Float</rdf:li>
<rdf:li>String</rdf:li>
<rdf:li>URL</rdf:li>
<rdf:li>WMLBrowser</rdf:li>
<rdf:li>Dialogs</rdf:li>
</rdf:Bag>
</prf:WmlScriptLibraries>
<prf:WtaiLibraries>
<rdf:Bag>
<rdf:li>WTA.Public.makeCall</rdf:li>
<rdf:li>WTA.Public.sendDTMF</rdf:li>
<rdf:li>WTA.Public.addPBEntry</rdf:li>
</rdf:Bag>
</prf:WtaiLibraries>
</rdf:Description>
</prf:component>
</rdf:Description>
</rdf:RDF>
The profile has been abbreviated. For the full profile, see the UAPROF specification.</pre>
<h3><a name="other" id="other"></a>2.5 Other vocabularies</h3>
<h3><a name="other-bg" id="other-bg"></a>2.5.1 Background</h3>
<p>CC/PP can be used not just for metadata describing device capabilities and
the users preferences for how they should be used, although that is the
primary purpose. It is a general framework for information about the users
situation, such as his position, the ambient conditions (e.g. weather,
location, temperature, etc). While no such vocabularies have yet been
developed, it can be foreseen that they will.</p>
<p>From a philosophical standpoint, this adaptation is no different from
formatting based on device capabilities. The users situation can be regarded
as an additional input to the system (along with the request). This is
especially true in mobile environments, where interactions and interaction
times tend to be shorter than in the fixed environment [Schmidt].</p>
<p>Using XML Namespace, it is possible to mix several vocabularies in one
profile, to achieve a precise description not just of the user, but also of
his situation (e.g. where he is, what temperature it is there, if the sun is
shining, etc). This can then be used in the same way as a transformation to a
specific device to create a personalized presentation.</p>
<h3><a name="other-example" id="other-example"></a>2.5.2 An example vocabulary</h3>
<p>For demonstration purposes, we have created a simple example vocabulary
describing the weather at the users position. For brevity, it has only two
CC/PP attributes: Sunny and raining. Note that the creation of such
vocabularies can be done at the discretion of anyone who can create a URI,
but to be accepted, we assume that it would be created by an industry body,
representing a consensus about the properties and their values.</p>
<p>Real weather descriptions contain far more data items and data types.</p>
<h3><a name="use-example-vocab-ccpp" id="use-example-vocab-ccpp"></a>
2.5.2.1 Using the example vocabulary in CC/PP</h3>
<pre><?xml version='1.0'?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:prf="http://www.example.org/TR/WD-profile-vocabulary#"
xmlns:exp="http://weather.co.jp/RDF/exp-schema#">
<rdf:Description rdf:ID="MySituationProfile">
<rdf:Description rdf:ID="MyDeviceProfile">
<prf:component>
<rdf:Description rdf:ID="HardwarePlatform">
<rdf:type rdf:resource="http://www.wapforum.org/profiles/UAPROF/ccppschema-20010430#HardwarePlatform"/>
<prf:Vendor>Ericsson</prf:Vendor>
<prf:Model>r380</prf:Model>
<prf:Type>PDA</prf:Type>
<prf:ScreenSize>800x600x24</prf:ScreenSize>
<prf:CPU>PPC</prf:CPU>
<prf:Keyboard>No</prf:Keyboard>
<prf:Memory>16MB</prf:Memory>
<prf:Bluetooth>Yes</prf:Bluetooth>
<prf:Speaker>Yes</prf:Speaker> </rdf:Description>
</prf:component>
<prf:component>
<rdf:Description rdf:ID="SoftwarePlatform">
<rdf:type rdf:resource="http://www.wapforum.org/profiles/UAPROF/ccppschema-20010430#SoftwarePlatform"/>
<prf:OS>EPOC1.0</prf:OS>
<prf:HTMLVersion>4.0</prf:HTMLVersion>
<prf:JavaScriptVersion>4.0</prf:JavaScriptVersion>
<prf:WAPVersion>2.0</prf:WAPVersion>
</rdf:Description>
</prf:component>
</rdf:Description>
<rdf:Description rdf:ID="UserSituation">
<prf:component>
<rdf:Description rdf:ID="Weather">
<rdf:type rdf:resource="http://weather.co.jp/RDF#weather"/>
<exp:Area>Yokosuka</exp:Area>
<exp:CloudCover>Clear</exp:CloudCover>
<exp:Sunshine>Yes</exp:Sunshine>
<exp:Temperature>20</exp:Temperature>
</rdf:Description>
</prf:component>
</rdf:Description>
</rdf:Description>
</rdf:RDF></pre>
<h3><a name="other-dev-desc" id="other-dev-desc"></a>
2.5.3 Other device description vocabularies</h3>
<p>Using the same approach as described in this chapter, it is possible to
use vocabularies like Salutation, XML Media Queries, and XML Modules for
content adaptation. The mapping of these into RDF Schemas has not been
defined.</p>
<h2><a name="heristics" id="heuristics"></a>3. Heuristics for content adaptation</h2>
<p>A question the working group often gets asked is: How do I use CC/PP in my
web server? The question is really: How can the server receiving a profile
generate customized content?</p>
<p>Using technologies developed by the W3C, there are two basic ways of
creating adapted content: Client-based and server-based. These are similar to
the HTTP agent-driven and server-driven forms of content negotiation, but
differ in that the client-driven approach is assumed to take place entirely
in the client. Note that the server-driven approach as described here can
also take place in the client, provided it has an XSLT processor. However,
for optimization reasons (e.g. in narrowband channels, such as the wireless
environment), it is more efficient to send only the adapted information.
There may also be security reasons to do this (i.e. not giving out too much
content).</p>
<p>The simplest way is to create a simple heuristic to tie the HTTP content
negotiation to parameters from the profile. It is also possible to generate a
style sheet, which is adapted to the device dynamically. The working group
has not developed these heuristics, since they will depend on both the
manufacturers, the server owners, and the content providers preferences. The
rule sets will have to be defined separately, preferably in an RDF rules
language or in terms of an ontology.</p>
<p>The CC/PP working group decided not to tackle feature-independent profile
matching. We hope and expectation that the ongoing DAML+OIL work will provide
mechanisms that allow us to incorporate equivalent functionality into CC/PP,
provided that vocabulary development is performed in a disciplined manner (as
noted above).</p>
<p>- Defaults, etc: CC/PP covers an important area not addressed by CONNEG;
namely defaults. Also, proxy behavior descriptions and distributed profile
descriptions. Reviewing the CC/PP design, with some benefit of hindsight,
reinforces the view I previously held that such features should be
incorporated at a layer which encapsulates any CONNEG-style feature
expression. Specifically, CONNEG-style feature expressions should be
contained within a CC/PP-style component, and that feature matching will take
place only at the component level. A simple higher-level rule, such as
requiring a match for every specified component, could define whether or not
two complete profiles match or not. (Any asymmetry between client- and
server-side features could be accommodated at this level.) This is a topic
for future development, if required.</p>
<p>As the user interaction changes, so will the need for presentation. As
author, you will no longer be able to write content that assumes a single
presentation model, since it may be presented in a totally different way from
what you expected.</p>
<p>In the abstract, the interaction of the user with the device consists of
two functions: Presentation of data, and input of data. Presentation, in
turn, breaks down into navigation and style.</p>
<p>The input models of devices can be abstracted to a textual input format,
irrespective of whether input is received from a keyboard, a keypad, voice
recognition, character recognition (e.g. pen-based input) or other means. As
yet, there are few non-textual, non-verbal input devices (such as cameras
using image recognition). A special problem, which can be abstracted at a
higher level, is presented by devices which use shortcut keys, macro keys,
softkeys or other devices to represent a textual input as a shortcut. Menus
can be seen as a special case of such devices.</p>
<p>The styling of presentation of textual information today varies from no
style at all (e.g. on pagers) to highly styled, graphical presentation (e.g.
the web as it is usually presented). Abstracting the style to a higher level,
instead of including it in the content, enables the insertion of different
styles, using mechanisms such as CSS. Using CSS, style information can be
handled quite independently of the device.</p>
<p>When receiving information using a mobile or handheld device, however,
traditional presentation formats tend to become irrelevant. Table layouts in
fixed pixel widths adapted to a 21-inch screen become unusable on a device
which has a screen that is one inch square. Instead of assisting it, the
formatting tends to obscure the presentation of the information. Disabling
style sheets is a simplistic way of achieving a presentation that is usable
on a small-screen device (anecdotal evidence seems to point to screens having
to be quarter-VGA before styling becomes relevant). Applying different
styling methods, such as aural styles, is another way of representing the
content.</p>
<p>However, style is not the most difficult part. The navigation is the other
aspect of the presentation, and the hardest to abstract from the device.
Currently, navigation in web content is subsumed in the "desktop" paradigm of
the personal computer. There is no way of structuring content in other ways
than an infinite scroll (possibly as shorter sections of the infinite
scroll), since the page model is seen as a property of the presentation in
CSS.</p>
<p>However, in devices with very small screens, as well as in voice-menu
systems, alternative paradigms are emerging for navigation of content. In
small-screen devices, the "deck of cards" paradigm of WML is emerging (if
implemented as WML or using XHTML and CSS); in voice menus, an entire body of
work exists to structure menus for natural interaction.</p>
<p>Modeling all possible future presentation formats is not feasible,
however. There are two possible ways to meet this: Either restrict
presentation to a single set of devices, or model the navigation of your
content in a device-independent way.</p>
<p>Modelling the navigation in a device-independent way also lets you retain
control over how it will be navigated on different devices. Navigation is
actually a larger part of the user experience than the presentation, even
though these tend to be mixed up in popular discussion.</p>
<p>In the W3C CSS paradigm, the user has the ability to override the style
presented by the service. This feature is intended to enable users who are
not able to receive the style selected, e.g. users using assistive
technologies to receive the content, to take part of the presentation. This
means that the designer can never be assured that content is presented in the
way it was designed on a device. On the other hand, the web has never been
pixel-perfect, and presentation has always varied somewhat between devices
and implementations.</p>
<p>In traditional HTML presentations, content is not structured for other
navigation formats at all. In this paper, we will discuss possible solutions
to enable the navigation of different presentation paradigms in the same
document, as well as the ability to insert different styles.</p>
<p>Applying these technologies also enables the author to retain control over
the navigation of the content (given that the presentation takes place on a
device implementing CC/PP), as well as retaining some control over the
styling. We contend that the most important part, however, is not the style,
but the navigation. Users actually tend to ignore style information,
frequently switching off images to enhance transmission speed, and ignoring
advertisements.</p>
<p>Different styles require different formatting of the content presentation,
but different navigation paradigms require different formatting of the
content itself. This can be accomplished in several different ways. One is to
enable a customization engine to interact with the content at the client,
another is to format the content according to the navigation paradigm in the
origin server. Both ways imply that there will be a way for the content
adaptation process to conduct the required filtering and formatting.</p>
<p>In the case where the adaptation of content takes place at the client, the
entire content set has to be transmitted to the client and the parts of it
that are not required has to be discarded (alternatively, a set of programs
could be transmitted which generates the content from data available at the
client - this is speculative, however). The adaptation can be based on the
CC/PP presented by the client. This is indeed one of the use cases for
CC/PP.</p>
<p>In the case where adaptation is done by the server, the content can be
adapted using a transformation process, e.g. XSLT, applying different
transformation sheets to the content depending on which CC/PP is received.</p>
<p>For the author, controlling the transformation then comes down to two
aspects: Controlling the selection of the transformation sheets, and the
transformation of the content itself.</p>
<p>Control over which transformation sheets are applied to the document
depending on which CC/PP is received can be done using the document profile,
which in essence is a reverse of the client profile, using the CC/PP
framework. The author can determine which transformation sheet should be
applied when a certain profile, or certain parameters of a profile, are used.
This would entail creating a vocabulary for the selection process. Creating
such a vocabulary could be part of the effort of the HTML working group to
create a vocabulary describing XHTML modules, or a separate effort (e.g.
spearheaded by a commercial vendor).</p>
<p>To change the navigational paradigm for a document, however, it is not
enough to change the formatting of the content. In the case of a small-screen
device, the information will need to be filtered, if the user will not have
to wade through enormous amounts of irrelevant information (if you think that
this is not an issue, consider that a normal WAP telephone can take just
about half a line of the text presented on a 15-inch screen). It goes without
saying that browsing becomes extremely tiresome in this environment. Given
that most users do not read the text (but scan it, <a
href="http://www.useit.com/alertbox/9710a.html">according to Jacob
Nielsen</a>), the salient features will have to be highlighted.</p>
<p>Determining which features of the content are salient is the core of the
poodle. To accomplish this, knowledge about the users goal for the
interaction is required. In certain cases, the author can contribute to the
setting of these goals, for instance in services where the interaction is
tightly controlled, e.g. in forms. In other cases, where the goals for the
interaction can be more ambiguous, this becomes a problem.</p>
<p>As the content is filtered, navigational aids need to be inserted.
Traditionally, navigational tools on the web include menus, navigation bars,
and pointers (most frequently represented as icons). The web also has a
navigation paradigm built into the browser.</p>
<p>Enabling other navigation paradigms is possible if the content is
formatted differently. For instance, the same content can be navigated with
the card-and-deck paradigm of WML if it is reorganized. Content can be
reformatted as WML if it is marked up as WML in advance. While it is possible
to mark up content both as WML and HTML, for instance, it is not a pretty
sight. And while the HTML browser will ignore the WML tags, the WML browser
will not ignore the HTML. Then, there is the question of filtering out
content that can not be displayed on the WML device. Rather, the content
should be filtered into the target format from the start. This implies that
the base markup could either contain multiple formats, or that the XSLT
transformation sheets should contain transformation rules to enable the
conversion of the generic element set to HTML, WML, VoiceML, or whatever the
markup format should be. The selection of the transformation sheet can be
done in several different ways, all implementation dependent.</p>
<p>In the CC/PP working group, we are satisfying ourselves with allowing for
a selection to take place based on the received CC/PP, but we do not attempt
to mandate the mechanism by which this takes place (it could be a PERL
programme which enabled the selection from a transformation sheet based on
the received screen size and browser software, or it could be a rule base
which acted on the profile and the document profile to compose a
transformation sheet. It could be HTTP content negotiation. Determining the
mechanism is out of the scope of our group).</p>
<p>To enable the transformation sheet to filter and format the content
appropriately for the navigation model of the device at hand, the content or
the transformation sheet must contain a representation of the navigation
model. This implies that a document which is device independent must contain
all possible navigational models (the style is divorced from the content,
since it is contained in a style sheet), or a subset of all possible
navigational models for which the content is enabled.</p>
<h3><a name="use-xslt" id="use-xslt"></a>
3.1 Using XSLT to generate an appropriate presentation</h3>
<p>There are a few prerequisites for content which is to be transformed in
the way described in the previous section. One is that a transformation
mechanism exists. For content which is written in XML, this is possible to
achieve using XSLT; for content in HTML, no simple way exists to transform it
into other formats, even if it follows the HTML 4.0 specification. There are
too many parameters which can be interpreted differently. Then, there is the
high percentage of erroneously encoded HTML pages (up to 60 %, according to
some estimates). In summary, HTML content is not usable in transformations
which enable the control over content in the manner that an author should
expect. Separating the content from the navigation using transformation
sheets as filters is a possibility that enables the same kind of device
independence as for style; however, this is a chimaera. There seems to be no
complete device independency, since preliminary investigations demonstrate
that you have to retain at least some concept of the elements in the generic
document to be able to filter them properly (which also seems to be true for
style - in narrating the content as the generic format, you have to have some
awareness of the way the style will represent it, to ensure that it is not
misrepresented).</p>
<p>So far, we have identified four different models for creating content
which is independent of the display device:</p>
<p>Including all possible markup in the document. Such a document will not
display on some types of terminals without filtering, since the diverse kinds
of markup will be rejected. It may be used as a generic document for
filtering out the appropriate representations, however.</p>
<p>Example: (...) <body> <card> <p>Some text here</p>
</card> (...)</p>
<p>This assumes that the different types of markup are clearly separated.
Since the names overlap for certain elements and attributes without their
functions being the same, however, a variation of this using namespace is
possibly a better solution:</p>
<p>(...) <html:body> <wml:card> <html:p><wml:p>Some
text here</wml:p></html:p> </wml:card> (...)</p>
<p>A third way is to use a navigation modeling language like <a
href="http://www.w3.org/TR/xdnl/">XDNL</a>. This essentially enables the
creation of a leaf structure of nodes within the document. However, it does
not in itself enable the filtering out and reordering of sections or chunks
of a document, which may be necessary to prepare the document for a different
navigational model.</p>
<p>Another way of handling the same problem is to use Xpointer, as described
in the W3C Note "<a href="http://www.w3.org/TR/annot/">Annotation of Web
content for transcoding</a>". The advantage of this method is that it enables
the markup to point into the document; essentially, a WML markup could shadow
the HTML markup. It is possible to create a markup (or at least navigational
markup) that is separated from the document itself. The document need not
change. However, it requires a separate mechanism to apply to the
transformation process.</p>
<p>Which of these models will be selected will most likely depend on the
preferences and predilections of the author, his technical environment, the
end-device to be primarily used, etc. It is quite possible that other models
are also used.</p>
<p>The important thing is not which model is used, but that the
transformation system understands which model is used in the document so it
either can apply the appropriate mechanisms or defer the transformation (if
it does not have the appropriate mechanism implemented). This negotiation
need to take place between the transcoding entity and the origin server. In
the CC/PP working group, we have tried to separate these logical functions
and define ways to enable CC/PP to be used in this negotiation too; one
crucial part here is the use of document profiles, which enables the author
to define her preferences for the transformation mechanisms to be used, and
declare the encoding used in the document.</p>
<p>To transform a document using XSLT, you need a transformation sheet that
is specific to the transformation you want to achieve. Therefore, we will not
give any examples in this document. However, it is relatively easy to use
variables from an external document, such as the CC/PP profile, to select the
transformations that will be done. Technically, this may be easier to do by
having three style sheets, one that selects the elements, one that comprise
all the transformations, and another that is the result of the application of
the first style sheet to the second, and which will be the style sheet that
is actually used in transforming the document.</p>
<h3><a name="adapt-jigswa" id="adapt-jigswa"></a>
3.2 Adaptation of Jigsaw 2.1.2 to JBuilder4</h3>
<p>This section was submitted by Holger Blasum of the University of
Munich.</p>
<h4><a name="import-data" id="import-data"></a>3.2.1 Import the data</h4>
<p>To enable recursive directory import the open tool AllRecursive is
included in the $JBUILDER/lib/ext path. Then $JIGSAW is added (JBuilder
Project/Add Folder Recursively) into the new project's root.</p>
<h4><a name="chnage-pro" id="change-pro"></a>
3.2.2 Change Project/Project Properties</h4>
<p>In Project/Project Properties/Run/Application Parameters write "-root
$JIGSAW/Jigsaw", adapt source path (JBuilder Project/Project
Properties/Paths/Source) to $JIGSAW/src/classes and $JIGSAW/Jigsaw. All
$JIGSAW/classes libraries must be configured for JBuilder (JBuilder Project
Properties/Paths/Required Libraries). Also set in Project/Project
Properties/Paths set the output path to $JIGSAW/src/classes and the working
directory to $JIGSAW/Jigsaw.</p>
<h4><a name="run-jigswa" id="run-jigswa"></a>
3.2.3 Run the Jigsaw installation script</h4>
<p>In Project/Project Properties/Run/Application/Main Class set the Main
Class to "Install". In the Jigsaw/Install.java file outcomment the block in
lines 137-143 (cache directory). Then run. After compiling 1100+ files
"Installation complete with 0 errors" will be written to stdout. Run Jigsaw
proper In Project/Project Properties/Run/Application/Main Class now reset the
Main Class to "org.w3c.jigsaw.Main". Then run.</p>
<h4><a name="adapt-jigswa-ccpp" id="adapt-jigswa-ccpp"></a>
3.2.4 Adaptation of Jigsaw to serve CC/PP extensions</h4>
<p>Unpack $JIGSAW/Jigsaw/config/jigadmin.zip. In frames.p append the line
"org.w3c.jigsaw.ccpp.CCPPFrame=frame". Repack jigadmin.zip. Start
$JIGSAW/jigadmin/</p>
<h4><a name="use-http-server" id="use-http-server"></a>3.2.5 Use http-server.</h4>
<p>In Indexers/default/extensions/Add Resource choose FileResource,
identifier "ccpp". Click onto the new resource, select "Edit Resource",
choose "Add Frame" and add a CCPPFrame. Commit. Press the "Save to disk" icon
on the panel below "http-server".</p>
<h4><a name="test-jigswa-ccpp" id="test-jigswa-ccpp"></a>
3.2.6 Test Jigsaw's CC/PP capability</h4>
<p>First, create a file with a ccpp extension (eg "test.ccpp", any content)
in $JIGSAW/Jigsaw/WWW. Then write a CC/PP client. For example, this will do
the job:</p>
<pre>import java.net.*; import java.io.*; </pre>
<pre>public class CCPPClient {
public static void main (String [] args) throws IOException {
Socket socket = new Socket (InetAddress.getByName("localhost"), 8001);
try {
System.out.println ("socket = " + socket);
BufferedReader in = new BufferedReader (new InputStreamReader
(socket.getInputStream()));
PrintWriter out = new PrintWriter(new BufferedWriter(new OutputStreamWriter
(socket.getOutputStream())), true);
//CC/PP request
out.println("M-GET /test2.myccpp HTTP/1.1");
out.println("Host: localhost");
out.println("C-Man: \"http://www.w3.org/TR/NOTE-CCPPexchange\";ns=1");
out.println("1-Profile:");
out.println("Connection: C-Man, 1-Profile");
out.println("\n");
//CC/PP response
String str;
while ((str = in.readLine()) != null)
System.out.println(str);
} finally {
System.out.println ("closing...");
socket.close();
}
}
}
</pre>
<p></p>
<p>It may take a while till the indexer has registered the test.ccpp file
(you can check the associated frames in the Docs space of the http-server).
Sometimes creating new files and restarting the jigadmin tool may help to
speed up.</p>
<h2><a name="exist-ccpp-impl" id="exist-ccpp-impl"></a>
4. Existing CC/PP Implementations</h2>
<p>There are a number of CC/PP implementations to date. Below is a listing of
those which have been reported to the working group. Unfortunately, not all
are available outside the companies or products in which they are used, and
sometimes they may be part of discontinued products. Describing their
features is outside the scope of this document; the user is encouraged to
look them up and find out more.</p>
<p>In some cases, they have been discussed on the working group mailing list.
W3C members are encouraged to find out more by browsing the archives.</p>
<table border="1">
<caption></caption>
<tbody>
<tr>
<td><em>Name of implementation</em></td>
<td><em>Originator</em></td>
<td><em>URI</em></td>
<td><em>Reported to working group</em></td>
<td><em>Open Source</em></td>
</tr>
<tr>
<td>Musashi</td>
<td>Ericsson Wasalab</td>
<td><a
href="http://www.w3.org/Mobile/CCPP/implday/#demo1">http://www.w3.org/Mobile/CCPP/implday/#demo1</a></td>
<td>November 15, 2000</td>
<td>No</td>
</tr>
<tr>
<td>WAP Application Server</td>
<td>Ericsson</td>
<td><a
href="http://www.w3.org/Mobile/CCPP/implday/#demo1">http://www.w3.org/Mobile/CCPP/implday/#demo1</a></td>
<td>November 15, 2000</td>
<td>No</td>
</tr>
<tr>
<td>Panda/Sasa</td>
<td>Kiniko Yasuda, Keio University</td>
<td><a
href="http://yax.tom.sfc.keio.ac.jp/panda/slidemaker/0011ccpp/Overview.html">http://yax.tom.sfc.keio.ac.jp/panda/slidemaker/0011ccpp/Overview.html</a></td>
<td>November 15, 2001</td>
<td>Yes</td>
</tr>
<tr>
<td>SBC/TRI Reference implementation</td>
<td>SBC/TRI</td>
<td><a
href="http://www.w3.org/Mobile/CCPP/implday/#demo1">http://www.w3.org/Mobile/CCPP/implday/#demo1</a></td>
<td>November 15, 2001</td>
<td>No</td>
</tr>
<tr>
<td>Information Architects</td>
<td>Chris Woodrow, Information Architects</td>
<td><a
href="http://www.w3.org/Mobile/CCPP/implday/#demo1">http://www.w3.org/Mobile/CCPP/implday/#demo1</a></td>
<td>November 15, 2001</td>
<td>No</td>
</tr>
<tr>
<td>W3C</td>
<td>Jigsaw Team</td>
<td><a
href="http://www.w3.org/Jigsaw/">http://www.w3.org/Jigsaw/</a></td>
<td>Nov. 15, 2000</td>
<td>Yes</td>
</tr>
<tr>
<td>University of Wales</td>
<td>Stuart Lewis</td>
<td><a href="http://www.ccpp.co.uk/">http://www.ccpp.co.uk/</a>, <a
href="http://users.aber.ac.uk/sdl/ccpp/cs39030.html">http://users.aber.ac.uk/sdl/ccpp/cs39030.html</a></td>
<td>July 26, 2001</td>
<td>Maybe</td>
</tr>
<tr>
<td>DELI</td>
<td>Mark Butler, Hewlett Packard Laboratories</td>
<td><a
href="http://www-uk.hpl.hp.com/people/marbut/">http://www-uk.hpl.hp.com/people/marbut/</a></td>
<td>Nov. 2, 2001</td>
<td>Yes</td>
</tr>
</tbody>
</table>
<p></p>
<h2><a name="ack" id="ack"></a>5. Acknowledgements</h2>
<p>The indispensable contributions from the members of the CC/PP working
group to this document is gratefully acknowledged by the editors. Other
commentators may not always have been as helpful, but we would never have
made it without them.</p>
<h2><a name="ref" id="ref"></a>6. References</h2>
<p>[UAPROF] WAP User Agent Profiling Specification,
http://www1.wapforum.org/tech/terms.asp?doc=WAP-248-UAProf-20010530-p.pdf</p>
<p>[RFC 2506] Holtman, K., Mutz, A., and T. Hardie, "Media Feature Tag
Registration Procedure", BCP 31, RFC 2506, March 1999.</p>
<p>[RFC3023] "XML Media Types", RFC3023,. M. Murata, S. St.Laurent, D. Kohn,
January 2001.URL: ftp://ftp.isi.edu/in-notes/rfc3023.txt</p>
<p>[Schmidt] "Implicit Human Computer Interaction Through Context", Albrecht
Schmidt, Mobile 99 workshop at the Interact 99 conference, Edinburgh,
Scotland. <a
href="http://www.dcs.gla.ac.uk/~mark/research/workshops/mobile99/papers/schmidt.ps">http://www.dcs.gla.ac.uk/~mark/research/workshops/mobile99/papers/schmidt.ps</a></p>
<h2><a name="app" id="app"></a>7. Appendix</h2>
<h3><a name="app-fipa" id="app-fipa"></a>A. Schema for FIPA</h3>
<p>The FIPA has not defined an RDF schema, but uses the namespace tied to the
URI http://www.fipa.org/profiles/device-20010202#. The schema in that
location corresponds to the ontology presented in the specification.</p>
<h3><a name="app-wap" id="app-wap"></a>B. Schema for WAP WAG UAPROF</h3>
<p>A schema for the WAG UAPROF vocabulary is contained in the WAG UAPROF
specification, available at
http://www1.wapforum.org/tech/terms.asp?doc=WAP-174-UAProf-19991110-a.pdf</p>
<h3><a name="app-syncml" id="app-syncml"></a>C. Schema for SyncML</h3>
<!--
<p>Note: This schema is available in machine readable form at
http://www.w3.org/TR/2001/2001-08-31-NOTE-CCPP-COORDINATION-SynchML.rdfs</p>
-->
<pre><?xml version="1.0"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:sync="http://www.syncml.org/docs/syncml_devinf_v101_20010615#">
<rdf:Description rdf:ID="Component">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:label>component</rdfs:label>
</rdf:Description>
<rdf:Description rdf:ID="component">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Property"/>
<rdfs:label>component</rdfs:label>
<rdfs:comment>
The component attribute links the various components to the root node (profile).
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:ID="defaults">
<rdfs:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Property"/>
<rdfs:domain rdf:resource="#DevInf"/>
<rdfs:domain rdf:resource="#DataStore"/>
<rdfs:domain rdf:resource="#CTCap"/>
</rdf:Description>
<rdf:Description rdf:ID="DevInf">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdfs:subClassOf
rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:label>DevInf</rdfs:label>
<rdfs:comment>
Attributes: VerDTD, Man?, Mod?, OEM?, FwV?, SwV?, HwV?, DevID, DevTyp, DataStore+, CTCap*, Ext* (for an explanation of the modifiers and allowed values, see the specification at http://www.syncml.org/docs/spec1-0-1.zip)
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:ID="VerDTD">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#DevInf"/>
</rdf:Description>
<rdf:Description rdf:ID="Man">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#DevInf"/>
</rdf:Description>
<rdf:Description rdf:ID="Mod">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#DevInf"/>
</rdf:Description>
<rdf:Description rdf:ID="OEM">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#DevInf"/>
</rdf:Description>
<rdf:Description rdf:ID="FwV">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#DevInf"/>
</rdf:Description>
<rdf:Description rdf:ID="SwV">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#DevInf"/>
</rdf:Description>
<rdf:Description rdf:ID="HwV">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#DevInf"/>
</rdf:Description>
<rdf:Description rdf:ID="DevID">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#DevInf"/>
</rdf:Description>
<rdf:Description rdf:ID="DevTyp">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#DevInf"/>
</rdf:Description>
<rdf:Description rdf:ID="DataStore">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdfs:domain rdf:resource="#DevInf"/>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:label>DataStore</rdfs:label>
<rdfs:comment>
Attributes: SourceRef, DisplayName?, MaxGUIDSize?, Rx-Pref, Rx*, Tx-Pref, Tx*, DSMem?, SyncCap
(for an explanation of the modifiers and allowed values, see the specification at http://www.syncml.org/docs/spec1-0-1.zip)
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:ID="SourceRef">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#DataStore"/>
</rdf:Description>
<rdf:Description rdf:ID="DisplayName">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#DataStore"/>
<rdfs:domain rdf:resource="#CtCap"/>
</rdf:Description>
<rdf:Description rdf:ID="MaxGUIDSize">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#DataStore"/>
</rdf:Description>
<rdf:Description rdf:ID="Rx-Pref">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#DataStore"/>
</rdf:Description>
<rdf:Description rdf:ID="Rx">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#DataStore"/>
</rdf:Description>
<rdf:Description rdf:ID="Tx-Pref">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#DataStore"/>
</rdf:Description>
<rdf:Description rdf:ID="Tx">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#DataStore"/>
</rdf:Description>
<rdf:Description rdf:ID="DSMem">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#DataStore"/>
</rdf:Description>
<rdf:Description rdf:ID="CTCap">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdfs:domain rdf:resource="#DevInf"/>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:label>CTCap</rdfs:label>
<rdfs:comment>
Attributes: ((CTType, (PropName, (ValEnum+ | (DataType, Size?))?,DisplayName?, (ParamName, (ValEnum+ | (DataType, Size?))?,DisplayName?)*)+)+)
(for an explanation of the modifiers and allowed values, see the specification at http://www.syncml.org/docs/spec1-0-1.zip)
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:ID="CTType">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#CTCap"/>
<rdfs:domain rdf:resource="#Rx"/>
<rdfs:domain rdf:resource="#Rx-Pref"/>
<rdfs:domain rdf:resource="#Tx"/>
<rdfs:domain rdf:resource="#Tx-Pref"/>
</rdf:Description>
<rdf:Description rdf:ID="DataType">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#CTCap"/>
</rdf:Description>
<rdf:Description rdf:ID="Size">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#CTCap"/>
</rdf:Description>
<rdf:Description rdf:ID="PropName">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#CTCap"/>
</rdf:Description>
<rdf:Description rdf:ID="ValEnum">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#CTCap"/>
</rdf:Description>
<rdf:Description rdf:ID="ParamName">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#CTCap"/>
</rdf:Description>
<rdf:Description rdf:ID="SyncCap">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#DataStore"/>
</rdf:Description>
<rdf:Description rdf:ID="Ext">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#DevInf"/>
</rdf:Description>
<rdf:Description rdf:ID="XNam">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#Ext"/>
</rdf:Description>
<rdf:Description rdf:ID="XVal">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#Ext"/>
</rdf:Description>
<rdf:Description rdf:ID="MaxMem">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#DsMem"/>
</rdf:Description>
<rdf:Description rdf:ID="MaxID">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#DsMem"/>
</rdf:Description>
<rdf:Description rdf:ID="VerCT">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#Rx"/>
<rdfs:domain rdf:resource="#Rx-Pref"/>
<rdfs:domain rdf:resource="#Tx"/>
<rdfs:domain rdf:resource="#Tx-Pref"/>
</rdf:Description>
<rdf:Description rdf:ID="SyncType">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
<rdfs:domain rdf:resource="#SyncCap"/>
</rdf:Description>
</rdf:RDF></pre>
<h3><a name="app-weather" id="weather"></a>D. Schema for weather</h3>
<pre><?xml version="1.0"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:ID="Date">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
</rdf:Description>
<rdf:Description rdf:ID="Area">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
</rdf:Description>
<rdf:Description rdf:ID="Situation">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
</rdf:Description>
<rdf:Description rdf:ID="Temperature">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
</rdf:Description>
<rdf:Description rdf:ID="Wind_speed">
<rdf:type rdf:resource="http://www.w3.org/TR/PR-rdf-syntax#Property" />
</rdf:Description>
</rdf:RDF></pre>
<h3><a name="footnote" id="footnote"></a>Footnotes</h3>
<p><a name="Footnote1" ID="Footnote1">1:</a> The chair of the CONNEG group
and the principal editor have been members of the CC/PP working group during
its existence, and have actively contributed to the work.</p>
<hr>
<p>
<a href="http://validator.w3.org/check/referer"><img border="0"
src="http://www.w3.org/Icons/valid-html401"
alt="Valid HTML 4.01!" height="31" width="88"></a>
<a href="http://www.w3.org/Style/CSS/Buttons/"><img
src="/Style/CSS/Buttons/mwcos"
alt="Made with CSS" border="0" width="88" height="31" /></a></p>
</body>
</html>