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

system.verbs.apps.blogger.deletePost

on deletePost (postId, username=nil, password=nil, blogId=nil, flPublish=true, adrdata=@blogger.data) {
	blogger.init ();
	bundle { //set defaults
		if username == nil {
			username = user.blogger.username};
		if password == nil {
			password = string (user.blogger.password)};
		if blogId == nil {
			blogId = user.blogger.blogId}};
	with adrdata^ {
		local (params = {appkey, string (postid), string (username), string (password), boolean (flPublish)});
		return (xml.rpc (server, port, "blogger.deletePost", @params, rpcPath:rpcPath, protocol:protocol))}};
bundle { //test code
	dialog.alert (deletePost ("5086754"))}



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.