25-swxg-minutes.html
44.7 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
<!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 -- 25 Nov
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>25 Nov 2009</h2>
<p>See also: <a href="http://www.w3.org/2009/11/25-swxg-irc">IRC
log</a></p>
<h2><a name="attendees" id="attendees">Attendees</a></h2>
<div class="intro">
<dl>
<dt>Present</dt>
<dd>hhalpin, yoshiaki, AlexPassant, tpa, +1.785.583.aaaa,
tinkster, mischat, +1.314.683.aabb, Carine, +0797094aacc,
MacTed, petef, Adam</dd>
<dt>Regrets</dt>
<dt>Chair</dt>
<dd>hhalpin</dd>
<dt>Scribe</dt>
<dd>tinkster</dd>
</dl>
</div>
<h2>Contents</h2>
<ul>
<li>
<a href="#agenda">Topics</a>
<ol>
<li><a href="#item02">Convene SWXG WG meeting of
2009-11-25T16:00-17:00GMT</a></li>
<li><a href="#item03">User Stories</a></li>
<li><a href="#item04">Final Report</a></li>
<li><a href="#item05">For Final Report</a></li>
<li><a href="#item06">Eran Hammer-Lahav of Yahoo</a></li>
</ol>
</li>
<li><a href="#ActionSummary">Summary of Action Items</a></li>
</ul>
<hr />
<div class="meeting">
<h3 id="item02">Convene SWXG WG meeting of
2009-11-25T16:00-17:00GMT</h3>
<p class='phone'> </p>
<p class='phone'> </p>
<p class='irc'><<cite>trackbot</cite>> Date: 25 November
2009</p>
<p class='irc'><<cite>hhalpin</cite>> scribe:
tinkster</p>
<p class='irc'><<cite>hhalpin</cite>> PROPOSED: to
approve SWXG WG Weekly -- 18th November 2009 as a true
record</p>
<p class='irc'><<cite>hhalpin</cite>> <a href=
"http://www.w3.org/2009/11/18-swxg-minutes.html">http://www.w3.org/2009/11/18-swxg-minutes.html</a></p>
<p class='irc'><<cite>yoshiaki</cite>> i see</p>
<p class='phone'><cite>hhalpin:</cite> Minutes need cleaning
up, but everyone OK with them apart from that?</p>
<p class='irc'><<cite>hhalpin</cite>> RESOLVED: approved
SWXG WG Weekly -- 18th November 2009 as a true record</p>
<p class='irc'><<cite>mischat</cite>> yoshiaki: <a href=
"http://www.w3.org/2001/12/zakim-irc-bot.html">http://www.w3.org/2001/12/zakim-irc-bot.html</a></p>
<p class='irc'><<cite>hhalpin</cite>> PROPOSED: to meet
again Wed. Decemeber 2nd?</p>
<p class='phone'><cite>hhalpin:</cite> Meet again next
week?</p>
<p class='phone'><cite>hhalpin:</cite> No speaker planned for
next week. What should we do?</p>
<p class='irc'><<cite>hhalpin</cite>> Chris Messina next
week.</p>
<p class='irc'><<cite>Adam</cite>> very nice</p>
<p class='irc'><<cite>mischat</cite>> <a href=
"http://activitystrea.ms/">http://activitystrea.ms/</a></p>
<p class='phone'><cite>petef:</cite> Chris Messina has been
confirmed for next week - ActivityStrea.ms</p>
<h3 id="item03">User Stories</h3>
<p class='irc'><<cite>tpa</cite>> one action was
closed</p>
<p class='irc'><<cite>tpa</cite>> I just closed it</p>
<p class='phone'><cite>hhalpin:</cite> Any progress since last
week? We should probably just wrap them up, drop unfinished
ones. Any issues with that?</p>
<p class='irc'><<cite>mischat</cite>> <a href=
"http://www.w3.org/2005/Incubator/socialweb/wiki/UserStories">http://www.w3.org/2005/Incubator/socialweb/wiki/UserStories</a></p>
<p class='irc'><<cite>tpa</cite>> <a href=
"http://www.w3.org/2005/Incubator/socialweb/wiki/UserNarratives">
http://www.w3.org/2005/Incubator/socialweb/wiki/UserNarratives</a></p>
<p class='phone'><cite>hhalpin:</cite> It seems close to
"done". We shouldn't spend too much more time on this.</p>
<p class='irc'><<cite>mischat</cite>> what is the
relationship between the UserStories and the UserNarratives</p>
<p class='irc'><<cite>tpa</cite>> we talked about this
last week</p>
<p class='irc'><<cite>Adam</cite>> think the groups were
already there harry</p>
<p class='phone'><cite>hhalpin:</cite> This needs a strong
editor. Henry, Oshani and Tim have sort of volunteered.</p>
<p class='irc'><<cite>mischat</cite>> <a href=
"http://www.w3.org/2005/Incubator/socialweb/wiki/UserStories#Groups">
http://www.w3.org/2005/Incubator/socialweb/wiki/UserStories#Groups</a>
is empty</p>
<p class='irc'><<cite>hhalpin</cite>> I am happy to step
you through the process of making this is HTML document...</p>
<p class='phone'><cite>tpa:</cite> I was talking with Henry
about this, making them more readable. Dan A gave me an OK to
flesh out this idea.<br />
... This is on the User Narratives wiki page.</p>
<p class='irc'><<cite>Adam</cite>> <a href=
"http://www.w3.org/2005/Incubator/socialweb/wiki/UserNarratives">
http://www.w3.org/2005/Incubator/socialweb/wiki/UserNarratives</a></p>
<p class='phone'><cite>hhalpin:</cite> What should a
roll-your-own-Social-Network tool implement?</p>
<p class='irc'><<cite>hhalpin</cite>> Ah, I see now.</p>
<p class='phone'><cite>tpa:</cite> There are three types of
users we want to address - end users, developer concerns,
business concerns.</p>
<p class='irc'><<cite>hhalpin</cite>> This page is
great!</p>
<p class='irc'><<cite>hhalpin</cite>> +1 tpa, the list is
too long.</p>
<p class='irc'><<cite>Adam</cite>> my understanding was
that they were a way to weave together the user scenarios in to
a larger background</p>
<p class='phone'><cite>tpa:</cite> Aim is to take a big list
and make it more readable/consumable/relatable.</p>
<p class='phone'><cite>hhalpin:</cite> What can we do to
help?</p>
<p class='phone'><cite>tpa:</cite> We have four narratives.
(Fourth one is about corporate usage.)</p>
<p class='irc'><<cite>bblfish</cite>> I can do a prison
story if you like</p>
<p class='irc'><<cite>hhalpin</cite>> Which actions?</p>
<p class='irc'><<cite>hhalpin</cite>> Which action was
done last week?</p>
<p class='irc'><<cite>mischat</cite>> hehe bblfish</p>
<p class='phone'><cite>tpa:</cite> End user story can be
written by tpa. Need help with developer and business
stories.</p>
<p class='irc'><<cite>bblfish</cite>> ;-)</p>
<p class='irc'><<cite>cperey</cite>> what do you mean
business standpoi nt?</p>
<p class='irc'><<cite>Adam</cite>> i think tpa means from
a startup standpoint</p>
<p class='irc'><<cite>cperey</cite>> by business stories
do you mean corporate story?</p>
<p class='phone'><cite>tpa:</cite> This may be a matter of
taking existing user stories and considering them more from a
developer/business angle.</p>
<p class='phone'><cite>cperey:</cite> Different between
corporate and business stories?</p>
<p class='irc'><<cite>cperey</cite>> can you put a URL to
the third story?</p>
<p class='irc'><<cite>mischat</cite>> <a href=
"http://www.w3.org/2005/Incubator/socialweb/wiki/UserNarratives">
http://www.w3.org/2005/Incubator/socialweb/wiki/UserNarratives</a></p>
<p class='irc'><<cite>mischat</cite>> Zoe's ...</p>
<p class='phone'><cite>tpa:</cite> Corporate = social networks
in a corporate context. Business = tech is not an end in
itself; social networks are businesses.</p>
<p class='irc'><<cite>mischat</cite>> <a href=
"http://www.w3.org/2005/Incubator/socialweb/wiki/UserNarratives#Zoe.27s_angel_trust_ponders_funding_Twitbook">
http://www.w3.org/2005/Incubator/socialweb/wiki/UserNarratives#Zoe.27s_angel_trust_ponders_funding_Twitbook</a></p>
<p class='irc'><<cite>hhalpin</cite>> thinks maybe cperey
could run with the business angle</p>
<p class='irc'><<cite>mischat</cite>> agree christine</p>
<p class='phone'><cite>cperey:</cite> Third story seems to be
about how social networks can make money. Is that right?</p>
<p class='irc'><<cite>cperey</cite>> that's where I want
to be so I'm happy to drive it!</p>
<p class='phone'><cite>tpa:</cite> Yes - precisely. I'd welcome
your help on this cperey.</p>
<p class='irc'><<cite>mischat</cite>> i would like to
help with <a href=
"http://www.w3.org/2005/Incubator/socialweb/wiki/UserNarratives#Trent_is_developing_Twitbook">
http://www.w3.org/2005/Incubator/socialweb/wiki/UserNarratives#Trent_is_developing_Twitbook</a></p>
<p class='irc'><<cite>cperey</cite>> Yes</p>
<p class='irc'><<cite>hhalpin</cite>> Should these be
actions?</p>
<p class='phone'><cite>tpa:</cite> Adam is taking lead on
corporate (4th) story.</p>
<p class='phone'><cite>Adam:</cite> yes, that's right.</p>
<p class='phone'><cite>tpa:</cite> Can we talk more about this
next week?</p>
<p class='irc'><<cite>Adam</cite>> peer pressure :)</p>
<p class='irc'><<cite>cperey</cite>> +1</p>
<p class='irc'><<cite>bblfish</cite>> sorry btw, to have
been out of the loop for the last few weeks</p>
<p class='phone'><cite>hhalpin:</cite> We've got a backlog of
actions. We'll put overdueness indicators beside each of them
and start dropping the ones that seem static.</p>
<p class='irc'><<cite>hhalpin</cite>> Let's say end of
Dec. or Jan.</p>
<p class='irc'><<cite>cperey</cite>> +1</p><a name=
"action01" id="action01"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> cperey to flesh out corporate stories
[recorded in <a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action01">http://www.w3.org/2009/11/25-swxg-minutes.html#action01</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-108
- Flesh out corporate stories [on Christine Perey - due
2009-12-02].</p>
<p class='irc'><<cite>cperey</cite>> Christine is not
taking "Corporate stories"</p>
<p class='phone'><cite>mischat:</cite> User stories have one
about Trent, which looks good for developer narrative.</p>
<p class='irc'><<cite>hhalpin</cite>> Oh, wait a sec..the
"angel" story, right cperey?</p>
<p class='irc'><<cite>hhalpin</cite>> I.e. the "business"
story?</p>
<p class='irc'><<cite>cperey</cite>> I'm taking Business
strategies narrative (#3)</p>
<p class='phone'><cite>tobyink:</cite> I can have a look at
that, yes.</p>
<p class='irc'><<cite>hhalpin</cite>> OK, will delete
that previous action after meeting</p><a name="action02" id=
"action02"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> cperey to take business narrative
[recorded in <a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action02">http://www.w3.org/2009/11/25-swxg-minutes.html#action02</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-109
- Take business narrative [on Christine Perey - due
2009-12-02].</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/2009/11/25-swxg-minutes.html#action03">http://www.w3.org/2009/11/25-swxg-minutes.html#action03</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-110
- Take on corporate story [on Adam Boyet - due 2009-12-02].</p>
<p class='irc'><<cite>mischat</cite>> nice one
tinkster</p>
<p class='phone'><cite>mischat:</cite> I'll make a start on
that and liase with tobyink and tpa.</p><a name="action04" id=
"action04"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> mischat to start on developer story
[recorded in <a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action04">http://www.w3.org/2009/11/25-swxg-minutes.html#action04</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Sorry, couldn't
find user - mischat</p><a name="action05" id="action05"></a>
<p class='irc'><<cite>tpa</cite>>
<strong>ACTION:</strong> tanglade to take on developer
narrative and user stories with mischat [recorded in <a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action05">http://www.w3.org/2009/11/25-swxg-minutes.html#action05</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Could not create
new action (failed to parse response from server) - please
contact sysreq with the details of what happened.</p>
<p class='irc'><<cite>trackbot</cite>> Could not create
new action (unparseable data in server response: local variable
'd' referenced before assignment) - please contact sysreq with
the details of what happened.</p>
<p class='irc'><<cite>mischat</cite>> hhalpin: my name on
the w3c is mtiffiel</p><a name="action06" id="action06"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> mtiffiel to start on developer story
[recorded in <a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action06">http://www.w3.org/2009/11/25-swxg-minutes.html#action06</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-112
- Start on developer story [on Mischa Tuffield - due
2009-12-02].</p>
<h3 id="item04">Final Report</h3>
<h3 id="item05">For Final Report</h3>
<p class='irc'><<cite>mischat</cite>> there you go
mhausenblas we are on Final Report now ;)</p>
<p class='irc'><<cite>hajons</cite>> yes</p>
<p class='irc'><<cite>cperey</cite>> who?</p>
<p class='irc'><<cite>hhalpin</cite>> tim berners-lee</p>
<p class='phone'><cite>hhalpin:</cite> We have lots of writeups
of speakers.</p>
<p class='irc'><<cite>cperey</cite>> ah, is there a
URL?</p>
<p class='irc'><<cite>cperey</cite>> :-)</p>
<p class='irc'><<cite>mischat</cite>> when is it due
?</p>
<p class='irc'><<cite>cperey</cite>> we need to make
recommendations</p>
<p class='phone'><cite>hhalpin:</cite> For final report, see if
timbl can talk about his big vision; I'm happy to consolidate
the various small pieces around that.</p><a name="action07" id=
"action07"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[CONTINUES]</strong> adam to
write up the boeing use case for enterprise social networks
[recorded in <a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action07">http://www.w3.org/2009/11/25-swxg-minutes.html#action07</a>]</p><a name="action08"
id="action08"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[CONTINUES]</strong> oshani to
reframe the geolocation/intent/portability [recorded in
<a href="http://www.w3.org/2009/11/25-swxg-minutes.html#action08">
http://www.w3.org/2009/11/25-swxg-minutes.html#action08</a>]</p><a name="action09"
id="action09"></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 [recorded in <a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action09">http://www.w3.org/2009/11/25-swxg-minutes.html#action09</a>]</p>
<p class='irc'><<cite>hajons</cite>> Good idea. His
vision was not entirely clear to me, so I think him writing
something about it would be great</p><a name="action10" id=
"action10"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[CONTINUES]</strong> bblfish
to merge Family and Group access usecases [recorded in <a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action10">http://www.w3.org/2009/11/25-swxg-minutes.html#action10</a>]</p><a name="action11"
id="action11"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[CONTINUES]</strong> hhalpin
explain to henry and oshani doc editing process for usecases
[recorded in <a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action11">http://www.w3.org/2009/11/25-swxg-minutes.html#action11</a>]</p><a name="action12"
id="action12"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[CONTINUES]</strong> DKA to
write-up output of XG meeting next Tuesday [recorded in
<a href="http://www.w3.org/2009/11/25-swxg-minutes.html#action12">
http://www.w3.org/2009/11/25-swxg-minutes.html#action12</a>]</p>
<p class='phone'>tpa?: His vision was changing the architecture
for how this social data is stored and accessed.</p><a name=
"action13" id="action13"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[CONTINUES]</strong> DKA to
send notes to camp to Social Web XG wiki and BarCamp.org
[recorded in <a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action13">http://www.w3.org/2009/11/25-swxg-minutes.html#action13</a>]</p><a name="action14"
id="action14"></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/11/25-swxg-minutes.html#action14">http://www.w3.org/2009/11/25-swxg-minutes.html#action14</a>]</p><a name="action15"
id="action15"></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/11/25-swxg-minutes.html#action15">http://www.w3.org/2009/11/25-swxg-minutes.html#action15</a>]</p>
<p class='phone'><cite>hhalpin:</cite> I'll try to get timbl
involved.</p><a name="action16" id="action16"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[CONTINUES]</strong> Adam to
write up Matt Lee's talk [recorded in <a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action16">http://www.w3.org/2009/11/25-swxg-minutes.html#action16</a>]</p><a name="action17"
id="action17"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[CONTINUES]</strong> mtuffied
to put up wiki page about social networks deploying these
technologies. [recorded in <a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action17">http://www.w3.org/2009/11/25-swxg-minutes.html#action17</a>]</p><a name="action18"
id="action18"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> <strong>[CONTINUES]</strong> oshani to
write up David Recordon and Luke Shepard talk [recorded in
<a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action18">http://www.w3.org/2009/11/25-swxg-minutes.html#action18</a>]</p><a name="action19"
id="action19"></a>
<p class='irc'><<cite>hhalpin</cite>>
<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/11/25-swxg-minutes.html#action19">http://www.w3.org/2009/11/25-swxg-minutes.html#action19</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-113
- Try to get TimBL to either talk or write-up his use-cases [on
Harry Halpin - due 2009-12-02].</p>
<p class='phone'>tpa?: Tim's vision is that the data is stored
in the cloud and you'd use apps to process that.</p>
<p class='irc'><<cite>cperey</cite>> The final report: we
need to make recommendations</p>
<h3 id="item06">Eran Hammer-Lahav of Yahoo</h3>
<p class='phone'><cite>hhalpin:</cite> Eran's gotten OAuth off
the ground, simplified XRD, etc. Eran can you introduce your
work?</p>
<p class='irc'><<cite>cperey</cite>> person who just
entered</p>
<p class='phone'><cite>Eran:</cite> The basic premise is to
bootstrap new social protocols on top of existing web arch;
allow people to identify themselves using (interrupted)</p>
<p class='irc'><<cite>claudio</cite>> Zakin, mute me</p>
<p class='phone'><cite>Eran:</cite> OAuth takes care of
security/authorisation part.<br />
... But how do we find out what services a person uses, their
preferences, their friends, etc?<br />
... Started by looking at how to make OAuth easier.<br />
... Has expanded into 5 or 6 specs across multiple
standardisation bodies.<br />
... It's a big/common problem. Value in solving it
consistently.</p>
<p class='irc'><<cite>hhalpin</cite>> +1 to links being
fundamental building block</p>
<p class='phone'><cite>Eran:</cite> Links are a fundamental
building block. If I've got a URI, I can get a representation
of that and find more links from it.<br />
... Using HTML <link> elements we started to run into
some problems.<br />
... Adding the links changes to documents and violates the
purity of the document.<br />
... Retrieving the documents is a lot of work.</p>
<p class='irc'><<cite>PhilA2</cite>> See <a href=
"http://tools.ietf.org/html/draft-nottingham-http-link-header-06">
http://tools.ietf.org/html/draft-nottingham-http-link-header-06</a></p>
<p class='phone'><cite>Eran:</cite> So we've been looking at
the HTTP "Link" header which was taken out of HTTP 1.1 but
we're trying to bring back.<br />
... Allows links in the HTTP header itself.<br />
... HTTP also used to have LINK and UNLINK methods in addition
to GET, POST, etc.</p>
<p class='irc'><<cite>hhalpin</cite>> I vaguely remember
hearing/reading from Roy that the removal of "Link" from HTTP
was a cut-and-paste error :)</p>
<p class='irc'><<cite>mischat</cite>> <a href=
"http://www.w3.org/Protocols/9707-link-header.html">http://www.w3.org/Protocols/9707-link-header.html</a></p>
<p class='irc'><<cite>jar</cite>> no, that was removal of
Link: header, not LINK method</p>
<p class='phone'><cite>Eran:</cite> Still looking for ways to
make this better. Sometimes resources don't have a
representation at all, so GET/HEAD don't return anything
useful.</p>
<p class='irc'><<cite>mischat</cite>> ah</p>
<p class='irc'><<cite>hhalpin</cite>> meant link header
:)</p>
<p class='phone'><cite>Eran:</cite> Yadis/XRDS uses content
negotiation to do this. You'd make a request for a URI and ask
for XRDS and get a description.</p>
<p class='irc'><<cite>hhalpin</cite>> interesting point
re misbehaving proxies for conneg.</p>
<p class='phone'><cite>Eran:</cite> But this doesn't seem to be
an appropriate use of conneg. And big consumers like Yahoo
refused to use it because of the risk of broken proxies.<br />
... But how about using a pattern which maps between resource
URIs and description URIs. We spent 6 months trying to figure
out where to store that mapping pattern.</p>
<p class='irc'><<cite>hhalpin</cite>> Am a bit confused
about relationship between host-meta and .well-known</p>
<p class='phone'><cite>Eran:</cite> We came up with two
solutions. One was a well-known document called first
site-meta, then host-meta, then .well-known.<br />
... There isn't a good way of storing this information other
than well-known locations. (Other than DNS, more on that
later.)<br />
... HTTP OPTIONS looked promising, but not cachable or widely
implemented/understood.<br />
... LRDD tries to unify all these ideas. If you have a resource
identified by a URI, there are three paths to find descriptions
for it. (Not all of them will always be available.)</p>
<p class='irc'><<cite>PhilA2</cite>> Eran's excellent
summary of this issue from September 2008 is at <a href=
"http://hueniverse.com/2008/09/discovery-and-http/">http://hueniverse.com/2008/09/discovery-and-http/</a></p>
<p class='phone'><cite>Eran:</cite> 1. <link> elements
within document; 2. Link HTTP headers; 3. host-meta.</p>
<p class='irc'><<cite>hhalpin</cite>> +1 order of
precedence</p>
<p class='phone'><cite>Eran:</cite> LRDD started as a very
generic solution, but we plan on making it less generic because
host-meta/.well-known provides alternative building-blocks for
more flexible solutions.</p>
<p class='irc'><<cite>bblfish</cite>> I had a question
earlier</p>
<p class='irc'><<cite>PhilA2</cite>> This document
<a href=
"http://www.w3.org/2001/tag/doc/mime-respect">http://www.w3.org/2001/tag/doc/mime-respect</a>
suggests that HTTP Link should be the first/most
authoritative</p>
<p class='phone'><cite>hhalpin:</cite> What if different
sources of metadata contradict each other? What are the social
web use cases?</p>
<p class='phone'><cite>Eran:</cite> If you use OpenID, you're
starting with an identifier. The application then needs to
figure out from that how to authenticate you.</p>
<p class='irc'><<cite>hhalpin</cite>> Exactly, that's
where LRDD or some notion of "authoritative" metadata algorithm
would be useful.</p>
<p class='phone'><cite>Eran:</cite> Because OpenID is a
security protocol, it's important that all apps use the same
approach - otherwise conflicting data could be very
problematic.<br />
... OpenID thus has a very well-defined order of precedence
when looking for links.<br />
... For LRDD, when you take a URI, you need to figure out which
description methods are available to you.<br />
... Once you know your options, the issues are which do you try
first, and what happens if you get different response
codes?<br />
... Link header is defined differently to other headers. A
"Link" header on an HTTP 401 page is a link from the error
page, not a link from the thing you asked for.<br />
... If there's a 303, do you follow the redirection and use the
links at the destination; or both?<br />
... Different people will want to take different
approaches.<br />
... Some will want to slurp up as much data as possible; some
will want to stop as soon as they find what they need.<br />
... LRDD right now is essentially an inventory of your
options.<br />
... Another way we could have written LRDD would be to say
which order you should check descriptions.<br />
... Right now we want to move to a very deterministic approach,
because the building blocks are still there for those who want
to do things differently.</p>
<p class='irc'><<cite>hhalpin</cite>> <a href=
"http://www.iana.org/assignments/relation/">http://www.iana.org/assignments/relation/</a></p>
<p class='irc'><<cite>PhilA2</cite>> See <a href=
"http://www.iana.org/assignments/link-relations/link-relations.xhtml">
http://www.iana.org/assignments/link-relations/link-relations.xhtml</a></p>
<p class='phone'><cite>hhalpin:</cite> <link> doesn't
have a centralised registry. HTML5 has a wiki page. IANA might
be starting a registry.</p>
<p class='irc'><<cite>hhalpin</cite>> all we have right
now is ATOM :)</p>
<p class='irc'><<cite>PhilA2</cite>> (The link I posted
was for Atom)</p>
<p class='phone'><cite>Eran:</cite> mnot started resurrecting
Link and merging it with the Atom <link> registry.</p>
<p class='irc'><<cite>hhalpin</cite>> Maybe just update
that Atom page?</p>
<p class='irc'><<cite>hhalpin</cite>> Or maybe not...</p>
<p class='phone'><cite>Eran:</cite> Some relationships have
very specific meanings for particular media - e.g.
rel="stylesheet" in HTML.</p>
<p class='irc'><<cite>PhilA2</cite>> HTTP Link Header
draft establishes a new registry. See <a href=
"http://tools.ietf.org/html/draft-nottingham-http-link-header-06#section-6.2">
http://tools.ietf.org/html/draft-nottingham-http-link-header-06#section-6.2</a></p>
<p class='irc'><<cite>mischat</cite>> sounds like
rdfa</p>
<p class='phone'><cite>Eran:</cite> People expect relationships
to have semantic meanings like "parent" or "copyright". Some
people want to restrict the media type / format of the linked
object.</p>
<p class='irc'><<cite>hhalpin</cite>> well, this would be
a way to give something like "foaf:Person" a shortname</p>
<p class='irc'><<cite>hhalpin</cite>> and solve the
rather infamous namespace issue, i.e.what if people forget the
namespace for certain well-known RDF vocabularies?</p>
<p class='phone'><cite>Eran:</cite> We'll probably have two
types of relationship - some which are useful across different
contexts - and these will be registered.</p>
<p class='irc'><<cite>Zakim</cite>> mhausenblas, you
wanted to ask on XRD deployment (re update on <a href=
"http://linkeddata.deri.ie/tr/2009-discovery)">http://linkeddata.deri.ie/tr/2009-discovery)</a></p>
<p class='phone'><cite>Eran:</cite> Other than that you can use
a URI for a relationship type and you don't need to register
it.</p>
<p class='irc'><<cite>mischat</cite>> sure, but the
beauty of rdf is that you can say anything, why have to wait
for a standard to be drawn out</p>
<p class='irc'><<cite>mischat</cite>> +1 tinkster</p>
<p class='irc'><<cite>PhilA2</cite>> yeay!</p>
<p class='irc'><<cite>hhalpin</cite>> +1 for having a
centralized registries</p>
<p class='phone'><cite>Eran:</cite> For HTML5 we hope to avoid
the need for different registry.</p>
<p class='phone'><cite>mhausenblas:</cite> Do you have any info
on the XRD deployment base?</p>
<p class='phone'><cite>Eran:</cite> it's going through OASIS.
We've got another change to align better with Atom's links that
still needs to happen.</p>
<p class='irc'><<cite>mischat</cite>> mmm gmail foaf
page?</p>
<p class='phone'><cite>Eran:</cite> In terms of deployment,
it's used in Gmail/Yahoo for WebFinger. Not much data there.
Gmail point to some FOAF.</p>
<p class='irc'><<cite>mischat</cite>> is that out already
?</p>
<p class='phone'><cite>Eran:</cite> We're waiting for some of
the missing pieces to drop into place, especially LRDD.</p>
<p class='phone'><cite>hhalpin:</cite> What's the relationship
between .well-known and host-meta?</p>
<p class='irc'><<cite>hhalpin</cite>> has one been
deprecated?</p>
<p class='phone'><cite>Eran:</cite> Originally wanted to have
one document called site-meta which would be *the* place to
link to other documents. No more well-known URIs ever.<br />
... It was then renamed to host-meta because site is not the
right term.<br />
... But people said it would never work - it adds too much
indirection.<br />
... Concerns that "/host-meta" might already be used on some
hosts.</p>
<p class='irc'><<cite>hhalpin</cite>> Ah, good point re
someone getting /hoste-meta</p>
<p class='phone'><cite>Eran:</cite> So instead we decided that
any well-known paths are OK, so long as they start with
"/.well-known/" and are registered.<br />
... But rather than require people to register well-known
documents, they can still use host-meta to store data if that's
more suitable.<br />
... An HTTP server on port 80 also has authority to provide
host-meta data for other services on other ports (but the same
host name).</p>
<p class='phone'><cite>hhalpin:</cite> Any more questions?</p>
<p class='irc'><<cite>jar</cite>> TAG is trying to track
this, but there needs to be more coordination</p>
<p class='irc'><<cite>mischat</cite>> are you there
tinkster</p>
<p class='irc'><<cite>mischat</cite>> i can scribe</p>
<p class='irc'><<cite>jar</cite>> (actually I meant more
coordination within W3C!)</p>
<p class='phone'><cite>Eran:</cite> I'm in constant touch with
W3C TAG; make sure they're aware of this work and provide
feedback.</p>
<p class='irc'><<cite>mischat</cite>> does the W3C need
to track the LRDD, and similar outputs from the OpenID/OAuth
world</p>
<p class='phone'><cite>Eran:</cite> Role of W3C should be
formats, more ways of describing metadata, making RDF easier to
use for descriptions.<br />
... W3C doesn't seem agile enough to support these communities.
That's a bigger topic - how do we get the audience of the W3C
to participate in these ideas without slowing down spec
generation?</p>
<p class='irc'><<cite>PhilA2</cite>> Can't help noting
that POWDER is all about making RDF about lots of resources
easier to publish ;-)</p>
<p class='irc'><<cite>jar</cite>> among other things, W3C
should decide how to advise use of these link mechanisms for
nose-following... is POWDER the whole story?</p>
<p class='irc'><<cite>hajons</cite>> example host-meta:
<a href=
"http://gmail.com/.well-known/host-meta">http://gmail.com/.well-known/host-meta</a></p>
<p class='phone'><cite>Eran:</cite> Maybe eventually we would
want to turn to W3C or similar for standardisation once the
specs are more stable.</p>
<p class='irc'><<cite>jar</cite>> I mean RDF
nose-following specifically</p>
<p class='irc'><<cite>PhilA2</cite>> Even I wouldn't
claim POWDER's the whole story jar!</p>
<p class='phone'><cite>Eran:</cite> This has been discussed
extensively on TAG, so they're paying attention. TAG issues 62
and 63 relate to it.</p>
<p class='irc'><<cite>jar</cite>> (POWDER needs credit
& standing. gets overlooked)</p>
<p class='phone'><cite>hhalpin:</cite> It's been discussed a
lot recently what should be changed with RDF.</p>
<p class='irc'><<cite>mischat</cite>> interesting
hajons</p>
<p class='phone'><cite>hhalpin:</cite> At TPAC we discussed
what the W3C could do to become more agile. Incubator groups
seem a good start, but what would be better?<br />
... Can the W3C give advice on, e.g. how IP issues can be
resolved?</p>
<p class='phone'><cite>Eran:</cite> W3C participation is very
expensive.<br />
... Open Web Foundation exists because a lot of people don't
want to work within established standards bodies.<br />
... Standards bodies can address some of these issues, but
others cannot be addressed because of the very nature of
standards bodies.<br />
... OAuth started as a bunch of people hacking at something to
try to make it work, but wanted a more "adult" spec, so turned
to IETF,<br />
... If XRD hadn't started within OASIS, then I would have taken
XRD Simple to the W3C once it was getting mature.</p>
<p class='irc'><<cite>caribou</cite>> waiting until they
are in stable state is not saving time</p>
<p class='phone'><cite>Eran:</cite> Little communication
between standards bodies and communities.<br />
... Standards bodies need to look at how we can support this
work without getting jealous and competing.</p>
<p class='phone'><cite>hhalpin:</cite> Right now W3C is
concentrating a lot on APIs.</p>
<p class='irc'><<cite>Zakim</cite>> PhilA, you wanted to
chip in</p>
<p class='phone'><cite>hhalpin:</cite> We'd like to run our
final report by you.</p>
<p class='phone'><cite>Eran:</cite> Sure.</p>
<p class='phone'><cite>PhilA:</cite> Device Application Working
Group has taken ideas from outside the W3C.<br />
... I met Eran just over a year ago. If I'd seen XRD before we
started POWDER (or vice versa) we might not have ended up with
them both.<br />
... Some competition is inevitable because not everybody
communicates with everybody else.</p>
<p class='phone'><cite>Eran:</cite> I meant more about
gratuitous competing standards.</p>
<p class='phone'><cite>hhalpin:</cite> Academic journals - if
you have a good paper, there's often only one journal it should
be sent to.</p>
<p class='irc'><<cite>hhalpin</cite>> or is that
problematic?</p>
<p class='irc'><<cite>mischat</cite>> i have to go now
people, will follow on IRC</p>
<p class='phone'><cite>hhalpin:</cite> Perhaps standards should
be endorsed by multiple different organisations. Perhaps W3C
should be able to say, "for this use case, take a look at this
spec".</p>
<p class='phone'><cite>Eran:</cite> W3C stamp means more than
"this is a good idea" - it has e.g. IP consequences.<br />
... With XRD we spent a year throwing things out.</p>
<p class='irc'><<cite>hhalpin</cite>> easier to let
people who start something finish it - like that point.</p>
<p class='irc'><<cite>hajons</cite>> have to go. thanks
for a great talk</p>
<p class='phone'><cite>Eran:</cite> But spec writing doesn't
need to take long. It would be good if there was an easy path
for turning a community spec into a standard.<br />
... The W3C already has the right expertise.</p>
<p class='irc'><<cite>hhalpin</cite>> well, we could
imagine something like OWF or something jumping in where the XG
process is right here.</p>
<p class='phone'><cite>Eran:</cite> I'm involved in this work
because of my day-job with Yahoo.</p>
<p class='phone'><cite>hhalpin:</cite> Thanks Eran. We'll be
wrapping up now.<br />
... Final Report should be in draft form in Jan/Feb. We'd like
to hear any ideas you've got.<br />
... What would you suggest we say in our summary of
OAuth/WRAP?</p>
<p class='irc'><<cite>hhalpin</cite>> At some point, we
should have serious discussion on maybe this topic - how to
avoid rubber-stamping?</p>
<p class='phone'><cite>Eran:</cite> I'm happy to talk about
this in the future. Now that it's 8am it's not so bad!</p>
<p class='irc'><<cite>cperey</cite>> bye all</p>
<p class='irc'><<cite>hhalpin</cite>> Meeting
adjourned.</p>
<p class='phone'>Fin.</p>
<p class='irc'><<cite>hhalpin</cite>> trackbot, end
meeting</p>
<p class='irc'><<cite>cperey</cite>> very valuable</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/2009/11/25-swxg-minutes.html#action03">http://www.w3.org/2009/11/25-swxg-minutes.html#action03</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> cperey to flesh
out corporate stories [recorded in <a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action01">http://www.w3.org/2009/11/25-swxg-minutes.html#action01</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> cperey to take
business narrative [recorded in <a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action02">http://www.w3.org/2009/11/25-swxg-minutes.html#action02</a>]<br />
<strong>[NEW]</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/11/25-swxg-minutes.html#action19">http://www.w3.org/2009/11/25-swxg-minutes.html#action19</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> mischat to start
on developer story [recorded in <a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action04">http://www.w3.org/2009/11/25-swxg-minutes.html#action04</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> mtiffiel to start
on developer story [recorded in <a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action06">http://www.w3.org/2009/11/25-swxg-minutes.html#action06</a>]<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> tanglade to take
on developer narrative and user stories with mischat [recorded in
<a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action05">http://www.w3.org/2009/11/25-swxg-minutes.html#action05</a>]<br />
<br />
<strong>[PENDING]</strong> <strong>ACTION:</strong> Adam to write
up Matt Lee's talk [recorded in <a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action16">http://www.w3.org/2009/11/25-swxg-minutes.html#action16</a>]<br />
<strong>[PENDING]</strong> <strong>ACTION:</strong> adam to write
up the boeing use case for enterprise social networks [recorded
in <a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action07">http://www.w3.org/2009/11/25-swxg-minutes.html#action07</a>]<br />
<strong>[PENDING]</strong> <strong>ACTION:</strong> bblfish to
merge Family and Group access usecases [recorded in <a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action10">http://www.w3.org/2009/11/25-swxg-minutes.html#action10</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 [recorded in <a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action09">http://www.w3.org/2009/11/25-swxg-minutes.html#action09</a>]<br />
<strong>[PENDING]</strong> <strong>ACTION:</strong> DKA to send
notes to camp to Social Web XG wiki and BarCamp.org [recorded in
<a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action13">http://www.w3.org/2009/11/25-swxg-minutes.html#action13</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/11/25-swxg-minutes.html#action14">http://www.w3.org/2009/11/25-swxg-minutes.html#action14</a>]<br />
<strong>[PENDING]</strong> <strong>ACTION:</strong> DKA to
write-up output of XG meeting next Tuesday [recorded in <a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action12">http://www.w3.org/2009/11/25-swxg-minutes.html#action12</a>]<br />
<strong>[PENDING]</strong> <strong>ACTION:</strong> hhalpin
explain to henry and oshani doc editing process for usecases
[recorded in <a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action11">http://www.w3.org/2009/11/25-swxg-minutes.html#action11</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/11/25-swxg-minutes.html#action15">http://www.w3.org/2009/11/25-swxg-minutes.html#action15</a>]<br />
<strong>[PENDING]</strong> <strong>ACTION:</strong> mtuffied to
put up wiki page about social networks deploying these
technologies. [recorded in <a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action17">http://www.w3.org/2009/11/25-swxg-minutes.html#action17</a>]<br />
<strong>[PENDING]</strong> <strong>ACTION:</strong> oshani to
reframe the geolocation/intent/portability [recorded in <a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action08">http://www.w3.org/2009/11/25-swxg-minutes.html#action08</a>]<br />
<strong>[PENDING]</strong> <strong>ACTION:</strong> oshani to
write up David Recordon and Luke Shepard talk [recorded in
<a href=
"http://www.w3.org/2009/11/25-swxg-minutes.html#action18">http://www.w3.org/2009/11/25-swxg-minutes.html#action18</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/11/30 14:08:39 $
</address>
</body>
</html>