2010-02-14 12:08:09 -05:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								< ? php  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								if  ( isset ( $_SERVER )  &&  array_key_exists ( 'REQUEST_METHOD' ,  $_SERVER ))  {  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    print  " This script must be run from the command line \n " ; 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    exit (); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								}  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								// XXX: we should probably have some common source for this stuff
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2010-02-23 23:58:21 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								define ( 'INSTALLDIR' ,  realpath ( dirname ( __FILE__ )  .  '/..' ));  
						 
					
						
							
								
									
										
										
										
											2010-02-14 12:08:09 -05:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								define ( 'STATUSNET' ,  true );  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								require_once  INSTALLDIR  .  '/lib/common.php' ;  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								class  ActivityParseTests  extends  PHPUnit_Framework_TestCase  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								{  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    public  function  testExample1 () 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        global  $_example1 ; 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $dom  =  DOMDocument :: loadXML ( $_example1 ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $act  =  new  Activity ( $dom -> documentElement ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertFalse ( empty ( $act )); 
							 
						 
					
						
							
								
									
										
										
										
											2010-02-21 09:17:52 -05:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2010-02-14 12:08:09 -05:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> time ,  1243860840 ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> verb ,  ActivityVerb :: POST ); 
							 
						 
					
						
							
								
									
										
										
										
											2010-02-21 09:17:52 -05:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertFalse ( empty ( $act -> object )); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> object -> title ,  'Punctuation Changeset' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> object -> type ,  'http://versioncentral.example.org/activity/changeset' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> object -> summary ,  'Fixing punctuation because it makes it more readable.' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> object -> id ,  'tag:versioncentral.example.org,2009:/change/1643245' ); 
							 
						 
					
						
							
								
									
										
										
										
											2010-02-14 12:08:09 -05:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								    } 
							 
						 
					
						
							
								
									
										
										
										
											2010-02-14 13:19:32 -05:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    public  function  testExample3 () 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        global  $_example3 ; 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $dom  =  DOMDocument :: loadXML ( $_example3 ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $feed  =  $dom -> documentElement ; 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $entries  =  $feed -> getElementsByTagName ( 'entry' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $entry  =  $entries -> item ( 0 ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $act  =  new  Activity ( $entry ,  $feed ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertFalse ( empty ( $act )); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> time ,  1071340202 ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> link ,  'http://example.org/2003/12/13/atom03.html' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> verb ,  ActivityVerb :: POST ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertFalse ( empty ( $act -> actor )); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> actor -> type ,  ActivityObject :: PERSON ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> actor -> title ,  'John Doe' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> actor -> id ,  'mailto:johndoe@example.com' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertFalse ( empty ( $act -> object )); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> object -> type ,  ActivityObject :: NOTE ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> object -> id ,  'urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> object -> title ,  'Atom-Powered Robots Run Amok' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> object -> summary ,  'Some text.' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> object -> link ,  'http://example.org/2003/12/13/atom03.html' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2010-02-18 22:18:14 -05:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								        $this -> assertFalse ( empty ( $act -> context )); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2010-02-14 13:19:32 -05:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								        $this -> assertTrue ( empty ( $act -> target )); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> entry ,  $entry ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> feed ,  $feed ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    } 
							 
						 
					
						
							
								
									
										
										
										
											2010-02-18 22:18:14 -05:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    public  function  testExample4 () 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        global  $_example4 ; 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $dom  =  DOMDocument :: loadXML ( $_example4 ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $entry  =  $dom -> documentElement ; 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $act  =  new  Activity ( $entry ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertFalse ( empty ( $act )); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( 1266547958 ,  $act -> time ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( 'http://example.net/notice/14' ,  $act -> link ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertFalse ( empty ( $act -> context )); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( 'http://example.net/notice/12' ,  $act -> context -> replyToID ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( 'http://example.net/notice/12' ,  $act -> context -> replyToUrl ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( 'http://example.net/conversation/11' ,  $act -> context -> conversation ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( array ( 'http://example.net/user/1' ),  $act -> context -> attention ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2010-02-21 09:17:52 -05:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								        $this -> assertFalse ( empty ( $act -> object )); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> object -> content , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								                            '@<span class="vcard"><a href="http://example.net/user/1" class="url"><span class="fn nickname">evan</span></a></span> now is the time for all good men to come to the aid of their country. #<span class="tag"><a href="http://example.net/tag/thetime" rel="tag">thetime</a></span>' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2010-02-18 22:18:14 -05:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								        $this -> assertFalse ( empty ( $act -> actor )); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    } 
							 
						 
					
						
							
								
									
										
										
										
											2010-02-23 23:58:21 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    public  function  testExample5 () 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        global  $_example5 ; 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $dom  =  DOMDocument :: loadXML ( $_example5 ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $feed  =  $dom -> documentElement ; 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        // @todo Test feed elements
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $entries  =  $feed -> getElementsByTagName ( 'entry' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $entry  =  $entries -> item ( 0 ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $act  =  new  Activity ( $entry ,  $feed ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        // Post
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> verb ,  ActivityVerb :: POST ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertFalse ( empty ( $act -> context )); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        // Actor w/Portable Contacts stuff
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertFalse ( empty ( $act -> actor )); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> actor -> type ,  ActivityObject :: PERSON ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> actor -> title ,  'Test User' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> actor -> id ,  'http://example.net/mysite/user/3' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> actor -> link ,  'http://example.net/mysite/testuser' ); 
							 
						 
					
						
							
								
									
										
										
										
											2010-02-25 19:17:50 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $avatars  =  $act -> actor -> avatarLinks ; 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2010-02-23 23:58:21 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								        $this -> assertEquals ( 
							 
						 
					
						
							
								
									
										
										
										
											2010-02-25 19:17:50 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								                $avatars [ 0 ] -> url , 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								                'http://example.net/mysite/avatar/3-96-20100224004207.jpeg' 
							 
						 
					
						
							
								
									
										
										
										
											2010-02-23 23:58:21 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								        ); 
							 
						 
					
						
							
								
									
										
										
										
											2010-02-25 19:17:50 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2010-02-23 23:58:21 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> actor -> displayName ,  'Test User' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $poco  =  $act -> actor -> poco ; 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $poco -> preferredUsername ,  'testuser' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $poco -> address -> formatted ,  'San Francisco, CA' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $poco -> urls [ 0 ] -> type ,  'homepage' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $poco -> urls [ 0 ] -> value ,  'http://example.com/blog.html' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $poco -> urls [ 0 ] -> primary ,  'true' ); 
							 
						 
					
						
							
								
									
										
										
										
											2010-02-24 16:51:24 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> actor -> geopoint ,  '37.7749295 -122.4194155' ); 
							 
						 
					
						
							
								
									
										
										
										
											2010-02-23 23:58:21 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    } 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2010-03-19 09:48:39 -05:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    public  function  testExample6 () 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    { 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        global  $_example6 ; 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $dom  =  DOMDocument :: loadXML ( $_example6 ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $rss  =  $dom -> documentElement ; 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $channels  =  $dom -> getElementsByTagName ( 'channel' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $channel  =  $channels -> item ( 0 ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $items  =  $channel -> getElementsByTagName ( 'item' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $item  =  $items -> item ( 0 ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $act  =  new  Activity ( $item ,  $channel ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> verb ,  ActivityVerb :: POST ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> id ,  'http://en.blog.wordpress.com/?p=3857' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> link ,  'http://en.blog.wordpress.com/2010/03/03/rub-a-dub-dub-in-the-pubsubhubbub/' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> title ,  'Rub-a-Dub-Dub in the PubSubHubbub' ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $act -> time ,  1267634892 ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $actor  =  $act -> actor ; 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertFalse ( empty ( $actor )); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        $this -> assertEquals ( $actor -> title ,  " Joseph Scott " ); 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    } 
							 
						 
					
						
							
								
									
										
										
										
											2010-02-14 12:08:09 -05:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								}  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								$_example1  =  <<< EXAMPLE1  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< ? xml  version = '1.0'  encoding = 'UTF-8' ?> 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< entry  xmlns = 'http://www.w3.org/2005/Atom'  xmlns : activity = 'http://activitystrea.ms/spec/1.0/' >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  < id > tag : versioncentral . example . org , 2009 :/ commit / 1643245 </ id > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  < published > 2009 - 06 - 01 T12 : 54 : 00 Z </ published > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  < title > Geraldine  committed  a  change  to  yate </ title > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  < content  type = " xhtml " > Geraldine  just  committed  a  change  to  yate  on  VersionCentral </ content > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  < link  rel = " alternate "  type = " text/html " 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        href = " http://versioncentral.example.org/geraldine/yate/commit/1643245 "  /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  < activity : verb > http :// activitystrea . ms / schema / 1.0 / post </ activity : verb > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  < activity : verb > http :// versioncentral . example . org / activity / commit </ activity : verb > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  < activity : object > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    < activity : object - type > http :// versioncentral . example . org / activity / changeset </ activity : object - type > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    < id > tag : versioncentral . example . org , 2009 :/ change / 1643245 </ id > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    < title > Punctuation  Changeset </ title > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    < summary > Fixing  punctuation  because  it  makes  it  more  readable .</ summary > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    < link  rel = " alternate "  type = " text/html "  href = " ... "  /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  </ activity : object > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								</ entry >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								EXAMPLE1 ;  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								$_example2  =  <<< EXAMPLE2  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< ? xml  version = '1.0'  encoding = 'UTF-8' ?> 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< entry  xmlns = 'http://www.w3.org/2005/Atom'  xmlns : activity = 'http://activitystrea.ms/spec/1.0/' >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  < id > tag : photopanic . example . com , 2008 : activity01 </ id > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  < title > Geraldine  posted  a  Photo  on  PhotoPanic </ title > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  < published > 2008 - 11 - 02 T15 : 29 : 00 Z </ published > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  < link  rel = " alternate "  type = " text/html "  href = " /geraldine/activities/1 "  /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  < activity : verb > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  http :// activitystrea . ms / schema / 1.0 / post 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  </ activity : verb > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  < activity : object > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    < id > tag : photopanic . example . com , 2008 : photo01 </ id > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    < title > My  Cat </ title > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    < published > 2008 - 11 - 02 T15 : 29 : 00 Z </ published > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    < link  rel = " alternate "  type = " text/html "  href = " /geraldine/photos/1 "  /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    < activity : object - type > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      tag : atomactivity . example . com , 2008 : photo 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    </ activity : object - type > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    < source > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      < title > Geraldine ' s  Photos </ title > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      < link  rel = " self "  type = " application/atom+xml "  href = " /geraldine/photofeed.xml "  /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      < link  rel = " alternate "  type = " text/html "  href = " /geraldine/ "  /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    </ source > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  </ activity : object > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  < content  type = " html " > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								     & lt ; p & gt ; Geraldine  posted  a  Photo  on  PhotoPanic & lt ; / p & gt ; 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								     & lt ; img  src = " /geraldine/photo1.jpg " & gt ; 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  </ content > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								</ entry >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								EXAMPLE2 ;  
						 
					
						
							
								
									
										
										
										
											2010-02-14 13:19:32 -05:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								$_example3  =  <<< EXAMPLE3  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< ? xml  version = " 1.0 "  encoding = " utf-8 " ?> 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< feed  xmlns = " http://www.w3.org/2005/Atom " >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2010-02-23 23:58:21 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    < title > Example  Feed </ title > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    < subtitle > A  subtitle .</ subtitle > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    < link  href = " http://example.org/feed/ "  rel = " self "  /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    < link  href = " http://example.org/ "  /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    < id > urn : uuid : 60 a76c80 - d399 - 11 d9 - b91C - 0003939e0 af6 </ id > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    < updated > 2003 - 12 - 13 T18 : 30 : 02 Z </ updated > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    < author > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        < name > John  Doe </ name > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        < email > johndoe @ example . com </ email > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    </ author > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    < entry > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        < title > Atom - Powered  Robots  Run  Amok </ title > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        < link  href = " http://example.org/2003/12/13/atom03 "  /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        < link  rel = " alternate "  type = " text/html "  href = " http://example.org/2003/12/13/atom03.html " /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        < link  rel = " edit "  href = " http://example.org/2003/12/13/atom03/edit " /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        < id > urn : uuid : 1225 c695 - cfb8 - 4 ebb - aaaa - 80 da344efa6a </ id > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        < updated > 2003 - 12 - 13 T18 : 30 : 02 Z </ updated > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        < summary > Some  text .</ summary > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    </ entry > 
							 
						 
					
						
							
								
									
										
										
										
											2010-02-14 13:19:32 -05:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								</ feed >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								EXAMPLE3 ;  
						 
					
						
							
								
									
										
										
										
											2010-02-18 22:18:14 -05:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								$_example4  =  <<< EXAMPLE4  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< ? xml  version = '1.0'  encoding = 'UTF-8' ?> 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< entry  xmlns = " http://www.w3.org/2005/Atom "  xmlns : thr = " http://purl.org/syndication/thread/1.0 "  xmlns : georss = " http://www.georss.org/georss "  xmlns : activity = " http://activitystrea.ms/spec/1.0/ "  xmlns : ostatus = " http://ostatus.org/schema/1.0 " >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < title >@ evan  now  is  the  time  for  all  good  men  to  come  to  the  aid  of  their  country .  #thetime</title>
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < summary >@ evan  now  is  the  time  for  all  good  men  to  come  to  the  aid  of  their  country .  #thetime</summary>
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< author >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < name > spock </ name > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < uri > http :// example . net / user / 2 </ uri > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								</ author >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< activity : actor >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < activity : object - type > http :// activitystrea . ms / schema / 1.0 / person </ activity : object - type > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < id > http :// example . net / user / 2 </ id > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < title > spock </ title > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < link  type = " image/png "  rel = " avatar "  href = " http://example.net/theme/identica/default-avatar-profile.png " ></ link > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								</ activity : actor >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < link  rel = " alternate "  type = " text/html "  href = " http://example.net/notice/14 " /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < id > http :// example . net / notice / 14 </ id > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < published > 2010 - 02 - 19 T02 : 52 : 38 + 00 : 00 </ published > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < updated > 2010 - 02 - 19 T02 : 52 : 38 + 00 : 00 </ updated > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < link  rel = " related "  href = " http://example.net/notice/12 " /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < thr : in - reply - to  ref = " http://example.net/notice/12 "  href = " http://example.net/notice/12 " ></ thr : in - reply - to > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < link  rel = " ostatus:conversation "  href = " http://example.net/conversation/11 " /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < link  rel = " ostatus:attention "  href = " http://example.net/user/1 " /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < content  type = " html " >@& lt ; span  class =& quot ; vcard & quot ; & gt ; & lt ; a  href =& quot ; http :// example . net / user / 1 & quot ;  class =& quot ; url & quot ; & gt ; & lt ; span  class =& quot ; fn  nickname & quot ; & gt ; evan & lt ; / span & gt ; & lt ; / a & gt ; & lt ; / span & gt ;  now  is  the  time  for  all  good  men  to  come  to  the  aid  of  their  country .  #<span class="tag"><a href="http://example.net/tag/thetime" rel="tag">thetime</a></span></content>
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < category  term = " thetime " ></ category > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								</ entry >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								EXAMPLE4 ;  
						 
					
						
							
								
									
										
										
										
											2010-02-23 23:58:21 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								$_example5  =  <<< EXAMPLE5  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< ? xml  version = " 1.0 "  encoding = " UTF-8 " ?> 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< feed  xml : lang = " en-US "  xmlns = " http://www.w3.org/2005/Atom "  xmlns : thr = " http://purl.org/syndication/thread/1.0 "  xmlns : georss = " http://www.georss.org/georss "  xmlns : activity = " http://activitystrea.ms/spec/1.0/ "  xmlns : poco = " http://portablecontacts.net/spec/1.0 "  xmlns : ostatus = " http://ostatus.org/schema/1.0 " >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < id > 3 </ id > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < title > testuser  timeline </ title > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < subtitle > Updates  from  testuser  on  Zach  Dev !</ subtitle > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < logo > http :// example . net / mysite / avatar / 3 - 96 - 20100224004207. jpeg </ logo > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < updated > 2010 - 02 - 24 T06 : 38 : 49 + 00 : 00 </ updated > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< author >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < name > testuser </ name > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < uri > http :// example . net / mysite / user / 3 </ uri > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								</ author >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < link  href = " http://example.net/mysite/testuser "  rel = " alternate "  type = " text/html " /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < link  href = " http://example.net/mysite/api/statuses/user_timeline/3.atom "  rel = " self "  type = " application/atom+xml " /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < link  href = " http://example.net/mysite/main/sup#3 "  rel = " http://api.friendfeed.com/2008/03#sup "  type = " application/json " /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < link  href = " http://example.net/mysite/main/push/hub "  rel = " hub " /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < link  href = " http://example.net/mysite/main/salmon/user/3 "  rel = " salmon " /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< activity : subject >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < activity : object - type > http :// activitystrea . ms / schema / 1.0 / person </ activity : object - type > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < id > http :// example . net / mysite / user / 3 </ id > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < title > Test  User </ title > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < link  rel = " alternate "  type = " text/html "  href = " http://example.net/mysite/testuser " /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < link  type = " image/jpeg "  rel = " avatar "  href = " http://example.net/mysite/avatar/3-96-20100224004207.jpeg " /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < georss : point > 37.7749295  - 122.4194155 </ georss : point > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< poco : preferredUsername > testuser </ poco : preferredUsername >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< poco : displayName > Test  User </ poco : displayName >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< poco : note > Just  another  test  user .</ poco : note >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< poco : address >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < poco : formatted > San  Francisco ,  CA </ poco : formatted > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								</ poco : address >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< poco : urls >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < poco : type > homepage </ poco : type > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < poco : value > http :// example . com / blog . html </ poco : value > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < poco : primary > true </ poco : primary > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								</ poco : urls >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								</ activity : subject >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< entry >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < title > Hey  man ,  is  that  Freedom  Code ? !  #freedom #hippy</title>
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < summary > Hey  man ,  is  that  Freedom  Code ? !  #freedom #hippy</summary>
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< author >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < name > testuser </ name > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < uri > http :// example . net / mysite / user / 3 </ uri > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								</ author >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< activity : actor >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < activity : object - type > http :// activitystrea . ms / schema / 1.0 / person </ activity : object - type > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < id > http :// example . net / mysite / user / 3 </ id > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < title > Test  User </ title > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < link  rel = " alternate "  type = " text/html "  href = " http://example.net/mysite/testuser " /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < link  type = " image/jpeg "  rel = " avatar "  href = " http://example.net/mysite/avatar/3-96-20100224004207.jpeg " /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < georss : point > 37.7749295  - 122.4194155 </ georss : point > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< poco : preferredUsername > testuser </ poco : preferredUsername >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< poco : displayName > Test  User </ poco : displayName >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< poco : note > Just  another  test  user .</ poco : note >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< poco : address >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < poco : formatted > San  Francisco ,  CA </ poco : formatted > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								</ poco : address >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< poco : urls >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < poco : type > homepage </ poco : type > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < poco : value > http :// example . com / blog . html </ poco : value > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < poco : primary > true </ poco : primary > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								</ poco : urls >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								</ activity : actor >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < link  rel = " alternate "  type = " text/html "  href = " http://example.net/mysite/notice/7 " /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < id > http :// example . net / mysite / notice / 7 </ id > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < published > 2010 - 02 - 24 T00 : 53 : 06 + 00 : 00 </ published > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < updated > 2010 - 02 - 24 T00 : 53 : 06 + 00 : 00 </ updated > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < link  rel = " ostatus:conversation "  href = " http://example.net/mysite/conversation/7 " /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < content  type = " html " > Hey  man ,  is  that  Freedom  Code ? !  #<span class="tag"><a href="http://example.net/mysite/tag/freedom" rel="tag">freedom</a></span> #<span class="tag"><a href="http://example.net/mysite/tag/hippy" rel="tag">hippy</a></span></content>
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								 < georss : point > 37.8313160  - 122.2852473 </ georss : point > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								</ entry >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								</ feed >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								EXAMPLE5 ;  
						 
					
						
							
								
									
										
										
										
											2010-03-19 09:48:39 -05:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								$_example6  =  <<< EXAMPLE6  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< ? xml  version = " 1.0 "  encoding = " UTF-8 " ?> 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								< rss  version = " 2.0 "  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									xmlns : content = " http://purl.org/rss/1.0/modules/content/ " 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									xmlns : wfw = " http://wellformedweb.org/CommentAPI/ " 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									xmlns : dc = " http://purl.org/dc/elements/1.1/ " 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									xmlns : atom = " http://www.w3.org/2005/Atom " 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									xmlns : sy = " http://purl.org/rss/1.0/modules/syndication/ " 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									xmlns : slash = " http://purl.org/rss/1.0/modules/slash/ " 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									xmlns : georss = " http://www.georss.org/georss "  xmlns : geo = " http://www.w3.org/2003/01/geo/wgs84_pos# "  xmlns : media = " http://search.yahoo.com/mrss/ " 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									< channel > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										< title > WordPress . com  News </ title > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										< atom : link  href = " http://en.blog.wordpress.com/feed/ "  rel = " self "  type = " application/rss+xml "  /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										< link > http :// en . blog . wordpress . com </ link > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										< description > The  latest  news  on  WordPress . com  and  the  WordPress  community .</ description > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										< lastBuildDate > Thu ,  18  Mar  2010  23 : 25 : 35  + 0000 </ lastBuildDate > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										< generator > http :// wordpress . com /</ generator > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										< language > en </ language > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										< sy : updatePeriod > hourly </ sy : updatePeriod > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										< sy : updateFrequency > 1 </ sy : updateFrequency > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										< cloud  domain = 'en.blog.wordpress.com'  port = '80'  path = '/?rsscloud=notify'  registerProcedure = ''  protocol = 'http-post'  /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										< image > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											< url > http :// www . gravatar . com / blavatar / e6392390e3bcfadff3671c5a5653d95b ? s = 96 & #038;d=http://s2.wp.com/i/buttonw-com.png</url>
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											< title > WordPress . com  News </ title > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											< link > http :// en . blog . wordpress . com </ link > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										</ image > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										< atom : link  rel = " search "  type = " application/opensearchdescription+xml "  href = " http://en.blog.wordpress.com/osd.xml "  title = " WordPress.com News "  /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										< atom : link  rel = 'hub'  href = 'http://en.blog.wordpress.com/?pushpress=hub' /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										< item > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											< title > Rub - a - Dub - Dub  in  the  PubSubHubbub </ title > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											< link > http :// en . blog . wordpress . com / 2010 / 03 / 03 / rub - a - dub - dub - in - the - pubsubhubbub /</ link > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											< comments > http :// en . blog . wordpress . com / 2010 / 03 / 03 / rub - a - dub - dub - in - the - pubsubhubbub / #comments</comments>
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											< pubDate > Wed ,  03  Mar  2010  16 : 48 : 12  + 0000 </ pubDate > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											< dc : creator > Joseph  Scott </ dc : creator > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											< category ><! [ CDATA [ Feeds ]] ></ category > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											< category ><! [ CDATA [ atom ]] ></ category > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											< category ><! [ CDATA [ pubsubhubbub ]] ></ category > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											< category ><! [ CDATA [ rss ]] ></ category > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											< guid  isPermaLink = " false " > http :// en . blog . wordpress . com / ? p = 3857 </ guid > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											< description ><! [ CDATA [ From  the  tongue  twisting  name  department  we  welcome  PubSubHubbub ,  or  as  some  people  have  shortened  it  to :  PuSH .   Like  rssCloud ,  PuSH  is  a  way  for  services  that  subscribe  to  updates  from  your  blog  ( think  Google  Reader ,  Bloglines  or  Netvibes )  to  get  updates  even  faster .   In  a  nutshell ,  instead  of  having  to  periodically  ask  [ ... ] < img  alt = " "  border = " 0 "  src = " http://stats.wordpress.com/b.gif?host=en.blog.wordpress.com&blog=3584907&post=3857&subd=en.blog&ref=&feed=1 "  /> ]] ></ description > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
												< content : encoded ><! [ CDATA [ < p > From  the  tongue  twisting  name  department  we  welcome  < a  href = " http://code.google.com/p/pubsubhubbub/ " > PubSubHubbub </ a > ,  or  as  some  people  have  shortened  it  to :  PuSH .   Like  < a  href = " http://en.blog.wordpress.com/2009/09/07/rss-in-the-clouds/ " > rssCloud </ a > ,  PuSH  is  a  way  for  services  that  subscribe  to  updates  from  your  blog  ( think  Google  Reader ,  Bloglines  or  Netvibes )  to  get  updates  even  faster .   In  a  nutshell ,  instead  of  having  to  periodically  ask  your  blog  if  there  are  any  updates  they  can  now  register  to  automatically  receive  updates  each  time  you  publish  new  content .   In  most  cases  these  updates  are  sent  out  within  a  second  or  two  of  when  you  hit  the  publish  button .</ p > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									< p > Today  we & #8217;ve turned on PuSH support for the more than 10.5 million blogs on WordPress.com.  There’s nothing to configure, it’s working right now behind the scenes to help others keep up to date with your posts.</p>
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									< p > For  those  using  the  WordPress . org  software  we  are  releasing  a  new  PuSH  plugin :  < a  href = " http://wordpress.org/extend/plugins/pushpress/ " > PuSHPress </ a >.   This  plugin  differs  from  the  current  PuSH  related  plugins  by  including  a  built - in  hub .</ p > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									< p > For  more  PuSH  related  reading  check  out  the  < a  href = " http://code.google.com/p/pubsubhubbub/ " > PubSubHubbub  project  site </ a >  and  < a  href = " http://groups.google.com/group/pubsubhubbub?pli=1 " > Google  Group </ a >.   And  if  you  really  want  to  geek  out  there & #8217;s always the <a href="http://pubsubhubbub.googlecode.com/svn/trunk/pubsubhubbub-core-0.3.html">PubSubHubbub Spec</a> <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									< br  />   < a  rel = " nofollow "  href = " http://feeds.wordpress.com/1.0/gocomments/en.blog.wordpress.com/3857/ " >< img  alt = " "  border = " 0 "  src = " http://feeds.wordpress.com/1.0/comments/en.blog.wordpress.com/3857/ "  /></ a >  < a  rel = " nofollow "  href = " http://feeds.wordpress.com/1.0/godelicious/en.blog.wordpress.com/3857/ " >< img  alt = " "  border = " 0 "  src = " http://feeds.wordpress.com/1.0/delicious/en.blog.wordpress.com/3857/ "  /></ a >  < a  rel = " nofollow "  href = " http://feeds.wordpress.com/1.0/gostumble/en.blog.wordpress.com/3857/ " >< img  alt = " "  border = " 0 "  src = " http://feeds.wordpress.com/1.0/stumble/en.blog.wordpress.com/3857/ "  /></ a >  < a  rel = " nofollow "  href = " http://feeds.wordpress.com/1.0/godigg/en.blog.wordpress.com/3857/ " >< img  alt = " "  border = " 0 "  src = " http://feeds.wordpress.com/1.0/digg/en.blog.wordpress.com/3857/ "  /></ a >  < a  rel = " nofollow "  href = " http://feeds.wordpress.com/1.0/goreddit/en.blog.wordpress.com/3857/ " >< img  alt = " "  border = " 0 "  src = " http://feeds.wordpress.com/1.0/reddit/en.blog.wordpress.com/3857/ "  /></ a >  < img  alt = " "  border = " 0 "  src = " http://stats.wordpress.com/b.gif?host=en.blog.wordpress.com&blog=3584907&post=3857&subd=en.blog&ref=&feed=1 "  /> ]] ></ content : encoded > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
												< wfw : commentRss > http :// en . blog . wordpress . com / 2010 / 03 / 03 / rub - a - dub - dub - in - the - pubsubhubbub / feed /</ wfw : commentRss > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											< slash : comments > 96 </ slash : comments > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											< media : content  url = " http://1.gravatar.com/avatar/582b66ad5ae1b69c7601a990cb9a661a?s=96&d=identicon "  medium = " image " > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
												< media : title  type = " html " > josephscott </ media : title > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
											</ media : content > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
										</ item > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
									</ channel > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								</ rss >  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								EXAMPLE6 ;