aboutsummaryrefslogtreecommitdiffstats
path: root/perf/buzz_raw.html
blob: ff86ff7063d38a7b96b0806a2d3cd196f96d7ff4 (plain)
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  <head>
    <link rel="stylesheet" type="text/css" href="buzz.css"/>
    <script type="text/javascript">
      function time(timerName){
        var started = new Date().getTime();
        return {
          name: timerName,
          started: started,
          lapped: started,
          lastLap: {duration:0, name:'BEGIN', time:started},
          lap: function(lapName){
            var totalDuration = (this.lapped = new Date().getTime()) - this.started;
            var lapDuration = this.lapped - this.lastLap.time;
            var lastName = this.lastLap.name;
            this.lastLap = {duration:lapDuration, name:lapName, time:this.lapped};
            console.log(timerName, lapName + ': ' + this.lastLap.duration + ' ms.', '(' + totalDuration + ' ms.)');
          }
        };
      }
      window.browser = time('boot:');

    </script>
    <script type="text/javascript">
      window.browser.lap('parse <angular/>');
      function onInit() {
        window.browser.lap('compile DOM');
        window.setTimeout(function(){
          window.browser.lap('DOM render');
        }, 1);
      }
      onInit();
    </script>
    <script type="text/javascript">
      window.browser.lap('parse model');
    </script>
  </head>
  <body>
 <a ng:bind-attr="{&quot;href&quot;:&quot;{{$location.href}}&quot;}" href="buzz_raw.html">reload</a>
   <hr>
   <div>
     <span>&lt;angular/&gt; Buzz</span>
     <span>
       filter:
       <input type="text" name="filterText" class="">
     </span>
     <span>
       user:
       <input type="text" name="userId" ng:required="" class="ng-validation-error" ng-validation-error="Required">
       <button>fetch</button>
     </span>
   </div>
   <ul>
     <!--ng:repeat: item in activities.data.items.$filter(filterText)--><li ng:repeat-index="0">
       <h1>
         <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{item.actor.thumbnailUrl}}'}&quot;}" ng:attr-bind="{src:'http://www.google.com/s2/photos/public/AIbEiAIAAABECOz6ztaiyNHDmQEiC3ZjYXJkX3Bob3RvKigyYTBkYmNlNDgyOGI0NDViOTRlYTlkZjVmNzIxZTllNjMzMWFhODljMAEgSk99ukLxRAAHhTbzhgNkGnE-8g'}">
         <a ng:bind-attr="{&quot;href&quot;:&quot;{{item.actor.profileUrl}}&quot;}" href="http://www.google.com/profiles/googlebuzz"><span ng:bind="item.actor.name">Google Buzz Team</span></a>
         <a href="#" ng:click="expandReplies(item)">Replies: <span ng:bind="item.links.replies[0].count">26</span></a>
       </h1>
       <div>
         <span ng:bind="item.object.content | html"><b>AutoShare from YouTube to Buzz</b>
<br>
<br>If you use YouTube a lot, you may be familiar with AutoShare (see <a href="http://help.youtube.com/support/youtube/bin/answer.py?hl=en&amp;answer=157215">http://help.youtube.com/support/youtube/bin/answer.py?hl=en&amp;answer=157215</a>) which you can use to automatically share your favorites, likes, uploads, or comments on videos to Facebook. Twitter, and Google Reader. Now you can choose to automatically share from YouTube to Google Buzz as well.
<br>
<br>You can still keep YouTube as a connected site in Buzz if you hooked it up previously, but that only automatically posts your uploads for now.</span>
         <div>
           <!--ng:repeat: attachment in item.object.attachments--><a ng:bind-attr="{&quot;href&quot;:&quot;{{attachment.links.enclosure[0].href}}&quot;}" ng:repeat-index="0" href="">
             <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{attachment.links.preview[0].href}}'}&quot;}" ng:attr-bind="{src:''}">
           </a>
         </div>
       </div>
       <my:expand expand="item.replies.show">
         <ul>
           <!--ng:repeat: reply in item.replies.data.items-->
         </ul>
       </my:expand>
     </li><li ng:repeat-index="1">
       <h1>
         <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{item.actor.thumbnailUrl}}'}&quot;}" ng:attr-bind="{src:'http://www.google.com/s2/photos/public/AIbEiAIAAABECOz6ztaiyNHDmQEiC3ZjYXJkX3Bob3RvKigyYTBkYmNlNDgyOGI0NDViOTRlYTlkZjVmNzIxZTllNjMzMWFhODljMAEgSk99ukLxRAAHhTbzhgNkGnE-8g'}">
         <a ng:bind-attr="{&quot;href&quot;:&quot;{{item.actor.profileUrl}}&quot;}" href="http://www.google.com/profiles/googlebuzz"><span ng:bind="item.actor.name">Google Buzz Team</span></a>
         <a href="#" ng:click="expandReplies(item)">Replies: <span ng:bind="item.links.replies[0].count">62</span></a>
       </h1>
       <div>
         <span ng:bind="item.object.content | html"><b>Google Buzz API talks and hackathons</b>
<br>
<br>Come join us to talk about how you can build on Google Buzz -- check out the list below to see if we�ll be in a city near you. We'll cover several open standards (Activity Streams, OAuth, PubSubHubbub, and Salmon) and go in depth with the Google Buzz API and libraries. In some locations we�ll have extended time for hacking with Googlers on hand to answer your questions.
<br>
<br>Here�s the schedule (we�ll add links for the Cambridge, Kiev, and Moscow sessions soon):
<br>
<br>Sydney, Australia - July 1: <a href="http://code.google.com/events/devfests/2010/sydney4.html">http://code.google.com/events/devfests/2010/sydney4.html</a>
<br>Manila, Philippines - July 6: <a href="http://code.google.com/events/devfests/2010/asia1.html">http://code.google.com/events/devfests/2010/asia1.html</a>
<br>Singapore - July 9: <a href="http://code.google.com/events/devfests/2010/asia2.html">http://code.google.com/events/devfests/2010/asia2.html</a>
<br>Kuala Lumpur, Malaysia - July 16: <a href="http://code.google.com/events/devfests/2010/asia3.html">http://code.google.com/events/devfests/2010/asia3.html</a>
<br>New York, NY, USA - July 21: <a href="http://www.meetup.com/NYC-GTUG/calendar/13899003/">http://www.meetup.com/NYC-GTUG/calendar/13899003/</a>
<br>Cambridge, MA, USA - August 7
<br>Stockholm, Sweden - July 12: <a href="http://sites.google.com/site/stockholmgtug/extra-gtug-mte-juli">extra gtug mte juli</a>
<br>Berlin, Germany - July 15: <a href="http://www.berlin-gtug.org/2010/06/july-2010-berlin-gtug-meeting.html">http://www.berlin-gtug.org/2010/06/july-2010-berlin-gtug-meeting.html</a>
<br>Kiev, Ukraine - July 17
<br>Moscow, Russia - July 19
<br>Lisbon, Portugal - July 28th: <a href="https://spreadsheets.google.com/a/google.com/viewform?formkey=dFd5aFo3WVVUX2xaeUZOVDJJVlo1ekE6MQ">https://spreadsheets.google.com/a/google.com/viewform?formkey=dFd5aFo3WVVUX2xaeUZOVDJJVlo1ekE6MQ</a></span>
         <div>
           <!--ng:repeat: attachment in item.object.attachments-->
         </div>
       </div>
       <my:expand expand="item.replies.show">
         <ul>
           <!--ng:repeat: reply in item.replies.data.items-->
         </ul>
       </my:expand>
     </li><li ng:repeat-index="2">
       <h1>
         <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{item.actor.thumbnailUrl}}'}&quot;}" ng:attr-bind="{src:'http://www.google.com/s2/photos/public/AIbEiAIAAABECOz6ztaiyNHDmQEiC3ZjYXJkX3Bob3RvKigyYTBkYmNlNDgyOGI0NDViOTRlYTlkZjVmNzIxZTllNjMzMWFhODljMAEgSk99ukLxRAAHhTbzhgNkGnE-8g'}">
         <a ng:bind-attr="{&quot;href&quot;:&quot;{{item.actor.profileUrl}}&quot;}" href="http://www.google.com/profiles/googlebuzz"><span ng:bind="item.actor.name">Google Buzz Team</span></a>
         <a href="#" ng:click="expandReplies(item)">Replies: <span ng:bind="item.links.replies[0].count">87</span></a>
       </h1>
       <div>
         <span ng:bind="item.object.content | html">When Google Buzz launched, it was only available for devices running Android 2.0+ and iPhone. Not any more! Today we�re a releasing an XHTML version of the Buzz website which can be accessed from many other mobile devices, including those running Android pre-2.0, Blackberry, Nokia S60, and Windows Mobile.
<br>
<br>Read more at <a href="http://googlemobile.blogspot.com/2010/05/google-buzz-for-mobile-now-available-on.html">http://googlemobile.blogspot.com/2010/05/google-buzz-for-mobile-now-available-on.html</a></span>
         <div>
           <!--ng:repeat: attachment in item.object.attachments--><a ng:bind-attr="{&quot;href&quot;:&quot;{{attachment.links.enclosure[0].href}}&quot;}" ng:repeat-index="0" href="http://1.bp.blogspot.com/_SS18DlBSIQ8/S_6tBXefeGI/AAAAAAAAGr4/RXnIdiSgYPI/s400/buzz+pic+1.jpg">
             <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{attachment.links.preview[0].href}}'}&quot;}" ng:attr-bind="{src:'http://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&amp;gadget=a&amp;resize_h=100&amp;url=http%3A%2F%2F1.bp.blogspot.com%2F_SS18DlBSIQ8%2FS_6tBXefeGI%2FAAAAAAAAGr4%2FRXnIdiSgYPI%2Fs400%2Fbuzz%2Bpic%2B1.jpg'}">
           </a><a ng:bind-attr="{&quot;href&quot;:&quot;{{attachment.links.enclosure[0].href}}&quot;}" ng:repeat-index="1" href="http://2.bp.blogspot.com/_SS18DlBSIQ8/S_6t8CKFnSI/AAAAAAAAGsA/U6qdmKc_6G0/s400/buzz+pic+2.jpg">
             <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{attachment.links.preview[0].href}}'}&quot;}" ng:attr-bind="{src:'http://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&amp;gadget=a&amp;resize_h=100&amp;url=http%3A%2F%2F2.bp.blogspot.com%2F_SS18DlBSIQ8%2FS_6t8CKFnSI%2FAAAAAAAAGsA%2FU6qdmKc_6G0%2Fs400%2Fbuzz%2Bpic%2B2.jpg'}">
           </a><a ng:bind-attr="{&quot;href&quot;:&quot;{{attachment.links.enclosure[0].href}}&quot;}" ng:repeat-index="2" href="">
             <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{attachment.links.preview[0].href}}'}&quot;}" ng:attr-bind="{src:''}">
           </a>
         </div>
       </div>
       <my:expand expand="item.replies.show">
         <ul>
           <!--ng:repeat: reply in item.replies.data.items-->
         </ul>
       </my:expand>
     </li><li ng:repeat-index="3">
       <h1>
         <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{item.actor.thumbnailUrl}}'}&quot;}" ng:attr-bind="{src:'http://www.google.com/s2/photos/public/AIbEiAIAAABECOz6ztaiyNHDmQEiC3ZjYXJkX3Bob3RvKigyYTBkYmNlNDgyOGI0NDViOTRlYTlkZjVmNzIxZTllNjMzMWFhODljMAEgSk99ukLxRAAHhTbzhgNkGnE-8g'}">
         <a ng:bind-attr="{&quot;href&quot;:&quot;{{item.actor.profileUrl}}&quot;}" href="http://www.google.com/profiles/googlebuzz"><span ng:bind="item.actor.name">Google Buzz Team</span></a>
         <a href="#" ng:click="expandReplies(item)">Replies: <span ng:bind="item.links.replies[0].count">96</span></a>
       </h1>
       <div>
         <span ng:bind="item.object.content | html"><b>New! Comments and likes tabs on your profile</b>
<br>
<br>Many of you have asked for an easy way to refer back to the posts you've commented on and/or liked. Some of you have also requested a way to see what other people have commented on or liked -- a great way to discover posts that may interest you too.
<br>
<br>Starting today, you'll see new tabs on your profile that show all the posts you've commented on or liked. By default, these tabs are only visible to you. If you want to share your comments and likes tabs, you can choose to make them publicly visible to others from the Buzz tab under Settings. This won't change who can see each post; private posts stay private.</span>
         <div>
           <!--ng:repeat: attachment in item.object.attachments--><a ng:bind-attr="{&quot;href&quot;:&quot;{{attachment.links.enclosure[0].href}}&quot;}" ng:repeat-index="0" href="https://lh6.googleusercontent.com/_f0qVMWvWkZQ/TD5Lv7B8_oI/AAAAAAAAACk/dc1Ndqi_gfQ/comments%26likes.png">
             <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{attachment.links.preview[0].href}}'}&quot;}" ng:attr-bind="{src:'http://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&amp;gadget=a&amp;resize_h=100&amp;url=https%3A%2F%2Flh6.googleusercontent.com%2F_f0qVMWvWkZQ%2FTD5Lv7B8_oI%2FAAAAAAAAACk%2Fdc1Ndqi_gfQ%2Fs288%2Fcomments%2526likes.png'}">
           </a>
         </div>
       </div>
       <my:expand expand="item.replies.show">
         <ul>
           <!--ng:repeat: reply in item.replies.data.items-->
         </ul>
       </my:expand>
     </li><li ng:repeat-index="4">
       <h1>
         <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{item.actor.thumbnailUrl}}'}&quot;}" ng:attr-bind="{src:'http://www.google.com/s2/photos/public/AIbEiAIAAABECOz6ztaiyNHDmQEiC3ZjYXJkX3Bob3RvKigyYTBkYmNlNDgyOGI0NDViOTRlYTlkZjVmNzIxZTllNjMzMWFhODljMAEgSk99ukLxRAAHhTbzhgNkGnE-8g'}">
         <a ng:bind-attr="{&quot;href&quot;:&quot;{{item.actor.profileUrl}}&quot;}" href="http://www.google.com/profiles/googlebuzz"><span ng:bind="item.actor.name">Google Buzz Team</span></a>
         <a href="#" ng:click="expandReplies(item)">Replies: <span ng:bind="item.links.replies[0].count">187</span></a>
       </h1>
       <div>
         <span ng:bind="item.object.content | html"><b>Fighting follower spam</b>
<br>
<br>Any web service that involves following has to fight "follower spam" -- accounts that follow lots and lots of people in the hopes that some of them will click through to their profiles and a few might even end up buying whatever it is they're selling. Buzz is no different. If you're getting following notices from Buzz users with names that sound suspiciously like spammy marketing scams, the chances are that's exactly what they are -- and we're after them. Just like we work hard to protect your Gmail accounts from email spam, we're working to protect Buzz from follower spam. We look at lots of factors when determining whether to disable an account for follower spam including the number of people it attempts to follow and whether people are blocking it. And just as we're constantly tweaking the algorithms which detect Gmail spam, the same goes for follower spam in Buzz.
<br>
<br>If you're followed by any suspicious looking users, you can report them by clicking the "Report this profile" link on their profile. If they aren't really suspicious but you just don't want them following you, you can always block them.</span>
         <div>
           <!--ng:repeat: attachment in item.object.attachments-->
         </div>
       </div>
       <my:expand expand="item.replies.show">
         <ul>
           <!--ng:repeat: reply in item.replies.data.items-->
         </ul>
       </my:expand>
     </li><li ng:repeat-index="5">
       <h1>
         <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{item.actor.thumbnailUrl}}'}&quot;}" ng:attr-bind="{src:'http://www.google.com/s2/photos/public/AIbEiAIAAABECOz6ztaiyNHDmQEiC3ZjYXJkX3Bob3RvKigyYTBkYmNlNDgyOGI0NDViOTRlYTlkZjVmNzIxZTllNjMzMWFhODljMAEgSk99ukLxRAAHhTbzhgNkGnE-8g'}">
         <a ng:bind-attr="{&quot;href&quot;:&quot;{{item.actor.profileUrl}}&quot;}" href="http://www.google.com/profiles/googlebuzz"><span ng:bind="item.actor.name">Google Buzz Team</span></a>
         <a href="#" ng:click="expandReplies(item)">Replies: <span ng:bind="item.links.replies[0].count">31</span></a>
       </h1>
       <div>
         <span ng:bind="item.object.content | html"><b>New Google Buzz API features</b>
<br>
<br>We just launched the Google Buzz firehose (our top developer feature request) which makes all public activities available as they are published, along with new feeds including comments, likes, and shared counts.
<br>
<br>Read more on the Code Blog:
<br><a href="http://googlecode.blogspot.com/2010/07/new-google-buzz-api-features-including.html">http://googlecode.blogspot.com/2010/07/new-google-buzz-api-features-including.html</a></span>
         <div>
           <!--ng:repeat: attachment in item.object.attachments--><a ng:bind-attr="{&quot;href&quot;:&quot;{{attachment.links.enclosure[0].href}}&quot;}" ng:repeat-index="0" href="">
             <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{attachment.links.preview[0].href}}'}&quot;}" ng:attr-bind="{src:''}">
           </a>
         </div>
       </div>
       <my:expand expand="item.replies.show">
         <ul>
           <!--ng:repeat: reply in item.replies.data.items-->
         </ul>
       </my:expand>
     </li><li ng:repeat-index="6">
       <h1>
         <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{item.actor.thumbnailUrl}}'}&quot;}" ng:attr-bind="{src:'http://www.google.com/s2/photos/public/AIbEiAIAAABECOz6ztaiyNHDmQEiC3ZjYXJkX3Bob3RvKigyYTBkYmNlNDgyOGI0NDViOTRlYTlkZjVmNzIxZTllNjMzMWFhODljMAEgSk99ukLxRAAHhTbzhgNkGnE-8g'}">
         <a ng:bind-attr="{&quot;href&quot;:&quot;{{item.actor.profileUrl}}&quot;}" href="http://www.google.com/profiles/googlebuzz"><span ng:bind="item.actor.name">Google Buzz Team</span></a>
         <a href="#" ng:click="expandReplies(item)">Replies: <span ng:bind="item.links.replies[0].count">45</span></a>
       </h1>
       <div>
         <span ng:bind="item.object.content | html"><b>Two quick Buzz for mobile updates</b>
<br>
<br>Yesterday we rolled out a new design for rendering location attached to posts, including a better place icon, a bigger map, and an easy way to get directions from the post itself.
<br>
<br>In addition, you can now disable comments from Buzz for mobile. (Look for this option under "More Actions").</span>
         <div>
           <!--ng:repeat: attachment in item.object.attachments--><a ng:bind-attr="{&quot;href&quot;:&quot;{{attachment.links.enclosure[0].href}}&quot;}" ng:repeat-index="0" href="http://lh3.ggpht.com/_f0qVMWvWkZQ/TAHzmsivPfI/AAAAAAAAACM/vdqRNwY1Z6Y/buzz_maps_image.jpg">
             <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{attachment.links.preview[0].href}}'}&quot;}" ng:attr-bind="{src:'http://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&amp;gadget=a&amp;resize_h=100&amp;url=http%3A%2F%2Flh3.ggpht.com%2F_f0qVMWvWkZQ%2FTAHzmsivPfI%2FAAAAAAAAACM%2FvdqRNwY1Z6Y%2Fs288%2Fbuzz_maps_image.jpg'}">
           </a>
         </div>
       </div>
       <my:expand expand="item.replies.show">
         <ul>
           <!--ng:repeat: reply in item.replies.data.items-->
         </ul>
       </my:expand>
     </li><li ng:repeat-index="7">
       <h1>
         <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{item.actor.thumbnailUrl}}'}&quot;}" ng:attr-bind="{src:'http://www.google.com/s2/photos/public/AIbEiAIAAABECOz6ztaiyNHDmQEiC3ZjYXJkX3Bob3RvKigyYTBkYmNlNDgyOGI0NDViOTRlYTlkZjVmNzIxZTllNjMzMWFhODljMAEgSk99ukLxRAAHhTbzhgNkGnE-8g'}">
         <a ng:bind-attr="{&quot;href&quot;:&quot;{{item.actor.profileUrl}}&quot;}" href="http://www.google.com/profiles/googlebuzz"><span ng:bind="item.actor.name">Google Buzz Team</span></a>
         <a href="#" ng:click="expandReplies(item)">Replies: <span ng:bind="item.links.replies[0].count">89</span></a>
       </h1>
       <div>
         <span ng:bind="item.object.content | html">Read about the updates we're making to the Google Buzz API (<a href="http://googlecode.blogspot.com/2010/05/introducing-google-buzz-api.html">http://googlecode.blogspot.com/2010/05/introducing-google-buzz-api.html</a>) and check out some of the initial apps developers have created so far (<a href="http://www.google.com/buzz/apps">http://www.google.com/buzz/apps</a>)!</span>
         <div>
           <!--ng:repeat: attachment in item.object.attachments--><a ng:bind-attr="{&quot;href&quot;:&quot;{{attachment.links.enclosure[0].href}}&quot;}" ng:repeat-index="0" href="http://4.bp.blogspot.com/_WryZsbWA8Vs/S_NyVvGdpQI/AAAAAAAAAGY/6Z3vfWpVSoo/s1600/BuzzAPI-logosall.png">
             <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{attachment.links.preview[0].href}}'}&quot;}" ng:attr-bind="{src:'http://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&amp;gadget=a&amp;resize_h=100&amp;url=http%3A%2F%2F4.bp.blogspot.com%2F_WryZsbWA8Vs%2FS_NyVvGdpQI%2FAAAAAAAAAGY%2F6Z3vfWpVSoo%2Fs1600%2FBuzzAPI-logosall.png'}">
           </a><a ng:bind-attr="{&quot;href&quot;:&quot;{{attachment.links.enclosure[0].href}}&quot;}" ng:repeat-index="1" href="">
             <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{attachment.links.preview[0].href}}'}&quot;}" ng:attr-bind="{src:''}">
           </a>
         </div>
       </div>
       <my:expand expand="item.replies.show">
         <ul>
           <!--ng:repeat: reply in item.replies.data.items-->
         </ul>
       </my:expand>
     </li><li ng:repeat-index="8">
       <h1>
         <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{item.actor.thumbnailUrl}}'}&quot;}" ng:attr-bind="{src:'http://www.google.com/s2/photos/public/AIbEiAIAAABECOz6ztaiyNHDmQEiC3ZjYXJkX3Bob3RvKigyYTBkYmNlNDgyOGI0NDViOTRlYTlkZjVmNzIxZTllNjMzMWFhODljMAEgSk99ukLxRAAHhTbzhgNkGnE-8g'}">
         <a ng:bind-attr="{&quot;href&quot;:&quot;{{item.actor.profileUrl}}&quot;}" href="http://www.google.com/profiles/googlebuzz"><span ng:bind="item.actor.name">Google Buzz Team</span></a>
         <a href="#" ng:click="expandReplies(item)">Replies: <span ng:bind="item.links.replies[0].count">61</span></a>
       </h1>
       <div>
         <span ng:bind="item.object.content | html">If you started using Google Buzz before we changed the start-up experience from auto-following to suggestions for people to follow, we want to help you ensure that Buzz is set up the way you want. So the next time you click into the Buzz tab you'll see a page asking you to confirm your Buzz settings -- you can review and edit your settings from here, or at anytime from the Buzz tab of Gmail Settings.
<br>
<br>For more info, check out this post on the Gmail blog:  <a href="http://gmailblog.blogspot.com/2010/04/confirm-your-buzz-settings.html">http://gmailblog.blogspot.com/2010/04/confirm-your-buzz-settings.html</a></span>
         <div>
           <!--ng:repeat: attachment in item.object.attachments--><a ng:bind-attr="{&quot;href&quot;:&quot;{{attachment.links.enclosure[0].href}}&quot;}" ng:repeat-index="0" href="http://1.bp.blogspot.com/_JE4qNpFW6Yk/S7ZUkxT141I/AAAAAAAAAjA/gEdS8783dFE/buzzConfirmSetup.png">
             <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{attachment.links.preview[0].href}}'}&quot;}" ng:attr-bind="{src:'http://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&amp;gadget=a&amp;resize_h=100&amp;url=http%3A%2F%2F1.bp.blogspot.com%2F_JE4qNpFW6Yk%2FS7ZUkxT141I%2FAAAAAAAAAjA%2FgEdS8783dFE%2FbuzzConfirmSetup.png'}">
           </a><a ng:bind-attr="{&quot;href&quot;:&quot;{{attachment.links.enclosure[0].href}}&quot;}" ng:repeat-index="1" href="">
             <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{attachment.links.preview[0].href}}'}&quot;}" ng:attr-bind="{src:''}">
           </a>
         </div>
       </div>
       <my:expand expand="item.replies.show">
         <ul>
           <!--ng:repeat: reply in item.replies.data.items-->
         </ul>
       </my:expand>
     </li><li ng:repeat-index="9">
       <h1>
         <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{item.actor.thumbnailUrl}}'}&quot;}" ng:attr-bind="{src:'http://www.google.com/s2/photos/public/AIbEiAIAAABECOz6ztaiyNHDmQEiC3ZjYXJkX3Bob3RvKigyYTBkYmNlNDgyOGI0NDViOTRlYTlkZjVmNzIxZTllNjMzMWFhODljMAEgSk99ukLxRAAHhTbzhgNkGnE-8g'}">
         <a ng:bind-attr="{&quot;href&quot;:&quot;{{item.actor.profileUrl}}&quot;}" href="http://www.google.com/profiles/googlebuzz"><span ng:bind="item.actor.name">Google Buzz Team</span></a>
         <a href="#" ng:click="expandReplies(item)">Replies: <span ng:bind="item.links.replies[0].count">495</span></a>
       </h1>
       <div>
         <span ng:bind="item.object.content | html">Hey all -- this is the account for the Google Buzz team.  We'll post all sorts of updates here about what we're working on.  Feel free to give us feedback and ideas on Google Buzz!
<br>
<br>Here's a photo of our launch "war room" from last week. :-)</span>
         <div>
           <!--ng:repeat: attachment in item.object.attachments--><a ng:bind-attr="{&quot;href&quot;:&quot;{{attachment.links.enclosure[0].href}}&quot;}" ng:repeat-index="0" href="http://lh3.ggpht.com/_f0qVMWvWkZQ/S39UD8tY_pI/AAAAAAAAAAM/CTneAri7FGY/buzzLaunchRoom.jpg">
             <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{attachment.links.preview[0].href}}'}&quot;}" ng:attr-bind="{src:'http://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&amp;gadget=a&amp;resize_h=100&amp;url=http%3A%2F%2Flh3.ggpht.com%2F_f0qVMWvWkZQ%2FS39UD8tY_pI%2FAAAAAAAAAAM%2FCTneAri7FGY%2Fs288%2FbuzzLaunchRoom.jpg'}">
           </a>
         </div>
       </div>
       <my:expand expand="item.replies.show">
         <ul>
           <!--ng:repeat: reply in item.replies.data.items-->
         </ul>
       </my:expand>
     </li><li ng:repeat-index="10">
       <h1>
         <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{item.actor.thumbnailUrl}}'}&quot;}" ng:attr-bind="{src:'http://www.google.com/s2/photos/public/AIbEiAIAAABECOz6ztaiyNHDmQEiC3ZjYXJkX3Bob3RvKigyYTBkYmNlNDgyOGI0NDViOTRlYTlkZjVmNzIxZTllNjMzMWFhODljMAEgSk99ukLxRAAHhTbzhgNkGnE-8g'}">
         <a ng:bind-attr="{&quot;href&quot;:&quot;{{item.actor.profileUrl}}&quot;}" href="http://www.google.com/profiles/googlebuzz"><span ng:bind="item.actor.name">Google Buzz Team</span></a>
         <a href="#" ng:click="expandReplies(item)">Replies: <span ng:bind="item.links.replies[0].count">52</span></a>
       </h1>
       <div>
         <span ng:bind="item.object.content | html">The Buzz layer in Google Maps for mobile is now available on BlackBerry phones:
<br><a href="http://googlemobile.blogspot.com/2010/04/google-maps-40-for-blackberry-adds.html">http://googlemobile.blogspot.com/2010/04/google-maps-40-for-blackberry-adds.html</a></span>
         <div>
           <!--ng:repeat: attachment in item.object.attachments--><a ng:bind-attr="{&quot;href&quot;:&quot;{{attachment.links.enclosure[0].href}}&quot;}" ng:repeat-index="0" href="http://1.bp.blogspot.com/_16aYP83FzVs/S7zAh47PpZI/AAAAAAAAACU/UXotejzuskY/s320/buzz3_cropped.png">
             <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{attachment.links.preview[0].href}}'}&quot;}" ng:attr-bind="{src:'http://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&amp;gadget=a&amp;resize_h=100&amp;url=http%3A%2F%2F1.bp.blogspot.com%2F_16aYP83FzVs%2FS7zAh47PpZI%2FAAAAAAAAACU%2FUXotejzuskY%2Fs320%2Fbuzz3_cropped.png'}">
           </a><a ng:bind-attr="{&quot;href&quot;:&quot;{{attachment.links.enclosure[0].href}}&quot;}" ng:repeat-index="1" href="">
             <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{attachment.links.preview[0].href}}'}&quot;}" ng:attr-bind="{src:''}">
           </a>
         </div>
       </div>
       <my:expand expand="item.replies.show">
         <ul>
           <!--ng:repeat: reply in item.replies.data.items-->
         </ul>
       </my:expand>
     </li><li ng:repeat-index="11">
       <h1>
         <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{item.actor.thumbnailUrl}}'}&quot;}" ng:attr-bind="{src:'http://www.google.com/s2/photos/public/AIbEiAIAAABECOz6ztaiyNHDmQEiC3ZjYXJkX3Bob3RvKigyYTBkYmNlNDgyOGI0NDViOTRlYTlkZjVmNzIxZTllNjMzMWFhODljMAEgSk99ukLxRAAHhTbzhgNkGnE-8g'}">
         <a ng:bind-attr="{&quot;href&quot;:&quot;{{item.actor.profileUrl}}&quot;}" href="http://www.google.com/profiles/googlebuzz"><span ng:bind="item.actor.name">Google Buzz Team</span></a>
         <a href="#" ng:click="expandReplies(item)">Replies: <span ng:bind="item.links.replies[0].count">81</span></a>
       </h1>
       <div>
         <span ng:bind="item.object.content | html"><b>New! View entire photo albums in Buzz</b>
<br>
<br>Tired of only being able to view a handful of photos from a given Flickr or Picasa album in Buzz's photo viewer? Now you can view the entire thing.
<br>
<br>@<a href="http://www.google.com/profiles/104987932455782713675" class="proflink" oid="104987932455782713675">Thomas Hawk</a> -- we thought you'd appreciate this ;)</span>
         <div>
           <!--ng:repeat: attachment in item.object.attachments-->
         </div>
       </div>
       <my:expand expand="item.replies.show">
         <ul>
           <!--ng:repeat: reply in item.replies.data.items-->
         </ul>
       </my:expand>
     </li><li ng:repeat-index="12">
       <h1>
         <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{item.actor.thumbnailUrl}}'}&quot;}" ng:attr-bind="{src:'http://www.google.com/s2/photos/public/AIbEiAIAAABECOz6ztaiyNHDmQEiC3ZjYXJkX3Bob3RvKigyYTBkYmNlNDgyOGI0NDViOTRlYTlkZjVmNzIxZTllNjMzMWFhODljMAEgSk99ukLxRAAHhTbzhgNkGnE-8g'}">
         <a ng:bind-attr="{&quot;href&quot;:&quot;{{item.actor.profileUrl}}&quot;}" href="http://www.google.com/profiles/googlebuzz"><span ng:bind="item.actor.name">Google Buzz Team</span></a>
         <a href="#" ng:click="expandReplies(item)">Replies: <span ng:bind="item.links.replies[0].count">59</span></a>
       </h1>
       <div>
         <span ng:bind="item.object.content | html">Need a refresher on how to post by email? Want an easy way to show your mom how to share privately? Check out the 7 tips videos we just added to the Google Buzz YouTube Channel.
<br>
<br>Following: <a href="http://www.youtube.com/watch?v=MFo2WvPPgfE">http://www.youtube.com/watch?v=MFo2WvPPgfE</a>
<br>Comments &amp; likes: <a href="http://www.youtube.com/watch?v=3H0or0Tnrt8">http://www.youtube.com/watch?v=3H0or0Tnrt8</a>
<br>Photos, links &amp; videos: <a href="http://www.youtube.com/watch?v=sDZAPBy-ups">http://www.youtube.com/watch?v=sDZAPBy-ups</a>
<br>Connect sites: <a href="http://www.youtube.com/watch?v=2G9ZRBGWQc4">http://www.youtube.com/watch?v=2G9ZRBGWQc4</a>
<br>Public/private posting: <a href="http://www.youtube.com/watch?v=-IZyk9ECvb8">http://www.youtube.com/watch?v=-IZyk9ECvb8</a>
<br>@replies: <a href="http://www.youtube.com/watch?v=9LS7MsuHLMI">http://www.youtube.com/watch?v=9LS7MsuHLMI</a>
<br>Post via email: <a href="http://www.youtube.com/watch?v=JGjj4IGSGQw">http://www.youtube.com/watch?v=JGjj4IGSGQw</a></span>
         <div>
           <!--ng:repeat: attachment in item.object.attachments--><a ng:bind-attr="{&quot;href&quot;:&quot;{{attachment.links.enclosure[0].href}}&quot;}" ng:repeat-index="0" href="">
             <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{attachment.links.preview[0].href}}'}&quot;}" ng:attr-bind="{src:''}">
           </a>
         </div>
       </div>
       <my:expand expand="item.replies.show">
         <ul>
           <!--ng:repeat: reply in item.replies.data.items-->
         </ul>
       </my:expand>
     </li><li ng:repeat-index="13">
       <h1>
         <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{item.actor.thumbnailUrl}}'}&quot;}" ng:attr-bind="{src:'http://www.google.com/s2/photos/public/AIbEiAIAAABECOz6ztaiyNHDmQEiC3ZjYXJkX3Bob3RvKigyYTBkYmNlNDgyOGI0NDViOTRlYTlkZjVmNzIxZTllNjMzMWFhODljMAEgSk99ukLxRAAHhTbzhgNkGnE-8g'}">
         <a ng:bind-attr="{&quot;href&quot;:&quot;{{item.actor.profileUrl}}&quot;}" href="http://www.google.com/profiles/googlebuzz"><span ng:bind="item.actor.name">Google Buzz Team</span></a>
         <a href="#" ng:click="expandReplies(item)">Replies: <span ng:bind="item.links.replies[0].count">52</span></a>
       </h1>
       <div>
         <span ng:bind="item.object.content | html"><b>Reshare from your mobile device</b>
<br>
<br>For the last month or so, you've been able to reshare interesting buzz posts from your computer (see <a href="http://gmailblog.blogspot.com/2010/05/reshare-in-google-buzz.html">http://gmailblog.blogspot.com/2010/05/reshare-in-google-buzz.html</a> for more info).
<br>
<br>Today, we're excited to announce that we've enabled this feature for <a href="http://buzz.google.com">buzz.google.com</a> on Android and iPhone as well. (If you don't see it right away, try clearing your cache/cookies.)</span>
         <div>
           <!--ng:repeat: attachment in item.object.attachments--><a ng:bind-attr="{&quot;href&quot;:&quot;{{attachment.links.enclosure[0].href}}&quot;}" ng:repeat-index="0" href="http://lh3.ggpht.com/_f0qVMWvWkZQ/TCkdpu6bvBI/AAAAAAAAACc/IxE12VFPTDI/Reshare2.png">
             <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{attachment.links.preview[0].href}}'}&quot;}" ng:attr-bind="{src:'http://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&amp;gadget=a&amp;resize_h=100&amp;url=http%3A%2F%2Flh3.ggpht.com%2F_f0qVMWvWkZQ%2FTCkdpu6bvBI%2FAAAAAAAAACc%2FIxE12VFPTDI%2Fs288%2FReshare2.png'}">
           </a>
         </div>
       </div>
       <my:expand expand="item.replies.show">
         <ul>
           <!--ng:repeat: reply in item.replies.data.items-->
         </ul>
       </my:expand>
     </li><li ng:repeat-index="14">
       <h1>
         <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{item.actor.thumbnailUrl}}'}&quot;}" ng:attr-bind="{src:'http://www.google.com/s2/photos/public/AIbEiAIAAABECOz6ztaiyNHDmQEiC3ZjYXJkX3Bob3RvKigyYTBkYmNlNDgyOGI0NDViOTRlYTlkZjVmNzIxZTllNjMzMWFhODljMAEgSk99ukLxRAAHhTbzhgNkGnE-8g'}">
         <a ng:bind-attr="{&quot;href&quot;:&quot;{{item.actor.profileUrl}}&quot;}" href="http://www.google.com/profiles/googlebuzz"><span ng:bind="item.actor.name">Google Buzz Team</span></a>
         <a href="#" ng:click="expandReplies(item)">Replies: <span ng:bind="item.links.replies[0].count">101</span></a>
       </h1>
       <div>
         <span ng:bind="item.object.content | html"><b>In San Francisco or Toronto? Come chat with the Buzz for mobile team and other Buzz users.</b>
<br>
<br>Google Buzz can be a great place to have a conversation, but we all know face-to-face interactions are still invaluable. Many of you have suggested in person meet ups to mingle and chat with other people using Google Buzz, so we're having our first meet ups focused on Buzz for mobile next week in San Francisco and Toronto. Join @<a href="http://www.google.com/profiles/111499908439497508351" class="proflink" oid="111499908439497508351">Punit Soni</a> and @<a href="http://www.google.com/profiles/117841284165024027243" class="proflink" oid="117841284165024027243">Robin Norvell</a> from the Buzz for mobile team as well as other users for what promises to be an interesting discussion.
<br>
<br>San Francisco meet up
<br>Tuesday, June 22nd  6pm
<br>Axis Cafe
<br>1201 8th Street
<br>San Francisco, CA 94107
<br>
<br>Toronto meet up*
<br>Tuesday, June 29th  7pm
<br>linuxcaffe
<br>326 Harbord Street
<br>Toronto, ON M6G 1H3
<br>
<br>* <b>Updated with new Toronto location</b></span>
         <div>
           <!--ng:repeat: attachment in item.object.attachments-->
         </div>
       </div>
       <my:expand expand="item.replies.show">
         <ul>
           <!--ng:repeat: reply in item.replies.data.items-->
         </ul>
       </my:expand>
     </li><li ng:repeat-index="15">
       <h1>
         <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{item.actor.thumbnailUrl}}'}&quot;}" ng:attr-bind="{src:'http://www.google.com/s2/photos/public/AIbEiAIAAABECOz6ztaiyNHDmQEiC3ZjYXJkX3Bob3RvKigyYTBkYmNlNDgyOGI0NDViOTRlYTlkZjVmNzIxZTllNjMzMWFhODljMAEgSk99ukLxRAAHhTbzhgNkGnE-8g'}">
         <a ng:bind-attr="{&quot;href&quot;:&quot;{{item.actor.profileUrl}}&quot;}" href="http://www.google.com/profiles/googlebuzz"><span ng:bind="item.actor.name">Google Buzz Team</span></a>
         <a href="#" ng:click="expandReplies(item)">Replies: <span ng:bind="item.links.replies[0].count">62</span></a>
       </h1>
       <div>
         <span ng:bind="item.object.content | html"><b>Two quick Google Buzz for mobile updates</b>
<br>
<br>Today we released two new features for <a href="http://buzz.google.com">buzz.google.com</a> on your phone.
<br>
<br><b>Address auto-complete for @replies:</b> Just type @ and the first few letters of the person's name and you'll be prompted with email addresses to choose from. Less typing on tiny mobile keyboards = good ;) You may notice that the first time you do this it seems a little slow to load, but it should get faster after that.
<br>
<br><b>Full rendering of Google Reader shared items:</b> You'll now see more details from blogs/Reader shared items right in the post.
<br>
<br>Try these out and let us know what you think in the comments.</span>
         <div>
           <!--ng:repeat: attachment in item.object.attachments--><a ng:bind-attr="{&quot;href&quot;:&quot;{{attachment.links.enclosure[0].href}}&quot;}" ng:repeat-index="0" href="https://lh6.googleusercontent.com/_f0qVMWvWkZQ/TCJS5gRt2kI/AAAAAAAAACU/XONANxYRpXU/IMG_0224.PNG">
             <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{attachment.links.preview[0].href}}'}&quot;}" ng:attr-bind="{src:'http://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&amp;gadget=a&amp;resize_h=100&amp;url=https%3A%2F%2Flh6.googleusercontent.com%2F_f0qVMWvWkZQ%2FTCJS5gRt2kI%2FAAAAAAAAACU%2FXONANxYRpXU%2Fs288%2FIMG_0224.PNG'}">
           </a>
         </div>
       </div>
       <my:expand expand="item.replies.show">
         <ul>
           <!--ng:repeat: reply in item.replies.data.items-->
         </ul>
       </my:expand>
     </li><li ng:repeat-index="16">
       <h1>
         <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{item.actor.thumbnailUrl}}'}&quot;}" ng:attr-bind="{src:'http://www.google.com/s2/photos/public/AIbEiAIAAABECOz6ztaiyNHDmQEiC3ZjYXJkX3Bob3RvKigyYTBkYmNlNDgyOGI0NDViOTRlYTlkZjVmNzIxZTllNjMzMWFhODljMAEgSk99ukLxRAAHhTbzhgNkGnE-8g'}">
         <a ng:bind-attr="{&quot;href&quot;:&quot;{{item.actor.profileUrl}}&quot;}" href="http://www.google.com/profiles/googlebuzz"><span ng:bind="item.actor.name">Google Buzz Team</span></a>
         <a href="#" ng:click="expandReplies(item)">Replies: <span ng:bind="item.links.replies[0].count">14</span></a>
       </h1>
       <div>
         <span ng:bind="item.object.content | html">In case you missed it, videos of the Google I/O talks are now all live: <a href="http://code.google.com/events/io/2010/sessions.html">http://code.google.com/events/io/2010/sessions.html</a>
<br>
<br>And for those of you interested in learning more about how to use the Buzz APIs, here's @<a href="http://www.google.com/profiles/108189587050871927619" class="proflink" oid="108189587050871927619">Chris Chabot</a>'s talk:
<br><a href="http://www.youtube.com/watch?v=qmzXVSvA7W0">Google I/O 2010 - What's the hubbub about Google Buzz APIs?</a>
<br>
<br>Thanks @<a href="http://www.google.com/profiles/112443892461436166386" class="proflink" oid="112443892461436166386">Google I/O 2010</a>!</span>
         <div>
           <!--ng:repeat: attachment in item.object.attachments--><a ng:bind-attr="{&quot;href&quot;:&quot;{{attachment.links.enclosure[0].href}}&quot;}" ng:repeat-index="0" href="">
             <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{attachment.links.preview[0].href}}'}&quot;}" ng:attr-bind="{src:'http://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&amp;gadget=a&amp;resize_h=100&amp;url=http%3A%2F%2Fytimg.googleusercontent.com%2Fvi%2FqmzXVSvA7W0%2Fdefault.jpg'}">
           </a><a ng:bind-attr="{&quot;href&quot;:&quot;{{attachment.links.enclosure[0].href}}&quot;}" ng:repeat-index="1" href="">
             <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{attachment.links.preview[0].href}}'}&quot;}" ng:attr-bind="{src:''}">
           </a>
         </div>
       </div>
       <my:expand expand="item.replies.show">
         <ul>
           <!--ng:repeat: reply in item.replies.data.items-->
         </ul>
       </my:expand>
     </li><li ng:repeat-index="17">
       <h1>
         <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{item.actor.thumbnailUrl}}'}&quot;}" ng:attr-bind="{src:'http://www.google.com/s2/photos/public/AIbEiAIAAABECOz6ztaiyNHDmQEiC3ZjYXJkX3Bob3RvKigyYTBkYmNlNDgyOGI0NDViOTRlYTlkZjVmNzIxZTllNjMzMWFhODljMAEgSk99ukLxRAAHhTbzhgNkGnE-8g'}">
         <a ng:bind-attr="{&quot;href&quot;:&quot;{{item.actor.profileUrl}}&quot;}" href="http://www.google.com/profiles/googlebuzz"><span ng:bind="item.actor.name">Google Buzz Team</span></a>
         <a href="#" ng:click="expandReplies(item)">Replies: <span ng:bind="item.links.replies[0].count">26</span></a>
       </h1>
       <div>
         <span ng:bind="item.object.content | html"><b>Nice Google Maps previews in Google Buzz</b>
<br>
<br>Now when you paste a Google Maps link into the post box, Buzz will automatically fetch a preview of the location you can associate with your post. More info here: <a href="http://gmailblog.blogspot.com/2010/06/google-maps-previews-in-gmail-and.html">http://gmailblog.blogspot.com/2010/06/google-maps-previews-in-gmail-and.html</a></span>
         <div>
           <!--ng:repeat: attachment in item.object.attachments--><a ng:bind-attr="{&quot;href&quot;:&quot;{{attachment.links.enclosure[0].href}}&quot;}" ng:repeat-index="0" href="http://1.bp.blogspot.com/_JE4qNpFW6Yk/TAhWHBGK22I/AAAAAAAAAnQ/iAZeq1C8ZRc/maps_in_buzz.jpg">
             <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{attachment.links.preview[0].href}}'}&quot;}" ng:attr-bind="{src:'http://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&amp;gadget=a&amp;resize_h=100&amp;url=http%3A%2F%2F1.bp.blogspot.com%2F_JE4qNpFW6Yk%2FTAhWHBGK22I%2FAAAAAAAAAnQ%2FiAZeq1C8ZRc%2Fmaps_in_buzz.jpg'}">
           </a><a ng:bind-attr="{&quot;href&quot;:&quot;{{attachment.links.enclosure[0].href}}&quot;}" ng:repeat-index="1" href="">
             <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{attachment.links.preview[0].href}}'}&quot;}" ng:attr-bind="{src:''}">
           </a>
         </div>
       </div>
       <my:expand expand="item.replies.show">
         <ul>
           <!--ng:repeat: reply in item.replies.data.items-->
         </ul>
       </my:expand>
     </li><li ng:repeat-index="18">
       <h1>
         <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{item.actor.thumbnailUrl}}'}&quot;}" ng:attr-bind="{src:'http://www.google.com/s2/photos/public/AIbEiAIAAABECOz6ztaiyNHDmQEiC3ZjYXJkX3Bob3RvKigyYTBkYmNlNDgyOGI0NDViOTRlYTlkZjVmNzIxZTllNjMzMWFhODljMAEgSk99ukLxRAAHhTbzhgNkGnE-8g'}">
         <a ng:bind-attr="{&quot;href&quot;:&quot;{{item.actor.profileUrl}}&quot;}" href="http://www.google.com/profiles/googlebuzz"><span ng:bind="item.actor.name">Google Buzz Team</span></a>
         <a href="#" ng:click="expandReplies(item)">Replies: <span ng:bind="item.links.replies[0].count">205</span></a>
       </h1>
       <div>
         <span ng:bind="item.object.content | html"><b>Reshare - coming out today!</b>
<br>
<br>When you find an interesting buzz post you want to reshare, instead of copying and pasting it (and maybe attributing the original poster with an @reply along the way), you'll now be able to reshare posts with two clicks. If you don't see the "Reshare" link quite yet, hang tight. It should be on for everyone by the end of the day.
<br>
<br>Learn more at: <a href="http://gmailblog.blogspot.com/2010/05/reshare-in-google-buzz.html">http://gmailblog.blogspot.com/2010/05/reshare-in-google-buzz.html</a></span>
         <div>
           <!--ng:repeat: attachment in item.object.attachments--><a ng:bind-attr="{&quot;href&quot;:&quot;{{attachment.links.enclosure[0].href}}&quot;}" ng:repeat-index="0" href="http://2.bp.blogspot.com/_JE4qNpFW6Yk/S_3OkIMCMYI/AAAAAAAAAmQ/jzyvdUVnk1A/reshare1.png">
             <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{attachment.links.preview[0].href}}'}&quot;}" ng:attr-bind="{src:'http://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&amp;gadget=a&amp;resize_h=100&amp;url=http%3A%2F%2F2.bp.blogspot.com%2F_JE4qNpFW6Yk%2FS_3OkIMCMYI%2FAAAAAAAAAmQ%2FjzyvdUVnk1A%2Freshare1.png'}">
           </a><a ng:bind-attr="{&quot;href&quot;:&quot;{{attachment.links.enclosure[0].href}}&quot;}" ng:repeat-index="1" href="http://2.bp.blogspot.com/_JE4qNpFW6Yk/S_3Oxy3zb1I/AAAAAAAAAmY/Lgpdu9uY_pA/reshare2.png">
             <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{attachment.links.preview[0].href}}'}&quot;}" ng:attr-bind="{src:'http://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&amp;gadget=a&amp;resize_h=100&amp;url=http%3A%2F%2F2.bp.blogspot.com%2F_JE4qNpFW6Yk%2FS_3Oxy3zb1I%2FAAAAAAAAAmY%2FLgpdu9uY_pA%2Freshare2.png'}">
           </a><a ng:bind-attr="{&quot;href&quot;:&quot;{{attachment.links.enclosure[0].href}}&quot;}" ng:repeat-index="2" href="http://3.bp.blogspot.com/_JE4qNpFW6Yk/S_3O5_z4SMI/AAAAAAAAAmg/ZDEoHIDXaE0/reshare3.png">
             <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{attachment.links.preview[0].href}}'}&quot;}" ng:attr-bind="{src:'http://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&amp;gadget=a&amp;resize_h=100&amp;url=http%3A%2F%2F3.bp.blogspot.com%2F_JE4qNpFW6Yk%2FS_3O5_z4SMI%2FAAAAAAAAAmg%2FZDEoHIDXaE0%2Freshare3.png'}">
           </a><a ng:bind-attr="{&quot;href&quot;:&quot;{{attachment.links.enclosure[0].href}}&quot;}" ng:repeat-index="3" href="">
             <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{attachment.links.preview[0].href}}'}&quot;}" ng:attr-bind="{src:''}">
           </a>
         </div>
       </div>
       <my:expand expand="item.replies.show">
         <ul>
           <!--ng:repeat: reply in item.replies.data.items-->
         </ul>
       </my:expand>
     </li><li ng:repeat-index="19">
       <h1>
         <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{item.actor.thumbnailUrl}}'}&quot;}" ng:attr-bind="{src:'http://www.google.com/s2/photos/public/AIbEiAIAAABECOz6ztaiyNHDmQEiC3ZjYXJkX3Bob3RvKigyYTBkYmNlNDgyOGI0NDViOTRlYTlkZjVmNzIxZTllNjMzMWFhODljMAEgSk99ukLxRAAHhTbzhgNkGnE-8g'}">
         <a ng:bind-attr="{&quot;href&quot;:&quot;{{item.actor.profileUrl}}&quot;}" href="http://www.google.com/profiles/googlebuzz"><span ng:bind="item.actor.name">Google Buzz Team</span></a>
         <a href="#" ng:click="expandReplies(item)">Replies: <span ng:bind="item.links.replies[0].count">100</span></a>
       </h1>
       <div>
         <span ng:bind="item.object.content | html"><b>Tweets with location now showing with Buzz on the map</b>
<br>
<br>If you've added Twitter as a connected site in Google Buzz and your tweets have a location (via Twitter or other services), they'll now appear in the mobile <a href="http://buzz.google.com">buzz.google.com</a> "Nearby" view and on the Buzz layer in Google Maps (both mobile and desktop). Check out one of these views to see buzz posts, tweets and more around you.</span>
         <div>
           <!--ng:repeat: attachment in item.object.attachments--><a ng:bind-attr="{&quot;href&quot;:&quot;{{attachment.links.enclosure[0].href}}&quot;}" ng:repeat-index="0" href="http://lh4.ggpht.com/_f0qVMWvWkZQ/S-mPy_d_wzI/AAAAAAAAACE/tRh1_oH8W04/buzz_twitter_traffic.jpg">
             <img ng:bind-attr="{&quot;ng:attr-bind&quot;:&quot;{src:'{{attachment.links.preview[0].href}}'}&quot;}" ng:attr-bind="{src:'http://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&amp;gadget=a&amp;resize_h=100&amp;url=http%3A%2F%2Flh4.ggpht.com%2F_f0qVMWvWkZQ%2FS-mPy_d_wzI%2FAAAAAAAAACE%2FtRh1_oH8W04%2Fs288%2Fbuzz_twitter_traffic.jpg'}">
           </a>
         </div>
       </div>
       <my:expand expand="item.replies.show">
         <ul>
           <!--ng:repeat: reply in item.replies.data.items-->
         </ul>
       </my:expand>
     </li>
   </ul>

   <div ng:eval="$window.browser.lap('DOM created')"></div>
    </body>
 </html>