02-swxg-minutes.html
55.4 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
<!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 -- 02 Dec
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>- DRAFT -</h1>
<h1>Social Web Incubator Group Teleconference</h1>
<h2>02 Dec 2009</h2>
<p>See also: <a href="http://www.w3.org/2009/12/02-swxg-irc">IRC
log</a></p>
<h2><a name="attendees" id="attendees">Attendees</a></h2>
<div class="intro">
<dl>
<dt>Present</dt>
<dd>+39.011.228.aaaa, +049172247aabb, hhalpin,
+1.774.811.aacc, +1.781.273.aadd, claudio, MacTed,
+7.970.94.aaff, rreck, AlexPassant, tpa</dd>
<dt>Regrets</dt>
<dt>Chair</dt>
<dd>hhalpin</dd>
<dt>Scribe</dt>
<dd>AlexPassant</dd>
</dl>
</div>
<h2>Contents</h2>
<ul>
<li>
<a href="#agenda">Topics</a>
<ol>
<li><a href="#item01">Convene SWXG WG meeting of
2009-12-02T16:00-17:00GMT</a></li>
<li><a href="#item02">User Stories</a></li>
<li><a href="#item03">For Final Report</a></li>
<li><a href="#item04">Invited Guest Invitations</a></li>
<li><a href="#item05">Chris Messina on
ActivityStreams</a></li>
</ol>
</li>
<li><a href="#ActionSummary">Summary of Action Items</a></li>
</ul>
<hr />
<div class="meeting">
<p class='phone'> </p>
<p class='phone'> </p>
<p class='irc'><<cite>trackbot</cite>> Date: 02 December
2009</p>
<p class='phone'>zakim where are u :-) ?</p>
<p class='irc'><<cite>yoshiaki</cite>> 7994 might be
mine, yoshiaki</p>
<h3 id="item01">Convene SWXG WG meeting of
2009-12-02T16:00-17:00GMT</h3>
<p class='irc'><<cite>rreck</cite>> not that i want to,
but i cant scribe</p>
<p class='irc'><<cite>MacTed</cite>> I could easily be
the worst scribe ever</p>
<p class='irc'><<cite>rreck</cite>> i thought its me</p>
<p class='irc'><<cite>rreck</cite>> pchampin: it might be
you</p>
<p class='phone'>ok i will</p>
<p class='irc'><<cite>hhalpin</cite>> scribe:
AlexPassant</p>
<p class='irc'><<cite>hhalpin</cite>> scribenick:
AlexPassant</p>
<p class='irc'><<cite>hhalpin</cite>> PROPOSED: to
approve SWXG WG Weekly -- 25th November 2009 as a true
record</p>
<p class='irc'><<cite>hhalpin</cite>> <a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html">http://www.w3.org/2009/11/25-swxg-minutes.html</a></p>
<p class='phone'><cite>hhalpin:</cite> minutes of last week</p>
<p class='irc'><<cite>rreck</cite>> pchampin: yeah its
you</p>
<p class='irc'><<cite>hhalpin</cite>> RESOLVED: approved
SWXG WG Weekly -- 25th November 2009 as a true record</p>
<p class='phone'><cite>hhalpin:</cite> no objections</p>
<p class='irc'><<cite>hhalpin</cite>> PROPOSED: to meet
again Wed. Decemeber 9th</p>
<p class='phone'><cite>hhalpin:</cite> next week</p>
<p class='irc'><<cite>hhalpin</cite>> FOAF and FOAF+SSL
and RDF for data integration over social nets...</p>
<p class='irc'><<cite>hhalpin</cite>> DanBri, can you
make next week/</p>
<p class='phone'><cite>hhalpin:</cite> FOAF and FOAF+SSL and
RDF for data integration on the Social Web</p>
<p class='irc'><<cite>hhalpin</cite>> Henry Story?</p>
<p class='irc'><<cite>bblfish</cite>> just a sec</p>
<p class='phone'><cite>hhalpin:</cite> will talk about FOAF
Updating coordination<br />
... ideally with portable contacts</p>
<h3 id="item02">User Stories</h3>
<p class='irc'><<cite>Adam</cite>> +1 Alex</p>
<p class='irc'><<cite>hhalpin</cite>> Tim?</p>
<p class='phone'><cite>hhalpin:</cite> user stories</p>
<p class='phone'><cite>tpa:</cite> Progress on user stories</p>
<p class='irc'><<cite>tpa</cite>> <a href=
"http://www.w3.org/2005/Incubator/socialweb/wiki/RequirementsAndUseCases-WorkArea">
http://www.w3.org/2005/Incubator/socialweb/wiki/RequirementsAndUseCases-WorkArea</a></p>
<p class='irc'><<cite>hhalpin</cite>> very nice!</p>
<p class='phone'><cite>tpa:</cite> changed the order of
stories<br />
... structure of the document</p>
<p class='irc'><<cite>bblfish</cite>> which user am
I?</p>
<p class='phone'><cite>tpa:</cite> business model angle<br />
... corporate contect (e.g. soc net in large compagny)<br />
... featureS: linking people annotating, consuming<br />
... structured in 10 parts, from an end-user perspective<br />
... try to get a comprehensive view of the field</p>
<p class='irc'><<cite>hhalpin</cite>> +1 on presence
management</p>
<p class='irc'><<cite>MacTed</cite>> *great* UseCases
revision.</p>
<p class='phone'><cite>tpa:</cite> lots of changes in a
week</p>
<p class='irc'><<cite>hhalpin</cite>> *Very* good
work.</p>
<p class='irc'><<cite>cperey</cite>> zakim
+1.617.848.aajj is me</p>
<p class='phone'><cite>tpa:</cite> help needed on some user
stories<br />
... to get them filled<br />
... better direction for the document</p>
<p class='irc'><<cite>hhalpin</cite>> ack ??P26</p>
<p class='phone'>no</p>
<p class='phone'>I just handed up for zakim</p>
<p class='irc'><<cite>cperey</cite>> +q</p>
<p class='irc'><<cite>hhalpin</cite>> <a href=
"http://www.w3.org/2005/Incubator/socialweb/weekly-agenda.html">
http://www.w3.org/2005/Incubator/socialweb/weekly-agenda.html</a></p>
<p class='irc'><<cite>hhalpin</cite>> Are these no longer
relevant?</p>
<p class='irc'><<cite>hhalpin</cite>> Happy to kill
them...</p>
<p class='phone'><cite>hhalpin:</cite> what about actions on
the weekly agenda<br />
... are they still required ?</p>
<p class='irc'><<cite>hhalpin</cite>> Do you want me to
tell me which ones are still relevant?</p>
<p class='phone'><cite>tpa:</cite> some of them might be still
needed, some not<br />
... have to go through</p>
<p class='irc'><<cite>cperey</cite>> you can close my
action on business narrative from last week</p>
<p class='phone'><cite>hhalpin:</cite> can drop the older
ones</p>
<p class='phone'><cite>tpa:</cite> corporate story still valid
(adam)</p>
<p class='irc'><<cite>Adam</cite>> i am</p>
<p class='phone'><cite>tpa:</cite> business - done</p><a name=
"action01" id="action01"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[DONE]</strong> cperey to take
business narrative [recorded in <a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html#action01">http://www.w3.org/2009/12/02-swxg-minutes.html#action01</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Sorry, couldn't
find user - <strong>[DONE]</strong></p>
<p class='irc'><<cite>danbri</cite>> re API/widget
discussion, I met with Robin Berjon briefly last week, he's
keen to come talk w/ us re DAP WG and related</p>
<p class='irc'><<cite>hhalpin</cite>> ACTION
<strong>[DONE]</strong>: cperey to take business narrative</p>
<p class='irc'><<cite>trackbot</cite>> Sorry, couldn't
find user - <strong>[DONE]</strong></p><a name="action02" id=
"action02"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[DONE]</strong> cperey to take
business narrative [recorded in <a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html#action02">http://www.w3.org/2009/12/02-swxg-minutes.html#action02</a>]</p>
<p class='phone'><cite>tpa:</cite> let people listed on the old
ones to decide themselves</p><a name="action03" id=
"action03"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[CONTINUES]</strong> adam to
take on corporate story [recorded in <a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html#action03">http://www.w3.org/2009/12/02-swxg-minutes.html#action03</a>]</p>
<p class='irc'><<cite>rreck</cite>> pchampin: thanks</p>
<p class='phone'><cite>tpa:</cite> some are still usable and
needed</p><a name="action04" id="action04"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[DONE]</strong> (2 weeks) adam
to write up the boeing use case for enterprise social networks
[recorded in <a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html#action04">http://www.w3.org/2009/12/02-swxg-minutes.html#action04</a>]</p>
<p class='phone'><cite>tpa:</cite> use cases moved to section 4
(third party)<br />
... including APIs<br />
... mostly tries to do a mapping</p>
<p class='irc'><<cite>cperey</cite>> +q</p>
<p class='phone'><cite>tpa:</cite> some ended up in multiple
categories</p>
<p class='phone'><cite>cperey:</cite> fill-in description for
each of them<br />
... went through the all section, feedback required</p><a name=
"action05" id="action05"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[CONTINUES]</strong> rreck to
flesh out anonymous usecase connecting to multiple identies and
null provenance (rreck) [recorded in <a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html#action05">http://www.w3.org/2009/12/02-swxg-minutes.html#action05</a>]</p>
<p class='phone'><cite>cperey:</cite> is that a sufficient
level of detail at this time ?<br />
... or is that too much ?<br />
... needs review on the first section</p><a name="action06" id=
"action06"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[CONTINUES]</strong> oshani to
reframe the geolocation/intent/portability (2 weeks) [recorded
in <a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html#action06">http://www.w3.org/2009/12/02-swxg-minutes.html#action06</a>]</p>
<p class='phone'><cite>cperey:</cite> as it will drive the rest
of the work<br />
... sectino on business models</p><a name="action07" id=
"action07"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[CONTINUES]</strong> bblfish
to relabel data protection use case to be about controlled
access and takedown to data "about" you (2 weeks) [recorded in
<a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html#action07">http://www.w3.org/2009/12/02-swxg-minutes.html#action07</a>]</p>
<p class='phone'><cite>cperey:</cite> is this the right place
for this content ?<br />
... not sure that it needs to be there<br />
... out of scope ?</p><a name="action08" id="action08"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[CONTINUES]</strong> bblfish
to merge Family and Group access usecases (2 weeks) [recorded
in <a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html#action08">http://www.w3.org/2009/12/02-swxg-minutes.html#action08</a>]</p>
<p class='phone'><cite>cperey:</cite> economic / revenue
belongs to this document ?<br />
... business models seems odd where it is at the
moment</p><a name="action09" id="action09"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> (2 weeks) hhalpin explain to henry and
oshani doc editing process for usecases (2 weeks) [recorded in
<a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html#action09">http://www.w3.org/2009/12/02-swxg-minutes.html#action09</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Sorry, couldn't
find user - (2</p><a name="action10" id="action10"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[CONTINUES]</strong> (2 weeks)
hhalpin explain to henry and oshani doc editing process for
usecases (2 weeks) [recorded in <a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html#action10">http://www.w3.org/2009/12/02-swxg-minutes.html#action10</a>]</p>
<p class='phone'><cite>tpa:</cite> template at the top of the
catalogue<br />
... need description of corporate context and developer
views<br />
... tags to each story would make sense<br />
... but bery good description</p>
<p class='phone'><cite>cperey:</cite> tpa can you do tags<br />
... to avoid heterogeneity</p><a name="action11" id=
"action11"></a>
<p class='irc'><<cite>tpa</cite>>
<strong>ACTION:</strong> tanglade to tag existing stories
[recorded in <a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html#action11">http://www.w3.org/2009/12/02-swxg-minutes.html#action11</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-114
- Tag existing stories [on Tim Anglade - due 2009-12-09].</p>
<p class='phone'><cite>cperey:</cite> better consistency if
only one / 2 people to the tags<br />
... be consistent with the tags</p>
<p class='phone'><cite>tpa:</cite> original doc was called
reuirements and use-cases<br />
... business part is more about requirements<br />
... nice illustration of the user stories<br />
... included some way in the final report<br />
... as it matters , on a bigger extent<br />
... site X uses this block and that one<br />
... get a complete catalogue</p>
<h3 id="item03">For Final Report</h3>
<p class='phone'><cite>tpa:</cite> nice illustration</p>
<p class='phone'><cite>hhalpin:</cite> buiness X wants to
Y<br />
... what are the requirements<br />
... necessary for business but not for users<br />
... more an argumentative / narrative</p>
<p class='irc'><<cite>rreck</cite>> you are dropping out
hhalpin</p>
<p class='irc'><<cite>rreck</cite>> i can</p>
<p class='irc'><<cite>rreck</cite>> maybe it was just
me</p>
<p class='irc'><<cite>hhalpin</cite>> This definitely
needs some manpower, but keeping it short and sweet is
great.</p>
<p class='phone'><cite>tpa:</cite> some are very
straightforward stories</p>
<p class='irc'><<cite>hhalpin</cite>> ?</p>
<p class='irc'><<cite>Adam</cite>> yeah, i will have more
time coming up</p>
<p class='phone'><cite>tpa:</cite> will work on it</p>
<p class='irc'><<cite>melvster</cite>> ill put some time
in ...</p>
<p class='phone'><cite>tpa:</cite> like to get most of the
stories filled by next week<br />
... then can concentrate on the narrative, tagging</p>
<p class='irc'><<cite>hhalpin</cite>> I'll give it a good
review over Christmas...#</p>
<p class='phone'><cite>tpa:</cite> needs one or 2 people</p>
<h3 id="item04">Invited Guest Invitations</h3>
<p class='irc'><<cite>bblfish</cite>> hi</p>
<p class='phone'><cite>hhalpin:</cite> invited guest agenda</p>
<p class='phone'><cite>danbri:</cite> updted on the
widgets</p><a name="action12" id="action12"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[CONTINUES]</strong> danbri to
find someone from Opera to talk Widgets (2 weeks) [recorded in
<a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html#action12">http://www.w3.org/2009/12/02-swxg-minutes.html#action12</a>]</p><a name="action13"
id="action13"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[CONTINUES]</strong> hhalpin
to try to get TimBL to either talk or write-up his use-cases
[recorded in <a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html#action13">http://www.w3.org/2009/12/02-swxg-minutes.html#action13</a>]</p>
<h3 id="item05">Chris Messina on ActivityStreams</h3>
<p class='phone'><cite>hhalpin:</cite> invited speaker</p>
<p class='irc'><<cite>chrismessina</cite>> morning
all</p>
<p class='phone'><cite>hhalpin:</cite> Chris Messina on
Activity Streams</p>
<p class='irc'><<cite>mischat</cite>> I will be able to
time and effort into this tpa hhalpin</p>
<p class='irc'><<cite>danbri</cite>> action danbri set up
a *oodle thing to pick a date for widget/apis telecon</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-115
- Set up a *oodle thing to pick a date for widget/apis telecon
[on Dan Brickley - due 2009-12-09].</p>
<p class='phone'><cite>hhalpin:</cite> forwarded links about a
week ago<br />
... let Chris introduce himself<br />
... DISO, etc</p>
<p class='irc'><<cite>hhalpin</cite>> <a href=
"http://activitystrea.ms/">http://activitystrea.ms/</a></p>
<p class='irc'><<cite>hhalpin</cite>> <a href=
"http://diso-project.org/">http://diso-project.org/</a></p>
<p class='phone'><cite>chrismessina:</cite> interest in social
web, communities<br />
... for the last 5 yeasrs</p>
<p class='irc'><<cite>hhalpin</cite>> <a href=
"http://factoryjoe.com/blog/2008/12/20/where-were-going-with-activity-streams/">
http://factoryjoe.com/blog/2008/12/20/where-were-going-with-activity-streams/</a></p>
<p class='phone'><cite>chrismessina:</cite> worked on firefox
marketing</p>
<p class='irc'><<cite>hhalpin</cite>> <a href=
"http://factoryjoe.com/blog">http://factoryjoe.com/blog</a></p>
<p class='phone'><cite>chrismessina:</cite> introduction to the
power of social web / open source<br />
... what a community was like<br />
... started on Flock<br />
... open source architect</p>
<p class='irc'><<cite>hhalpin</cite>> Links to most the
projects are here:</p>
<p class='irc'><<cite>hhalpin</cite>> <a href=
"http://factoryjoe.com/blog/projects/">http://factoryjoe.com/blog/projects/</a></p>
<p class='phone'><cite>chrismessina:</cite> fundamental vision:
browsers are for a web of documents, not for a web of
people<br />
... make easier to enable interactions<br />
... link all the social networks that one's part of<br />
... time before google acq. youtube, etc.<br />
... browser as the natural place to list people and friends</p>
<p class='irc'><<cite>hhalpin</cite>> a browser for
myspace :)</p>
<p class='phone'><cite>chrismessina:</cite> left when the
browser idea changed<br />
... microformats community<br />
... let browsers support microformats<br />
... involved in the openid community</p>
<p class='irc'><<cite>hhalpin</cite>> +1 flocks very
useful when we in W3C were looking at microformats and RDF with
GRDDL...</p>
<p class='phone'><cite>chrismessina:</cite> get oauth off the
ground<br />
... openid board member<br />
... 2 years term<br />
... involvement in the activity streams project</p>
<p class='irc'><<cite>danbri</cite>> <a href=
"http://activitystrea.ms/">http://activitystrea.ms/</a></p>
<p class='phone'><cite>chrismessina:</cite> DISO project<br />
... ... opensocial was not open nor social<br />
... needded for open social network<br />
... DISO came a framework for such Open SocNet<br />
... will hopefully provide interoperrability building blocks
for the social web</p>
<p class='irc'><<cite>hhalpin</cite>> ActivityStream
Generator for Opera: <a href=
"http://dev.opera.com/libraries/activitystream/">http://dev.opera.com/libraries/activitystream/</a></p>
<p class='phone'><cite>chrismessina:</cite> activitystreams
started when seeing all streams, feeds, etc. on the web<br />
... RSS and Atom as the data input to build the streams<br />
... rich stream / how to understand it<br />
... need more experssive formats than RSS / Atom<br />
... researched what kind of activities / verbs were used<br />
... extension to the Atom format<br />
... transfor AtomXML to a JSON representation to be used in
opensocial<br />
... next opensocial version - much richers</p>
<p class='irc'><<cite>danbri</cite>> -> eg <a href=
"http://groups.google.com/group/activity-streams/browse_thread/thread/16c570492e74afa5">
http://groups.google.com/group/activity-streams/browse_thread/thread/16c570492e74afa5</a></p>
<p class='phone'><cite>chrismessina:</cite> aggregating,
filtering, merging, ...<br />
... activities from several sources<br />
... move opensocial activity streams<br />
... verb URIs, JSON representation<br />
... compatibility between different initiatives<br />
... myspace is using it</p>
<p class='irc'><<cite>Zakim</cite>> danbri, you wanted to
ask re atom/json design</p>
<p class='irc'><<cite>chrismessina</cite>> <a href=
"http://feedproxy.cliqset.com/">http://feedproxy.cliqset.com/</a></p>
<p class='phone'><cite>danbri:</cite> issues coming up to have
a JSON design<br />
... noticed similar things on portablecontacts<br />
... merging practices ?<br />
... particular JSON / XML expressions</p>
<p class='phone'><cite>chrismessina:</cite> not a dev. but
understands (UI and design background)<br />
... yet, biggest issue is to get the XML schema to JSON</p>
<p class='irc'><<cite>bblfish</cite>> yes!</p>
<p class='irc'><<cite>hhalpin</cite>> JSON issues with
namespaces...</p>
<p class='phone'><cite>chrismessina:</cite> does not deal with
namespaces properly</p>
<p class='irc'><<cite>hhalpin</cite>> This is a very
interesting blog post:</p>
<p class='irc'><<cite>hhalpin</cite>> <a href=
"http://factoryjoe.com/blog/2009/11/16/the-death-of-the-url/">http://factoryjoe.com/blog/2009/11/16/the-death-of-the-url/</a></p>
<p class='irc'><<cite>hhalpin</cite>> Death of the
URL</p>
<p class='phone'><cite>chrismessina:</cite> specifying
expressive JSON activity stream API in opensocial<br />
... not worrying to much on extensions</p>
<p class='irc'><<cite>bblfish</cite>> that's the main
problem with JSON: <a href=
"http://blogs.sun.com/bblfish/entry/the_limitations_of_json">http://blogs.sun.com/bblfish/entry/the_limitations_of_json</a></p>
<p class='phone'><cite>chrismessina:</cite> issues also heard
from the PortableContact people<br />
... some efforts needed<br />
... 2 important things</p>
<p class='irc'><<cite>bblfish</cite>> what is needed is a
JSON rdf format</p>
<p class='irc'><<cite>hhalpin</cite>> in RDF scene,
there's still (hopefully) work done mapping RDF over to JSON is
some standardized way...</p>
<p class='phone'><cite>chrismessina:</cite> straughtforward way
of expressing the activity mode<br />
... + schema for expressing these things<br />
... use the same URI to identify the different verbs</p>
<p class='irc'><<cite>hhalpin</cite>> verb
proliferation....</p>
<p class='irc'><<cite>rreck</cite>> sounds like you could
use a verb taxonomy</p>
<p class='irc'><<cite>hhalpin</cite>> Sounds like the
owl:sameAs problem...</p>
<p class='phone'><a href=
"http://milanstankovic.org/opo-actions/specs/2009/OPO-Actions-20090501/">
http://milanstankovic.org/opo-actions/specs/2009/OPO-Actions-20090501/</a>
also related to the topic</p>
<p class='irc'><<cite>rreck</cite>> i would look at
wordnet, and at Levin's verb book</p>
<p class='irc'><<cite>danbri</cite>> I liked <a href=
"http://groups.google.com/group/activity-streams/msg/3ecd9a340dbc730c">
http://groups.google.com/group/activity-streams/msg/3ecd9a340dbc730c</a></p>
<p class='phone'><cite>scribe:</cite> use the same terminology
(challenge) but gives opportunity</p>
<p class='irc'><<cite>danbri</cite>> "As long as proper
research and documentation is done, anyone can implement
whatever verbs they want to; that's why they're URIs! "</p>
<p class='irc'><<cite>rreck</cite>> Levin's verb
categories are in the public</p>
<p class='irc'><<cite>rreck</cite>> has he heard of
Levin's verbs?</p>
<p class='phone'><cite>rreck:</cite> any reference for that
?</p>
<p class='irc'><<cite>rreck</cite>> yes one second</p>
<p class='phone'><cite>hhalpin:</cite> high adoption</p>
<p class='irc'><<cite>hhalpin</cite>> subject-verb-object
model</p>
<p class='phone'><cite>hhalpin:</cite> and rapid one</p>
<p class='irc'><<cite>hhalpin</cite>> to me, very similar
to RDF.</p>
<p class='irc'><<cite>hhalpin</cite>> yet because's
Atom.</p>
<p class='irc'><<cite>rreck</cite>> Levin verb index
-> <a href=
"http://www-personal.umich.edu/~jlawler/levin.html">http://www-personal.umich.edu/~jlawler/levin.html</a></p>
<p class='phone'><cite>hhalpin:</cite> make think of RDF
modeling (in terms of subjct-verb-object</p>
<p class='irc'><<cite>rreck</cite>> they are linked to
the table of contents which "someone" needs to type in</p>
<p class='phone'><cite>hhalpin:</cite> any relationship between
activity streams and RDF ?</p>
<p class='irc'><<cite>hhalpin</cite>> <a href=
"http://martin.atkins.me.uk/specs/activitystreams/activityschema">
http://martin.atkins.me.uk/specs/activitystreams/activityschema</a></p>
<p class='phone'><cite>hhalpin:</cite> activity schema</p>
<p class='phone'>thanks rreck</p>
<p class='irc'><<cite>rreck</cite>> i have typed that TOC
in</p>
<p class='irc'><<cite>danbri</cite>> schema ->
<a href="http://martin.atkins.me.uk/specs/activitystreams/activityschema">
http://martin.atkins.me.uk/specs/activitystreams/activityschema</a></p>
<p class='phone'><cite>scribe:</cite> how do we keep track when
adding more verbs</p>
<p class='irc'><<cite>chrismessina</cite>> <a href=
"http://wiki.activitystrea.ms/Process">http://wiki.activitystrea.ms/Process</a></p>
<p class='irc'><<cite>rreck</cite>> +q</p>
<p class='irc'><<cite>bblfish</cite>> +q</p>
<p class='phone'><cite>chrismessina:</cite> bridge efforts
between different groups</p>
<p class='irc'><<cite>hhalpin</cite>> I admit I was
surprised to see the adoption was so rapid, given the data
model seems very similar to RDF.</p>
<p class='phone'><cite>chrismessina:</cite> different names to
describe things</p>
<p class='irc'><<cite>hhalpin</cite>> Which has had
historical issues with rapid adoption :)</p>
<p class='phone'><cite>chrismessina:</cite> more likely to go
and implement their own version</p>
<p class='irc'><<cite>bblfish</cite>> on Atom and RDF,
there is the Atom OWL ontology: <a href=
"http://bblfish.net/work/atom-owl/2006-06-06/AtomOwl.html">http://bblfish.net/work/atom-owl/2006-06-06/AtomOwl.html</a></p>
<p class='phone'><cite>chrismessina:</cite> looked at the
patterns<br />
... extracted best practices</p>
<p class='irc'><<cite>bblfish</cite>> so it should be
easy to add activity streams to the transform</p>
<p class='phone'><cite>chrismessina:</cite> turneed into a
solution that everyone can adopt with minimal effort</p>
<p class='irc'><<cite>hhalpin</cite>> everyone was
already using Atom feeds...</p>
<p class='irc'><<cite>hhalpin</cite>> Hmm...looks like a
GRDDL for ActivityStreams could be in order.</p>
<p class='phone'><cite>chrismessina:</cite> friendfeed.
facebook parse the feeds in a very specific way<br />
... location service sharing<br />
... goal was to look at what feeds publisher are doing<br />
... what the actor / object are<br />
... challenge: what the verb is<br />
... update the feeds in a non-introsive way<br />
... 10/15 minutes to get a feed<br />
... if already publishing atom<br />
... alignement is as lightweight as possible<br />
... more pragmatic that data purist<br />
... anyone that adapt the format is able to showcase the feed
better than any competitor<br />
... market place with a desire to solve that problem<br />
... e.g. myspace wants to get activities from different
sources<br />
... plaxo, etc. all duplicating the work<br />
... opportunity for standardization<br />
... same as with openid<br />
... relationship to the RDF triples<br />
... in general the triple approach is very compelling<br />
... you can convert in any format once you have the data<br />
... start with something easy<br />
... facebook and myspace and youtube onboard<br />
... look at what can be done with the data in novel ways</p>
<p class='phone'><cite>hhalpin:</cite> close fit regarding data
formats<br />
... interesting would be to look at activity streams
mappins</p>
<p class='irc'><<cite>hhalpin</cite>> Ron?</p>
<p class='irc'><<cite>rreck</cite>> you cant hear me</p>
<p class='irc'><<cite>rreck</cite>> ok you cant hear
me</p>
<p class='irc'><<cite>rreck</cite>> darn</p>
<p class='irc'><<cite>pchampin</cite>> we can hear
you</p>
<p class='irc'><<cite>danbri</cite>> (re rdf, some
colleagues in the notube project did do an rdf mapping, and
compare/contrast w/ rdf version of activity/event schemas)</p>
<p class='phone'><cite>bblfish:</cite> transform Atom into
RDF<br />
... worked on the atom syntax spec<br />
... spend some time to create an ontology for taht<br />
... one key element that may have slow doen the RDF adoption
inthat realm<br />
... apart the tools not being there<br />
... triples and metadata about the content itself<br />
... need to distinguish what the content is about<br />
... merge from different sources</p>
<p class='irc'><<cite>hhalpin</cite>> So there's some
issues with regards lack of context/named graphs in rdf
here.</p>
<p class='phone'>whos speaking ?</p>
<p class='irc'><<cite>chrismessina</cite>> "a financial
interest in verbs" ?</p>
<p class='irc'><<cite>hhalpin</cite>> yes, the man does
have financial interest in verbs :)</p>
<p class='phone'><cite>rreck:</cite> where to find verbs</p>
<p class='irc'><<cite>chrismessina</cite>>
"unnatural"</p>
<p class='irc'><<cite>danbri</cite>> ah, i heard
financial too</p>
<p class='irc'><<cite>danbri</cite>> :)</p>
<p class='phone'><cite>rreck:</cite> categorisation of verbs,
broken into categories<br />
... similar syntactially, etc.</p>
<p class='irc'><<cite>hhalpin</cite>> I mean, you know,
people do get paid for computational linguistics.</p>
<p class='irc'><<cite>MacTed</cite>> SIOC helps handle
this distinction -- between "document description" (i.e., file
metadata) and "content description" (i.e., named entities used
in text *within* the file)</p>
<p class='phone'><cite>rreck:</cite> wordnet is one of them</p>
<p class='irc'><<cite>MacTed</cite>> Container is the key
element</p>
<p class='phone'><cite>rreck:</cite> will contact offline</p>
<p class='irc'><<cite>chrismessina</cite>> <a href=
"http://wiki.activitystrea.ms/Process">http://wiki.activitystrea.ms/Process</a></p>
<p class='phone'><cite>chrismessina:</cite> posted a link to
the activity streams process</p>
<p class='irc'><<cite>bblfish</cite>> so just to
summarize what I was saying above: the content of an atom
format is something that has to end up being mapped to a Graph.
So before SPARQL was out and named graphs were well accepted in
the semweb community, it was a bit diffiuclt to express this in
RDF.</p>
<p class='phone'><cite>chrismessina:</cite> important thing:
about interoperability<br />
... communication between one and other</p>
<p class='irc'><<cite>danbri</cite>> non-thinking
entities --- companies or computers?</p>
<p class='phone'><cite>chrismessina:</cite> want to avoid
people inventing new verbs again and again<br />
... wht types of activities are needed from a publisher point
of view<br />
... to communicate</p>
<p class='irc'><<cite>hhalpin</cite>> So, maybe one way
to say it, the verbs we are interested are "domain-specific" to
the social web.</p>
<p class='phone'><cite>chrismessina:</cite> interested in
getting a core set of verbs to begin with<br />
... as anytime a new verb is added. lots of people are required
to use them<br />
... URIs for new verbs<br />
... registries of verbs<br />
... synonyms can be done later on<br />
... very obvisou verbs of the social web<br />
... as standards as possible<br />
... and then grows from there</p>
<p class='irc'><<cite>Zakim</cite>> danbri, you wanted to
ask re TV viewing feed examples (xbmc/boxee etc)</p>
<p class='phone'><cite>chrismessina:</cite> starting with 40
verbs (approx.)</p>
<p class='irc'><<cite>chrismessina</cite>> <a href=
"http://martin.atkins.me.uk/specs/activitystreams/activityschema">
http://martin.atkins.me.uk/specs/activitystreams/activityschema</a></p>
<p class='phone'><cite>chrismessina:</cite> the one seen used
on the web</p>
<p class='irc'><<cite>hhalpin</cite>> <a href=
"http://martin.atkins.me.uk/specs/activitystreams/activityschema">
http://martin.atkins.me.uk/specs/activitystreams/activityschema</a></p>
<p class='irc'><<cite>hhalpin</cite>> Ack, chrismessina
beat me :)</p>
<p class='irc'><<cite>chrismessina</cite>> ;) sorry!</p>
<p class='irc'><<cite>petef</cite>> danbri have you seen
<a href=
"http://testtubetelly.channel4.com/?">http://testtubetelly.channel4.com/?</a></p>
<p class='irc'><<cite>chrismessina</cite>> <a href=
"http://wiki.activitystrea.ms/Verb-Mapping">http://wiki.activitystrea.ms/Verb-Mapping</a></p>
<p class='phone'><cite>chrismessina:</cite> verb-mapping<br />
... took a lok at the verbs visible on a site<br />
... evaluated the existing formats<br />
... then take the verbs and the way they describe the
activities</p>
<p class='irc'><<cite>petef</cite>> Test Tube Telly is a
good use case for Activity Streams and TV.</p>
<p class='phone'><cite>chrismessina:</cite> a few classes of
activities<br />
... and mapped them with the existing<br />
... boxee.tv<br />
... few unknown verbs</p>
<p class='irc'><<cite>hajons</cite>> boxee.tv</p>
<p class='phone'><cite>chrismessina:</cite> work with the
community to see how you implement it is ok<br />
... then implements</p>
<p class='irc'><<cite>chrismessina</cite>> boxee.tv</p>
<p class='irc'><<cite>rreck</cite>> does anyone else
think SKOS when they read verb mapping?</p>
<p class='phone'><cite>chrismessina:</cite> create ver,
document, implement, get feedback</p>
<p class='irc'><<cite>hhalpin</cite>> Yes, SKOS could be
useful here,</p>
<p class='irc'><<cite>pchampin</cite>> +1 SKOS</p>
<p class='phone'><cite>danbri:</cite> disambiguation ?</p>
<p class='irc'><<cite>bblfish</cite>> ok, got to go to
another conf call.</p>
<p class='irc'><<cite>rreck</cite>> i would love to show
a interoperable approach for verb mapping using skos</p>
<p class='irc'><<cite>bblfish</cite>> but it would be
useful to have the vocabulary of activity streams published as
RDF linked data</p>
<p class='phone'>-1 for skos for verbs (while the SKOS
properties are useful)</p>
<p class='irc'><<cite>rreck</cite>> which of course would
mean lots of this information is available out of the box</p>
<p class='irc'><<cite>bblfish</cite>> and have that
mapped in such as a way that it can fit in with AtomOWL
transform...</p>
<p class='irc'><<cite>danbri</cite>> examples of what
comes out of boxee: <a href=
"http://twitter.com/bandriball">http://twitter.com/bandriball</a></p>
<p class='phone'><cite>chrismessina:</cite> some can use
microformats, wikipedia page, etc.<br />
... author, title and body content<br />
... then enclosure, but pretty weak<br />
... adding the actor of the post</p>
<p class='irc'><<cite>danbri</cite>> eg <a href=
"http://twitter.com/bandriball/status/5148136281">http://twitter.com/bandriball/status/5148136281</a></p>
<p class='phone'><cite>chrismessina:</cite> adding some
microformats in the content to parse the object and iunderstand
what it is<br />
... great problem to address then<br />
... but need to get the issue first</p>
<p class='irc'><<cite>Zakim</cite>> pchampin, you wanted
to ask a very basic question about cliqset</p>
<p class='phone'><cite>pchampin:</cite> cliqset: generate
activity streams from different sources<br />
... to what extent do you get the correct verb from these
sources ?<br />
... feed reformating or getting information from the site using
API ?</p>
<p class='irc'><<cite>chrismessina</cite>> <a href=
"http://feedproxy.cliqset.com/">http://feedproxy.cliqset.com/</a></p>
<p class='irc'><<cite>pchampin</cite>> it *is* great
:)</p>
<p class='phone'><cite>chrismessina:</cite> consume the feed
from the provider<br />
... hope that richer amount of information will come from the
sources<br />
... more precise verbs that show up in the feed<br />
... or richer object definition<br />
... define tthe target of an activity<br />
... e.g. adding flickr to a set in flickr<br />
... tracking a photo album, etc.<br />
... as opposed to follow each individual picture</p>
<p class='irc'><<cite>pchampin</cite>> thanks</p>
<p class='irc'><<cite>rreck</cite>> in my experience
shame doesnt work</p>
<p class='irc'><<cite>chrismessina</cite>>
buddypress.org</p>
<p class='phone'><cite>chrismessina:</cite> would like to get
buddypress adopt activiystreams<br />
... open source PHP activity streams parser would be
great<br />
... convincing people to adopt it</p>
<p class='irc'><<cite>chrismessina</cite>> <a href=
"http://dev.opera.com/libraries/activitystream/">http://dev.opera.com/libraries/activitystream/</a></p>
<p class='irc'><<cite>danbri</cite>> chrismessina, you're
saying there's no good opensrc php consumer, yet?</p>
<p class='irc'><<cite>chrismessina</cite>> there is
not</p>
<p class='phone'><cite>chrismessina:</cite> underlying code /
libraries should accelerate the adoption</p>
<p class='irc'><<cite>danbri</cite>> ok, maybe i know a
funded project that might help there ... (www.notube.tv) ... do
you have a requirements spec?</p>
<p class='irc'><<cite>hhalpin</cite>> labourML?</p>
<p class='irc'><<cite>hhalpin</cite>> Sounds british
:)</p>
<p class='irc'><<cite>chrismessina</cite>> <a href=
"http://userlabor.org/">http://userlabor.org/</a></p>
<p class='irc'><<cite>hhalpin</cite>> Will note
that...</p>
<p class='phone'><cite>chrismessina:</cite> other examples of
formats for activities</p>
<p class='irc'><<cite>chrismessina</cite>> <a href=
"http://socialdesktop.org/">http://socialdesktop.org/</a></p>
<p class='phone'><cite>chrismessina:</cite> social
desktop<br />
... linkedin</p>
<p class='irc'><<cite>hhalpin</cite>> Well, just looking
for other tech in the same space, but it's clear
activitystreams seems to have the momentum...</p>
<p class='phone'><cite>chrismessina:</cite> none of them is
moving forward interoperable standards</p>
<p class='irc'><<cite>danbri</cite>> also some discussion
around xmpp community for activity streams over xmpp ---
<a href=
"http://mail.jabber.org/pipermail/social/2009-April/000536.html">
http://mail.jabber.org/pipermail/social/2009-April/000536.html</a></p>
<p class='phone'><cite>chrismessina:</cite> shoudl be
interoperable, shoud be open<br />
... role of W3C: valuable to provide spotlight on this
work<br />
... thinking about the role W3C plays in incubating
things<br />
... boards member of the OpenWeb fundation<br />
... as it was hard to understand how W3C coudl bootstrap such
grassroots projects<br />
... take about 1.5 years / 2 years<br />
... but becoming a defacto standard<br />
... while working independantly from a standard body</p>
<p class='irc'><<cite>hhalpin</cite>> I think it's a
great amount of success...</p>
<p class='phone'><cite>chrismessina:</cite> like to see other
similar efforts succeed as well<br />
... based on the work theyre doing</p>
<p class='irc'><<cite>danbri</cite>> (+1 to all that)</p>
<p class='phone'><cite>chrismessina:</cite> interested in how
this kind of work can be supported</p>
<p class='phone'><cite>hhalpin:</cite> would like to outline
some kind of plan<br />
... should W3C provide infrastructure<br />
... what are the pros and cons<br />
... IP policies, etc.<br />
... transition period, time for suggestions<br />
... looking for suggestions</p>
<p class='irc'><<cite>chrismessina</cite>> linkedin's
verbs: <a href=
"http://developer.linkedin.com/docs/DOC-1006">http://developer.linkedin.com/docs/DOC-1006</a></p>
<p class='phone'><cite>DKA:</cite> how W3C can help such
efforts</p>
<p class='irc'><<cite>hhalpin</cite>> brainstorming about
how to open up W3C and get relationships with all other
foundations and standards bodies would be useful.</p>
<p class='phone'><cite>DKA:</cite> W3C key goal is to let the
web open</p>
<p class='irc'><<cite>hhalpin</cite>> and what resources
the W3C has to offer the wider community</p>
<p class='irc'><<cite>danbri</cite>> (mentioned <a href=
"http://www.w3.org/2009/11/TPAC/">http://www.w3.org/2009/11/TPAC/</a>
)</p>
<p class='phone'><cite>DKA:</cite> XG process started few years
ago</p>
<p class='irc'><<cite>hhalpin</cite>> it's just kinda
unclear what the wider community wants.</p>
<p class='phone'><cite>DKA:</cite> time for starting working on
such topics<br />
... lots of XG now</p>
<p class='irc'><<cite>hhalpin</cite>> wider = everyone
working to keep the web open</p>
<p class='irc'><<cite>cperey</cite>> +1</p>
<p class='phone'><cite>DKA:</cite> question shoud be how can
W3C facilitate such efforts</p>
<p class='phone'><cite>chrismessina:</cite> DISO and activity
projects done on spare time<br />
... did them as believe in Open Web<br />
... find things to build better and richer solutions<br />
... compagnies that have IP who decided that they come together
to advance the set of things<br />
... avoid to much fragmentation of a market<br />
... Web is a more fluid place, subject to changes<br />
... very essential to come up with patterns that are easy to
adopt / use<br />
... to drive interoperable standards</p>
<p class='irc'><<cite>danbri</cite>> it's more a w3c
observation</p>
<p class='phone'><cite>chrismessina:</cite> bring new protocols
but make sure to ensure the openess<br />
... standards bodies created solutions for large compagnies</p>
<p class='irc'><<cite>hhalpin</cite>> Good point re ramp
for smaller projects</p>
<p class='irc'><<cite>Zakim</cite>> danbri, you wanted to
mention w3c process is in-scope</p>
<p class='irc'><<cite>hhalpin</cite>> we need some sort
of relationship re smaller bodies.</p>
<p class='irc'><<cite>hhalpin</cite>> and now the massive
amount of creativity which is in the grassroots</p>
<p class='irc'><<cite>hhalpin</cite>> (and then
relationships with larger bodies like IETF)</p>
<p class='irc'><<cite>rreck</cite>> you broke up a little
danbri</p>
<p class='irc'><<cite>cperey</cite>> getting late,
guys</p>
<p class='irc'><<cite>cperey</cite>> we need to (cut the
song short and) close this meeting!</p>
<p class='irc'><<cite>danbri</cite>> basically W3C can be
what we make of it, ...</p>
<p class='irc'><<cite>hhalpin</cite>> we'll close after
question from tpa</p>
<p class='phone'><cite>chrismessina:</cite> openess in an
networked world</p>
<p class='irc'><<cite>hhalpin</cite>> but feel free to
exist..</p>
<p class='irc'><<cite>hhalpin</cite>> free to exit.</p>
<p class='phone'><cite>chrismessina:</cite> W3C becomes an
engie for interoperability of open technologies</p>
<p class='irc'><<cite>danbri</cite>> one of the issues re
w3c membership model, is that it becomes hard to structure w3c
so pressure is put on its members to play well w/
standards...</p>
<p class='irc'><<cite>hhalpin</cite>> tim?</p>
<p class='irc'><<cite>danbri</cite>> (because they're
supplying $)</p>
<p class='phone'><cite>tpa:</cite> efforts like openid and
oauth where supported by people working on the Web<br />
... much more idealist process<br />
... W3C has not doing that so far<br />
... q on activity streams<br />
... lots of discussion on publishing and having people on
boards</p>
<p class='irc'><<cite>danbri</cite>> (re individuals vs
employers, ... often people do have relevant employers, but
it's the individual who is the driver, and the employer
situation is often damage control, ie. making sure they behave
well re patents)</p>
<p class='phone'><cite>tpa:</cite> but cannot find lot of
applications</p>
<p class='phone'><cite>chrismessina:</cite> challenging in
terms of adoption<br />
... motivate the consumer<br />
... then producers<br />
... chicken and egg problem</p>
<p class='irc'><<cite>hhalpin</cite>> I imagine Chrome
will take it up...</p>
<p class='phone'><cite>chrismessina:</cite> windows live
support<br />
... if you create a widget, it produces a stream<br />
... friends are able to subscribe<br />
... P2P process to the browsers<br />
... larger publishers (youtube, NYT)<br />
... more a timing issue<br />
... once spec will be out, hope to see rapid adoption<br />
... twitter introduced an important verb: to follow<br />
... can follow people whatever client is used</p>
<p class='irc'><<cite>hhalpin</cite>> we dont' have any
clear answers quite yet</p>
<p class='irc'><<cite>hhalpin</cite>> Chris Messina
Prime</p>
<p class='irc'><<cite>rreck</cite>> thanks Chris</p>
<p class='irc'><<cite>chrismessina</cite>> thanks
all!</p>
<p class='irc'><<cite>hajons</cite>> thanks!</p>
<p class='irc'><<cite>tpa</cite>> thanks :)</p>
<p class='irc'><<cite>DKA</cite>> +1 thanks Chris!</p>
<p class='phone'>thanks!</p>
<p class='irc'><<cite>Adam</cite>> we will be adding it
to our existing activity streams</p>
<p class='irc'><<cite>Adam</cite>> inside Boeing</p>
<p class='irc'><<cite>hhalpin</cite>> Meeting
Adjourned.</p>
<p class='irc'><<cite>rreck</cite>> bye all</p>
<p class='irc'><<cite>pchampin</cite>> thx</p>
<p class='irc'><<cite>melvster</cite>> thx</p>
<p class='irc'><<cite>tpa</cite>> AlexPassant:, hhalpin
there were some typos / misunderstanding in the writeup of my
last comment</p>
<p class='irc'><<cite>tpa</cite>> How should I propose
edits to that :)</p>
<p class='irc'><<cite>hhalpin</cite>> tpa, just rewrite
the comment here</p>
<p class='irc'><<cite>hhalpin</cite>> and i'll fix it
when I clean up the meeting.</p>
<p class='irc'><<cite>tpa</cite>> tpa: efforts like
openid and oauth where supported by people working on the Web
but not necessarily in the right field so they tend to
participate as individuals. W3C should probably have a clear
policy of allowing individuals to join to attract the same kind
of crowd and efforts</p>
<p class='irc'><<cite>hhalpin</cite>> excellent.</p>
<p class='irc'><<cite>hhalpin</cite>> we should have a
telecon on W3C process and W3C role once we have some strawman
proposals.</p>
<p class='irc'><<cite>tpa</cite>> tpa: also, have a more
iterative process, like those groups, which historically the
W3C has not been good at.</p>
<p class='irc'><<cite>tpa</cite>> hhalpin: yes, that'd be
great</p>
<p class='irc'><<cite>tpa</cite>> I think there are some
clear point to report back on</p>
<p class='irc'><<cite>tpa</cite>> but we're so in the
middle of them, we don't necessarily see them</p>
<p class='irc'><<cite>hhalpin</cite>> trackbot, end
meeting</p>
</div>
<h2><a name="ActionSummary" id="ActionSummary">Summary of Action
Items</a></h2><!-- Action Items -->
<strong>[NEW]</strong> <strong>ACTION:</strong> (2 weeks) hhalpin
explain to henry and oshani doc editing process for usecases (2
weeks) [recorded in <a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html#action09">http://www.w3.org/2009/12/02-swxg-minutes.html#action09</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> tanglade to tag
existing stories [recorded in <a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html#action11">http://www.w3.org/2009/12/02-swxg-minutes.html#action11</a>]<br />
<br />
<strong>[PENDING]</strong> <strong>ACTION:</strong> (2 weeks)
hhalpin explain to henry and oshani doc editing process for
usecases (2 weeks) [recorded in <a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html#action10">http://www.w3.org/2009/12/02-swxg-minutes.html#action10</a>]<br />
<strong>[PENDING]</strong> <strong>ACTION:</strong> adam to take
on corporate story [recorded in <a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html#action03">http://www.w3.org/2009/12/02-swxg-minutes.html#action03</a>]<br />
<strong>[PENDING]</strong> <strong>ACTION:</strong> bblfish to
merge Family and Group access usecases (2 weeks) [recorded in
<a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html#action08">http://www.w3.org/2009/12/02-swxg-minutes.html#action08</a>]<br />
<strong>[PENDING]</strong> <strong>ACTION:</strong> bblfish to
relabel data protection use case to be about controlled access
and takedown to data "about" you (2 weeks) [recorded in <a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html#action07">http://www.w3.org/2009/12/02-swxg-minutes.html#action07</a>]<br />
<strong>[PENDING]</strong> <strong>ACTION:</strong> danbri to
find someone from Opera to talk Widgets (2 weeks) [recorded in
<a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html#action12">http://www.w3.org/2009/12/02-swxg-minutes.html#action12</a>]<br />
<strong>[PENDING]</strong> <strong>ACTION:</strong> hhalpin to
try to get TimBL to either talk or write-up his use-cases
[recorded in <a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html#action13">http://www.w3.org/2009/12/02-swxg-minutes.html#action13</a>]<br />
<strong>[PENDING]</strong> <strong>ACTION:</strong> oshani to
reframe the geolocation/intent/portability (2 weeks) [recorded in
<a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html#action06">http://www.w3.org/2009/12/02-swxg-minutes.html#action06</a>]<br />
<strong>[PENDING]</strong> <strong>ACTION:</strong> rreck to
flesh out anonymous usecase connecting to multiple identies and
null provenance (rreck) [recorded in <a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html#action05">http://www.w3.org/2009/12/02-swxg-minutes.html#action05</a>]<br />
<br />
<strong>[DONE]</strong> <strong>ACTION:</strong> (2 weeks) adam
to write up the boeing use case for enterprise social networks
[recorded in <a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html#action04">http://www.w3.org/2009/12/02-swxg-minutes.html#action04</a>]<br />
<strong>[DONE]</strong> <strong>ACTION:</strong> cperey to take
business narrative [recorded in <a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html#action01">http://www.w3.org/2009/12/02-swxg-minutes.html#action01</a>]<br />
<strong>[DONE]</strong> <strong>ACTION:</strong> cperey to take
business narrative [recorded in <a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html#action02">http://www.w3.org/2009/12/02-swxg-minutes.html#action02</a>]<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/12/02 17:33:25 $
</address>
<div class="diagnostics">
<hr />
<h2>Scribe.perl diagnostic output</h2>[Delete this section
before finalizing the minutes.]<br />
<pre>
This is scribe.perl Revision: 1.135 of Date: 2009/03/02 03:52:20
Check for newer version at <a href=
"http://dev.w3.org/cvsweb/~checkout~/2002/scribe/">http://dev.w3.org/cvsweb/~checkout~/2002/scribe/</a>
Guessing input format: RRSAgent_Text_Format (score 1.00)
Succeeded: s/extend/extent/
Succeeded: s/temr/term/
Succeeded: s/tome/some/
Succeeded: s/boxy (?)/boxee.tv/
Succeeded: s/port/post/
Succeeded: s/effots/efforts/
Succeeded: s/straman/strawman/
Found Scribe: AlexPassant
Found ScribeNick: AlexPassant
Default Present: +39.011.228.aaaa, +049172247aabb, hhalpin, +1.774.811.aacc, +1.781.273.aadd, claudio, MacTed, +7.970.94.aaff, rreck, AlexPassant, tpa
Present: +39.011.228.aaaa +049172247aabb hhalpin +1.774.811.aacc +1.781.273.aadd claudio MacTed +7.970.94.aaff rreck AlexPassant tpa
Found Date: 02 Dec 2009
Guessing minutes URL: <a href=
"http://www.w3.org/2009/12/02-swxg-minutes.html">http://www.w3.org/2009/12/02-swxg-minutes.html</a>
WARNING: No person found for ACTION item: (2 weeks) hhalpin explain to henry and oshani doc editing process for usecases (2 weeks) [recorded in <a href="http://www.w3.org/2009/12/02-swxg-minutes.html#action10">http://www.w3.org/2009/12/02-swxg-minutes.html#action10</a>]
WARNING: No person found for ACTION item: (2 weeks) hhalpin explain to henry and oshani doc editing process for usecases (2 weeks) [recorded in <a href="http://www.w3.org/2009/12/02-swxg-minutes.html#action09">http://www.w3.org/2009/12/02-swxg-minutes.html#action09</a>]
People with action items: adam bblfish danbri hhalpin oshani rreck tanglade
</pre>[End of <a href=
"http://dev.w3.org/cvsweb/~checkout~/2002/scribe/scribedoc.htm">
scribe.perl</a> diagnostic output]
</div>
</body>
</html>