13-swxg-minutes.html
36.5 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
<!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>SV_MEETING_TITLE -- 13 Jan 2010</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="SV_MEETING_TITLE" 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>SV_MEETING_TITLE</h1>
<h2>13 Jan 2010</h2>
<p>See also: <a href="http://www.w3.org/2010/01/13-swxg-irc">IRC
log</a></p>
<h2><a name="attendees" id="attendees">Attendees</a></h2>
<div class="intro">
<dl>
<dt>Present</dt>
<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
2010-01-13T16:00-17:00GMT</a></li>
<li><a href="#item02">Reviewiing Charter and Deliverable
Progress</a></li>
<li><a href="#item03">Invited Speakers 2010</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>hhalpin</cite>> trackbot,
reload</p>
<p class='irc'><<cite>danbri</cite>> can you hear me?</p>
<p class='irc'><<cite>bblfish</cite>> we can all hear
you?</p>
<p class='irc'><<cite>danbri</cite>> ok P9 seems to be
me</p>
<p class='phone'>yes we can danbri</p>
<p class='phone'>yes i will scribe</p>
<p class='irc'><<cite>bblfish</cite>> what are you trying
to do?</p>
<p class='phone'>i will mute my phone</p>
<p class='irc'><<cite>bblfish</cite>> it all sounds
good</p>
<h3 id="item01">Convene SWXG WG meeting of
2010-01-13T16:00-17:00GMT</h3>
<p class='irc'><<cite>hhalpin</cite>> chair: hhalpin</p>
<p class='irc'><<cite>hhalpin</cite>> scribe: mischat</p>
<p class='irc'><<cite>hhalpin</cite>> PROPOSED: to
approve SWXG WG Weekly -- 9th December 2009 as a true
record</p>
<p class='irc'><<cite>danbri</cite>> 2nded</p>
<p class='irc'><<cite>hhalpin</cite>> <a href=
"http://www.w3.org/2009/12/09-swxg-minutes.html">http://www.w3.org/2009/12/09-swxg-minutes.html</a></p>
<p class='irc'><<cite>DKA</cite>> +1</p>
<p class='irc'><<cite>hhalpin</cite>> APPROVED: SWXG WG
Weekly -- 9th December 2009 as a true record</p>
<p class='irc'><<cite>hhalpin</cite>> APPROVED: Meeting
again Next Wed.</p>
<p class='phone'>meeting next week, as per usual</p>
<p class='irc'><<cite>danbri</cite>> DKA, congrats re
<a href=
"http://twitter.com/torgo/status/7712380658">http://twitter.com/torgo/status/7712380658</a>
:)</p>
<p class='phone'>use this meeting to perform Action
cleanups?</p>
<p class='irc'><<cite>DKA</cite>> +1</p>
<p class='phone'>+1</p>
<h3 id="item02">Reviewiing Charter and Deliverable
Progress</h3>
<p class='irc'><<cite>hhalpin</cite>> <a href=
"http://www.w3.org/2005/Incubator/socialweb/charter">http://www.w3.org/2005/Incubator/socialweb/charter</a></p>
<p class='irc'><<cite>hhalpin</cite>> In it, we promise
the W3C a number of things.</p>
<p class='irc'><<cite>hhalpin</cite>> 31 March 2010</p>
<p class='irc'><<cite>hhalpin</cite>> Final report.</p>
<p class='phone'>first to review the charter, we promised a
number of things, 31 March 2010 for final report</p>
<p class='phone'>XG final report usually talks about what we
should propose for future standardisation</p>
<p class='phone'>DKA, we have gone into depth into a lot of new
standardisation efforts</p>
<p class='phone'>via our invited speakers mechanism we have had
informative talks from people leading these fledging
efforts</p>
<p class='irc'><<cite>hhalpin</cite>> I'm thinking of
particular places...</p>
<p class='phone'>W3C could play a gluing role to ensure that
these fledging standardisation efforts remain patent free</p>
<p class='irc'><<cite>hhalpin</cite>> danbri?</p>
<p class='irc'><<cite>danbri</cite>> (i'd like to +1 that
... no obvious 'next single thing to stdize ... ' but lots of
things to connect up))</p>
<p class='phone'>DKA hasn't personally identified any specific
standardisation efforts that are needed</p>
<p class='phone'>clearly a role for W3C to be more involved
with trying to coordinating outside efforts</p>
<p class='phone'>danbri woudl like to see a coordination
group</p>
<p class='irc'><<cite>hhalpin</cite>> Anyone else?</p>
<p class='phone'>not a working group</p>
<p class='irc'><<cite>DKA</cite>> +1 to examining the
"coordination group" approach...</p>
<p class='irc'><<cite>danbri</cite>> well, a WG with some
of the characteristics of an Interst Group and/or COordination
Group</p>
<p class='irc'><<cite>danbri</cite>> ie. not making new
stds</p>
<p class='irc'><<cite>Adam</cite>> i agree with danbri's
points about a working group / coordination group</p>
<p class='phone'>question : 3 months left in charter, we have
to write a final report, and we need to recommend work for
future standardisation</p>
<p class='phone'>what area's excite people , that W3C could
create a working group around?</p>
<p class='phone'>what about SKOS?</p>
<p class='irc'><<cite>hhalpin</cite>> tim?</p>
<p class='phone'>Fabian, can't identify any standardisation
work needed to be pursued by the W3C at this point in time
.</p>
<p class='irc'><<cite>hhalpin</cite>> "share assets"
-> micropayments?</p>
<p class='phone'><cite>tpa:</cite> thinks there is a lot of
work to be done in W3C. It seems that we don't have work to do,
because all of the invited speakers talked about their work.
BUt tpa thinks that there are things which the w3c should be
standardisation</p>
<p class='irc'><<cite>hhalpin</cite>> portable contacts
for media assets.</p>
<p class='phone'>for example portable contacts for media assets
is somehting which would be interesting for future
standardisation</p>
<p class='irc'><<cite>hhalpin</cite>> ack ??P27</p>
<p class='irc'><<cite>danbri</cite>> oops</p>
<p class='irc'><<cite>hhalpin</cite>> Christine - we can
look at this next meeting if you want to?</p>
<p class='phone'>christine is currently working on a big
picture document</p>
<p class='phone'>this shouldn't influence the current
discussion re: future plans at the W3C</p>
<p class='phone'>christine agrees with tpa, that there are gaps
in the standards, and that there is much work to be done, but
not sure if W3C is the right place to pursue this work</p>
<p class='irc'><<cite>hhalpin</cite>> This would be Jan
20th?</p>
<p class='irc'><<cite>hhalpin</cite>> Or we could do the
big picture/document on 27th?</p>
<p class='phone'>we would like to get to renato on call with
the SWXG, would be nice to get the XG to look at the big
picture document</p>
<p class='phone'>written by christine and renato</p><a name=
"action01" id="action01"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> hhalpin to ping Renato about Jan 27th
[recorded in <a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action01">http://www.w3.org/2010/01/13-swxg-minutes.html#action01</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-117
- Ping Renato about Jan 27th [on Harry Halpin - due
2010-01-20].</p>
<p class='irc'><<cite>hhalpin</cite>> mischat: happy new
years!</p>
<p class='irc'><<cite>hhalpin</cite>> ... trying to
identify what to standardize post XG</p>
<p class='irc'><<cite>hhalpin</cite>> ... for example, I
could see standardize decentralized social networking</p>
<p class='irc'><<cite>hhalpin</cite>> ... something this
XG should propose?</p>
<p class='irc'><<cite>hhalpin</cite>> ... see a spec to
build a social network and host a bit of it on their own
site.</p>
<p class='irc'><<cite>hhalpin</cite>> ... FOAF+SSL, XMPP,
host it on their site.</p>
<p class='irc'><<cite>hhalpin</cite>> ... maybe we are on
too high of a level?</p>
<p class='irc'><<cite>AnitaD</cite>> +q</p>
<p class='irc'><<cite>bblfish</cite>> some document,
howto on how to get a distributed social web would be good to
have</p>
<p class='irc'><<cite>bblfish</cite>> following on on our
use cases</p>
<p class='phone'><cite>harry:</cite> we have a number of
distinct choices</p>
<p class='irc'><<cite>hhalpin</cite>> We could propose to
extend the XG</p>
<p class='phone'>we could a) Extend the XG, if we dont have a
grasp of the landscape</p>
<p class='irc'><<cite>hhalpin</cite>> We could transform
into IG to help co-ordinate with non-W3C bodies</p>
<p class='irc'><<cite>hhalpin</cite>> or</p>
<p class='phone'>b) we could change into an IG to coordinate
with non W3C</p>
<p class='phone'>i think which is clear is more coordination
between</p>
<p class='phone'>formats and APIs</p>
<p class='irc'><<cite>hhalpin</cite>> 1) Some more
co-ordination around formats/APIS -> in particular, there's
the long awaited, call between Facebook Developer Platform,
OpenSocial, and W3C Widgets</p>
<p class='phone'>for example facebook developer platform,
opensocial, and the W3C widgets</p>
<p class='irc'><<cite>hhalpin</cite>> W3C does
standardize APIs.</p>
<p class='irc'><<cite>hhalpin</cite>> Look at the contact
APIs and Renato's latest vCard, PortableContacts, and FOAF.</p>
<p class='irc'><<cite>FabGandon</cite>> semantic web is
not a WG in W3C, it is an activity ; what the past activity of
this XG suggests to me is that the many topics of Social Web
and their very different needs might require a whole activity
too.</p>
<p class='irc'><<cite>hhalpin</cite>> 2)
OpenMicroblogging as a standard</p>
<p class='phone'>if that call goes well, this could suggest
that W3C would be in the role of standardising APIs</p>
<p class='irc'><<cite>hhalpin</cite>> This might include
talking to Twitter...Twitter APIs.</p>
<p class='irc'><<cite>hhalpin</cite>> 3) Social data
-> policy, provenance and very difficult stuff that neither
RDF or XML do right now.</p>
<p class='phone'>standardising of policy language, provenance,
difficult stuff</p>
<p class='phone'>for RDF</p>
<p class='irc'><<cite>hhalpin</cite>> policy languages,
applying policy languages to FOAF or PortableContacts...</p>
<p class='phone'>so the XG could suggest how RDF could be
updated to be useful to the Social Web</p>
<p class='irc'><<cite>hhalpin</cite>> future work on RDF
2.0 or something.</p>
<p class='phone'>that would not be directly standardising</p>
<p class='irc'><<cite>hhalpin</cite>> OWF on ID Commons
memorandum of agreement out at some point.</p>
<p class='irc'><<cite>hhalpin</cite>> Then's WRAP vs.
OAuth debate</p>
<p class='phone'>Wrap vs OAuth</p>
<p class='phone'><cite>hhalpin:</cite> types too fast ;)</p>
<p class='irc'><<cite>hhalpin</cite>> Or yes, possible
standardization of social extensions to XMPP.</p>
<p class='phone'>AnitaD from vodaphone</p>
<p class='irc'><<cite>hhalpin</cite>> cperey?</p>
<p class='irc'><<cite>cperey</cite>> we will send it to
the list</p>
<p class='phone'>a question for christine, what do you wish to
do with the big picture document</p>
<p class='irc'><<cite>hhalpin</cite>> some high-level
ideas.</p>
<p class='phone'>vodaphone could also provide some ideas and
comments for the document</p>
<p class='phone'>DKA, vodaphone is also doing work using
XMPP</p>
<p class='irc'><<cite>cperey</cite>> the URL to the
document will be sent to the list</p>
<p class='phone'>and they will be interacting with the XMPP
groups, and will be inputting to the XMPP standardisation
effort</p>
<p class='irc'><<cite>cperey</cite>> that's pretty much
what the document Renato and I have been developing</p>
<p class='phone'>DKA is interested in a conceptual architecture
for the Social Web</p>
<p class='irc'><<cite>cperey</cite>> conceptual
architecture</p>
<p class='irc'><<cite>hhalpin</cite>> Talk on the
27th?</p>
<p class='irc'><<cite>hhalpin</cite>> So that Renato can
join.</p>
<p class='phone'>and he thinks it could be an addition to the
Social Web final report</p>
<p class='irc'><<cite>hhalpin</cite>> Feb 3rd.</p>
<p class='phone'>so in feb, vodaphone can talk about XMPP work
they are doing in the Social Web</p>
<p class='irc'><<cite>hhalpin</cite>> use-case document
that tpa - getting pretty close</p>
<p class='phone'>some use cases could be shortened</p>
<p class='irc'><<cite>hhalpin</cite>> we have melvin's
mapping and the list of social networking</p>
<p class='phone'>melvin's mapping</p>
<p class='irc'><<cite>tpa</cite>> or lengthened :)</p>
<p class='phone'>and the list of social networks</p>
<p class='irc'><<cite>hhalpin</cite>> ?</p>
<p class='phone'>i am here</p>
<p class='phone'>i am hear too</p>
<p class='phone'>someone speak</p>
<p class='phone'>i can hear DKA</p>
<p class='phone'>and adam</p>
<p class='phone'>XMPP summit is coming up soon</p>
<p class='phone'>seems like a good chance to meet up</p>
<p class='phone'>if people want to meet at FOSDEM</p>
<p class='phone'>open source conference in brussells</p>
<p class='phone'><cite>buttons:</cite> )</p>
<p class='irc'><<cite>tpa</cite>> mischat: I'll be there
too, on Sunday</p>
<p class='irc'><<cite>danbri</cite>> harry, we miss
you</p>
<p class='irc'><<cite>danbri</cite>> buttons :)</p>
<p class='irc'><<cite>bblfish</cite>> where is harry?</p>
<p class='irc'><<cite>bblfish</cite>> hhaplin we can't
hear you</p>
<p class='phone'>danbri to email the XG to ask people to come
to the XMPP summit</p><a name="action02" id="action02"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> danbri to email the XG to ask people
to come XMPP summit [recorded in <a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action02">http://www.w3.org/2010/01/13-swxg-minutes.html#action02</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-118
- Email the XG to ask people to come XMPP summit [on Dan
Brickley - due 2010-01-20].</p>
<p class='phone'>if people from the XG are going to be there,
they should meet up</p>
<p class='phone'>the next step would be to move into the old
actions</p>
<p class='irc'><<cite>danbri</cite>> ACTION danbri
schedule something on <a href=
"http://www.w3.org/2009/dap/">http://www.w3.org/2009/dap/</a>
and widgets and opensocial</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-119
- Schedule something on <a href=
"http://www.w3.org/2009/dap/">http://www.w3.org/2009/dap/</a>
and widgets and opensocial [on Dan Brickley - due
2010-01-20].</p>
<p class='phone'>there are on the agenda</p><a name="action03"
id="action03"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> adam to take on corporate story
[recorded in <a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action03">http://www.w3.org/2010/01/13-swxg-minutes.html#action03</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-120
- Take on corporate story [on Adam Boyet - due 2010-01-20].</p>
<p class='phone'>adam thinks it is worthwhile</p>
<p class='phone'>tim tagging the stories</p><a name="action04"
id="action04"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[CONTINUES]</strong> tanglade
to tag existing stories [recorded in <a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action04">http://www.w3.org/2010/01/13-swxg-minutes.html#action04</a>]</p><a name="action05"
id="action05"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[DONE]</strong> tanglade to
take on developer narrative and user stories with mischat
[recorded in <a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action05">http://www.w3.org/2010/01/13-swxg-minutes.html#action05</a>]</p>
<p class='irc'><<cite>hhalpin</cite>> [INCOMPLETE]
<strong>ACTION:</strong> (3 weeks) rreck to flesh out anonymous
usecase connecting to multiple identies and null provenance</p>
<p class='phone'><cite>tpa:</cite> to liaise with interested
people to take the tagging forward</p>
<p class='irc'><<cite>bblfish</cite>> is there a list
online?</p>
<p class='phone'>oshani?</p>
<p class='irc'><<cite>hhalpin</cite>> [INCOMPLETE]
<strong>ACTION:</strong> (4 weeks) oshani to reframe the
geolocation/intent/portability</p>
<p class='irc'><<cite>bblfish</cite>> so we can see what
we are talking about?</p><a name="action06" id="action06"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[DONE]</strong> (4 weeks)
bblfish to relabel data protection use case to be about
controlled access and takedown to data "about" you [recorded in
<a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action06">http://www.w3.org/2010/01/13-swxg-minutes.html#action06</a>]</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='phone'>DKA, do we have the minutes from
TPAC</p><a name="action07" id="action07"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[CONTINUES]</strong> DKA to
write-up output of XG meeting in TPAC [recorded in <a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action07">http://www.w3.org/2010/01/13-swxg-minutes.html#action07</a>]</p><a name="action08"
id="action08"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[CONTINUES]</strong> (4 weeks)
DKA to send notes to camp to Social Web XG wiki and BarCamp.org
[recorded in <a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action08">http://www.w3.org/2010/01/13-swxg-minutes.html#action08</a>]</p>
<p class='phone'>ah</p><a name="action09" id="action09"></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/2010/01/13-swxg-minutes.html#action09">http://www.w3.org/2010/01/13-swxg-minutes.html#action09</a>]</p>
<p class='phone'>killing off the invited talks</p><a name=
"action10" id="action10"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[DONE]</strong> Adam to write
up Matt Lee's talk [recorded in <a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action10">http://www.w3.org/2010/01/13-swxg-minutes.html#action10</a>]</p><a name="action11"
id="action11"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[DONE]</strong> oshani to
write up David Recordon and Luke Shepard talk. [recorded in
<a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action11">http://www.w3.org/2010/01/13-swxg-minutes.html#action11</a>]</p>
<p class='phone'>killing off the invited talk related
actions</p><a name="action12" id="action12"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[DONE]</strong> cperey to book
global lockbox as an invited speaker [recorded in <a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action12">http://www.w3.org/2010/01/13-swxg-minutes.html#action12</a>]</p>
<p class='phone'>doodle</p><a name="action13" id=
"action13"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[DONE]</strong> danbri to find
someone from Opera to talk Widgets [recorded in <a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action13">http://www.w3.org/2010/01/13-swxg-minutes.html#action13</a>]</p><a name="action14"
id="action14"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> danbri to setup doodle for widget/api
talk [recorded in <a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action14">http://www.w3.org/2010/01/13-swxg-minutes.html#action14</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-121
- Setup doodle for widget/api talk [on Dan Brickley - due
2010-01-20].</p>
<h3 id="item03">Invited Speakers 2010</h3>
<p class='irc'><<cite>mischat_</cite>> do we want to do
more invited speakers ?</p>
<p class='irc'><<cite>hhalpin</cite>> <a href=
"http://www.w3.org/2005/Incubator/socialweb/wiki/InvitedGuests">
http://www.w3.org/2005/Incubator/socialweb/wiki/InvitedGuests</a></p>
<p class='irc'><<cite>mischat_</cite>> people's
thoughts</p>
<p class='irc'><<cite>mischat_</cite>> ?</p>
<p class='irc'><<cite>cperey</cite>> I think we should
work on the report and then fill in the gaps</p>
<p class='irc'><<cite>mischat_</cite>> probably more
invited speakers than time</p>
<p class='irc'><<cite>hhalpin</cite>> microformats?</p>
<p class='irc'><<cite>cperey</cite>> with invited talks
on topics which we are missing</p>
<p class='irc'><<cite>mischat_</cite>> danbri thinks that
that is an indication that we should turn into an interest
group</p>
<p class='irc'><<cite>tpa</cite>> yeah, I'd say maybe 1
or 2 tops, the most salient speakers and subjects</p>
<p class='irc'><<cite>hhalpin</cite>> microformats is
missing...</p>
<p class='irc'><<cite>mischat_</cite>> we could
transform, and spend the next 2 years talking to people, and we
could become a interest group</p>
<p class='irc'><<cite>mischat_</cite>> anything else
missing from the list ?</p>
<p class='irc'><<cite>mischat_</cite>> would it be
worthwhile continuing for 2 years, just so we could talk to
invited speakers?</p>
<p class='irc'><<cite>hhalpin</cite>> vast amounts of
silence...</p>
<p class='irc'><<cite>bblfish</cite>> hi</p>
<p class='irc'><<cite>cperey</cite>> by the time you got
to the end of the first year, you would need to double back and
ask people what had changed</p>
<p class='irc'><<cite>danbri</cite>> re dap, widgets ....
<a href=
"http://dev.w3.org/2009/dap/contacts/">http://dev.w3.org/2009/dap/contacts/</a></p>
<p class='irc'><<cite>mischat_</cite>> DKA, thinks that
an interest group could be useful</p>
<p class='irc'><<cite>mischat_</cite>> talking and the
exchange of idea is a good thing. One of the values we have got
from invited speakers is discussion which in turn bring people
together to collaborate</p>
<p class='irc'><<cite>cperey</cite>> a webinar
series?</p>
<p class='irc'><<cite>mischat_</cite>> interest group
wouldn't have clear deliverables</p>
<p class='irc'><<cite>hhalpin</cite>> semantic web ig</p>
<p class='irc'><<cite>hhalpin</cite>> make sure it has a
mission</p>
<p class='irc'><<cite>mischat_</cite>> harry, nice thing
about XG definite purpose, and IG's just goes on and on, and
die due to not being focused enough</p>
<p class='irc'><<cite>hhalpin</cite>> or take a bit
longer with the xg</p>
<p class='irc'><<cite>hhalpin</cite>> and come out with
with some definite recommendations.</p>
<p class='irc'><<cite>bblfish</cite>> yes I think
something with a mission is important</p>
<p class='irc'><<cite>mischat_</cite>> if we do do an IG,
it must have a clear reason, and that should be either
coordination or standardisation</p>
<p class='irc'><<cite>hhalpin</cite>> social web
ecosystem....</p>
<p class='irc'><<cite>hhalpin</cite>> doesn't have
that.</p>
<p class='irc'><<cite>bblfish</cite>> otherwise we will
all just end up on swig</p>
<p class='irc'><<cite>hhalpin</cite>> Well the
co-ordination group usually consists of chairs</p>
<p class='irc'><<cite>mischat_</cite>> what is the
difference between an IG and an coordination group</p>
<p class='irc'><<cite>hhalpin</cite>> of WGs.</p>
<p class='irc'><<cite>mischat_</cite>> danbri thinks
people listen to coordination groups</p>
<p class='irc'><<cite>mischat_</cite>> the trick with the
coordination groups is that they tend to coordinate W3C
groups</p>
<p class='irc'><<cite>cperey</cite>> so Harry, before you
go....don't forget to double back and (for short term planning)
decide what's on the agenda for meeting of 20 January?</p>
<p class='irc'><<cite>mischat_</cite>> but any potential
Social Web coordination group would have to coordinate with
outside groups</p>
<p class='irc'><<cite>mischat_</cite>> there is a
precedence for this, in the mobile initiative at the W3C</p>
<p class='irc'><<cite>hhalpin</cite>> I just e-mailed
renato</p>
<p class='irc'><<cite>mischat_</cite>> there was
coordination effort, between W3C and OOMO (????) working
groups</p>
<p class='irc'><<cite>hhalpin</cite>> asking over the
27th.</p>
<p class='irc'><<cite>hhalpin</cite>> If he says yes,
we'll do it.</p>
<p class='irc'><<cite>mischat_</cite>> which stopped the
second group from creating their own html-basic</p>
<p class='irc'><<cite>hhalpin</cite>> Otherwise, Eran and
Ben are happy to talk about the current "conflict" over WRAP
and OAuth.</p>
<p class='irc'><<cite>hhalpin</cite>> But I think it
would be better to have renato talk first.</p>
<p class='irc'><<cite>mischat_</cite>> danbri
coordination could upset people on the outside, 'cause it could
seem that the W3C is attempting to mandate actions of external
groups</p>
<p class='irc'><<cite>mischat_</cite>> good question</p>
<p class='irc'><<cite>danbri</cite>> i stick with my
'it's a bit of a hybrid between IG and CG' line!</p>
<p class='irc'><<cite>mischat_</cite>> people could
sketch out their visions of their possible outcomes of the XG
on the wiki</p>
<p class='irc'><<cite>mischat_</cite>> where on the
wiki?</p>
<p class='irc'><<cite>bblfish</cite>> use case document
-> architectural document on how this is done</p>
<p class='irc'><<cite>bblfish</cite>> this being
distributed social web</p><a name="action15" id="action15"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> hhalpin to doodle over XG vs IG
[recorded in <a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action15">http://www.w3.org/2010/01/13-swxg-minutes.html#action15</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-122
- Doodle over XG vs IG [on Harry Halpin - due 2010-01-20].</p>
<p class='irc'><<cite>danbri</cite>> I'll have a go ...
maybe i'll blog something</p>
<p class='irc'><<cite>DKA</cite>> Happy to help out on
that.</p>
<p class='irc'><<cite>mischat_</cite>> could DKA, look at
how it entails to setup a coordination group over diverse
bodies</p><a name="action16" id="action16"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> danbri and DKA to blog or wikize
something on co-ordination in the social web [recorded in
<a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action16">http://www.w3.org/2010/01/13-swxg-minutes.html#action16</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-123
- And DKA to blog or wikize something on co-ordination in the
social web [on Dan Brickley - due 2010-01-20].</p>
<p class='irc'><<cite>cperey</cite>> I'll send it out at
the end of the meeting today</p>
<p class='irc'><<cite>mischat_</cite>> microformats to
the invited speaker list</p>
<p class='irc'><<cite>mischat_</cite>> to be added that
is :)</p>
<p class='irc'><<cite>hhalpin</cite>> Meeting
Adjourned</p>
<p class='irc'><<cite>DKA</cite>> thanks!</p>
<p class='irc'><<cite>melvster</cite>> thanks</p>
<p class='irc'><<cite>tpa</cite>> by all</p>
<p class='irc'><<cite>mischat_</cite>> HAPPY NEW YEARS
!</p>
<p class='irc'><<cite>mischat_</cite>> bye all</p>
<p class='irc'><<cite>cperey</cite>> bye</p>
<p class='irc'><<cite>tpa</cite>> happy new year</p>
</div>
<h2><a name="ActionSummary" id="ActionSummary">Summary of Action
Items</a></h2><!-- Action Items -->
<strong>[NEW]</strong> <strong>ACTION:</strong> adam to take on
corporate story [recorded in <a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action03">http://www.w3.org/2010/01/13-swxg-minutes.html#action03</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> danbri and DKA to
blog or wikize something on co-ordination in the social web
[recorded in <a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action16">http://www.w3.org/2010/01/13-swxg-minutes.html#action16</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> danbri to email
the XG to ask people to come XMPP summit [recorded in <a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action02">http://www.w3.org/2010/01/13-swxg-minutes.html#action02</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> danbri to setup
doodle for widget/api talk [recorded in <a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action14">http://www.w3.org/2010/01/13-swxg-minutes.html#action14</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> hhalpin to doodle
over XG vs IG [recorded in <a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action15">http://www.w3.org/2010/01/13-swxg-minutes.html#action15</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> hhalpin to ping
Renato about Jan 27th [recorded in <a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action01">http://www.w3.org/2010/01/13-swxg-minutes.html#action01</a>]<br />
<br />
<strong>[PENDING]</strong> <strong>ACTION:</strong> (4 weeks) DKA
to send notes to camp to Social Web XG wiki and BarCamp.org
[recorded in <a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action08">http://www.w3.org/2010/01/13-swxg-minutes.html#action08</a>]<br />
<strong>[PENDING]</strong> <strong>ACTION:</strong> DKA to
write-up output of XG meeting in TPAC [recorded in <a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action07">http://www.w3.org/2010/01/13-swxg-minutes.html#action07</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/2010/01/13-swxg-minutes.html#action09">http://www.w3.org/2010/01/13-swxg-minutes.html#action09</a>]<br />
<strong>[PENDING]</strong> <strong>ACTION:</strong> tanglade to
tag existing stories [recorded in <a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action04">http://www.w3.org/2010/01/13-swxg-minutes.html#action04</a>]<br />
<br />
<strong>[DONE]</strong> <strong>ACTION:</strong> (4 weeks)
bblfish to relabel data protection use case to be about
controlled access and takedown to data "about" you [recorded in
<a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action06">http://www.w3.org/2010/01/13-swxg-minutes.html#action06</a>]<br />
<strong>[DONE]</strong> <strong>ACTION:</strong> Adam to write up
Matt Lee's talk [recorded in <a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action10">http://www.w3.org/2010/01/13-swxg-minutes.html#action10</a>]<br />
<strong>[DONE]</strong> <strong>ACTION:</strong> cperey to book
global lockbox as an invited speaker [recorded in <a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action12">http://www.w3.org/2010/01/13-swxg-minutes.html#action12</a>]<br />
<strong>[DONE]</strong> <strong>ACTION:</strong> danbri to find
someone from Opera to talk Widgets [recorded in <a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action13">http://www.w3.org/2010/01/13-swxg-minutes.html#action13</a>]<br />
<strong>[DONE]</strong> <strong>ACTION:</strong> oshani to write
up David Recordon and Luke Shepard talk. [recorded in <a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action11">http://www.w3.org/2010/01/13-swxg-minutes.html#action11</a>]<br />
<strong>[DONE]</strong> <strong>ACTION:</strong> tanglade to take
on developer narrative and user stories with mischat [recorded in
<a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html#action05">http://www.w3.org/2010/01/13-swxg-minutes.html#action05</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: 2010/01/13 16:55:53 $
</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)
Found Scribe: mischat
Inferring ScribeNick: mischat
WARNING: No "Present: ... " found!
Possibly Present: APPROVED Adam Anita AnitaD Carine DKA FabGandon IPcaller MacTed P18 P27 P9 PROPOSED aaff bblfish claudio cperey danbri hhalpin melvster melvster1 mischat mischat_ oshani tpa trackbot
You can indicate people for the Present list like this:
<dbooth> Present: dbooth jonathan mary
<dbooth> Present+ amy
WARNING: No meeting title found!
You should specify the meeting title like this:
<dbooth> Meeting: Weekly Baking Club Meeting
Got date from IRC log name: 13 Jan 2010
Guessing minutes URL: <a href=
"http://www.w3.org/2010/01/13-swxg-minutes.html">http://www.w3.org/2010/01/13-swxg-minutes.html</a>
WARNING: No person found for ACTION item: (4 weeks) dka to send notes to camp to social web xg wiki and barcamp.org [recorded in <a href="http://www.w3.org/2010/01/13-swxg-minutes.html#action08">http://www.w3.org/2010/01/13-swxg-minutes.html#action08</a>]
People with action items: adam danbri dka hhalpin mischa tanglade
WARNING: Input appears to use implicit continuation lines.
You may need the "-implicitContinuations" option.
</pre>[End of <a href=
"http://dev.w3.org/cvsweb/~checkout~/2002/scribe/scribedoc.htm">
scribe.perl</a> diagnostic output]
</div>
</body>
</html>