23-swxg-minutes.html 46.4 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185
<!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 -- 23 Sep
  2009</title>
  <link type="text/css" rel="STYLESHEET" href=
  "http://www.w3.org/StyleSheets/base.css" />
  <link type="text/css" rel="STYLESHEET" href=
  "http://www.w3.org/StyleSheets/public.css" />
  <link type="text/css" rel="STYLESHEET" href=
  "http://www.w3.org/2004/02/minutes-style.css" />
  <meta content="Social Web Incubator Group Teleconference" name=
  "Title" />
  <meta content="text/html; charset=utf-8" http-equiv=
  "Content-Type" />
</head>

<body>
  <p><a href="http://www.w3.org/"><img src=
  "http://www.w3.org/Icons/w3c_home" alt="W3C" border="0" height=
  "48" width="72" /></a></p>

  <h1>Social Web Incubator Group Teleconference</h1>

  <h2>23 Sep 2009</h2>

  <p>See also: <a href="http://www.w3.org/2009/09/23-swxg-irc">IRC
  log</a></p>

  <h2><a name="attendees" id="attendees">Attendees</a></h2>

  <div class="intro">
    <dl>
      <dt>Present</dt>

      <dd>pchampin, +1.314.683.aabb, mauro, Phil_Archer, bblfish,
      cperey, DKA, mauro.a, mischat_(muted), karl, AlexPassant</dd>

      <dt>Regrets</dt>

      <dt>Chair</dt>

      <dd>hhalpin</dd>

      <dt>Scribe</dt>

      <dd>Karl Dubost</dd>
    </dl>
  </div>

  <h2>Contents</h2>

  <ul>
    <li>
      <a href="#agenda">Topics</a>

      <ol>
        <li><a href="#item01">"Convene SWXG WG meeting of
        2009-09-16T13:00-15:00Z"</a></li>

        <li><a href="#item02">Intro</a></li>

        <li><a href="#item03">"General Organization and Task
        Forces"</a></li>

        <li><a href="#item04">Telcon time</a></li>

        <li><a href="#item05">"Invited Guest Invitations"</a></li>

        <li><a href="#item06">"User Stories"</a></li>

        <li><a href="#item07">"Invited Guest - Ros Lawler of Random
        House"</a></li>
      </ol>
    </li>

    <li><a href="#ActionSummary">Summary of Action Items</a></li>
  </ul>
  <hr />

  <div class="meeting">
    <p class='phone'>&nbsp;</p>

    <p class='phone'>&nbsp;</p>

    <p class='irc'>&lt;<cite>mischat</cite>&gt; what is the
    conference name "swxg" ?</p>

    <p class='irc'>&lt;<cite>mischat</cite>&gt; zakim isn't picking
    up the phone numbers</p>

    <p class='irc'>&lt;<cite>mischat</cite>&gt; dialing in</p>

    <p class='phone'>trackbot, start telcon</p>

    <p class='irc'>&lt;<cite>trackbot</cite>&gt; Date: 23 September
    2009</p>

    <p class='irc'>&lt;<cite>rreck</cite>&gt; i dont see conference
    entry messages</p>

    <p class='irc'>&lt;<cite>bblfish</cite>&gt; hi</p>

    <h3 id="item01">"Convene SWXG WG meeting of
    2009-09-16T13:00-15:00Z"</h3>

    <p class='irc'>&lt;<cite>AlexPassant</cite>&gt; have you just
    joined as well hhalpin ?</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; scribe: Karl
    Dubost</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; PROPOSED: to
    approve SWXG WG Weekly -- 16th September 2009 (only text IRC
    notes!) as a true record.</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; <a href=
    "http://www.w3.org/2009/09/16-swxg-minutes.html">http://www.w3.org/2009/09/16-swxg-minutes.html</a></p>

    <p class='irc'>&lt;<cite>rreck</cite>&gt; +1</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; APPROVED: SWXG WG
    Weekly -- 16th September 2009 as a true record.</p>

    <p class='irc'>&lt;<cite>mischat</cite>&gt; hehe</p><a name=
    "action01" id="action01"></a>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt;
    <strong>ACTION:</strong> <strong>[DONE]</strong> hhalpin needs
    to convert previous minutes into HTML via some scripting
    [recorded in <a href=
    "http://www.w3.org/2009/09/23-swxg-minutes.html#action01">http://www.w3.org/2009/09/23-swxg-minutes.html#action01</a>]</p>

    <h3 id="item02">Intro</h3>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; Meet again next
    Sept 30th.</p>

    <p class='phone'><cite>hhalpin:</cite> we should get
    Saint-Andre for XMPP</p>

    <h3 id="item03">"General Organization and Task Forces"</h3>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; Include the open
    day work..</p>

    <p class='phone'><cite>DKA:</cite> We are on a track …<br />
    ... 200 people for the venue<br />
    ... It will be like a barcamp event<br />
    ... we will have opportunity to learn about social
    networking<br />
    ... and @@blabla<br />
    ... christine proposed an agenda</p>

    <p class='irc'>&lt;<cite>cperey</cite>&gt; <a href=
    "http://www.w3.org/2005/Incubator/socialweb/wiki/Planning_for_TPAC_Open_Day">
    http://www.w3.org/2005/Incubator/socialweb/wiki/Planning_for_TPAC_Open_Day</a></p>

    <p class='phone'><cite>DKA:</cite> we need to add some
    sessions<br />
    ... w3c wishes we are using channels of w3c for
    communicating?</p>

    <p class='irc'>&lt;<cite>cperey</cite>&gt; so the name of the
    wiki page needs to be modified!</p>

    <p class='irc'>&lt;<cite>cperey</cite>&gt; henry?</p>

    <p class='phone'><cite>bblfish:</cite> there will be cakes</p>

    <p class='irc'>&lt;<cite>DKA</cite>&gt; You had me at
    "cakes."</p>

    <p class='phone'><cite>bblfish:</cite> there will be a
    cantine<br />
    ... (kind of restaurant)</p>

    <p class='irc'>&lt;<cite>cperey</cite>&gt; so we need a
    registration system. Who has one of those?</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; for registration
    I'd use eventbrite.com</p>

    <p class='phone'><cite>bblfish:</cite> We need to have a place
    where people can sign-up</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; seems to work
    well.</p>

    <p class='irc'>&lt;<cite>cperey</cite>&gt; exactly, we need a
    web page</p>

    <p class='phone'><cite>bblfish:</cite> barcamp alike</p>

    <p class='irc'>&lt;<cite>cperey</cite>&gt; what about speaker
    invites?</p>

    <p class='irc'>&lt;<cite>cperey</cite>&gt; can we brainstorm
    some speaker names?</p>

    <p class='irc'>&lt;<cite>cperey</cite>&gt; on wiki or on the
    call?</p>

    <p class='irc'>&lt;<cite>bblfish</cite>&gt; not choppy here</p>

    <p class='irc'>&lt;<cite>cperey</cite>&gt; agreed</p>

    <p class='irc'>&lt;<cite>cperey</cite>&gt; can you please
    propose a day/time?</p>

    <p class='irc'>&lt;<cite>cperey</cite>&gt; <a href=
    "http://www.w3.org/2005/Incubator/socialweb/wiki/Planning_for_TPAC_Open_Day">
    http://www.w3.org/2005/Incubator/socialweb/wiki/Planning_for_TPAC_Open_Day</a>
    &lt;--at the bottom of the page is a place for invites</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; "before the
    call"</p>

    <p class='phone'><cite>DKA:</cite> We could meet before the
    call next week</p>

    <p class='phone'><cite>bblfish:</cite> If people could attend
    identity workshop</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; <a href=
    "http://lists.w3.org/Archives/Public/public-xg-socialweb/2009Sep/0050.html">
    http://lists.w3.org/Archives/Public/public-xg-socialweb/2009Sep/0050.html</a></p>

    <p class='irc'>&lt;<cite>DKA</cite>&gt; Suggest a tag line for
    the event "Advancing the Cause of the Social Web."</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; <a href=
    "http://www.internetidentityworkshop.com/">http://www.internetidentityworkshop.com/</a></p>

    <p class='irc'>&lt;<cite>bblfish</cite>&gt; I should be
    there</p>

    <p class='phone'><cite>bblfish:</cite> Most of the good
    speakers will be at the identity workshop.</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; <a href=
    "http://iiw9.eventbrite.com/">http://iiw9.eventbrite.com/</a></p>

    <p class='irc'>&lt;<cite>mischat</cite>&gt; barcamp uses it
    too</p>

    <p class='irc'>&lt;<cite>PhilA2</cite>&gt; I've used Eventbrite
    - seems good</p>

    <p class='phone'><cite>bblfish:</cite> I will be there<br />
    ... should we start something for the open social web day<br />
    ... It would be good if people could attend.</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; Thursday on
    TPAC</p>

    <p class='phone'><cite>bblfish:</cite> We will have two days at
    the TPAC but it's kind possible to attend both</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; Open Developer
    Day</p>

    <p class='phone'><cite>bblfish:</cite> On TPAC, there will be
    also the Open Developer Day.</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; We are also looking
    for one or two speakers to talk about Social Web to the people
    at the developer day.</p>

    <p class='phone'><cite>bblfish:</cite> We are also looking for
    one or two speakers to speak about Social web things at the
    Open Developer Day.<br />
    ... Please register asap</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; <a href=
    "http://lists.w3.org/Archives/Public/public-xg-socialweb/2009Sep/0051.html">
    http://lists.w3.org/Archives/Public/public-xg-socialweb/2009Sep/0051.html</a></p>

    <p class='phone'><cite>hhalpin:</cite> there is a suggestion to
    change the telcon time</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; 6:00 AM in
    California</p>

    <h3 id="item04">Telcon time</h3>

    <p class='phone'><cite>UNKNOWN_SPEAKER:</cite> it is a bit
    early on the west coast</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; If we kept the same
    day but moved the call back 2 hours.</p>

    <p class='irc'>&lt;<cite>mischat</cite>&gt; +1</p>

    <p class='irc'>&lt;<cite>MacTed</cite>&gt; +1</p>

    <p class='irc'>&lt;<cite>bblfish</cite>&gt; +1</p>

    <p class='irc'>&lt;<cite>pchampin</cite>&gt; +1</p>

    <p class='phone'><cite>UNKNOWN_SPEAKER:</cite> How many people
    would be ok if we keep the same day</p>

    <p class='irc'>&lt;<cite>AlexPassant</cite>&gt; +1</p>

    <p class='irc'>&lt;<cite>oshani</cite>&gt; +1</p>

    <p class='irc'>&lt;<cite>tinkster</cite>&gt; 2 hours would be
    fine for me.</p>

    <p class='irc'>&lt;<cite>melvster</cite>&gt; +1</p>

    <p class='irc'>&lt;<cite>cperey</cite>&gt; two hours</p>

    <p class='phone'>but two hours.</p>

    <p class='irc'>&lt;<cite>DKA</cite>&gt; +1 I would be fine.</p>

    <p class='phone'>-1</p>

    <p class='irc'>&lt;<cite>cperey</cite>&gt; +1</p>

    <p class='phone'>-1 (work reasons)</p>

    <p class='irc'>&lt;<cite>Adam</cite>&gt; what about just an
    hour later?</p>

    <p class='irc'>&lt;<cite>tinkster</cite>&gt; bear in mind that
    daylight savings is coming up soon.</p>

    <p class='irc'>&lt;<cite>cperey</cite>&gt; yes, that messes
    things up</p>

    <p class='phone'><cite>karl:</cite> I will not be able to move
    my time because of my work in a Web agency</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; Make it 2 hours
    LATER</p>

    <p class='phone'><cite>karl:</cite> that's fine though. change
    the time</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; So 15:00UTC</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; Karl - can you do 2
    hours later?</p>

    <p class='phone'><strong class='resolution'>RESOLUTION: Telconf
    is moved at 15:00 UTC</strong></p>

    <p class='irc'>&lt;<cite>danbri</cite>&gt; (was there a
    resolution already?)</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; Let's not change it
    quite yet</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; Let me run this by
    some of the people in San Fran</p>

    <p class='phone'>:) resolution might be changed ;)</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; They actually
    trying to participate.</p>

    <p class='irc'>&lt;<cite>cperey</cite>&gt; it would be slightly
    easier to change it after we are all aligned</p>

    <p class='irc'>&lt;<cite>cperey</cite>&gt; after change of
    daylight savings</p>

    <p class='irc'>&lt;<cite>melvster</cite>&gt; california has
    daylight saving too, normally its 1-2 weeks within the european
    change</p>

    <p class='phone'><cite>Dan:</cite> it's not sure we will get
    more participants by moving the time</p>

    <p class='irc'>&lt;<cite>PhilA2</cite>&gt; I have tried
    changing times of calls to suit different people before now -
    and in that case the people we changed to accommodate - didn't
    ever show up :-(</p>

    <p class='irc'>&lt;<cite>bblfish</cite>&gt; I agree, 8 is limit
    9am would be something</p>

    <p class='phone'><cite>hhalpin:</cite> somepeople asked<br />
    ... so we could try</p><a name="action02" id="action02"></a>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt;
    <strong>ACTION:</strong> hhalpin to get back to people on
    possible telecon time to change to 15:00 UTC. [recorded in
    <a href=
    "http://www.w3.org/2009/09/23-swxg-minutes.html#action02">http://www.w3.org/2009/09/23-swxg-minutes.html#action02</a>]</p>

    <p class='irc'>&lt;<cite>trackbot</cite>&gt; Created ACTION-89
    - Get back to people on possible telecon time to change to
    15:00 UTC. [on Harry Halpin - due 2009-09-30].</p>

    <p class='phone'><cite>hhalpin:</cite> just asking for now</p>

    <p class='irc'>&lt;<cite>cperey</cite>&gt; +q</p>

    <p class='irc'>&lt;<cite>bblfish</cite>&gt; how does daylight
    saving time change things</p><a name="action03" id=
    "action03"></a>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt;
    <strong>ACTION:</strong> <strong>[DONE]</strong> cperey to
    start a wiki page about the open day session at TPAC [recorded
    in <a href=
    "http://www.w3.org/2009/09/23-swxg-minutes.html#action03">http://www.w3.org/2009/09/23-swxg-minutes.html#action03</a>]</p><a name="action04"
    id="action04"></a>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt;
    <strong>ACTION:</strong> <strong>[DONE]</strong> DKA to
    double-check on TPAC, make sure SWXG is booked. [recorded in
    <a href=
    "http://www.w3.org/2009/09/23-swxg-minutes.html#action04">http://www.w3.org/2009/09/23-swxg-minutes.html#action04</a>]</p><a name="action05"
    id="action05"></a>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt;
    <strong>ACTION:</strong> <strong>[CONTINUES]</strong> DKA to
    summarize OSLO and geoLocation conversation in order to spread
    knowledge of these efforts among W3C members. [recorded in
    <a href=
    "http://www.w3.org/2009/09/23-swxg-minutes.html#action05">http://www.w3.org/2009/09/23-swxg-minutes.html#action05</a>]</p><a name="action06"
    id="action06"></a>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt;
    <strong>ACTION:</strong> <strong>[CONTINUES]</strong> Mischa to
    describe/implement a report of terms and conditions, and how
    they change between now and the end of the XG. [recorded in
    <a href=
    "http://www.w3.org/2009/09/23-swxg-minutes.html#action06">http://www.w3.org/2009/09/23-swxg-minutes.html#action06</a>]</p>

    <p class='irc'>&lt;<cite>mischat</cite>&gt; hhalpin: am aware
    of my action, will get on it</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; We definitely
    should wait till we are on the spread.</p>

    <p class='phone'><cite>cperey:</cite> we could wait until
    everyone is on the same timezone<br />
    ... for avoiding the mess of time change</p><a name="action07"
    id="action07"></a>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt;
    <strong>ACTION:</strong> <strong>[DONE]</strong> Melvster to
    write up David Raggett's guest talk on context, delegated
    privacy providers, and so on. [recorded in <a href=
    "http://www.w3.org/2009/09/23-swxg-minutes.html#action07">http://www.w3.org/2009/09/23-swxg-minutes.html#action07</a>]</p>

    <p class='phone'><a href=
    "http://timeanddate.com/worldclock/custom.html?low=8">http://timeanddate.com/worldclock/custom.html?low=8</a></p>

    <h3 id="item05">"Invited Guest Invitations"</h3>

    <p class='irc'>&lt;<cite>tinkster</cite>&gt; e.g. Sydney is
    UTC+10, but in practice is either 9 hours or 11 hours ahead of
    London because of non-overlapping daylight savings.</p>

    <p class='phone'><cite>cperey:</cite> what should we do for
    upcoming guest speakers?</p>

    <p class='irc'>&lt;<cite>cperey</cite>&gt;
    www.globallockbox.com</p>

    <p class='phone'><cite>hhalpin:</cite> they don't do privacy
    policy per se</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; Nov or October?</p>

    <p class='irc'>&lt;<cite>danbri</cite>&gt; so long as they're
    talkign about general issues, trends etc., and their approach
    in broad brush, seems great</p><a name="action08" id=
    "action08"></a>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt;
    <strong>ACTION:</strong> <strong>[CONTINUES]</strong> danbri to
    find someone from Opera to talk Widgets [recorded in <a href=
    "http://www.w3.org/2009/09/23-swxg-minutes.html#action08">http://www.w3.org/2009/09/23-swxg-minutes.html#action08</a>]</p>

    <p class='phone'><cite>cperey:</cite> Is what they do is
    relevant to social networks?</p><a name="action09" id=
    "action09"></a>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt;
    <strong>ACTION:</strong> <strong>[DONE]</strong> danbri and
    karl to contact Evan of identi.ca over OpenMicroblogging and
    W3C. [recorded in <a href=
    "http://www.w3.org/2009/09/23-swxg-minutes.html#action09">http://www.w3.org/2009/09/23-swxg-minutes.html#action09</a>]</p>

    <p class='phone'><cite>cperey:</cite> they do a lot of
    things</p>

    <p class='irc'>&lt;<cite>danbri</cite>&gt; rather than on
    detail of the patented works, which i think we wouldn't want to
    hear about</p><a name="action10" id="action10"></a>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt;
    <strong>ACTION:</strong> <strong>[DONE]</strong> Renato and
    DanBri and hhalpin to schedule DataPortability.org/XMPP
    [recorded in <a href=
    "http://www.w3.org/2009/09/23-swxg-minutes.html#action10">http://www.w3.org/2009/09/23-swxg-minutes.html#action10</a>]</p>

    <p class='phone'><cite>cperey:</cite> they are in
    California,</p>

    <p class='irc'>&lt;<cite>mischat</cite>&gt; i would like to try
    and invite someone from the BBC to talk about how they used
    twitter to report news on this last iranian elections, post
    having all of their reporter being chucked out</p>

    <p class='phone'><cite>cperey:</cite> so they will be happy if
    we change the time.</p><a name="action11" id="action11"></a>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt;
    <strong>ACTION:</strong> cperey to book global lockbox as an
    invited speaker [recorded in <a href=
    "http://www.w3.org/2009/09/23-swxg-minutes.html#action11">http://www.w3.org/2009/09/23-swxg-minutes.html#action11</a>]</p>

    <p class='irc'>&lt;<cite>trackbot</cite>&gt; Created ACTION-90
    - Book global lockbox as an invited speaker [on Christine Perey
    - due 2009-09-30].</p>

    <p class='irc'>&lt;<cite>mischat</cite>&gt; i will start
    mailing people and i will mail the list</p>

    <p class='irc'>&lt;<cite>tinkster</cite>&gt; yes</p>

    <p class='irc'>&lt;<cite>bblfish</cite>&gt; yes</p>

    <p class='phone'><cite>mischat:</cite> On the guardian, they
    had an interview<br />
    ... about how bbc tracked the iranian elections through
    twitter</p>

    <p class='irc'>&lt;<cite>danbri</cite>&gt; that would be great,
    +1 from me</p>

    <p class='irc'>&lt;<cite>melvster</cite>&gt; +1</p>

    <p class='irc'>&lt;<cite>tinkster</cite>&gt; +1</p>

    <p class='irc'>&lt;<cite>pchampin</cite>&gt; +1</p>

    <p class='phone'><cite>mischat:</cite> would people be happy to
    hear that.</p>

    <p class='irc'>&lt;<cite>DKA</cite>&gt; +1</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; sounds interstig,
    particulary re provenance use case danbri brought up
    earlier</p>

    <p class='irc'>&lt;<cite>danbri</cite>&gt; provenance and
    retweet api discussions continue in the statusnet list</p>

    <h3 id="item06">"User Stories"</h3>

    <p class='irc'>&lt;<cite>cperey</cite>&gt; anyone from
    OpenSocial?</p>

    <p class='irc'>&lt;<cite>cperey</cite>&gt; I've touched bases
    with David Glazer</p>

    <p class='irc'>&lt;<cite>danbri</cite>&gt; <a href=
    "http://lists.status.net/pipermail/statusnet-dev/2009-September/002344.html">
    http://lists.status.net/pipermail/statusnet-dev/2009-September/002344.html</a>
    - statusnet / retweet thread</p>

    <p class='phone'><cite>hhalpin:</cite> bblfish do you have any
    updates?</p><a name="action12" id="action12"></a>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt;
    <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/09/23-swxg-minutes.html#action12">http://www.w3.org/2009/09/23-swxg-minutes.html#action12</a>]</p><a name="action13"
    id="action13"></a>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt;
    <strong>ACTION:</strong> <strong>[CONTINUES]</strong> rreck to
    flesh out anonymous usecase connecting to multiple identies and
    null provenance [recorded in <a href=
    "http://www.w3.org/2009/09/23-swxg-minutes.html#action13">http://www.w3.org/2009/09/23-swxg-minutes.html#action13</a>]</p>

    <p class='phone'><cite>bblfish:</cite> I will be meeting with
    someone in Paris here</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; When you meet up
    with Tim ping me</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; And I can walk you
    and Tim through the W3C CVS editing process</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; and we can
    hopefully get Oshani on the week.</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; Oshani on the call
    - and Karl also would know all of this!!</p><a name="action14"
    id="action14"></a>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt;
    <strong>ACTION:</strong> <strong>[CONTINUES]</strong> Oshani to
    merge document takedown with time-related takedown "forget this
    in ten years" and more general concept of data removal.
    [recorded in <a href=
    "http://www.w3.org/2009/09/23-swxg-minutes.html#action14">http://www.w3.org/2009/09/23-swxg-minutes.html#action14</a>]</p>

    <p class='phone'><cite>bblfish:</cite> I would like to have a
    document to be easier to read.</p><a name="action15" id=
    "action15"></a>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt;
    <strong>ACTION:</strong> <strong>[CONTINUES]</strong> oshani to
    reframe the geolocation/intent/portability [recorded in
    <a href="http://www.w3.org/2009/09/23-swxg-minutes.html#action15">
    http://www.w3.org/2009/09/23-swxg-minutes.html#action15</a>]</p><a name="action16"
    id="action16"></a>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt;
    <strong>ACTION:</strong> <strong>[CONTINUES]</strong> oshani to
    flesh out "Intransitivity of Policies Applied to Social Network
    Data" [recorded in <a href=
    "http://www.w3.org/2009/09/23-swxg-minutes.html#action16">http://www.w3.org/2009/09/23-swxg-minutes.html#action16</a>]</p><a name="action17"
    id="action17"></a>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt;
    <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/09/23-swxg-minutes.html#action17">http://www.w3.org/2009/09/23-swxg-minutes.html#action17</a>]</p><a name="action18"
    id="action18"></a>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt;
    <strong>ACTION:</strong> <strong>[CONTINUES]</strong> bblfish
    to merge Family and Group access usecases [recorded in <a href=
    "http://www.w3.org/2009/09/23-swxg-minutes.html#action18">http://www.w3.org/2009/09/23-swxg-minutes.html#action18</a>]</p><a name="action19"
    id="action19"></a>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt;
    <strong>ACTION:</strong> <strong>[CONTINUES]</strong> caribou
    to flesh out Data Protection use-case specifying user vs.
    purpose, cite their work in PrimeLife [recorded in <a href=
    "http://www.w3.org/2009/09/23-swxg-minutes.html#action19">http://www.w3.org/2009/09/23-swxg-minutes.html#action19</a>]</p><a name="action20"
    id="action20"></a>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt;
    <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/09/23-swxg-minutes.html#action20">http://www.w3.org/2009/09/23-swxg-minutes.html#action20</a>]</p>

    <h3 id="item07">"Invited Guest - Ros Lawler of Random
    House"</h3>

    <p class='irc'>&lt;<cite>oshani</cite>&gt; 2 of my actions are
    done: <a href=
    "http://www.w3.org/2005/Incubator/socialweb/wiki/UserStories#Document_Takedowns">
    http://www.w3.org/2005/Incubator/socialweb/wiki/UserStories#Document_Takedowns</a>
    and <a href=
    "http://www.w3.org/2005/Incubator/socialweb/wiki/UserStories#Intransitivity_of_Policies_Applied_to_Social_Network_Data">
    http://www.w3.org/2005/Incubator/socialweb/wiki/UserStories#Intransitivity_of_Policies_Applied_to_Social_Network_Data</a></p><a name="action21"
    id="action21"></a>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt;
    <strong>ACTION:</strong> <strong>[DONE]</strong> oshani to
    flesh out "Intransitivity of Policies Applied to Social Network
    Data" [recorded in <a href=
    "http://www.w3.org/2009/09/23-swxg-minutes.html#action21">http://www.w3.org/2009/09/23-swxg-minutes.html#action21</a>]</p><a name="action22"
    id="action22"></a>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt;
    <strong>ACTION:</strong> <strong>[DONE]</strong> Oshani to
    merge document takedown with time-related takedown "forget this
    in ten years" and more general concept of data removal.
    [recorded in <a href=
    "http://www.w3.org/2009/09/23-swxg-minutes.html#action22">http://www.w3.org/2009/09/23-swxg-minutes.html#action22</a>]</p>

    <p class='phone'><cite>bbb:</cite> a lot of the user stories we
    have are centered on individuals</p>

    <p class='irc'>&lt;<cite>mischat</cite>&gt; <a href=
    "http://www.linkedin.com/pub/ros-lawler/7/327/b0b">http://www.linkedin.com/pub/ros-lawler/7/327/b0b</a></p>

    <p class='phone'><cite>Ros:</cite> we have experimented into
    social networks</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Guest speaker: Ros
    Lawler, random House</p>

    <p class='phone'><cite>Ros:</cite> identifying fan and
    interests group</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; uses social networks
    to find fan groups</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; create fan groups</p>

    <p class='phone'><cite>Ros:</cite> creating fan groups<br />
    ... the work of analysis is a lot easier</p>

    <p class='irc'>&lt;<cite>mischat</cite>&gt; <a href=
    "http://www.davegorman.com/">http://www.davegorman.com/</a></p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Will try Karl</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; If there's no fan
    gourp - how do we create one</p>

    <p class='irc'>&lt;<cite>bblfish</cite>&gt; terry Pratchet</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Need to understand
    the community, like Terry Pratchett</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Approached Bebo to do
    some promo work as taregting younger demographic</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Bebo more
    creative</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Contatcted marketing
    folk at Bebo - make it interesting nad we'll make it easy for
    you</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; get folk on Bebo to
    dress up as Dsicword characters</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Got list of over x
    thousand friends - quick data captyre</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Facebook has lots of
    activity. Some good some not</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Worked well - long
    cookery list</p>

    <p class='irc'>&lt;<cite>bblfish</cite>&gt; "cooking the
    books"</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Group called cooking
    teh books - work within frameowrk of social network</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; We have author sites,
    chick let sites etc</p>

    <p class='irc'>&lt;<cite>bblfish</cite>&gt; ROY - return on
    invsetment</p>

    <p class='phone'>social networks can be really time
    consuming</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Can be time consuming
    to run a new group - so need to make sure we're actually
    getting sales</p>

    <p class='phone'>direct sales are really poor in social
    network</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Need to fine ways to
    build data capture</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; E-mail gives us a
    good ROI - use SNs to capture e-mail etc.</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Good publicity
    success on the back of SNs</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Still working on how
    much time do you put in</p>

    <p class='phone'>karl wonders if there are metrics for
    measuring</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; balance of
    effort/return</p>

    <p class='phone'><cite>ccc:</cite> one of the obsessive topic
    is privacy</p>

    <p class='phone'><cite>ros:</cite> it has to be opt-in.<br />
    ... in terms of our privacy we don't have any</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Some of us did this
    from our personal profiles - now moved into professional
    area</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Now done in name of
    author, or publishing house or imprint</p>

    <p class='phone'><cite>ccc:</cite> are there missing features
    on twitter?</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; PhilA: is there
    things you'd like to see on Twitter and SNs?</p>

    <p class='phone'><cite>ros:</cite> it is very time consuming,
    we could a one login for all of them.</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Ros: Don't think
    there is a shortcut - wish there were one</p>

    <p class='irc'>&lt;<cite>bblfish</cite>&gt; "onr login to all
    of them"</p>

    <p class='phone'><cite>ros:</cite> log in to all of them,
    etc.</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Lots of people here
    being shown how to use Tweetdeck etc. IT teems say no to
    download and install anything</p>

    <p class='irc'>&lt;<cite>bblfish</cite>&gt; so you have to work
    from home :-)</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Everyone appreciates
    the argument but it gets in the way.</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; So there's a rpobelm
    from a corporate point of view</p>

    <p class='irc'>&lt;<cite>Zakim</cite>&gt; karl, you wanted to
    ask if it is time consuming to contribute or to read</p>

    <p class='irc'>&lt;<cite>MacTed</cite>&gt; (trouble with
    Twitter echoes to Facebook, LJ, etc., is -- how can I read my
    Tweetstream *and* those others without endless
    duplication/multiplication? Usenet is hard to reinvent!)</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; DKA: Vodafone is very
    large and conservative - the culture change needed for
    corporate networks to be available is big. It's still
    happening, we're not there yet. But it does need to happen</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; .. it happens from
    the PR organisation, not the IT team</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; .. the PR team get it
    - the IT Crew may need more persuasion</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; DKA: Maybe there's
    somthing to be said about Best pratice for large
    orgnaisations</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; IT policies can be a
    blocker to adoption</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Ros: We're also
    discussing cost. We take up a lot of bandwidth looking at
    facebook and so on - what is the legitimate use of the system.
    Video increasingly improtant</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Karl: Is it time
    consuming to read or to contribute?</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Ros: Both take a lot
    of time to do properly. It's about establishing a relationship.
    Doing it meaningfully takes time</p>

    <p class='irc'>&lt;<cite>danbri</cite>&gt; re "Best pratice for
    large orgnaisations", ... interesting suggestion</p>

    <p class='irc'>&lt;<cite>mischat</cite>&gt; i recall Habitat™
    using Twitter to get advertising traffic, and was caught out
    for trying to hijack #iranelections to sell their products
    <a href=
    "http://news.bbc.co.uk/1/hi/uk/8116869.stm.">http://news.bbc.co.uk/1/hi/uk/8116869.stm.</a>
    I wonder how bad that was for their reputation</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Karl: From my
    experience it's a lot easier to track things when you're
    organised. An aggregator can create dynamic lists, and
    filtering. Contributing can take longer</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Ros: We're creating
    content that we want to be able to distribute across multiple
    sites - hence we've created out own widget that gives you free
    access to some new books etc.</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; .. gets more mass
    reach through social objects and automated distribution</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Adam: We (boeing) did
    a bench mark study about the culture - we had to not release
    tech because the culture wasn't ready. Is this going to save me
    time and money?</p>

    <p class='phone'>culture is more important than technology.
    Pushbacks are coming from the need to understand if it will be
    beneficial to the company</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Culture more
    improtant than tech</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Ros: When I joined 3
    years ago digital literacy was very low. Now we've built it up
    throughout the organisation</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; ack: bblfish</p>

    <p class='phone'><cite>bblfish:</cite> how many social networks
    you are following and contributing?</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; bblfish: How many SNs
    do you contribute to/follow and how many can you not join
    because it's too much work</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Ros: we do have a lot
    of marketeers across the company - probably 10 or so across the
    group - and we go where the fans/readers are</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; .. yes, we're on
    TWitter and FB because that's where the numbers are but then
    we'll do more specialist things like, for example, LinkedIn for
    launching Richard Branson's book</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Ros: from a user
    point of view, there has tpo be a really big driver to sign up
    for another SN, setting up a new account</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; thinking of
    ning</p>

    <p class='irc'>&lt;<cite>mischat</cite>&gt; agreed hhalpin</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; .. we'll see them set
    up, say FB nad then go to Twitter, but there needs to be a
    stroing interest to get them to move</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; harry: Ojne thing
    we're interested in is standardisation - making it easier for
    everyone</p>

    <p class='irc'>&lt;<cite>danbri</cite>&gt; doh, skype-out
    account ran dry...</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; .. all the things
    I've been invited to are based on Ning and there are otehr
    specialist sites - do you think some sort of distributed SN
    standard would help or hurt businesses?</p>

    <p class='irc'>&lt;<cite>danbri</cite>&gt; re publisher
    industry use of social nets, relatedly i heard that many
    Myspace API efforts eg <a href=
    "http://search.cpan.org/dist/WWW-Myspace/lib/WWW/Myspace.pm">http://search.cpan.org/dist/WWW-Myspace/lib/WWW/Myspace.pm</a>
    are driven by needs of music publicists</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Ros: The publis that
    we're trying to reach are quite sophisticted. If it's not as
    good as facebook then it's not any good. It must do at least
    that much.</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; What we want is a mix
    of personal pages and advertising - that's the ideal - for
    us</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; W3C Widgets comes
    to mind...</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; .. we have to make a
    differnet version of our widget for different SNs</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; And of course
    OpenSocial</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; ack: Mischa</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; mischa: I saw habitat
    jumping on the #iranelections tag on twitter to get people to
    go to their shops. Any otehr examples of other people doing it
    wrong?</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Ros: They had a lot
    of bad PR. but the dust has settled. It did them damage but
    it's gone and long term it's not really an issue</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; .. Moonfruit were in
    the press a lot. twitter banned #moonfruit eventually</p>

    <p class='irc'>&lt;<cite>danbri</cite>&gt; re w3c widgets
    -meet- social networks, see <a href=
    "http://incubator.apache.org/wookie/">http://incubator.apache.org/wookie/</a></p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; They'r a white label
    website provider. Just include #moonfruit in your tweet and get
    a free xyz - and Twitter jumped in editorially for the first
    time. Big discussion./</p>

    <p class='irc'>&lt;<cite>bblfish</cite>&gt; +q</p>

    <p class='irc'>&lt;<cite>tinkster</cite>&gt; <a href=
    "http://mashable.com/2009/07/01/moonfruit-macbook/">http://mashable.com/2009/07/01/moonfruit-macbook/</a></p>

    <p class='irc'>&lt;<cite>mischat</cite>&gt; agreed bblfish
    !</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; bblfish: so that
    raises the question of ownership?</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; .. there's an editor
    that can ban people from the network - in a distributed system
    everyone wons their own stuff. Would that be seen as
    valuable</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; (yes, this returns
    to the licensing issues)</p>

    <p class='irc'>&lt;<cite>PhilA</cite>&gt; Ros: yes. Look at the
    T&amp;Cs - Ning owns copyright on anythign you post - so we
    can't post any of our book content because actually we own
    that, not them!</p>

    <p class='irc'>&lt;<cite>mischat</cite>&gt; good point</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; it would be
    interesting not just to look at privacy policies but content
    ownership</p>

    <p class='irc'>&lt;<cite>mischat</cite>&gt; agreed hhalpin</p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; thanks
    ross!</p><a name="action23" id="action23"></a>

     <p class='irc'>&lt;<cite>hhalpin</cite>&gt;
    <strong>ACTION:</strong> Archer to write summary of Ros's talk
    [recorded in <a href=
    "http://www.w3.org/2009/09/23-swxg-minutes.html#action25">http://www.w3.org/2009/09/23-swxg-minutes.html#action25</a>]</p>

    <p class='irc'>&lt;<cite>trackbot</cite>&gt; Created ACTION-91
    - Write summary of Ros's talk [on Phil Archer - due
    2009-09-30].</p>

    <p class='irc'>&lt;<cite>melvster</cite>&gt; <a href=
    "http://www.w3.org/2005/Incubator/socialweb/wiki/InvitedGuestSummaries">
    http://www.w3.org/2005/Incubator/socialweb/wiki/InvitedGuestSummaries</a></p>

    <p class='irc'>&lt;<cite>hhalpin</cite>&gt; Adjourn
    Meeting.</p>

    <p class='irc'>&lt;<cite>bblfish</cite>&gt; we should do a
    podcast of these meetings ;-)</p>
  </div>

  <h2><a name="ActionSummary" id="ActionSummary">Summary of Action
  Items</a></h2><!-- Action Items -->
  <strong>[NEW]</strong> <strong>ACTION:</strong> Archer to write
  summary of Ros's talk [recorded in <a href=
  "http://www.w3.org/2009/09/23-swxg-minutes.html#action25">http://www.w3.org/2009/09/23-swxg-minutes.html#action25</a>]<br />

  <strong>[NEW]</strong> <strong>ACTION:</strong> cperey to book
  global lockbox as an invited speaker [recorded in <a href=
  "http://www.w3.org/2009/09/23-swxg-minutes.html#action11">http://www.w3.org/2009/09/23-swxg-minutes.html#action11</a>]<br />

  <strong>[NEW]</strong> <strong>ACTION:</strong> hhalpin to get
  back to people on possible telecon time to change to 15:00 UTC.
  [recorded in <a href=
  "http://www.w3.org/2009/09/23-swxg-minutes.html#action02">http://www.w3.org/2009/09/23-swxg-minutes.html#action02</a>]<br />

  <strong>[NEW]</strong> <strong>ACTION:</strong> PhilA to write
  summary of Ros's talk [recorded in <a href=
  "http://www.w3.org/2009/09/23-swxg-minutes.html#action23">http://www.w3.org/2009/09/23-swxg-minutes.html#action23</a>]<br />

  &nbsp;<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/09/23-swxg-minutes.html#action12">http://www.w3.org/2009/09/23-swxg-minutes.html#action12</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/09/23-swxg-minutes.html#action18">http://www.w3.org/2009/09/23-swxg-minutes.html#action18</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/09/23-swxg-minutes.html#action17">http://www.w3.org/2009/09/23-swxg-minutes.html#action17</a>]<br />

  <strong>[PENDING]</strong> <strong>ACTION:</strong> caribou to
  flesh out Data Protection use-case specifying user vs. purpose,
  cite their work in PrimeLife [recorded in <a href=
  "http://www.w3.org/2009/09/23-swxg-minutes.html#action19">http://www.w3.org/2009/09/23-swxg-minutes.html#action19</a>]<br />

  <strong>[PENDING]</strong> <strong>ACTION:</strong> danbri to
  find someone from Opera to talk Widgets [recorded in <a href=
  "http://www.w3.org/2009/09/23-swxg-minutes.html#action08">http://www.w3.org/2009/09/23-swxg-minutes.html#action08</a>]<br />

  <strong>[PENDING]</strong> <strong>ACTION:</strong> DKA to
  summarize OSLO and geoLocation conversation in order to spread
  knowledge of these efforts among W3C members. [recorded in
  <a href=
  "http://www.w3.org/2009/09/23-swxg-minutes.html#action05">http://www.w3.org/2009/09/23-swxg-minutes.html#action05</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/09/23-swxg-minutes.html#action20">http://www.w3.org/2009/09/23-swxg-minutes.html#action20</a>]<br />

  <strong>[PENDING]</strong> <strong>ACTION:</strong> Mischa to
  describe/implement a report of terms and conditions, and how they
  change between now and the end of the XG. [recorded in <a href=
  "http://www.w3.org/2009/09/23-swxg-minutes.html#action06">http://www.w3.org/2009/09/23-swxg-minutes.html#action06</a>]<br />

  <strong>[PENDING]</strong> <strong>ACTION:</strong> oshani to
  flesh out "Intransitivity of Policies Applied to Social Network
  Data" [recorded in <a href=
  "http://www.w3.org/2009/09/23-swxg-minutes.html#action16">http://www.w3.org/2009/09/23-swxg-minutes.html#action16</a>]<br />

  <strong>[PENDING]</strong> <strong>ACTION:</strong> Oshani to
  merge document takedown with time-related takedown "forget this
  in ten years" and more general concept of data removal. [recorded
  in <a href=
  "http://www.w3.org/2009/09/23-swxg-minutes.html#action14">http://www.w3.org/2009/09/23-swxg-minutes.html#action14</a>]<br />

  <strong>[PENDING]</strong> <strong>ACTION:</strong> oshani to
  reframe the geolocation/intent/portability [recorded in <a href=
  "http://www.w3.org/2009/09/23-swxg-minutes.html#action15">http://www.w3.org/2009/09/23-swxg-minutes.html#action15</a>]<br />

  <strong>[PENDING]</strong> <strong>ACTION:</strong> rreck to
  flesh out anonymous usecase connecting to multiple identies and
  null provenance [recorded in <a href=
  "http://www.w3.org/2009/09/23-swxg-minutes.html#action13">http://www.w3.org/2009/09/23-swxg-minutes.html#action13</a>]<br />

  &nbsp;<br />
  <strong>[DONE]</strong> <strong>ACTION:</strong> cperey to start
  a wiki page about the open day session at TPAC [recorded in
  <a href=
  "http://www.w3.org/2009/09/23-swxg-minutes.html#action03">http://www.w3.org/2009/09/23-swxg-minutes.html#action03</a>]<br />

  <strong>[DONE]</strong> <strong>ACTION:</strong> danbri and karl
  to contact Evan of identi.ca over OpenMicroblogging and W3C.
  [recorded in <a href=
  "http://www.w3.org/2009/09/23-swxg-minutes.html#action09">http://www.w3.org/2009/09/23-swxg-minutes.html#action09</a>]<br />

  <strong>[DONE]</strong> <strong>ACTION:</strong> DKA to
  double-check on TPAC, make sure SWXG is booked. [recorded in
  <a href=
  "http://www.w3.org/2009/09/23-swxg-minutes.html#action04">http://www.w3.org/2009/09/23-swxg-minutes.html#action04</a>]<br />

  <strong>[DONE]</strong> <strong>ACTION:</strong> hhalpin needs to
  convert previous minutes into HTML via some scripting [recorded
  in <a href=
  "http://www.w3.org/2009/09/23-swxg-minutes.html#action01">http://www.w3.org/2009/09/23-swxg-minutes.html#action01</a>]<br />

  <strong>[DONE]</strong> <strong>ACTION:</strong> Melvster to
  write up David Raggett's guest talk on context, delegated privacy
  providers, and so on. [recorded in <a href=
  "http://www.w3.org/2009/09/23-swxg-minutes.html#action07">http://www.w3.org/2009/09/23-swxg-minutes.html#action07</a>]<br />

  <strong>[DONE]</strong> <strong>ACTION:</strong> oshani to flesh
  out "Intransitivity of Policies Applied to Social Network Data"
  [recorded in <a href=
  "http://www.w3.org/2009/09/23-swxg-minutes.html#action21">http://www.w3.org/2009/09/23-swxg-minutes.html#action21</a>]<br />

  <strong>[DONE]</strong> <strong>ACTION:</strong> Oshani to merge
  document takedown with time-related takedown "forget this in ten
  years" and more general concept of data removal. [recorded in
  <a href=
  "http://www.w3.org/2009/09/23-swxg-minutes.html#action22">http://www.w3.org/2009/09/23-swxg-minutes.html#action22</a>]<br />

  <strong>[DONE]</strong> <strong>ACTION:</strong> Renato and
  DanBri and hhalpin to schedule DataPortability.org/XMPP [recorded
  in <a href=
  "http://www.w3.org/2009/09/23-swxg-minutes.html#action10">http://www.w3.org/2009/09/23-swxg-minutes.html#action10</a>]<br />

  &nbsp;<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/09/23 15:48:23 $
  </address>

  </div>
</body>
</html>