-- MySQL dump 10.13 Distrib 5.1.24-rc, for unknown-freebsd6.3 (i386) -- -- Host: localhost Database: wp_029 -- ------------------------------------------------------ -- Server version 5.1.24-rc-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `wp_categories` -- DROP TABLE IF EXISTS `wp_categories`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_categories` ( `cat_ID` bigint(20) NOT NULL AUTO_INCREMENT, `cat_name` varchar(55) NOT NULL DEFAULT '', `category_nicename` varchar(200) NOT NULL DEFAULT '', `category_description` longtext NOT NULL, `category_parent` bigint(20) NOT NULL DEFAULT '0', `category_count` bigint(20) NOT NULL DEFAULT '0', `link_count` bigint(20) NOT NULL DEFAULT '0', `posts_private` tinyint(1) NOT NULL DEFAULT '0', `links_private` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`cat_ID`), KEY `category_nicename` (`category_nicename`) ) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_categories` -- LOCK TABLES `wp_categories` WRITE; /*!40000 ALTER TABLE `wp_categories` DISABLE KEYS */; INSERT INTO `wp_categories` VALUES (1,'works and days','works-and-days','',0,35,0,0,0),(2,'code is poetry','code-is-poetry','css, php, xslt, usw',0,12,0,0,0),(3,'freebsd','freebsd','',0,0,0,0,0),(4,'linux','linux','',0,0,0,0,0),(5,'net','net','',0,0,0,0,0),(6,'clusters, distributed and parallel computation and i/o','clusters-distributed-and-parallel-computation-and-io','',0,0,0,0,0),(7,'computational molecular biology','computational-molecular-biology','',0,1,0,0,0),(8,'drafts','drafts','',0,0,0,0,0),(9,'registrars, registries and regulators','registrars-registries-and-regulators','the dns as a business',0,3,0,0,0),(10,'cfp','cfp','',0,1,0,0,0),(11,'portfolio','portfolio','',0,0,6,0,0),(12,'infrastructure','infrastructure','',0,0,2,0,0),(13,'clients and partners (public)','clients-and-partners-public','',0,0,1,0,0),(14,'writing','writing','',0,0,2,0,0),(15,'organizations','organizations','',0,0,8,0,0),(16,'schools','schools','',0,0,3,0,0),(17,'peers','peers','',0,0,2,0,0),(18,'registries and registrars','registries-and-registrars','',0,0,4,0,0),(19,'rirs','rirs','',0,0,5,0,0),(20,'tools','tools','',0,0,6,0,0); /*!40000 ALTER TABLE `wp_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_comments` -- DROP TABLE IF EXISTS `wp_comments`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` int(11) NOT NULL DEFAULT '0', `comment_author` tinytext NOT NULL, `comment_author_email` varchar(100) NOT NULL DEFAULT '', `comment_author_url` varchar(200) NOT NULL DEFAULT '', `comment_author_IP` varchar(100) NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` enum('0','1','spam') NOT NULL DEFAULT '1', `comment_agent` varchar(255) NOT NULL DEFAULT '', `comment_type` varchar(20) NOT NULL DEFAULT '', `comment_parent` bigint(20) NOT NULL DEFAULT '0', `user_id` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_approved` (`comment_approved`), KEY `comment_post_ID` (`comment_post_ID`) ) ENGINE=MyISAM AUTO_INCREMENT=6252 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_comments` -- LOCK TABLES `wp_comments` WRITE; /*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_link2cat` -- DROP TABLE IF EXISTS `wp_link2cat`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_link2cat` ( `rel_id` bigint(20) NOT NULL AUTO_INCREMENT, `link_id` bigint(20) NOT NULL DEFAULT '0', `category_id` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`rel_id`), KEY `link_id` (`link_id`,`category_id`) ) ENGINE=MyISAM AUTO_INCREMENT=41 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_link2cat` -- LOCK TABLES `wp_link2cat` WRITE; /*!40000 ALTER TABLE `wp_link2cat` DISABLE KEYS */; INSERT INTO `wp_link2cat` VALUES (1,13,11),(2,12,12),(3,8,14),(4,9,11),(5,10,11),(6,11,12),(7,14,11),(8,15,13),(9,16,15),(10,17,15),(11,18,15),(12,19,15),(13,20,16),(14,21,16),(15,22,16),(16,23,15),(17,24,14),(18,25,17),(19,26,18),(20,27,18),(21,28,18),(22,29,18),(23,30,19),(24,31,19),(25,32,19),(26,33,19),(27,34,19),(28,38,11),(29,35,15),(30,36,15),(31,37,15),(33,40,17),(34,41,20),(35,42,20),(36,43,20),(37,44,20),(38,45,20),(39,46,20),(40,47,11); /*!40000 ALTER TABLE `wp_link2cat` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_links` -- DROP TABLE IF EXISTS `wp_links`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_links` ( `link_id` bigint(20) NOT NULL AUTO_INCREMENT, `link_url` varchar(255) NOT NULL DEFAULT '', `link_name` varchar(255) NOT NULL DEFAULT '', `link_image` varchar(255) NOT NULL DEFAULT '', `link_target` varchar(25) NOT NULL DEFAULT '', `link_category` bigint(20) NOT NULL DEFAULT '0', `link_description` varchar(255) NOT NULL DEFAULT '', `link_visible` enum('Y','N') NOT NULL DEFAULT 'Y', `link_owner` int(11) NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) NOT NULL DEFAULT '', `link_notes` mediumtext NOT NULL, `link_rss` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_category` (`link_category`), KEY `link_visible` (`link_visible`) ) ENGINE=MyISAM AUTO_INCREMENT=48 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_links` -- LOCK TABLES `wp_links` WRITE; /*!40000 ALTER TABLE `wp_links` DISABLE KEYS */; INSERT INTO `wp_links` VALUES (13,'http://www.mainecommonwealth.com','miller campaign (drupal)','','',1,'chris miller\'s staff and workers community','Y',2,2,'0000-00-00 00:00:00','','',''),(12,'http://wampumpeag.net','wampumpeag','','',2,'nsp functions','Y',2,0,'0000-00-00 00:00:00','','',''),(8,'http://wampum.wabanaki.net','wampum','','',4,'','Y',2,1,'0000-00-00 00:00:00','','',''),(9,'http://www.williams4me.org','williams campaign (mt/2.661)','','',1,'mb\'s campaign blog, the first of its kind','Y',2,1,'0000-00-00 00:00:00','','',''),(10,'http://goredelegate.org','gore delegate (drupal/trunk)','','',1,'testbed site','Y',2,9,'0000-00-00 00:00:00','','',''),(11,'http://nic-naa.net','nic-naa','','',2,'block 0','Y',2,2,'0000-00-00 00:00:00','','',''),(14,'http://029.blog.coop','this (wp)','','',1,'','Y',2,2,'0000-00-00 00:00:00','','',''),(15,'http://www.usawebhost.com','usawebhost','','',3,'steve\'s registrar operation','Y',2,0,'0000-00-00 00:00:00','','',''),(16,'http://www.ams.org','ams','','',5,'american mathematical society','Y',2,0,'0000-00-00 00:00:00','','',''),(17,'http://maa.org/','maa','','',5,'mathemical association of america','Y',2,0,'0000-00-00 00:00:00','','',''),(18,'http://usenix.org/','usenix','','',5,'','Y',2,0,'0000-00-00 00:00:00','','',''),(19,'http://acm.org/','acm','','',5,'','Y',2,0,'0000-00-00 00:00:00','','',''),(20,'http://math.berkeley.edu/','berkeley','','',6,'berkeley math department','Y',2,0,'0000-00-00 00:00:00','','',''),(21,'http://math.harvard.edu/','harvard','','',6,'harvard math department','Y',2,0,'0000-00-00 00:00:00','','',''),(22,'http://www.math.ucla.edu/','ucla','','',6,'ucla math department','Y',2,0,'0000-00-00 00:00:00','','',''),(23,'http://www.msri.org/','msri','','',5,'mathematical sciences research center (berkeley)','Y',2,0,'0000-00-00 00:00:00','','',''),(24,'http://triballaw.wabanaki.net/','triballaw','','',4,'tribal law list blog','Y',2,0,'0000-00-00 00:00:00','','',''),(25,'http://fm.vix.com/','fire mountain','','',7,'paul vixie\'s blog','Y',2,0,'0000-00-00 00:00:00','','',''),(26,'http://www.corenic.org/','core','','',8,'Council of Registrars','Y',2,0,'0000-00-00 00:00:00','','',''),(27,'http://www.pool.com/','pool','','',8,'secondary market (expiry)','Y',2,0,'0000-00-00 00:00:00','','',''),(28,'http://www.knipp.de/','knipp.de','','',8,'CORE\'s primary implementation member','Y',2,0,'0000-00-00 00:00:00','','',''),(29,'http://www.switch.ch/','switch.ch [li,ch]','','',8,'Swiss science network','Y',2,0,'0000-00-00 00:00:00','','',''),(30,'http://ripe.net/','ripe','','',9,'RIPE NCC','Y',2,0,'0000-00-00 00:00:00','','',''),(31,'http://www.afrinic.net/','afrinic','','',9,'Mauritius','Y',2,0,'0000-00-00 00:00:00','','',''),(32,'http://www.apnic.net/','apnic','','',9,'brisbane','Y',2,0,'0000-00-00 00:00:00','','',''),(33,'http://ww3.arin.net/','arin','','',9,'herndon','Y',2,0,'0000-00-00 00:00:00','','',''),(34,'http://www.lacnic.net','lacnic','','',9,'montevideo','Y',2,0,'0000-00-00 00:00:00','','',''),(38,'http://wampum.wabanaki.net','wampum (mt)','','',1,'','Y',2,0,'0000-00-00 00:00:00','','',''),(35,'http://nanog.org/','nanog','','',5,'','Y',2,0,'0000-00-00 00:00:00','','',''),(36,'http://www.ietf.org/','ietf','','',5,'','Y',2,0,'0000-00-00 00:00:00','','',''),(37,'http://www.w3.org/','w3c','','',5,'','Y',2,0,'0000-00-00 00:00:00','','',''),(40,'http://shallowsky.com/blog/','Shallow Sky','','',7,'another coder','Y',2,0,'0000-00-00 00:00:00','','',''),(41,'http://search.cpan.org/','cpan','','',11,'','Y',2,0,'0000-00-00 00:00:00','','',''),(42,'http://php.net/','php','','',11,'','Y',2,0,'0000-00-00 00:00:00','','',''),(43,'http://mysql.com/','mysql','','',11,'','Y',2,0,'0000-00-00 00:00:00','','',''),(44,'http://www.csszengarden.com/','css zen','','',11,'','Y',2,0,'0000-00-00 00:00:00','','',''),(45,'http://www.mozdev.org/','mozdev','','',11,'','Y',2,0,'0000-00-00 00:00:00','','',''),(46,'http://www.mozilla.org/projects/firefox/','firefox','','',11,'','Y',2,0,'0000-00-00 00:00:00','','',''),(47,'http://developer.mozilla.org/en/docs/Download_Mozilla_Source_Code','lizard src','','',1,'','Y',2,0,'0000-00-00 00:00:00','','',''); /*!40000 ALTER TABLE `wp_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_options` -- DROP TABLE IF EXISTS `wp_options`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_options` ( `option_id` bigint(20) NOT NULL AUTO_INCREMENT, `blog_id` int(11) NOT NULL DEFAULT '0', `option_name` varchar(64) NOT NULL DEFAULT '', `option_can_override` enum('Y','N') NOT NULL DEFAULT 'Y', `option_type` int(11) NOT NULL DEFAULT '1', `option_value` longtext NOT NULL, `option_width` int(11) NOT NULL DEFAULT '20', `option_height` int(11) NOT NULL DEFAULT '8', `option_description` tinytext NOT NULL, `option_admin_level` int(11) NOT NULL DEFAULT '1', `autoload` enum('yes','no') NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`,`blog_id`,`option_name`), KEY `option_name` (`option_name`) ) ENGINE=MyISAM AUTO_INCREMENT=87 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_options` -- LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; INSERT INTO `wp_options` VALUES (1,0,'siteurl','Y',1,'http://029.colo.coop',20,8,'WordPress web address',1,'yes'),(2,0,'blogname','Y',1,'029 :: egami drac rehtona tey',20,8,'Blog title',1,'yes'),(3,0,'blogdescription','Y',1,'a code book',20,8,'Short tagline',1,'yes'),(64,0,'wp_user_roles','Y',1,'a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:47:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}',20,8,'',1,'yes'),(5,0,'users_can_register','Y',1,'',20,8,'',1,'yes'),(6,0,'admin_email','Y',1,'ebw@abenaki.wabanaki.net',20,8,'',1,'yes'),(7,0,'start_of_week','Y',1,'1',20,8,'',1,'yes'),(8,0,'use_balanceTags','Y',1,'0',20,8,'',1,'yes'),(9,0,'use_smilies','Y',1,'1',20,8,'',1,'yes'),(10,0,'require_name_email','Y',1,'',20,8,'',1,'yes'),(11,0,'comments_notify','Y',1,'',20,8,'',1,'yes'),(12,0,'posts_per_rss','Y',1,'10',20,8,'',1,'yes'),(13,0,'rss_excerpt_length','Y',1,'50',20,8,'',1,'yes'),(14,0,'rss_use_excerpt','Y',1,'0',20,8,'',1,'yes'),(15,0,'mailserver_url','Y',1,'mail.example.com',20,8,'',1,'yes'),(16,0,'mailserver_login','Y',1,'login@example.com',20,8,'',1,'yes'),(17,0,'mailserver_pass','Y',1,'password',20,8,'',1,'yes'),(18,0,'mailserver_port','Y',1,'110',20,8,'',1,'yes'),(19,0,'default_category','Y',1,'1',20,8,'',1,'yes'),(20,0,'default_comment_status','Y',1,'closed',20,8,'',1,'yes'),(21,0,'default_ping_status','Y',1,'closed',20,8,'',1,'yes'),(22,0,'default_pingback_flag','Y',1,'',20,8,'',1,'yes'),(23,0,'default_post_edit_rows','Y',1,'10',20,8,'',1,'yes'),(24,0,'posts_per_page','Y',1,'10',20,8,'',1,'yes'),(25,0,'what_to_show','Y',1,'posts',20,8,'',1,'yes'),(26,0,'date_format','Y',1,'F j, Y',20,8,'',1,'yes'),(27,0,'time_format','Y',1,'g:i a',20,8,'',1,'yes'),(28,0,'links_updated_date_format','Y',1,'F j, Y g:i a',20,8,'',1,'yes'),(29,0,'links_recently_updated_prepend','Y',1,'',20,8,'',1,'yes'),(30,0,'links_recently_updated_append','Y',1,'',20,8,'',1,'yes'),(31,0,'links_recently_updated_time','Y',1,'120',20,8,'',1,'yes'),(32,0,'comment_moderation','Y',1,'',20,8,'',1,'yes'),(33,0,'moderation_notify','Y',1,'',20,8,'',1,'yes'),(34,0,'permalink_structure','Y',1,'',20,8,'',1,'yes'),(35,0,'gzipcompression','Y',1,'0',20,8,'',1,'yes'),(36,0,'hack_file','Y',1,'0',20,8,'',1,'yes'),(37,0,'blog_charset','Y',1,'UTF-8',20,8,'',1,'yes'),(38,0,'moderation_keys','Y',1,'',20,8,'',1,'no'),(39,0,'active_plugins','Y',1,'a:0:{}',20,8,'',1,'yes'),(40,0,'home','Y',1,'http://029.colo.coop',20,8,'',1,'yes'),(41,0,'category_base','Y',1,'',20,8,'',1,'yes'),(42,0,'ping_sites','Y',1,'http://rpc.pingomatic.com/',20,8,'',1,'yes'),(43,0,'advanced_edit','Y',1,'0',20,8,'',1,'yes'),(44,0,'comment_max_links','Y',1,'0',20,8,'',1,'yes'),(45,0,'gmt_offset','Y',1,'-4',20,8,'',1,'yes'),(46,0,'default_email_category','Y',1,'1',20,8,'Posts by email go to this category',1,'yes'),(47,0,'recently_edited','Y',1,'a:5:{i:0;s:35:\"wp-content/themes/default/style.css\";i:1;s:51:\"wp-content/themes/a-blog-beyond-072-ex-dt/style.css\";i:2;s:53:\"wp-content/themes/a-blog-beyond-072-ex-dt/sidebar.php\";i:4;s:9:\"index.php\";i:5;s:0:\"\";}',20,8,'',1,'no'),(48,0,'use_linksupdate','Y',1,'0',20,8,'',1,'yes'),(49,0,'template','Y',1,'a-blog-beyond-072-ex-dt',20,8,'',1,'yes'),(50,0,'stylesheet','Y',1,'a-blog-beyond-072-ex-dt',20,8,'',1,'yes'),(51,0,'comment_whitelist','Y',1,'',20,8,'',1,'yes'),(53,0,'blacklist_keys','Y',1,'',20,8,'',1,'no'),(54,0,'comment_registration','Y',1,'',20,8,'',1,'yes'),(55,0,'open_proxy_check','Y',1,'1',20,8,'',1,'yes'),(56,0,'rss_language','Y',1,'en',20,8,'',1,'yes'),(57,0,'html_type','Y',1,'text/html',20,8,'',1,'yes'),(58,0,'use_trackback','Y',1,'0',20,8,'',1,'yes'),(59,0,'default_role','Y',1,'subscriber',20,8,'',1,'yes'),(61,0,'db_version','Y',1,'4773',20,8,'',1,'yes'),(62,0,'uploads_use_yearmonth_folders','Y',1,'1',20,8,'',1,'yes'),(63,0,'upload_path','Y',1,'wp-content/uploads',20,8,'',1,'yes'),(65,0,'rss_5e0a119fab570a5d5b2d09cc114de2e0','Y',1,'O:9:\"MagpieRSS\":17:{s:6:\"parser\";i:0;s:12:\"current_item\";a:0:{}s:5:\"items\";a:0:{}s:7:\"channel\";a:0:{}s:9:\"textinput\";a:0:{}s:5:\"image\";a:0:{}s:9:\"feed_type\";N;s:12:\"feed_version\";N;s:5:\"stack\";a:0:{}s:9:\"inchannel\";b:0;s:6:\"initem\";b:0;s:9:\"incontent\";b:0;s:11:\"intextinput\";b:0;s:7:\"inimage\";b:0;s:13:\"current_field\";s:0:\"\";s:17:\"current_namespace\";b:0;s:19:\"_CONTENT_CONSTRUCTS\";a:6:{i:0;s:7:\"content\";i:1;s:7:\"summary\";i:2;s:4:\"info\";i:3;s:5:\"title\";i:4;s:7:\"tagline\";i:5;s:9:\"copyright\";}}',20,8,'',1,'no'),(66,0,'rss_5e0a119fab570a5d5b2d09cc114de2e0_ts','Y',1,'1177514204',20,8,'',1,'no'),(67,0,'rss_0ff4b43bd116a9d8720d689c80e7dfd4','Y',1,'O:9:\"MagpieRSS\":18:{s:6:\"parser\";i:0;s:12:\"current_item\";a:0:{}s:5:\"items\";a:10:{i:0;a:12:{s:5:\"title\";s:20:\"WordPress 2.3 Beta 2\";s:4:\"link\";s:61:\"http://wordpress.org/development/2007/09/wordpress-23-beta-2/\";s:8:\"comments\";s:70:\"http://wordpress.org/development/2007/09/wordpress-23-beta-2/#comments\";s:7:\"pubdate\";s:31:\"Tue, 04 Sep 2007 06:03:58 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:12:\"Mark Jaquith\";}s:8:\"category\";s:11:\"Development\";s:4:\"guid\";s:61:\"http://wordpress.org/development/2007/09/wordpress-23-beta-2/\";s:11:\"description\";s:315:\"WordPress 2.3 will be here before you know it! We’re putting out a beta release every Monday until WordPress 2.3 ships on September 24th. Today the second beta drops for your testing pleasure. We’ve fixed a bunch of bugs in the last week — thanks to everyone who participated! That said, [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:711:\"

WordPress 2.3 will be here before you know it! We’re putting out a beta release every Monday until WordPress 2.3 ships on September 24th. Today the second beta drops for your testing pleasure. We’ve fixed a bunch of bugs in the last week — thanks to everyone who participated! That said, this is still rough code, so you should only test the beta if you are comfortable troubleshooting PHP issues, filing tickets, and backing up your blog’s data.

\n

Still want to play? Go ahead and join the wp-testers mailing list and download beta 2 here.

\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:66:\"http://wordpress.org/development/2007/09/wordpress-23-beta-2/feed/\";}s:7:\"summary\";s:315:\"WordPress 2.3 will be here before you know it! We’re putting out a beta release every Monday until WordPress 2.3 ships on September 24th. Today the second beta drops for your testing pleasure. We’ve fixed a bunch of bugs in the last week — thanks to everyone who participated! That said, [...]\";s:12:\"atom_content\";s:711:\"

WordPress 2.3 will be here before you know it! We’re putting out a beta release every Monday until WordPress 2.3 ships on September 24th. Today the second beta drops for your testing pleasure. We’ve fixed a bunch of bugs in the last week — thanks to everyone who participated! That said, this is still rough code, so you should only test the beta if you are comfortable troubleshooting PHP issues, filing tickets, and backing up your blog’s data.

\n

Still want to play? Go ahead and join the wp-testers mailing list and download beta 2 here.

\n\";}i:1;a:12:{s:5:\"title\";s:20:\"WordPress 2.3 Beta 1\";s:4:\"link\";s:51:\"http://wordpress.org/development/2007/08/23-beta-1/\";s:8:\"comments\";s:60:\"http://wordpress.org/development/2007/08/23-beta-1/#comments\";s:7:\"pubdate\";s:31:\"Tue, 28 Aug 2007 04:44:28 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:8:\"category\";s:11:\"Development\";s:4:\"guid\";s:51:\"http://wordpress.org/development/2007/08/23-beta-1/\";s:11:\"description\";s:353:\"The past 3 months we’ve been working feverishly on the next version of WordPress, 2.3. Today we’re releasing the first beta of 2.3 and we’re hoping the more adventurous and savvy among you will help us test it.\nSome of the features of 2.3 include plugin and core update notification, built-in tags support, faster javascript, and [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:809:\"

The past 3 months we’ve been working feverishly on the next version of WordPress, 2.3. Today we’re releasing the first beta of 2.3 and we’re hoping the more adventurous and savvy among you will help us test it.

\n

Some of the features of 2.3 include plugin and core update notification, built-in tags support, faster javascript, and SEO-friendly URL redirection.

\n

However all of the new functionality is still very rough, so only test the beta if you are comfortable troubleshooting PHP issues, filing tickets, and backing up your data religiously. If you’re interested you can join the wp-testers mailing list and download the beta here.

\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:56:\"http://wordpress.org/development/2007/08/23-beta-1/feed/\";}s:7:\"summary\";s:353:\"The past 3 months we’ve been working feverishly on the next version of WordPress, 2.3. Today we’re releasing the first beta of 2.3 and we’re hoping the more adventurous and savvy among you will help us test it.\nSome of the features of 2.3 include plugin and core update notification, built-in tags support, faster javascript, and [...]\";s:12:\"atom_content\";s:809:\"

The past 3 months we’ve been working feverishly on the next version of WordPress, 2.3. Today we’re releasing the first beta of 2.3 and we’re hoping the more adventurous and savvy among you will help us test it.

\n

Some of the features of 2.3 include plugin and core update notification, built-in tags support, faster javascript, and SEO-friendly URL redirection.

\n

However all of the new functionality is still very rough, so only test the beta if you are comfortable troubleshooting PHP issues, filing tickets, and backing up your data religiously. If you’re interested you can join the wp-testers mailing list and download the beta here.

\n\";}i:2;a:12:{s:5:\"title\";s:26:\"WordPress 2.2.2 and 2.0.11\";s:4:\"link\";s:64:\"http://wordpress.org/development/2007/08/wordpress-222-and-2011/\";s:8:\"comments\";s:73:\"http://wordpress.org/development/2007/08/wordpress-222-and-2011/#comments\";s:7:\"pubdate\";s:31:\"Sun, 05 Aug 2007 06:22:25 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:8:\"category\";s:8:\"Releases\";s:4:\"guid\";s:64:\"http://wordpress.org/development/2007/08/wordpress-222-and-2011/\";s:11:\"description\";s:323:\"Today we have two security-related releases available for both users of our main 2.2 branch and the legacy 2.0 branch. As these releases include only security and minor bugfixes they should not cause any plugin or theme compatibility issues, so you have no good excuse not to upgrade.\nOn our Trac you can see the bugs [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:1393:\"

Today we have two security-related releases available for both users of our main 2.2 branch and the legacy 2.0 branch. As these releases include only security and minor bugfixes they should not cause any plugin or theme compatibility issues, so you have no good excuse not to upgrade.

\n

On our Trac you can see the bugs closed for 2.2.2 and 2.0.11 to get more details about the problems fixed. With a little more Trac magic you can see all the changed files for 2.2.2 or 2.0.11.

\n

Our download page is always the best place to get the latest release, and our legacy page now has the latest in the 2.0 branch.

\n

As always, we have upgrade instructions available and an extended upgrade guide.

\n

Thanks to Alex C. and Benjamin Flesch for help with this release.

\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:69:\"http://wordpress.org/development/2007/08/wordpress-222-and-2011/feed/\";}s:7:\"summary\";s:323:\"Today we have two security-related releases available for both users of our main 2.2 branch and the legacy 2.0 branch. As these releases include only security and minor bugfixes they should not cause any plugin or theme compatibility issues, so you have no good excuse not to upgrade.\nOn our Trac you can see the bugs [...]\";s:12:\"atom_content\";s:1393:\"

Today we have two security-related releases available for both users of our main 2.2 branch and the legacy 2.0 branch. As these releases include only security and minor bugfixes they should not cause any plugin or theme compatibility issues, so you have no good excuse not to upgrade.

\n

On our Trac you can see the bugs closed for 2.2.2 and 2.0.11 to get more details about the problems fixed. With a little more Trac magic you can see all the changed files for 2.2.2 or 2.0.11.

\n

Our download page is always the best place to get the latest release, and our legacy page now has the latest in the 2.0 branch.

\n

As always, we have upgrade instructions available and an extended upgrade guide.

\n

Thanks to Alex C. and Benjamin Flesch for help with this release.

\n\";}i:3;a:12:{s:5:\"title\";s:34:\"New Shirts; International Shipping\";s:4:\"link\";s:52:\"http://wordpress.org/development/2007/07/new-shirts/\";s:8:\"comments\";s:61:\"http://wordpress.org/development/2007/07/new-shirts/#comments\";s:7:\"pubdate\";s:31:\"Sat, 21 Jul 2007 01:06:07 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:8:\"category\";s:5:\"Store\";s:4:\"guid\";s:52:\"http://wordpress.org/development/2007/07/new-shirts/\";s:11:\"description\";s:326:\"One of the biggest complaints when we originally launched our t-shirt store was that folks outside of the United States, which is the majority of our traffic, were unable to order them. Now you can! (And we have a new style available.)\nAt our official shop.wordpress.net you can order the new red t-shirt in either manly [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:822:\"

One of the biggest complaints when we originally launched our t-shirt store was that folks outside of the United States, which is the majority of our traffic, were unable to order them. Now you can! (And we have a new style available.)

\n

At our official shop.wordpress.net you can order the new red t-shirt in either manly or girlie styles and they ship almost anywhere in the world. The shirts are high-quality American Apparel, and are screen-printed. Styles are available for a limited time, we’ll probably to about 2-3 a year, and once they’re gone the style will never be printed again.

\n

Update: Indigo the t-shirt company has a great post about the launch.

\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:57:\"http://wordpress.org/development/2007/07/new-shirts/feed/\";}s:7:\"summary\";s:326:\"One of the biggest complaints when we originally launched our t-shirt store was that folks outside of the United States, which is the majority of our traffic, were unable to order them. Now you can! (And we have a new style available.)\nAt our official shop.wordpress.net you can order the new red t-shirt in either manly [...]\";s:12:\"atom_content\";s:822:\"

One of the biggest complaints when we originally launched our t-shirt store was that folks outside of the United States, which is the majority of our traffic, were unable to order them. Now you can! (And we have a new style available.)

\n

At our official shop.wordpress.net you can order the new red t-shirt in either manly or girlie styles and they ship almost anywhere in the world. The shirts are high-quality American Apparel, and are screen-printed. Styles are available for a limited time, we’ll probably to about 2-3 a year, and once they’re gone the style will never be printed again.

\n

Update: Indigo the t-shirt company has a great post about the launch.

\n\";}i:4;a:12:{s:5:\"title\";s:25:\"WordCamp in San Francisco\";s:4:\"link\";s:67:\"http://wordpress.org/development/2007/06/wordcamp-in-san-francisco/\";s:8:\"comments\";s:76:\"http://wordpress.org/development/2007/06/wordcamp-in-san-francisco/#comments\";s:7:\"pubdate\";s:31:\"Mon, 25 Jun 2007 09:49:14 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:8:\"category\";s:14:\"EventsWordCamp\";s:4:\"guid\";s:67:\"http://wordpress.org/development/2007/06/wordcamp-in-san-francisco/\";s:11:\"description\";s:315:\"Last year over 350 WordPressers of all ages and experience levels gathered in San Francisco to share a day together. We’re now halfway through 2007, and there is a new WordCamp happening on July 21 and 22 that I hope many of you can make it to.\nThis year we’re expanding the conference to two days [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:1860:\"

Last year over 350 WordPressers of all ages and experience levels gathered in San Francisco to share a day together. We’re now halfway through 2007, and there is a new WordCamp happening on July 21 and 22 that I hope many of you can make it to.

\n

This year we’re expanding the conference to two days instead of one with the first focusing on user and blog-facing topics, like search engine optimization and podcasting, and the second day will focus on more development topics, such as usability, iterative design, and the future of publishing. Speakers this year include several WordPress developers, Matt Cutts, John Dvorak, Robert Hoekman Jr., Dan Kuykendall, Om Malik, Rashmi Sinha, Lorelle Vanfossen, and Dave Winer. Check out the entire schedule.

\n

Just like last year there will be free lunch (with the legendary BBQ on Sunday) and t-shirts for everybody, and a party on Saturday night. Unlike last year we’re asking for $25 to help cover costs, but if that’s a problem there are scholarships available. Registration will be closing July 9th and there will not be tickets at the door, so get yours soon.

\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:72:\"http://wordpress.org/development/2007/06/wordcamp-in-san-francisco/feed/\";}s:7:\"summary\";s:315:\"Last year over 350 WordPressers of all ages and experience levels gathered in San Francisco to share a day together. We’re now halfway through 2007, and there is a new WordCamp happening on July 21 and 22 that I hope many of you can make it to.\nThis year we’re expanding the conference to two days [...]\";s:12:\"atom_content\";s:1860:\"

Last year over 350 WordPressers of all ages and experience levels gathered in San Francisco to share a day together. We’re now halfway through 2007, and there is a new WordCamp happening on July 21 and 22 that I hope many of you can make it to.

\n

This year we’re expanding the conference to two days instead of one with the first focusing on user and blog-facing topics, like search engine optimization and podcasting, and the second day will focus on more development topics, such as usability, iterative design, and the future of publishing. Speakers this year include several WordPress developers, Matt Cutts, John Dvorak, Robert Hoekman Jr., Dan Kuykendall, Om Malik, Rashmi Sinha, Lorelle Vanfossen, and Dave Winer. Check out the entire schedule.

\n

Just like last year there will be free lunch (with the legendary BBQ on Sunday) and t-shirts for everybody, and a party on Saturday night. Unlike last year we’re asking for $25 to help cover costs, but if that’s a problem there are scholarships available. Registration will be closing July 9th and there will not be tickets at the door, so get yours soon.

\n\";}i:5;a:12:{s:5:\"title\";s:15:\"WordPress 2.2.1\";s:4:\"link\";s:55:\"http://wordpress.org/development/2007/06/wordpress-221/\";s:8:\"comments\";s:64:\"http://wordpress.org/development/2007/06/wordpress-221/#comments\";s:7:\"pubdate\";s:31:\"Thu, 21 Jun 2007 04:49:59 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ryan\";}s:8:\"category\";s:8:\"Releases\";s:4:\"guid\";s:55:\"http://wordpress.org/development/2007/06/wordpress-221/\";s:11:\"description\";s:307:\"WordPress 2.2.1 is now available. 2.2.1 is a bug fix release for the 2.2 series. Since 2.2 was released a month ago, the WordPress community has been improving fit-and-finish by identifying and fixing those little bugs that can be so annoying and by fine-tuning some small details. The result is a [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:2533:\"

WordPress 2.2.1 is now available. 2.2.1 is a bug fix release for the 2.2 series. Since 2.2 was released a month ago, the WordPress community has been improving fit-and-finish by identifying and fixing those little bugs that can be so annoying and by fine-tuning some small details. The result is a nicely polished 2.2.1 release. The full list of bugs fixed in 2.2.1 is available here. Here are some highlights.

\n\n

Unfortunately, 2.2.1 is not just a bug fix release. Some security issues came to light during 2.2.1 development, making 2.2.1 a required upgrade. 2.2.1 addresses the following vulnerabilities:

\n\n

Special thanks to Alexander Concha for his continued assistance in making WordPress more secure. Special thanks also to Daniel Jalkut of Red Sweater Software for his improvements to our XML-RPC implementation.

\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:60:\"http://wordpress.org/development/2007/06/wordpress-221/feed/\";}s:7:\"summary\";s:307:\"WordPress 2.2.1 is now available. 2.2.1 is a bug fix release for the 2.2 series. Since 2.2 was released a month ago, the WordPress community has been improving fit-and-finish by identifying and fixing those little bugs that can be so annoying and by fine-tuning some small details. The result is a [...]\";s:12:\"atom_content\";s:2533:\"

WordPress 2.2.1 is now available. 2.2.1 is a bug fix release for the 2.2 series. Since 2.2 was released a month ago, the WordPress community has been improving fit-and-finish by identifying and fixing those little bugs that can be so annoying and by fine-tuning some small details. The result is a nicely polished 2.2.1 release. The full list of bugs fixed in 2.2.1 is available here. Here are some highlights.

\n\n

Unfortunately, 2.2.1 is not just a bug fix release. Some security issues came to light during 2.2.1 development, making 2.2.1 a required upgrade. 2.2.1 addresses the following vulnerabilities:

\n\n

Special thanks to Alexander Concha for his continued assistance in making WordPress more secure. Special thanks also to Daniel Jalkut of Red Sweater Software for his improvements to our XML-RPC implementation.

\n\";}i:6;a:12:{s:5:\"title\";s:18:\"WebWare 100 Winner\";s:4:\"link\";s:60:\"http://wordpress.org/development/2007/06/webware-100-winner/\";s:8:\"comments\";s:69:\"http://wordpress.org/development/2007/06/webware-100-winner/#comments\";s:7:\"pubdate\";s:31:\"Mon, 18 Jun 2007 23:32:53 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:8:\"category\";s:4:\"Meta\";s:4:\"guid\";s:60:\"http://wordpress.org/development/2007/06/webware-100-winner/\";s:11:\"description\";s:303:\"The results are in, and WordPress is the winner of the Webware 100 in the Publishing category. Thanks to everyone who voted, but thank you even more to all the great people who make WordPress what it is. It’s an honor to have so many of you entrust your blogs to our software, and it’s [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:1152:\"

The results are in, and WordPress is the winner of the Webware 100 in the Publishing category. Thanks to everyone who voted, but thank you even more to all the great people who make WordPress what it is. It’s an honor to have so many of you entrust your blogs to our software, and it’s an incredible opportunity for us to live up to the high standards you’ve set. Here’s what Rafe Needleman wrote about the results:

\n

WordPress got the most votes. I was interested to see the Drupal CMS platform placing high in this category–above the consumer-oriented publishing products Typepad and Vox. Even combined, these two Six Apart services didn’t come close to winning the same number of votes as Drupal.

\n

Glad to see our open-source brother-by-another-mother representing. The rankings in Publishing were WordPress, Adobe Flash, Drupal, Blogger, and Google Analytics as the top 5.

\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:65:\"http://wordpress.org/development/2007/06/webware-100-winner/feed/\";}s:7:\"summary\";s:303:\"The results are in, and WordPress is the winner of the Webware 100 in the Publishing category. Thanks to everyone who voted, but thank you even more to all the great people who make WordPress what it is. It’s an honor to have so many of you entrust your blogs to our software, and it’s [...]\";s:12:\"atom_content\";s:1152:\"

The results are in, and WordPress is the winner of the Webware 100 in the Publishing category. Thanks to everyone who voted, but thank you even more to all the great people who make WordPress what it is. It’s an honor to have so many of you entrust your blogs to our software, and it’s an incredible opportunity for us to live up to the high standards you’ve set. Here’s what Rafe Needleman wrote about the results:

\n

WordPress got the most votes. I was interested to see the Drupal CMS platform placing high in this category–above the consumer-oriented publishing products Typepad and Vox. Even combined, these two Six Apart services didn’t come close to winning the same number of votes as Drupal.

\n

Glad to see our open-source brother-by-another-mother representing. The rankings in Publishing were WordPress, Adobe Flash, Drupal, Blogger, and Google Analytics as the top 5.

\n\";}i:7;a:12:{s:5:\"title\";s:12:\"Two Contests\";s:4:\"link\";s:54:\"http://wordpress.org/development/2007/06/two-contests/\";s:8:\"comments\";s:63:\"http://wordpress.org/development/2007/06/two-contests/#comments\";s:7:\"pubdate\";s:31:\"Tue, 12 Jun 2007 23:12:40 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:8:\"category\";s:6:\"Events\";s:4:\"guid\";s:54:\"http://wordpress.org/development/2007/06/two-contests/\";s:11:\"description\";s:331:\"There are two contests going on in the WordPress community right now. If you’d like a chance to flex your WordPress skillz and perhaps win a prize and lifelong fame, you should consider dropping your code in the hat.\nThe first is the Sandbox Designs competition, which is like a theme competition, but working only with [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:1220:\"

There are two contests going on in the WordPress community right now. If you’d like a chance to flex your WordPress skillz and perhaps win a prize and lifelong fame, you should consider dropping your code in the hat.

\n

The first is the Sandbox Designs competition, which is like a theme competition, but working only with CSS and the highly semantic Sandbox theme. They already have a thousand dollars in prizes, so check it out.

\n

Second our friends at Weblog Tools Collection are running a WordPress Plugin competition. They have a blog to track all the entries, but if you’re participating don’t forget to submit your code to the Plugin directory.

\n

Both competitions require entries to be under the same GPL license that WordPress is, so regardless of who wins they’ll make the entire community much richer. (Remember, WordPress itself was written on the base of existing GPL code!)

\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:59:\"http://wordpress.org/development/2007/06/two-contests/feed/\";}s:7:\"summary\";s:331:\"There are two contests going on in the WordPress community right now. If you’d like a chance to flex your WordPress skillz and perhaps win a prize and lifelong fame, you should consider dropping your code in the hat.\nThe first is the Sandbox Designs competition, which is like a theme competition, but working only with [...]\";s:12:\"atom_content\";s:1220:\"

There are two contests going on in the WordPress community right now. If you’d like a chance to flex your WordPress skillz and perhaps win a prize and lifelong fame, you should consider dropping your code in the hat.

\n

The first is the Sandbox Designs competition, which is like a theme competition, but working only with CSS and the highly semantic Sandbox theme. They already have a thousand dollars in prizes, so check it out.

\n

Second our friends at Weblog Tools Collection are running a WordPress Plugin competition. They have a blog to track all the entries, but if you’re participating don’t forget to submit your code to the Plugin directory.

\n

Both competitions require entries to be under the same GPL license that WordPress is, so regardless of who wins they’ll make the entire community much richer. (Remember, WordPress itself was written on the base of existing GPL code!)

\n\";}i:8;a:12:{s:5:\"title\";s:13:\"WordPress 2.2\";s:4:\"link\";s:54:\"http://wordpress.org/development/2007/05/wordpress-22/\";s:8:\"comments\";s:63:\"http://wordpress.org/development/2007/05/wordpress-22/#comments\";s:7:\"pubdate\";s:31:\"Wed, 16 May 2007 00:36:55 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:8:\"category\";s:8:\"Releases\";s:4:\"guid\";s:54:\"http://wordpress.org/development/2007/05/wordpress-22/\";s:11:\"description\";s:390:\"On behalf of the entire WordPress team, I’m proud and excited to announce the immediate availability of version 2.2 “Getz” for download. This version includes a number of new features, most notably Widgets integration, and over two hundred bug fixes. It’s named in honor of tenor saxophonist Stan Getz.\nGoodies:\n\nWordPress Widgets allow you to easily rearrange [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:5828:\"

On behalf of the entire WordPress team, I’m proud and excited to announce the immediate availability of version 2.2 “Getz” for download. This version includes a number of new features, most notably Widgets integration, and over two hundred bug fixes. It’s named in honor of tenor saxophonist Stan Getz.

\n

Goodies:

\n\n

In addition there were also dozens of UI and accessibility improvements, ranging from more concise wording around options and links to things like a view and preview link above the content box when you’re editing a post or page, as well as several important security fixes. We don’t plan to continue to support the 2.1 branch, so this is a required upgrade.

\n

Developer Features:

\n

We also improved a great deal under the hood that hopefully you’ll never notice, but if you’re a developer for the WP platform it provides a lot to sink your teeth into. Here is a sampling:

\n\n

If you’d like an in-depth look at everything that changed, here is a list of all 244 closed tickets in our bug tracker and you can use this link to see what files and lines of code changed. (It was a lot!)

\n

New Development Cycle

\n

Most interesting about this release is that is our first under the new, experimental development cycle that we first talked about when we released version 2.1 fewer than 4 months ago. We delayed a few weeks from our target date in April, but ended up under our original goal of a 4 month major release cycle. My thanks and congratulations to the entire WordPress community for pulling together and making that happen. It wasn’t without its bumps, but the things we learned along the way will make our next release in September even better. You can now look forward to a fast but stable schedule of new features and goodies several times a year from WordPress.

\n

Around the Community

\n

There were 1.4 million downloads of WordPress 2.1 in the four months it was available.

\n

I wrote a post that covers some of the media that WP has been getting lately and its history.

\n

We’ve expanded WordPress.org quite a bit, most notably the very active plugins directory and the ideas forum.

\n

Come meet other WordPress users and developers at WordCamp, which is going to be taking place July 21-22 in San Francisco.

\n

Don’t forget to check out WordPress’ cousins MU and bbPress, both of which have been seeing some pretty cool development lately.

\n

Help Out

\n

The most valuable thing you can give back to WordPress is your time — the time to help a friend discover the joy of blogging, the time to help a stranger (a friend you haven’t met yet) on the support forums, or the time to help make WordPress a better product.

\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:59:\"http://wordpress.org/development/2007/05/wordpress-22/feed/\";}s:7:\"summary\";s:390:\"On behalf of the entire WordPress team, I’m proud and excited to announce the immediate availability of version 2.2 “Getz” for download. This version includes a number of new features, most notably Widgets integration, and over two hundred bug fixes. It’s named in honor of tenor saxophonist Stan Getz.\nGoodies:\n\nWordPress Widgets allow you to easily rearrange [...]\";s:12:\"atom_content\";s:5828:\"

On behalf of the entire WordPress team, I’m proud and excited to announce the immediate availability of version 2.2 “Getz” for download. This version includes a number of new features, most notably Widgets integration, and over two hundred bug fixes. It’s named in honor of tenor saxophonist Stan Getz.

\n

Goodies:

\n\n

In addition there were also dozens of UI and accessibility improvements, ranging from more concise wording around options and links to things like a view and preview link above the content box when you’re editing a post or page, as well as several important security fixes. We don’t plan to continue to support the 2.1 branch, so this is a required upgrade.

\n

Developer Features:

\n

We also improved a great deal under the hood that hopefully you’ll never notice, but if you’re a developer for the WP platform it provides a lot to sink your teeth into. Here is a sampling:

\n\n

If you’d like an in-depth look at everything that changed, here is a list of all 244 closed tickets in our bug tracker and you can use this link to see what files and lines of code changed. (It was a lot!)

\n

New Development Cycle

\n

Most interesting about this release is that is our first under the new, experimental development cycle that we first talked about when we released version 2.1 fewer than 4 months ago. We delayed a few weeks from our target date in April, but ended up under our original goal of a 4 month major release cycle. My thanks and congratulations to the entire WordPress community for pulling together and making that happen. It wasn’t without its bumps, but the things we learned along the way will make our next release in September even better. You can now look forward to a fast but stable schedule of new features and goodies several times a year from WordPress.

\n

Around the Community

\n

There were 1.4 million downloads of WordPress 2.1 in the four months it was available.

\n

I wrote a post that covers some of the media that WP has been getting lately and its history.

\n

We’ve expanded WordPress.org quite a bit, most notably the very active plugins directory and the ideas forum.

\n

Come meet other WordPress users and developers at WordCamp, which is going to be taking place July 21-22 in San Francisco.

\n

Don’t forget to check out WordPress’ cousins MU and bbPress, both of which have been seeing some pretty cool development lately.

\n

Help Out

\n

The most valuable thing you can give back to WordPress is your time — the time to help a friend discover the joy of blogging, the time to help a stranger (a friend you haven’t met yet) on the support forums, or the time to help make WordPress a better product.

\n\";}i:9;a:12:{s:5:\"title\";s:26:\"WordPress 2.1.3 and 2.0.10\";s:4:\"link\";s:64:\"http://wordpress.org/development/2007/04/wordpress-213-and-2010/\";s:8:\"comments\";s:73:\"http://wordpress.org/development/2007/04/wordpress-213-and-2010/#comments\";s:7:\"pubdate\";s:31:\"Tue, 03 Apr 2007 07:50:45 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:8:\"category\";s:16:\"ReleasesSecurity\";s:4:\"guid\";s:64:\"http://wordpress.org/development/2007/04/wordpress-213-and-2010/\";s:11:\"description\";s:345:\"We have a security update release now available for both the 2.1 and 2.0 branches of WordPress now available for immediate download. This update is highly recommend for all users of both branches.\nThese releases include fixes for several publicly known minor XSS issues, one major XML-RPC issue, and a proactive full sweep of the WordPress [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:1138:\"

We have a security update release now available for both the 2.1 and 2.0 branches of WordPress now available for immediate download. This update is highly recommend for all users of both branches.

\n

These releases include fixes for several publicly known minor XSS issues, one major XML-RPC issue, and a proactive full sweep of the WordPress codebase to protect against future problems. Many thanks to Sumit Siddharth and Alex Concha for their help with reporting issues in this release.

\n

As an update to the systems issue we had last month, we have taken dozens of additional precautions with the servers and systems that run WordPress.org and they appear to be working well, despite hundreds of hack attempts after we publicly disclosed there had been a problem. We are also now aggressively monitoring all downloads for any changes or modifications, and we are confident the same type of problem won’t happen again.

\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:69:\"http://wordpress.org/development/2007/04/wordpress-213-and-2010/feed/\";}s:7:\"summary\";s:345:\"We have a security update release now available for both the 2.1 and 2.0 branches of WordPress now available for immediate download. This update is highly recommend for all users of both branches.\nThese releases include fixes for several publicly known minor XSS issues, one major XML-RPC issue, and a proactive full sweep of the WordPress [...]\";s:12:\"atom_content\";s:1138:\"

We have a security update release now available for both the 2.1 and 2.0 branches of WordPress now available for immediate download. This update is highly recommend for all users of both branches.

\n

These releases include fixes for several publicly known minor XSS issues, one major XML-RPC issue, and a proactive full sweep of the WordPress codebase to protect against future problems. Many thanks to Sumit Siddharth and Alex Concha for their help with reporting issues in this release.

\n

As an update to the systems issue we had last month, we have taken dozens of additional precautions with the servers and systems that run WordPress.org and they appear to be working well, despite hundreds of hack attempts after we publicly disclosed there had been a problem. We are also now aggressively monitoring all downloads for any changes or modifications, and we are confident the same type of problem won’t happen again.

\n\";}}s:7:\"channel\";a:7:{s:5:\"title\";s:26:\"WordPress Development Blog\";s:4:\"link\";s:32:\"http://wordpress.org/development\";s:11:\"description\";s:33:\"WordPress development and updates\";s:7:\"pubdate\";s:31:\"Tue, 04 Sep 2007 06:03:58 +0000\";s:9:\"generator\";s:33:\"http://wordpress.org/?v=2.3-beta2\";s:8:\"language\";s:2:\"en\";s:7:\"tagline\";s:33:\"WordPress development and updates\";}s:9:\"textinput\";a:0:{}s:5:\"image\";a:0:{}s:9:\"feed_type\";s:3:\"RSS\";s:12:\"feed_version\";s:3:\"2.0\";s:5:\"stack\";a:0:{}s:9:\"inchannel\";b:0;s:6:\"initem\";b:0;s:9:\"incontent\";b:0;s:11:\"intextinput\";b:0;s:7:\"inimage\";b:0;s:13:\"current_field\";s:0:\"\";s:17:\"current_namespace\";b:0;s:19:\"_CONTENT_CONSTRUCTS\";a:6:{i:0;s:7:\"content\";i:1;s:7:\"summary\";i:2;s:4:\"info\";i:3;s:5:\"title\";i:4;s:7:\"tagline\";i:5;s:9:\"copyright\";}s:13:\"last_modified\";s:31:\"Fri, 07 Sep 2007 05:04:15 GMT\r\n\";}',20,8,'',1,'no'),(68,0,'rss_0ff4b43bd116a9d8720d689c80e7dfd4_ts','Y',1,'1189142487',20,8,'',1,'no'),(69,0,'rss_867bd5c64f85878d03a060509cd2f92c','Y',1,'O:9:\"MagpieRSS\":19:{s:6:\"parser\";i:0;s:12:\"current_item\";a:0:{}s:5:\"items\";a:50:{i:0;a:7:{s:5:\"title\";s:58:\"Weblog Tools Collection: WordPress Plugin Releases for 9/7\";s:4:\"guid\";s:86:\"http://weblogtoolscollection.com/archives/2007/09/07/wordpress-plugin-releases-for-97/\";s:4:\"link\";s:86:\"http://weblogtoolscollection.com/archives/2007/09/07/wordpress-plugin-releases-for-97/\";s:11:\"description\";s:1368:\"

wpAdMentor lets you choose which ads to display on your WordPress blog.

\n

AskApache Firefox Adsense displays a Firefox Adsense Ad (Google Referrals) on your blog, but only to users that are not using Firefox, and only to users running Windows.

\n

KiteCV lets you compose a complete master CV, then publish views of it targeted at specific employers or jobs.

\n

Secure Contact is a drop-in form for users to contact you that can be implemented on a page or a post.

\n

Smilies Themer allows you to use smilies (emoticons) themes (or packs) to replace the WordPress default ones.

\n

Strainu Links lets you put all your links in any page, post, or comment.

\n

TemplateMedia creates a Wikipedia-style templating system for your WordPress installation. TemplateMedia Chess adds in a template that is a port of Wikipedia’s Chess Diagram template.

\";s:7:\"pubdate\";s:31:\"Fri, 07 Sep 2007 05:00:47 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:11:\"Jim Stitzel\";}s:7:\"summary\";s:1368:\"

wpAdMentor lets you choose which ads to display on your WordPress blog.

\n

AskApache Firefox Adsense displays a Firefox Adsense Ad (Google Referrals) on your blog, but only to users that are not using Firefox, and only to users running Windows.

\n

KiteCV lets you compose a complete master CV, then publish views of it targeted at specific employers or jobs.

\n

Secure Contact is a drop-in form for users to contact you that can be implemented on a page or a post.

\n

Smilies Themer allows you to use smilies (emoticons) themes (or packs) to replace the WordPress default ones.

\n

Strainu Links lets you put all your links in any page, post, or comment.

\n

TemplateMedia creates a Wikipedia-style templating system for your WordPress installation. TemplateMedia Chess adds in a template that is a port of Wikipedia’s Chess Diagram template.

\";}i:1;a:7:{s:5:\"title\";s:57:\"Weblog Tools Collection: WordPress Theme Releases for 9/7\";s:4:\"guid\";s:85:\"http://weblogtoolscollection.com/archives/2007/09/07/wordpress-theme-releases-for-97/\";s:4:\"link\";s:85:\"http://weblogtoolscollection.com/archives/2007/09/07/wordpress-theme-releases-for-97/\";s:11:\"description\";s:975:\"

Brushed Blues is a single-column, widget-ready theme with sidebar content located in the footer area.

\n

Cubez is a 2-column, widget- and adsense-ready theme with a Main Translator feature in the sidebar.

\n

Freaky Green is a 2-column, widget-ready theme with a 3-column header and footer and bright green colors.

\n

Glorious Future and Glorious Day are 2- and 3-column, widget-ready themes, respectively, that come with page templates for archives, links, contact, 404, and author’s profile and that also highlight author’s comments.

\n

RockinBizRed is a 3-column, widget-ready theme with a professional look and wide content area.

\";s:7:\"pubdate\";s:31:\"Fri, 07 Sep 2007 04:45:15 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:11:\"Jim Stitzel\";}s:7:\"summary\";s:975:\"

Brushed Blues is a single-column, widget-ready theme with sidebar content located in the footer area.

\n

Cubez is a 2-column, widget- and adsense-ready theme with a Main Translator feature in the sidebar.

\n

Freaky Green is a 2-column, widget-ready theme with a 3-column header and footer and bright green colors.

\n

Glorious Future and Glorious Day are 2- and 3-column, widget-ready themes, respectively, that come with page templates for archives, links, contact, 404, and author’s profile and that also highlight author’s comments.

\n

RockinBizRed is a 3-column, widget-ready theme with a professional look and wide content area.

\";}i:2;a:7:{s:5:\"title\";s:17:\"Akismet: Downtime\";s:4:\"guid\";s:46:\"http://blog.akismet.com/2007/09/06/downtime-2/\";s:4:\"link\";s:46:\"http://blog.akismet.com/2007/09/06/downtime-2/\";s:11:\"description\";s:415:\"

We had a 40 minute downtime in our San Antonio location last night. This probably caused some obvious spam on your blog to be missed by Akismet.

\n

We’re obviously looking on the systems side at what happened and how to prevent it, but also on the client side we’d like to make the WP plugin deal more gracefully with not being able to contact the mothership.

\n
\";s:7:\"pubdate\";s:31:\"Thu, 06 Sep 2007 17:51:28 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:415:\"

We had a 40 minute downtime in our San Antonio location last night. This probably caused some obvious spam on your blog to be missed by Akismet.

\n

We’re obviously looking on the systems side at what happened and how to prevent it, but also on the client side we’d like to make the WP plugin deal more gracefully with not being able to contact the mothership.

\n
\";}i:3;a:7:{s:5:\"title\";s:49:\"Ryan Boren: WordPress 2.3 Database Schema Changes\";s:4:\"guid\";s:73:\"http://boren.nu/archives/2007/09/05/wordpress-23-database-schema-changes/\";s:4:\"link\";s:73:\"http://boren.nu/archives/2007/09/05/wordpress-23-database-schema-changes/\";s:11:\"description\";s:1430:\"

WordPress 2.3 changes the database schema in three places. The biggest change is the taxonomy related changes I discussed earlier. Since taxonomy was going to cause backward compatibility breaks in the schema, we decided we might as well break it thoroughly and create something we liked. Thus the categories, post2cat, and link2cat tables were dropped and replaced by three new tables. Plugins that reference the old tables will break. They will need to be updated to either use API, preferably, or use SQL that references the new tables instead of the old ones.

\n

The other two changes are small and low-impact. A new status of ‘pending’ was added to the post_status field of the posts table. This won’t affect most plugins. Plugins that check post status might be affected. Those plugins can do some defensive programming to insulate themselves against new status additions.

\n

Finally, several unused fields were dropped from the options table. option_can_override, option_type, option_width, option_height, option_description, and option_admin_level are now gone. These fields have been unused for years. The time had come to finally drop them and clean up the options table.

\";s:7:\"pubdate\";s:31:\"Wed, 05 Sep 2007 20:49:32 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ryan\";}s:7:\"summary\";s:1430:\"

WordPress 2.3 changes the database schema in three places. The biggest change is the taxonomy related changes I discussed earlier. Since taxonomy was going to cause backward compatibility breaks in the schema, we decided we might as well break it thoroughly and create something we liked. Thus the categories, post2cat, and link2cat tables were dropped and replaced by three new tables. Plugins that reference the old tables will break. They will need to be updated to either use API, preferably, or use SQL that references the new tables instead of the old ones.

\n

The other two changes are small and low-impact. A new status of ‘pending’ was added to the post_status field of the posts table. This won’t affect most plugins. Plugins that check post status might be affected. Those plugins can do some defensive programming to insulate themselves against new status additions.

\n

Finally, several unused fields were dropped from the options table. option_can_override, option_type, option_width, option_height, option_description, and option_admin_level are now gone. These fields have been unused for years. The time had come to finally drop them and clean up the options table.

\";}i:4;a:7:{s:5:\"title\";s:35:\"Ryan Boren: Post Status Transitions\";s:4:\"guid\";s:60:\"http://boren.nu/archives/2007/09/05/post-status-transitions/\";s:4:\"link\";s:60:\"http://boren.nu/archives/2007/09/05/post-status-transitions/\";s:11:\"description\";s:1562:\"

WordPress 2.3 introduces some new actions that plugins can use to hook into status transitions and workflow. Before, WP had a ‘private_to_published’ action that announced that a post moved from private to published, and that’s about it. Now WP has actions for every possible transition. These actions are of the form ’status_to_status’ where status is one of:

\n\n

When a ‘pending’ post is published, the action ‘pending_to_publish’ is triggered. The action is accompanied by the post object that is changing status.

\n

A generic ‘transition_post_status’ action is also emitted for every status change. It is accompanied by the new status, the old status, and the post object. Plugins can use this action to attach a function that intercepts all status changes.

\n

The final action triggered during a status change is of the form ’status_object’, where status is from the status list above and object is either ‘page’ or ‘post’. For example, when a post is published, a ‘publish_post’ action is triggered. The action is accompanied by the post ID and post object.

\n

See the function wp_transition_post_status() for how these actions are formed. Use add_action() to attach functions to these actions.

\";s:7:\"pubdate\";s:31:\"Wed, 05 Sep 2007 17:32:51 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ryan\";}s:7:\"summary\";s:1562:\"

WordPress 2.3 introduces some new actions that plugins can use to hook into status transitions and workflow. Before, WP had a ‘private_to_published’ action that announced that a post moved from private to published, and that’s about it. Now WP has actions for every possible transition. These actions are of the form ’status_to_status’ where status is one of:

\n\n

When a ‘pending’ post is published, the action ‘pending_to_publish’ is triggered. The action is accompanied by the post object that is changing status.

\n

A generic ‘transition_post_status’ action is also emitted for every status change. It is accompanied by the new status, the old status, and the post object. Plugins can use this action to attach a function that intercepts all status changes.

\n

The final action triggered during a status change is of the form ’status_object’, where status is from the status list above and object is either ‘page’ or ‘post’. For example, when a post is published, a ‘publish_post’ action is triggered. The action is accompanied by the post ID and post object.

\n

See the function wp_transition_post_status() for how these actions are formed. Use add_action() to attach functions to these actions.

\";}i:5;a:7:{s:5:\"title\";s:52:\"Donncha: Is your eAccelerator cache dir still there?\";s:4:\"guid\";s:72:\"http://ocaoimh.ie/2007/09/05/is-your-eaccelerator-cache-dir-still-there/\";s:4:\"link\";s:72:\"http://ocaoimh.ie/2007/09/05/is-your-eaccelerator-cache-dir-still-there/\";s:11:\"description\";s:1425:\"

While looking through this WordPress performance post I realised that eAccelerator might not be running properly on this blog. For some time I’ve noticed this site hasn’t been as quick off the mark as it used to be. Dare I say it, but it was even a little sluggish!

\n

If you’re not familiar with it, eAccelerator is a PHP accelerator. It caches PHP bytecode and performs optimizations to make your PHP site run a lot faster.

\n

I verified that eAccelerator was loaded and then checked my php.ini configuration. Sure enough, the eaccelerator.cache_dir directive was set to “/tmp/eacc/” and that directory was deleted the last time my server rebooted.

\n

A permanent fix is to change the location of the cache dir. Put it anywhere the webserver can read, but don’t put it in /tmp/.

\n

While you’re looking at eAccelerator, upgrade to the latest version, especially if you’re running PHP5.

\napache, eaccelerator, irishblogs, PHP, WordPress\";s:7:\"pubdate\";s:31:\"Wed, 05 Sep 2007 15:25:51 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:7:\"Donncha\";}s:7:\"summary\";s:1425:\"

While looking through this WordPress performance post I realised that eAccelerator might not be running properly on this blog. For some time I’ve noticed this site hasn’t been as quick off the mark as it used to be. Dare I say it, but it was even a little sluggish!

\n

If you’re not familiar with it, eAccelerator is a PHP accelerator. It caches PHP bytecode and performs optimizations to make your PHP site run a lot faster.

\n

I verified that eAccelerator was loaded and then checked my php.ini configuration. Sure enough, the eaccelerator.cache_dir directive was set to “/tmp/eacc/” and that directory was deleted the last time my server rebooted.

\n

A permanent fix is to change the location of the cache dir. Put it anywhere the webserver can read, but don’t put it in /tmp/.

\n

While you’re looking at eAccelerator, upgrade to the latest version, especially if you’re running PHP5.

\napache, eaccelerator, irishblogs, PHP, WordPress\";}i:6;a:7:{s:5:\"title\";s:16:\"Matt: Confession\";s:4:\"guid\";s:43:\"http://photomatt.net/2007/09/05/confession/\";s:4:\"link\";s:43:\"http://photomatt.net/2007/09/05/confession/\";s:11:\"description\";s:168:\"

I’ve been using IE7 quite a bit lately. It’s a darn-good browser and seems very fast, especially when I have a lot of tabs open, compared to Firefox.

\";s:7:\"pubdate\";s:31:\"Wed, 05 Sep 2007 09:33:09 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:168:\"

I’ve been using IE7 quite a bit lately. It’s a darn-good browser and seems very fast, especially when I have a lot of tabs open, compared to Firefox.

\";}i:7;a:7:{s:5:\"title\";s:57:\"Weblog Tools Collection: WordPress Theme Releases for 9/5\";s:4:\"guid\";s:85:\"http://weblogtoolscollection.com/archives/2007/09/05/wordpress-theme-releases-for-95/\";s:4:\"link\";s:85:\"http://weblogtoolscollection.com/archives/2007/09/05/wordpress-theme-releases-for-95/\";s:11:\"description\";s:835:\"

Blog Oh Blog v2.0 is a 3-column, widget-ready, minimalistic theme with support for a sitemap and sIFR.

\n

Kubrick 3-C is a the popular Kubrick theme in a 3-column, widget-ready layout.

\n

Maggiociondolo is a 3-column, minimalist theme built on Sandbox.

\n

Restaurant is a 2-column, simple theme that comes in two varieties - AJAX and no AJAX.

\n

Synergy is a 2-column, dark-grey theme with blue header and highlights.

\";s:7:\"pubdate\";s:31:\"Wed, 05 Sep 2007 05:00:22 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:11:\"Jim Stitzel\";}s:7:\"summary\";s:835:\"

Blog Oh Blog v2.0 is a 3-column, widget-ready, minimalistic theme with support for a sitemap and sIFR.

\n

Kubrick 3-C is a the popular Kubrick theme in a 3-column, widget-ready layout.

\n

Maggiociondolo is a 3-column, minimalist theme built on Sandbox.

\n

Restaurant is a 2-column, simple theme that comes in two varieties - AJAX and no AJAX.

\n

Synergy is a 2-column, dark-grey theme with blue header and highlights.

\";}i:8;a:7:{s:5:\"title\";s:58:\"Weblog Tools Collection: WordPress Plugin Releases for 9/5\";s:4:\"guid\";s:86:\"http://weblogtoolscollection.com/archives/2007/09/05/wordpress-plugin-releases-for-95/\";s:4:\"link\";s:86:\"http://weblogtoolscollection.com/archives/2007/09/05/wordpress-plugin-releases-for-95/\";s:11:\"description\";s:2120:\"

Amazon Media Manager lets you add items from Amazon’s catalogue to your wordpress blog.

\n

BackupWordPress is a Backup & Recovery Suite for your WordPress website.

\n

Delink Comment Author adds a link that will remove the URL that the commenter left with their comment to the bottom of your comment notification e-mails and the comments list in your WP admin page.

\n

Impress allows your to display/share your blog statistics with your readers.

\n

Kontera Integration lets you enable or disable Kontera ads on a post-by-post basis.

\n

Mini-Slides lets you create individually styled mini-slides in your posts and lets you set the default template to be used site-wide.

\n

Search Unleashed extends the standard WordPress search and provides a full text search with wildcards, logical operations, and highlighting across posts, pages, comments, titles, URLs, and meta-data.

\n

Shashin lets you display Picasa images anywhere in your WordPress site.

\n

Sign-out Reminder displays a reminder to users to remember to sign out whenever they log in to the admin area.

\n

WP-Syslog is a system logging facility for WordPress that ogs core events like user logins, posts and comments publishing, plugin (de-)activation.

\n

Textiler lets you place Textile markup in your blog entries in very specific blocks.

\";s:7:\"pubdate\";s:31:\"Wed, 05 Sep 2007 05:00:22 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:11:\"Jim Stitzel\";}s:7:\"summary\";s:2120:\"

Amazon Media Manager lets you add items from Amazon’s catalogue to your wordpress blog.

\n

BackupWordPress is a Backup & Recovery Suite for your WordPress website.

\n

Delink Comment Author adds a link that will remove the URL that the commenter left with their comment to the bottom of your comment notification e-mails and the comments list in your WP admin page.

\n

Impress allows your to display/share your blog statistics with your readers.

\n

Kontera Integration lets you enable or disable Kontera ads on a post-by-post basis.

\n

Mini-Slides lets you create individually styled mini-slides in your posts and lets you set the default template to be used site-wide.

\n

Search Unleashed extends the standard WordPress search and provides a full text search with wildcards, logical operations, and highlighting across posts, pages, comments, titles, URLs, and meta-data.

\n

Shashin lets you display Picasa images anywhere in your WordPress site.

\n

Sign-out Reminder displays a reminder to users to remember to sign out whenever they log in to the admin area.

\n

WP-Syslog is a system logging facility for WordPress that ogs core events like user logins, posts and comments publishing, plugin (de-)activation.

\n

Textiler lets you place Textile markup in your blog entries in very specific blocks.

\";}i:9;a:7:{s:5:\"title\";s:32:\"Ryan Boren: WordPress 2.3 Beta 2\";s:4:\"guid\";s:56:\"http://boren.nu/archives/2007/09/04/wordpress-23-beta-2/\";s:4:\"link\";s:56:\"http://boren.nu/archives/2007/09/04/wordpress-23-beta-2/\";s:11:\"description\";s:995:\"

2.3 Beta 2 is now available. We’ve been very active since beta 1. Over 70 commits went into the repository in the past week with many bugs being fixed. New and improved AtomPub was introduced as were tag importers for Jerome’s Keywords and Simple Tagging Plugin.

\n

Thanks to those who joined us for last week’s bug hunt. We’re having another on Wednesday, September 5, 2007 at 17:00:00 UTC time in the #wordpress-bugs channel.

\";s:7:\"pubdate\";s:31:\"Tue, 04 Sep 2007 17:51:00 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ryan\";}s:7:\"summary\";s:995:\"

2.3 Beta 2 is now available. We’ve been very active since beta 1. Over 70 commits went into the repository in the past week with many bugs being fixed. New and improved AtomPub was introduced as were tag importers for Jerome’s Keywords and Simple Tagging Plugin.

\n

Thanks to those who joined us for last week’s bug hunt. We’re having another on Wednesday, September 5, 2007 at 17:00:00 UTC time in the #wordpress-bugs channel.

\";}i:10;a:7:{s:5:\"title\";s:30:\"Dev Blog: WordPress 2.3 Beta 2\";s:4:\"guid\";s:61:\"http://wordpress.org/development/2007/09/wordpress-23-beta-2/\";s:4:\"link\";s:61:\"http://wordpress.org/development/2007/09/wordpress-23-beta-2/\";s:11:\"description\";s:710:\"

WordPress 2.3 will be here before you know it! We’re putting out a beta release every Monday until WordPress 2.3 ships on September 24th. Today the second beta drops for your testing pleasure. We’ve fixed a bunch of bugs in the last week — thanks to everyone who participated! That said, this is still rough code, so you should only test the beta if you are comfortable troubleshooting PHP issues, filing tickets, and backing up your blog’s data.

\n

Still want to play? Go ahead and join the wp-testers mailing list and download beta 2 here.

\";s:7:\"pubdate\";s:31:\"Tue, 04 Sep 2007 06:03:58 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:12:\"Mark Jaquith\";}s:7:\"summary\";s:710:\"

WordPress 2.3 will be here before you know it! We’re putting out a beta release every Monday until WordPress 2.3 ships on September 24th. Today the second beta drops for your testing pleasure. We’ve fixed a bunch of bugs in the last week — thanks to everyone who participated! That said, this is still rough code, so you should only test the beta if you are comfortable troubleshooting PHP issues, filing tickets, and backing up your blog’s data.

\n

Still want to play? Go ahead and join the wp-testers mailing list and download beta 2 here.

\";}i:11;a:7:{s:5:\"title\";s:36:\"Alex King: Delink Comment Author 1.0\";s:4:\"guid\";s:60:\"http://alexking.org/blog/2007/09/03/delink-comment-author-10\";s:4:\"link\";s:60:\"http://alexking.org/blog/2007/09/03/delink-comment-author-10\";s:11:\"description\";s:1309:\"

Here’s a little one-trick pony WordPress plugin. Delink Comment Author adds a link that will remove the URL that the commenter left with their comment to the bottom of your comment notification e-mails and the comments list in your WP admin page.

\n

My comment policy is to allow only personal web site URLs from commenters. From time to time someone will leave a pretty legit comment, but with a pretty non-personal URL. With this plugin I can just remove the URL instead of deleting the entire comment. Not sure how useful this will be to others, but it’s I’ve put it out there if you want to use it. \":)\"

\n

The download and more information are available on my WordPress Plugins page.

\n

If you have any trouble with this, please open a thread in the WP Support Forums and send me the link.

\n

Share This

\";s:7:\"pubdate\";s:31:\"Tue, 04 Sep 2007 03:18:00 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Alex\";}s:7:\"summary\";s:1309:\"

Here’s a little one-trick pony WordPress plugin. Delink Comment Author adds a link that will remove the URL that the commenter left with their comment to the bottom of your comment notification e-mails and the comments list in your WP admin page.

\n

My comment policy is to allow only personal web site URLs from commenters. From time to time someone will leave a pretty legit comment, but with a pretty non-personal URL. With this plugin I can just remove the URL instead of deleting the entire comment. Not sure how useful this will be to others, but it’s I’ve put it out there if you want to use it. \":)\"

\n

The download and more information are available on my WordPress Plugins page.

\n

If you have any trouble with this, please open a thread in the WP Support Forums and send me the link.

\n

Share This

\";}i:12;a:7:{s:5:\"title\";s:18:\"Matt: On Labor Day\";s:4:\"guid\";s:45:\"http://photomatt.net/2007/09/03/on-labor-day/\";s:4:\"link\";s:45:\"http://photomatt.net/2007/09/03/on-labor-day/\";s:11:\"description\";s:108:\"

Seth Godin on Labor Day.

\";s:7:\"pubdate\";s:31:\"Mon, 03 Sep 2007 23:58:32 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:108:\"

Seth Godin on Labor Day.

\";}i:13;a:7:{s:5:\"title\";s:37:\"Alex King: Twitter Tools “Broken”\";s:4:\"guid\";s:56:\"http://alexking.org/blog/2007/09/01/twitter-tools-broken\";s:4:\"link\";s:56:\"http://alexking.org/blog/2007/09/01/twitter-tools-broken\";s:11:\"description\";s:822:\"

All–

\n

I’m very sorry that Twitter Tools is not currently working. The breakage appears to be due to an issue on the Twitter side.

\n

Thank you kindly for your patience while things get straightened out.

\n

Your friend,
\n–Alex King

\n

PS. Thank you to those of you went to the forums as requested, I’m sure you already found this information posted there.\n

Share This

\";s:7:\"pubdate\";s:31:\"Sat, 01 Sep 2007 15:09:27 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Alex\";}s:7:\"summary\";s:822:\"

All–

\n

I’m very sorry that Twitter Tools is not currently working. The breakage appears to be due to an issue on the Twitter side.

\n

Thank you kindly for your patience while things get straightened out.

\n

Your friend,
\n–Alex King

\n

PS. Thank you to those of you went to the forums as requested, I’m sure you already found this information posted there.\n

Share This

\";}i:14;a:7:{s:5:\"title\";s:63:\"Lorelle on WP: Celebrating Two Years: A Month of WordPress Tips\";s:4:\"guid\";s:88:\"http://lorelle.wordpress.com/2007/08/31/celebrating-two-years-a-month-of-wordpress-tips/\";s:4:\"link\";s:88:\"http://lorelle.wordpress.com/2007/08/31/celebrating-two-years-a-month-of-wordpress-tips/\";s:11:\"description\";s:2831:\"

\"WordPress.comAs part of my two month-long party celebrating the two year anniversary of WordPress.com and this blog with guest bloggers, we’re just finishing up month one of non-stop blogging about blogging, and tomorrow begins a whole month of non-stop WordPress tips.

\n

To help get you in the mood, here are some of the tips for WordPress and WordPress.com I’ve covered in the past.

\n

WordPress Help

\n

The most important help I can give to WordPress users is knowing where to go for help. The resources for finding help for WordPress issues are:

\n\n

Some articles I’ve written in the past on how to find and get help with WordPress include:
\n (more…)

\n
\";s:7:\"pubdate\";s:31:\"Fri, 31 Aug 2007 17:22:46 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:17:\"Lorelle VanFossen\";}s:7:\"summary\";s:2831:\"

\"WordPress.comAs part of my two month-long party celebrating the two year anniversary of WordPress.com and this blog with guest bloggers, we’re just finishing up month one of non-stop blogging about blogging, and tomorrow begins a whole month of non-stop WordPress tips.

\n

To help get you in the mood, here are some of the tips for WordPress and WordPress.com I’ve covered in the past.

\n

WordPress Help

\n

The most important help I can give to WordPress users is knowing where to go for help. The resources for finding help for WordPress issues are:

\n\n

Some articles I’ve written in the past on how to find and get help with WordPress include:
\n (more…)

\n
\";}i:15;a:7:{s:5:\"title\";s:23:\"Donncha: Idiot spammers\";s:4:\"guid\";s:44:\"http://ocaoimh.ie/2007/08/31/idiot-spammers/\";s:4:\"link\";s:44:\"http://ocaoimh.ie/2007/08/31/idiot-spammers/\";s:11:\"description\";s:849:\"

This comment was posted automatically using Blog Comment Poster. Check out its site to learn more and start building backlinks to your websites today.

\n

This post was written manually using Donncha’s fingers. Check out the Akismet anti comment-spam plugin to stop the idiot spammer at 75.126.132.23 using “Blog Comment Poster”.

\nakismet, Automattic, blog comment poster, comment spam, irishblogs, WordPress\";s:7:\"pubdate\";s:31:\"Fri, 31 Aug 2007 13:04:30 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:7:\"Donncha\";}s:7:\"summary\";s:849:\"

This comment was posted automatically using Blog Comment Poster. Check out its site to learn more and start building backlinks to your websites today.

\n

This post was written manually using Donncha’s fingers. Check out the Akismet anti comment-spam plugin to stop the idiot spammer at 75.126.132.23 using “Blog Comment Poster”.

\nakismet, Automattic, blog comment poster, comment spam, irishblogs, WordPress\";}i:16;a:7:{s:5:\"title\";s:31:\"Alex King: Friendly Search URLs\";s:4:\"guid\";s:56:\"http://alexking.org/blog/2007/08/30/friendly-search-urls\";s:4:\"link\";s:56:\"http://alexking.org/blog/2007/08/30/friendly-search-urls\";s:11:\"description\";s:1867:\"

I\'ve recently gotten several e-mails asking how I created my friendly search URLs here on alexking.org (also used on the Crowd Favorite web site, etc.); I figured others might be interested in this as well.

\n

It\'s really rather simple, there are just a couple of places to make changes. Note: you must be using nice permalinks with an Apache web server for this to work as described below.

\n

.htaccess File

\n

Add this mod_rewrite rule in your .htaccess file:

\n
RewriteRule ^search/(.+)?$ /index.php?s=$1 [QSA,L]
\n

UPDATE: Mark informs me that this has actually been built in to WP since 1.5 (meaning this step is not necessary) - who knew? Not me apparently. \":)\"

\n

Theme

\n

Add an onsubmit handler to the form tag in the search form in your theme:

\n
<form action=\"<?php bloginfo(\'wpurl\'); ?>/index.php\" method=\"get\" onsubmit=\"location.href=\'<?php bloginfo(\'home\'); ?>/search/\' + encodeURIComponent(this.s.value).replace(/%20/g, \'+\'); return false;\">
\n

Then... you\'re done. Kinda anti-climactic, but it\'s a pretty simple little change.

\n

One thing I\'ve found handy about this is the ability to simply type:

\n
http://alexking.org/search/your+search+terms
\n

to search my site.

\n

There\'s more than one way to skin a cat, suggestions and improvements to this are welcome in the comments.\n

Share This

\";s:7:\"pubdate\";s:31:\"Fri, 31 Aug 2007 06:40:37 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Alex\";}s:7:\"summary\";s:1867:\"

I\'ve recently gotten several e-mails asking how I created my friendly search URLs here on alexking.org (also used on the Crowd Favorite web site, etc.); I figured others might be interested in this as well.

\n

It\'s really rather simple, there are just a couple of places to make changes. Note: you must be using nice permalinks with an Apache web server for this to work as described below.

\n

.htaccess File

\n

Add this mod_rewrite rule in your .htaccess file:

\n
RewriteRule ^search/(.+)?$ /index.php?s=$1 [QSA,L]
\n

UPDATE: Mark informs me that this has actually been built in to WP since 1.5 (meaning this step is not necessary) - who knew? Not me apparently. \":)\"

\n

Theme

\n

Add an onsubmit handler to the form tag in the search form in your theme:

\n
<form action=\"<?php bloginfo(\'wpurl\'); ?>/index.php\" method=\"get\" onsubmit=\"location.href=\'<?php bloginfo(\'home\'); ?>/search/\' + encodeURIComponent(this.s.value).replace(/%20/g, \'+\'); return false;\">
\n

Then... you\'re done. Kinda anti-climactic, but it\'s a pretty simple little change.

\n

One thing I\'ve found handy about this is the ability to simply type:

\n
http://alexking.org/search/your+search+terms
\n

to search my site.

\n

There\'s more than one way to skin a cat, suggestions and improvements to this are welcome in the comments.\n

Share This

\";}i:17;a:7:{s:5:\"title\";s:85:\"WordPress Podcast: Episode 28: WordCamp memories, theme hijackers and vulnerabilities\";s:4:\"guid\";s:64:\"http://wp-community.org/2007/08/31/episode-28-wordcamp-memories/\";s:4:\"link\";s:64:\"http://wp-community.org/2007/08/31/episode-28-wordcamp-memories/\";s:11:\"description\";s:4641:\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
01:55\n

Opinion: WordCamp San Francisco 2007

\n

In this long-overdue (not to mention overly long) episode, Aaron and Charles share their thoughts on attending WordCamp in San Francisco including:

\n\n
29:19\n

Open question: Would anyone come to a WordCamp in Dallas, Texas?

\n

I’m interested in spearheading efforts to plan a WordCamp in early 2008 in the Dallas/Fort Worth, Texas area. If there is one, would you attend?

\n
29:19\n

Announcement: The Baltimore-Washington WordPress Meetup Group

\n

The next meeting of The Baltimore-Washington WordPress Meetup Group is scheduled for September 20th. (This wasn’t mentioned in the podcast because we spoke of the first meetup that occurred several weeks ago.)

\n
30:30\n

News: Templates Browser modifying themes to distribute malware

\n

Templates Browser (no, I won’t link to them) is re-distributing public blog themes which are modified in such a way as to exploit the end user by inserting hidden spam or malware links.

\n
33:18\n

News: Is WordPress vulnerable?

\n

Mark Jaquith answers a charge of 7 security vulnerabilities in WordPress 2.2.x

\n
37:22\n

Feedback, comments and questions:

\n\n
\";s:7:\"pubdate\";s:31:\"Fri, 31 Aug 2007 06:00:03 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:17:\"Charles Stricklin\";}s:7:\"summary\";s:4641:\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
01:55\n

Opinion: WordCamp San Francisco 2007

\n

In this long-overdue (not to mention overly long) episode, Aaron and Charles share their thoughts on attending WordCamp in San Francisco including:

\n\n
29:19\n

Open question: Would anyone come to a WordCamp in Dallas, Texas?

\n

I’m interested in spearheading efforts to plan a WordCamp in early 2008 in the Dallas/Fort Worth, Texas area. If there is one, would you attend?

\n
29:19\n

Announcement: The Baltimore-Washington WordPress Meetup Group

\n

The next meeting of The Baltimore-Washington WordPress Meetup Group is scheduled for September 20th. (This wasn’t mentioned in the podcast because we spoke of the first meetup that occurred several weeks ago.)

\n
30:30\n

News: Templates Browser modifying themes to distribute malware

\n

Templates Browser (no, I won’t link to them) is re-distributing public blog themes which are modified in such a way as to exploit the end user by inserting hidden spam or malware links.

\n
33:18\n

News: Is WordPress vulnerable?

\n

Mark Jaquith answers a charge of 7 security vulnerabilities in WordPress 2.2.x

\n
37:22\n

Feedback, comments and questions:

\n\n
\";}i:18;a:7:{s:5:\"title\";s:59:\"Weblog Tools Collection: WordPress Plugin Releases for 8/31\";s:4:\"guid\";s:87:\"http://weblogtoolscollection.com/archives/2007/08/31/wordpress-plugin-releases-for-831/\";s:4:\"link\";s:87:\"http://weblogtoolscollection.com/archives/2007/08/31/wordpress-plugin-releases-for-831/\";s:11:\"description\";s:996:\"

ACSearch adds auto-completion to the WordPress search field.

\n

Add to Any Subscribe Button lets readers subscribe to your blog using any feed reader.

\n

Duplicate Sidebar Widgets allows a WordPress user to duplicate or copy sidebar widgets and use them on multiple sidebars or use the widgets more than once in the same sidebar.

\n

WP Mail SMTP replaces the in-built wp_mail() function with a duplicate function which uses SMTP to localhost instead of PHP mail.

\n

this.player is a a small player written in Flash that allows you to use simple tags to embed FLV, SWF and MP3 files into WordPress posts.

\";s:7:\"pubdate\";s:31:\"Fri, 31 Aug 2007 04:45:35 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:11:\"Jim Stitzel\";}s:7:\"summary\";s:996:\"

ACSearch adds auto-completion to the WordPress search field.

\n

Add to Any Subscribe Button lets readers subscribe to your blog using any feed reader.

\n

Duplicate Sidebar Widgets allows a WordPress user to duplicate or copy sidebar widgets and use them on multiple sidebars or use the widgets more than once in the same sidebar.

\n

WP Mail SMTP replaces the in-built wp_mail() function with a duplicate function which uses SMTP to localhost instead of PHP mail.

\n

this.player is a a small player written in Flash that allows you to use simple tags to embed FLV, SWF and MP3 files into WordPress posts.

\";}i:19;a:7:{s:5:\"title\";s:58:\"Weblog Tools Collection: WordPress Theme Releases for 8/31\";s:4:\"guid\";s:86:\"http://weblogtoolscollection.com/archives/2007/08/31/wordpress-theme-releases-for-831/\";s:4:\"link\";s:86:\"http://weblogtoolscollection.com/archives/2007/08/31/wordpress-theme-releases-for-831/\";s:11:\"description\";s:1402:\"

All Season is a suite of 3-column, widget-ready themes designed to allow bloggers to change their themes on a seasonal, monthly basis. There are currently three themes in the suite with nine more planned for future release.

\n

Independence Day is a 3-column, widget-ready theme with Author Page designed in celebration of Indian Independence Day.

\n

Luxury is a 2-column, widget-ready theme with a dark-yellow color scheme and a patterned background.

\n

Mubin is a 2-column theme with a black header and a modern look.

\n

Pumpkin Red is a 3-column, widget-ready theme with red and orange colors.

\n

Simple Grey is a 2-column, widget-ready, minimalistic theme with simple, XHTML-valid code.

\n

Tigopedia Reloaded is a 3-column, widget-ready theme with a Web 2.0-style look and a database-free design.

\";s:7:\"pubdate\";s:31:\"Fri, 31 Aug 2007 04:45:35 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:11:\"Jim Stitzel\";}s:7:\"summary\";s:1402:\"

All Season is a suite of 3-column, widget-ready themes designed to allow bloggers to change their themes on a seasonal, monthly basis. There are currently three themes in the suite with nine more planned for future release.

\n

Independence Day is a 3-column, widget-ready theme with Author Page designed in celebration of Indian Independence Day.

\n

Luxury is a 2-column, widget-ready theme with a dark-yellow color scheme and a patterned background.

\n

Mubin is a 2-column theme with a black header and a modern look.

\n

Pumpkin Red is a 3-column, widget-ready theme with red and orange colors.

\n

Simple Grey is a 2-column, widget-ready, minimalistic theme with simple, XHTML-valid code.

\n

Tigopedia Reloaded is a 3-column, widget-ready theme with a Web 2.0-style look and a database-free design.

\";}i:20;a:7:{s:5:\"title\";s:37:\"Ryan Boren: AtomPub and WordPress 2.3\";s:4:\"guid\";s:61:\"http://boren.nu/archives/2007/08/30/atompub-and-wordpress-23/\";s:4:\"link\";s:61:\"http://boren.nu/archives/2007/08/30/atompub-and-wordpress-23/\";s:11:\"description\";s:447:\"

Sam Ruby talks about the much improved AtomPub support coming in WordPress 2.3. I’m glad this all came together in time for 2.3. Sam gives a shout out to those who made it happen. Thanks guys. I love it when all I have to do is apply a patch to gain a nice, marquee feature.

\";s:7:\"pubdate\";s:31:\"Thu, 30 Aug 2007 17:41:44 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ryan\";}s:7:\"summary\";s:447:\"

Sam Ruby talks about the much improved AtomPub support coming in WordPress 2.3. I’m glad this all came together in time for 2.3. Sam gives a shout out to those who made it happen. Thanks guys. I love it when all I have to do is apply a patch to gain a nice, marquee feature.

\";}i:21;a:7:{s:5:\"title\";s:35:\"Matt: Should poetry be open-source?\";s:4:\"guid\";s:51:\"http://photomatt.net/2007/08/30/open-source-poetry/\";s:4:\"link\";s:51:\"http://photomatt.net/2007/08/30/open-source-poetry/\";s:11:\"description\";s:117:\"

Should poetry be open-source?

\";s:7:\"pubdate\";s:31:\"Thu, 30 Aug 2007 16:14:34 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:117:\"

Should poetry be open-source?

\";}i:22;a:7:{s:5:\"title\";s:18:\"Matt: SUNW to JAVA\";s:4:\"guid\";s:45:\"http://photomatt.net/2007/08/30/sunw-to-java/\";s:4:\"link\";s:45:\"http://photomatt.net/2007/08/30/sunw-to-java/\";s:11:\"description\";s:367:\"

Now that Sun has changed their stock ticker from SUNW to JAVA, here’s ten other companies that should change their tickers. By the way, Om was just named one of the 50 most influential Indian Americans.

\";s:7:\"pubdate\";s:31:\"Thu, 30 Aug 2007 16:11:13 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:367:\"

Now that Sun has changed their stock ticker from SUNW to JAVA, here’s ten other companies that should change their tickers. By the way, Om was just named one of the 50 most influential Indian Americans.

\";}i:23;a:7:{s:5:\"title\";s:54:\"Weblog Tools Collection: WP SEO Tips: One, More, Time!\";s:4:\"guid\";s:79:\"http://weblogtoolscollection.com/archives/2007/08/30/wp-seo-tips-one-more-time/\";s:4:\"link\";s:79:\"http://weblogtoolscollection.com/archives/2007/08/30/wp-seo-tips-one-more-time/\";s:11:\"description\";s:1979:\"

This tip isn’t very specific to Wordpress, but something I realized only a few days ago.

\n

If you have an article that is ranking well in the search engines, let’s say “wordpress skins” or “picasa web tips“, either of those searches may generate a decent amount of traffic for either Weblogtoolscollection.com or Ginside.com.

\n

Well, let me back up a second here. I recently installed the Firestats plugin and it’s been amazing. It’s capable of providing me with the recent referrers, so I can see where my traffic is coming from, and also provide a list of my top posts.

\n

So what I did was I took some of those top posts and analyzed them for what keyword they were ranking really well for. I then wrote another article with the similar theme and makeup with keywords to generate some fresh content. I noticed that I was in the top10 for a specific keyword, such as I mentioned above, so I wrote an additional article. Guess what? I now have two top10 ranking listings in the Google index. Users are going to be twice as likely to visit your site now because of the visibility.

\n

You may come to the conclusion that this is an elementary practice, but it’s a practice that works and is great to help inform authors about.

\n

Please note though, don’t just create duplicate content and write the same thing over with the same title, but be creative and some up with a new twist or do a follow-up article about that topic.

\";s:7:\"pubdate\";s:31:\"Thu, 30 Aug 2007 11:15:22 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:8:\"Jonathan\";}s:7:\"summary\";s:1979:\"

This tip isn’t very specific to Wordpress, but something I realized only a few days ago.

\n

If you have an article that is ranking well in the search engines, let’s say “wordpress skins” or “picasa web tips“, either of those searches may generate a decent amount of traffic for either Weblogtoolscollection.com or Ginside.com.

\n

Well, let me back up a second here. I recently installed the Firestats plugin and it’s been amazing. It’s capable of providing me with the recent referrers, so I can see where my traffic is coming from, and also provide a list of my top posts.

\n

So what I did was I took some of those top posts and analyzed them for what keyword they were ranking really well for. I then wrote another article with the similar theme and makeup with keywords to generate some fresh content. I noticed that I was in the top10 for a specific keyword, such as I mentioned above, so I wrote an additional article. Guess what? I now have two top10 ranking listings in the Google index. Users are going to be twice as likely to visit your site now because of the visibility.

\n

You may come to the conclusion that this is an elementary practice, but it’s a practice that works and is great to help inform authors about.

\n

Please note though, don’t just create duplicate content and write the same thing over with the same title, but be creative and some up with a new twist or do a follow-up article about that topic.

\";}i:24;a:7:{s:5:\"title\";s:58:\"Weblog Tools Collection: WordPress Theme Releases for 8/30\";s:4:\"guid\";s:86:\"http://weblogtoolscollection.com/archives/2007/08/30/wordpress-theme-releases-for-830/\";s:4:\"link\";s:86:\"http://weblogtoolscollection.com/archives/2007/08/30/wordpress-theme-releases-for-830/\";s:11:\"description\";s:649:\"

2001 is a 3-column, dark theme with a prominently-placed Hal 9000 to keep your readers company.

\n

iPhone is a 2-column, widget-ready theme that brings your iPhone to your blog.

\n

Limau Orange is a 3-column, widget-ready theme with a simple layout and concise dimensions.

\n

Whitespace is a 3-column, widget-ready theme with a minimalistic design.

\";s:7:\"pubdate\";s:31:\"Thu, 30 Aug 2007 04:45:33 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:11:\"Jim Stitzel\";}s:7:\"summary\";s:649:\"

2001 is a 3-column, dark theme with a prominently-placed Hal 9000 to keep your readers company.

\n

iPhone is a 2-column, widget-ready theme that brings your iPhone to your blog.

\n

Limau Orange is a 3-column, widget-ready theme with a simple layout and concise dimensions.

\n

Whitespace is a 3-column, widget-ready theme with a minimalistic design.

\";}i:25;a:7:{s:5:\"title\";s:59:\"Weblog Tools Collection: WordPress Plugin Releases for 8/30\";s:4:\"guid\";s:87:\"http://weblogtoolscollection.com/archives/2007/08/30/wordpress-plugin-releases-for-830/\";s:4:\"link\";s:87:\"http://weblogtoolscollection.com/archives/2007/08/30/wordpress-plugin-releases-for-830/\";s:11:\"description\";s:1861:\"

Advanced Permalinks extends the default permalink functionality and allows you to create different permalink structures for each post on your site.

\n

Bloglines Blogroll enables you to integrate your favorite feeds in wordpress on the sidebar.

\n

Del.icio.us for WordPress displays your latest del.icio.us bookmarks in your WordPress blog.

\n

StatusPress posts your Facebook status to your WordPress blog.

\n

GX Calendar Date Style allows you to easily display your post time and datestamps in a little calendar graphic.

\n

Headspace manages meta-data and handles a wide range of SEO tasks.

\n

WordPress Language Translator has been updated to work with WordPress 2.2.2.

\n

Last.fm for WordPress displays your Last.fm recently listened tracks in your WordPress blog.

\n

Login Lockdown restricts the number of times someone can enter the incorrect password while logging into WordPress within a short period.

\n

The Sphere Related Content plugin has been updated to include politics-related widgets to your site.

\n

Summarize This will add a button to the sidebar as a widget to summarize the page.

\";s:7:\"pubdate\";s:31:\"Thu, 30 Aug 2007 04:45:33 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:11:\"Jim Stitzel\";}s:7:\"summary\";s:1861:\"

Advanced Permalinks extends the default permalink functionality and allows you to create different permalink structures for each post on your site.

\n

Bloglines Blogroll enables you to integrate your favorite feeds in wordpress on the sidebar.

\n

Del.icio.us for WordPress displays your latest del.icio.us bookmarks in your WordPress blog.

\n

StatusPress posts your Facebook status to your WordPress blog.

\n

GX Calendar Date Style allows you to easily display your post time and datestamps in a little calendar graphic.

\n

Headspace manages meta-data and handles a wide range of SEO tasks.

\n

WordPress Language Translator has been updated to work with WordPress 2.2.2.

\n

Last.fm for WordPress displays your Last.fm recently listened tracks in your WordPress blog.

\n

Login Lockdown restricts the number of times someone can enter the incorrect password while logging into WordPress within a short period.

\n

The Sphere Related Content plugin has been updated to include politics-related widgets to your site.

\n

Summarize This will add a button to the sidebar as a widget to summarize the page.

\";}i:26;a:7:{s:5:\"title\";s:32:\"Matt: Digg Effect Deconstruction\";s:4:\"guid\";s:59:\"http://photomatt.net/2007/08/29/digg-effect-deconstruction/\";s:4:\"link\";s:59:\"http://photomatt.net/2007/08/29/digg-effect-deconstruction/\";s:11:\"description\";s:159:\"

The Digg Effect: A Deconstruction, with a WordPress blog of course.

\";s:7:\"pubdate\";s:31:\"Thu, 30 Aug 2007 01:19:03 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:159:\"

The Digg Effect: A Deconstruction, with a WordPress blog of course.

\";}i:27;a:7:{s:5:\"title\";s:56:\"Weblog Tools Collection: The Art of Stress Free Blogging\";s:4:\"guid\";s:85:\"http://weblogtoolscollection.com/archives/2007/08/29/the-art-of-stress-free-blogging/\";s:4:\"link\";s:85:\"http://weblogtoolscollection.com/archives/2007/08/29/the-art-of-stress-free-blogging/\";s:11:\"description\";s:2404:\"

The Art of Stress-free Blogging : This post on Web Worker Daily reminds me of why I should be reading that blog more often. If you have heard of or read the ever-popular productivity book Getting Things Done, by David Allen, you will enjoy this post by Leo Babuata. He goes through the steps to perform and outlines the common gotchas and missteps to avoid.

\n\n

I could go on forever, but I fear I am moving away from the actual context of blogging. What do you do to foster the Art of Stress Free Blogging?

\";s:7:\"pubdate\";s:31:\"Wed, 29 Aug 2007 23:15:21 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Mark Ghosh\";}s:7:\"summary\";s:2404:\"

The Art of Stress-free Blogging : This post on Web Worker Daily reminds me of why I should be reading that blog more often. If you have heard of or read the ever-popular productivity book Getting Things Done, by David Allen, you will enjoy this post by Leo Babuata. He goes through the steps to perform and outlines the common gotchas and missteps to avoid.

\n\n

I could go on forever, but I fear I am moving away from the actual context of blogging. What do you do to foster the Art of Stress Free Blogging?

\";}i:28;a:7:{s:5:\"title\";s:29:\"Matt: WordPress Malaysia Logo\";s:4:\"guid\";s:56:\"http://photomatt.net/2007/08/29/wordpress-malaysia-logo/\";s:4:\"link\";s:56:\"http://photomatt.net/2007/08/29/wordpress-malaysia-logo/\";s:11:\"description\";s:175:\"

Malaysia is celebrating 50 years of Merdeka and Avijit made these cool WordPress logos to celebrate.

\";s:7:\"pubdate\";s:31:\"Wed, 29 Aug 2007 17:16:16 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:175:\"

Malaysia is celebrating 50 years of Merdeka and Avijit made these cool WordPress logos to celebrate.

\";}i:29;a:7:{s:5:\"title\";s:38:\"Weblog Tools Collection: Carnival Blog\";s:4:\"guid\";s:67:\"http://weblogtoolscollection.com/archives/2007/08/29/carnival-blog/\";s:4:\"link\";s:67:\"http://weblogtoolscollection.com/archives/2007/08/29/carnival-blog/\";s:11:\"description\";s:1049:\"

Carnival Blog: Or I should have said “How to do a corporate blog, the right way”? The Carnival Blog, written by John and Heidi Heald (Carnival Cruise Director) is actually a lot of fun to read. It is very personal, very personable and reeks of the enthusiasm and the “fun times” that can be had aboard a Carnival Cruise Ship . The fun fact about this blog is that not only is it down to earth and chock full of John’s idiosyncrasies which make it a delicious read, it is also doing amazingly well in terms of traffic, readership and participation. The blog has attracted 600,000 visitors since its inception in March and continues to lead the Wordpress.com viewer charts. Now in all fairness, I cannot see Michael Dell write about his trip to the local Sonoma winery in broken English, but the $64,000 trick is to engage your clientèle and prospects into thinking more about your company and what you have to offer and keep them from thinking about the competition.

\";s:7:\"pubdate\";s:31:\"Wed, 29 Aug 2007 16:00:20 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Mark Ghosh\";}s:7:\"summary\";s:1049:\"

Carnival Blog: Or I should have said “How to do a corporate blog, the right way”? The Carnival Blog, written by John and Heidi Heald (Carnival Cruise Director) is actually a lot of fun to read. It is very personal, very personable and reeks of the enthusiasm and the “fun times” that can be had aboard a Carnival Cruise Ship . The fun fact about this blog is that not only is it down to earth and chock full of John’s idiosyncrasies which make it a delicious read, it is also doing amazingly well in terms of traffic, readership and participation. The blog has attracted 600,000 visitors since its inception in March and continues to lead the Wordpress.com viewer charts. Now in all fairness, I cannot see Michael Dell write about his trip to the local Sonoma winery in broken English, but the $64,000 trick is to engage your clientèle and prospects into thinking more about your company and what you have to offer and keep them from thinking about the competition.

\";}i:30;a:7:{s:5:\"title\";s:37:\"Dougal Campbell: WordPress 2.3 Beta 1\";s:4:\"guid\";s:61:\"http://dougal.gunters.org/blog/2007/08/29/wordpress-23-beta-1\";s:4:\"link\";s:61:\"http://dougal.gunters.org/blog/2007/08/29/wordpress-23-beta-1\";s:11:\"description\";s:1939:\"

\nAs announced on the dev blog, WordPress 2.3 Beta 1 is now available for download and testing. Some of the features of 2.3 include automatic notification for plugin and core code version updates, built-in tags support, faster javascript, and SEO-friendly URL redirection.\n

\n

\nThe new tag system includes an importer for those using the Ultimate Tag Warrior plugin, and importers for a couple of other popular plugins are in the works. There is also a conversion process available for those who would like to convert their existing categories to tags. Due to the flexibility of the new tag system (taxonomy system is more accurate), I expect we will see an explosion of new tagging plugins.\n

\n

\nThere have been reports of compatibility issues with a few plugins due to the changes to the category system (plugins that only used the API functions should be okay, but those that used direct SQL queries may break). Also, some file moves in the admin area have affected a few other plugins. Please report problems on Trac, and document compatible plugins on the Codex.\n

\n

Share This\n

\";s:7:\"pubdate\";s:31:\"Wed, 29 Aug 2007 15:17:26 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:6:\"Dougal\";}s:7:\"summary\";s:1939:\"

\nAs announced on the dev blog, WordPress 2.3 Beta 1 is now available for download and testing. Some of the features of 2.3 include automatic notification for plugin and core code version updates, built-in tags support, faster javascript, and SEO-friendly URL redirection.\n

\n

\nThe new tag system includes an importer for those using the Ultimate Tag Warrior plugin, and importers for a couple of other popular plugins are in the works. There is also a conversion process available for those who would like to convert their existing categories to tags. Due to the flexibility of the new tag system (taxonomy system is more accurate), I expect we will see an explosion of new tagging plugins.\n

\n

\nThere have been reports of compatibility issues with a few plugins due to the changes to the category system (plugins that only used the API functions should be okay, but those that used direct SQL queries may break). Also, some file moves in the admin area have affected a few other plugins. Please report problems on Trac, and document compatible plugins on the Codex.\n

\n

Share This\n

\";}i:31;a:7:{s:5:\"title\";s:31:\"Ryan Boren: 2.3 Beta 1 Bug Hunt\";s:4:\"guid\";s:55:\"http://boren.nu/archives/2007/08/28/23-beta-1-bug-hunt/\";s:4:\"link\";s:55:\"http://boren.nu/archives/2007/08/28/23-beta-1-bug-hunt/\";s:11:\"description\";s:537:\"

The first bug hunt in the WordPress 2.3 beta release cycle is Wednesday, August 29, 2007 at 17:00:00 UTC time. Join us on the #wordpress-bugs channel as we find and fix bugs. Hunts usually last 24 hours so that all time zones can join in.

\";s:7:\"pubdate\";s:31:\"Wed, 29 Aug 2007 01:54:45 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ryan\";}s:7:\"summary\";s:537:\"

The first bug hunt in the WordPress 2.3 beta release cycle is Wednesday, August 29, 2007 at 17:00:00 UTC time. Join us on the #wordpress-bugs channel as we find and fix bugs. Hunts usually last 24 hours so that all time zones can join in.

\";}i:32;a:7:{s:5:\"title\";s:52:\"Weblog Tools Collection: What is up with Technorati?\";s:4:\"guid\";s:80:\"http://weblogtoolscollection.com/archives/2007/08/28/what-is-up-with-technorati/\";s:4:\"link\";s:80:\"http://weblogtoolscollection.com/archives/2007/08/28/what-is-up-with-technorati/\";s:11:\"description\";s:2478:\"

WeblogToolsCollection.com has vanished from the Technorati index. I have sent support emails and have received nothing more than the canned responses. This blog shows up fine in my watchlist and it is also displayed correctly under “My Blogs” on the homepage but that is where I lose it. The blog page says that it is not indexed and I have quit trying to fix it.
\nThis is one company I have a hard time figuring out. They seem to yo yo between very useful, fully in control of their fortunes and their company to down in the doldrum dumps with very little direction within the blink of an eye. I imagine the people that work there must also go through similar vacillations in their work lives and it must be very difficult to endure. I have had contact with many of the folks at Technorati over the years and all of them have come across as highly intelligent, enterprising individuals. The recent kerfluffle with Sifry and the lost puppy sympathy that got passed around in the tech blogging community really gave the company a black eye in my book and could and should have been avoided at all costs. It was passed off as Web 2.0 growing pains but Technorati is a good company with solid technology and oodles of data. They should have little trouble in coming in second at the least and they are MIA from my list. The externalities of Silicon Valley, I am sure, do not help their case either.

\n

People often criticize strong, controlling leadership but I believe that those are the qualities along with human chemistry, some luck and a little Karma that often produce the best results in startups irrespective of talent or technology. Though I am not writing Technorati off completely, I wish they would either go away forever or come back and stay a while.

\n

[EDIT] Thursday, August 30th: Looks like things are back to normal but for how long? Also the index is not correct yet, things still look odd in places.

\";s:7:\"pubdate\";s:31:\"Wed, 29 Aug 2007 01:30:27 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Mark Ghosh\";}s:7:\"summary\";s:2478:\"

WeblogToolsCollection.com has vanished from the Technorati index. I have sent support emails and have received nothing more than the canned responses. This blog shows up fine in my watchlist and it is also displayed correctly under “My Blogs” on the homepage but that is where I lose it. The blog page says that it is not indexed and I have quit trying to fix it.
\nThis is one company I have a hard time figuring out. They seem to yo yo between very useful, fully in control of their fortunes and their company to down in the doldrum dumps with very little direction within the blink of an eye. I imagine the people that work there must also go through similar vacillations in their work lives and it must be very difficult to endure. I have had contact with many of the folks at Technorati over the years and all of them have come across as highly intelligent, enterprising individuals. The recent kerfluffle with Sifry and the lost puppy sympathy that got passed around in the tech blogging community really gave the company a black eye in my book and could and should have been avoided at all costs. It was passed off as Web 2.0 growing pains but Technorati is a good company with solid technology and oodles of data. They should have little trouble in coming in second at the least and they are MIA from my list. The externalities of Silicon Valley, I am sure, do not help their case either.

\n

People often criticize strong, controlling leadership but I believe that those are the qualities along with human chemistry, some luck and a little Karma that often produce the best results in startups irrespective of talent or technology. Though I am not writing Technorati off completely, I wish they would either go away forever or come back and stay a while.

\n

[EDIT] Thursday, August 30th: Looks like things are back to normal but for how long? Also the index is not correct yet, things still look odd in places.

\";}i:33;a:7:{s:5:\"title\";s:19:\"Matt: Browser Stats\";s:4:\"guid\";s:46:\"http://photomatt.net/2007/08/28/browser-stats/\";s:4:\"link\";s:46:\"http://photomatt.net/2007/08/28/browser-stats/\";s:11:\"description\";s:1217:\"

I’m at An Event Apart in Chicago and Eric Meyer just said that browser statistics were “worse than useless.” More specifically, the only browser share numbers that matter are the one for sites you run, not what the web at large uses. Here’s our browser breakdown from 115 million visits to WordPress.com:

\n
    \n
  1. 62.46% - Internet Explorer, sub-breakdown by popular request\n
      \n
    1. 64.10% - Version 6.0
    2. \n
    3. 35.17% - Version 7.0
    4. \n
    5. 0.28% - Version 5.5
    6. \n
    \n
  2. \n
  3. 30.74% - Firefox
  4. \n
  5. 3.83% - Safari
  6. \n
  7. 1.78% - Opera
  8. \n
  9. 0.52% - Mozilla
    \n
  10. \n
\n

Just for fun, the operating system breakdown:

\n
    \n
  1. 90.36% - Windows
  2. \n
  3. 6.73% - Macintosh
  4. \n
  5. 2.19% - Linux
  6. \n
  7. 0.03% - PlayStation Portable
  8. \n
\";s:7:\"pubdate\";s:31:\"Tue, 28 Aug 2007 19:41:07 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:1217:\"

I’m at An Event Apart in Chicago and Eric Meyer just said that browser statistics were “worse than useless.” More specifically, the only browser share numbers that matter are the one for sites you run, not what the web at large uses. Here’s our browser breakdown from 115 million visits to WordPress.com:

\n
    \n
  1. 62.46% - Internet Explorer, sub-breakdown by popular request\n
      \n
    1. 64.10% - Version 6.0
    2. \n
    3. 35.17% - Version 7.0
    4. \n
    5. 0.28% - Version 5.5
    6. \n
    \n
  2. \n
  3. 30.74% - Firefox
  4. \n
  5. 3.83% - Safari
  6. \n
  7. 1.78% - Opera
  8. \n
  9. 0.52% - Mozilla
    \n
  10. \n
\n

Just for fun, the operating system breakdown:

\n
    \n
  1. 90.36% - Windows
  2. \n
  3. 6.73% - Macintosh
  4. \n
  5. 2.19% - Linux
  6. \n
  7. 0.03% - PlayStation Portable
  8. \n
\";}i:34;a:7:{s:5:\"title\";s:19:\"Matt: Vanilla News!\";s:4:\"guid\";s:45:\"http://photomatt.net/2007/08/28/vanilla-news/\";s:4:\"link\";s:45:\"http://photomatt.net/2007/08/28/vanilla-news/\";s:11:\"description\";s:553:\"

Good news! The links in Vanilla that brought the rats out defending them have now been removed by Mark at Lussomo. I applaud this decision to break the text link contract they were in and to put my money where my mouth is I just donated a thousand dollars from my personal account to the project.

\";s:7:\"pubdate\";s:31:\"Tue, 28 Aug 2007 16:50:07 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:553:\"

Good news! The links in Vanilla that brought the rats out defending them have now been removed by Mark at Lussomo. I applaud this decision to break the text link contract they were in and to put my money where my mouth is I just donated a thousand dollars from my personal account to the project.

\";}i:35;a:7:{s:5:\"title\";s:56:\"Weblog Tools Collection: Super Secret WordPress GangSign\";s:4:\"guid\";s:85:\"http://weblogtoolscollection.com/archives/2007/08/28/super-secret-wordpress-gangsign/\";s:4:\"link\";s:85:\"http://weblogtoolscollection.com/archives/2007/08/28/super-secret-wordpress-gangsign/\";s:11:\"description\";s:576:\"

\"Small

\nSo after an email conversation with Tony, I was reading the Sphere blog this morning and noticed Matt giving Cisco, IBM and indeed the rest of the world a glimpse at the Super Secret WordPress Gangsign. Word! Thanks to Tony for the picture.

\";s:7:\"pubdate\";s:31:\"Tue, 28 Aug 2007 15:49:24 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Mark Ghosh\";}s:7:\"summary\";s:576:\"

\"Small

\nSo after an email conversation with Tony, I was reading the Sphere blog this morning and noticed Matt giving Cisco, IBM and indeed the rest of the world a glimpse at the Super Secret WordPress Gangsign. Word! Thanks to Tony for the picture.

\";}i:36;a:7:{s:5:\"title\";s:21:\"Matt: Redirect Plugin\";s:4:\"guid\";s:48:\"http://photomatt.net/2007/08/28/redirect-plugin/\";s:4:\"link\";s:48:\"http://photomatt.net/2007/08/28/redirect-plugin/\";s:11:\"description\";s:99:\"

Urban Giraffe Redirection plugin.

\";s:7:\"pubdate\";s:31:\"Tue, 28 Aug 2007 06:39:10 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:99:\"

Urban Giraffe Redirection plugin.

\";}i:37;a:7:{s:5:\"title\";s:32:\"Ryan Boren: WordPress 2.3 Beta 1\";s:4:\"guid\";s:56:\"http://boren.nu/archives/2007/08/27/wordpress-23-beta-1/\";s:4:\"link\";s:56:\"http://boren.nu/archives/2007/08/27/wordpress-23-beta-1/\";s:11:\"description\";s:2105:\"

As announced on the dev blog, WordPress 2.3 Beta 1 is now available. This is the first of several planned betas. Beta 1 has been pretty solid in my testing, but keep in mind that this is indeed a beta that shouldn’t be used on your production blog. If you try it out, make sure you back up your database and prepare yourself to revert to 2.2 if you have problems.

\n

WordPress 2.3 includes built-in tagging support. An Ultimate Tag Warrior importer is bundled with 2.3. Importers for the Simple Tagging Plugin and Jerome’s Keywords are being tested and will most likely be included in the next beta. 2.3 also includes a converter that will selectively convert your categories to tags. The converter has worked well for me, but I received a couple bug reports about it shortly before beta 1 went out. If you try the converter and have any problems, let us know so we can fix it up for beta 2. If you want to use the tagging feature, you will need to change your templates to use the new tagging template functions. There’s not yet much documentation on those, so I’ll discuss them in a future post. If you want to do some digging, you can find the code for the tagging functions here and here. If you already use UTW or one of the other plugins and don’t wish to change, you can keep using them as you have been, although I expect some of them will change to use the built-in tagging as a baseline and add their own stuff over the top. The built-in tagging provides just the basics and leaves the fancy stuff to plugins that can better suit individual tastes.

\n

If you are feeling experimental, try out beta 1 and let us know what you think via comments to this post, the bug tracker, or the testers list.

\";s:7:\"pubdate\";s:31:\"Tue, 28 Aug 2007 05:10:24 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ryan\";}s:7:\"summary\";s:2105:\"

As announced on the dev blog, WordPress 2.3 Beta 1 is now available. This is the first of several planned betas. Beta 1 has been pretty solid in my testing, but keep in mind that this is indeed a beta that shouldn’t be used on your production blog. If you try it out, make sure you back up your database and prepare yourself to revert to 2.2 if you have problems.

\n

WordPress 2.3 includes built-in tagging support. An Ultimate Tag Warrior importer is bundled with 2.3. Importers for the Simple Tagging Plugin and Jerome’s Keywords are being tested and will most likely be included in the next beta. 2.3 also includes a converter that will selectively convert your categories to tags. The converter has worked well for me, but I received a couple bug reports about it shortly before beta 1 went out. If you try the converter and have any problems, let us know so we can fix it up for beta 2. If you want to use the tagging feature, you will need to change your templates to use the new tagging template functions. There’s not yet much documentation on those, so I’ll discuss them in a future post. If you want to do some digging, you can find the code for the tagging functions here and here. If you already use UTW or one of the other plugins and don’t wish to change, you can keep using them as you have been, although I expect some of them will change to use the built-in tagging as a baseline and add their own stuff over the top. The built-in tagging provides just the basics and leaves the fancy stuff to plugins that can better suit individual tastes.

\n

If you are feeling experimental, try out beta 1 and let us know what you think via comments to this post, the bug tracker, or the testers list.

\";}i:38;a:7:{s:5:\"title\";s:59:\"Weblog Tools Collection: WordPress Plugin Releases for 8/28\";s:4:\"guid\";s:87:\"http://weblogtoolscollection.com/archives/2007/08/28/wordpress-plugin-releases-for-828/\";s:4:\"link\";s:87:\"http://weblogtoolscollection.com/archives/2007/08/28/wordpress-plugin-releases-for-828/\";s:11:\"description\";s:1541:\"

Amazon Links Pro adds relevant and contextual links to Amazon.com products to your site.

\n

wpLinkMentor hooks into the XML-RPC interface of Wordpress and adds three functions for remote management of links (blogroll) - wpLinkMentor.getLinks, wpLinkMentor.deleteLink and wpLinkMentor.updateLink.

\n

Multiple Social Bookmarking lets you bookmark a site into several (more than 50) social bookmarking services. (English download.)

\n

Plugins Viewer makes it possible to post the list of the plugins which you installed on your blog. (English download.)

\n

Slimbox is a 7kb visual clone of the popular Lightbox JS v2.0 by Lokesh Dhakar, written using the ultra compact mootools framework.

\n

Visitor Counter Widget is a simple access counter implemented as a widget.

\n

YouTuber lets you add videos from YouTube and adjust the size of the videos to fit your blog.

\";s:7:\"pubdate\";s:31:\"Tue, 28 Aug 2007 04:45:22 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:11:\"Jim Stitzel\";}s:7:\"summary\";s:1541:\"

Amazon Links Pro adds relevant and contextual links to Amazon.com products to your site.

\n

wpLinkMentor hooks into the XML-RPC interface of Wordpress and adds three functions for remote management of links (blogroll) - wpLinkMentor.getLinks, wpLinkMentor.deleteLink and wpLinkMentor.updateLink.

\n

Multiple Social Bookmarking lets you bookmark a site into several (more than 50) social bookmarking services. (English download.)

\n

Plugins Viewer makes it possible to post the list of the plugins which you installed on your blog. (English download.)

\n

Slimbox is a 7kb visual clone of the popular Lightbox JS v2.0 by Lokesh Dhakar, written using the ultra compact mootools framework.

\n

Visitor Counter Widget is a simple access counter implemented as a widget.

\n

YouTuber lets you add videos from YouTube and adjust the size of the videos to fit your blog.

\";}i:39;a:7:{s:5:\"title\";s:58:\"Weblog Tools Collection: WordPress Theme Releases for 8/28\";s:4:\"guid\";s:86:\"http://weblogtoolscollection.com/archives/2007/08/28/wordpress-theme-releases-for-828/\";s:4:\"link\";s:86:\"http://weblogtoolscollection.com/archives/2007/08/28/wordpress-theme-releases-for-828/\";s:11:\"description\";s:532:\"

Be Right Back is a simple theme that allows you to quickly and easily put your blog into maintenance mode.

\n

Blueberry is a 3-column, dark-colored theme themed after its namesake and built on Sandbox.

\n

Tiffany Blue is a 2-column theme with an upper-class appearance that is also built on Sandbox.

\";s:7:\"pubdate\";s:31:\"Tue, 28 Aug 2007 04:45:22 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:11:\"Jim Stitzel\";}s:7:\"summary\";s:532:\"

Be Right Back is a simple theme that allows you to quickly and easily put your blog into maintenance mode.

\n

Blueberry is a 3-column, dark-colored theme themed after its namesake and built on Sandbox.

\n

Tiffany Blue is a 2-column theme with an upper-class appearance that is also built on Sandbox.

\";}i:40;a:7:{s:5:\"title\";s:30:\"Dev Blog: WordPress 2.3 Beta 1\";s:4:\"guid\";s:51:\"http://wordpress.org/development/2007/08/23-beta-1/\";s:4:\"link\";s:51:\"http://wordpress.org/development/2007/08/23-beta-1/\";s:11:\"description\";s:808:\"

The past 3 months we’ve been working feverishly on the next version of WordPress, 2.3. Today we’re releasing the first beta of 2.3 and we’re hoping the more adventurous and savvy among you will help us test it.

\n

Some of the features of 2.3 include plugin and core update notification, built-in tags support, faster javascript, and SEO-friendly URL redirection.

\n

However all of the new functionality is still very rough, so only test the beta if you are comfortable troubleshooting PHP issues, filing tickets, and backing up your data religiously. If you’re interested you can join the wp-testers mailing list and download the beta here.

\";s:7:\"pubdate\";s:31:\"Tue, 28 Aug 2007 04:44:28 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:808:\"

The past 3 months we’ve been working feverishly on the next version of WordPress, 2.3. Today we’re releasing the first beta of 2.3 and we’re hoping the more adventurous and savvy among you will help us test it.

\n

Some of the features of 2.3 include plugin and core update notification, built-in tags support, faster javascript, and SEO-friendly URL redirection.

\n

However all of the new functionality is still very rough, so only test the beta if you are comfortable troubleshooting PHP issues, filing tickets, and backing up your data religiously. If you’re interested you can join the wp-testers mailing list and download the beta here.

\";}i:41;a:7:{s:5:\"title\";s:19:\"Matt: Grey Followup\";s:4:\"guid\";s:46:\"http://photomatt.net/2007/08/27/grey-followup/\";s:4:\"link\";s:46:\"http://photomatt.net/2007/08/27/grey-followup/\";s:11:\"description\";s:2772:\"

On the bright side, last week’s hatchet job in Techcrunch generated some great blog posts. For whatever reason they don’t show up as links on Techcrunch’s page, but here’s some of the better ones:

\n\n

To summarize some of my responses:

\n\";s:7:\"pubdate\";s:31:\"Mon, 27 Aug 2007 16:44:54 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:2772:\"

On the bright side, last week’s hatchet job in Techcrunch generated some great blog posts. For whatever reason they don’t show up as links on Techcrunch’s page, but here’s some of the better ones:

\n\n

To summarize some of my responses:

\n\";}i:42;a:7:{s:5:\"title\";s:32:\"Matt: Plugin Competition Winners\";s:4:\"guid\";s:59:\"http://photomatt.net/2007/08/27/plugin-competition-winners/\";s:4:\"link\";s:59:\"http://photomatt.net/2007/08/27/plugin-competition-winners/\";s:11:\"description\";s:180:\"

The winners of the Wordpress Plugin Competition have been announced.

\";s:7:\"pubdate\";s:31:\"Mon, 27 Aug 2007 16:11:07 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:180:\"

The winners of the Wordpress Plugin Competition have been announced.

\";}i:43;a:7:{s:5:\"title\";s:67:\"Weblog Tools Collection: Localizing a WordPress Plugin Using poEdit\";s:4:\"guid\";s:96:\"http://weblogtoolscollection.com/archives/2007/08/27/localizing-a-wordpress-plugin-using-poedit/\";s:4:\"link\";s:96:\"http://weblogtoolscollection.com/archives/2007/08/27/localizing-a-wordpress-plugin-using-poedit/\";s:11:\"description\";s:9843:\"

Localizing a WordPress plugin enables your plugin to reach widest possible audience. Fortunately, WordPress makes it rather simple for plugin authors (and theme authors) to ensure their work is available in many languages.

\n

This post will go over the steps that are necessary from a plugin author’s end to make it easy for others to translate a plugin. For those then wishing to translate, I will go over a program called poEdit, which will allow you to translate the plugin for your use and for others.

\n

The Benefits of Localizing a Plugin

\n

The more languages your plugin is in, the more people that can download and understand it.

\n

If a plugin is popular enough, you’ll have people volunteering to translate in order to adhere to a different part of the world. The hard way would be someone going through your code after each release and translating word for word. However, there is an easier and more portable way to translate: the .po file.

\n

With the .po file, anybody can translate your plugin as long as they are familiar with the original language. And if you make any changes to the plugin’s source, a user doesn’t have to dig through your code to re-translate. The translations are preserved in the .po file and all the user has to do is update the .po file in their language.

\n

Preparing a Plugin for Localization

\n

WordPress makes use of GNU gettext for translations. WordPress has two functions that can be called by plugin authors: _e, and __. Every time you output text to the user, you should use one of the two functions.

\n\n

According to the WordPress Codex, the __ function should be used if text is going to be used in a calculation.

\n

Loading the Localization File

\n

After ensuring the text outputted to the user is ready for localization, you must also setup your plugin for loading in the appropriate .mo file. The .mo file is a compiled .po file, which poEdit automatically generates upon a save.

\n

The code inside your plugin would look something like this:

\n

\n

load_plugin_textdomain(\'your-plugin-domain\', \"/wp-content/plugins/your-plugin-directory/\");
\n

\n
\n\n

Using poEdit to Translate

\n

There’s already a good step-by-step tutorial on how to use poEdit to translate a plugin or theme, but I’m going to use a real-world plugin to show you the steps.

\n

Step 1: Download poEdit

\n

Head over the poEdit project page and download yourself a copy. The install is painless as well.

\n

Step 2: Find a Plugin to Translate

\n

Find your own (or another) plugin to translate. For this example, I’ll be using a plugin I wrote called Ajax Edit Comments.

\n

Step 3: Open up poEdit and go to File -> New catalog…

\n

After the ‘Settings’ dialog comes up, enter your project’s name. In my case, my project is named WPAjaxEditComments. I also went ahead and gave it a UTF-8 charset.

\n

\"poEdit
You’ll be presented with a Settings dialog after selecting File -> New catalog…

\n

Step 4: Enter Your Plugin Path

\n

While still having the ‘Settings’ dialog open, go to the ‘Paths’ tab and click the icon for new item. Assuming that your plugin resides in its own sub-directory and that you will save the .po in this sub-directory, enter “.” (this tells poEdit to scan that directory and all sub-directories for your plugin).

\n

\"poEdit

\n

Step 5: Set up the Appropriate Keywords

\n

Since WordPress uses the _e and __ functions for localization, you need to let poEdit know that is what it should look for. Click on the ‘Keywords’ tab and input both _e and __ as keywords. To enter a keyword, click on the ‘New Item’ icon.

\n

\"poEdit

\n

Step 6: Click Okay and Let the Translating Begin

\n

Click the “Okay” button and save the .po within your plugin’s directory. What you name the file right now is not important, but it will matter when it comes to translating.

\n

After you have saved the .po file, a dialog will show showing all of the matches it has found.

\n

\"poEdit

\n

If you do not plan on translating the plugin, you can go ahead and save the .po file and distribute along with your plugin to enable other translators.

\n

Step 7: Translate the Plugin

\n

Once all the matches are pulled in, it’s time to translate the plugin. Simply find the text you want to translate, and add in your own language.

\n

\"poEdit
From this screen, you can translate the plugin

\n

Step 8: Save the Catalog

\n

Remember the $domain that was mentioned earlier in this post? What if, for example, I want to generate a Spanish translation file? I’ll want to save a file with the $domain as a prefix, and the locale as a suffix. In this case, my domain is WPAjaxEditComments and my locale is es_ES. I would save my file as: WPAjaxEditComments-es_ES.

\n

By saving the new file, I would automatically be generating a .po file that others can use, and a .mo file that can be read in through WordPress to localize the plugin.

\n

Now if users have defined the appropriate WPLANG in their wp-config.php, their plugin’s options and output text should be in their local language.

\n

\"German
A German translation of Ajax Edit Comments (Thank you David May).

\n

Conclusion

\n

Localizing a WordPress plugin is a great way to reach out to a foreign audience. Localizing involves many people, including the plugin author to take the initial steps to ensure that the plugin can indeed be localized. Translators are required too, and their efforts to localize WordPress and WordPress plugins are tremendous.

\n

References:

\n\n

Related Reading:

\n\";s:7:\"pubdate\";s:31:\"Mon, 27 Aug 2007 09:45:17 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:14:\"Ronald Huereca\";}s:7:\"summary\";s:9843:\"

Localizing a WordPress plugin enables your plugin to reach widest possible audience. Fortunately, WordPress makes it rather simple for plugin authors (and theme authors) to ensure their work is available in many languages.

\n

This post will go over the steps that are necessary from a plugin author’s end to make it easy for others to translate a plugin. For those then wishing to translate, I will go over a program called poEdit, which will allow you to translate the plugin for your use and for others.

\n

The Benefits of Localizing a Plugin

\n

The more languages your plugin is in, the more people that can download and understand it.

\n

If a plugin is popular enough, you’ll have people volunteering to translate in order to adhere to a different part of the world. The hard way would be someone going through your code after each release and translating word for word. However, there is an easier and more portable way to translate: the .po file.

\n

With the .po file, anybody can translate your plugin as long as they are familiar with the original language. And if you make any changes to the plugin’s source, a user doesn’t have to dig through your code to re-translate. The translations are preserved in the .po file and all the user has to do is update the .po file in their language.

\n

Preparing a Plugin for Localization

\n

WordPress makes use of GNU gettext for translations. WordPress has two functions that can be called by plugin authors: _e, and __. Every time you output text to the user, you should use one of the two functions.

\n\n

According to the WordPress Codex, the __ function should be used if text is going to be used in a calculation.

\n

Loading the Localization File

\n

After ensuring the text outputted to the user is ready for localization, you must also setup your plugin for loading in the appropriate .mo file. The .mo file is a compiled .po file, which poEdit automatically generates upon a save.

\n

The code inside your plugin would look something like this:

\n

\n

load_plugin_textdomain(\'your-plugin-domain\', \"/wp-content/plugins/your-plugin-directory/\");
\n

\n
\n\n

Using poEdit to Translate

\n

There’s already a good step-by-step tutorial on how to use poEdit to translate a plugin or theme, but I’m going to use a real-world plugin to show you the steps.

\n

Step 1: Download poEdit

\n

Head over the poEdit project page and download yourself a copy. The install is painless as well.

\n

Step 2: Find a Plugin to Translate

\n

Find your own (or another) plugin to translate. For this example, I’ll be using a plugin I wrote called Ajax Edit Comments.

\n

Step 3: Open up poEdit and go to File -> New catalog…

\n

After the ‘Settings’ dialog comes up, enter your project’s name. In my case, my project is named WPAjaxEditComments. I also went ahead and gave it a UTF-8 charset.

\n

\"poEdit
You’ll be presented with a Settings dialog after selecting File -> New catalog…

\n

Step 4: Enter Your Plugin Path

\n

While still having the ‘Settings’ dialog open, go to the ‘Paths’ tab and click the icon for new item. Assuming that your plugin resides in its own sub-directory and that you will save the .po in this sub-directory, enter “.” (this tells poEdit to scan that directory and all sub-directories for your plugin).

\n

\"poEdit

\n

Step 5: Set up the Appropriate Keywords

\n

Since WordPress uses the _e and __ functions for localization, you need to let poEdit know that is what it should look for. Click on the ‘Keywords’ tab and input both _e and __ as keywords. To enter a keyword, click on the ‘New Item’ icon.

\n

\"poEdit

\n

Step 6: Click Okay and Let the Translating Begin

\n

Click the “Okay” button and save the .po within your plugin’s directory. What you name the file right now is not important, but it will matter when it comes to translating.

\n

After you have saved the .po file, a dialog will show showing all of the matches it has found.

\n

\"poEdit

\n

If you do not plan on translating the plugin, you can go ahead and save the .po file and distribute along with your plugin to enable other translators.

\n

Step 7: Translate the Plugin

\n

Once all the matches are pulled in, it’s time to translate the plugin. Simply find the text you want to translate, and add in your own language.

\n

\"poEdit
From this screen, you can translate the plugin

\n

Step 8: Save the Catalog

\n

Remember the $domain that was mentioned earlier in this post? What if, for example, I want to generate a Spanish translation file? I’ll want to save a file with the $domain as a prefix, and the locale as a suffix. In this case, my domain is WPAjaxEditComments and my locale is es_ES. I would save my file as: WPAjaxEditComments-es_ES.

\n

By saving the new file, I would automatically be generating a .po file that others can use, and a .mo file that can be read in through WordPress to localize the plugin.

\n

Now if users have defined the appropriate WPLANG in their wp-config.php, their plugin’s options and output text should be in their local language.

\n

\"German
A German translation of Ajax Edit Comments (Thank you David May).

\n

Conclusion

\n

Localizing a WordPress plugin is a great way to reach out to a foreign audience. Localizing involves many people, including the plugin author to take the initial steps to ensure that the plugin can indeed be localized. Translators are required too, and their efforts to localize WordPress and WordPress plugins are tremendous.

\n

References:

\n\n

Related Reading:

\n\";}i:44;a:7:{s:5:\"title\";s:43:\"WP Bits: Tip #5 : Taxonomy in WordPress 2.3\";s:4:\"guid\";s:70:\"http://wpbits.wordpress.com/2007/08/27/tip-5-taxonomy-in-wordpress-23/\";s:4:\"link\";s:70:\"http://wpbits.wordpress.com/2007/08/27/tip-5-taxonomy-in-wordpress-23/\";s:11:\"description\";s:759:\"

The upcoming release of WordPress 2.3 introduces a new way of tagging and categorizing posts and links.   It replaces the old way of categories and should provide enough flexibility to replace a whole bunch of plugins.  Or, at least, make those plugins much simpler.

\n

This new feature required a few changes in the WordPress database scheme. Gladly, Ryan Boren has posted the description of changes in the database structure.

\n
\";s:7:\"pubdate\";s:31:\"Mon, 27 Aug 2007 07:33:42 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:17:\"Leonid Mamchenkov\";}s:7:\"summary\";s:759:\"

The upcoming release of WordPress 2.3 introduces a new way of tagging and categorizing posts and links.   It replaces the old way of categories and should provide enough flexibility to replace a whole bunch of plugins.  Or, at least, make those plugins much simpler.

\n

This new feature required a few changes in the WordPress database scheme. Gladly, Ryan Boren has posted the description of changes in the database structure.

\n
\";}i:45;a:7:{s:5:\"title\";s:41:\"Ryan Boren: WordPress 2.3 Taxonomy Schema\";s:4:\"guid\";s:65:\"http://boren.nu/archives/2007/08/26/wordpress-23-taxonomy-schema/\";s:4:\"link\";s:65:\"http://boren.nu/archives/2007/08/26/wordpress-23-taxonomy-schema/\";s:11:\"description\";s:3742:\"

WordPress 2.3 introduces our new taxonomy schema. This new schema replaces the categories, post2cat, and link2cat tables with three new tables that are more flexible. The first table is the terms table. It holds the basic information about a term.

\n
 term_id bigint(20) NOT NULL auto_increment,\n name varchar(55) NOT NULL default \'\',\n slug varchar(200) NOT NULL default \'\',\n term_group bigint(10) NOT NULL default 0,\n PRIMARY KEY  (term_id),\n UNIQUE KEY slug (slug)
\n

“name” is simply the name of the term. “slug” is the name reduced to a URL friendly form. “term_group” is a means of grouping together similar terms. “term_id” is a unique ID for the term.

\n

A term is not a category or tag on its own. It must be given context via the term_taxonomy table.

\n
 term_taxonomy_id bigint(20) NOT NULL auto_increment,\n term_id bigint(20) NOT NULL default 0,\n taxonomy varchar(32) NOT NULL default \'\',\n description longtext NOT NULL,\n parent bigint(20) NOT NULL default 0,\n count bigint(20) NOT NULL default 0,\n PRIMARY KEY  (term_taxonomy_id),\n UNIQUE KEY term_id_taxonomy (term_id,taxonomy)
\n

The term_taxonomy table places a term within a taxonomy. This is what makes a term a category or tag (or both). “term_id” is the ID of a term in the terms table. “taxonomy” designates the taxonomy in which the term resides. The default taxonomies are “category”, “link_category”, and “post_tag”. “term_taxonomy_id” is a unique ID for the term+taxonomy pair. The rest of the fields provide information about the term in the context of the taxonomy. The “parent” field keeps track of hierarchical relationships between terms in the taxonomy. “description” provides a taxonomy specific description of the term. “count” tracks how many objects are associated with the term+taxonomy pair. Given a taxonomy of “category”, “count” tracks how many posts are in the category.

\n

The final table, term_relationships, relates objects such as posts or links to a term_taxonomy_id from the term_taxonomy table.

\n
 object_id bigint(20) NOT NULL default 0,\n term_taxonomy_id bigint(20) NOT NULL default 0,\n PRIMARY KEY  (object_id,term_taxonomy_id),\n KEY term_taxonomy_id (term_taxonomy_id)
\n

“object_id” is the ID of a post or link. “term_taxonomy_id” is an ID from the term_taxonomy table designating a particular term+taxonomy pair.

\n

The flexibility of the schema and API means plugins can add new taxonomies and object types quite easily. One of the Summer of Code projects does just that. The flexibility also allows us to easily retrieve all objects associated with a given term regardless of taxonomy, retrieve all terms from all taxonomies for a given object, and convert all categories to tags with one query.

\n

The taxonomy schema is hidden behind a fairly comprehensive taxonomy API. The category API remains as a backward compatibility layer on top of the taxonomy API. Plugins that use the category API should not require any changes when upgrading to 2.3. Plugins that perform direct SQL queries on the categories, link2cat, or post2cat tables will break, unfortunately.

\n

And that’s the new schema. It will break a few plugins in the short term, but in the long term it will allow us to add any new taxonomies that come along without needing to change the schema again.

\";s:7:\"pubdate\";s:31:\"Sun, 26 Aug 2007 18:27:28 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ryan\";}s:7:\"summary\";s:3742:\"

WordPress 2.3 introduces our new taxonomy schema. This new schema replaces the categories, post2cat, and link2cat tables with three new tables that are more flexible. The first table is the terms table. It holds the basic information about a term.

\n
 term_id bigint(20) NOT NULL auto_increment,\n name varchar(55) NOT NULL default \'\',\n slug varchar(200) NOT NULL default \'\',\n term_group bigint(10) NOT NULL default 0,\n PRIMARY KEY  (term_id),\n UNIQUE KEY slug (slug)
\n

“name” is simply the name of the term. “slug” is the name reduced to a URL friendly form. “term_group” is a means of grouping together similar terms. “term_id” is a unique ID for the term.

\n

A term is not a category or tag on its own. It must be given context via the term_taxonomy table.

\n
 term_taxonomy_id bigint(20) NOT NULL auto_increment,\n term_id bigint(20) NOT NULL default 0,\n taxonomy varchar(32) NOT NULL default \'\',\n description longtext NOT NULL,\n parent bigint(20) NOT NULL default 0,\n count bigint(20) NOT NULL default 0,\n PRIMARY KEY  (term_taxonomy_id),\n UNIQUE KEY term_id_taxonomy (term_id,taxonomy)
\n

The term_taxonomy table places a term within a taxonomy. This is what makes a term a category or tag (or both). “term_id” is the ID of a term in the terms table. “taxonomy” designates the taxonomy in which the term resides. The default taxonomies are “category”, “link_category”, and “post_tag”. “term_taxonomy_id” is a unique ID for the term+taxonomy pair. The rest of the fields provide information about the term in the context of the taxonomy. The “parent” field keeps track of hierarchical relationships between terms in the taxonomy. “description” provides a taxonomy specific description of the term. “count” tracks how many objects are associated with the term+taxonomy pair. Given a taxonomy of “category”, “count” tracks how many posts are in the category.

\n

The final table, term_relationships, relates objects such as posts or links to a term_taxonomy_id from the term_taxonomy table.

\n
 object_id bigint(20) NOT NULL default 0,\n term_taxonomy_id bigint(20) NOT NULL default 0,\n PRIMARY KEY  (object_id,term_taxonomy_id),\n KEY term_taxonomy_id (term_taxonomy_id)
\n

“object_id” is the ID of a post or link. “term_taxonomy_id” is an ID from the term_taxonomy table designating a particular term+taxonomy pair.

\n

The flexibility of the schema and API means plugins can add new taxonomies and object types quite easily. One of the Summer of Code projects does just that. The flexibility also allows us to easily retrieve all objects associated with a given term regardless of taxonomy, retrieve all terms from all taxonomies for a given object, and convert all categories to tags with one query.

\n

The taxonomy schema is hidden behind a fairly comprehensive taxonomy API. The category API remains as a backward compatibility layer on top of the taxonomy API. Plugins that use the category API should not require any changes when upgrading to 2.3. Plugins that perform direct SQL queries on the categories, link2cat, or post2cat tables will break, unfortunately.

\n

And that’s the new schema. It will break a few plugins in the short term, but in the long term it will allow us to add any new taxonomies that come along without needing to change the schema again.

\";}i:46;a:7:{s:5:\"title\";s:63:\"Weblog Tools Collection: Winners - Wordpress Plugin Competition\";s:4:\"guid\";s:90:\"http://weblogtoolscollection.com/archives/2007/08/26/winners-wordpress-plugin-competition/\";s:4:\"link\";s:90:\"http://weblogtoolscollection.com/archives/2007/08/26/winners-wordpress-plugin-competition/\";s:11:\"description\";s:2903:\"

The following are the results for the WordPress Plugin Competition, in reverse order.

\n

Consolation Prize

\n

The consolation prize winner is Ozh for Who Sees Ads. WhoSeesAds is a wonderfully useful plugin that lets WordPress users determine whe sees the ads on your blog. Ozh wins hosting from Pajama Mommy and a free 48″ wallhog from Wallhogs.com

\n

\n

Third Prize

\n

The third prize winner is Keith Dsouza for WordPress Automatic Upgrade which lets you automatically upgrade WordPress from your admin interface with this Plugin. Keith wins a Baby Hosting Plan for 1 year (Valued at $134.40) from Hostgator, a copy of Translator Pro 5.0 and $200 in cash.

\n

\n

Second Prize

\n

The second prize winner is Barry for MyDashboard. MyDashboard lets you customize your WordPress Dashboard with this plugin and lots of cool gadgets. This plugin also makes the Dashboard skinnable. Barry wins a Swamp Hosting Plan for 1 year (Valued at $194.40) from Hostgator, an autographed copy of Lorelle’s new book, Blogging Tips and $300 in cash

\n

\n

Grand Prize Winner

\n

The Grand Prize Winner of the Wordpress Plugin Competition is Anirudh Sanjeev for his OneClick Plugin. OneClick is a Wordpress Plugin and Firefox Extension combo that allows you to install WordPress plugins and themes from your browser with one click. Anirudh wins a Basic Dedicated Server for 6 months (Valued at $1,059) from Hostgator, $600 in cash and an 8 GB iPod Nano (or cash equivalent) from Imthiaz

\n

Congratulations to all the winners! All the entries in the competition were all of very high quality and it was quite difficult to choose the top few. Also, judging from the response of the community and the accolades that went around, the competition was a success for the WordPress community. A heartfelt thank you goes from me to all the participants, the Sponsors of the competition, the users of plugins, those who helped rate them on the Competition blog as well as the judges who put their time and effort into sifting through thousands of lines of code. To facilitate quicker distribution of the prizes, I would appreciate it if the winners would send me a quick email with their Paypal information.

\";s:7:\"pubdate\";s:31:\"Sun, 26 Aug 2007 17:00:15 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Mark Ghosh\";}s:7:\"summary\";s:2903:\"

The following are the results for the WordPress Plugin Competition, in reverse order.

\n

Consolation Prize

\n

The consolation prize winner is Ozh for Who Sees Ads. WhoSeesAds is a wonderfully useful plugin that lets WordPress users determine whe sees the ads on your blog. Ozh wins hosting from Pajama Mommy and a free 48″ wallhog from Wallhogs.com

\n

\n

Third Prize

\n

The third prize winner is Keith Dsouza for WordPress Automatic Upgrade which lets you automatically upgrade WordPress from your admin interface with this Plugin. Keith wins a Baby Hosting Plan for 1 year (Valued at $134.40) from Hostgator, a copy of Translator Pro 5.0 and $200 in cash.

\n

\n

Second Prize

\n

The second prize winner is Barry for MyDashboard. MyDashboard lets you customize your WordPress Dashboard with this plugin and lots of cool gadgets. This plugin also makes the Dashboard skinnable. Barry wins a Swamp Hosting Plan for 1 year (Valued at $194.40) from Hostgator, an autographed copy of Lorelle’s new book, Blogging Tips and $300 in cash

\n

\n

Grand Prize Winner

\n

The Grand Prize Winner of the Wordpress Plugin Competition is Anirudh Sanjeev for his OneClick Plugin. OneClick is a Wordpress Plugin and Firefox Extension combo that allows you to install WordPress plugins and themes from your browser with one click. Anirudh wins a Basic Dedicated Server for 6 months (Valued at $1,059) from Hostgator, $600 in cash and an 8 GB iPod Nano (or cash equivalent) from Imthiaz

\n

Congratulations to all the winners! All the entries in the competition were all of very high quality and it was quite difficult to choose the top few. Also, judging from the response of the community and the accolades that went around, the competition was a success for the WordPress community. A heartfelt thank you goes from me to all the participants, the Sponsors of the competition, the users of plugins, those who helped rate them on the Competition blog as well as the judges who put their time and effort into sifting through thousands of lines of code. To facilitate quicker distribution of the prizes, I would appreciate it if the winners would send me a quick email with their Paypal information.

\";}i:47;a:7:{s:5:\"title\";s:27:\"Matt: Head of TSA Interview\";s:4:\"guid\";s:54:\"http://photomatt.net/2007/08/25/head-of-tsa-interview/\";s:4:\"link\";s:54:\"http://photomatt.net/2007/08/25/head-of-tsa-interview/\";s:11:\"description\";s:271:\"

After my airport security complaint the other day I found this interview of the head of the TSA by Bruce Schnier really, really interesting.

\";s:7:\"pubdate\";s:31:\"Sun, 26 Aug 2007 03:37:32 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:271:\"

After my airport security complaint the other day I found this interview of the head of the TSA by Bruce Schnier really, really interesting.

\";}i:48;a:7:{s:5:\"title\";s:19:\"Matt: Turkey Update\";s:4:\"guid\";s:46:\"http://photomatt.net/2007/08/25/turkey-update/\";s:4:\"link\";s:46:\"http://photomatt.net/2007/08/25/turkey-update/\";s:11:\"description\";s:3790:\"

The folks responsible for blocking WordPress.com in Turkey have issued a press release, here’s some snippets.

\n

As it is known by public, the entry of the publications to Turkey of the blog service named “woldpress.com” that gives the opportunity of opening free site to internet users is interrupted with the judgement. This judgement is applied on 17.8.2007 and thus the entery of worldpress.com service and the publications of all sub-sites which takes service from this service to Turkey is interrupted.

\n

aI wish they had blocked worldpress.com instead. They seem proud that they blocked all the sites instead of just the ones that they consider illegal under Turkish law.

\n

The reason of this suspention, is that the limitlessly enable to illegal publications of the mentioned blog service, not taking to notice about the suspention of the applications and ignoring the judgements that are given by the Turkish courts related to the suspention of known sub-sites. The free and uncontrolled opportunities provided by the mentioned service are directed baleful people to this service and in a short time wordpress.com is returned to the voice and publication center of separatist-disastrous ideologies, private hostilities, illegal targets.

\n

As far as I know, we never received any notice from Turkish courts about anything, only barely coherent threats and bully-attempts written much like the above.

\n

Thus before ABOUT 17 TİMES we have appealed to the mentioned site administration for the suspention of the unlawful publications , but the site administration did not take any caution about these publications.(one of our applications is published in their sites) Thereon about our applications RELATED WITH THE SUB SITES THAT ABUSE OUR CLIENT’S PERSONAL RIGHTS the Turkish courts have given numerous judgements for the closing of the illegal sub-sites which are broadcasting under Wordpress. These judgements are delivered to the center of the mentioned firm in USA and to the agency in Turkey, this time the suspention of the illegal publications according to the judgements of the Turkish courts is asked. BUT, IN SPITE OF THE ALL WRITTEN AND ORAL APPLICATIONS, THE MENTIONED FIRM AND ITS AGENCIES ARE NOT AFFILIATE OUR REQUIREMENTS AND THE JUDGEMENTS OF THE TURKISH COURTS AND THEY INSISTED ON APPLYING.

\n

Just to clarify when they said they contacted us 17 times, that means that they would blast the same email to multiple address and when they didn’t get the reply they wanted they sent the same message over and over again.

\n

In addition to some blogs they complained about, their main request was that we block the name of their client being used by any blog hosted by our site, much like you can’t write “democracy” on blogs hosted by MSN Spaces in China. I’m going to skip some bits to the threat at the end:

\n

There is a lesson which all blog services and internet service providers should take from this judgement. Blog services, especially the ones that give free service, should be careful about the sites that are illegally active through their firms. These services should not remain insensitive to the complints that they receive and especially to the judgements. It is certain that the services which behave opppositely will meet with the same enforcement that Wordpress met.

\n

So if you don’t disallow certain words being used on your blogs, you’ll be punitively punished through our state-controlled ISP. Today those words are “Adnan Oktar.” Who knows what they’ll be tomorrow.

\";s:7:\"pubdate\";s:31:\"Sat, 25 Aug 2007 18:42:43 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:3790:\"

The folks responsible for blocking WordPress.com in Turkey have issued a press release, here’s some snippets.

\n

As it is known by public, the entry of the publications to Turkey of the blog service named “woldpress.com” that gives the opportunity of opening free site to internet users is interrupted with the judgement. This judgement is applied on 17.8.2007 and thus the entery of worldpress.com service and the publications of all sub-sites which takes service from this service to Turkey is interrupted.

\n

aI wish they had blocked worldpress.com instead. They seem proud that they blocked all the sites instead of just the ones that they consider illegal under Turkish law.

\n

The reason of this suspention, is that the limitlessly enable to illegal publications of the mentioned blog service, not taking to notice about the suspention of the applications and ignoring the judgements that are given by the Turkish courts related to the suspention of known sub-sites. The free and uncontrolled opportunities provided by the mentioned service are directed baleful people to this service and in a short time wordpress.com is returned to the voice and publication center of separatist-disastrous ideologies, private hostilities, illegal targets.

\n

As far as I know, we never received any notice from Turkish courts about anything, only barely coherent threats and bully-attempts written much like the above.

\n

Thus before ABOUT 17 TİMES we have appealed to the mentioned site administration for the suspention of the unlawful publications , but the site administration did not take any caution about these publications.(one of our applications is published in their sites) Thereon about our applications RELATED WITH THE SUB SITES THAT ABUSE OUR CLIENT’S PERSONAL RIGHTS the Turkish courts have given numerous judgements for the closing of the illegal sub-sites which are broadcasting under Wordpress. These judgements are delivered to the center of the mentioned firm in USA and to the agency in Turkey, this time the suspention of the illegal publications according to the judgements of the Turkish courts is asked. BUT, IN SPITE OF THE ALL WRITTEN AND ORAL APPLICATIONS, THE MENTIONED FIRM AND ITS AGENCIES ARE NOT AFFILIATE OUR REQUIREMENTS AND THE JUDGEMENTS OF THE TURKISH COURTS AND THEY INSISTED ON APPLYING.

\n

Just to clarify when they said they contacted us 17 times, that means that they would blast the same email to multiple address and when they didn’t get the reply they wanted they sent the same message over and over again.

\n

In addition to some blogs they complained about, their main request was that we block the name of their client being used by any blog hosted by our site, much like you can’t write “democracy” on blogs hosted by MSN Spaces in China. I’m going to skip some bits to the threat at the end:

\n

There is a lesson which all blog services and internet service providers should take from this judgement. Blog services, especially the ones that give free service, should be careful about the sites that are illegally active through their firms. These services should not remain insensitive to the complints that they receive and especially to the judgements. It is certain that the services which behave opppositely will meet with the same enforcement that Wordpress met.

\n

So if you don’t disallow certain words being used on your blogs, you’ll be punitively punished through our state-controlled ISP. Today those words are “Adnan Oktar.” Who knows what they’ll be tomorrow.

\";}i:49;a:7:{s:5:\"title\";s:59:\"Weblog Tools Collection: WordPress Plugin Releases for 8/25\";s:4:\"guid\";s:87:\"http://weblogtoolscollection.com/archives/2007/08/25/wordpress-plugin-releases-for-825/\";s:4:\"link\";s:87:\"http://weblogtoolscollection.com/archives/2007/08/25/wordpress-plugin-releases-for-825/\";s:11:\"description\";s:859:\"

AuthImage automatically distinguishes between real comments and spam through random codes in an image associated with each comment.

\n

IMDB Movie Information Tag frabs information from IMDB about a movie and adds it to your blog.

\n

Move Comments allows comments to be moved from one page or post to another.

\n

Slickr Gallery uses AJAX discretely to load lots of Flickr thumbnails on demand and uses lightbox javascript to present the images.

\n

Trustmeter for Google shows how your host is indexed in Google and if it trusted or not.

\";s:7:\"pubdate\";s:31:\"Sat, 25 Aug 2007 04:48:31 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:11:\"Jim Stitzel\";}s:7:\"summary\";s:859:\"

AuthImage automatically distinguishes between real comments and spam through random codes in an image associated with each comment.

\n

IMDB Movie Information Tag frabs information from IMDB about a movie and adds it to your blog.

\n

Move Comments allows comments to be moved from one page or post to another.

\n

Slickr Gallery uses AJAX discretely to load lots of Flickr thumbnails on demand and uses lightbox javascript to present the images.

\n

Trustmeter for Google shows how your host is indexed in Google and if it trusted or not.

\";}}s:7:\"channel\";a:5:{s:5:\"title\";s:16:\"WordPress Planet\";s:4:\"link\";s:28:\"http://planet.wordpress.org/\";s:8:\"language\";s:2:\"en\";s:11:\"description\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"tagline\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";}s:9:\"textinput\";a:0:{}s:5:\"image\";a:0:{}s:9:\"feed_type\";s:3:\"RSS\";s:12:\"feed_version\";s:3:\"2.0\";s:5:\"stack\";a:0:{}s:9:\"inchannel\";b:0;s:6:\"initem\";b:0;s:9:\"incontent\";b:0;s:11:\"intextinput\";b:0;s:7:\"inimage\";b:0;s:13:\"current_field\";s:0:\"\";s:17:\"current_namespace\";b:0;s:19:\"_CONTENT_CONSTRUCTS\";a:6:{i:0;s:7:\"content\";i:1;s:7:\"summary\";i:2;s:4:\"info\";i:3;s:5:\"title\";i:4;s:7:\"tagline\";i:5;s:9:\"copyright\";}s:4:\"etag\";s:25:\"\"19863-46e0de79-568c2a\"\r\n\";s:13:\"last_modified\";s:31:\"Fri, 07 Sep 2007 05:15:37 GMT\r\n\";}',20,8,'',1,'no'),(70,0,'rss_867bd5c64f85878d03a060509cd2f92c_ts','Y',1,'1189142487',20,8,'',1,'no'),(72,0,'secret','Y',1,'aad490d1911e330fa70798817114f22f',20,8,'',1,'yes'),(85,0,'rss_238d0059b7326e25eb2ada73b08980a1_ts','Y',1,'1189142487',20,8,'',1,'no'),(83,0,'page_uris','Y',1,'a:17:{s:15:\"science/climate\";i:82;s:39:\"science/computational-molecular-biology\";i:81;s:28:\"science/parallel-programming\";i:79;s:7:\"science\";i:77;s:53:\"iana-identifier-application-forms-integration-with-rt\";i:49;s:14:\"drupal-patches\";i:38;s:4:\"zyxt\";i:18;s:2:\"mk\";i:16;s:4:\"bind\";i:13;s:8:\"clusters\";i:12;s:18:\"ietf/hosting-pages\";i:10;s:14:\"ietf/nsp-pages\";i:9;s:14:\"ietf/isp-pages\";i:8;s:4:\"ietf\";i:7;s:5:\"linux\";i:5;s:11:\"freebsd-top\";i:4;s:5:\"about\";i:2;}',20,8,'',1,'yes'),(84,0,'rss_238d0059b7326e25eb2ada73b08980a1','Y',1,'O:9:\"MagpieRSS\":17:{s:6:\"parser\";i:0;s:12:\"current_item\";a:0:{}s:5:\"items\";a:0:{}s:7:\"channel\";a:11:{s:5:\"title\";s:51:\"Blog reactions to http://029.colo.coop/\";s:4:\"link\";s:70:\"http://technorati.com/search/http%3A%2F%2F029.colo.coop%2F\";s:11:\"description\";s:70:\"Blog posts linking to http://029.colo.coop/ on Technorati.\";s:7:\"pubdate\";s:31:\"Thu, 06 Sep 2007 22:28:35 -0700\";s:9:\"generator\";s:15:\"Technorati v1.0\";s:9:\"webmaster\";s:43:\"support@technorati.com (Technorati Support)\";s:4:\"docs\";s:37:\"http://blogs.law.harvard.edu/tech/rss\";s:3:\"ttl\";s:2:\"60\";s:4:\"tapi\";a:3:{s:6:\"result\";s:5:\"\n \";s:10:\"result_url\";s:33:\"http://029.colo.coop/\";s:19:\"result_inboundlinks\";s:1:\"0\";}s:6:\"result\";s:10:\"\n \n \";s:7:\"tagline\";s:70:\"Blog posts linking to http://029.colo.coop/ on Technorati.\";}s:9:\"textinput\";a:0:{}s:5:\"image\";a:3:{s:3:\"url\";s:50:\"http://static.technorati.com/pix/logos/logo_sm.gif\";s:5:\"title\";s:15:\"Technorati logo\";s:4:\"link\";s:70:\"http://technorati.com/search/http%3A%2F%2F029.colo.coop%2F\";}s:9:\"feed_type\";s:3:\"RSS\";s:12:\"feed_version\";s:3:\"2.0\";s:5:\"stack\";a:0:{}s:9:\"inchannel\";b:0;s:6:\"initem\";b:0;s:9:\"incontent\";b:0;s:11:\"intextinput\";b:0;s:7:\"inimage\";b:0;s:13:\"current_field\";s:0:\"\";s:17:\"current_namespace\";b:0;s:19:\"_CONTENT_CONSTRUCTS\";a:6:{i:0;s:7:\"content\";i:1;s:7:\"summary\";i:2;s:4:\"info\";i:3;s:5:\"title\";i:4;s:7:\"tagline\";i:5;s:9:\"copyright\";}}',20,8,'',1,'no'),(74,0,'blog_public','Y',1,'1',20,8,'',1,'yes'),(75,0,'default_link_category','Y',1,'20',20,8,'',1,'yes'),(76,0,'show_on_front','Y',1,'posts',20,8,'',1,'yes'),(78,0,'cron','Y',1,'a:1:{s:7:\"version\";i:2;}',20,8,'',1,'yes'),(79,0,'doing_cron','Y',1,'0',20,8,'',1,'yes'),(86,0,'update_core','Y',1,'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1212559238;s:15:\"version_checked\";s:5:\"2.5.1\";s:8:\"response\";s:6:\"latest\";s:3:\"url\";s:30:\"http://wordpress.org/download/\";s:7:\"current\";s:5:\"2.5.1\";}',20,8,'',1,'yes'); /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_post2cat` -- DROP TABLE IF EXISTS `wp_post2cat`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_post2cat` ( `rel_id` bigint(20) NOT NULL AUTO_INCREMENT, `post_id` bigint(20) NOT NULL DEFAULT '0', `category_id` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`rel_id`), KEY `post_id` (`post_id`,`category_id`) ) ENGINE=MyISAM AUTO_INCREMENT=105 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_post2cat` -- LOCK TABLES `wp_post2cat` WRITE; /*!40000 ALTER TABLE `wp_post2cat` DISABLE KEYS */; INSERT INTO `wp_post2cat` VALUES (6,6,2),(2,3,1),(3,4,1),(4,2,1),(5,5,1),(7,6,1),(8,7,1),(9,8,1),(10,9,1),(11,10,1),(12,11,1),(13,12,1),(14,13,1),(18,14,9),(19,16,1),(17,15,9),(20,17,1),(21,18,1),(22,19,2),(23,19,1),(24,20,1),(25,20,9),(26,21,1),(27,21,2),(28,22,2),(29,22,1),(30,23,1),(31,23,2),(32,24,2),(33,24,1),(34,25,1),(35,25,2),(36,26,1),(37,26,2),(38,27,1),(39,28,1),(41,30,1),(42,30,10),(43,31,2),(44,31,1),(45,28,2),(46,32,1),(47,33,1),(48,27,2),(49,34,1),(50,35,1),(51,35,2),(52,36,1),(58,41,1),(59,42,1),(55,38,1),(60,43,1),(61,44,1),(62,45,1),(63,46,1),(64,47,1),(65,48,1),(66,49,1),(67,50,1),(68,51,1),(69,52,1),(70,53,1),(71,54,1),(72,55,1),(73,56,1),(74,57,1),(75,58,1),(76,59,1),(77,60,1),(78,61,1),(79,62,1),(80,63,1),(81,64,1),(103,85,1),(95,77,1),(84,67,1),(85,68,1),(86,69,1),(87,70,1),(90,73,1),(91,74,7),(92,74,1),(93,75,1),(94,76,1),(97,79,1),(104,86,1),(99,81,1),(100,82,1),(101,83,1),(102,84,1); /*!40000 ALTER TABLE `wp_post2cat` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_postmeta` -- DROP TABLE IF EXISTS `wp_postmeta`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_postmeta` ( `meta_id` bigint(20) NOT NULL AUTO_INCREMENT, `post_id` bigint(20) NOT NULL DEFAULT '0', `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`) ) ENGINE=MyISAM AUTO_INCREMENT=189 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_postmeta` -- LOCK TABLES `wp_postmeta` WRITE; /*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */; INSERT INTO `wp_postmeta` VALUES (3,4,'_wp_page_template','default'),(4,2,'_wp_page_template','default'),(5,5,'_wp_page_template','default'),(18,7,'_wp_page_template','default'),(19,8,'_wp_page_template','default'),(20,9,'_wp_page_template','default'),(21,10,'_wp_page_template','default'),(29,13,'_wp_page_template','default'),(28,12,'_wp_page_template','default'),(49,18,'_wp_page_template','default'),(40,16,'_wp_page_template','default'),(118,38,'_wp_page_template','default'),(154,49,'_wp_page_template','default'),(161,67,'_wp_attached_file','/space0s2/www/colo.coop/029/wp/wp-content/uploads/2006/12/zipscribblemap-color-names-thumb.jpg'),(162,67,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:381;s:14:\"hwstring_small\";s:23:\"height=\'81\' width=\'128\'\";s:4:\"file\";s:94:\"/space0s2/www/colo.coop/029/wp/wp-content/uploads/2006/12/zipscribblemap-color-names-thumb.jpg\";s:5:\"thumb\";s:46:\"zipscribblemap-color-names-thumb.thumbnail.jpg\";}'),(165,69,'_wp_attached_file','/space0s2/www/colo.coop/029/wp/wp-content/uploads/2006/12/zipscribblemap-color-names.png'),(166,69,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1276;s:6:\"height\";i:810;s:14:\"hwstring_small\";s:23:\"height=\'81\' width=\'128\'\";s:4:\"file\";s:88:\"/space0s2/www/colo.coop/029/wp/wp-content/uploads/2006/12/zipscribblemap-color-names.png\";s:5:\"thumb\";s:40:\"zipscribblemap-color-names.thumbnail.png\";}'),(175,77,'_wp_page_template','default'),(177,79,'_wp_page_template','default'),(179,81,'_wp_page_template','default'),(180,82,'_wp_page_template','default'); /*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_posts` -- DROP TABLE IF EXISTS `wp_posts`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext NOT NULL, `post_title` text NOT NULL, `post_category` int(4) NOT NULL DEFAULT '0', `post_excerpt` text NOT NULL, `post_status` enum('publish','draft','private','static','object','attachment','inherit','future') NOT NULL DEFAULT 'publish', `comment_status` enum('open','closed','registered_only') NOT NULL DEFAULT 'open', `ping_status` enum('open','closed') NOT NULL DEFAULT 'open', `post_password` varchar(20) NOT NULL DEFAULT '', `post_name` varchar(200) NOT NULL DEFAULT '', `to_ping` text NOT NULL, `pinged` text NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` text NOT NULL, `post_parent` bigint(20) NOT NULL DEFAULT '0', `guid` varchar(255) NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `post_name` (`post_name`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`) ) ENGINE=MyISAM AUTO_INCREMENT=87 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_posts` -- LOCK TABLES `wp_posts` WRITE; /*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */; INSERT INTO `wp_posts` VALUES (6,2,'2006-04-04 09:24:31','2006-04-04 13:24:31','localization (into english) is incomplete for a-blog-beyond-066-ex-en.zip\r\n\r\nthat is a todo item. notes in pages.\r\nthe social taxonomy hack (xfn::someone trademarked this in the ossc???) is extensible to relationships like portfolio (of web sites) and campaigns (candidate, issue, commercial).\r\n\r\nnotes in pages for html4 rel attribute and css2.1 implementation.','l10n, extending htnml4.1 rel attributes and css2.1 exploits',0,'','publish','closed','closed','','l10n','','','2006-04-04 10:18:24','2006-04-04 14:18:24','',0,'http://029.colo.coop/?p=6',0,'post','',0),(2,1,'2006-04-03 20:45:32','2006-04-04 00:45:32','this is the top of the code is poetry hierarchy\r\n\r\nfirst note: the link relationship xfn profile could be extended.\r\n\r\nthe rel attribute repitoire may be extended, e.g.4.me:\r\n
rel=\"campaign staff volunteer\"\r\n\r\nrel=\"portfolio\"
\r\nthe css2.1 attribute selector syntax could be:\r\n
a[rel~=\"portfolio\"] {font-style: italic;}\r\n\r\n a[rel~=\"campaign\"] {text-decoration: underline;}\r\n\r\na[rel~=\"staff\"]:after {content: \" *\";}
\r\nhttp://trac.wordpress.org/ this should be a page-associated link.\r\n\r\nwant theme-associated page(s) with theme-associated link set(s).\r\n\r\ntemp css link store:\r\n\r\nhttp://glish.com/css/\r\n\r\nhttp://www.meyerweb.com/eric/css/edge/\r\n\r\nhttp://www.csszengarden.com/\r\n\r\nhttp://www.w3.org/TR/2006/WD-XMLHttpRequest-20060405/','code is poetry',0,'','publish','closed','closed','','about','','','2006-04-07 18:14:00','2006-04-07 22:14:00','',0,'',0,'page','',0),(3,2,'2006-04-04 06:42:36','2006-04-04 10:42:36','the whole point of panic() is that there are situations for which no state change is inherently better, and the only deterministic means to make the execution of the program itself remain deterministic is to restore the program to a known state.\r\n\r\npanic is the last mechanism available to retain correctness.\r\n
void\r\npanic(const char *message, ...)\r\n{\r\nputs(message);\r\nputs(\"\\r\\n\");\r\nhalt();\r\n}
\r\nas sam says, This is a perfect time to panic! so after a day of attempts to restore the db and php to a known state, panic() has restored 029 to a known state.\r\n\r\nthe prior instance of 029 (11.05 to 03.06) is now just grovelable tar and sqldump images.','panic()',0,'','publish','closed','closed','','panic','','','2006-04-04 09:10:19','2006-04-04 13:10:19','',0,'http://029.colo.coop/?p=3',0,'post','',0),(4,2,'2006-04-04 08:24:03','2006-04-04 12:24:03','this is the top of the page hierarchy for the freebsd pages','freebsd',0,'','publish','closed','closed','','freebsd-top','','','2006-04-04 08:57:23','2006-04-04 12:57:23','',0,'http://029.colo.coop/?page_id=4',0,'page','',0),(5,2,'2006-04-04 08:58:23','2006-04-04 12:58:23','','linux',0,'','publish','closed','closed','','linux','','','2006-04-04 08:58:23','2006-04-04 12:58:23','',0,'http://029.colo.coop/?page_id=5',0,'page','',0),(7,2,'2006-04-04 09:49:51','2006-04-04 13:49:51','','net',0,'','publish','closed','closed','','ietf','','','2006-04-04 09:50:38','2006-04-04 13:50:38','',0,'http://029.colo.coop/?page_id=7',0,'page','',0),(8,2,'2006-04-04 09:51:22','2006-04-04 13:51:22','','isp pages',0,'','publish','closed','closed','','isp-pages','','','2006-04-04 09:51:22','2006-04-04 13:51:22','',7,'http://029.colo.coop/?page_id=8',0,'page','',0),(9,2,'2006-04-04 09:51:56','2006-04-04 13:51:56','','nsp pages',0,'','publish','closed','closed','','nsp-pages','','','2006-04-04 09:51:56','2006-04-04 13:51:56','',7,'http://029.colo.coop/?page_id=9',0,'page','',0),(10,2,'2006-04-04 09:52:28','2006-04-04 13:52:28','','hosting pages',0,'','publish','closed','closed','','hosting-pages','','','2006-04-04 09:52:28','2006-04-04 13:52:28','',7,'http://029.colo.coop/?page_id=10',0,'page','',0),(11,2,'2006-04-04 10:13:45','2006-04-04 14:13:45','there is more work to the koufax than we let show:\r\n
    \r\n
  1. i sort comment ballots by ip and cross-reference by netmask, category and time to identify fraud. grep, sort, awk. rinse and repeat.
  2. \r\n
  3. i sort email ballots by ip and injection smtp point, again, to identify fraud. grep, sort, awk. rinse and repeat.
  4. \r\n
  5. load averages spike on each open. highest this cycle was mid-60s, with 60+ perl and httpd instances.
  6. \r\n
\r\nthank dog dwm and mbw count the valid ballots. that\'s format-free work that is by-hand.\r\n\r\nnext year: load-balance across trio, drop perl (page rebuild cost), seperate comments and delivery, use own key system, ... mailbot!\r\n\r\nrunning year: a current koufax vade mecum (day book)','koufax 06 final tabulations posted',0,'','publish','closed','closed','','koufax-06-final-tabulations-posted','','','2006-04-04 10:16:52','2006-04-04 14:16:52','',0,'http://029.colo.coop/?p=11',0,'post','',1),(12,2,'2006-04-04 10:56:05','2006-04-04 14:56:05','one of the amusing features of production-oriented cluster management systems is that they are inteneded to work. both torque/pbs and ganglia get confused about reservation/free queues when nodes aren\'t responsive, because the users of the cms are using the cms to test code paths which leave nodes in busy/hung/halted states -- run of the mill for kdev work.\r\n\r\nthere are times when expect multiplexed into serial ports is the better answer to reset the cluster, and expect to power switches is an even better answer, and there are even times when working down the rack pushing reset is the best answer.\r\n\r\nof course, there are times when even reset simply reveals that a bios setting isn\'t what was expected, and an individual node needs a bios mod, even imaging.\r\n\r\nsingle master netboot systems (sun\'s jumpstart or rh\'s kickstart or unc\'s jumpstart for rh) are nice, as is rdist/rsync\r\n\r\nthere are other areas of fragility. more than one dhcp server usually results in intermittant hardly reproducible failure at assembly time. ntp drop outs or unconverged clock drift is silently fatal where any capability has temporal expiry properties. install (net boot) server constellations may be silently non-identical, which is amusing, and they may be failed, or loads content failed, or loads time-out failed, if the loader manager is narrowly synchronous, effectively simultanious,\r\n\r\nzonefile editors really should know that node names are strings passed to sort.1 and friends, and 4 sorts after 11. that\'s a whole class of built-in latent operator errors.\r\ntools that act on addresses, even on cidrs, can\'t assume that address ranges are contiguous, or within some /24. another whole class of built-in latent operator errors.\r\n\r\nto do: page for torque/pbs\r\n\r\nto do: page for ganglia\r\n\r\nadd pointer to apps that consume cluster resources -- mpi, pvm','clusters',0,'','publish','closed','closed','','clusters','','','2006-04-06 14:55:06','2006-04-06 18:55:06','',0,'http://029.colo.coop/?page_id=12',0,'page','',0),(13,2,'2006-04-04 15:00:11','2006-04-04 19:00:11','bind 9.4.0a4 is running on the releng_6 production set.\r\n\r\nupdates:\r\n\r\n\r\n
\r\n
    \r\n
  1. net.
  2. \r\n
\r\n
','bind',0,'','publish','closed','closed','','bind','','','2006-04-04 15:00:11','2006-04-04 19:00:11','',0,'http://029.colo.coop/?page_id=13',0,'page','',0),(14,2,'2006-04-04 18:59:14','2006-04-04 22:59:14','i enjoyed working with jordyn on the .org redel bids, and earlier, as an honest adversary in the new gtld rollout ballet.','jordyn buchanan leaves rcom',0,'','publish','closed','closed','','jordyn-buchanan-leaves-rcom','','','2006-04-04 19:06:56','2006-04-04 23:06:56','',0,'http://029.colo.coop/?p=14',0,'post','',0),(15,2,'2006-04-04 19:01:04','2006-04-04 23:01:04','michael is one of the least bad of the icann bod cast, and decent enough in person.','michael palage leaves the icann bod',0,'','publish','closed','closed','','michael-palage-leaves-the-icann-bod','','','2006-04-04 19:06:15','2006-04-04 23:06:15','',0,'http://029.colo.coop/?p=15',0,'post','',0),(16,2,'2006-04-04 20:32:29','2006-04-05 00:32:29','top of the mk++ book-in-node.','mk++',0,'','publish','closed','closed','','mk','','','2006-04-04 20:32:29','2006-04-05 00:32:29','',0,'http://029.colo.coop/?page_id=16',0,'page','',0),(17,2,'2006-04-04 22:39:29','2006-04-05 02:39:29','zone files updated and sync\'d\r\n
    \r\n
  1. db.autismwatch.org
  2. \r\n
  3. db.blog.coop
  4. \r\n
  5. db.colo.coop
  6. \r\n
  7. db.cybertours.com
  8. \r\n
  9. db.elizabethtrice.org
  10. \r\n
  11. db.goredelegate.org
  12. \r\n
  13. db.nic-naa.net
  14. \r\n
  15. db.prestongilbert.com
  16. \r\n
  17. db.triptowonderful.org
  18. \r\n
  19. db.usansp.net
  20. \r\n
  21. db.wabanaki.net
  22. \r\n
  23. db.wampumpeag.net
  24. \r\n
  25. db.williams4me.org
  26. \r\n
\r\nzone files todo:\r\n
    \r\n
  1. the campaign tree for maine
  2. \r\n
  3. the model tree for .iq
  4. \r\n
  5. dnssec
  6. \r\n
  7. nfsv4 and voip rrset adds
  8. \r\n
\r\nreminder: one of the odder bits of the rfc1034/rfc1035 namespace:\r\n\r\n3.14159 \\\r\n2653589793238462643383279502884197169399375105820974944592.com','dns',0,'','publish','closed','closed','','dns','','','2006-04-04 22:58:16','2006-04-05 02:58:16','',0,'http://029.colo.coop/?p=17',0,'post','',0),(18,2,'2006-04-05 16:11:26','2006-04-05 20:11:26','an obsolete kentish word, but the last in the o.e.d. of 1928, the past participle of the verb to see. a place to put things that should be seen (as they chaffe).\r\n\r\nthe portland noc problems:\r\n
    \r\n
  1. only two address have been \"delegated\", not a /28
  2. \r\n
  3. the sun netra is dead
  4. \r\n
  5. the 3rd and 4th ixos 1u are down, waiting on a st318437lc each
  6. \r\n
  7. the ixos 2u is down, with a fail-a-day disk error on the first (system) disk
  8. \r\n
  9. there is no console access to the node set
  10. \r\n
\r\nthe bangor noc problems:\r\n
    \r\n
  1. no address have been \"delegated\", everything is of the form ip6599130112.link2usa.com
  2. \r\n
  3. the sun netra at .111 is dead
  4. \r\n
  5. the sun netra at .109 refuses connections (ssh, telnet several ports)
  6. \r\n
  7. there is undocumented filtering at the prexar access router
  8. \r\n
\r\nthis does tend to complicate matters.','zyxt',0,'','publish','closed','closed','','zyxt','','','2006-11-19 11:05:03','2006-11-19 15:05:03','',0,'http://029.colo.coop/?page_id=18',0,'page','',0),(19,2,'2006-04-06 14:16:04','2006-04-06 18:16:04','the PHPTemplate theme engine is an improvement over the 4.6 Xtemplate engine.\r\n\r\ni\'m not happy with the current taxa import/export mechanism, as instantiating one or more complex trees, or simply large flat lists, is wicked tedious via a ui.\r\n\r\nthe l10n fr .po (cvs tarball) dropped in clean. the es l10n effort hasn\'t yet producd a (cvs) tarball.','drupal4.7.0-rc1',0,'','publish','closed','closed','','drupal470-rc1','','','2006-04-06 14:16:04','2006-04-06 18:16:04','',0,'http://029.colo.coop/?p=19',0,'post','',0),(20,2,'2006-04-06 17:26:52','2006-04-06 21:26:52','more fixes in the production zonefiles.\r\nalso: update the .iq (pseudo-cctld) zonefiles.\r\nrndc keys made consistent.','starting 9.4.0a4 -d 1 ',0,'','publish','closed','closed','','starting-940a4-d-1','','','2006-04-06 23:26:22','2006-04-07 03:26:22','',0,'http://029.colo.coop/?p=20',0,'post','',0),(21,2,'2006-04-07 20:13:07','2006-04-08 00:13:07','here\'s one feature:\r\n\r\nFatal error: Call to undefined function node_validate_title() in /space0s2/www/colo.coop/cfm/drupal47/modules/poll.module on line 106\r\n\r\nfixed in head.\r\n\r\n[ebw@abenaki.wabanaki.net:105]% diff drupal/modules/poll.module cfm/drupal47/modules/poll.module\r\n2c2\r\n< // $Id: poll.module,v 1.193 2006/04/06 15:30:19 killes Exp $\r\n---\r\n> // $Id: poll.module,v 1.190 2006/03/26 19:31:00 killes Exp $\r\n105a106,107\r\n> node_validate_title($node, t(\'You have to specify a question.\'));\r\n>','a day in drupal ... ',0,'','publish','closed','closed','','a-day-in-drupal','','','2006-04-08 07:03:14','2006-04-08 11:03:14','',0,'http://029.colo.coop/?p=21',0,'post','',0),(22,2,'2006-04-08 10:31:52','2006-04-08 14:31:52','also samat jain\'s sand_css theme, from ruthsarian layouts\' skidoo too, a source-ordered (middle column first) version of skidoo, an elastic three-column, css theme.\r\n\r\nlinks: sand_css | skidoo too\r\n\r\nwicked annoying amount of white space in the admin operational layout, requires huge mouse sweeps and every adop pops the aduser back to zero, rather than back to start-action-just-completed. that\'s wicked annoying too. these features/bugs were present in -rc1.','drupal4.7.0-rc2',0,'','publish','closed','closed','','drupal470-rc2','','','2006-04-08 10:31:52','2006-04-08 14:31:52','',0,'http://029.colo.coop/?p=22',0,'post','',0),(23,2,'2006-04-08 10:27:17','2006-04-08 14:27:17','today\'s .mozconfig:\r\n\r\nmk_add_options MOZ_CO_PROJECT=browser\r\nmk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj-@CONFIG_GUESS@\r\n\r\n# Options for client.mk.\r\nmk_add_options MOZ_CO_PROJECT=browser\r\nmk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj-@CONFIG_GUESS@\r\n\r\n# Options for \'configure\' (same as command-line options).\r\nac_add_options --enable-application=browser\r\nac_add_options --with-distribution-id=wampumpeag/head\r\nac_add_options --disable-mailnews\r\n\r\n... hours later ...\r\n\r\n\r\ngmake[1]: Leaving directory `/var/moz/mozilla/obj-i686-pc-linux-gnu\'\r\n\r\ntodo: move the install target from $there/obj-mumble/dist/bin/ to /u/l/m/\r\n\r\nstill broken. not enough disk. shuffle bits. grumble about poverty. load averages spike into the teens. why? compile and moz. thrash. very hi si/so numbers. sigh. something for cree to do when i remember to go to sleep.\r\n
    ','mozilla work day and accessibility and standards',0,'','publish','closed','closed','','mozilla-work-day-and-accessibility-and-standards','','','2006-04-10 11:36:28','2006-04-10 15:36:28','',0,'http://029.colo.coop/?p=23',0,'post','',0),(24,2,'2006-04-09 11:08:42','2006-04-09 15:08:42','think of it as the return of betsie (.pl that linearizes tables, translates alt values, and removes js, circa \'01)\r\n\r\ntodo:\r\n
      \r\n
    1. compile tidy (mozdev v/t 4 in js)
    2. \r\n
    3. compile fangs (mozdev a/t 4 textreaders)
    4. \r\n
    \r\nhmm.','accessibility and standards',0,'','publish','closed','closed','','accessibility-and-standards','','','2006-04-10 11:37:38','2006-04-10 15:37:38','',0,'http://029.colo.coop/?p=24',0,'post','',0),(25,2,'2006-04-10 11:31:10','2006-04-10 15:31:10','blogging sounds better than using awkward forms to input text globs in a data base. the former is all wicked prestigious and kwel and digeratti, the latter is what 9-to-5 drones do for $10/hr.\r\n\r\nat least the drones are paid.\r\n
    mysql> select * from wp_posts where ID=25;\r\n+----+-------------+---------------------+---------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------+---------------+--------------+-------------+----------------+-------------+---------------+-----------+---------+--------+---------------------+---------------------+-----------------------+-------------+----------------------------+------------+-----------+----------------+---------------+\r\n| ID | post_author | post_date           | post_date_gmt       | post_content                                                                                                                                                                                                                      | post_title      | post_category | post_excerpt | post_status | comment_status | ping_status | post_password | post_name | to_ping | pinged | post_modified       | post_modified_gmt   | post_content_filtered | post_parent | guid                       | menu_order | post_type | post_mime_type | comment_count |\r\n+----+-------------+---------------------+---------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------+---------------+--------------+-------------+----------------+-------------+---------------+-----------+---------+--------+---------------------+---------------------+-----------------------+-------------+----------------------------+------------+-----------+----------------+---------------+\r\n| 25 |           2 | 0000-00-00 00:00:00 | 0000-00-00 00:00:00 | blogging sounds better than using awkward forms to input text globs in a data base. the former is all wicked prestigious and kwel and digeratti, the latter is what 9-to-5 drones do for $10/hr.\r\n\r\nat least the drones are paid. | the penny drops |             0 |              | draft       | open           | open        |               |           |         |        | 0000-00-00 00:00:00 | 0000-00-00 00:00:00 |                       |           0 | http://029.colo.coop/?p=25 |          0 |           |                |             0 |\r\n+----+-------------+---------------------+---------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------+---------------+--------------+-------------+----------------+-------------+---------------+-----------+---------+--------+---------------------+---------------------+-----------------------+-------------+----------------------------+------------+-----------+----------------+---------------+\r\n1 row in set (0.00 sec)
    \r\nneh?','the penny drops',0,'','publish','closed','closed','','the-penny-drops','','','2006-04-10 11:31:10','2006-04-10 15:31:10','',0,'http://029.colo.coop/?p=25',0,'post','',0),(26,2,'2006-04-11 12:40:40','2006-04-11 16:40:40','the 066-ex-en has a few text strings that were missed in the localization pass.','trivial localization',0,'','publish','closed','closed','','trivial-localization-and-going-to-head','','','2006-04-13 08:15:26','2006-04-13 12:15:26','',0,'http://029.colo.coop/?p=26',0,'post','',2),(28,2,'2006-04-15 17:52:59','2006-04-15 21:52:59','wp uses subversion, so that\'s an apt-get on the debian localhost laptop, and a ports build on the releng_6 server boxen. also a dork on the apache2 .so space, hence an e/c/m/i/t cycle','going to trunk, or proximal',0,'','publish','closed','closed','','going-to-trunk-or-proximal','','','2006-04-15 17:52:59','2006-04-15 21:52:59','',0,'http://029.colo.coop/?p=28',0,'post','',0),(27,2,'2006-04-16 14:18:06','2006-04-16 18:18:06','several days spent groveling about in het dorp drupal, getting the look-and-feel to the client\'s basic theme. todos are the events module and mailman integration.\r\ninteresting start of a discussion on how to podcast using drupal: http://drupal.org/node/58354\r\n\r\nah, a wicked kwel referrer-semantic for splash via pph\r\n\r\nahha, asterisk int via forestlake.ca telephone. i\'m a happy camper.','cms work day',0,'','publish','closed','closed','','cms-work-day','','','2006-04-22 14:19:14','2006-04-22 18:19:14','',0,'http://029.colo.coop/?p=27',0,'post','',0),(30,2,'2006-04-15 05:18:33','2006-04-15 09:18:33','hotweb\'06: first workshop on hot topics in web systems and technologies\r\nsubmission deadline: june 15, notification: july 31, workshop: november 13-15\r\nboston, november 13-15, 2006\r\n\r\n3rd workshop on real, large distributed systems (worlds \'06)\r\npaper submissions due: July 7, notification: august 8\r\ndemo submissions due: September 7\r\nfinal papers due: September 8\r\nnovember 5, 2006 in seattle, osdi/usenix','hotweb1 & words3',0,'','publish','closed','closed','','cfp','','','2006-04-15 05:19:23','2006-04-15 09:19:23','',0,'http://029.colo.coop/?p=30',0,'post','',0),(31,2,'2006-04-15 17:50:14','2006-04-15 21:50:14','painless. a pleasant surprise. on the cfm site, which is 24 hours from a record landing','drupal-4.7.0-rc3',0,'','publish','closed','closed','','drupal-470-rc3','','','2006-04-15 17:50:14','2006-04-15 21:50:14','',0,'http://029.colo.coop/?p=31',0,'post','',1),(32,2,'0000-00-00 00:00:00','0000-00-00 00:00:00','majordomo: /space1s1/freebsd/ports/mail/majordomo/files/post-install-notes','majordomo, mailman, zonefiles',0,'','draft','closed','closed','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'http://029.colo.coop/?p=32',0,'post','',0),(33,2,'0000-00-00 00:00:00','0000-00-00 00:00:00','write\r\n
    sosend_udp
    \r\n
    \r\n
    (*pru_send)\r\nudp_output
    \r\n
    \r\n
    sosend_tcp\r\n
    sbwait*
    \r\n
    \r\n
    (*pru_send)\r\ntcp_output
    \r\n
    \r\n
    \r\n
    \r\n
    ip_output\r\n(*if_output)\r\nifq_enque
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    (*if_start)\r\nifq_dequeue\r\nnic dma\r\nni irq
    \r\n
    \r\n
    \r\n
    \r\nproc sock trans net device
    ','interposition',0,'','draft','closed','closed','','','','','2006-10-10 15:16:46','2006-10-10 19:16:46','',0,'http://029.colo.coop/?p=33',0,'post','',0),(34,2,'2006-04-28 11:10:13','2006-04-28 15:10:13','bob stein\'s http://www.visibone.com/','delightful site',0,'','publish','closed','closed','','delightful-site','','','2006-04-28 11:10:13','2006-04-28 15:10:13','',0,'http://029.colo.coop/?p=34',0,'post','',1),(35,2,'2006-05-01 08:23:36','2006-05-01 12:23:36','a week spent in drupal release candidates, mysql dba tasks, civicrm, mailman, sendmail, integration, and zone file reconcilliation.\r\n\r\nlearned a lot. the mailman fail-on-vhost-nuance is wicked obscure.','drupal 4.7.0',0,'','publish','closed','closed','','drupal-470','','','2006-05-01 08:24:07','2006-05-01 12:24:07','',0,'http://029.colo.coop/?p=35',0,'post','',0),(36,2,'2006-05-05 18:34:22','2006-05-05 22:34:22','now on the releng_6 production set.','bind 9.4.0a5',0,'','publish','closed','closed','','bind-940a5','','','2006-05-05 18:34:22','2006-05-05 22:34:22','',0,'http://029.colo.coop/?p=36',0,'post','',0),(41,2,'2006-05-26 12:56:57','2006-05-26 16:56:57','busy weeks, packing for moving, organizing rebecca, getting the boys out of school, going to court for gracie\'s school plan, actually moving out of a house and back into rebecca, and of course, getting the political action committee paperwork (postal, banking, federal elections commission), techwork (websites, mailing lists, databases, php, mysql, css coding), and feeding the dog and two cats and cleaning the litterbox.\r\n\r\nperson x writes to ask if i\'m available to be drafted myself to an open seat on an icann body. another 18 minutes gone.\r\n\r\nthe really painfull parts are picking which pile to put in storage. mk++. fbsd7 net, mf\'s perl registrar code, all the nativelang materials, ...','an 18 minute gap',0,'','publish','closed','closed','','an-18-minute-gap','','','2006-05-26 13:18:04','2006-05-26 17:18:04','',0,'http://029.colo.coop/?p=41',0,'post','',0),(38,2,'2006-05-10 20:02:52','2006-05-11 00:02:52','
      \r\n
    1. patch for aggregator htmlentity brokenness - aggent.patch link
    2. \r\n
    3. patch for comment map_assoc brokenness - link
    4. \r\n
    ','drupal patches',0,'','publish','closed','closed','','drupal-patches','','','2006-05-10 20:02:52','2006-05-11 00:02:52','',0,'http://029.colo.coop/?page_id=38',0,'page','',0),(42,2,'2006-08-26 14:19:12','2006-08-26 18:19:12','busy months. moving, organizing and reorganizing rebecca, getting the childen to places that are interersting: greensboro and bobby, the northern boreal peaks, from qualla to elatsi-yi on the dahlonega to tenase road, rock city atop lookout mountain, the chattanooga aquarium, the nashville zoo, the mamoth caves, the northen track of nunna daul tsuny to golconda and freedom for pleasant, elmira and infant nancy cross, who did not cross at cape giradoux.\r\n\r\nto cahokia., and up the amazing mississipi at alton to the equally amazing illinois to kampsville, hannibal, then to iowa city for the political action committee work. many pleasent visits to the library and the children\'s museum.\r\n\r\nto effigy mounds, then back to copper harbor, where the blue trike was lost, and black river harbor, where jonah\'s memory of place was proved, and west, via blue mound, pipestone, ma koo si tcha and the paha sapa, to the end of the pac techwork (websites, mailing lists, databases, php, mysql, css coding), south of rapid city.\r\n\r\nin a few weeks i can start unpacking from storage. fbsd7 net, mf’s perl registrar code, all the nativelang materials, …','tape, interrupted, continues',0,'','publish','closed','closed','','tape-interrupted-continues','','','2006-08-26 14:45:05','2006-08-26 18:45:05','',0,'http://029.colo.coop/?p=42',0,'post','',0),(43,2,'2006-09-15 12:28:31','2006-09-15 16:28:31','five years ago we pulled into orlando a few minutes before midnight. gracie\'s 5th in fantesy land. this year we pulled into salinas about the same time. gracie\'s 10th between pacific tides.','sept 13th',0,'','publish','closed','closed','','sept-13th','','','2006-09-15 12:28:31','2006-09-15 16:28:31','',0,'http://029.colo.coop/?p=43',0,'post','',0),(44,2,'2006-09-19 14:20:06','2006-09-19 18:20:06','now on the releng_6 production set.','bind 9.4.0b2',0,'','publish','closed','closed','','bind-940b2','','','2006-09-19 14:20:06','2006-09-19 18:20:06','',0,'http://029.colo.coop/?p=44',0,'post','',0),(45,2,'2006-09-30 16:43:04','2006-09-30 20:43:04','now on the releng_6 production set.','freebsd 6.2-prerelease',0,'','publish','closed','closed','','freebsd-62-prerelease','','','2006-10-01 16:44:52','2006-10-01 20:44:52','',0,'http://029.colo.coop/?p=45',0,'post','',2),(46,2,'2006-10-11 15:36:42','2006-10-11 19:36:42','mysql table corruption(s) consequent to a comment dos.\r\n\r\nfix:\r\n
      \r\n
    1. server shutdown
    2. \r\n
    3. myisamchk --silent --force --fast --update-state --key_buffer_size=64M --sort_buffer_size=64M --read_buffer_size=1M --write_buffer_size=1M draftgore/*.MYI
    4. \r\n
    5. server restart
    6. \r\n
    \r\ntodo: move tables from /var to something larger. delta the .cnf, restart and test.\r\n\r\ndone:\r\n\r\nfile /etc/my.cnf\r\n\r\n[mysqld]\r\n\r\ndatadir = /path/to/data/dir','dba tasks',0,'','publish','closed','closed','','dba-tasks','','','2006-10-12 20:12:54','2006-10-13 00:12:54','',0,'http://029.colo.coop/?p=46',0,'post','',0),(48,2,'2006-11-14 22:46:25','2006-11-15 02:46:25','now on the releng_6 production set, using openssl 0.9.8d.','bind 9.4.0b4',0,'','publish','closed','closed','','bind-940b4','','','2006-11-14 22:46:25','2006-11-15 02:46:25','',0,'http://029.colo.coop/?p=48',0,'post','',0),(47,2,'2006-11-05 22:32:21','2006-11-06 02:32:21','now on the releng_6 production set, using openssl 0.9.8d.','bind 9.4.0b3',0,'','publish','closed','closed','','bind-940b3','','','2006-11-05 22:37:24','2006-11-06 02:37:24','',0,'http://029.colo.coop/?p=47',0,'post','',0),(49,2,'2006-11-15 15:38:38','2006-11-15 19:38:38','http://www.iana.org/protocols/forms.htm\r\n\r\nApache/1.3.27 Server at www.iana.org Port 80\r\n
      \r\n
    1. assignments.pl
    2. \r\n
    3. enterprise.pl
    4. \r\n
    5. iftypes.pl
    6. \r\n
    7. mediatypes.pl
    8. \r\n
    9. mod_ent.pl
    10. \r\n
    11. mod_portno.pl
    12. \r\n
    13. multicast.pl
    14. \r\n
    15. sys-port-number.pl
    16. \r\n
    17. usr-port-number.pl
    18. \r\n
    \r\nhttp://bestpractical.com/rt','iana identifier application forms integration with rt',0,'','publish','closed','closed','','iana-identifier-application-forms-integration-with-rt','','','2006-11-15 15:38:38','2006-11-15 19:38:38','',0,'http://029.colo.coop/?page_id=49',0,'page','',0),(50,2,'2006-12-11 02:51:59','2006-12-11 06:51:59','

    click on me: dink dink\r\n

    \r\n','referer test',0,'','publish','closed','closed','','referer-test','','','2006-12-11 02:53:26','2006-12-11 06:53:26','',0,'http://029.colo.coop/?p=50',0,'post','',0),(51,2,'2006-12-11 22:21:43','2006-12-12 02:21:43','« La plus extravagante idée qui puisse naître dans la tête d\'un politique est de croire qu\'il suffise à un peuple d\'entrer à main armée chez un peuple étranger, pour lui faire adopter ses lois et sa constitution. Personne n\'aime les missionnaires armés ; et le premier conseil que donnent la nature et la prudence, c\'est de les repousser comme des ennemis. »\r\n\r\nMaximilien François Marie Isidore de Robespierre\r\n\r\nSur la guerre (1ère intervention)\r\n\r\nDiscours prononcé au club des Jacobins le 2 janvier 1792','max',0,'','draft','closed','closed','','max','','','2007-01-14 09:47:29','2007-01-14 13:47:29','',0,'http://029.colo.coop/?p=51',0,'post','',0),(52,2,'2006-12-11 22:32:46','2006-12-12 02:32:46','
    \r\n$addr = $_SERVER[\'REMOTE_ADDR\'];\r\nif($addr){\r\nprint \"$addr\\n\";\r\npassthru(\"dig -x $addr +short\");\r\n}\r\n?>\r\n
    \r\n
    \r\nEnter an IP Address:
    \r\n\r\n\r\n
    \r\n\r\n

    Search: Africa | Asia | L. Am | Europe\r\n','rir db search',0,'','draft','closed','closed','','rir-db-search','','','2006-12-18 22:01:12','2006-12-19 02:01:12','',0,'http://029.colo.coop/?p=52',0,'post','',0),(53,2,'2006-12-11 22:34:03','2006-12-12 02:34:03','

    \r\n

    Enter a DNS Name:\r\n\r\n\r\n\r\n\r\n

    ','tld db search',0,'','draft','closed','closed','','tld-db-search','','','2007-01-14 09:47:08','2007-01-14 13:47:08','',0,'http://029.colo.coop/?p=53',0,'post','',0),(54,2,'0000-00-00 00:00:00','0000-00-00 00:00:00','The usawebhost.com zone is currently served by Prexar\'s ns boxen. The zone is full of cruft, e.g., blog.zone points to a gfa property. Minimal A records initially: {whois,www}.{usawebhost.com}.\r\n\r\nModify and transfer per agreement with Pancho, 2/10.\r\n\r\nTransfer Verisign-Registrar uid/pw from USA to wampumpeag.','usawebhost: zonefile transfer',0,'','draft','closed','closed','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'http://029.colo.coop/?p=54',0,'post','',0),(55,2,'0000-00-00 00:00:00','0000-00-00 00:00:00','The Washington Post has a story on the expiry of the domain name washpost.com. We\'d publish it except the WaPo charges $155/mo for for-profit web sites to republish the article.\r\n\r\nThe nutshell version is (a) registrant gives dead contact info to registrar, (b) registrar sends N notices of pending doom, money owed, etc., (c) registration expires, (d) registry deletes name from .com root, (e) registrant discovers all email of the form {doctor,lawyer,indian.chief}@washpost.com fails. For want of a $35 penny ... WaPo had to scramble and dump its internal mail onto Yahoo and Hotmail accounts for the better part of a day.','usawebhost: wapo and the dns',0,'','draft','closed','closed','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'http://029.colo.coop/?p=55',0,'post','',0),(56,2,'0000-00-00 00:00:00','0000-00-00 00:00:00','We were slow to get the front-end started. Our back-end (OT&E with VGRS for COM/NET) went live in late December, we nervously watched our backorder partner execute buys, returned to sender a mystery payment (left hand please see accounts receivable), missed refreshing our account at VGRS (accounts payable please see right hand), and forgot that our front-end was ... not only awfully ugly, but dead (left hand please see right hand).\r\n\r\nDavid Zimmerman, an IP attorney in Victoria Australia, considering bringing a complaint under the UDRP for a domain for which we are the registrar-of-record, found us ... slightly dead, on both the whois-should-work side, and the please-answer-phone-or-mail side. David dropped a poke-eye-with-sharp-stick note to ICANN, as he should (as we would ourselves), and the nice Gnomes-of-Marina-del-Rey were kind enough to forward the stick on to the right eye. Unfortunately, our contact info on file at ICANN had a typo too.\r\n\r\nA flip of an A record and our whois:43 problem was solved. A flip of another A record and our awfully ugly and dead front-end became ... at least alive, and with correct contact info. Our CEO (Steve Gilbert) is tasked with flipping a letterheaded, signed, pieced of paper transported by surface post and handled by actual human beings to correct our ICANN contact info.\r\n\r\nPeter Bullock, writing in the Hong Kong edition of Computer World, has a readable piece on the background of the UDRP and how to bring a complaint under the UDRP using the Asian Domain Name Dispute Resolution Centre (ADNDRC), which we find interesting because we visited the Network Information Center in Beijing twice in 2000, and may know someone in the Beijing office of the ADNDRC.','usawebhost: slow start',0,'','draft','closed','closed','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'http://029.colo.coop/?p=56',0,'post','',0),(57,2,'0000-00-00 00:00:00','0000-00-00 00:00:00','Tasks:\r\n1. complete W3C modeled splash page (high)\r\n2. incorporate classical registrar functions (check, order, manage)\r\n3. bbc regions for ccTLD pages (low)\r\n4. staff USA Registrar logo task (low)\r\n5. set up all email accounts (medium)\r\n6. betsie (medium, after #1)\r\n7. banner and link to pool (3rd-party)\r\n8. banner and link to wampumpeag (reseller)\r\n9. operated by wampumpeag, llc\r\n10. add nanog search (to icann search)\r\n\r\nNotes:\r\n#4 assigned to Steve, no completion date, use CSP as placeholder.','usawebhost: ui things to do',0,'','draft','closed','closed','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'http://029.colo.coop/?p=57',0,'post','',0),(58,2,'0000-00-00 00:00:00','0000-00-00 00:00:00','Tasks:\r\n1. Get a 3-column style.\r\n\r\nNotes:','usawebost: ',0,'','draft','closed','closed','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'http://029.colo.coop/?p=58',0,'post','',0),(59,2,'0000-00-00 00:00:00','0000-00-00 00:00:00','Tim Ruiz\r\nGodaddy\r\nIANA Registrar id 146\r\n\r\nDear Tim,\r\n\r\nI want to discuss how we registrars can cooperate, independent of Verisign (Registry or Registrar), even ICANN, if necessary, to police one aspect of internet theft. I propose we adopt a trial mechanim to alert the registrar-of-record, as GoDaddy is of casino-jp.com, when the name is used to steer traffic in a theft of service (spam, whether via SMTP or HTTP), or complete credit-card fraud schemes.\r\n\r\nWith this letter I\'m informing you, registrar to registrar, RC member to RC member, that the URL casino-jp.com is being mechanically inserted into the comments of some political blogs I\'m responsible for -- my wife\'s wampum and Lisa English\'s Ruminate This. This  form of spam creates countable links in the victim web sites to the spamming beneficiary, which boosts the value of the spamming beneficiary. The general run of blog-abusing spam-bots is the usual casino, sex and drug product set.\r\n\r\nIn general terms, I propose we replace email and telephone calls between registrars with an EPP-like peer-to-peer protocol with and XML payload and end-point-is-a-registrar authentication. We can extend this to 3rd-parties who offer some pooled service, should any want to work that model, and to registries, should any want, or need to peer.\r\n\r\nThe send-side of the SMTP spam mechanism(s) does not rely upon names, neither does the write-side of the HTTP spam mechanism(s), so we can\'t do a damn thing about them. At worst, the writers into the SMTP or HTTP streams use disposable, captured hosts, which are harvested in the hundreds of thousands with every new release of an acquisition virus or worm. Where we can do something is on the use of persistant name to address mappings, where persistence means days or longer, in the furtherance of theft of service and credit card fraud.\r\n\r\nRobo-scamming blogs is a major pain in the butt for the blog community, see Lisa English\'s post from last October. The \"value\" of each unit of spam is the persistence of the validity of the URL the spammer inserts into the comments area of the victum blog. We registrars can cut this off at the knees simply by agreement between ourselves to challenge the spammer-registrant and modifying the domain nameserver data to end the value of the spam-run to the spammer.\r\n\r\nIt comes down to this -- will you switch off a customer because I\'ve asked you to, and will I switch off a customer because you\'ve asked me to. If we can answer \"yes\", then we can build a service that someone can operate, and we can restrict the use of persistant names in the dns for the credit card fraud and theft of advertizing revenue and whatever next comes down the pike, to non-cooperating registrars and spam-friendly registries. Dan Jaye and I wrote an Internet-Draft for the distribution of content labels, and later privacy lables, with digital signatures, on HTTP cookies, with the intent to drive abusive commercial conduct \"outside\" of the US (and EU and OEDC) jurisdictions. The core set of principles in this draft were adopted by the W3C for privacy labels on cookies, and incorporated first by Microsoft into IE 6, and then into Mozilla/Netscape and other internet browsers two years ago.\r\n\r\nI think we can do good, and make some money, and move that invisible line that deliniates \"registry services\" in the correct direction, by cooperating. I\'ll be writing to Ross and the others as well.\r\n\r\nI look forward to seeing you next month in Rome.\r\n\r\n\r\n\r\nEric Brunner-Williams\r\nWampumpeag, LLC\r\nOperator, USA Webhost\r\nIANA Registrar id 449','Making (im)persistent names used in fraud ',0,'','draft','closed','closed','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'http://029.colo.coop/?p=59',0,'post','',0),(60,2,'0000-00-00 00:00:00','0000-00-00 00:00:00','\r\nShould Registrars Communicate?\r\n\r\nWhen Scott Hollenbeck and the rest of us in the IETF\'s PROVREG WG set about the task of writing a specification for a registrar-registry protocol to replace Verisign\'s propriatary protocol (RRP) we made certain technical design choices that are worth mentioning. We chose a registry-centered star topology. We chose a registry-server and registrar-clients model. We chose a registrar-poll event model. We chose specify a command set that maps close to the RRP command set. In effect, we answered the question posed in the negative. There is no specification of mechanism within the PROVREG work product that allows for a registrar to communicate with a registrar.\r\n\r\nDuring the course of the drafting of the core EPP specifications I suggested alternatives to these design choices. Most were in the form of comments to the working group, some were during our face-to-face meetings, and some I even put in Internet-Draft form. I suggested these choices were over-specifications.\r\n\r\nIf we remove the topological restriction, then any two EPP nodes can exchange data, two registrars, two registries, chains of provisioning actors.\r\n\r\nIf we remove the client server restriction, then any two EPP nodes can elect to peer with each other and exchange or synchronize state. Again, two registrars, two registries, chains of provisioning actors.\r\n\r\nIf we remove the registrar-poll event model, then registries may asynchronously notify registrars, or any other EPP node, in-band, of conditions that affect the client-registrars.\r\n\r\nIf we remove the RRP limitations on the command set, then we can think about provisioning the dns, post-Verisign.\r\n\r\nTo restate, we can peer between two or more nodes by means that do not require, nor prevent, participation by the a central node, and registrars could talk to registrars. We can peer between two or more nodes, allowing one, or both nodes to alternate the roles of server and client, and registrars could also be registries to other registrars, which is more common than once thought. We can push data from registries and solve the escrow and transfer notification and general asychronous alert problems at once.\r\n\r\n\r\nThe Austrian ccTLD registry went on to implement HTTP transport, the Swiss ccTLD registry SMTP transport with an EPP-like data exchange syntax.','usawebhost: Comments to ICANN',0,'','draft','closed','closed','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'http://029.colo.coop/?p=60',0,'post','',0),(61,2,'0000-00-00 00:00:00','0000-00-00 00:00:00','>>ERIC BRUNNER-WILLIAMS: THANK YOU, VINT. A COMMENT FOR MIRIAM. I\'M ERIC BRUNNER-WILLIAMS. AS YOU KNOW, I\'VE WORKED ON THE DOT BIZ PROPOSAL, THE DOT US PROPOSAL AND I ASSISTED WITH THE DOT COOP AND DOT MUSEUM ACTIVITIES. ONE THING I URGE YOU TO LOOK FOR IS THE UNINTENDED CONSEQUENCE OF THE EXQUISITE TORTURE, THE FORMALISM THAT PROPOSAL RESPONDENTS GO THROUGH IN ORDER TO RESPOND AS IF THEY WERE VERY WELL CAPITALIZED ORGANIZATIONS WHEN IN FACT THEY ARE NOT VERY WELL CAPITALIZED ORGANIZATIONS.\r\n\r\nRESPONDING TO THE PROPOSALS THEMSELVES, MY EXPERIENCE WITH THE FIRST ROUND OF STLDS AND GTLDS WAS THAT THE CAPITALIZATION WAS, IF YOU WILL, THE SERVICE LEVEL TO WHICH THE AGREEMENTS WERE MADE WERE DISPROPORTIONATE FOR SOME OF THE STLD PROPOSEMENTS. AND THE ENTIRE PROCESS IMPOSED UNNECESSARY COST, WHICH HAS DAMAGED THE FIRST ROUND OF STLD ROLLOUTS, AND POSSIBLY EVEN ONE OR TWO OF THE GTLD ROLLOUTS, ALTHOUGH THEY MAY SUFFER FROM SELF-INFLICTED INJURY. SO PLEASE TRY TO GO BEYOND THE FORMAL COMPARISON OF THE SEVEN SETS OF DOCUMENTS TO INFER THE CAPITALIZATION REQUIREMENTS THAT MEETING THE SLA BOGIES AND APPENDICES AND ALSO RESPOND TO GO THE COMPLETE TEXTUAL REQUIREMENT FOR THE RFP IMPOSED ON THAT GENERATION OF APPLICANTS AND PRESUMABLY WILL BE INFLICTED ON THE NEXT GENERATION OF APPLICANTS AS WELL.\r\n\r\n>>MIRIAM SAPIRO: I THINK THAT\'S AN IMPORTANT CONSIDERATION AND WE WILL TAKE THAT INTO ACCOUNT AS WE DO THE PROCESS PART. THAT\'S REALLY SOLUCOM\'S PART, AS WELL AS LOOKING AT THE NEGOTIATIONS, I SHOULD SAY.\r\n\r\nTrans: Solucom knows enough about this thanks.','usawebhost: Attempting to contribute to the process :: a veteran\'s view of the RFP dance ',0,'','draft','closed','closed','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'http://029.colo.coop/?p=61',0,'post','',0),(62,2,'0000-00-00 00:00:00','0000-00-00 00:00:00','>>CARLOS AFONSO: CARLOS AFONSO. I WOULD LIKE TO ASK A CLARIFICATION ABOUT THE FOLLOWING ISSUE. THERE ARE SEVERAL CCTLDS, LIKE DOT N U, DOT PW, DOT PV, ET CETERA, WISHING TO PRACTICE IN THEIR RESPECTIVE COUNTRIES AND THEIR AGREEMENTS WITH COMPANIES TO SELL THEIR DOMAIN AND BECOMING PRACTICE GTLDS. HOWEVER, THEY ARE NOT IN THE REALM OF THE GTLD DISCUSSION. WHAT IS THE SITUATION OF THESE DOMAINS THAT ARE REALLY NOT COUNTRY CODE TOP-LEVEL DOMAINS BUT ARE GENERIC DOMAINS, WHAT TO DO ABOUT THIS? I FEEL THERE IS A BLACK HOLE IN DOMAINS THAT ARE FORMALLY COUNTRY CODE BUT THEY\'RE NOT COUNTRY CODE. AND YOU DON\'T HAVE ANY REAL REVELATION ABOUT IT. THANK YOU.\r\n\r\n>>PAUL TWOMEY: IF I MAY RESPOND, AND I CAN APPRECIATE YOUR REACTION, I THINK IT COMES TO THE REAL DISTINCTION THAT MANY OF THE CCS WOULD FEEL ABOUT THE DISTINCTION BETWEEN ICANN\'S ROLE WHEN IT COMES TO TECHNICAL POLICY RELATING TO GENERIC TOP-LEVEL DOMAINS AND WHERE ASSOCIATED POLICIES GET MADE AT THE COUNTRY OR THE HOME JURISDICTION RELATE TO GO A CCTLD.\r\n\r\nIF A GOVERNMENT OR ADMINISTRATION MAKES A DECISION THAT IT ONE WAY OR ANOTHER IS COMFORTABLE WITH THAT PROCESS, THERE\'S BEEN RECENT EXAMPLES, FOR EXAMPLE, WITH DOT LA, ICANN, I DON\'T THINK, IS EMPOWERED TO INTERVENE IN THAT DOMESTIC -- IN THE DOMESTIC DECISION-MAKING PROCESS RELATE TO GO THE CC IN ITS HOME GOVERNMENT. AND I THINK THAT IS ONE OF THE CLEAR DISTINCTIONS THAT I THINK NEARLY EVERY CC HAS MADE IN THE PROCESS IN THE LONG DISCUSSION TAKING PLACE WITH THE CCNSO AND THE FORMATION OF THE CCNSO. SO WHILE I APPRECIATE YOUR OBSERVATION, I THINK IT COMES TO THE POINT OF DISTINCTION BETWEEN THE SEATS OF POWER FOR DECISION-MAKING BETWEEN GTLDS AND CCTLDS.\r\n\r\nERIC BRUNNER-WILLIAMS: IF I MAY, I\'D LIKE TO RESPOND. AGAIN, ERIC BRUNNER-WILLIAMS. I AGREE WITH THE PREVIOUS SPEAKER ABOUT THE REPURPOSED CCTLDS. THE RESPONSE FROM THE CHAIR OR FROM THE PRESIDENT, EXCUSE ME, IS THAT THIS REALLY IS AN INTERNAL MATTER OF THE HOST GOVERNMENT, MORE OR LESS.\r\n\r\nIT\'S BEEN OVER A YEAR NOW SINCE DOT IQ DISAPPEARED, AND IT\'S BEEN THAT LONG SINCE I\'VE BROUGHT THIS MATTER TO THE ATTENTION OF THE ICANN BOARD BY IT\'S FORMER GC, LOUIS.\r\n\r\nSO THERE IS NO -- I MEAN, THAT\'S GOT TO BE ANSWERED DIFFERENTLY. YOU CAN\'T POINT TO THE NON-EXISTENCE OF THE CCTLD AND SAY THAT\'S A MATTER OF THE INTERNAL AFFAIRS OF THE CCTLD NATION STATE OR -- MY POINT IS WHERE IS DOT IQ? WE KNOW WHAT\'S HAPPENED WITH DOT CC AND SO FORTH, SO WHERE IS DOT IQ?\r\n\r\n>>VINT CERF: WELL, FIRST OF ALL, DOT IQ, AS NEAR AS I AM AWARE, ISN\'T FUNCTIONING.\r\nTHE PROBLEM WE HAVE WITH INSTITUTING OPERATIONS FOR DOT IQ, AT LEAST AS I SEE IT, IS THAT WE HAVE A PROCEDURE FOR DELEGATING RESPONSIBILITY FOR OPERATING EACH CCTLD, AND PART OF THAT PROCEDURE INVOLVES A GOVERNMENTAL INTERACTION, AND IT\'S NOT CLEAR WHAT ENTITY SHOULD SERVE AS THAT GOVERNMENTAL PARTY FOR DOT IQ.\r\n\r\nSO FRANKLY, I THINK WE ARE STALLED IN TERMS OF REVIVING THAT UNTIL THERE IS A GOVERNMENT THAT CAN PARTICIPATE TOGETHER WITH THE OTHER PARTIES THAT WE NORMALLY CONSULT WITH, INCLUDING THE LOCAL INTERNET COMMUNITY, BEFORE A DELEGATION OCCURS.\r\n\r\nIF YOU KNOW DIFFERENTLY ABOUT THE CURRENT OPERATION OF IQ, THIS WOULD BE HELPFUL TO SAY SOMETHING.\r\n\r\n>>ERIC BRUNNER-WILLIAMS: A YEAR AGO, I STARTED DOCUMENTING THE EFFECT OF THE NETWORK OPERATIONS IN IRAQ AS WELL AS THE EFFECT ON THE NETWORK INFRASTRUCTURE OR THE NIC IN IRAQ. CURRENTLY, THE SPONSORS ARE IN U.S. CUSTODY. THEY WERE, AT THE TIME, IN TEXAS AND THEY\'VE BEEN TAKEN INTO FEDERAL CUSTODY FOR REASONS WHICH ARE IRRELEVANT. AND I\'VE WRITTEN A SUMMARY OF HOW TO TAKE CONTROL OF DOT IQ, PRESUMING ONE IS WILLING TO COMMIT A MINOR CRIME, WHICH YOU CAN FIND AT THE FOLLOWING URL. IQ.NIC-NAA.NET. AND UNDERNEATH THERE THERE SHOULD STILL BE THE NOC PAGE WHICH DESCRIBES THE DESTRUCTION OF THE IRAQI INFRASTRUCTURE, AS WELL AS (INAUDIBLE) AS WELL AS THE STEPS ONE WOULD GO THROUGH IN ORDER TO SEIZE DOT IQ, EITHER BY SEIZING ITS ADDRESS SPACE OR THE RELATIONSHIP BETWEEN THE SPONSOR AND ICANN.\r\n\r\nSO IT\'S ALL THERE AS FAR AS I KNOW, AND THAT\'S STILL CURRENT DATA. THEY\'RE STILL IN JAIL.\r\nTHANK YOU.\r\n\r\n>>VINT CERF: OKAY. NOT TO HOLD EVERYBODY UP. MAYBE WE CAN TAKE THIS OFF-LINE TO GET MORE DETAIL.\r\nCOULD I TAKE THE NEXT QUESTION.\r\n\r\n>>STEPHEN DYER: STEPHEN DYER, NOMINET. THIS IS A FOLLOW-UP TO THE LAST ONE, BUT NOT ON THE IRAQI, VINT. I\'M STEPHEN DYER.\r\n\r\nTHE POINT I MADE, IS THAT COUNTRY CODES WERE BEING USED DIFFERENTLY FROM THE WAY IN WHICH THEY WERE ALLOCATED. I JUST WANTED TO MAKE THE POINT THAT USUALLY MISUSE OF DOMAINS IS A LEGAL MATTER TO DO WITH DO I HAVE OWNERSHIP OF IT. IS IT MY TRADEMARK OR HAS SOMEONE ELSE STOLEN MY TRADEMARK. IT\'S QUITE DANGEROUS, I THINK, IF WE TREAD INTO THE AREA OF SAYING WE SHOULD TAKE THIS DOMAIN NAME AWAY FROM THESE PEOPLE BECAUSE THEY ARE DOING SOMETHING DIFFERENT WITH IT FROM WHAT WE THOUGHT WAS GOING TO HAPPEN IN THE FIRST PLACE. I THINK THAT\'S A VERY DANGEROUS ROAD TO GO DOWN, AND I THINK IT NEEDS VERY CAREFUL CONSIDERATION BEFORE WE DO SO. THANK YOU.\r\n\r\n>>VINT CERF: THANK YOU VERY MUCH. THIS DOES GET TO THE QUESTION OF INTENT BEHIND THE ORIGINAL ALLOCATION OF THE CCTLDS, AND THE RECOGNITION THAT THE AREA\'S GOVERNANCE OR HOW DO I -- THERE\'S A FORMULA THE GAC USES ABOUT AREAS OF ECONOMIC INTEREST. BUT THE PARTIES WHO ARE RESPONSIBLE FOR THOSE TOP-LEVEL DOMAINS HAVE A SUBSTANTIAL DEGREE TO SAY ABOUT HOW THEY GET USED. AND MY SENSE IS THAT OUR PRACTICES SHOULD NOT BE TO DICTATE SUCH MATTERS.\r\n\r\nTHE CCNSO MIGHT CONCEIVABLY ADDRESS QUESTIONS LIKE THAT, BUT THAT WOULD BE A DECISION THAT THEY WOULD MAKE TO PURSUE SUCH A QUESTION. I DON\'T SEE ICANN HAVING A NEED TO DO THAT. QUITE INDEPENDENTLY, OF COURSE, FROM MY PERSPECTIVE OF SOME 35 YEARS, I NEVER ANTICIPATED THAT COUNTRY CODES WOULD BE USED IN THE FASHION THAT SOME OF THEM ARE. AND IT\'S QUITE CREATIVE, TO FIRST ORDER. BUT NONETHELESS WE HAVE A VERY DIFFERENT RELATIONSHIP WITH THE CC COMMUNITY THAN WE HAVE WITH THE GTLD COMMUNITY, AND THEREFORE, WE HAVE TO RESPECT THAT.\r\n\r\nOKAY. I\'M TOLD THAT THERE IS A POWER FAILURE OUTSIDE, SO TAKING A BREAK IS NOT A GOOD IDEA. SO IF YOU\'RE WONDERING ABOUT THIS, WE\'RE GOING TO CONTINUE ON.','ccTLDs, Iraq, and gTLDs',0,'','draft','closed','closed','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'http://029.colo.coop/?p=62',0,'post','',0),(63,2,'0000-00-00 00:00:00','0000-00-00 00:00:00','>>ERIC BRUNNER-WILLIAMS: ERIC BRUNNER-WILLIAMS, REGISTRAR OPERATOR.\r\n\r\nI HAVE A QUESTION FOR THE PRESIDENT WITH REGARDS TO THE REQUESTS THAT STAFF RECEIVES FOR DELEGATIONS AND REDELEGATIONS OF CCTLDS.\r\n\r\nI MENTIONED YESTERDAY IN MY LITTLE PROJECT, WHAT LITTLE I KNOW ABOUT DOT IQ, WHICH IS ONLINE AND YOU\'RE ALL INVITED TO TAKE A LOOK AT, WHAT LITTLE I KNOW ABOUT DOT IQ. I INVITE YOU TO SHARE WITH ME THE REQUESTS YOU GET FROM ARBITRARY PARTIES FOR REDELEGATION OF THAT PARTICULAR TLD SO THAT I CAN ADD TO WHAT LITTLE I KNOW ABOUT DOT IQ.\r\n\r\n>>PAUL TWOMEY: THANKS FOR THE QUESTION, AND I APPRECIATE THE SPIRIT IN WHICH YOU ASK IT.\r\nI CAN TELL YOU THAT WE HAVE RECEIVED DOUBLE-DIGIT INQUIRIES FROM VARIOUS PARTIES CONCERNING THE DOT IQ SPACE. I DON\'T THINK IT\'S APPROPRIATE FOR ME TO GIVE YOU DETAILS ABOUT THAT, AND THE -- ONE OF THE PRINCIPLES THAT\'S BEEN IMPORTANT IN THE MANAGEMENT OF CCTLDS AND PARTICULARLY FOR REDELEGATION REQUESTS, HAS BEEN A PRINCIPLE OF SOME CONFIDENTIALITY FOR PEOPLE WHEN THEY\'RE INTERACTING WITH US. NOT WHEN THERE\'S A DECISION. OBVIOUSLY, WHEN IT\'S GONE THROUGH AND THERE\'S A DECISION, IT\'S PUBLIC PROCESS, BUT THE INITIAL COMMUNICATIONS HAVE NOT BEEN PUBLIC. BUT I CAN TELL YOU THERE HAVE BEEN SOME DOUBLE-DIGIT INQUIRIES FROM GROUPS.\r\n\r\n>>VINT CERF: THANK YOU, PAUL.','How many would be .iq ees?',0,'','draft','closed','closed','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'http://029.colo.coop/?p=63',0,'post','',0),(64,2,'0000-00-00 00:00:00','0000-00-00 00:00:00','The ICANN BoD voted 11-0-1 to proceed on VGRS\'s WLS scheme. Not the best day ICANN\'s ever had.','ICANN and WLS',0,'','draft','closed','closed','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'http://029.colo.coop/?p=64',0,'post','',0),(67,2,'2006-12-31 22:07:22','2007-01-01 02:07:22','This is a zipscribble.','zipscribble',0,'','inherit','closed','closed','','zipscribble','','','2006-12-31 22:07:22','2007-01-01 02:07:22','',68,'http://029.colo.coop/wp-content/uploads/2006/12/zipscribblemap-color-names-thumb.jpg',0,'attachment','image/jpeg',0),(68,2,'2006-12-31 22:08:16','2007-01-01 02:08:16','\"zipscribble','zip',0,'','publish','closed','closed','','zip','','','2006-12-31 22:35:08','2007-01-01 02:35:08','',0,'http://029.colo.coop/?p=68',0,'post','',0),(69,2,'2006-12-31 22:26:20','2007-01-01 02:26:20','This is a zipscribble (png)','zipscribble (png)',0,'','inherit','closed','closed','','zipscribble-png','','','2006-12-31 22:26:20','2007-01-01 02:26:20','',68,'http://029.colo.coop/wp-content/uploads/2006/12/zipscribblemap-color-names.png',0,'attachment','image/png',0),(70,2,'0000-00-00 00:00:00','0000-00-00 00:00:00','http://tldp.org/HOWTO/html_single/Flash-Memory-HOWTO/\r\n\r\nhttp://www.procmail.org/\r\n\r\nhttp://www.snertsoft.com/sendmail/milter-clamc/\r\n\r\nhttp://www.elandsys.com/resources/sendmail/index.html','links',0,'','draft','closed','closed','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'http://029.colo.coop/?p=70',0,'post','',0),(77,2,'2007-03-18 21:09:10','2007-03-19 01:09:10','','science',0,'','publish','closed','closed','','science','','','2007-03-18 21:09:10','2007-03-19 01:09:10','',0,'http://029.colo.coop/?page_id=77',0,'page','',0),(79,2,'2007-03-18 21:10:01','2007-03-19 01:10:01','','parallel programming',0,'','publish','closed','closed','','parallel-programming','','','2007-03-18 21:10:01','2007-03-19 01:10:01','',77,'http://029.colo.coop/?page_id=79',0,'page','',0),(81,2,'2007-03-18 21:10:33','2007-03-19 01:10:33','','computational molecular biology',0,'','publish','closed','closed','','computational-molecular-biology','','','2007-03-18 21:10:33','2007-03-19 01:10:33','',77,'http://029.colo.coop/?page_id=81',0,'page','',0),(82,2,'2007-03-18 21:11:06','2007-03-19 01:11:06','','climate',0,'','publish','closed','closed','','climate','','','2007-03-18 21:11:06','2007-03-19 01:11:06','',77,'http://029.colo.coop/?page_id=82',0,'page','',0),(73,2,'2006-12-26 09:50:21','2006-12-26 13:50:21','now on the releng_6 production set, using openssl 0.9.8d.','bind 9.5.0a1',0,'','publish','closed','closed','','bind-950a1','','','2007-01-14 09:51:47','2007-01-14 13:51:47','',0,'http://029.colo.coop/?p=73',0,'post','',0),(74,2,'2007-01-16 19:56:12','2007-01-16 23:56:12','http://cs124.cs.ucdavis.edu/appendices/PerlAppendix.html','perl for bioinformatics',0,'','publish','closed','closed','','perl-for-bioinformatics','','','2007-01-16 19:56:12','2007-01-16 23:56:12','',0,'http://029.colo.coop/?p=74',0,'post','',0),(75,2,'0000-00-00 00:00:00','0000-00-00 00:00:00','http://www.fmepnet.org/debian_wpa.html','debian wireless',0,'','draft','closed','closed','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'http://029.colo.coop/?p=75',0,'post','',0),(76,2,'2007-02-17 14:08:06','2007-02-17 18:08:06','IX = Internet Exchange Point\r\n
      \r\n
    1. Usually located in a carrier neutral facility
    2. \r\n
    3. Used by ISPs to exchange traffic
    4. \r\n
    5. Each ISP responsible for bringing their own circuits to IX
    6. \r\n
    7. Exchange traffic with other ISPs on either a settlement free basis or buying transit or peering
    8. \r\n
    9. In the past IXs were ATM switches or FDDI switches
    10. \r\n
    11. Most IXs are now massively interconnected fiber patch panels
    12. \r\n
    ','IX terms',0,'','publish','closed','closed','','ix-terms','','','2007-02-17 14:08:06','2007-02-17 18:08:06','',0,'http://029.colo.coop/?p=76',0,'post','',0),(85,2,'2007-03-19 11:49:18','2007-03-19 15:49:18','installed on the debian node','linux-2.6.20.3',0,'','draft','closed','closed','','linux-26203','','','2007-03-19 13:11:53','2007-03-19 17:11:53','',0,'http://029.colo.coop/?p=85',0,'post','',0),(86,2,'2007-04-25 00:55:46','2007-04-25 04:55:46','
    Stacy Leeds Principal Chief Candidate Interview
    High | Low','test',0,'','publish','closed','closed','','test','','','2007-04-25 00:59:02','2007-04-25 04:59:02','',0,'http://029.colo.coop/?p=86',0,'post','',0),(83,2,'2007-03-18 23:40:50','2007-03-19 03:40:50','as usual, the wp upgrade is simplicity. the -066 and -072 versions of the a-blog-beyond theme fails however at links.','wordpress upgrade',0,'','publish','closed','closed','','wordpress-upgrade','','','2007-03-19 13:12:38','2007-03-19 17:12:38','',0,'http://029.colo.coop/?p=83',0,'post','',0),(84,2,'2007-03-19 11:30:33','2007-03-19 15:30:33','installed on the production fbsd set','openssl 0.9.8e bind-9.5.0a2',0,'','publish','closed','closed','','openssl-098e-bind-950a2','','','2007-03-19 11:30:33','2007-03-19 15:30:33','',0,'http://029.colo.coop/?p=84',0,'post','',0); /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_usermeta` -- DROP TABLE IF EXISTS `wp_usermeta`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_usermeta` ( `umeta_id` bigint(20) NOT NULL AUTO_INCREMENT, `user_id` bigint(20) NOT NULL DEFAULT '0', `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`) ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_usermeta` -- LOCK TABLES `wp_usermeta` WRITE; /*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */; INSERT INTO `wp_usermeta` VALUES (1,1,'wp_user_level','10'),(2,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(3,2,'first_name','Eric'),(4,2,'last_name','Brunner-Williams'),(5,2,'nickname','ebw'),(6,2,'description',''),(7,2,'jabber',''),(8,2,'aim',''),(9,2,'yim',''),(10,2,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(11,2,'wp_user_level','10'),(12,2,'wp_autosave_draft_ids','a:1:{i:-1177476913;i:86;}'); /*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_users` -- DROP TABLE IF EXISTS `wp_users`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_users` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_login` varchar(60) NOT NULL DEFAULT '', `user_pass` varchar(64) NOT NULL DEFAULT '', `user_nicename` varchar(50) NOT NULL DEFAULT '', `user_email` varchar(100) NOT NULL DEFAULT '', `user_url` varchar(100) NOT NULL DEFAULT '', `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_activation_key` varchar(60) NOT NULL DEFAULT '', `user_status` int(11) NOT NULL DEFAULT '0', `display_name` varchar(250) NOT NULL DEFAULT '', PRIMARY KEY (`ID`), KEY `user_login_key` (`user_login`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_users` -- LOCK TABLES `wp_users` WRITE; /*!40000 ALTER TABLE `wp_users` DISABLE KEYS */; INSERT INTO `wp_users` VALUES (1,'admin','165fa80685c79404ba227c31bf10810c','admin','ebw@abenaki.wabanaki.net','','2006-04-03 20:45:32','',0,'ebw'),(2,'ebw','e063ff152e946820a804ca32cae68cbc','ebw','ebw@abenaki.wabanaki.net','http://','2006-04-04 00:47:08','',0,'ebw'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2008-06-04 6:30:20