30-swxg-minutes.html
45.8 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
<!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 -- 30 Sep
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>30 Sep 2009</h2>
<p>See also: <a href="http://www.w3.org/2009/09/30-swxg-irc">IRC
log</a></p>
<h2><a name="attendees" id="attendees">Attendees</a></h2>
<div class="intro">
<dl>
<dt>Present</dt>
<dd>danbri, DKA, jsalvachua, rreck, tpa,mischat,hajons
FabGandon, Carine, petef, peter st. audre, hhalpin, MacTed,
bblfish, melvster, rreck</dd>
<dt>Regrets</dt>
<dt>Chair</dt>
<dd>hhalpin</dd>
<dt>Scribe</dt>
<dd>mischat</dd>
</dl>
</div>
<h2>Contents</h2>
<ul>
<li>
<a href="#agenda">Topics</a>
<ol>
<li><a href="#item01">Convene SWXG WG meeting of
2009-09-30T13:00-15:00Z</a></li>
<li><a href="#item02">General Organization</a></li>
<li><a href="#item03">Invited Guest Invitations</a></li>
<li><a href="#item04">user stories</a></li>
<li><a href="#item05">Peter St. Andre of XMPP</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: 30 September
2009</p>
<p class='irc'><<cite>tpa</cite>> Hi guys, I'm sorry I'm
going to have to miss this one, there seems to be no signal at
all where I'm at today.</p>
<p class='irc'><<cite>hhalpin</cite>> no problem tpa</p>
<p class='irc'><<cite>hhalpin</cite>> did you check in
with henry story yet?</p>
<p class='irc'><<cite>tpa</cite>> hhalpin: we're supposed
to do it sometime this week</p>
<p class='irc'><<cite>tpa</cite>> hhalpin: we should also
talk at some point, off-weekly call and confer about the use
cases and the resulting document we're aiming for?</p>
<p class='irc'><<cite>tpa</cite>> I guess we'll figure
that out at a more convenient time, I'll be emailing you.</p>
<p class='irc'><<cite>hhalpin</cite>> ?</p>
<p class='irc'><<cite>melvster</cite>> hhalpin: i think
you got the wrong phone handle</p>
<p class='irc'><<cite>melvster</cite>> ill redail in</p>
<p class='irc'><<cite>hhalpin</cite>> ?</p>
<p class='irc'><<cite>melvster</cite>> i think i was
??P13</p>
<p class='irc'><<cite>melvster</cite>> i hung up and it
said -hhalpin</p>
<p class='irc'><<cite>bblfish</cite>> hi</p>
<p class='irc'><<cite>hhalpin</cite>> ?</p>
<p class='phone'>hello all</p>
<h3 id="item01">Convene SWXG WG meeting of
2009-09-30T13:00-15:00Z</h3>
<p class='irc'><<cite>hhalpin</cite>> zakim agenda+
General Organization</p>
<p class='irc'><<cite>hhalpin</cite>> zakim agenda+
Invited Guest - Peter St. Andre on XMPP</p>
<p class='phone'>i can scribe</p>
<p class='irc'><<cite>hhalpin</cite>> scribe: mischat</p>
<p class='irc'><<cite>hhalpin</cite>> ROPOSED: to approve
SWXG WG Weekly -- 23rd September 2009 as a true record plus
adding rreck</p>
<p class='irc'><<cite>hhalpin</cite>> PROPOSED: to
approve SWXG WG Weekly -- 23rd September 2009 as a true record
plus adding rreck</p>
<p class='irc'><<cite>hhalpin</cite>> RESOLVED: to
approve SWXG WG Weekly -- 23rd September 2009 as a true record
plus adding rreck</p>
<p class='irc'><<cite>hhalpin</cite>> PROPOSED: to meet
again Wed. October 7th</p>
<p class='irc'><<cite>rreck</cite>> +1 meet again</p>
<p class='irc'><<cite>hhalpin</cite>> Next Wed is Evan
from OpenMicroblogging.</p>
<p class='irc'><<cite>hhalpin</cite>> Also requested we
move things 2 hours back if possible.</p>
<p class='irc'><<cite>petef</cite>> +1</p>
<p class='phone'>evan request for 2 hours back</p>
<p class='irc'><<cite>danbri</cite>> (back meaning
forward :)</p>
<p class='irc'><<cite>danbri</cite>> later</p>
<p class='irc'><<cite>petef</cite>> into the future</p>
<p class='irc'><<cite>hhalpin</cite>> Moving meeting to
13:00UTC</p>
<p class='irc'><<cite>danbri</cite>> back to the future
:)</p>
<p class='phone'>moving meeting to 13:00 UTC</p>
<p class='irc'><<cite>petef</cite>> Already 13:00 UTC</p>
<p class='irc'><<cite>danbri</cite>> i support moving
it</p>
<p class='irc'><<cite>tinkster</cite>> It's already 13:00
UTC.</p>
<p class='irc'><<cite>petef</cite>> move to 15:00 UTC</p>
<p class='irc'><<cite>hhalpin</cite>> Moving meeting to
15:00UTC</p>
<p class='irc'><<cite>danbri</cite>> everyone is confused
around timezones anyhow, this time of year</p>
<p class='irc'><<cite>hhalpin</cite>> If we don't get any
objetions</p>
<p class='irc'><<cite>rreck</cite>> +1 move meeting time
to 15:00UTC</p>
<p class='irc'><<cite>hhalpin</cite>> then move next
meeting to 15:00UTC.</p>
<p class='irc'><<cite>jsalvachua</cite>> +1</p>
<p class='irc'><<cite>tinkster</cite>> I'm happy with
15:00 UTC for next week (and indeed, generally).</p>
<p class='phone'>harry to ask the list this week, if no
objections we move to 15:00 UTC</p>
<p class='phone'>+1</p>
<p class='irc'><<cite>bblfish</cite>> no</p>
<p class='irc'><<cite>hhalpin</cite>> RESOLVED: Unless
objections from list, telecons moved to 15:00 UTC from now
on.</p>
<p class='irc'><<cite>danbri</cite>> are we expecting
stpeter now?</p>
<p class='irc'><<cite>bblfish</cite>> problem</p>
<p class='irc'><<cite>danbri</cite>> ok</p>
<h3 id="item02">General Organization</h3>
<p class='irc'><<cite>tinkster</cite>> bblfish, is that
"no. problem." or "no problem."</p>
<p class='irc'><<cite>hhalpin</cite>> Technical
Plenary?</p>
<p class='irc'><<cite>hhalpin</cite>> Whose going to
technical plenary?</p>
<p class='irc'><<cite>bblfish</cite>> no problem. or
+1</p>
<p class='irc'><<cite>FabGandon</cite>> going</p>
<p class='irc'><<cite>bblfish</cite>> I should be
going</p>
<p class='irc'><<cite>danbri</cite>> i can't make it</p>
<p class='irc'><<cite>petef</cite>> not me</p>
<p class='irc'><<cite>tinkster</cite>> not me</p>
<p class='phone'>not me</p>
<p class='irc'><<cite>melvster</cite>> not me</p>
<p class='irc'><<cite>jsalvachua</cite>> not me ;(</p>
<p class='irc'><<cite>AndreaP</cite>> not me</p>
<p class='irc'><<cite>hajons</cite>> don't know yet</p>
<p class='irc'><<cite>danbri</cite>> (i did talk to Kevin
Marks about possibility of him talking; passed that on to
harry/ian)</p>
<p class='phone'>henry, fabien are going</p>
<p class='irc'><<cite>hhalpin</cite>> you should register
asap, the calendar is correct now.</p>
<p class='irc'><<cite>hhalpin</cite>> I know you DKA</p>
<p class='phone'>if people want to go they should register
asap</p>
<p class='irc'><<cite>hhalpin</cite>> and then's this
open social web day.</p>
<p class='irc'><<cite>hhalpin</cite>> Is anyone going to
Internet Identity Workshop?</p>
<p class='irc'><<cite>FabGandon</cite>> not going to
IIW</p>
<p class='irc'><<cite>hajons</cite>> probably</p>
<p class='irc'><<cite>hhalpin</cite>> Which is right
afterwards...</p>
<p class='phone'>which is right after the technical plenary</p>
<p class='irc'><<cite>petef</cite>> nope</p>
<p class='irc'><<cite>hhalpin</cite>> ok just checking
in...</p>
<p class='irc'><<cite>jsalvachua</cite>> not me</p>
<p class='phone'>registration fees are going up for the IIW</p>
<p class='phone'>so if you want to go then you should get on it
asap</p><a name="action01" id="action01"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[CONTINUES]</strong> DKA to
summarize OSLO and geoLocation conversation in order to spread
knowledge of these efforts among W3C members. [recorded in
<a href=
"http://www.w3.org/2009/09/30-swxg-minutes.html#action01">http://www.w3.org/2009/09/30-swxg-minutes.html#action01</a>]</p><a name="action02"
id="action02"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[CONTINUES]</strong> Mischa to
describe/implement a report of terms and conditions, and how
they change between now and the end of the XG. [recorded in
<a href=
"http://www.w3.org/2009/09/30-swxg-minutes.html#action02">http://www.w3.org/2009/09/30-swxg-minutes.html#action02</a>]</p>
<h3 id="item03">Invited Guest Invitations</h3>
<p class='irc'><<cite>hhalpin</cite>>
Opera/Widgets/OpenSocial?</p>
<p class='phone'>i will get mine done soon, I have been
recovering from submitting thesis this last week</p>
<p class='phone'>danbri is a technically a bad person :)</p>
<p class='phone'>has anyone looked at the activity streams work
?</p>
<p class='irc'><<cite>hhalpin</cite>> <a href=
"http://wiki.activitystrea.ms/">http://wiki.activitystrea.ms/</a></p>
<p class='irc'><<cite>petef</cite>> I have had a brief
look</p>
<p class='irc'><<cite>hajons</cite>> me too</p>
<p class='irc'><<cite>petef</cite>> Happy to look deeper
and perhaps write a summary for the wiki</p>
<p class='phone'>hasn't danbri looked at it in the notube work
?</p>
<p class='irc'><<cite>hajons</cite>> opensocial and
activity streams are looking to align</p>
<p class='irc'><<cite>hhalpin</cite>> I think it's
definitely worth summarziing for the wiki and yes it is
aligning to opensocial.</p>
<p class='phone'>harry thinks it would be good for some to host
a session on the activity streams work</p><a name="action03"
id="action03"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> Harry to invite Ben Laurie from
OAuth/Google Wave security to W3C Social Web talk [recorded in
<a href=
"http://www.w3.org/2009/09/30-swxg-minutes.html#action03">http://www.w3.org/2009/09/30-swxg-minutes.html#action03</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-92
- Invite Ben Laurie from OAuth/Google Wave security to W3C
Social Web talk [on Harry Halpin - due 2009-10-07].</p>
<p class='irc'><<cite>petef</cite>> Do we have Chris
Messina on the invite list already?</p>
<p class='phone'>who spoke ?</p>
<p class='irc'><<cite>petef</cite>> petef</p>
<p class='irc'><<cite>danbri</cite>> +1 for having it in
the final report at least, and seems good to invite them to
present</p><a name="action04" id="action04"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> petef to look into activitystreams
invite, maybe Chris Messina [recorded in <a href=
"http://www.w3.org/2009/09/30-swxg-minutes.html#action04">http://www.w3.org/2009/09/30-swxg-minutes.html#action04</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Sorry, couldn't
find user - petef</p>
<p class='phone'>+1 to having on the final report</p><a name=
"action05" id="action05"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> pferne to look into activitystreams
invite, maybe Chris Messina [recorded in <a href=
"http://www.w3.org/2009/09/30-swxg-minutes.html#action05">http://www.w3.org/2009/09/30-swxg-minutes.html#action05</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-93
- Look into activitystreams invite, maybe Chris Messina [on
Peter Ferne - due 2009-10-07].</p><a name="action06" id=
"action06"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[CONTINUES]</strong> cperey to
book global lockbox as an invited speaker [recorded in <a href=
"http://www.w3.org/2009/09/30-swxg-minutes.html#action06">http://www.w3.org/2009/09/30-swxg-minutes.html#action06</a>]</p>
<p class='phone'>i will get the mail out to the BBC persian
people</p>
<p class='phone'>please do :)</p><a name="action07" id=
"action07"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> mischat to invite BBC Persia people to
talk about their use of social media [recorded in <a href=
"http://www.w3.org/2009/09/30-swxg-minutes.html#action07">http://www.w3.org/2009/09/30-swxg-minutes.html#action07</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Sorry, couldn't
find user - mischat</p><a name="action08" id="action08"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> mtuffield to invite BBC Persia people
to talk about their use of social media [recorded in <a href=
"http://www.w3.org/2009/09/30-swxg-minutes.html#action08">http://www.w3.org/2009/09/30-swxg-minutes.html#action08</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Sorry, couldn't
find user - mtuffield</p>
<p class='phone'>mtiffiel</p>
<p class='phone'>spelt wrong</p>
<p class='phone'>:)</p>
<p class='phone'>swh's fault</p><a name="action09" id=
"action09"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> mtiffiel to invite BBC Persia people
to talk about their use of social media [recorded in <a href=
"http://www.w3.org/2009/09/30-swxg-minutes.html#action09">http://www.w3.org/2009/09/30-swxg-minutes.html#action09</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-94
- Invite BBC Persia people to talk about their use of social
media [on Mischa Tuffield - due 2009-10-07].</p>
<h3 id="item04">user stories</h3>
<p class='irc'><<cite>hhalpin</cite>> Quick note
Christine on Open Social Web day?</p>
<p class='phone'>re user stories, oshani is away today</p>
<p class='irc'><<cite>danbri</cite>> oof <a href=
"http://www.w3.org/2005/Incubator/socialweb/wiki/InvitedGuests">
http://www.w3.org/2005/Incubator/socialweb/wiki/InvitedGuests</a>
takes a while to load</p>
<p class='irc'><<cite>hhalpin</cite>> cool!</p>
<p class='phone'>Christine has talked to Dan, re : OPen Social
Web day. Dan to add to the wiki, and will be setting up an
eventbrite for the event</p>
<p class='phone'>a conference call is scheduled for this coming
friday</p>
<p class='phone'>there is a need for some more marketing to
happen</p>
<p class='phone'>henry, just an email confirmation that the
auditorium has been booked along with</p>
<p class='irc'><<cite>hhalpin</cite>> good news!</p>
<p class='phone'>projectors, wifi, and stuff</p>
<p class='irc'><<cite>hhalpin</cite>> ?</p>
<p class='phone'>harry had a question about the user stories,
perhaps they are too complicated</p>
<p class='irc'><<cite>hhalpin</cite>> it would nice to
get user story doc done between TPAC</p>
<p class='irc'><<cite>hhalpin</cite>> sorry before
TPAC!</p>
<p class='phone'>christine has taken a high level ID, so that
the use cases can be clustered</p>
<p class='irc'><<cite>hhalpin</cite>> is this work
online?</p>
<p class='phone'>high level concepts to classify the user
stories</p>
<p class='phone'>for organisational purposes</p>
<p class='phone'>christine to check if she can get the document
she was been working on online</p>
<p class='irc'><<cite>rreck</cite>> please do</p>
<p class='phone'>so christine will aim to share the structure
she has built with the groups</p>
<p class='irc'><<cite>cperey</cite>> yes</p>
<p class='irc'><<cite>hhalpin</cite>> Goal, Summary,
Actors, Preconditions, Trigger, Basic Course of Events,
Alternative Paths, postconditons, business rules and then
metadata about author/date.</p>
<p class='phone'>at the moment we have goals, actions,
triggers, ...</p>
<p class='phone'>thanks harry</p>
<p class='irc'><<cite>hhalpin</cite>> remove some
ofit.</p>
<p class='phone'>harry would like to remove of it</p>
<p class='phone'>harry thinks it is a bit too complicated at
the moment</p>
<p class='irc'><<cite>rreck</cite>> +1 summary</p>
<p class='phone'>harry would like to get some summaries and
pre-conditions up</p>
<p class='irc'><<cite>rreck</cite>> -1 business rules</p>
<p class='irc'><<cite>bblfish</cite>> Just as interest,
here is a very developed set of user stories for the future of
identity <a href=
"http://www.fidis.net/resources/identity-revolution/">http://www.fidis.net/resources/identity-revolution/</a>
with real stories. Clearly we don't need to go that far. But it
is an interesting example</p>
<p class='phone'>simplify the use stories to 3 parts</p>
<p class='irc'><<cite>petef</cite>> +1 for
simplification</p>
<p class='phone'>summary, pre-conditions, post-conditions ?</p>
<p class='irc'><<cite>rreck</cite>> i think actors is
self evident possibly</p>
<p class='phone'>can you repeat that hhalpin ?</p>
<p class='irc'><<cite>hhalpin</cite>> pre-condition/basic
course of events/goal accomplished (maybe alternative
paths)?</p>
<p class='phone'>thanks</p>
<p class='irc'><<cite>hhalpin</cite>> So just have 3
categories for every use-case.</p>
<p class='phone'>+1</p>
<p class='irc'><<cite>bblfish</cite>> seems ok</p>
<p class='phone'>i am happy to go through and summarise if need
be</p>
<p class='irc'><<cite>bblfish</cite>> ok. I am in the
same offices as tim right now</p>
<p class='phone'><cite>bblfish:</cite> i didn't get any of
that</p>
<p class='irc'><<cite>hajons</cite>> breaking up</p>
<p class='phone'>you were breaking up</p>
<p class='irc'><<cite>bblfish</cite>> YEs, the link is
here <a href=
"http://www.fidis.net/resources/identity-revolution/">http://www.fidis.net/resources/identity-revolution/</a></p>
<p class='irc'><<cite>bblfish</cite>> looks like a
fashion magazine</p>
<h3 id="item05">Peter St. Andre of XMPP</h3>
<p class='phone'><cite>bblfish:</cite> saw this at the social
web camp.</p>
<p class='irc'><<cite>bblfish</cite>> but it's called
"Identity Revolution - Multi Disclipinary Perspectives"</p>
<p class='irc'><<cite>bblfish</cite>> very developed user
stories on identity with very in depth characters</p>
<p class='phone'>xmpp, and how it can be integrated from the
social web</p>
<p class='irc'><<cite>hhalpin</cite>> Peter go for
it!</p>
<p class='phone'>and how it will fit in with the w3c and the
wider community</p>
<p class='phone'>people which are interested in microblogging,
buddy cloud</p>
<p class='irc'><<cite>hhalpin</cite>> the relationship
with OMB would be interesting.</p>
<p class='phone'>trying to figure out what problems the SWXG
are trying to solve</p>
<p class='phone'>and how the XMPP community can help</p>
<p class='phone'>the SWXG has noticed that the W3C has ignored
the social web tech</p>
<p class='phone'>and the group wants to write an introductory
report on the landscape of technologies in the social web</p>
<p class='phone'>for example the widgets work, and the open
social work, and how this is pushing towards the notion of a
decentralised social network</p>
<p class='phone'>so the group would like to figure how the W3C
can help influence future development on the social Web</p>
<p class='phone'>and the group is interested in how the
technologies can be built upon, technologies like openid,
oauth, xmpp</p>
<p class='irc'><<cite>hhalpin</cite>> (sorry, should have
went through them one at a time!)</p>
<p class='phone'>xmpp grew out of instance messaging</p>
<p class='phone'>instant</p>
<p class='phone'>the initial idea was to build ontop of XML,
taking the ideas of Jabber and building on XML to build a
stream</p>
<p class='irc'><<cite>hhalpin</cite>> 1. Final Report on
over-arching technologies 2. Adoption of social web
technologies by W3C internally 3. How the W3C should evolve to
interact with the wider social web commuity</p>
<p class='phone'>the idea was to have a peer-2-peer based
method of shifting xml between points on the web</p>
<p class='irc'><<cite>hhalpin</cite>> so it started out
very general purpose</p>
<p class='irc'><<cite>hhalpin</cite>> that's
interesting</p>
<p class='phone'>xmpp was designed be a generalised transport
mechanism</p>
<p class='irc'><<cite>danbri</cite>> see <a href=
"http://metajack.im/2008/11/21/chesspark_design_details_part_1_why_xmpp/">
http://metajack.im/2008/11/21/chesspark_design_details_part_1_why_xmpp/</a></p>
<p class='phone'>rpc technology, some gaming, file sharing,
file sharing, google wave</p>
<p class='phone'>are all built on top of xmpp</p>
<p class='irc'><<cite>danbri</cite>> and <a href=
"http://metajack.im/2009/03/12/awesome-demo-of-real-time-xmpp-powered-app/">
http://metajack.im/2009/03/12/awesome-demo-of-real-time-xmpp-powered-app/</a></p>
<p class='irc'><<cite>danbri</cite>> re google talk see
<a href=
"http://code.google.com/apis/talk/jep_extensions/extensions.html">
http://code.google.com/apis/talk/jep_extensions/extensions.html</a></p>
<p class='phone'>google talk using xmpp for their signalling
channel to set up voice and video calls</p>
<p class='irc'><<cite>danbri</cite>> (google talk basic
text messages are themselves xmpp)</p>
<p class='phone'>there is a standards body</p>
<p class='irc'><<cite>danbri</cite>> re social, ... see
<a href=
"http://mail.jabber.org/mailman/listinfo/social">http://mail.jabber.org/mailman/listinfo/social</a></p>
<p class='phone'>pidgin is implementing an open-source xmpp</p>
<p class='irc'><<cite>hhalpin</cite>> how oauth and
openid fit in with XMPP is quite interesting.</p>
<p class='irc'><<cite>danbri</cite>> oauth - <a href=
"http://xmpp.org/extensions/xep-0235.html">http://xmpp.org/extensions/xep-0235.html</a></p>
<p class='phone'>plans are afoot to use oauth and xmpp</p>
<p class='irc'><<cite>danbri</cite>> fireeagle and xmpp
see <a href=
"http://fireeagle.yahoo.net/developer/documentation/xmpp_faq">http://fireeagle.yahoo.net/developer/documentation/xmpp_faq</a></p>
<p class='phone'>this is used in fireeagle</p>
<p class='irc'><<cite>danbri</cite>> (also not mentioned
but hey... rdf query over xmpp - <a href=
"http://svn.foaf-project.org/foaftown/jqbus/intro.html">http://svn.foaf-project.org/foaftown/jqbus/intro.html</a>
)</p>
<p class='irc'><<cite>hhalpin</cite>> I thought it
switched from polling to pushing...</p>
<p class='phone'>polling is a problem on services, and xmpp
fixes this by pushing</p>
<p class='phone'>this technology is becoming popular for real
time search</p>
<p class='phone'>this can save service providers on hardware
wear and tear</p>
<p class='phone'>apple is doing some experiments with push for
their iphone tech</p>
<p class='irc'><<cite>hhalpin</cite>> <a href=
"http://xmpp.org/extensions/xep-0060.html">http://xmpp.org/extensions/xep-0060.html</a></p>
<p class='irc'><<cite>hhalpin</cite>> Is pubsub</p>
<p class='irc'><<cite>hhalpin</cite>> (I think)</p>
<p class='phone'>there is work in the xmpp community on the
transport tech side, but there isn't much movement in the
development of social software</p>
<p class='irc'><<cite>stpeter</cite>> hhalpin: that is
correct</p>
<p class='irc'><<cite>hhalpin</cite>> Good overview</p>
<p class='irc'><<cite>hhalpin</cite>> go for danbri!</p>
<p class='phone'>perhaps the w3c would be a place where the
xmpp could integrate with social web people</p>
<p class='irc'><<cite>danbri</cite>> q re MUC (multi user
chat)</p>
<p class='phone'>danbri question : lots of people are stuck in
the IRC world, and IM chats are advancing faster than multi
user chat</p>
<p class='phone'>so there is xmpp work in an online chat room
chess game? and this builds upon a multi user chat room</p>
<p class='phone'>MUC could be used for real-time modeling of a
XML sequence, could be used to collaboratively write
documents</p>
<p class='phone'>xmpp has some strong points ;</p>
<p class='phone'>XML, a good thing, we fixed some security
issues which IRC had</p>
<p class='irc'><<cite>hhalpin</cite>> one question would
be if XMPP should at some point replace IRC as a communication
point for W3C.</p>
<p class='irc'><<cite>tinkster</cite>> hmmm... create a
MUC, invite validator@xmpp.w3.org and start working on XHTML
snippets...</p>
<p class='irc'><<cite>hhalpin</cite>> yes, this might be
an effective way of working although the W3C has a lot of
infrastructure invested in IRC.</p>
<p class='phone'>xmpp has a cert based authentication</p>
<p class='phone'>and doesn't reveal your IP address as in
IRC</p>
<p class='phone'>there is ongoing work to distribute rooms over
a network so that if a peer goes down</p>
<p class='phone'>xmpp community haven't tried to get rid off
IRC, or other tech</p>
<p class='phone'>collaborative point of view, you can send
structure data, you could have forms pop up for voting</p>
<p class='phone'>dod ?</p>
<p class='irc'><<cite>hhalpin</cite>> department of
defence mischat</p>
<p class='phone'>xmpp is the only approved chat mechanism for
the dod</p>
<p class='irc'><<cite>hhalpin</cite>> part of the usa
government</p>
<p class='phone'>IRC had too many security issues, and the dod
are moving to use XMPP group chat</p>
<p class='irc'><<cite>hhalpin</cite>> native prescence
+1</p>
<p class='phone'>and we have a link to the chess game ?</p>
<p class='irc'><<cite>petef</cite>> <a href=
"http://www.chesspark.com/">http://www.chesspark.com/</a></p>
<p class='phone'>XMPP has support for native presence
information, and for network availability</p>
<p class='irc'><<cite>hajons</cite>> +q</p>
<p class='irc'><<cite>caribou</cite>> audience
segregation for presence?</p>
<p class='phone'>presence information is not on IRC</p>
<p class='irc'><<cite>melvster</cite>> pidgin handles
both irc and xmpp -- im using it now ...</p>
<p class='irc'><<cite>tinkster</cite>> Well, I'm
currently on Pidgin which does both IRC and XMPP chats.</p>
<p class='phone'>so when the distributed room problem gets
solved in xmpp then it may be a viable replacement for IRC</p>
<p class='irc'><<cite>stpeter</cite>> <a href=
"http://xmpp.org/extensions/inbox/distributedmuc.html">http://xmpp.org/extensions/inbox/distributedmuc.html</a></p>
<p class='phone'>i too use pidgin</p>
<p class='phone'>there is lot of ongoing work on the xmpp front
to build towards the distributed muc</p>
<p class='phone'>lots of open source implementations</p>
<p class='phone'>there are projects which are working on
clustering and high availability for high volumes of users</p>
<p class='irc'><<cite>danbri</cite>> prosody.im</p>
<p class='phone'>thanks</p>
<p class='phone'>the prosody project is having a go at the
distributedmuc</p>
<p class='irc'><<cite>hhalpin</cite>> hajons?</p>
<p class='phone'>hajons, now that xmpp is standardised, do you
think that big companies like google will not implement the
standard?</p>
<p class='irc'><<cite>hhalpin</cite>> hajons asked about
standards now that XMPP is being used in Google Wave etc.</p>
<p class='phone'>xmpp which used to be called jabber, came
about 10 years ago, distributed comms model, and the exchange
of XML turned it into XMPP</p>
<p class='phone'>rfc came about in 2004</p>
<p class='phone'>since the work was put into the rfc, people
can now write their own implementations</p>
<p class='irc'><<cite>rreck</cite>> who would have ever
thought standards could promote interoperability?</p>
<p class='phone'>google talk extended the spec for the video
signalling</p>
<p class='phone'>jingle work was very similar to google
talk</p>
<p class='phone'>and the jingle tech is now in the xmpp specs,
and google are now looking to harmonise the open-source
implementations of jingle with their google talk</p>
<p class='phone'>still early days in google wave. google wave
are trying to develop the technology in the open, which was
different to the google talk. google talk was implemented and
then it was released in the wild</p>
<p class='irc'><<cite>hhalpin</cite>> Do people mind
extending the call 15-20 minutes to deal with questions?</p>
<p class='irc'><<cite>rreck</cite>> +1 extend, but i may
have to drop</p>
<p class='irc'><<cite>hajons</cite>> +1</p>
<p class='phone'>xmpp is a good community of people, and they
are standardisation friendly</p>
<p class='irc'><<cite>jsalvachua</cite>> +1 extend</p>
<p class='irc'><<cite>hajons</cite>> +q</p>
<p class='phone'>harry question : are there plans for the xmpp
auth to be integrated with openid</p>
<p class='phone'>and second question, will xmpp integrate with
the TLS?</p>
<p class='irc'><<cite>hhalpin</cite>> ah, that clears
things up a bit from the outside.</p>
<p class='irc'><<cite>danbri</cite>> (interesting, i was
wondering whether foaf:jabberID needed updating)</p>
<p class='phone'>xmpp has always used ssl for encryption</p>
<p class='irc'><<cite>hhalpin</cite>> starTLS to upgrade
a port to encryption - but that's per-hop not end-to-end (i.e.
OTR?)</p>
<p class='phone'>since 2004, there has been a start_tls
command, which is a per hop encrypted</p>
<p class='phone'>encryption</p>
<p class='irc'><<cite>bblfish</cite>> very cool: start
with TLS and upgrade to encrypted when you want encryption.
Should use this for foaf+ssl :-)</p>
<p class='phone'>it is possible that there is clear-text on the
server</p>
<p class='irc'><<cite>tinkster</cite>> bblfish,
HTTP/HTTPS doesn't allow upgrades to encrypted connections on
the same port.</p>
<p class='phone'>as the moment there is no end-to-end
encryption</p>
<p class='irc'><<cite>hhalpin</cite>> what's the issues
with OTR?</p>
<p class='phone'>they have looked at pptp</p>
<p class='phone'>and have looked smime</p>
<p class='irc'><<cite>hhalpin</cite>> so just go
end-to-end TLS</p>
<p class='phone'>but people dont have certs, so they have
looked a tls, and how it can be reworked to do end-end
encryption</p>
<p class='irc'><<cite>hhalpin</cite>> OTR is a bit of a
hack with weird signalling...can only encrypt plain text
message.</p>
<p class='phone'>in OTR you can only encrypt the plain text
messages</p>
<p class='irc'><<cite>hhalpin</cite>> Doesn't encrypt the
rest of the XML</p>
<p class='irc'><<cite>bblfish</cite>> tinkster: I thought
that is what peter said</p>
<p class='irc'><<cite>hhalpin</cite>> ah, that makes a
lot of sense</p>
<p class='phone'>for example you can only encrypt the message
body, e.g. "Hello World"</p>
<p class='phone'>not the whole XML message</p>
<p class='phone'>OTR does not give end-to-end security</p>
<p class='phone'>there are issues with certs</p>
<p class='irc'><<cite>hhalpin</cite>> encrypted group
chat end-to-end?</p>
<p class='irc'><<cite>hhalpin</cite>> very hard
problem.</p>
<p class='phone'>for doing end-to-end group is a hard
problem</p>
<p class='irc'><<cite>hhalpin</cite>> the default w3c
chat is not encrypted</p>
<p class='irc'><<cite>hhalpin</cite>> so it's still in
the scope but in the future</p>
<p class='irc'><<cite>hhalpin</cite>> room itself with
certifcate?</p>
<p class='irc'><<cite>danbri</cite>> <a href=
"http://silcnet.org/">http://silcnet.org/</a></p>
<p class='irc'><<cite>tinkster</cite>> GPG allows
messages to be encrypted to multiple users.</p>
<p class='phone'>first to work on end-to-end encryption, and
then there will be work on the group chat encryption</p>
<p class='phone'>question petef. Google Waves server - server
federation is xmpp, will anymore of it be based on xmpp</p>
<p class='irc'><<cite>tinkster</cite>>
multiuser_encypted_message = concat( encrypt(plaintext_message,
random_key), encrypt(random_key, recip1_key),
encrypt(random_key, recip2_key), encrypt(random_key,
recip3_key), ...)</p>
<p class='irc'><<cite>petef</cite>> "special google
magic" :-)</p>
<p class='irc'><<cite>hajons</cite>> protobuf</p>
<p class='phone'>discussion to have xmpp version of the client
- server xmpp is not high on google's todo list</p>
<p class='irc'><<cite>hajons</cite>> <a href=
"http://code.google.com/p/protobuf/">http://code.google.com/p/protobuf/</a></p>
<p class='phone'>the wave server is no based on xmpp</p>
<p class='phone'>not for client-server</p>
<p class='phone'>but they use it for server - server comms</p>
<p class='phone'>xmpp does federation well very, xmpp does it
server-server encrypted comms well</p>
<p class='phone'>quite a few xmpp mobile clients</p>
<p class='phone'>nokia are doing work on xmpp (hajons are there
any links?)</p>
<p class='phone'>there are questions to how effecient xmpp is,
due to long lived tcp connection</p>
<p class='phone'>90% of traffic in an IM environment</p>
<p class='phone'>is presense</p>
<p class='phone'>presence</p>
<p class='phone'>not chat</p>
<p class='phone'>there are ways to manage presence information
in xmpp, so that you dont have to receive presence data
continuously</p>
<p class='irc'><<cite>hajons</cite>> <a href=
"http://betalabs.nokia.com/betas/view/nokia-chat">http://betalabs.nokia.com/betas/view/nokia-chat</a></p>
<p class='phone'>there is work underway todo diff's on the
information sent across to to clients</p>
<p class='phone'>ovi.com</p>
<p class='phone'><a href="http://ovi.com">http://ovi.com</a>
(nokia system for mobile stuff)</p>
<p class='phone'>thank hajons</p>
<p class='phone'>thans</p>
<p class='phone'>buddlyclowd etc</p>
<p class='irc'><<cite>rreck</cite>> gtg, thanks
peter.</p>
<p class='phone'>google talk for andriod apparently doesn't use
xmpp</p>
<p class='irc'><<cite>petef</cite>> <a href=
"http://buddycloud.com">http://buddycloud.com</a></p>
<p class='phone'>so there was a google talk service which was a
developer back channel on andriod, which is built ontop of
google talk, which is xmpp.</p>
<p class='phone'>remote scripting opens up security holes</p>
<p class='irc'><<cite>hhalpin</cite>> basically, Google
Android doesn't actually do XMPP despite the fact that's its
heavily requested</p>
<p class='phone'>henry is asking about client side
authenication based on certs (foaf+ssl)</p>
<p class='phone'>xmpp is uses SASL external (dont know what the
tech is), which enables xmpp to use client based certs</p>
<p class='irc'><<cite>hhalpin</cite>> x509 certificates
is the key issue as most people don't have them - although
everyone does have a social networking page :)</p>
<p class='phone'>this is used by the army, because they all
have certs, allowing for X.509 certs</p>
<p class='phone'>thanks tinkster :)</p>
<p class='irc'><<cite>pchampin</cite>> sounds like a
pretty good idea!</p>
<p class='phone'>the aim is to have your client create a cert,
which it could be used to do end-to-end encryption</p>
<p class='irc'><<cite>pchampin</cite>> (rather than
having pidgin storing all our passwords cleartext...)</p>
<p class='phone'><cite>pchampin:</cite> pidgin is very naughty
like that</p>
<p class='phone'>in foaf+ssl, your cert is assigned to a URI,
which is resolvable</p>
<p class='phone'>foaf+ssl allows for a decentralised social
network</p>
<p class='phone'>with danbri's jqbus now</p>
<p class='phone'>maybe</p>
<p class='phone'><a href=
"http://svn.foaf-project.org/foaftown/jqbus/intro.html">http://svn.foaf-project.org/foaftown/jqbus/intro.html</a></p>
<p class='irc'><<cite>danbri</cite>> <a href=
"http://xmpp.org/extensions/xep-0154.html">http://xmpp.org/extensions/xep-0154.html</a>
has vcard, foaf etc stuff</p>
<p class='phone'>harry question : what could do the W3C do in
this community to help take the xmpp work forward ?</p>
<p class='irc'><<cite>hhalpin</cite>> the answer can be
done over e-mail :)</p>
<p class='irc'><<cite>hhalpin</cite>> I would assume
membership is a huge barrier</p>
<p class='irc'><<cite>pchampin</cite>> have to go now;
thanks a lot to Peter</p>
<p class='irc'><<cite>stpeter</cite>> <a href=
"http://xmpp.org/extensions/xep-0071.html">http://xmpp.org/extensions/xep-0071.html</a></p>
<p class='irc'><<cite>caribou</cite>> coordination is
better at group level</p>
<p class='phone'>peter said that there is potential for
collaboration between xmpp and the SWXG</p>
<p class='phone'>sorry</p>
<p class='irc'><<cite>danbri</cite>> <a href=
"http://www.w3.org/2005/Incubator/socialweb/charter">http://www.w3.org/2005/Incubator/socialweb/charter</a>
("The chairs will strive to make sure that W3C membership is
not a problem for independent, student and low-wage members,
while noting that employees of larger companies are typically
expected by W3C to encourage their employer to join W3C.")</p>
<p class='phone'>oauth to become a standard soon</p>
<p class='irc'><<cite>hhalpin</cite>> via IETF and
cultural question</p>
<p class='irc'><<cite>Zakim</cite>> danbri, you wanted to
ask about vcard and to</p>
<p class='irc'><<cite>hhalpin</cite>> probably the w3c's
best role is to verify things that come out of running code and
communities.</p>
<p class='irc'><<cite>hhalpin</cite>> mischa?</p>
<p class='phone'>sorry, i keep being called by people at
work</p>
<p class='irc'><<cite>hhalpin</cite>> basically, people
in social web realm have a big cultural difference</p>
<p class='irc'><<cite>hhalpin</cite>> w3c needs to get
closer to running code</p>
<p class='irc'><<cite>hhalpin</cite>> danbri: protocols
with security are the way to go</p>
<p class='irc'><<cite>hhalpin</cite>> danbri: for
standards body</p>
<p class='irc'><<cite>hhalpin</cite>> danbri: but schemas
should be informal</p>
<p class='irc'><<cite>hhalpin</cite>> can we build
hackfests into our program</p>
<p class='irc'><<cite>danbri</cite>> i mean, if you're
doing a protocol, it needs more review and formality than
making a descriptive schema</p>
<p class='irc'><<cite>danbri</cite>> +1 re hackfests</p>
<p class='phone'>schemas may best be built informally, like at
a hack fest, where at protocols tend to need more effort, and
as a result might need a working group</p>
<p class='irc'><<cite>hhalpin</cite>> how can we get this
energy channelled</p>
<p class='irc'><<cite>hhalpin</cite>> back to running
code</p>
<p class='irc'><<cite>hhalpin</cite>> thanks alot!</p>
<p class='phone'>pete thinks this is exciting, and he will get
people from his group to try and get involved with the SWXG</p>
<p class='irc'><<cite>danbri</cite>> thanks stpeter!</p>
<p class='phone'><cite>hhalpin:</cite> i will do it</p><a name=
"action10" id="action10"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> mischa to write up Peter's talk on
XMPP [recorded in <a href=
"http://www.w3.org/2009/09/30-swxg-minutes.html#action10">http://www.w3.org/2009/09/30-swxg-minutes.html#action10</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-95
- Write up Peter's talk on XMPP [on Mischa Tuffield - due
2009-10-07].</p>
<p class='phone'>bye all</p>
<p class='irc'><<cite>hhalpin</cite>> Meeting
adjourned</p>
<p class='irc'><<cite>danbri</cite>> re future meetings,
i circulated <a href=
"http://www.w3.org/2005/Incubator/socialweb/wiki/WidgetsDiscussion">
http://www.w3.org/2005/Incubator/socialweb/wiki/WidgetsDiscussion</a>
and got positive feedback from David Recordon and Joseph
Smarr</p>
<p class='irc'><<cite>hajons</cite>> bye</p>
<p class='irc'><<cite>melvster</cite>> thanks!</p>
<p class='irc'><<cite>hhalpin</cite>> rrsrrsagent, create
minutes</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> Harry to invite
Ben Laurie from OAuth/Google Wave security to W3C Social Web talk
[recorded in <a href=
"http://www.w3.org/2009/09/30-swxg-minutes.html#action03">http://www.w3.org/2009/09/30-swxg-minutes.html#action03</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> mischa to write
up Peter's talk on XMPP [recorded in <a href=
"http://www.w3.org/2009/09/30-swxg-minutes.html#action10">http://www.w3.org/2009/09/30-swxg-minutes.html#action10</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> mischat to invite
BBC Persia people to talk about their use of social media
[recorded in <a href=
"http://www.w3.org/2009/09/30-swxg-minutes.html#action07">http://www.w3.org/2009/09/30-swxg-minutes.html#action07</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> mtiffiel to
invite BBC Persia people to talk about their use of social media
[recorded in <a href=
"http://www.w3.org/2009/09/30-swxg-minutes.html#action09">http://www.w3.org/2009/09/30-swxg-minutes.html#action09</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> mtuffield to
invite BBC Persia people to talk about their use of social media
[recorded in <a href=
"http://www.w3.org/2009/09/30-swxg-minutes.html#action08">http://www.w3.org/2009/09/30-swxg-minutes.html#action08</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> petef to look
into activitystreams invite, maybe Chris Messina [recorded in
<a href=
"http://www.w3.org/2009/09/30-swxg-minutes.html#action04">http://www.w3.org/2009/09/30-swxg-minutes.html#action04</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> pferne to look
into activitystreams invite, maybe Chris Messina [recorded in
<a href=
"http://www.w3.org/2009/09/30-swxg-minutes.html#action05">http://www.w3.org/2009/09/30-swxg-minutes.html#action05</a>]<br />
<br />
<strong>[PENDING]</strong> <strong>ACTION:</strong> cperey to
book global lockbox as an invited speaker [recorded in <a href=
"http://www.w3.org/2009/09/30-swxg-minutes.html#action06">http://www.w3.org/2009/09/30-swxg-minutes.html#action06</a>]<br />
<strong>[PENDING]</strong> <strong>ACTION:</strong> DKA to
summarize OSLO and geoLocation conversation in order to spread
knowledge of these efforts among W3C members. [recorded in
<a href=
"http://www.w3.org/2009/09/30-swxg-minutes.html#action01">http://www.w3.org/2009/09/30-swxg-minutes.html#action01</a>]<br />
<strong>[PENDING]</strong> <strong>ACTION:</strong> Mischa to
describe/implement a report of terms and conditions, and how they
change between now and the end of the XG. [recorded in <a href=
"http://www.w3.org/2009/09/30-swxg-minutes.html#action02">http://www.w3.org/2009/09/30-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/10/02 17:05:19 $
</address>
</body>
</html>