27-swxg-minutes.html
59.9 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
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang='en' xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta name="generator" content=
"HTML Tidy for Linux/x86 (vers 12 April 2005), see www.w3.org" />
<title>Social Web Incubator Group Teleconference -- 27 May
2009</title>
<link type="text/css" rel="STYLESHEET" href=
"http://www.w3.org/StyleSheets/base.css" />
<link type="text/css" rel="STYLESHEET" href=
"http://www.w3.org/StyleSheets/public.css" />
<link type="text/css" rel="STYLESHEET" href=
"http://www.w3.org/2004/02/minutes-style.css" />
<meta content="Social Web Incubator Group Teleconference" name=
"Title" />
<meta content="text/html; charset=utf-8" http-equiv=
"Content-Type" />
</head>
<body>
<p><a href="http://www.w3.org/"><img src=
"http://www.w3.org/Icons/w3c_home" alt="W3C" border="0" height=
"48" width="72" /></a></p>
<h1>Social Web Incubator Group Teleconference</h1>
<h2>27 May 2009</h2>
<p>See also: <a href="http://www.w3.org/2009/05/27-swxg-irc">IRC
log</a></p>
<h2><a name="attendees" id="attendees">Attendees</a></h2>
<div class="intro">
<dl>
<dt>Present</dt>
<dd> jsalvachua, cperey, rreck, libby, adam, caribou, hhalpin, tpa, petef, melvster, mischat, tinkster, karl, lubya, dom, AlexPassant, timbl, norm, pmika, ivan, Hakan, uldis</dd>
<dt>Regrets</dt>
<dd>Yuk, DanBri, DKA, Milan, Fabien, Raphael, AlexK, Renato</dd>
<dt>Chair</dt>
<dd>hhalpin</dd>
<dt>Scribe</dt>
<dd>Mischa</dd>
</dl>
</div>
<h2>Contents</h2>
<ul>
<li>
<a href="#agenda">Topics</a>
<ol>
<li><a href="#item01">Convene SWXG WG meeting of
2009-05-27T13:00-15:00Z</a></li>
<li><a href="#item02">General Organization</a></li>
<li><a href="#item03">Task forces</a></li>
<li><a href="#item04">Invited Guests</a></li>
<li><a href="#item05">Creating User Stories on the
Wiki</a></li>
<li><a href="#item06">Invited Guest Telecon: VCard in
RDF</a></li>
</ol>
</li>
<li><a href="#ActionSummary">Summary of Action Items</a></li>
</ul>
<hr />
<div class="meeting">
<h3 id="item01">Convene SWXG WG meeting of
2009-05-27T13:00-15:00Z</h3>
<p class='irc'><<cite>hhalpin</cite>> PROPOSED: to
approve SWXG WG Weekly -- 20 May 2009 as a true record</p>
<p class='irc'><<cite>hhalpin</cite>> RESOLVED: approved
SWXG WG Weekly -- 20 May 2009 as a true record</p>
<p class='irc'><<cite>hhalpin</cite>> PROPOSED: to meet
again Wed, 3 June. scribe volunteer?</p>
<p class='irc'><<cite>hhalpin</cite>> Scribe?</p>
<p class='irc'><<cite>adam</cite>> i can do june 10th</p>
<p class='phone'>+1</p>
<p class='irc'><<cite>hhalpin</cite>> OK, let's have adam
provisionally as scribe for next meeting.</p>
<p class='irc'><<cite>hhalpin</cite>> RESOLVED: move to a
scribing list</p>
<h3 id="item02">General Organization</h3>
<p class='irc'><<cite>hhalpin</cite>> <a href=
"http://www.w3.org/2005/Incubator/socialweb/wiki/Liaisons">http://www.w3.org/2005/Incubator/socialweb/wiki/Liaisons</a></p>
<p class='phone'>apassant is a SPARQL liasion</p>
<p class='phone'>in need of other ones ?</p>
<p class='irc'><<cite>hhalpin</cite>> Do we have any
volunteers?</p>
<p class='irc'><<cite>rreck</cite>> are the groups that
need liasons listed on the wiki?</p>
<p class='irc'><<cite>hhalpin</cite>> Yes.</p>
<p class='irc'><<cite>tinkster</cite>> I've put myself
down for Microformats.</p>
<p class='phone'>are in need of liasons</p>
<p class='irc'><<cite>jsalvachua</cite>> i may try to
interface with dataportability.org</p>
<p class='irc'><<cite>hhalpin</cite>> Could you add
yourselves to the wiki?</p>
<p class='phone'><cite>jsalvachua:</cite> to be liaison with
dataportability.org</p>
<p class='phone'>toby to be liason with the microformats
community</p>
<p class='irc'><<cite>claudio</cite>> +039011228aahh is
claudio</p>
<p class='irc'><<cite>hhalpin</cite>> C'mon no volunteers
:(</p>
<p class='irc'><<cite>petef</cite>> I volunteered</p>
<p class='irc'><<cite>petef</cite>> for Social Network
Portability Group List</p>
<p class='irc'><<cite>jsalvachua</cite>> i may help with
other groups, with the vcard ietf group</p>
<p class='phone'>renanto is on the wiki as the liason with
"Policy Language Interest Group"</p>
<p class='irc'><<cite>AlexPassant</cite>> Uldis Bojars or
John Breslin can be SIOC liaisons</p>
<p class='irc'><<cite>AlexPassant</cite>> her's uldis</p>
<p class='irc'><<cite>hhalpin</cite>> OK - could you
check on them.</p><a name="action01" id="action01"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> AlexPassant to see about SIOC liason
[recorded in <a href=
"http://www.w3.org/2009/05/27-swxg-minutes.html#action01">http://www.w3.org/2009/05/27-swxg-minutes.html#action01</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-15
- See about SIOC liason [on Alexandre Passant - due
2009-06-03].</p>
<p class='irc'><<cite>uldis</cite>> sounds good</p>
<p class='phone'>AlexPassant to check to see if we can find a
SIOC liaison</p>
<p class='irc'><<cite>petef</cite>> I have added myself
to wiki as volunteer liason for data portability, diso and
social network portability</p><a name="action02" id=
"action02"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[DONE]</strong> danbri sketch
a 5 line template for interaction with other groups (cf
InvitedExperts, DiscussionTopics) [recorded in <a href=
"http://www.w3.org/2009/05/27-swxg-minutes.html#action02">http://www.w3.org/2009/05/27-swxg-minutes.html#action02</a>]</p>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[DONE]</strong> karl to
produce a template for TF deliverables. [recorded in <a href=
"http://www.w3.org/2009/05/27-swxg-minutes.html#action03">http://www.w3.org/2009/05/27-swxg-minutes.html#action03</a>]</p>
<p class='irc'><<cite>hhalpin</cite>> Karl - do you wish
to explain your template?</p>
<p class='phone'>Karl put together a template for the user
stories</p>
<p class='phone'>karl has put up 2 templates</p>
<p class='irc'><<cite>rreck</cite>> are user stories aka
use cases?</p>
<p class='phone'>so user stories seemed too long</p>
<p class='irc'><<cite>rreck</cite>> i am developing a use
case atm</p>
<p class='phone'>karl suggests we should be concise and to the
point</p>
<p class='irc'><<cite>cperey</cite>> can someone put the
URI to the templates into IRC</p>
<p class='irc'><<cite>tinkster</cite>> Karl's template -
<a href=
"http://lists.w3.org/Archives/Public/public-xg-socialweb/2009May/0103.html">
http://lists.w3.org/Archives/Public/public-xg-socialweb/2009May/0103.html</a></p>
<p class='phone'>goal of the templates are to speed up the
writing</p>
<p class='irc'><<cite>cperey</cite>> thanks Toby!</p>
<p class='phone'>templates will give us a common look and
feel</p>
<p class='phone'>Karl is open to comments/modifications re: the
templates</p>
<p class='phone'>hhalpin happy with the user stories
templates</p>
<p class='irc'><<cite>petef</cite>> how come petef.a not
petef?</p>
<p class='phone'>hhalpin would like a template for the final
report to be put up on the wiki</p>
<p class='phone'>hhalpin asks if anyone has any experience in
this ?</p>
<p class='irc'><<cite>hhalpin</cite>> Does anyone have a
final report template as well?</p>
<p class='irc'><<cite>hhalpin</cite>> Does anyone want to
take that action - i.e. finding a template for final
deliverables?</p>
<p class='irc'><<cite>tinkster</cite>> microformats.org
write all specs on mediawiki - perhaps useful?</p>
<p class='phone'>karl stated that someone should take an action
to port the final report template to the wiki</p>
<p class='phone'>can we not look at other XGs?</p>
<p class='irc'><<cite>AlexPassant</cite>> can a chair
close this action -> <a href=
"http://www.w3.org/2005/Incubator/socialweb/track/actions/14">http://www.w3.org/2005/Incubator/socialweb/track/actions/14</a></p>
<p class='irc'><<cite>adam</cite>> i can take a stab at
it</p><a name="action04" id="action04"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> adam to find a good final report
template and port it to the wiki [recorded in <a href=
"http://www.w3.org/2009/05/27-swxg-minutes.html#action04">http://www.w3.org/2009/05/27-swxg-minutes.html#action04</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-16
- Find a good final report template and port it to the wiki [on
Adam Boyet - due 2009-06-03].</p>
<p class='phone'><cite>hhalpin:</cite> adam seemed to suggest
that he would look into the template</p>
<h3 id="item03">Task forces</h3>
<p class='phone'>hhalpin asks if anyone has any comments re:
the organisation so we can move onto the task force issue</p>
<p class='phone'>Task force issues: should we merge context /
privacy ?</p>
<p class='irc'><<cite>hhalpin</cite>> Context and Privacy
Task Force (Karl Dubost)? For Portability and Architectures
Task Force (@@)?</p>
<p class='phone'>so, harry is asking if people like proposed
task force titles</p>
<p class='irc'><<cite>petef</cite>> Portability and
Architectures - jsalvachua and petef volunteered last
telecon.</p>
<p class='phone'><cite>cperey:</cite> has no preference for
times, but thinks we need critical mass</p>
<p class='phone'>and we need a clear agenda</p>
<p class='irc'><<cite>petef</cite>> signing up to task
forces where?</p>
<p class='irc'><<cite>hhalpin</cite>> Maybe we could
remind people to sign up for task forces</p>
<p class='phone'>cperey participation has gone down since the
start of XG, cperey thinks we should find out how many people
are interested in each Task force</p>
<p class='irc'><<cite>jsalvachua</cite>> petef : we both
may start together to push the task force</p>
<p class='irc'><<cite>karl</cite>> karl *MAY* be the task
force leader ;)</p>
<p class='phone'>should we find out how many are interested in
each task force</p>
<p class='irc'><<cite>tinkster</cite>> Also interested in
portability/arch but not leading.</p>
<p class='irc'><<cite>cperey</cite>> I agree</p>
<p class='irc'><<cite>hhalpin</cite>> Wiki page for each
of these task forces?</p>
<p class='irc'><<cite>petef</cite>> where?</p>
<p class='irc'><<cite>hhalpin</cite>> I don't think we
do.</p>
<p class='irc'><<cite>tinkster</cite>> I can set up
template wiki pages for them.</p>
<p class='irc'><<cite>petef</cite>> I will draft one for
portability and architectures</p><a name="action05" id=
"action05"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> tinkster to draft wiki pages for task
forces [recorded in <a href=
"http://www.w3.org/2009/05/27-swxg-minutes.html#action05">http://www.w3.org/2009/05/27-swxg-minutes.html#action05</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-17
- Draft wiki pages for task forces [on Toby Inkster - due
2009-06-03].</p>
<p class='phone'>toby to set up wiki page re task forces, and
people should add what they are thinking</p>
<p class='phone'>portability task force, so hhalpin is
interested in how the W3C can promote how data can be made
portable</p>
<p class='irc'><<cite>rreck</cite>> i would be happy to
contribute but would like to have the discussion on the
list</p>
<p class='irc'><<cite>tinkster</cite>> I can just hear
typing.</p>
<p class='irc'><<cite>tinkster</cite>> <a href=
"http://www.w3.org/2005/Incubator/socialweb/wiki/Portability_Architecture_TF">
http://www.w3.org/2005/Incubator/socialweb/wiki/Portability_Architecture_TF</a></p>
<p class='phone'><cite>jsalvachua:</cite> said that he will try
and populate the wiki, regarding a roadmap for the portability
task froce</p>
<p class='irc'><<cite>tinkster</cite>> <a href=
"http://www.w3.org/2005/Incubator/socialweb/wiki/Context_Privacy_TF">
http://www.w3.org/2005/Incubator/socialweb/wiki/Context_Privacy_TF</a></p>
<h3 id="item04">Invited Guests</h3>
<p class='irc'><<cite>hhalpin</cite>> 4. Invited
Guests</p>
<p class='phone'>I will put some stuff on the wiki for privacy
task force</p>
<p class='irc'><<cite>hajons</cite>> -q</p>
<p class='irc'><<cite>hhalpin</cite>> Anyone else?</p>
<p class='phone'>invited speaker lists have been populated for
the widget topic and the Vcard topic, does anyone else have any
ideas on this ?</p>
<p class='phone'>hajons, asks if people should just write to
the wiki, if they want to join a task force ?</p>
<p class='irc'><<cite>petef</cite>> Yes, just sign up to
task force on wiki page</p>
<p class='phone'>or is there some other protocol</p>
<p class='irc'><<cite>hajons</cite>> how do we join the
task forces</p>
<p class='irc'><<cite>hajons</cite>> ok</p>
<p class='irc'><<cite>adam</cite>> maybe once the task
force pages are created, each person can add themselves as a
member</p>
<p class='irc'><<cite>adam</cite>> of the task force</p>
<p class='irc'><<cite>hhalpin</cite>> +1 adam</p>
<p class='phone'>hhalpin states that we should just add names
to the list of task forces on the wiki</p>
<p class='irc'><<cite>rreck</cite>> i will join the
privacy task force</p>
<p class='phone'><a href=
"http://www.w3.org/2005/Incubator/socialweb/wiki/Context_Privacy_TF">
http://www.w3.org/2005/Incubator/socialweb/wiki/Context_Privacy_TF</a></p>
<p class='phone'>;)</p>
<p class='irc'><<cite>rreck</cite>> i dont feel capable
of leading it</p>
<p class='phone'>are we going to have invited guest for privacy
and context ?</p>
<p class='phone'>harry wodners if there is any mobile
interest</p>
<p class='phone'>from the group</p>
<p class='irc'><<cite>hajons</cite>> yes, I will propose
a guest on context / mobile</p>
<p class='irc'><<cite>hhalpin</cite>> tim gave his
regrets and daniel applequist can't make this meeting in
particular :(</p>
<p class='irc'><<cite>hhalpin</cite>> Perhaps you can
explain what the OSLO group is?</p>
<p class='irc'><<cite>hhalpin</cite>> Does it have a
web-page?</p>
<p class='irc'><<cite>hhalpin</cite>> Open Sharing of
LOcations</p>
<p class='phone'>christine, is interested the mobile
technologies, and christine also contacted someone (?)
external, and they are not interested in developing
protocols</p>
<p class='phone'>OSLO group announced start earlier this year,
and they are NOT interested with speaking to W3C</p>
<p class='irc'><<cite>tinkster</cite>> Open Sharing of
Location-based Objects (OSLO) - <a href=
"http://uk.techcrunch.com/2009/02/27/oslo-accord-pushes-location-sharing-between-social-networks/">
http://uk.techcrunch.com/2009/02/27/oslo-accord-pushes-location-sharing-between-social-networks/</a></p>
<p class='irc'><<cite>hhalpin</cite>> Christine, perhaps
stay in touch with them?</p>
<p class='irc'><<cite>caribou</cite>> <a href=
"http://www.w3.org/2005/Incubator/socialweb/wiki/InvitedGuests">
http://www.w3.org/2005/Incubator/socialweb/wiki/InvitedGuests</a></p>
<p class='phone'>there are others which could speak to the
w3c</p>
<p class='phone'>but we need some specific questions</p>
<p class='irc'><<cite>hhalpin</cite>> Maybe brainstorm on
the wiki what specific questions would be relevant to these
mobile operators?</p>
<p class='phone'>so that christine could approach people</p>
<p class='irc'><<cite>hhalpin</cite>> Or what is part of
their problems?</p>
<p class='irc'><<cite>hhalpin</cite>> What could they
need?</p>
<p class='phone'>nokia people did context and mobile stuff, and
I could ask Mor Naaman to talk about the Zonetag project</p>
<p class='phone'>but i am out of touch with the mobile
stuff</p>
<p class='phone'>harry asked if we could have a wiki page /
content regarding the mobile space</p><a name="action06" id=
"action06"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> cperey to add mobile companies to to
Invited Guests and to brainstorm what exact questions or topics
would be most interesting [recorded in <a href=
"http://www.w3.org/2009/05/27-swxg-minutes.html#action06">http://www.w3.org/2009/05/27-swxg-minutes.html#action06</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-18
- Add mobile companies to to Invited Guests and to brainstorm
what exact questions or topics would be most interesting [on
Christine Perey - due 2009-06-03].</p>
<p class='phone'>christine would like an agenda to take to the
mobile experts before contacting them</p>
<h3 id="item05">Creating User Stories on the Wiki</h3>
<p class='irc'><<cite>hhalpin</cite>> any more
use-cases?</p>
<p class='phone'>there is some work i emailed round from a chap
from cambridge</p>
<p class='phone'>which had some good examples of how privacy in
the social web tends to look like</p>
<p class='phone'>karl thinks that we should add some more user
stories, so that we can get a feel for what the XG should be
looking at</p>
<p class='irc'><<cite>rreck</cite>> yes i will add a
story</p>
<p class='irc'><<cite>hhalpin</cite>> I feel we are still
missing some use-cases regarding businesses and developers</p>
<p class='irc'><<cite>rreck</cite>> i wanted to get
privacy classes but no one answered my email</p>
<p class='phone'>ah excellent point</p>
<p class='irc'><<cite>karl</cite>> karl: we should take
the current user stories and check them against the actual
social networks such as frienfeed, facebook, etc.</p>
<p class='irc'><<cite>karl</cite>> then we can see if our
cases make sense</p>
<p class='irc'><<cite>karl</cite>> and then we can
identify if there are missing ones.</p>
<p class='phone'>i posted about this</p>
<p class='irc'><<cite>rreck</cite>> great idea</p>
<p class='irc'><<cite>tinkster</cite>> I've got a
developer story - I'll create an action for myself.</p>
<p class='phone'>harry says that we should have a matrix</p>
<p class='irc'><<cite>rreck</cite>> social network
matrix</p>
<p class='irc'><<cite>tinkster</cite>> ACTION tinkster to
document developer stories on wiki.</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-19
- Document developer stories on wiki. [on Toby Inkster - due
2009-06-03].</p>
<p class='phone'>showing how social networks uphold privacy</p>
<p class='irc'><<cite>caribou</cite>> almost all the user
stories that we have are related to privacy/data
protection</p><a name="action07" id="action07"></a>
<p class='irc'><<cite>karl</cite>>
<strong>ACTION:</strong> karl to create the matix to be filled
[recorded in <a href=
"http://www.w3.org/2009/05/27-swxg-minutes.html#action07">http://www.w3.org/2009/05/27-swxg-minutes.html#action07</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-20
- Create the matix to be filled [on Karl Dubost - due
2009-06-03].</p>
<p class='phone'>we have developed at garlik</p>
<p class='irc'><<cite>rreck</cite>> can someone help me
find classes of privacy</p>
<p class='phone'>but it is for government institutions</p>
<p class='phone'>about what they do with your data</p>
<p class='irc'><<cite>hhalpin</cite>> mischa - could we
expland the matrix to deal with commercial social networks?</p>
<p class='phone'>i could put to a similar oen for social
networking sites</p>
<p class='irc'><<cite>hhalpin</cite>> Maybe we could look
through alexa to get out the top social networking sites.</p>
<p class='irc'><<cite>hhalpin</cite>> I can do
that...</p>
<p class='phone'>karl says that he will put up a matrix based
on the current user stories</p><a name="action08" id=
"action08"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> To retrieve top X social networking
sites from the top 500 sites of Alexa [recorded in <a href=
"http://www.w3.org/2009/05/27-swxg-minutes.html#action08">http://www.w3.org/2009/05/27-swxg-minutes.html#action08</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Sorry, couldn't
find user - To</p><a name="action09" id="action09"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> hhalpin to retrieve top X social
networking sites from the top 500 sites of Alexa [recorded in
<a href=
"http://www.w3.org/2009/05/27-swxg-minutes.html#action09">http://www.w3.org/2009/05/27-swxg-minutes.html#action09</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-21
- Retrieve top X social networking sites from the top 500 sites
of Alexa [on Harry Halpin - due 2009-06-03].</p>
<p class='phone'>so that people can look at each individual
social networking sites</p>
<p class='irc'><<cite>cperey</cite>> Karl, what criteria
do you want for this list?</p>
<p class='irc'><<cite>cperey</cite>> the "top" social
networks?</p>
<p class='irc'><<cite>karl</cite>> cperey, Alexa
traffic</p>
<p class='irc'><<cite>cperey</cite>> irrelevant</p>
<p class='irc'><<cite>cperey</cite>> for mobile</p>
<p class='phone'><a href=
"http://en.wikipedia.org/wiki/List_of_social_networking_websites">
http://en.wikipedia.org/wiki/List_of_social_networking_websites</a></p>
<p class='irc'><<cite>karl</cite>> cperey, what would be
your criteria? :)</p>
<p class='irc'><<cite>hhalpin</cite>> how could we get
the top X social networking sites for mobile?</p>
<p class='irc'><<cite>cperey</cite>> Number of unique
users per month</p>
<p class='irc'><<cite>hhalpin</cite>> is that list
available anywhere?</p>
<p class='irc'><<cite>cperey</cite>> more relevant for
all types of social networks</p>
<p class='phone'><a href=
"http://en.wikipedia.org/wiki/List_of_social_networking_websites">
http://en.wikipedia.org/wiki/List_of_social_networking_websites</a></p>
<p class='irc'><<cite>cperey</cite>> I have a list (not
published)</p>
<p class='irc'><<cite>rreck</cite>> wouldnt you just
select out of the top 500 alexa sites?</p>
<p class='irc'><<cite>hhalpin</cite>> I thin that list on
wikipedia uses the company's own data, right?</p>
<p class='phone'>there has been some work from cambridge</p>
<p class='phone'>were they looked into</p>
<p class='irc'><<cite>karl</cite>> I will do Mixi (social
network in Japan) because I have an account and they don't open
account to people outside Japan</p>
<p class='phone'>social networking sites</p>
<p class='phone'>T&Cs</p>
<p class='phone'><a href=
"http://news.bbc.co.uk/1/hi/uk/8060407.stm">http://news.bbc.co.uk/1/hi/uk/8060407.stm</a></p>
<p class='phone'>i would like to invite the phd student which
did the work</p>
<p class='irc'><<cite>cperey</cite>> this is a metrics
question</p>
<p class='irc'><<cite>rreck</cite>> humming is back</p>
<p class='phone'>looking for the persons link</p>
<p class='irc'><<cite>hhalpin</cite>> I'm happy to go
through alexa if someone else will merge it with wikipedia and
Christine's list</p>
<p class='irc'><<cite>cperey</cite>> how do you measure a
social network</p>
<p class='irc'><<cite>hhalpin</cite>> this is returning
to the metric question</p>
<p class='irc'><<cite>cperey</cite>> OK</p>
<p class='irc'><<cite>karl</cite>> +1 for merging</p>
<p class='phone'>+1 merging</p>
<p class='irc'><<cite>rreck</cite>> +1 merging</p>
<p class='irc'><<cite>cperey</cite>> 30-50 social
networks</p>
<p class='irc'><<cite>rreck</cite>> yes that sounds
reasonable</p>
<p class='irc'><<cite>hhalpin</cite>> So we merge list
from alexa\wikipedia with Christine's list?</p>
<p class='irc'><<cite>cperey</cite>> by country?
worldwide?</p>
<p class='irc'><<cite>rreck</cite>> worldwide</p>
<p class='irc'><<cite>hhalpin</cite>> I would assume
world-wide at first, and then later we can break it down by
country</p>
<p class='phone'><cite>hhalpin:</cite> asked if we could merge
christine's list with the alexa rankign and the wikipedia list
so as to pick 30 social networking sites</p>
<p class='irc'><<cite>hhalpin</cite>> unless your data is
already broken down by country Christine</p>
<p class='irc'><<cite>cperey</cite>> I can work with
Harry on this</p>
<p class='irc'><<cite>cperey</cite>> zakim unmute me</p>
<p class='phone'><a href=
"http://www.cl.cam.ac.uk/~jra40/publications/">http://www.cl.cam.ac.uk/~jra40/publications/</a></p>
<p class='irc'><<cite>melvster</cite>> I would suggest
you also need IM based networks such as Skype, GTalk, XMPP, if
they are not included already, as they have significant usage
and maturity</p>
<p class='phone'>cperey's data is broken down by country</p>
<p class='phone'><cite>cperey:</cite> on/deck and business
models.</p>
<p class='irc'><<cite>hhalpin</cite>> 30 or 50?</p>
<p class='irc'><<cite>hhalpin</cite>> Start with 30 and
then build if needed?</p>
<p class='phone'>cperey would be happy with 30</p>
<p class='phone'>+1</p>
<p class='irc'><<cite>adam</cite>> +1</p>
<p class='phone'><cite>cperey:</cite> will make a list of the
last 30</p>
<p class='irc'><<cite>rreck</cite>> top based on number
of users?</p>
<p class='phone'>i would like us to check their Terms and
Conditions</p>
<p class='phone'>and see if they actually abide by
it</p><a name="action10" id="action10"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> cperey to make list of top 30 to do
profiles on, to merge with hhalpin's list on alexa [recorded in
<a href=
"http://www.w3.org/2009/05/27-swxg-minutes.html#action10">http://www.w3.org/2009/05/27-swxg-minutes.html#action10</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-22
- Make list of top 30 to do profiles on, to merge with
hhalpin's list on alexa [on Christine Perey - due
2009-06-03].</p>
<p class='irc'><<cite>karl</cite>> I'll have to find
someone for <a href=
"http://en.wikipedia.org/wiki/2channel">http://en.wikipedia.org/wiki/2channel</a></p>
<p class='irc'><<cite>hajons</cite>> Christine, do you
list mobile access as a feature too?</p>
<p class='irc'><<cite>hhalpin</cite>> we do it as more of
long-term action</p>
<p class='phone'><cite>cperey:</cite> data has information
regarding social networking sites, and their features</p>
<p class='phone'>not terms and conditions</p>
<p class='irc'><<cite>hhalpin</cite>> does your list have
the feature?</p>
<p class='irc'><<cite>hhalpin</cite>> feature-criteria
like instant-messaging, and all of that?</p>
<p class='phone'>all of the social networking sites on
christine's list are mobile centric</p>
<p class='irc'><<cite>hhalpin</cite>> cperey:
"PC-centric" vs. "mobile-centric" and then a continuum
inbetween.</p>
<p class='irc'><<cite>karl</cite>> what is a mobile
access? specific software for mobile devices?</p>
<p class='irc'><<cite>rreck</cite>> my cell does the same
things as my PC</p>
<p class='irc'><<cite>hhalpin</cite>> sounds good to
me</p>
<p class='phone'><cite>cperey:</cite> will get her
mobile-centric list and we should look at it</p>
<p class='irc'><<cite>hhalpin</cite>> yes rreck, but some
sites don't well with mobile phones if you don't have a
gphone/iphone/other dataphone</p>
<p class='phone'>and add an pc-centric social networkings site
to the cperey's list</p>
<p class='irc'><<cite>hhalpin</cite>> can we check to see
if any of these sites take advantage of user-context, like
geolocation from mobile phone?</p>
<p class='irc'><<cite>hhalpin</cite>> Sounds great!</p>
<p class='phone'>matrix of social networking site</p>
<p class='phone'>and their features</p>
<p class='irc'><<cite>cperey</cite>> where does this
live?</p>
<p class='irc'><<cite>hhalpin</cite>> we should a
manufacture a wiki page for the list</p>
<p class='phone'>we need a wiki page for this list</p>
<p class='irc'><<cite>cperey</cite>> yes, please</p>
<p class='irc'><<cite>cperey</cite>> yes, I will fill
in</p>
<p class='irc'><<cite>cperey</cite>> I need to sign off
and go to another meeting, bye all</p>
<p class='irc'><<cite>petef</cite>> bye cperey</p>
<p class='phone'>vcard and portability issues will have its own
discussion after this call</p>
<p class='irc'><<cite>hhalpin</cite>> any more comments
before we move to vcard?</p>
<p class='irc'><<cite>hhalpin</cite>> such as things we
are missing?</p>
<p class='phone'>does anyone have any issues, there are lots of
quiet people about?</p>
<p class='phone'>have we looked over anything</p>
<p class='irc'><<cite>tinkster</cite>> Dammit. My phone's
gone dead.</p>
<p class='irc'><<cite>tinkster</cite>> Still on IRC
though.</p>
<p class='phone'>are we missing anything obvious ?</p>
<p class='irc'><<cite>rreck</cite>> im not sure</p>
<p class='phone'>this should be an ongoing process</p>
<p class='phone'>if you think we are missing something</p>
<h3 id="item06">Invited Guest Telecon: VCard in RDF</h3>
<p class='irc'><<cite>hhalpin</cite>> 6. Invited Guest
Telecon: VCard in RDF</p>
<p class='phone'>let the mailing list know</p>
<p class='irc'><<cite>rreck</cite>> im trying to find
classes of privacy and i cant be the first person to want
them</p>
<p class='phone'><cite>rreck:</cite> look at this guys work
<a href=
"http://www.cl.cam.ac.uk/~jra40/publications/">http://www.cl.cam.ac.uk/~jra40/publications/</a></p>
<p class='irc'><<cite>hhalpin</cite>> One advantage of
the vCard in RDF format (RDF Schema here) is it's use of RDF
containers to allow complex vCard expressions. Should this be
kept, and if so, how? Which ones, rdf:bag, rdf:Alt, rdf:Seq?
How about its use of sub-structure?</p>
<p class='phone'>I have to leave this call, it is 3</p>
<p class='phone'>:(</p>
<p class='irc'><<cite>hhalpin</cite>> <a href=
"http://www.w3.org/TR/vcard-rdf">http://www.w3.org/TR/vcard-rdf</a></p>
<p class='irc'><<cite>rreck</cite>> mischat: ty</p>
<p class='irc'><<cite>hhalpin</cite>> That's the older
vCard in RDF format</p>
<p class='irc'><<cite>tinkster</cite>> Aren't
rdf:Bag/rdf:Alt/rdf:Seq generally seen as poor cousins of
rdf:List these days?</p>
<p class='irc'><<cite>petef</cite>> I have to leave too,
bye</p>
<p class='irc'><<cite>hhalpin</cite>> 1) No use of
containers in vCard at all</p>
<p class='irc'><<cite>hhalpin</cite>> 2) Using *only*
rdf:List</p>
<p class='irc'><<cite>rreck</cite>> why isnt rdf:bag
enough</p>
<p class='irc'><<cite>tinkster</cite>> If the order of
items is important, use rdf:List, otherwise don't use a
container at all.</p>
<p class='irc'><<cite>hhalpin</cite>> 3) Letting it all
be a free for all.</p>
<p class='phone'>i have to leave this chat now :(</p>
<p class='phone'>i am sorry</p>
<p class='irc'><<cite>hhalpin</cite>> Someone else can
scribe?</p>
<p class='phone'>right i am sorry i am off now, you are less a
scribe now</p>
<p class='phone'>bye all</p>
<p class='irc'><<cite>hhalpin</cite>> is there use for
RDF containers?</p>
<p class='irc'><<cite>hhalpin</cite>> PeterMika: vCard is
99 percent hCard</p>
<p class='irc'><<cite>Norm</cite>> Really? Surely there
are gobs of vcards out there never rendered in HTML at all</p>
<p class='irc'><<cite>hhalpin</cite>> PeterMika: vCard in
RDF is fairly minimal</p>
<p class='irc'><<cite>hhalpin</cite>> PeterMika: Lots of
hCard - between 1-2 billion URLs</p>
<p class='irc'><<cite>hhalpin</cite>> Can you share the
stats on the usage of the attribute?</p>
<p class='irc'><<cite>tinkster</cite>> hhalpin: But 98%
of those 1-2 billion URLs are presumably on a handful of domain
names. Just a few script tweaks could change everything.</p>
<p class='irc'><<cite>hhalpin</cite>> should we merge or
not do data-typring?</p>
<p class='irc'><<cite>hhalpin</cite>> so for complex
structure is the older version better?</p>
<p class='irc'><<cite>hhalpin</cite>> do we need or/want
to substructure?</p>
<p class='irc'><<cite>hhalpin</cite>> I thin Renato had
some concern for the subset that wasn't hCard.</p>
<p class='irc'><<cite>jsalvachua</cite>> sorry i have to
leave now, sorry, see you.</p>
<p class='irc'><<cite>hhalpin</cite>> And there was a big
argument over round-tripping in SWIG a while back...</p>
<p class='irc'><<cite>hhalpin</cite>> timbl: I use this
for modelling my addresses</p>
<p class='irc'><<cite>hhalpin</cite>> timbl: these are
proper vCards</p>
<p class='irc'><<cite>hhalpin</cite>> timbl: but I can
see working with well-defined subset, but would like
round-tripping in this subset</p>
<p class='irc'><<cite>tinkster</cite>> There are some
parts of vCard which are pretty useless.</p>
<p class='irc'><<cite>hhalpin</cite>> timbl: made contact
ontology</p>
<p class='irc'><<cite>hhalpin</cite>> norm: we should
stick faithfully to vCard spec</p>
<p class='irc'><<cite>hhalpin</cite>> Here is some of the
structuring I think:</p>
<p class='irc'><<cite>hhalpin</cite>> <vCard:EMAIL
rdf:parseType="Resource"> <rdf:value> corky@qqqfoo.com
</rdf:value> <rdf:type rdf:resource="<a href=
"http://www.w3.org/2001/vcard-rdf/3.0#internet">http://www.w3.org/2001/vcard-rdf/3.0#internet</a>"/></p>
<p class='irc'><<cite>Norm</cite>> More precisely: I said
that if we claim to model vCard, we should model it. If not, we
shouldn't claim to be modeling it.</p>
<p class='irc'><<cite>hhalpin</cite>> You CAN do that
with the newer hCard</p>
<p class='irc'><<cite>tinkster</cite>> The CLASS property
is useless.</p>
<p class='irc'><<cite>hhalpin</cite>> It's just it's a
bit confusing because we then use v:EMAIL as a subject, not a
predicate</p>
<p class='irc'><<cite>hhalpin</cite>> but we can type
predicates</p>
<p class='irc'><<cite>hhalpin</cite>> this I think leads
to problems with OWL-DL.</p>
<p class='irc'><<cite>tinkster</cite>> MAILER is pretty
useless too.</p>
<p class='irc'><<cite>hhalpin</cite>> But I'm OK with
that.</p>
<p class='irc'><<cite>tinkster</cite>> (And has been
removed in latest drafts.)</p>
<p class='irc'><<cite>timbl</cite>> CLASS was for what
groups it is in?</p>
<p class='irc'><<cite>tinkster</cite>> CLASS has three
allowed values: PRIVATE, CONFIDENTIAL and PUBLIC.</p>
<p class='irc'><<cite>timbl</cite>> You don't need a bifg
process to make a note obsolete, i think -- jsut change the
Status Of This Document.</p>
<p class='irc'><<cite>hhalpin</cite>> no process
issue?</p>
<p class='irc'><<cite>timbl</cite>> no process issue.</p>
<p class='irc'><<cite>hhalpin</cite>> So, then we can
just merge it with Renato's?</p>
<p class='irc'><<cite>hhalpin</cite>> So, no process</p>
<p class='irc'><<cite>hhalpin</cite>> I would like to NOT
have more than one URI for vCard</p>
<p class='irc'><<cite>Norm</cite>> The two are these:</p>
<p class='irc'><<cite>Norm</cite>> <a href=
"http://www.w3.org/TR/vcard-rdf">http://www.w3.org/TR/vcard-rdf</a></p>
<p class='irc'><<cite>Norm</cite>> <a href=
"http://www.w3.org/2006/vcard/ns">http://www.w3.org/2006/vcard/ns</a></p>
<p class='irc'><<cite>hhalpin</cite>> Then I would like
to put the SIMPLE stuff up front in Renato's, and put more
difficult things involving data-structuring and rdf:List
towards the end of the spec</p>
<p class='irc'><<cite>hhalpin</cite>> There's also a
silly difference in capitalization</p>
<p class='irc'><<cite>hhalpin</cite>> I prefer
lower-case</p>
<p class='irc'><<cite>tinkster</cite>> Newer URI comes up
#1 on Google for me, searching "vcard rdf".</p>
<p class='irc'><<cite>tinkster</cite>> (without
quotes)</p>
<p class='irc'><<cite>tinkster</cite>> Norm's
spec==namespace URI.</p>
<p class='irc'><<cite>hhalpin</cite>> I prefer having
spec URI == namespace URI and then use conneg</p>
<p class='irc'><<cite>tinkster</cite>> Rennato's
namespace = <a href=
"http://www.w3.org/2001/vcard-rdf/3.0">http://www.w3.org/2001/vcard-rdf/3.0</a>#</p>
<p class='irc'><<cite>hhalpin</cite>> I mean, one
option</p>
<p class='irc'><<cite>hhalpin</cite>> I mean one option
is that we re-use Renato's URI, then use as the namespace URI
<a href=
"http://www.w3.org/2006/vcard/ns.">http://www.w3.org/2006/vcard/ns.</a></p>
<p class='irc'><<cite>hhalpin</cite>> And if one requests
"text/html" for <a href=
"http://www.w3.org/2006/vcard/ns">http://www.w3.org/2006/vcard/ns</a></p>
<p class='irc'><<cite>tinkster</cite>> +1 to timbl's
suggestion of marking old one as obsolete and recommending
new.</p>
<p class='irc'><<cite>hhalpin</cite>> That's the issue
with TR.</p>
<p class='irc'><<cite>tinkster</cite>> hCard GRDDL
profile <<a href=
"http://www.w3.org/2006/03/hcard%3E">http://www.w3.org/2006/03/hcard></a>
uses 2006 namespace.</p>
<p class='irc'><<cite>hhalpin</cite>> Well, Norm, I think
this is at least part of the community.</p>
<p class='irc'><<cite>Norm</cite>> Fair enough</p>
<p class='irc'><<cite>hhalpin</cite>> What is way forward
here?</p>
<p class='irc'><<cite>tinkster</cite>> +1 to just an
"obsolete" note, as long as it's clear.</p>
<p class='irc'><<cite>timbl</cite>> Proposed
<strong>ACTION:</strong> Harry to check with Renato he is OK
with:</p>
<p class='irc'><<cite>ivan</cite>> action on harry:
<a href=
"http://www.w3.org/TR/vcard-rdf">http://www.w3.org/TR/vcard-rdf</a>
would refer to the new version, there will be a 'previous
version' link to the current one</p>
<p class='irc'><<cite>trackbot</cite>> Sorry, couldn't
find user - on</p>
<p class='irc'><<cite>tinkster</cite>> ACTION hhalpin to
<a href=
"http://www.w3.org/TR/vcard-rdf">http://www.w3.org/TR/vcard-rdf</a>
would refer to the new version, there will be a 'previous
version' link to the current one</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-23
- Http://www.w3.org/TR/vcard-rdf would refer to the new
version, there will be a 'previous version' link to the current
one [on Harry Halpin - due 2009-06-03].</p>
<p class='irc'><<cite>hhalpin</cite>> that works for me
and I think Renato will agree with it.</p>
<p class='irc'><<cite>timbl</cite>> ... <a href=
"http://www.w3.org/TR/vcard-rdf">http://www.w3.org/TR/vcard-rdf</a>
would be kept as the "latest-version" URI, and Reanto's veion
woul dbe linke dfrom the new one as a "previous version".</p>
<p class='irc'><<cite>hhalpin</cite>> I guess the other
question is we keep the "2006" namespace?</p>
<p class='irc'><<cite>hhalpin</cite>> <a href=
"http://www.w3.org/2001/vcard-rdf/3.0">http://www.w3.org/2001/vcard-rdf/3.0</a>#</p>
<p class='irc'><<cite>tinkster</cite>> My vote: keep both
namespaces but only recommend 2006.</p>
<p class='irc'><<cite>timbl</cite>> That is Renato's
namespace URI.</p>
<p class='irc'><<cite>hhalpin</cite>> Ivan: suggests
namespace URIs that tend to use version causes version</p>
<p class='irc'><<cite>hhalpin</cite>> Ivan: So let's use
"2006"</p>
<p class='irc'><<cite>timbl</cite>> I agree that it is
unwise to use a version number in the URI</p>
<p class='irc'><<cite>timbl</cite>> The year has no
semantics</p>
<p class='irc'><<cite>tinkster</cite>> It's based on
vCard 3.0.</p>
<p class='irc'><<cite>hhalpin</cite>> I am also a bit
against years in URIs, but that's a minority opinion.</p>
<p class='irc'><<cite>timbl</cite>> But you can use
/ns/vcard if you want</p>
<p class='irc'><<cite>hhalpin</cite>> Ivan: would prefer
to vCard</p>
<p class='irc'><<cite>hhalpin</cite>> PeterMika: I would
agree with "2006"</p>
<p class='irc'><<cite>timbl</cite>> or /ns/pim/adr</p>
<p class='irc'><<cite>hhalpin</cite>> For the time being
let's use "2006"</p>
<p class='irc'><<cite>tinkster</cite>> Doesn't that just
create yet another URI to include in SPARQL queries, etc?</p>
<p class='irc'><<cite>tinkster</cite>> We already have
one too many.</p>
<p class='irc'><<cite>timbl</cite>> Ok, so keep the same
2006 ns</p>
<p class='irc'><<cite>ivan</cite>> <a href=
"http://www.w3.org/2006/vcard/ns">http://www.w3.org/2006/vcard/ns</a></p>
<p class='irc'><<cite>hhalpin</cite>> RESOLVED: keep
<a href=
"http://www.w3.org/2006/vcard/ns">http://www.w3.org/2006/vcard/ns</a></p>
<p class='irc'><<cite>hhalpin</cite>> The vCard ontology
needs examples. At least one that explains you can attach the
properties to URIs for people, not just cards!</p>
<p class='irc'><<cite>hhalpin</cite>> we need a list of
examples</p>
<p class='irc'><<cite>hhalpin</cite>> from
experience.</p>
<p class='irc'><<cite>hhalpin</cite>> PeterMika:
Transforming hCard into RDF</p>
<p class='irc'><<cite>hhalpin</cite>> PeterMika: vCard
represents both a person and organization</p>
<p class='irc'><<cite>hhalpin</cite>> PeterMika: hCard is
value of organization and fn are the same, the hCard is
actually representing an organization and not a person</p>
<p class='irc'><<cite>timbl</cite>> That is not RDF</p>
<p class='irc'><<cite>hhalpin</cite>> PeterMika: The
equivalent properties determine type of object</p>
<p class='irc'><<cite>timbl</cite>> So the hcrad >
vcard mapping has to do some mapping</p>
<p class='irc'><<cite>hhalpin</cite>> PeterMika: so
address and whatnot can all apply to person</p>
<p class='irc'><<cite>hhalpin</cite>> PeterMika: AND
organization</p>
<p class='irc'><<cite>hhalpin</cite>> PeterMika: Does
person have vCard etc.</p>
<p class='irc'><<cite>hhalpin</cite>> PeterMika: And then
the vCard have an address etc.</p>
<p class='irc'><<cite>hhalpin</cite>> PeterMika: These
are two main points people struggle with</p>
<p class='irc'><<cite>hhalpin</cite>> TimBL: The last one
is the major one.</p>
<p class='irc'><<cite>hhalpin</cite>> TimBL: Are we
modeling a file or person</p>
<p class='irc'><<cite>hhalpin</cite>> PeterMika: The
documentation leads this question open</p>
<p class='irc'><<cite>hhalpin</cite>> I'm noting
unclarity about this is WHY there's no examples :)</p>
<p class='irc'><<cite>hhalpin</cite>> I could not
consensus on this.</p>
<p class='irc'><<cite>timbl</cite>> I agree that one
should moddl the person not the card.</p>
<p class='irc'><<cite>timbl</cite>> Like you model a
book, not a library card.</p>
<p class='irc'><<cite>adam</cite>> yes</p>
<p class='irc'><<cite>hhalpin</cite>> toby: 4.0 includes
a property "kind" that demarcates between people organization
and group</p>
<p class='irc'><<cite>hhalpin</cite>> +1 vCard 4.0</p>
<p class='irc'><<cite>hhalpin</cite>> timbl: which would
be a functional mapping to a RDF class</p>
<p class='irc'><<cite>hhalpin</cite>> toby: individual or
pre-defined group or organization</p>
<p class='irc'><<cite>hhalpin</cite>> toby: also maybe
one for "place"</p>
<p class='irc'><<cite>timbl</cite>> Those shoudl
defintely map to classses.</p>
<p class='irc'><<cite>hhalpin</cite>> how stable is vCard
4.0?</p>
<p class='irc'><<cite>hhalpin</cite>> Should we track
it?</p>
<p class='irc'><<cite>tinkster</cite>> Not especially
stable.</p>
<p class='irc'><<cite>tinkster</cite>> yes, certainly -
should be able to attach these to Person/Organisation URIs.</p>
<p class='irc'><<cite>hhalpin</cite>> ivan: hhalpin said
having the same person with several vCard is an edge-case</p>
<p class='irc'><<cite>hhalpin</cite>> ivan: since I have
two addresses</p>
<p class='irc'><<cite>hhalpin</cite>> ivan: so in my
phone I have two entries for my name</p>
<p class='irc'><<cite>tinkster</cite>> I think vCard 4.0
drafts have ways of representing multiple sets of contact
information in one card.</p>
<p class='irc'><<cite>hhalpin</cite>> I am liking vCard
4.0 :)</p>
<p class='irc'><<cite>tinkster</cite>> e.g. this phone,
this fax and this address are for one set of uses; and this
phone and this address are for another.</p>
<p class='irc'><<cite>tinkster</cite>> I've not really
studied that part of the syntax though.</p>
<p class='irc'><<cite>hhalpin</cite>> timbl: so you'll
miss the fact that these two vCards are not the same in
RDF.</p>
<p class='irc'><<cite>uldis</cite>> a person may have
different vCards which they "give" to people same as one may
have different versions of a business card</p>
<p class='irc'><<cite>hhalpin</cite>> timbl: about the
same person</p>
<p class='irc'><<cite>hhalpin</cite>> timbl: does this
mean ontology is broken/</p>
<p class='irc'><<cite>hhalpin</cite>> ivan: vCard
represents me or my address, I think it represents my
address</p>
<p class='irc'><<cite>hhalpin</cite>> timbl: we do not
walk about what a vCard represents</p>
<p class='irc'><<cite>tinkster</cite>> [ a vcard:Vcard]
vcard:sameOwnerAs [a vcard:Vcard ] .</p>
<p class='irc'><<cite>tinkster</cite>> (No, vCard doesn't
have a sameOwnerAs property, but we could always define such a
term.)</p>
<p class='irc'><<cite>hhalpin</cite>> so we don't drop
the vCard class</p>
<p class='irc'><<cite>hhalpin</cite>> we keep it and keep
domains pretty open-ended</p>
<p class='irc'><<cite>libby</cite>> I think that's
because the spec's a bit ambivalent norm</p>
<p class='irc'><<cite>hhalpin</cite>> but in our examples
we use People and Organizations</p>
<p class='irc'><<cite>hhalpin</cite>> This would make it
clear to users, since most users will just look at examples</p>
<p class='irc'><<cite>hhalpin</cite>> timbl: we should be
default not give it any class.</p>
<p class='irc'><<cite>hhalpin</cite>> should we add this
to the GRDDL and the spec, this weird hCard algorithm?</p>
<p class='irc'><<cite>hhalpin</cite>> to determine people
and organization?</p>
<p class='irc'><<cite>pmika</cite>> if fn=org =>
organization is not possible to express in OWL</p>
<p class='irc'><<cite>hhalpin</cite>> so it should be in
GRDDL?</p>
<p class='irc'><<cite>hhalpin</cite>> Not express it in
OWL, but *mention* it in RDF spec and then implement it in
GRDDL.</p>
<p class='irc'><<cite>pmika</cite>> yes, it has to be in
the hcard-to-rdf conversion</p>
<p class='irc'><<cite>hhalpin</cite>> we should make a
test case here</p>
<p class='irc'><<cite>hhalpin</cite>> org class only has
name and unit.</p>
<p class='irc'><<cite>hhalpin</cite>> PeterMika: So these
properties should be extended to organization class</p>
<p class='irc'><<cite>hhalpin</cite>> PeterMika: ALL
properties can be extended to organization class</p>
<p class='irc'><<cite>hhalpin</cite>> PeterMika: for
example, "adr". Strictly, in vCard people have addresses,not
organizations, but people use addresses directly on
organizations in hCard.</p>
<p class='irc'><<cite>tinkster</cite>>
contact:SocialEntity ~= foaf:Agent.</p>
<p class='irc'><<cite>tinkster</cite>> orgname,
orgunit</p>
<p class='irc'><<cite>tinkster</cite>> orgunit can be
repeated.</p>
<p class='irc'><<cite>tinkster</cite>> [ a v:vCard ; v:fn
"Tim Berners-Lee" ; v:org [ a v:Organization ;
v:organization-name "MIT" ; v:organization-unit "CISAL" ] ]</p>
<p class='irc'><<cite>tinkster</cite>> is how it
currently works.</p>
<p class='irc'><<cite>hhalpin</cite>> OK, am a bit
confused.</p>
<p class='irc'><<cite>tinkster</cite>> Organisations are
messy in vCard RDF because they're messy in vCard.</p>
<p class='irc'><<cite>timbl</cite>> org MIT unit CSAIL
means memberOf [ a Unit; name "CSAIL"; partOf [ a Org; name
"MIT"]]</p>
<p class='irc'><<cite>tinkster</cite>> There are
organisation properties which "hang off" people, plus the
convention of fn==org whih means that the entire vCard
represents an organisation.</p>
<p class='irc'><<cite>hhalpin</cite>> PeterMika: allow
both, have examples for both cases</p>
<p class='irc'><<cite>timbl</cite>> org MIT means
memberOf [ a Org; name "MIT"]</p>
<p class='irc'><<cite>hhalpin</cite>> PeterMika: show an
organization where the unit is not used, just give it name and
some other properties.</p>
<p class='irc'><<cite>hhalpin</cite>> PeterMika: A case
where the vCard is using to describe an organization</p>
<p class='irc'><<cite>tinkster</cite>> FOAF's model for
people, orgs, membership is a lot more sensible.</p>
<p class='irc'><<cite>hhalpin</cite>> TimBL: You need to
spot these patterns</p>
<p class='irc'><<cite>hhalpin</cite>> PeterMika: Yes, you
need to do that in transform.</p>
<p class='irc'><<cite>hhalpin</cite>> Perhaps we can add
that to GRDDL.</p>
<p class='irc'><<cite>tinkster</cite>> foaf:member</p>
<p class='irc'><<cite>hhalpin</cite>> Norm?</p>
<p class='irc'><<cite>timbl</cite>> Has FOAF got org is
part of biggerOrg?</p>
<p class='irc'><<cite>hhalpin</cite>> skos:widerThan
:)</p>
<p class='irc'><<cite>tinkster</cite>> no, but dublin
core has "hasPart/isPartOf"</p>
<p class='irc'><<cite>libby</cite>> foaf:Organization</p>
<p class='irc'><<cite>timbl</cite>> I wonder whether a
gorup is a SocialEntity</p>
<p class='irc'><<cite>libby</cite>> don;t see any
properties tho</p>
<p class='irc'><<cite>AlexPassant</cite>> <a href=
"http://xmlns.com/foaf/spec/#term_Organization">http://xmlns.com/foaf/spec/#term_Organization</a></p>
<p class='irc'><<cite>libby</cite>> "This is a more
'solid' class than foaf:Group, which allows for more ad-hoc
collections of individuals. These terms, like the corresponding
natural language concepts, have some overlap, but different
emphasis. "</p>
<p class='irc'><<cite>hhalpin</cite>> ok</p>
<p class='irc'><<cite>libby</cite>> not sure if there's
any formal subclassing</p>
<p class='irc'><<cite>libby</cite>> probaby not</p>
<p class='irc'><<cite>timbl</cite>> Maybe socialEntity
should be explicitly allowed to incldeu a group.</p>
<p class='irc'><<cite>libby</cite>> of group, that is</p>
<p class='irc'><<cite>AlexPassant</cite>> may be used
together with foaf:member ? (":csail foaf:member :mit")</p>
<p class='irc'><<cite>libby</cite>> not very clear</p>
<p class='irc'><<cite>tinkster</cite>> AlexPassant: not
sure of :csail foaf:member :mit.</p>
<p class='irc'><<cite>timbl</cite>> Good Q Alex</p>
<p class='irc'><<cite>uldis</cite>> re. earlier mention
of SIOC - for representing organisations FOAF would be more
appropriate that SIOC</p>
<p class='irc'><<cite>pmika</cite>> there is no
equivalent of organization-unit in FOAF and I would not be in
favor of bringing in a single FOAF class into the VCard
spec</p>
<p class='irc'><<cite>tinkster</cite>> :microsoft
foaf:member :w3c .</p>
<p class='irc'><<cite>timbl</cite>> FAOF more appropraite
thatn SIOC?</p>
<p class='irc'><<cite>hhalpin</cite>> Re FOAF and VCard,
I think we first fix vCard RDF spec, because that's relatively
easy, and then see what the future of FOAF is in the next
telecon.</p>
<p class='irc'><<cite>libby</cite>> sounds good</p>
<p class='irc'><<cite>AlexPassant</cite>> previous thread
on foaf:Group / foaf:Organisation <a href=
"http://lists.foaf-project.org/pipermail/foaf-dev/2007-January/008396.html">
http://lists.foaf-project.org/pipermail/foaf-dev/2007-January/008396.html</a></p>
<p class='irc'><<cite>Norm</cite>> Good luck to all! See
you on the next telcon</p>
<p class='irc'><<cite>ivan</cite>> thanks to norm</p>
<p class='irc'><<cite>libby</cite>> cheers
AlexPassant</p>
<p class='irc'><<cite>libby</cite>> did you get a
response? doesn't look like it AlexPassant</p>
<p class='irc'><<cite>libby</cite>> perhaps bump the
thread?</p>
<p class='irc'><<cite>AlexPassant</cite>> libby:
unfortunately, no answer - I sent a similar one a year later
but no answer as well</p>
<p class='irc'><<cite>hhalpin</cite>> republish it for
next week?</p>
<p class='irc'><<cite>hhalpin</cite>> Formal note, it's
an IG note, not a SWXG note.</p>
<p class='irc'><<cite>hhalpin</cite>> XGs can't do Notes
even :)e</p>
<p class='irc'><<cite>hhalpin</cite>> send us
examples</p>
<p class='irc'><<cite>hhalpin</cite>> PeterMika will
examples.</p>
<p class='irc'><<cite>hhalpin</cite>> Meeting
adjourned</p>
<h2><a name="ActionSummary" id="ActionSummary">Summary of Action
Items</a></h2><!-- Action Items -->
<strong>[NEW]</strong> <strong>ACTION:</strong> adam to find a
good final report template and port it to the wiki [recorded in
<a href=
"http://www.w3.org/2009/05/27-swxg-minutes.html#action04">http://www.w3.org/2009/05/27-swxg-minutes.html#action04</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> AlexPassant to
see about SIOC liason [recorded in <a href=
"http://www.w3.org/2009/05/27-swxg-minutes.html#action01">http://www.w3.org/2009/05/27-swxg-minutes.html#action01</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> cperey to add
mobile companies to to Invited Guests and to brainstorm what
exact questions or topics would be most interesting [recorded in
<a href=
"http://www.w3.org/2009/05/27-swxg-minutes.html#action06">http://www.w3.org/2009/05/27-swxg-minutes.html#action06</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> cperey to make
list of top 30 to do profiles on, to merge with hhalpin's list on
alexa [recorded in <a href=
"http://www.w3.org/2009/05/27-swxg-minutes.html#action10">http://www.w3.org/2009/05/27-swxg-minutes.html#action10</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> hhalpin to
retrieve top X social networking sites from the top 500 sites of
Alexa [recorded in <a href=
"http://www.w3.org/2009/05/27-swxg-minutes.html#action09">http://www.w3.org/2009/05/27-swxg-minutes.html#action09</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> karl to create
the matix to be filled [recorded in <a href=
"http://www.w3.org/2009/05/27-swxg-minutes.html#action07">http://www.w3.org/2009/05/27-swxg-minutes.html#action07</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> tinkster to draft
wiki pages for task forces [recorded in <a href=
"http://www.w3.org/2009/05/27-swxg-minutes.html#action05">http://www.w3.org/2009/05/27-swxg-minutes.html#action05</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> To retrieve top X
social networking sites from the top 500 sites of Alexa [recorded
in <a href=
"http://www.w3.org/2009/05/27-swxg-minutes.html#action08">http://www.w3.org/2009/05/27-swxg-minutes.html#action08</a>]<br />
<br />
<strong>[CONTINUES]</strong> <strong>ACTION:</strong>danbri to find someone from Opera to talk Widgets<br />
<br />
<strong>[DONE]</strong> <strong>ACTION:</strong> danbri sketch a
5 line template for interaction with other groups (cf
InvitedExperts, DiscussionTopics) [recorded in <a href=
"http://www.w3.org/2009/05/27-swxg-minutes.html#action02">http://www.w3.org/2009/05/27-swxg-minutes.html#action02</a>]<br />
<strong>[DONE]</strong> <strong>ACTION:</strong> karl to produce
a template for TF deliverables. [recorded in <a href=
"http://www.w3.org/2009/05/27-swxg-minutes.html#action03">http://www.w3.org/2009/05/27-swxg-minutes.html#action03</a>]<br />
<strong>[DONE]</strong> <strong>ACTION:</strong> AlexPassant to create a liasons list on the Wiki and list himself for SPARQL.<br />
<strong>[DONE]</strong> <strong>ACTION:</strong> hhalpin and danbri to invite guest speakers and investigate their schedule. <br />
<strong>[DONE]</strong> <strong>ACTION:</strong>danbri to document throwaway IDs on Wiki <br />
<strong>[DONE]</strong> <strong>ACTION:</strong>oshani to document takedowns as a user story <br />
<br />
[End of minutes]<br />
<hr />
<address>
Minutes formatted by David Booth's <a href=
"http://dev.w3.org/cvsweb/~checkout~/2002/scribe/scribedoc.htm">
scribe.perl</a> version 1.135 (<a href=
"http://dev.w3.org/cvsweb/2002/scribe/">CVS log</a>)<br />
$Date: 2009/05/27 16:34:14 $
</address>
</body>
</html>