10-swxg-minutes.html
48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
<!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 (vers 6 November 2007), see www.w3.org" />
<title>Social Web Incubator Group Teleconference -- 10 Feb
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="Social Web Incubator Group Teleconference" name=
"Title" />
<meta content="text/html; charset=utf-8" http-equiv=
"Content-Type" />
</head>
<body>
<p><a href="http://www.w3.org/"><img src=
"http://www.w3.org/Icons/w3c_home" alt="W3C" border="0" height=
"48" width="72" /></a></p>
<h1>- DRAFT -</h1>
<h1>Social Web Incubator Group Teleconference</h1>
<h2>10 Feb 2010</h2>
<p>See also: <a href="http://www.w3.org/2010/02/10-swxg-irc">IRC
log</a></p>
<h2><a name="attendees" id="attendees">Attendees</a></h2>
<div class="intro">
<dl>
<dt>Present</dt>
<dd>tpa, [IPcaller], Dsr, Doug_Schepers, hhalpin,
+1.510.931.aaaa, manu, melvster1, bblfish, +0774811aabb,
+049172247aacc, +1.617.838.aadd</dd>
<dt>Regrets</dt>
<dt>Chair</dt>
<dd>hhalpin</dd>
<dt>Scribe</dt>
<dd>melvster</dd>
</dl>
</div>
<h2>Contents</h2>
<ul>
<li>
<a href="#agenda">Topics</a>
<ol>
<li><a href="#item01">Convene SWXG WG meeting of
2010-02-10T16:00-17:00GMT</a></li>
<li><a href="#item02">Action Reminders</a></li>
<li><a href="#item03">Discussion of high-level
discussions</a></li>
<li><a href="#item04">PaySwarm Discussion</a></li>
<li><a href="#item05">Manu Sporny and Doug Schepers on
Payswarm</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: 10 February
2010</p>
<p class='irc'><<cite>tpa</cite>> ah. All alone
again.</p>
<p class='irc'><<cite>manu</cite>> Zakim left the
channel</p>
<p class='irc'><<cite>manu</cite>> ?</p>
<p class='irc'><<cite>danbri</cite>> i can't call in
right now, will lurk in irc ... try to get on later</p>
<p class='irc'><<cite>manu</cite>> uhh</p>
<p class='phone'>ill try :)</p>
<p class='phone'>any quick tips?</p>
<p class='phone'>(not scribed before)</p>
<p class='irc'><<cite>manu</cite>> scribenick:
melvster</p>
<p class='phone'>thanks!</p>
<h3 id="item01">Convene SWXG WG meeting of
2010-02-10T16:00-17:00GMT</h3>
<p class='irc'><<cite>hhalpin</cite>> scribe:
melvster</p>
<p class='irc'><<cite>tpa</cite>> yup?</p>
<p class='irc'><<cite>AnitaD</cite>> yes, Anita
Doehler</p>
<p class='irc'><<cite>AnitaD</cite>> AD is the German
number</p>
<p class='irc'><<cite>hhalpin</cite>> PROPOSED: to
approve SWXG WG Weekly -- 27 January 2010 as a true record</p>
<p class='phone'><cite>hhalpin:</cite> approve meeting
minutes?</p>
<p class='irc'><<cite>tpa</cite>> +1</p>
<p class='irc'><<cite>hhalpin</cite>> <a href=
"http://www.w3.org/2010/02/03-swxg-minutes.html">http://www.w3.org/2010/02/03-swxg-minutes.html</a></p>
<p class='irc'><<cite>hhalpin</cite>> APPROVED: SWXG WG
Weekly -- 27 January 2010 as a true record</p>
<p class='phone'><cite>hhalpin:</cite> meeting next week dick
hardt</p>
<p class='irc'><<cite>hhalpin</cite>> PROPOSED: to meet
again Wed. February 17th: Dick Hardt on OpenID and WRAP</p>
<p class='irc'><<cite>hhalpin</cite>> RESOLVED: meet
again Wed. February 17th: Dick Hardt on OpenID and WRAP</p>
<p class='irc'><<cite>rreck</cite>> +1 meet again</p>
<h3 id="item02">Action Reminders</h3>
<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'><cite>hhalpin:</cite> action reminders, see
weekly agenda<br />
... first step high level principles</p>
<h3 id="item03">Discussion of high-level discussions</h3>
<p class='phone'><cite>hhalpin:</cite> there've been some
emails</p>
<p class='irc'><<cite>hhalpin</cite>> <a href=
"http://lists.w3.org/Archives/Public/public-xg-socialweb/2010Jan/0019.html">
http://lists.w3.org/Archives/Public/public-xg-socialweb/2010Jan/0019.html</a></p>
<p class='irc'><<cite>DKA</cite>> +1 for consensus</p>
<p class='phone'><cite>hhalpin:</cite> good discussion, we may
want to try and reach consensus</p>
<p class='phone'><cite>AnitaD:</cite> a few different
responses, perhaps we can restart the discussion<br />
... perhaps misunderstanding over wording<br />
... some of the discussion was related to apps rather than
UGC</p>
<p class='irc'><<cite>hhalpin</cite>> +1 to
misunderstanding :)</p>
<p class='phone'><cite>AnitaD:</cite> for example 1st principle
-- what you see depends on who you are</p>
<p class='irc'><<cite>bblfish</cite>> yes, so for 1 the
wording needs to be improoved a little</p>
<p class='phone'><cite>AnitaD:</cite> UGC depends on my
relationship to the visitor, depending on what they can see</p>
<p class='irc'><<cite>bblfish</cite>> so the intetnion is
good</p>
<p class='phone'><cite>hhalpin:</cite> im ok with that 1st
principle<br />
... christine did some good work putting this in a table</p>
<p class='irc'><<cite>hhalpin</cite>> <a href=
"http://www.w3.org/2005/Incubator/socialweb/wiki/SocialWebFrameworks#The_Terminology">
http://www.w3.org/2005/Incubator/socialweb/wiki/SocialWebFrameworks#The_Terminology</a></p>
<p class='phone'><cite>bblfish:</cite> good thought, perhaps
empahsis should be on the person publishing it</p>
<p class='irc'><<cite>hhalpin</cite>> "Who sees what
depends on who they are"?</p>
<p class='irc'><<cite>rreck</cite>> or the role they are
instantiating</p>
<p class='phone'><cite>bblfish:</cite> tricky to word,
difficult to get it right</p>
<p class='irc'><<cite>rreck</cite>> a person can be
fulfilling different purposes at different times</p>
<p class='irc'><<cite>rreck</cite>> horrible idea</p>
<p class='irc'><<cite>hhalpin</cite>> If you want, I can
put out Chris Saad's point</p>
<p class='phone'><cite>DKA:</cite> idea -- each principle
should be a haiku :)</p>
<p class='irc'><<cite>hhalpin</cite>> "Why? Maybe the
site is designed to have a water cooler style 'what's</p>
<p class='irc'><<cite>hhalpin</cite>> popular' approach
(like most sites today) - why mandate a personalized</p>
<p class='irc'><<cite>hhalpin</cite>> experience?</p>
<p class='irc'><<cite>hhalpin</cite>> "</p>
<p class='irc'><<cite>rreck</cite>> palindrome</p>
<p class='irc'><<cite>hhalpin</cite>> <a href=
"http://lists.w3.org/Archives/Public/public-xg-socialweb/2010Jan/0025.html">
http://lists.w3.org/Archives/Public/public-xg-socialweb/2010Jan/0025.html</a></p>
<p class='irc'><<cite>hhalpin</cite>> no-one I can find
objected.</p>
<p class='phone'><cite>AnitaD:</cite> 2nd principle, no
objections recorded</p>
<p class='irc'><<cite>rreck</cite>> taking me a while to
catch up</p>
<p class='phone'><cite>AnitaD:</cite> comments?</p>
<p class='phone'><cite>hhalpin:</cite> just returning to the
first principle<br />
... some apps dont want a peronalized experienced</p>
<p class='irc'><<cite>hhalpin</cite>> ""Who sees what CAN
depend on who they are"</p>
<p class='phone'><cite>hhalpin:</cite> Chris Saad made the
point that it should not be mandated</p>
<p class='irc'><<cite>bblfish</cite>> Aphorism is the
word I was looking for. Each one of those lines should be an
aphorism</p>
<p class='irc'><<cite>bblfish</cite>> (or a tweet)</p>
<p class='phone'><cite>DKA:</cite> takes back to conversations
in santa clara and vodafone<br />
... what differentiates the social web<br />
... in santa clara we discussed 'why is created a friend
different to following an rss feed'</p>
<p class='irc'><<cite>bblfish</cite>> yes: it is
meaningful in a social context to know who you are
communicating</p>
<p class='phone'><cite>DKA:</cite> agreed, that even in twitter
there is an implicit bidirectional connection</p>
<p class='irc'><<cite>bblfish</cite>> with</p>
<p class='phone'><cite>DKA:</cite> social web seems to be
stronger bidirectionality<br />
... bidirectionality implies a different experience</p>
<p class='irc'><<cite>hhalpin</cite>> I'm happy to buy
that different experience line, I was just bringing up Chris's
point.</p>
<p class='irc'><<cite>bblfish</cite>> What you tell
(publish) to someone depends on who they are in your social
network.</p>
<p class='irc'><<cite>bblfish</cite>> idea: "What you
tell (publish) to someone depends on who they are in your
social network."</p>
<p class='phone'><cite>DKA:</cite> its not social unless
there's bidirectional relationship</p>
<p class='irc'><<cite>hhalpin</cite>> Will having a
different veiw, depending on who you are, be necessarily be</p>
<p class='irc'><<cite>hhalpin</cite>> RESTful?</p>
<p class='irc'><<cite>hhalpin</cite>> ?</p>
<p class='irc'><<cite>hhalpin</cite>> <a href=
"http://lists.w3.org/Archives/Public/public-xg-socialweb/2010Jan/0069.html">
http://lists.w3.org/Archives/Public/public-xg-socialweb/2010Jan/0069.html</a></p>
<p class='phone'><cite>hhalpin:</cite> bringing up chris saads
point</p>
<p class='phone'>hi</p>
<p class='phone'>dont have a mic here im afriad ...!</p>
<p class='irc'><<cite>hhalpin</cite>> no problems, henry
will talk about REST</p>
<p class='phone'><cite>scribe:</cite> will it be RESTful</p>
<p class='irc'><<cite>rreck</cite>> kinda obvious but
information you disclose in a social network is based entirely
on language, as oppose to real life social interactions</p>
<p class='phone'><cite>bblfish:</cite> important part of the
web is that documents should link to other documents<br />
... one way of doing social networks is to copy information
from one network to another<br />
... one of the key elements of the social web is to reference
using links</p>
<p class='irc'><<cite>rreck</cite>> or based on
volition</p>
<p class='phone'><cite>bblfish:</cite> email, for example, can
be copied from inbox to inbox<br />
... but in general there's no identifier</p>
<p class='irc'><<cite>rreck</cite>> yes</p>
<p class='phone'><cite>bblfish:</cite> if one speaks more in
terms of linking between things, we get closer to the level of
web architecture</p>
<p class='phone'><cite>hhalpin:</cite> agree with anitaD / DKA
that connections are important, seems not terribly RESTful, but
im ok with that, in certain contexts<br />
... eg between friends you can access certain URIs<br />
... that is sort of restful in a wierd way</p>
<p class='irc'><<cite>hhalpin</cite>> +1 to second (Chris
also said "sure")</p>
<p class='phone'><cite>anitad:</cite> any comments to the 2nd
high level principle?</p>
<p class='irc'><<cite>hhalpin</cite>> And I agree with
first, but we might want to clarify the relationship to REST in
our text.</p>
<p class='phone'><cite>anitad:</cite> no ...<br />
... 3rd principle</p>
<p class='irc'><<cite>bblfish</cite>> yes for 3. That's a
key REST principle</p>
<p class='irc'><<cite>hhalpin</cite>> I agree with the
third. Chris disagreed..</p>
<p class='phone'><cite>anitad:</cite> You can expose your
content (User Generated Content) to different > Social
Networks or Social Applications, without the need to store the
> content in these networks/applications.</p>
<p class='irc'><<cite>hhalpin</cite>> I think Chris
mainly was worried that we were *mandating*, but then we're not
looking for requirements but guiding principles</p>
<p class='phone'><cite>anitad:</cite> currently often need to
store UGC on several different servers<br />
... was that clear?<br />
... continuing principle 4<br />
... You can define the access control on a per item basis,
either per contact, or per group.<br />
... again referring to UGC<br />
... user should be able to define access control to different
attributes of UGC</p>
<p class='irc'><<cite>rreck</cite>> what is "an item"</p>
<p class='phone'><cite>bblfish:</cite> are we maybe missing the
identity of the user?</p>
<p class='irc'><<cite>rreck</cite>> good question</p>
<p class='phone'><cite>bblfish:</cite> is global identity one
of the principles</p>
<p class='phone'><cite>AnitaD:</cite> we discussed this
internally</p>
<p class='irc'><<cite>rreck</cite>> i think they are
instantiating a role</p>
<p class='phone'><cite>AnitaD:</cite> depends on terminology
used</p>
<p class='irc'><<cite>manu</cite>> I have a question
about the principles...</p>
<p class='phone'><cite>AnitaD:</cite> users can have different
profiles</p>
<p class='irc'><<cite>DKA</cite>> Also users can have
multiple legal identities (e.g. dual citizens)</p>
<p class='irc'><<cite>rreck</cite>> i operate as an
admin, and as a user, i am the same person</p>
<p class='phone'><cite>AnitaD:</cite> i dont always need to
disclose my real identity</p>
<p class='irc'><<cite>rreck</cite>> my identity is
immaterial its the role im using</p>
<p class='irc'><<cite>rreck</cite>> role</p>
<p class='phone'><cite>bblfish:</cite> notion of type of
identity is not so important, but we need a unique name<br />
... name should refer uniquely to one thing, needs to be
global<br />
... to carry out the principles we need a global way of
referring to something<br />
... wondering if that's something that follows? or should it be
a principle?</p>
<p class='irc'><<cite>manu</cite>> identity should be a
principle... it doesn't have to be global</p>
<p class='phone'><cite>AnitaD:</cite> you cant force someone to
use one global identity</p>
<p class='irc'><<cite>manu</cite>> but you do need it to
talk about them - FOAF, VCARD, etc</p>
<p class='irc'><<cite>rreck</cite>> reference</p>
<p class='irc'><<cite>hhalpin</cite>> Maybe "Resources
should have global identifiers (URIs), even if access to them
is restricted on a contextual basis"</p>
<p class='irc'><<cite>hhalpin</cite>> Basically, that is
the "Web" in "Social Web" :)</p>
<p class='irc'><<cite>rreck</cite>> +1 what harry
said</p>
<p class='phone'><cite>bblfish:</cite> you dont need to force
someone, but you need to identify they globally, you just need
a handle on them, it's not a global identity, but in certain
contexts they'll know it's me</p>
<p class='irc'><<cite>rreck</cite>> i think its a
principle</p>
<p class='irc'><<cite>MacTed</cite>> doesn't need to be
global identifier.</p>
<p class='phone'><cite>bblfish:</cite> you can also refer to me
as 'henry story', or bblfish, but in a global name, we need to
give people global name, so that we can know which resources to
give access to who</p>
<p class='irc'><<cite>MacTed</cite>> just needs to be
identifier.</p>
<p class='phone'><cite>bblfish:</cite> somehow the user needs
to identify, so that the website can for example show a
picture</p>
<p class='phone'>who's speaking?</p>
<p class='irc'><<cite>rreck</cite>> doug?</p>
<p class='irc'><<cite>rreck</cite>> hi doug</p>
<p class='irc'><<cite>MacTed</cite>> identifier of unique
resource/entity ... all identifiers of same resource/entity
should be owl:sameAs'ed ... and presto</p>
<p class='phone'><cite>manu:</cite> mostly wondering if this
group is going to apply principles to some of the leading
social networks out there ...</p>
<p class='irc'><<cite>hhalpin</cite>> Manu, so we have a
list of 50 top social networks we were going to test these and
use-cases against</p>
<p class='irc'><<cite>hhalpin</cite>> (looking for wiki
list)</p>
<p class='phone'><cite>manu:</cite> might be helpul, and also
the reverse, eg finding something that the leading soc nets do
that are not in the list ...</p>
<p class='irc'><<cite>cperey</cite>> this is a very good
idea</p>
<p class='irc'><<cite>cperey</cite>> important to refresh
this</p>
<p class='irc'><<cite>cperey</cite>> we didn't really go
into the depth which is proposed</p>
<p class='irc'><<cite>cperey</cite>> haha!</p>
<p class='phone'><cite>hhalpin:</cite> covered 50 top social
networks, inc. mobile, good suggestion to apply to soc nets</p>
<p class='irc'><<cite>cperey</cite>> and then be out of
date a few days later</p>
<p class='irc'><<cite>MacTed</cite>> any site/service
should be able to create their own Identifiers (URIs) for their
members.</p>
<p class='irc'><<cite>MacTed</cite>> all members should
be able to assert "I am also *that* member of *that* site" --
and perfect world, each service could verify that assertion</p>
<p class='irc'><<cite>hhalpin</cite>> "Resources should
have global identifiers (URIs), even if relationship to them
are restricted on a contextual basis"</p>
<p class='irc'><<cite>hhalpin</cite>> Broader than
people</p>
<p class='phone'><cite>hhalpin:</cite> could we deal with
henry's comment, by adding principle 6: something like
resources should have global identifiers even if access is
restricted<br />
... you dont necessarily have to have the same access
permission</p>
<p class='irc'><<cite>MacTed</cite>> "global identifier"
remains troubling to me</p>
<p class='irc'><<cite>MacTed</cite>> "global" isn't
correct</p>
<p class='irc'><<cite>MacTed</cite>> it's not the only
identifier of the entity</p>
<p class='irc'><<cite>rreck</cite>> global means
unique</p>
<p class='irc'><<cite>bblfish</cite>> Universal Resource
Identifiers</p>
<p class='irc'><<cite>hhalpin</cite>> "Resources should
have universal/unique/uniform identifiers (URIs), even if
relationship to them are restricted on a contextual basis"</p>
<p class='phone'><cite>hhalpin:</cite> unique rather than
global perhaps? universal? uniform?<br />
... might be a nice addition?</p>
<p class='irc'><<cite>MacTed</cite>> Resources should
have identifiers (URIs).</p>
<p class='irc'><<cite>MacTed</cite>> period</p>
<p class='irc'><<cite>hhalpin</cite>> "Resources should
have identifiers (URIs), even if relationship to them are
restricted on a contextual basis"</p>
<p class='irc'><<cite>bblfish</cite>> it would be
interesting to get the Web Architecture people to look at
those</p>
<p class='irc'><<cite>rreck</cite>> i agree on identifier
but dunno about globalness</p>
<p class='irc'><<cite>hhalpin</cite>> ok, happy to drop
globalness.</p>
<p class='irc'><<cite>hhalpin</cite>> +1 on last
principle</p>
<p class='irc'><<cite>MacTed</cite>> that works :-)</p>
<p class='irc'><<cite>rreck</cite>> maybe its called
for?</p>
<p class='phone'><cite>AnitaD:</cite> principle 5. You can
communicate with connections no matter which Social Network or
Social Application you share.<br />
... that's it ...</p>
<p class='irc'><<cite>hhalpin</cite>> PROPOSED: Social
Web XG adopts (puts in final report) Anita's principles plus a
URI principle as our guiding principles</p>
<p class='irc'><<cite>rreck</cite>> +1</p>
<p class='phone'>+1</p>
<p class='irc'><<cite>FabGandon</cite>> +1</p>
<p class='irc'><<cite>Zakim</cite>> DKA, you wanted to
suggest we at least reach consensus on the idea of publishing
some principles into the final report + a survey of how current
social networks show these...</p>
<p class='irc'><<cite>DKA</cite>> +1</p>
<p class='irc'><<cite>hhalpin</cite>> bblfish?</p>
<p class='phone'><cite>DKA:</cite> i support the proposed
resolution, but also the idea of building outwards</p>
<p class='irc'><<cite>bblfish</cite>> +1 though I think
we should be open to improovements to the lanauge</p>
<p class='irc'><<cite>hhalpin</cite>> Yuk?</p>
<p class='irc'><<cite>cperey</cite>> I would also like to
build up or out</p>
<p class='irc'><<cite>tpa</cite>> +1</p>
<p class='irc'><<cite>hhalpin</cite>> Yoshiaki?</p>
<p class='phone'><cite>DKA:</cite> like the idea of looking at
current soc nets and apps. and showcase these principles</p>
<p class='irc'><<cite>hhalpin</cite>> We can wordsmith a
bit in the wiki</p>
<p class='irc'><<cite>cperey</cite>> I'm a little taken
aback by going to resolution stage</p>
<p class='irc'><<cite>cperey</cite>> that's fine</p>
<p class='phone'><cite>hhalpin:</cite> i put a page called
final report in the wiki, ill put the principles in there</p>
<p class='irc'><<cite>DKA</cite>> We can also move fast
in W3C when necessary.</p>
<p class='irc'><<cite>hhalpin</cite>> RESOLVED: Social
Web XG adopts (puts in final report) Anita's principles plus a
URI principle as our guiding principles</p>
<p class='irc'><<cite>rreck</cite>> sure</p><a name=
"action01" id="action01"></a>
<p class='irc'><<cite>hhalpin</cite>>
<strong>ACTION:</strong> hhalpin to put these principles in new
wiki page [recorded in <a href=
"http://www.w3.org/2010/02/10-swxg-minutes.html#action01">http://www.w3.org/2010/02/10-swxg-minutes.html#action01</a>]</p>
<p class='irc'><<cite>trackbot</cite>> Created ACTION-124
- Put these principles in new wiki page [on Harry Halpin - due
2010-02-17].</p>
<p class='irc'><<cite>yoshiaki</cite>> +1</p>
<p class='irc'><<cite>DKA</cite>> Thanks Anita!</p>
<h3 id="item04">PaySwarm Discussion</h3>
<h3 id="item05">Manu Sporny and Doug Schepers on Payswarm</h3>
<p class='phone'><cite>hhalpin:</cite> have a special guest on
the phone</p>
<p class='irc'><<cite>rreck</cite>> thanks anita</p>
<p class='phone'><cite>hhalpin:</cite> manu sporny and doug
schepers on payswarm<br />
... thankful about your work with html / rdfa<br />
... doug is one of the api experts at the w3c</p>
<p class='irc'><<cite>manu</cite>> * The overall goal of
PaySwarm</p>
<p class='irc'><<cite>manu</cite>> * build ability to
buy/sell digital content into browsers</p>
<p class='irc'><<cite>manu</cite>> * We are discussing a
system that has been implemented commercially</p>
<p class='irc'><<cite>manu</cite>> * bitmunk.com (website
and peer-to-peer PaySwarm network)</p>
<p class='irc'><<cite>manu</cite>> * Digital Contracts
and Electronic Signatures as a basis for</p>
<p class='irc'><<cite>manu</cite>> licensing and
copyright-aware digital content distribution</p>
<p class='irc'><<cite>manu</cite>> * E-SIGN Act of
2000</p>
<p class='irc'><<cite>manu</cite>> * The typical
participants on a PaySwarm network</p>
<p class='irc'><<cite>manu</cite>> * content owner</p>
<p class='irc'><<cite>manu</cite>> * The Sales
Verificatin Authority</p>
<p class='irc'><<cite>manu</cite>> * sellers</p>
<p class='irc'><<cite>manu</cite>> * buyers</p>
<p class='irc'><<cite>manu</cite>> * How pricing is
calculated on a PaySwarm network</p>
<p class='irc'><<cite>manu</cite>> * content owner
royalty + seller distribution fee + network fees</p>
<p class='irc'><<cite>manu</cite>> * Licenses are sold
separately from data</p>
<p class='irc'><<cite>manu</cite>> * A typical content
transaction on a PaySwarm network</p>
<p class='phone'><cite>Manu:</cite> overall goal is to buy and
sell digital content in web browsers</p>
<p class='irc'><<cite>manu</cite>> 1. content owner
registers content with SVA and sets royalties</p>
<p class='irc'><<cite>manu</cite>> 2. buyers search for
content to buy or visits a website with</p>
<p class='irc'><<cite>manu</cite>> semantic markup or a
link to initiate a purchase contract</p>
<p class='irc'><<cite>manu</cite>> 3. buyer purchases
content from the swarm</p>
<p class='irc'><<cite>manu</cite>> 4. buyer automatically
joins swarm for re-distribution</p>
<p class='irc'><<cite>manu</cite>> 5. buyer becomes
seller and gets a cut of each download</p>
<p class='irc'><<cite>manu</cite>> * More resources</p>
<p class='irc'><<cite>manu</cite>> * PaySwarm FAQ:
<a href=
"http://payswarm.com/specs/payswarm-faq.html">http://payswarm.com/specs/payswarm-faq.html</a></p>
<p class='irc'><<cite>manu</cite>> * PaySwarm Use Cases:
<a href=
"http://payswarm.com/specs/payswarm-use-cases.html">http://payswarm.com/specs/payswarm-use-cases.html</a></p>
<p class='phone'><cite>Manu:</cite> mobile, and from
corporations to customers, and P2P<br />
... there's a site called bitmunk.com ... im the founder of
digital bazaar</p>
<p class='phone'><cite>thx:</cite> )</p>
<p class='irc'><<cite>bblfish</cite>> me too lost manu
for a second</p>
<p class='phone'><cite>thx:</cite> it's more than high level,
we have a lot of details worked out</p>
<p class='irc'><<cite>manu</cite>> hmm</p>
<p class='irc'><<cite>bblfish</cite>> I think it is</p>
<p class='phone'><cite>thx:</cite> please feel free to ask
questions as we go alon</p>
<p class='irc'><<cite>bblfish</cite>> yes we hear you</p>
<p class='irc'><<cite>hhalpin</cite>> So basically let's
do questions at end</p>
<p class='irc'><<cite>hhalpin</cite>> and add yourself as
usual using "q+"</p>
<p class='phone'><cite>thx:</cite> basis of payswarm is using
digital contracts and electronic signatures as a way to encode
content and exchange<br />
... esign act of 2000, is a basis<br />
... if you can verify a person's identity (eg bankcard /
electron signature) or drivers licence, their use of that is as
binding as a pen signature<br />
... this opens doors to using digital contracts<br />
... not just small priced, but also high priced, up to $150,000
is enforcable in the US</p>
<p class='irc'><<cite>bblfish</cite>> lost manu</p>
<p class='irc'><<cite>bblfish</cite>> very echoy</p>
<p class='irc'><<cite>MacTed</cite>> sadly, IP telephony
is really not up to what it could be</p>
<p class='irc'><<cite>bblfish</cite>> ouch! cell
phone</p>
<p class='phone'><cite>thx:</cite> calling in on cell phone</p>
<p class='irc'><<cite>DKA</cite>> ...some drop-outs
happening...</p>
<p class='irc'><<cite>DKA</cite>> ...maybe he fell down a
well...</p>
<p class='irc'><<cite>bblfish</cite>> bzzzzt
crscsssdfssdsd bzzttt</p>
<p class='phone'><cite>thx:</cite> 4 major participants<br />
... content owner (creates digital content) music label, music
studio, home studio, research, anything digital<br />
... sales verification authority, identity management, collect
royalties, distribute royalties, making sure the network is
operating corrections, police DOS, eg digital bazaar,
itunes/amazon could<br />
... sellers<br />
... buyers<br />
... buyers and sellers are almost interchangable<br />
... a buyer can become a source, just like bittorrent<br />
... thats how we add scalability<br />
... questions?</p>
<p class='irc'><<cite>bblfish</cite>> no that seems
simple</p>
<p class='irc'><<cite>bblfish</cite>> you have 4 types of
users</p>
<p class='irc'><<cite>bblfish</cite>> or 4 roles</p>
<p class='phone'><cite>thx:</cite> theres a lot of complexity
behind the scenes<br />
... pricing is calculated, you have to allow pricing
independently<br />
... content owner is allowed to set royalties, independent of
the sellers prices<br />
... sellers then set their prices<br />
... then there are network fees<br />
... final price is, royalties plus sellers distribution fee
plus network fee<br />
... spec allows more complexity<br />
... the network we separate purchasing a licence with
purchasing a good<br />
... eg you can purchase a low definition or high definition
stream<br />
... typically how the content industry would like it to
work</p>
<p class='irc'><<cite>bblfish</cite>> sounds sensible</p>
<p class='irc'><<cite>bblfish</cite>> though I would not
have thought about doing that</p>
<p class='phone'><cite>thx:</cite> typical transaction ...
content owner goes to the SVA and registers their content for
sale, by uploading a reference file<br />
... these are my royalties</p>
<p class='irc'><<cite>hhalpin</cite>> it seems like it is
crucial to allow separate pricing, and that does keep it rather
simple.</p>
<p class='irc'><<cite>hhalpin</cite>> may some issues
about "network" i.e. in distributed apps where you get to one
app via another one...</p>
<p class='phone'><cite>thx:</cite> once registered on the
network, buyers will then find the file on the network</p>
<p class='irc'><<cite>hhalpin</cite>> like going to a ad
via Google :)</p>
<p class='irc'><<cite>hhalpin</cite>> who gets the
cash?</p>
<p class='phone'><cite>thx:</cite> doesnt have to happen on one
website, the system is decentralized</p>
<p class='irc'><<cite>hhalpin</cite>> just the last
network?</p>
<p class='phone'><cite>thx:</cite> eg can be download from a
blog<br />
... part of your pay goes to support a blog<br />
... you can embed data using rdfa / micrformats<br />
... buyers find information through a web based mechanism<br />
... they can buy from an individual or from the swarm<br />
... licence from one person<br />
... each piece of data from 1000's of people<br />
... hope it ends up driving distribution costs down<br />
... eg distributing movies in HD<br />
... dont need huge capacity, other people will help as they
have a financial incentive<br />
... buyers then seed files by default<br />
... payswarm faq<br />
... and payswarm use cases<br />
... things we want to support in version 2.0 e.g.
identity<br />
... dont necessarily need that<br />
... v 2.0 we're going to try and build in identity / financial
management<br />
... that's a quick overview<br />
... questions?</p>
<p class='irc'><<cite>hhalpin</cite>> "network
trails"</p>
<p class='phone'><cite>hhalpin:</cite> how about the idea of
network trails<br />
... look at distributed networks, you may have several layers
to get to your content</p>
<p class='irc'><<cite>hhalpin</cite>> So let's say I go
to Youtube</p>
<p class='irc'><<cite>hhalpin</cite>> that then sends me
to a third-party, NoGoodTV</p>
<p class='irc'><<cite>hhalpin</cite>> I get content from
that.</p>
<p class='irc'><<cite>hhalpin</cite>> Can Youtube get a
cut?</p>
<p class='phone'><cite>manu:</cite> on a low level, we're going
to use a bunch of REST api calls, json format, exchange pieces
of information for the transaction<br />
... send it to the SVA<br />
... then the purchase process starts<br />
... exchange between browser / SVA<br />
... could you elaborate on network trails?</p>
<p class='irc'><<cite>hhalpin</cite>> yes, "referrer" is
the right word</p>
<p class='phone'><cite>manu:</cite> a chain of multiple
referrers, does everyone get a cut?</p>
<p class='irc'><<cite>hhalpin</cite>> so they CAN be
compensated.</p>
<p class='phone'><cite>manu:</cite> currently no<br />
... doesnt make much sense from a business perspective</p>
<p class='irc'><<cite>hhalpin</cite>> because that person
sends them traffic.</p>
<p class='phone'><cite>manu:</cite> why would they want to pay
some else</p>
<p class='irc'><<cite>hhalpin</cite>> the referrer sends
them traffic.</p>
<p class='irc'><<cite>hhalpin</cite>> letting them sale
more</p>
<p class='irc'><<cite>hhalpin</cite>> tpa? I also know
you've thought a bit about micropayments..</p>
<p class='phone'><cite>manu:</cite> the seller would be able to
choose who else to pay ... we are moving away from the concept
of middle men on the network</p>
<p class='phone'><cite>hhalpin:</cite> might be a surprisingly
popular option, to have referrers drive traffic to the long
tail<br />
... just throwing a thought out there</p>
<p class='irc'><<cite>bblfish</cite>> <a href=
"http://www.heppnetz.de/ontologies/goodrelations/v1">http://www.heppnetz.de/ontologies/goodrelations/v1</a></p>
<p class='phone'><cite>bblfish:</cite> does this fit in with
goodrelations ontology?</p>
<p class='phone'><cite>AnitaD:</cite> talked to mfhepp about
payswarm, and am sure we will end up integrating GR with
payswarm<br />
... one of the reasons we got involved with RDFa<br />
... in our company we have a firefox plugin<br />
... will work out all purchasable content on that page<br />
... can use that info to generate a contract<br />
... send it to the SVA<br />
... in the future the browser will scrape the info e.g. in rdfa
/ microformats, then uses that to figure out the contract and
send to the SVA</p>
<p class='phone'><cite>bblfish:</cite> at imperial 1995, people
talked about micropayments, why hasnt it taken off? how are you
keeping the costs low?<br />
... fundamental to saving some content providers</p>
<p class='irc'><<cite>MacTed</cite>> if I choose to refer
to a referrer to a seller, I should get a cut of the referrer's
cut ...</p>
<p class='irc'><<cite>MacTed</cite>> if I choose to refer
directly to a seller, I should get the entire referrer's
cut...</p>
<p class='irc'><<cite>MacTed</cite>> by making the choice
of how I refer, I have chosen how the payment should be
made.</p>
<p class='irc'><<cite>MacTed</cite>> face-to-face
business works well this way.</p>
<p class='irc'><<cite>MacTed</cite>> I think that
empirically deciding "there will be no more middle men!" will
tend more to stifle business than to encourage it</p>
<p class='irc'><<cite>bblfish</cite>> the same reason we
no longer talk about semantic web ;-)</p>
<p class='irc'><<cite>hhalpin</cite>> its "linked data"
now :)</p>
<p class='irc'><<cite>hhalpin</cite>> good idea
MacTed</p>
<p class='irc'><<cite>shepazu</cite>> ("don't make me
think")</p>
<p class='phone'><cite>manu:</cite> good point, the problem is,
P2P / micro payments have a bad rap, interfaces were bothering
the user, eg for 1c 2c, most people couldnt be bothered to
reach for their wallets</p>
<p class='irc'><<cite>bblfish</cite>> ( mhh interesting:
the identity problem resurges )</p>
<p class='phone'><cite>manu:</cite> interactions costs were too
high<br />
... ROI was not there<br />
... systems not integrated into browser<br />
... you had to join evercoin etc.<br />
... wasnt a fundamental part of the web</p>
<p class='irc'><<cite>bblfish</cite>> makes sense :-)</p>
<p class='irc'><<cite>MacTed</cite>> more than anything
else, too many micropayment providers makes it too hard on the
purchaser</p>
<p class='phone'><cite>manu:</cite> requires too much work on
the user's behalf, what you would ideally like you to do is
say, 'would you like to set your daily/monthly spending limit',
the browser would then operate within that limit</p>
<p class='irc'><<cite>hhalpin</cite>> +1 this browser
idea, was thinking about this when NYTimes tried to charge me
this morning :)</p>
<p class='phone'><cite>manu:</cite> browser prompts you to
increase it</p>
<p class='irc'><<cite>MacTed</cite>> largely because each
*seller* tended to have a single relationship with a
micropayment provider</p>
<p class='phone'><cite>manu:</cite> visa transactions cost too
much</p>
<p class='irc'><<cite>MacTed</cite>> transaction
aggregation is obviously the way it has to be done</p>
<p class='phone'><cite>manu:</cite> payswarm addresses each of
these issues<br />
... you put in $10 or $20 at a time</p>
<p class='irc'><<cite>bblfish</cite>> (yes NYTimes and
all the newspapers ask for $25 per year, and one never knows
ahead of time if one is ever going to read that much from that
site: hence the importance of micropayments. PaySwarm seems to
solve this, by making it standard, and make it easy to set
policies on payments for a site)</p>
<p class='phone'><cite>manu:</cite> creating a world standard
for payments couples with browser integration, will reduce
friction of transactions</p>
<p class='phone'><cite>bblfish:</cite> thanks, very helpful</p>
<p class='irc'><<cite>rreck</cite>> when its seamless
there is less barrier to entry</p>
<p class='phone'><cite>bblfish:</cite> are you feeling browser
vendors are helping?</p>
<p class='irc'><<cite>MacTed</cite>> does PaySwarm aim
for exclusive arrangements with sellers, i.e., can a seller
*only* accept PaySwarm, or can they accept any/all
(micro)payment providers</p>
<p class='irc'><<cite>MacTed</cite>> ?</p>
<p class='phone'><cite>manu:</cite> we think the most important
people to get on board is the large companies, newspapers,
music industries ... going to meet one of the big 4 music
labels today<br />
... if they music industry gets behind it, the web browser can
add a small fee<br />
... dont expect that browsers will not want to refuse this
market<br />
... havent approached browser manufacturers yet, but will in
the next few months, but mainly we're trying with the record
labels</p>
<p class='irc'><<cite>Zakim</cite>> shepazu, you wanted
to ask about karma</p>
<p class='phone'><cite>bblfish:</cite> thanks</p>
<p class='irc'><<cite>bblfish</cite>> ... dont expect
that browsers manufatcturers will not be interested in a market
where they can take 1% of every transaction"</p>
<p class='phone'><cite>manu:</cite> source code released for
ref impl. hopefully api overview in the next month<br />
... in the context of the social web<br />
... and distributed management of a currency<br />
... eg amazon lets me know how many people have had successful
transactions with an entity<br />
... part of identity management (SVA) can also manage
reputation?<br />
... we need an identity management nexus, dont want to bite off
too much work<br />
... the system is distributed<br />
... financial payment system distributed<br />
... rating system distributed<br />
... 2nd aspect, what if you want to exchange karma<br />
... an analogy is MMORPG<br />
... world of warcraft millionaires<br />
... get magic swords and sell them on ebay<br />
... changing currencies<br />
... karma and reputation as a currency, can we distribute
that?</p>
<p class='irc'><<cite>bblfish</cite>> it's true it could
help adoption to be able to work with game money</p>
<p class='phone'><cite>manu:</cite> game money, real money,
reputation are mechanisms of distributing credit</p>
<p class='irc'><<cite>bblfish</cite>> because then one
could start without getting through big government agencies</p>
<p class='phone'><cite>manu:</cite> might make it easier to do
some social networking things<br />
... might now be just about money, something built into the
browser, that can be used as a part of exchange<br />
... in music there's cash and reputation, you can trade one or
the other<br />
... could tell that to music companies, but it certainly has
context in the social web<br />
... how can people trade reputation among each other<br />
... unlike money, it's not a scarce resource</p>
<p class='phone'><cite>bblfish:</cite> you can start growing
without the overhead of banks etc. can get really big testing
grounds</p>
<p class='phone'><cite>manu:</cite> the currency of exchange
does not have to be USD EUR etc. can be something else</p>
<p class='irc'><<cite>bblfish</cite>> +1</p>
<p class='phone'><cite>hhalpin:</cite> should end the call
soonish, may be some standardization, we did have micropayments
in the initial charter<br />
... what's the current state of play</p>
<p class='phone'><cite>manu:</cite> focussed on getting w3c
interested, and getting people into the w3c, mobile carriers,
app stores, standardized app stores<br />
... buying and selling research data<br />
... artists generating work for you<br />
... primary focus is getting as many people as possible, then
getting those people to go to the w3c</p>
<p class='irc'><<cite>hhalpin</cite>> member
organizations in this xg could help if they want to.</p>
<p class='phone'><cite>manu:</cite> if swxg says payswarm
should be standarized would be great, and helpful</p>
<p class='irc'><<cite>hhalpin</cite>> i.e. endorse a
charter etc.</p>
<p class='phone'><cite>manu:</cite> w3c already tried
micropayments in the 90s<br />
... dont want to fail at it again<br />
... may be some resistance to doing this<br />
... w3c may be cautious, conservative on certain issues, due to
reputation concerns<br />
... best way to overcome objections, is to find major
stakeholders<br />
... wont come from browser vendors<br />
... opera maybe, but browser vendors in general not, more
newspapers, movie houses, record labels</p>
<p class='irc'><<cite>bblfish</cite>> games</p>
<p class='irc'><<cite>DKA</cite>> ...mobile operators who
want to have interoperable app stores...</p>
<p class='phone'><cite>manu:</cite> would be good to get
bankers interested, paypal, amazon</p>
<p class='irc'><<cite>hhalpin</cite>> :)</p>
<p class='phone'><cite>manu:</cite> after that see where we can
go</p>
<p class='irc'><<cite>bblfish</cite>> though perhaps the
W3C could do an XG on this</p>
<p class='phone'><cite>manu:</cite> urge w3c to take thison</p>
<p class='phone'><cite>bblfish:</cite> maybe an XG for
this?</p>
<p class='phone'><cite>manu:</cite> probably the next
step<br />
... while we're marshalling stakeholders create an XG
perhaps<br />
... trying to bootstrap, xg would be appropriate, necessary but
not sufficient</p>
<p class='irc'><<cite>rreck</cite>> thanks for
presenting</p>
<p class='phone'><cite>bblfish:</cite> where do you put the
money?</p>
<p class='phone'><cite>manu:</cite> the money is kept with the
SVA<br />
... we have digital money and digital certificates<br />
... you're operating as a pseudo bank<br />
... governments dont like it when you do that<br />
... SVA handle the money<br />
... so you dont have an issue in the browser of handling
money<br />
... there isnt even legislation for that<br />
... you take a regular credit card<br />
... add money to an SVA</p>
<p class='irc'><<cite>MacTed</cite>> so it's Paypal
redux</p>
<p class='phone'><cite>manu:</cite> that is linked to the
browser</p>
<p class='irc'><<cite>DKA</cite>> I have to drop off call
- sorry! Very interesting presentation. Vodafone might be
interested in participating in an XG on this topic, for the
record...</p>
<p class='phone'><cite>bblfish:</cite> it's not anonymous</p>
<p class='irc'><<cite>DKA</cite>> ciao</p>
<p class='phone'><cite>manu:</cite> completely the other way,
there needs to be strong identity<br />
... anonymous payments is an interesting concept, but it starts
raising red flags to regulatory agencies</p>
<p class='irc'><<cite>hhalpin</cite>> trackbot, end
meetings</p>
<p class='irc'><<cite>trackbot</cite>> Sorry, hhalpin, I
don't understand 'trackbot, end meetings'. Please refer to
<a href=
"http://www.w3.org/2005/06/tracker/irc">http://www.w3.org/2005/06/tracker/irc</a>
for help</p>
<p class='phone'><cite>hhalpin:</cite> thanks, end of
meeting</p>
<p class='irc'><<cite>rreck</cite>> thank you guys</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> hhalpin to put
these principles in new wiki page [recorded in <a href=
"http://www.w3.org/2010/02/10-swxg-minutes.html#action01">http://www.w3.org/2010/02/10-swxg-minutes.html#action01</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/02/10 17:27:01 $
</address>
<div class="diagnostics">
<hr />
<h2>Scribe.perl diagnostic output</h2>[Delete this section
before finalizing the minutes.]<br />
<pre>
This is scribe.perl Revision: 1.135 of Date: 2009/03/02 03:52:20
Check for newer version at <a href=
"http://dev.w3.org/cvsweb/~checkout~/2002/scribe/">http://dev.w3.org/cvsweb/~checkout~/2002/scribe/</a>
Guessing input format: RRSAgent_Text_Format (score 1.00)
Succeeded: s/speaker/speaks/
Succeeded: s/cant/can/
Succeeded: s/Doug: overall /Manu: overall /
Succeeded: s/coudl/could/
Found ScribeNick: melvster
Found Scribe: melvster
Inferring ScribeNick: melvster
Default Present: tpa, [IPcaller], Dsr, Doug_Schepers, hhalpin, +1.510.931.aaaa, manu, melvster1, bblfish, +0774811aabb, +049172247aacc, +1.617.838.aadd
Present: tpa [IPcaller] Dsr Doug_Schepers hhalpin +1.510.931.aaaa manu melvster1 bblfish +0774811aabb +049172247aacc +1.617.838.aadd
Found Date: 10 Feb 2010
Guessing minutes URL: <a href=
"http://www.w3.org/2010/02/10-swxg-minutes.html">http://www.w3.org/2010/02/10-swxg-minutes.html</a>
People with action items: hhalpin
</pre>[End of <a href=
"http://dev.w3.org/cvsweb/~checkout~/2002/scribe/scribedoc.htm">
scribe.perl</a> diagnostic output]
</div>
</body>
</html>