Monday, November 08, 2010 at 12:05 AM.

system.verbs.builtins.radio.weblog.bloggerApi.rpcHandlers.getUsersBlogs

on getUsersBlogs (appkey, username, password) {
	<<Changes
		<<11/20/02; 4:59:43 PM by JES
			<<Entity-encode high-ascii characters in the returned blogname.
		<<1/24/02; 7:41:37 AM by DW
			<<Created.
			<<http://plant.blogger.com/api/xmlrpc_getUsersBlogs.html
	local (adrblog = radio.weblog.init ());
	radio.weblog.bloggerApi.checkUser (client, false, username, password);
	
	on encode (s) {
		s = xml.entityEncode (s, false);
		return (s)};
	
	local (t);
	new (tabletype, @t);
	t.url = radio.weblog.getUrl (adrblog);
	t.blogid = "home";
	t.blogname = encode (adrblog^.prefs.title);
	return ({t})}



This listing is for code that runs in the OPML Editor environment. I created these listings because I wanted the search engines to index it, so that when I want to look up something in my codebase I don't have to use the much slower search functionality in my object database. Dave Winer.