2010-07-22 18:18:32 +00:00
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
|
|
|
<html xmlns:ng="http://angularjs.org">
|
|
|
|
|
<head>
|
|
|
|
|
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script>
|
2010-07-23 17:48:18 +00:00
|
|
|
<script type="text/javascript" src="http://angularjs.org/ng/js/angular-debug.js#autobind"></script>
|
2010-07-22 18:18:32 +00:00
|
|
|
<script type="text/javascript" src="buzz.js"></script>
|
2010-07-23 17:48:18 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="http://angularjs.org/ng/css/angular.css"/>
|
2010-07-22 22:32:57 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="buzz.css"/>
|
2010-07-22 18:18:32 +00:00
|
|
|
</head>
|
|
|
|
|
<body ng:init="$window.$root = this" ng:controller="BuzzController">
|
2010-07-23 17:48:18 +00:00
|
|
|
<div>
|
2010-07-22 22:32:57 +00:00
|
|
|
<span><angular/> Buzz</span>
|
2010-07-23 17:48:18 +00:00
|
|
|
<span>
|
|
|
|
|
filter:
|
|
|
|
|
<input type="text" name="filterText"/>
|
|
|
|
|
</span>
|
|
|
|
|
<span>
|
|
|
|
|
user:
|
|
|
|
|
<input type="text" name="userId" ng:required/>
|
|
|
|
|
<button ng:click="$location.hashPath = userId">fetch</button>
|
|
|
|
|
</span>
|
2010-07-22 18:18:32 +00:00
|
|
|
</div>
|
2010-07-23 17:48:18 +00:00
|
|
|
<ul>
|
|
|
|
|
<li ng:repeat="item in activities.data.items.$filter(filterText)">
|
2010-07-22 22:32:57 +00:00
|
|
|
<h1>
|
2010-10-22 21:27:03 +00:00
|
|
|
<img ng:src="{{item.actor.thumbnailUrl}}"/>
|
2010-07-22 22:32:57 +00:00
|
|
|
<a href="{{item.actor.profileUrl}}">{{item.actor.name}}</a>
|
2010-07-23 17:48:18 +00:00
|
|
|
<a href="#" ng:click="expandReplies(item)">Replies: {{item.links.replies[0].count}}</a>
|
2010-07-22 22:32:57 +00:00
|
|
|
</h1>
|
|
|
|
|
<div>
|
|
|
|
|
{{item.object.content | html}}
|
2010-07-23 17:48:18 +00:00
|
|
|
<div>
|
|
|
|
|
<a href="{{attachment.links.enclosure[0].href}}" ng:repeat="attachment in item.object.attachments">
|
2010-10-22 21:27:03 +00:00
|
|
|
<img ng:src="{{attachment.links.preview[0].href}}"/>
|
2010-07-23 17:48:18 +00:00
|
|
|
</a>
|
|
|
|
|
</div>
|
2010-07-22 22:32:57 +00:00
|
|
|
</div>
|
|
|
|
|
<my:expand expand="item.replies.show">
|
|
|
|
|
<ul>
|
|
|
|
|
<li ng:repeat="reply in item.replies.data.items">
|
2010-10-22 21:27:03 +00:00
|
|
|
<img ng:src="{{reply.actor.thumbnailUrl}}"/>
|
2010-07-23 17:48:18 +00:00
|
|
|
<a href="{{reply.actor.profileUrl}}">{{reply.actor.name}}</a>:
|
2010-07-22 22:32:57 +00:00
|
|
|
{{reply.content | html}}
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</my:expand>
|
2010-07-22 18:18:32 +00:00
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|