-- MySQL dump 10.11 -- -- Host: localhost Database: catalog_wp -- ------------------------------------------------------ -- Server version 5.0.51a-24+lenny5 /*!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_commentmeta` -- DROP TABLE IF EXISTS `wp_commentmeta`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL auto_increment, `comment_id` bigint(20) unsigned NOT NULL default '0', `meta_key` varchar(255) default NULL, `meta_value` longtext, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_commentmeta` -- LOCK TABLES `wp_commentmeta` WRITE; /*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_commentmeta` 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` bigint(20) unsigned 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` varchar(20) NOT NULL default '1', `comment_agent` varchar(255) NOT NULL default '', `comment_type` varchar(20) NOT NULL default '', `comment_parent` bigint(20) unsigned NOT NULL default '0', `user_id` bigint(20) unsigned NOT NULL default '0', PRIMARY KEY (`comment_ID`), KEY `comment_approved` (`comment_approved`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; 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 */; INSERT INTO `wp_comments` VALUES (1,1,'Mr WordPress','','http://wordpress.org/','','2011-02-26 19:44:10','2011-02-26 19:44:10','Hi, this is a comment.
To delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wp_comments` 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) unsigned 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_description` varchar(255) NOT NULL default '', `link_visible` varchar(20) NOT NULL default 'Y', `link_owner` bigint(20) unsigned 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_visible` (`link_visible`) ) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8; 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 (1,'http://codex.wordpress.org/','Documentation','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(2,'http://wordpress.org/news/','WordPress Blog','','','','Y',1,0,'0000-00-00 00:00:00','','','http://wordpress.org/news/feed/'),(3,'http://wordpress.org/extend/ideas/','Suggest Ideas','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(4,'http://wordpress.org/support/','Support Forum','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(5,'http://wordpress.org/extend/plugins/','Plugins','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(6,'http://wordpress.org/extend/themes/','Themes','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(7,'http://planet.wordpress.org/','WordPress Planet','','','','Y',1,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) unsigned NOT NULL auto_increment, `blog_id` int(11) NOT NULL default '0', `option_name` varchar(64) NOT NULL default '', `option_value` longtext NOT NULL, `autoload` varchar(20) NOT NULL default 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=MyISAM AUTO_INCREMENT=1788 DEFAULT CHARSET=utf8; 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','http://catalog.org.uk','yes'),(2,0,'blogname','CATALOG','yes'),(3,0,'blogdescription','access to tools','yes'),(4,0,'users_can_register','0','yes'),(5,0,'admin_email','oli@zilla.org.uk','yes'),(6,0,'start_of_week','1','yes'),(7,0,'use_balanceTags','0','yes'),(8,0,'use_smilies','1','yes'),(9,0,'require_name_email','1','yes'),(10,0,'comments_notify','1','yes'),(11,0,'posts_per_rss','10','yes'),(12,0,'rss_use_excerpt','0','yes'),(13,0,'mailserver_url','mail.example.com','yes'),(14,0,'mailserver_login','login@example.com','yes'),(15,0,'mailserver_pass','password','yes'),(16,0,'mailserver_port','110','yes'),(17,0,'default_category','1','yes'),(18,0,'default_comment_status','closed','yes'),(19,0,'default_ping_status','closed','yes'),(20,0,'default_pingback_flag','','yes'),(21,0,'default_post_edit_rows','20','yes'),(22,0,'posts_per_page','10','yes'),(23,0,'date_format','F j, Y','yes'),(24,0,'time_format','g:i a','yes'),(25,0,'links_updated_date_format','F j, Y g:i a','yes'),(26,0,'links_recently_updated_prepend','','yes'),(27,0,'links_recently_updated_append','','yes'),(28,0,'links_recently_updated_time','120','yes'),(29,0,'comment_moderation','','yes'),(30,0,'moderation_notify','1','yes'),(31,0,'permalink_structure','','yes'),(32,0,'gzipcompression','0','yes'),(33,0,'hack_file','0','yes'),(34,0,'blog_charset','UTF-8','yes'),(35,0,'moderation_keys','','no'),(36,0,'active_plugins','a:0:{}','yes'),(37,0,'home','http://catalog.org.uk','yes'),(38,0,'category_base','','yes'),(39,0,'ping_sites','http://rpc.pingomatic.com/','yes'),(40,0,'advanced_edit','0','yes'),(41,0,'comment_max_links','2','yes'),(42,0,'gmt_offset','0','yes'),(43,0,'default_email_category','1','yes'),(44,0,'recently_edited','a:2:{i:0;s:64:\"/var/www-oli/catalog/silo2/wp-content/themes/catalog-1/style.css\";i:2;s:0:\"\";}','no'),(45,0,'template','catalog-1','yes'),(46,0,'stylesheet','catalog-1','yes'),(47,0,'comment_whitelist','1','yes'),(48,0,'blacklist_keys','','no'),(49,0,'comment_registration','','yes'),(50,0,'rss_language','en','yes'),(51,0,'html_type','text/html','yes'),(52,0,'use_trackback','0','yes'),(53,0,'default_role','subscriber','yes'),(54,0,'db_version','17056','yes'),(55,0,'uploads_use_yearmonth_folders','1','yes'),(56,0,'upload_path','','yes'),(57,0,'blog_public','0','yes'),(58,0,'default_link_category','2','yes'),(59,0,'show_on_front','page','yes'),(60,0,'tag_base','','yes'),(61,0,'show_avatars','1','yes'),(62,0,'avatar_rating','G','yes'),(63,0,'upload_url_path','','yes'),(64,0,'thumbnail_size_w','150','yes'),(65,0,'thumbnail_size_h','150','yes'),(66,0,'thumbnail_crop','1','yes'),(67,0,'medium_size_w','300','yes'),(68,0,'medium_size_h','300','yes'),(69,0,'avatar_default','mystery','yes'),(70,0,'enable_app','0','yes'),(71,0,'enable_xmlrpc','0','yes'),(72,0,'large_size_w','1024','yes'),(73,0,'large_size_h','1024','yes'),(74,0,'image_default_link_type','file','yes'),(75,0,'image_default_size','','yes'),(76,0,'image_default_align','','yes'),(77,0,'close_comments_for_old_posts','','yes'),(78,0,'close_comments_days_old','14','yes'),(79,0,'thread_comments','1','yes'),(80,0,'thread_comments_depth','5','yes'),(81,0,'page_comments','','yes'),(82,0,'comments_per_page','50','yes'),(83,0,'default_comments_page','newest','yes'),(84,0,'comment_order','asc','yes'),(85,0,'sticky_posts','a:0:{}','yes'),(86,0,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(87,0,'widget_text','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(88,0,'widget_rss','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(89,0,'timezone_string','','yes'),(90,0,'embed_autourls','1','yes'),(91,0,'embed_size_w','','yes'),(92,0,'embed_size_h','600','yes'),(93,0,'page_for_posts','0','yes'),(94,0,'page_on_front','2','yes'),(95,0,'default_post_format','0','yes'),(96,0,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{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:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";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;}}}','yes'),(97,0,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(98,0,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(99,0,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(100,0,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(101,0,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,0,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:13:{i:0;s:7:\"pages-2\";i:1;s:10:\"calendar-2\";i:2;s:7:\"links-2\";i:3;s:6:\"text-2\";i:4;s:5:\"rss-2\";i:5;s:11:\"tag_cloud-2\";i:6;s:10:\"nav_menu-2\";i:7;s:8:\"search-2\";i:8;s:14:\"recent-posts-2\";i:9;s:17:\"recent-comments-2\";i:10;s:10:\"archives-2\";i:11;s:12:\"categories-2\";i:12;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'),(103,0,'cron','a:3:{i:1332272652;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1332272657;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'),(104,0,'_transient_doing_cron','1332237754','yes'),(105,0,'_site_transient_update_core','O:8:\"stdClass\":3:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":7:{s:8:\"response\";s:7:\"upgrade\";s:3:\"url\";s:30:\"http://wordpress.org/download/\";s:7:\"package\";s:40:\"http://wordpress.org/wordpress-3.3.1.zip\";s:7:\"current\";s:5:\"3.3.1\";s:6:\"locale\";s:5:\"en_US\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";}}s:12:\"last_checked\";i:1332237754;s:15:\"version_checked\";s:3:\"3.1\";}','yes'),(106,0,'_site_transient_update_plugins','O:8:\"stdClass\":3:{s:12:\"last_checked\";i:1332221255;s:7:\"checked\";a:2:{s:19:\"akismet/akismet.php\";s:5:\"2.5.3\";s:9:\"hello.php\";s:3:\"1.6\";}s:8:\"response\";a:1:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":5:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:7:\"akismet\";s:11:\"new_version\";s:5:\"2.5.5\";s:3:\"url\";s:44:\"http://wordpress.org/extend/plugins/akismet/\";s:7:\"package\";s:55:\"http://downloads.wordpress.org/plugin/akismet.2.5.5.zip\";}}}','yes'),(109,0,'_site_transient_update_themes','O:8:\"stdClass\":3:{s:12:\"last_checked\";i:1332221255;s:7:\"checked\";a:3:{s:9:\"catalog-1\";s:1:\"1\";s:7:\"catalog\";s:3:\"0.1\";s:7:\"toolbox\";s:3:\"1.1\";}s:8:\"response\";a:1:{s:7:\"toolbox\";a:3:{s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:42:\"http://wordpress.org/extend/themes/toolbox\";s:7:\"package\";s:59:\"http://wordpress.org/extend/themes/download/toolbox.1.4.zip\";}}}','yes'),(110,0,'_transient_random_seed','da3d1672a83e94a2530aa1546fa42259','yes'),(111,0,'auth_salt','HAk=Zp/6}u7WAiSux5zd!@aTz7G^wbP+pt3qO?vz**l=F*Ap|jaA:u{~ISV3>YAb','yes'),(112,0,'logged_in_salt','|B$nH`8yuh!21,kOd^;m-*CvVj|^QKkI{PXt*lO0 mvcDc@UFXT:-peb&pGf68A','yes'),(113,0,'widget_pages','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(114,0,'widget_calendar','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(115,0,'widget_links','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(116,0,'widget_tag_cloud','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(117,0,'widget_nav_menu','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(118,0,'dashboard_widget_options','a:4:{s:25:\"dashboard_recent_comments\";a:1:{s:5:\"items\";i:5;}s:24:\"dashboard_incoming_links\";a:5:{s:4:\"home\";s:21:\"http://catalog.org.uk\";s:4:\"link\";s:97:\"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://catalog.org.uk/\";s:3:\"url\";s:130:\"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://catalog.org.uk/\";s:5:\"items\";i:10;s:9:\"show_date\";b:0;}s:17:\"dashboard_primary\";a:7:{s:4:\"link\";s:26:\"http://wordpress.org/news/\";s:3:\"url\";s:31:\"http://wordpress.org/news/feed/\";s:5:\"title\";s:14:\"WordPress Blog\";s:5:\"items\";i:2;s:12:\"show_summary\";i:1;s:11:\"show_author\";i:0;s:9:\"show_date\";i:1;}s:19:\"dashboard_secondary\";a:7:{s:4:\"link\";s:28:\"http://planet.wordpress.org/\";s:3:\"url\";s:33:\"http://planet.wordpress.org/feed/\";s:5:\"title\";s:20:\"Other WordPress News\";s:5:\"items\";i:5;s:12:\"show_summary\";i:0;s:11:\"show_author\";i:0;s:9:\"show_date\";i:0;}}','yes'),(119,0,'nonce_salt','&p|~]2-=6PX;Jj#iR!W1P(ez3aKM_AFt0)i+w0H=jEvL|3KesL!_#|P_Je*RKu,{','yes'),(227,0,'current_theme','Catalog 1','yes'),(121,0,'can_compress_scripts','1','yes'),(158,0,'_transient_timeout_feed_mod_3300e117382e9f25040bda3e732dde55','1298863185','no'),(159,0,'_transient_feed_mod_3300e117382e9f25040bda3e732dde55','1298819985','no'),(1750,0,'_transient_timeout_feed_37d33a1884f94d582dc2f6480f84247c','1331960945','no'),(1751,0,'_transient_feed_37d33a1884f94d582dc2f6480f84247c','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:4:\"\n \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:33:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"link:http://catalog.org.uk/ - Google Blog Search\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"http://www.google.com/search?ie=utf-8&q=link:http://catalog.org.uk/&tbm=blg&tbs=sbd:1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"Your search - link:http://catalog.org.uk/ - did not match any documents. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://a9.com/-/spec/opensearch/1.1/\";a:3:{s:12:\"totalResults\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:10:\"startIndex\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:12:\"itemsPerPage\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"10\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:12:\"content-type\";s:28:\"text/xml; charset=ISO-8859-1\";s:4:\"date\";s:29:\"Fri, 16 Mar 2012 17:09:05 GMT\";s:7:\"expires\";s:2:\"-1\";s:13:\"cache-control\";s:18:\"private, max-age=0\";s:10:\"set-cookie\";a:2:{i:0;s:143:\"PREF=ID=84c27da2ddb37be2:FF=0:TM=1331917745:LM=1331917745:S=Vmz4C8xY8o3EMVPJ; expires=Sun, 16-Mar-2014 17:09:05 GMT; path=/; domain=.google.com\";i:1;s:212:\"NID=57=R9iWg6xBOKp8_iVbqezAMtr4AcH_-FCVOCcRr68i_2rCIRpAvt3x7LZykRMh6QB1XQ2verJCh-5_2p9DYyux_4aauI3TxFKfehYnnfaTy797STG-dsciCFjc2-0WuSGn; expires=Sat, 15-Sep-2012 17:09:05 GMT; path=/; domain=.google.com; HttpOnly\";}s:3:\"p3p\";s:122:\"CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"\";s:6:\"server\";s:3:\"gws\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";}s:5:\"build\";s:14:\"20090627192103\";}','no'),(1752,0,'_transient_timeout_feed_mod_37d33a1884f94d582dc2f6480f84247c','1331960945','no'),(1753,0,'_transient_feed_mod_37d33a1884f94d582dc2f6480f84247c','1331917745','no'),(1758,0,'_transient_timeout_feed_a5420c83891a9c88ad2a4f04584a5efc','1331960946','no'),(1759,0,'_transient_feed_a5420c83891a9c88ad2a4f04584a5efc','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:72:\"\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 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress Plugins » View: Most Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"http://wordpress.org/extend/plugins/browse/popular/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress Plugins » View: Most Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 16 Mar 2012 17:05:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:15:{i:0;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Matt Mullenweg on \"Akismet\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"http://wordpress.org/extend/plugins/akismet/#post-15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:11:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"15@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Akismet checks your comments against the Akismet web service to see if they look like spam or not.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"Takayuki Miyoshi on \"Contact Form 7\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/extend/plugins/contact-form-7/#post-2141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2007 12:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"2141@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Alex Rabe on \"NextGEN Gallery\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.org/extend/plugins/nextgen-gallery/#post-1169\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Apr 2007 20:08:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"1169@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"NextGEN Gallery is a full integrated Image Gallery plugin for WordPress with dozens of options and features.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Alex Rabe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Brian Colinger on \"WordPress Importer\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/extend/plugins/wordpress-importer/#post-18101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 May 2010 17:42:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"18101@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brian Colinger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"uberdose on \"All in One SEO Pack\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.org/extend/plugins/all-in-one-seo-pack/#post-753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Mar 2007 20:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"753@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WordPress SEO plugin to automatically optimize your Wordpress blog for Search Engines.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"kikadev on \"gtrans\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://wordpress.org/extend/plugins/gtrans/#post-30417\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Sep 2011 11:48:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"30417@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"GTranslate: Google Translate for your website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"kikadev\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Takayuki Miyoshi on \"Really Simple CAPTCHA\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.org/extend/plugins/really-simple-captcha/#post-9542\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Mar 2009 02:17:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"9542@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"Really Simple CAPTCHA is a CAPTCHA module intended to be called from other plugins. It is originally created for my Contact Form 7 plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Arne on \"Google XML Sitemaps\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wordpress.org/extend/plugins/google-sitemap-generator/#post-132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"132@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Arne\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Joost de Valk on \"Sociable\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/extend/plugins/sociable/#post-2865\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 31 Jan 2008 11:36:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"2865@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:140:\"Sociable continues being the leader in the sharing space of WordPress plugins. Started more than 2 years ago, and with over 1,5mm downloads.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Joost de Valk on \"Google Analytics for WordPress\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.org/extend/plugins/google-analytics-for-wordpress/#post-2316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Sep 2007 12:15:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"2316@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:145:\"Track your WordPress site easily and with lots of metadata: views per author & category, automatic tracking of outbound clicks and pageviews.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Lester Chan on \"WP-PageNavi\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://wordpress.org/extend/plugins/wp-pagenavi/#post-363\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 23:17:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"363@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Adds a more advanced paging navigation interface.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Lester Chan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"BraveNewCode Inc. on \"WPtouch\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://wordpress.org/extend/plugins/wptouch/#post-5468\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 May 2008 04:58:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"5468@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WPtouch: A simple, powerful and elegant mobile theme for your website.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"BraveNewCode Inc.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"Mike Challis on \"Fast Secure Contact Form\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"http://wordpress.org/extend/plugins/si-contact-form/#post-12636\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Aug 2009 01:20:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"12636@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"A super customizable contact form that lets your visitors send you email. Blocks all automated spammers. No templates to mess with.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mike Challis\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"Joost de Valk on \"WordPress SEO by Yoast\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/extend/plugins/wordpress-seo/#post-8321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jan 2009 20:34:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"8321@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the WordPress SEO plugin by Yoast.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"Andrew Ozz on \"TinyMCE Advanced\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"http://wordpress.org/extend/plugins/tinymce-advanced/#post-2082\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Jun 2007 15:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"2082@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Enables the advanced features of TinyMCE, the WordPress WYSIWYG editor.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Andrew Ozz\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:52:\"http://wordpress.org/extend/plugins/rss/view/popular\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 16 Mar 2012 17:09:06 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:19:\"2007-03-09 22:11:30\";s:14:\"content-length\";s:4:\"7730\";s:4:\"x-nc\";s:11:\"HIT luv 139\";}s:5:\"build\";s:14:\"20090627192103\";}','no'),(156,0,'_transient_timeout_feed_3300e117382e9f25040bda3e732dde55','1298863185','no'),(157,0,'_transient_feed_3300e117382e9f25040bda3e732dde55','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:1:\"\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"link:http://catalog.org.uk/ - Google Blog Search\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"http://blogsearch.google.com/blogsearch?scoring=d&ie=ISO-8859-1&num=10&q=link:http://catalog.org.uk/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"Your search - link:http://catalog.org.uk/ - did not match any documents. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://a9.com/-/spec/opensearch/1.1/\";a:3:{s:12:\"totalResults\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:10:\"startIndex\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:12:\"itemsPerPage\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"10\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:4:\"date\";s:29:\"Sun, 27 Feb 2011 15:19:45 GMT\";s:6:\"pragma\";s:8:\"no-cache\";s:7:\"expires\";s:29:\"Fri, 01 Jan 1990 00:00:00 GMT\";s:13:\"cache-control\";s:25:\"no-cache, must-revalidate\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"set-cookie\";s:138:\"PREF=ID=2603a00e823e21cc:TM=1298819985:LM=1298819985:S=_Z7TjMTRteLNoww2; expires=Tue, 26-Feb-2013 15:19:45 GMT; path=/; domain=.google.com\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:6:\"server\";s:4:\"bsfe\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";}s:5:\"build\";s:14:\"20090627192103\";}','no'),(1762,0,'_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c','1331960947','no'),(1763,0,'_transient_feed_867bd5c64f85878d03a060509cd2f92c','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\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\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\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Matt: iPad 3 Launch Experience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=40336\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"http://ma.tt/2012/03/ipad-3-launch-experience/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2758:\"

I’m in New Orleans for a few days and, long story short, although I pre-ordered the New iPad it’s arriving to an address I won’t be at for a while, so since I was up early this morning thought I’d go to the nearest Apple store in Metairie and see if I could pick one up, or at least be part of the excitement that always accompanies Apple launch mornings.

\n

The store had opened at 8, but I arrived at about 8:55, and the scene was not at all what I expected. There was a crowd outside the Apple store, but it was of blue-shirt employees, I walked up and said I was there for a 64GB white AT&T iPad, the fellow handed me a card, and 5 minutes later I was checked out. No line, no waits, no anything! Here’s a picture of the front of the store, at 9:20am.

\n

\"Line

\n

The woman who checked me out said there had been a bit of a line that morning at 8, but just about 20-30 people and she thought that most people didn’t know they were opening at 8 that morning instead of the normal 10.

\n

I walked back outside and grabbed a water bottle from the big pallet they had of them (for the expected line) and a Verizon employee accosted me to show ask if I had gotten AT&T or Verizon. When I replied “AT&T” he said “oh man!” and showed me the speed tests he was getting on his iPad 2 tethered via wifi to a Droid device he had, an impressive 20mbps down. “Think how fast it’d be going direct to an iPad.” (I agree, but I already have a Verizon Nexus device, a T-Mobile Blackberry, a Sprint iPhone, so I wanted to complete the quartet with another carrier and ensure I could have coverage anywhere.) I decided to celebrate with some beignets across the food court from Cafe Du Monde:

\n

\"Celebratory

\n

So why the lack of a line? Perhaps it was mix up about store opening time, as they suggested. Maybe New Orleans is a Samsung town. Perhaps Apple just did a better job with the pre-orders arriving on launch day, so people didn’t feel the need to go to the store. Maybe people weren’t as excited as I was about the new launch. All in all, it doesn’t matter to me. The screen is gorgeous, it’s restoring now from iCloud backup, and I’m pleased as punch to have one on launch day and I’ll probably spend far too much time today staring at the amazingly high resolution. If you were waiting because you thought the stores might be crazy today, maybe head to them half an hour after open time and skip the queues.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 16 Mar 2012 14:51:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Weblog Tools Collection: WordPress Theme Releases for 3/16\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=11151\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/IiwgQ7Z-jCQ/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2196:\"

\"\"

\n

Angler is a highly customizable but simple theme.

\n

\"\"

\n

Light Blue Home is a simple light blue architecture theme.

\n

\"\"

\n

Modern Nature is a green nature theme.

\n

\"\"

\n

Skylark is a great starter theme for portfolio and business sites.

\n

\"\"

\n

Sundance is a minimalist video theme crafted with clean, elegant typography and close attention to detail.

\n

\"\"

\n

Utility is a basic theme of a simple setup for a simple blog or website.

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 16 Mar 2012 14:00:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: A Closer Look At Brute Force Attacks Against WP Sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=6424\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"http://feedproxy.google.com/~r/WordpressTavern/~3/X86PW7TvLGg/a-closer-look-at-brute-force-attacks-against-wp-sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2071:\"

Perhaps one of the easiest attacks to perform on a WordPress based website is a brute force attack. Sucuri took the time to create a few different honeypots and monitored WP-Login.php to track the various IP addresses as well as the passwords used to break into the site. Their list of passwords attempted is no surprise to me as I’ve seen the same results over the course of a year via the Limit Logins plugin. It all comes back to the use of a strong password. A strong password would look something like this, RCu7R*0#zm. Unfortunately, many forms don’t accept certain characters in passwords so at the very least, add numbers to your password if you can only use numbers and letters.

\n

The reason why this is one of the easiest attacks to perform is because by default, WordPress allows an unlimited amount of tries when logging into the backend. I understand that it’s the users responsibility to use a strong password but at the same time, I feel as though the software could help out by only allowing 3 login tries per IP address, very similar to how the Limit Login attempts plugin works. After 3 failed attempts, the IP address would be locked out for a certain amount of time. The only thing I can figure is this particular enhancement would cause some site owners more grief than peace of mind. Unlimited login attempts has been apart of WordPress since I started using it in 2007 and I don’t see it changing anytime soon, especially since the Limit Login attempts plugin exists and solves the problem so well.

\n

Related posts:

    \n
  1. Update On My Use Of Limit Login Attempts
  2. \n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 16 Mar 2012 13:00:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WPTavern: Automattic Launches VIP Featured Partner Program\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=6422\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"http://feedproxy.google.com/~r/WordpressTavern/~3/K0_Zg_9hQTw/automattic-launches-vip-featured-partner-program\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:879:\"

Automattic has announced the launch of a new featured VIP Partner program that will provide more bang for the buck for VIP customers.

\n

Related posts:

    \n
  1. Automattic Makes Second Investment – WPEngine
  2. \n
  3. WPTavern VIP Is No More
  4. \n
  5. Forum VIP Membership Now Available
  6. \n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Mar 2012 21:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Alex King: Sparrow for iPhone: Simple Failure\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://alexking.org/?p=12845\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://alexking.org/blog/2012/03/15/sparrow-for-iphone-simple-failure\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4084:\"

I’ve been excited to try Sparrow on my iPhone since I saw it announced last year. I haven’t been a fan of the desktop app as I’m so hopelessly dependent on MsgFiler with Mail.app to support my email workflow, but I was hoping that Sparrow on the iPhone would be an improvement over the included iOS Mail app (especially if it had some kind of type-to-file support).

\n

\"\"

\n

So when I saw chatter about it last night, I went ahead and purchased right away. I don’t use GMail, but that shouldn’t be a problem since it has:

\n

Full IMAP support:
\nUse your Gmail, Google Apps, iCloud, Yahoo, AOL, Mobile Me and custom IMAP accounts.

\n

When I launched the app, this is what I saw:

\n

\"\"

\n

Ok, that’s not what I need. I need a way to enter in my IMAP server and account details. But this isn’t too uncommon with a mail app. I’ll just enter in my details and wait for it to fail, then it will show me an “advanced” button or something to let me enter the server settings directly.

\n

\"\" \"\"

\n

Hmm, that’s not helpful. I’m not even trying to connect to Gmail.

\n

I tried adding a Gmail account and going into the settings to see if I could adjust the mail server addresses manually from the account settings screen – no can do.

\n

It appears that Sparrow’s only set-up path is to be clever and try to guess at what I need. Like most software with this approach, it fails in real world situations. It may be a great mobile mail app, but if I can’t get it to connect to my account it’s completely useless to me.

\n
\n

Sparrow isn’t the only app that fails like this. The WordPress for iOS app fails in the same way. I believe the WordPress app tries to load an HTML page and look for some specific information (the XMLRPC URL) that it needs for communication (perhaps with a few guesses as well).

\n

If you have a WordPress site that requires a login, your results to add that site to the WordPress iOS app will likely look something like this:

\n

\"\"

\n

“Need Help?”

\n

No, I need a damn text field!

\n

I’m quite capable of typing in the XMLRPC URL myself (like I’ve done for other apps that post to my WordPress site) and I have no problem with that being an extra, manual step since my WordPress site is a little non-standard. However, that’s not an option.

\n

I grow weary of people holding up Apple as an ideal of simplicity, trying to follow that model, but failing to properly account for real world usage in their clever \":scare:\" user friendly \":/scare:\" designs. When you place “simple” ahead of “functional”, you’ve failed.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Mar 2012 20:22:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Alex\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"Lorelle on WP: Spring Quarter Introduction to WordPress College Course Begins April 10\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"http://lorelle.wordpress.com/?p=5734\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"http://lorelle.wordpress.com/2012/03/15/spring-quarter-introduction-to-wordpress-college-course-begins-april-10/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:463:\"It’s hard to believe that the first ever full college course on WordPress is coming to an end, with a new one beginning April 10, 2012, but here we are, and time is running out to get your seat in this Introduction to WordPress course. If you live in the Portland, Oregon, or Southwest Washington [...]\"\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Mar 2012 20:17:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Lorelle VanFossen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"Andrew Nacin: WordPress: So Easy a Congressman Can Do It\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"http://nacin.com/?p=3995\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://nacin.com/2012/03/15/wordpress-so-easy-a-congressman-can-do-it/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6973:\"

The U.S. House Committee on Oversight and Government Reform launched a new site on WordPress today. This is really cool for a few reasons. Rep. Darrell Issa tweeted about it this morning, saying WordPress is “rare” for government and said it was “to support fast improvements in response to your feedback.”

\n

\n

\n #embedly_twitter_79088377{background:url(http://a0.twimg.com/profile_background_images/165666173/Background.png) #9AE4E8; padding:20px;} #embedly_twitter_79088377 p{background:#fff;padding:10px 12px 0px 12px;margin:0;min-height:48px;color:#000;font-size:18px;line-height:22px;-moz-border-radius:5px;-webkit-border-radius:5px} #embedly_twitter_79088377 .embedly_tweet_content{background:#fff;padding:10px 12px 10px 12px;margin:0;min-height:48px;color:#000;font-size:18px !important;line-height:22px;-moz-border-radius:5px;-webkit-border-radius:5px} #embedly_twitter_79088377 p span.metadata{display:block;width:100%;clear:both;margin-top:0px;height:40px; padding-bottom: 12px;} #embedly_twitter_79088377 p span.metadata span.author{line-height:15px;color:#999;font-size:14px} #embedly_twitter_79088377 p span.metadata span.author a{line-height:15px;font-size:20px;vertical-align:middle} #embedly_twitter_79088377 p span.metadata span.author img{float:left;margin:0 10px 0 0px;width:48px;height:48px} #embedly_twitter_79088377 p a {color: #0084B4; text-decoration:none;} #embedly_twitter_79088377 p a:hover{text-decoration:underline} #embedly_twitter_79088377 .embedly_timestamp{font-size:13px;display:inline-block;margin-top: 5px;} #embedly_twitter_79088377 .components-above span.embedly_timestamp{font-size:10px;margin-top: 1px;line-height:12px} #embedly_twitter_79088377 a {color: #0084B4; text-decoration:none;} #embedly_twitter_79088377 a:hover{text-decoration:underline} #embedly_twitter_79088377 .tweet-screen-name {font-size: 14px; font-weight: bold;} #embedly_twitter_79088377 .tweet-full-name {padding-left: 4px; color: #999; font-size: 12px;} #embedly_twitter_79088377 .tweet-actions{margin-left: 10px;font-size:13px;display:inline-block;width:250px} #embedly_twitter_79088377 .components-above span.tweet-actions{font-size:10px} #embedly_twitter_79088377 .controls{line-height:12px!important} #embedly_twitter_79088377 .tweet-actions a {margin-left:5px} #embedly_twitter_79088377 .tweet-actions a b{font-weight:normal} #embedly_twitter_79088377 .components-above span.tweet-actions a b{vertical-align:baseline;line-height:12px} #embedly_twitter_79088377 .components-above .tweet-text{font-size:13px;vertical-align:baseline} #embedly_twitter_79088377 .tweet-image {float: left; width: 40px;} #embedly_twitter_79088377 .tweet-user-block-image {float: left; width: 48px; height: 48px} #embedly_twitter_79088377 .tweet-row {margin-left: 40px; margin-top: 3px;line-height: 17px;} #embedly_twitter_79088377 .tweet-user-block {margin-left: -40px;} #embedly_twitter_79088377 .stream-item {padding-bottom: 0px; margin-left: 12px;} #embedly_twitter_79088377 .simple-tweet-image img {margin-top: 4px;} #embedly_twitter_79088377 .simple-tweet-content {margin: 0 0 13px 0px; font-size: 14px; min-height:48px;} #embedly_twitter_79088377 .in-reply-to-border {border-color: #EBEBEB; border-style: solid; border-width: 1px 0 0;} #embedly_twitter_79088377 .in-reply-to-text {margin-left: 4px; padding-left: 8px; padding-right: 10px; color: #999; font-size: 12px;} #embedly_twitter_79088377 .tweet-actions i {background: transparent url(http://a2.twimg.com/a/1306889658/phoenix/img/sprite-icons.png) no-repeat;width:15px;height:15px;margin:0 4px -3px 3px;outline: none; text-indent:-99999px;vertical-align:baseline;display:inline-block;position:relative;} #embedly_twitter_79088377 .tweet-actions a.retweet-action i {background-position:-192px 0;} #embedly_twitter_79088377 .tweet-actions a.reply-action i {background-position:0 0;} #embedly_twitter_79088377 .tweet-actions a.favorite-action i {background-position:-32px 0;} \n
\n
\n

@DarrellIssa

Darrell Issa
New http://t.co/7m7BwixZ is built w/ @WordPress, rare for govt sites, to support fast improvements in response to your feedback
Mar 15 via TweetDeck Favorite Retweet Reply

\n
\n
\n
\n



Government moves at a pace best described as glacially, so for them to recognize that WordPress can help them react quicker, that’s just huge. I’ve learned in D.C. that ease of use and speed of development are very rare things for .gov sites, even those built on open source. Not to mention cost-effectiveness in an age where federal government IT procurement is being upended. Look, they even created cheesy WordPress-in-government infomercial:

\n

\n

The video takes a shot at bad government websites, and while the new site isn’t the prettiest thing in the world, I like the point they’re getting across: Government can excel on the web using the same free publishing software as many of their constituents. It won’t be rare for long.

\n

Related: Ben Balter’s post on WordPress and government from last week is making waves.

\n

Bonus: The Consumer Financial Protection Bureau recently gave their WordPress site a new coat of paint.

\n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Mar 2012 18:47:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WPTavern: WordPress.com Welcomes Posterous Users\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=6417\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"http://feedproxy.google.com/~r/WordpressTavern/~3/Vkrqr-16yWI/wordpress-com-welcomes-posterous-users\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1125:\"

\"PosterousIt was’nt long ago when Posterous looked poised to take a big chunk of market share away from WordPress and other sites such as Tumblr. But alas, Posterous will become yet another internet memory as they’ve announced that the talent behind the service will now be apart of Twitter. While Posterous will remain online for the foreseeable future, users have already started flocking to different services such as WordPress.com, who have experienced a 250% increase in imports from Posterous accounts since the announcement.

\n

No related posts.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Mar 2012 17:59:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Weblog Tools Collection: Posterous Acquired by Twitter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=11147\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/sI3E4EfemL0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1303:\"

Posterous, a popular hosted blogging platform, has been acquired by Twitter. The team behind Posterous assures that the service will not be disrupted, but will give “ample notice if [they] make any changes to the service,” and Sachin Agarwal (Posterous founder and CEO) is now a Product Manager for Twitter. It is not yet clear if Twitter intends to make use of the Posterous service or if this acquisition was intended to just bring the talent behind Posterous to Twitter’s ever-growing platform.

\n

If you’re concerned about the future of your Posterous Space, it’s not too late to switch to a self-hosted WordPress installation (where you have full control over your content) with this importer. If you prefer a hosted environment, like Posterous, you can move to WordPress.com following this handy guide.

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Mar 2012 14:00:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WP iPhone: Now Available: Publish Photos Quickly Using Camera+\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://ios.wordpress.org/?p=1129\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"http://ios.wordpress.org/2012/03/15/camera-plus/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3616:\"

\"WordPress
\nIf you’re passionate about posting great photos on your blog, you might just fall in love with this new feature. If you have Camera+ 3.0 on your phone (and WordPress for iOS 2.9.5 or higher), you’ll be able to quickly post photos using the Camera+ app! Simply launch the WordPress app, and tap the Photo button.

\n

Posting a photo from the Camera+ Lightbox is dead easy. Tap “Add Photo from Camera+,” and your phone switches to the Camera+ app – select a photo to load it into the WordPress app. Add a Title and a Description (both optional), and boom! You’re done.

\n

Using Camera+ to snap your photo is just as easy. Tap “Take Photo with Camera+” to switch to the Camera+ app’s camera. Make a “meow” sound to locate your cat, add effects, borders, and crop your photo. When you’re done, just press “Use” and your photo is imported into the WordPress app where you can add details if you want.

\n

What’s Next

\n

As more camera apps open up their features for other apps, we’ll look into making more options available. Camera+ was the first to open their app up for integrations, but hopefully more will follow.

\n

For now, the Camera+ options are only available for the Photo button on iPhone, but we’re hoping to add it to the Post Editor very soon as well. If you don’t have Camera+ on your phone, the options simply won’t be shown. Be sure to subscribe to this blog and follow us on Twitter to get the latest news first.

\n

Do you use Camera+, or another camera app? Please let us know in the comments!

\n
\"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Mar 2012 07:11:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Isaac Keyet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WordPress.tv: Oliver Nielsen, WebMatros: SUCCES med Online Video\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=10032\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"http://wordpress.tv/2012/03/14/oliver-nielsen-webmatros-succes-med-online-video/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1889:\"
\n
\n
\"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"
\"WordCamp
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Mar 2012 14:30:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"wcdenmark\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Weblog Tools Collection: WordPress Plugin Releases for 3/14\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=11143\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/l03rvM1TTfY/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:950:\"

New plugins

\n

Admium lets users sign up for recurring subscriptions to your site, and lets you make subscriber-only content.

\n

BusinessBites Button allows you to get paid to communicate with your visitors using built in time tracking and automated billing.

\n

Updated plugins

\n

FoxyPress is a custom plugin made to integrate FoxyCart e-commerce functionality into your WordPress website.

\n

Image Widget uses a native WordPress upload thickbox to add image widgets to your site.

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Mar 2012 14:00:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WordPress.tv: Mark Gazel: WordPress Denmark status update\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=10014\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"http://wordpress.tv/2012/03/13/mark-gazel-wordpress-denmark-status-update/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1817:\"
\n
\n
\"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"
\"WordCamp
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Mar 2012 20:00:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"wcdenmark\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WPTavern: 10 Queries To Clean Up Your WordPress Database\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=6414\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"http://feedproxy.google.com/~r/WordpressTavern/~3/L0EQ6MOrCVQ/10-queries-to-clean-up-your-wordpress-database\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:932:\"

John Baptiste of CatsWhoCode.com has published 10 useful SQL queries that you can use to clean up the database that houses your WordPress installation. Before any SQL queries are run, you should definitely back up your entire website as a wrongly executed query can ruin the database, rendering your site useless. If you’re afraid to execute any of the queries mentioned within his list, there are plugins available that can accomplish the same tasks such as WP-Cleanup but the same precautions must be taken, especially since some of the cleaning plugins are old and may not have the correct table or location to delete data from.

\n

No related posts.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Mar 2012 17:00:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Matt: When Mom Goes Viral\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=40334\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://ma.tt/2012/03/when-mom-goes-viral/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:296:\"

The Olive Garden restaurant making the rounds a few days ago was actually from the mother of a WSJ writer, here’s his take: When Mom Goes Viral: Marilyn Hagerty, 85, Is Talk of Social Media.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Mar 2012 16:10:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Weblog Tools Collection: WP_Query Quick Reference\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=11140\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/yTu1OnCLKyY/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:920:\"

Are you looking for a super-simple quick reference for WP_Query and all of its parameters? Loosely described, WP_Query is how WordPress displays posts defined by a variety of parameters, and keeping that of the available parameters can be a monumental task. It’s easy to forget all that you can do with WP_Query if you aren’t working with it every single day.

\n

Of course, this brings me to this handy Gist. It’s nothing flashy, but it is a super-simple text file listing and describing all the WP_Query parameters. I’m not sure how long this will be around, so you might want to download it ASAP for reference when you need it.

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Mar 2012 14:00:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WPTavern: Congrats To Jane Wells\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=6411\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://feedproxy.google.com/~r/WordpressTavern/~3/MEy40vJPxpo/congrats-to-jane-wells\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1445:\"

As I mentioned about a month ago, Jane Wells has been working on a new venture called Jitterbug which aims to be a bakery with a cafe feel complete with WiFi. To help fund this venture and to purchase some equipment, Jane put together a project on KickStarter.com to generate crowd sourced capital. The monetary goal was $15,000.00 and that was reached just 4 days prior to the project expiring. One particular backer was able to pledge $5,000.00 and will have a muffin named after him. The backer was Michael Torbert, the author behind the All In One SEO Plugin.

\n

Congratulations goes out to Jane Wells for a successful kickstarter project. I myself chipped in a hundred bucks but the best thing about it all is that I now have a really good reason to visit Tybee Island, Georgia.

\n

Related posts:

    \n
  1. Help Jane Buy A Bakery
  2. \n
  3. Pods Plugin Successfully Kickstarted To Version 2.0
  4. \n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Mar 2012 13:00:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WordPress.tv: Julio Potier : WordPress et la sécurité des extensions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=10002\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://wordpress.tv/2012/03/12/julio-potier-wordpress-et-la-securite-des-extensions/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1803:\"
\n
\n
\"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"
\"wcparis-03-julio\"
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 12 Mar 2012 22:35:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"wordcampparis\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"WordPress.tv: Greg Taylor: WordPress for Musicians, Artists, Writers, Butchers, Bakers & Candlestick Makers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=9970\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"http://wordpress.tv/2012/03/12/greg-taylor-wordpress-for-musicians-artists-writers-butchers-bakers-candlestick-makers/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1862:\"
\n
\n
\"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"
\"WC_PHX_My_WP_WordPress_For_Creatives\"
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 12 Mar 2012 16:35:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"blazestreaming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Weblog Tools Collection: WordPress Theme Releases for 3/12\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=11132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/wu_wLR0VRvU/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1935:\"

\"\"

\n

Brown World is a simple dark brown theme.

\n

\"\"

\n

My Life is a serene blogging theme that emphasizes your content with readable typography.

\n

\"\"

\n

Picochic is a neutral, light, clean and professional looking theme.

\n

\"\"

\n

Simple Black is a simple theme with a dark black design.

\n

\"\"

\n

Suede has two columns, fixed width, a left sidebar, and features a brilliant, vibrant orange-red, beige, tan, cream, brown, and taupe scheme.

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 12 Mar 2012 13:00:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Weblog Tools Collection: WordPress Plugin Releases for 3/10\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=11129\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/ExNL2vXsZAo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1203:\"

New plugins

\n

bbPress Digest allows you to send daily digest with a forum’s active topics.

\n

PulseMaps Visitor Map Plugin allows you to see your visitors on a world map.

\n

User Login Statistics tracks registered users login statistics each day.

\n

WP App Maker allows you to generate and distribute an Android App for your WordPress blog.

\n

Updated plugins

\n

Image Widget uses a native WordPress upload thickbox to add image widgets to your site.

\n

Ultimate CMS is an easy to use plugin to create, customize, and manage custom post/page types, custom archives, and custom taxonomies.

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 10 Mar 2012 14:00:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WPTavern: WordPress Not The Direct Cause Of Mass Site Attacks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=6406\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"http://feedproxy.google.com/~r/WordpressTavern/~3/-xrOIkFLWM8/wordpress-not-the-direct-cause-of-mass-site-attacks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1736:\"

Sucuri has published more information regarding the compromising of at least 30,000 domains. Based on their research, they are ruling out the possibility that the attacks are taking advantage of a new vulnerability within the core of WordPress.

\n

The first question is how are these sites getting hacked? On all the cases we analyzed, they either had outdated versions of WordPress, or of a plugin. We can safely rule out any new vulnerability on WordPress itself.

\n

To stay on top of the latest malware threats on the web, you should subscribe to their RSS feed. Perhaps the more people that realize this stuff is happening on a daily basis, the more it will persuade them to keep sites, plugins, and themes updated.

\n

Related posts:

    \n
  1. 5 Tips To Create A Great Site About WordPress
  2. \n
  3. Getting Started With Designing Your Site
  4. \n
  5. 14 Things To Consider When Choosing A Webhost For Your WordPress Powered Site
  6. \n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2012 18:00:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: Lance Willett Helps Beginners Navigate WordPress Theme Landscape\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=6401\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"http://feedproxy.google.com/~r/WordpressTavern/~3/WSendJNMxVE/lance-willett-helps-beginners-navigate-theme-landscape\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1227:\"

Fresh from WordCamp Phoenix 2012, Lance Willett who works for Automattic and is part of the theme wrangler team gave a great presentation for beginners on how to navigate the vast landscape that is WordPress themes. He covers the gamut such as where to look for themes, commercial themes, things to consider before using the theme on your site, etc. This presentation is truly for the beginner as it has nothing to do with coding. Nice job Lance.

\n
\n

Related posts:

    \n
  1. WPWeekly Episode 109 – Interview With Lance Willett
  2. \n
  3. Name Your Dream Theme Team
  4. \n
  5. Roots – WordPress Starter Theme
  6. \n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2012 14:00:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"WordPress.tv: Greg Loumeau: WP101 Rocking in the Free World\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=9883\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"http://wordpress.tv/2012/03/08/greg-loumeau-wp101-rocking-in-the-free-world/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1814:\"
\n
\n
\"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"
\"Greg
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 Mar 2012 20:30:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"blazestreaming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"WordPress.tv: Lance Willett: Navigating the Theme Landscape\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=9879\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"http://wordpress.tv/2012/03/08/lance-willett-navigating-the-theme-landscape/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1815:\"
\n
\n
\"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"
\"Lance
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 Mar 2012 16:30:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"blazestreaming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WPTavern: Your Daily Fix Of WordPress Functions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=6396\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"http://feedproxy.google.com/~r/WordpressTavern/~3/jhJk2PJsbv4/your-daily-fix-of-wordpress-functions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1968:\"

How would you like to experience WordPress functions within your inbox on a daily basis? If so, consider signing up to the WordPress Daily Documentation site. Each day features a different function within WordPress sent to your inbox which contains examples, an explanation of what the function does, parameters, and the usual information you would find via other sources. Since signing up, I’ve received emails covering add_shortcode() and get_the_ID().

\n

\"Daily

\n

There are all sorts of ways to view information related to specific WordPress functions but this method may be especially useful to those who are starting to learn what functions are and which ones WordPress contains. But if you don’t feel like putting your email address on yet another subscription list, there is always the Codex.

\n

Related posts:

    \n
  1. Lookup Functions In A Flash
  2. \n
  3. WordPress Is More Functional Over Time
  4. \n
  5. Too Much RSS Noise? Get An Email Daily Digest
  6. \n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 Mar 2012 14:00:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"Weblog Tools Collection: WordPress Theme Releases for 3/8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=11117\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/mVS_pPXOjoI/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3787:\"

\"\"

\n

Basic Law is a theme for law blogs and legal websites.

\n

\"\"

\n

History is a theme for history blogs.

\n

\"\"

\n

Knit has fixed width, two columns, right sidebar, is widget and adsense ready, has valid xhtml, and features soft colors – aqua, teal, blue, sea green, white.

\n

\"\"

\n

Modern Town is a yellow and red modern architecture theme with great graphics and modern background.

\n

\"\"

\n

Skirmish is an elegant, two column theme, perfect for personal blogs.

\n

\"\"

\n

Stumblr is a clean and minimal MicroBlogging theme with a simple options panel.

\n

\"\"

\n

Sunny Travel is a travel theme with a light blue design, great to share your travel photos.

\n

\"\"

\n

Swift Basic is a fast loading, developer friendly, and advanced theme with loads of intutive customization options, giving you an infinite number of layouts.

\n

\"\"

\n

YAMINTH is a free theme with a modern and minimal look.

\n

\"\"

\n

Yellow Tree is a simple gray and yellow theme with a tree silhouette in the header.

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 Mar 2012 14:00:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress.tv: Josh Ziering: Promoting Your Site\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=9876\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.tv/2012/03/08/josh-ziering-promoting-your-site/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1788:\"
\n
\n
\"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"
\"Josh
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 Mar 2012 12:30:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"blazestreaming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"WordPress.tv: Robert Rowley: WP Security 101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=9873\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.tv/2012/03/08/robert-rowley-wp-security-101/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1790:\"
\n
\n
\"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"
\"Robert
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 Mar 2012 08:30:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"blazestreaming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WordPress.tv: Andrew Ryno: A Brief History of Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=9870\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wordpress.tv/2012/03/07/andrew-ryno-a-brief-history-of-plugins/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1804:\"
\n
\n
\"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"
\"Andrew
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 Mar 2012 04:30:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"blazestreaming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WordPress.tv: Joe Manna: How To Create Engaging Content For Marketers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=9865\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"http://wordpress.tv/2012/03/07/joe-manna-how-to-create-engaging-content-for-marketers/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1844:\"
\n
\n
\"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"
\"Joe
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 Mar 2012 00:30:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"blazestreaming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"WordPress.tv: Ward Andrews: Creative Thinking\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=9862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.tv/2012/03/07/ward-andrews-creative-thinking/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1797:\"
\n
\n
\"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"
\"Ward
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Mar 2012 20:30:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"blazestreaming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WPTavern: Yoast On Why Some Themes Hurt Your SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=6394\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"http://feedproxy.google.com/~r/WordpressTavern/~3/NDDATbzmKN4/yoast-on-why-some-themes-hurt-your-seo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1372:\"

Once again, I want to tell you to not blindly trust theme authors when they say their theme is SEO friendly. “SEO friendly” is just a label they put on their theme and since most of their customers don’t know what to look for to see if it’s actually true, yet know that it’s important, it helps “sell” themes.

\n

Sounds like he’s describing me and I bet a lot of other people as well. Overall, good advice from Joost de Valk with a little bit of self promotion at the end.

\n

Related posts:

    \n
  1. All In One SEO Plugin Reaches 10 Million Downloads
  2. \n
  3. WordPress Support Forum And Themes
  4. \n
  5. Ian Stewarts Predictions On WordPress Themes For 2012
  6. \n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Mar 2012 18:00:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Matt: Pattern Recognition\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=40332\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"http://ma.tt/2012/03/pattern-recognition-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:182:\"

The problem with investing based on pattern recognition by Chris Dixon, +1.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Mar 2012 17:58:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WordPress.tv: Hazrul: Building a collaborative user network for Open Source WordPress in Asia\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=9770\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"http://wordpress.tv/2012/03/07/hazrul-building-a-collaborative-user-network-for-open-source-wordpress-in-asia/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1794:\"
\n
\n
\"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"
\"hazrul\"
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Mar 2012 16:30:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"abanghazrul\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Matt: Stop Sabotaging Your Own Success\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=40330\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://ma.tt/2012/03/stop-sabotaging-your-own-success/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:224:\"

Women 2.0: Stop Sabotaging Your Own Success: A Manifesto, by Automattic’s own Sara Rosso.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Mar 2012 15:52:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"WordPress.tv: Jay Thompson: Top 10 WordPress “best practices” for realtors & real estate websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=9832\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"http://wordpress.tv/2012/03/06/jay-thompson-top-10-wordpress-best-practices-for-realtors-real-estate-websites/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1895:\"
\n
\n
\"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"
\"Jay
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Mar 2012 03:30:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"blazestreaming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Alex King: Carrington Themes on GitHub\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://alexking.org/?p=12784\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"http://alexking.org/blog/2012/03/06/carrington-themes-on-github\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1928:\"

As part of our move to Git, we now host our WordPress code on GitHub. Carrington Core was moved over a while ago and I finally finished migrating the rest of the themes from their old home on Google Code.

\n

The themes are being renamed:

\n\n

We caused a bunch of confusion around the name “Carrington” when we attached it to everything. I’m hoping that removing it from the themes and having the “Carrington” name reserved for our underlying theme features (Carrington Core and Carrington Build) will help make it more clear that Carrington refers to our collection of developer and designer tools that make it easier to create great websites with WordPress. We’ve also initiated an internal project to create better designer/developer documentation for Carrington Core.

\n

Updating the themes to the latest and greatest WordPress features and best practices is on the list for our intern projects and should be getting some attention in the immediate future. I’m optimistic we’ll have updated versions of these themes to release soon. I’m proud of our dedication to releasing code to the community, but once you hit a certain volume it becomes a real challenge to keep everything up to date.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Mar 2012 01:56:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Alex\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:147:\"WordPress.tv: Sean Herron: How non-profits and government organizations of all sizes can use WordPress to successfully create and operate a website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=9829\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:164:\"http://wordpress.tv/2012/03/06/sean-herron-how-non-profits-and-government-organizations-of-all-sizes-can-use-wordpress-to-successfully-create-and-operate-a-website/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1997:\"
\n
\n
\"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"
\"Sean
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Mar 2012 23:30:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"blazestreaming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WordPress.tv: John Hawkins: An Introduction to WordPress Multi-Site\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=9825\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://wordpress.tv/2012/03/06/john-hawkins-an-introduction-to-wordpress-multi-site/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1841:\"
\n
\n
\"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"
\"John
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Mar 2012 19:30:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"blazestreaming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WPTavern: The Auditor Needs Closed Beta Testers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=6389\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"http://feedproxy.google.com/~r/WordpressTavern/~3/Axq9T__OKTI/the-auditor-needs-closed-beta-testers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1451:\"

Interconnectit has announced that The Auditor (name to be determined later) has entered the closed beta process and is currently looking for people to test the plugin. The plugin is an event logger that tracks key options and content changes within a WordPress installation and contains a viewer that lets you view what’s been happening on your site. This plugin sounds like the perfect option to determine if things are going on within your website that you were not aware of. The closed beta is limited to a select group of people but if you’d like to participate in the event, you can leave a comment on their announcement post explaining why you’d like to give it a try.

\n

Related posts:

    \n
  1. phpBB Bridge Beta Testers Needed
  2. \n
  3. Subscribe To Comments Beta Testers Needed
  4. \n
  5. Prodigy Framework Needs Beta Testers
  6. \n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Mar 2012 18:00:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"Dev Blog: WordPress Takes SXSW 2012!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2240\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/news/2012/03/wordpress-takes-sxsw-2012/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3436:\"

The South by Southwest Interactive Festival (SXSW) holds a special place in the history and heart of WordPress. Though the conference has changed in the years since I first met Matt in the hallway in 2003 — before WordPress even had a name — it’s still arguably one of the most influential events in our industry, and we’ll be there again this year. Will we see you there?

\n

Booth

\n

There will be a WordPress booth at the SXSW trade show March 12-15. Our booth was packed to overflowing last year as we helped people with their blogs and gave away WordPress swag, so this year we’ll have more space to meet as many of you as possible. Stop by if you need a helping hand with your site, or just to say hi. We’ll also have buttons, stickers, and t-shirts again this year.

\n

Party

\n

This year’s WordPress party will be hosted by the WordPress Foundation on Monday, March 12 from 6-9pm. Space is limited, so make sure you RSVP (no SXSW badge is required). The party this year will be at the Buzzmedia Pure Volume House, and the story of how we hooked up with them is pretty cool.

\n

Once upon a time, David Wang had a business called Buzzmedia in Malaysia, with the twitter username @buzzmedia. When David changed gears and started ClickWP, a WordPress support business, he stopped going by the Buzzmedia name. In the U.S., a company also called Buzzmedia wished it had that Twitter username, and asked if they could have it since David wasn’t going to use it anymore.

\n

David, feeling the WordPress community love, said he would give them the name, and suggested they do something in return for the WordPress Foundation. So, everyone talked to everyone else and it worked out that Buzzmedia was willing to donate a fantastic venue for this year’s party as well as covering the bar.

\n

In the end, the Foundation got a great SXSW party, Buzzmedia got their twitter username, and David got the warm glow of having used his power for the good of the WordPress community, and they all lived happily ever after.

\n

Seriously, though, the PureVolume House is always a great SXSW venue, so thank you David and Buzzmedia for your generosity! We’ll have drinks and snacks and a few hundred WordPress-loving partygoers, so you know it will be a good time. Kind of like a WordCamp afterparty without all the work of a WordCamp. \":)\"

\n

The venue can hold 500 people, and based on last year, we’ll hit that pretty quickly. The one requirement is that you use WordPress. On the RSVP form, you will be asked to enter the URL of your WordPress-powered site (if you have more than one, just pick your main site). If you fill in this field with something other than what’s requested (such as “N/A” or putting in a fake url) your RSVP may be deleted, so please make sure to enter your real site.
\n RSVP Now!

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Mar 2012 16:19:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Jane Wells\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WordPress.tv: Ryan Imel: Empowering Journalists with WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=9822\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"http://wordpress.tv/2012/03/06/ryan-imel-empowering-journalists-with-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1834:\"
\n
\n
\"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"
\"Ryan
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Mar 2012 15:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"blazestreaming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WPTavern: WordPress Projects To Follow On GitHub\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=6384\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"http://feedproxy.google.com/~r/WordpressTavern/~3/M9-QzGUx8Qc/wordpress-projects-to-follow-on-github\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:845:\"

Themergency has a list of WordPress related projects to watch that are using GitHub as their source code repository instead of the traditional Subversion approach. In case you didn’t know it already, WordPress itself is also using GitHub except that it’s being synched every thirty minutes with the Subversion repository and only contains read-only access. Judging by the comments, a number of themes are also using GitHub as their repository. I wonder if this has translated into a more social experience in users contributing back to the original project which is supposedly one of the awesome benefits of using GitHub?

\n

No related posts.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Mar 2012 14:00:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress.tv: Aaron Campbell: Ecommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=9819\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://wordpress.tv/2012/03/06/aaron-campbell-ecommerce/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1775:\"
\n
\n
\"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"
\"Aaron
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Mar 2012 11:30:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"blazestreaming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"WordPress.tv: Panel: Agencies\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=9816\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"http://wordpress.tv/2012/03/06/panel-agencies/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1754:\"
\n
\n
\"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"
\"Panel:
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Mar 2012 07:30:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"blazestreaming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"WordPress.tv: Chris Jean: Don’t Sh** In The Pool\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=9807\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.tv/2012/03/05/chris-jean-dont-sh-in-the-pool/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1800:\"
\n
\n
\"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"
\"Chris
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Mar 2012 03:30:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"blazestreaming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WordPress.tv: Daniel Bachhuber: The Zen of WordPress Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=9803\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"http://wordpress.tv/2012/03/05/daniel-bachhuber-the-zen-of-wordpress-development/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1832:\"
\n
\n
\"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"
\"Daniel
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Mar 2012 23:30:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"blazestreaming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WordPress.tv: Scott Yacko | Jonathan Kressaty: SEM, WordPress, And You\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=9800\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"http://wordpress.tv/2012/03/05/scott-yacko-jonathan-kressaty-sem-wordpress-and-you/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1842:\"
\n
\n
\"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\"
\"Scott
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Mar 2012 19:45:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"blazestreaming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WPTavern: A Peek Into The Future Of BuddyPress And bbPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=6381\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"http://feedproxy.google.com/~r/WordpressTavern/~3/1gqRR9Exmb4/a-peek-into-the-future-of-buddypress-and-bbpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1180:\"

Ryan Imel of WPCandy.com recently had the chance to sit down with John James Jacoby to discuss both BuddyPress and bbPress as well as a few other topics. The interview is about an hour long but well worth the listen if you’re at all interested in the two platforms.

\n

Related posts:

    \n
  1. The Future Of bbPress Lies Within WordPress
  2. \n
  3. BuddyPress And bbPress Are Getting A Divorce
  4. \n
  5. BuddyPress Takes bbPress Integration Up A Notch
  6. \n

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Mar 2012 18:00:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 16 Mar 2012 17:09:06 GMT\";s:12:\"content-type\";s:15:\"application/xml\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Fri, 16 Mar 2012 16:45:34 GMT\";s:14:\"content-length\";s:6:\"133200\";s:4:\"x-nc\";s:11:\"HIT luv 139\";s:13:\"accept-ranges\";s:5:\"bytes\";}s:5:\"build\";s:14:\"20090627192103\";}','no'),(1772,0,'_transient_timeout_feed_mod_1a5f760f2e2b48827d4974a60857e7c2','1331960947','no'),(1773,0,'_transient_feed_mod_1a5f760f2e2b48827d4974a60857e7c2','1331917747','no'),(1786,0,'_site_transient_timeout_theme_roots','1332244955','yes'),(1787,0,'_site_transient_theme_roots','a:3:{s:9:\"catalog-1\";s:7:\"/themes\";s:7:\"catalog\";s:7:\"/themes\";s:7:\"toolbox\";s:7:\"/themes\";}','yes'),(728,0,'recently_activated','a:0:{}','yes'),(1756,0,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1331960946','no'),(1757,0,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1331917746','no'),(1770,0,'_transient_timeout_feed_1a5f760f2e2b48827d4974a60857e7c2','1331960947','no'),(1771,0,'_transient_feed_1a5f760f2e2b48827d4974a60857e7c2','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:72:\"\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 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"WordPress Plugins » View: Recently Updated\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"http://wordpress.org/extend/plugins/browse/updated/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"WordPress Plugins » View: Recently Updated\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 16 Mar 2012 17:03:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:15:{i:0;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"WooThemes on \"WooCommerce – excelling eCommerce\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/extend/plugins/woocommerce/#post-29860\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Sep 2011 08:13:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"29860@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WooThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"Austin Passy on \"Camera+ Widget\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/extend/plugins/camera-plus-widget/#post-35805\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Mar 2012 20:07:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"35805@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"A widget to showcase your camera+ uploaded photos.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Austin Passy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"Arevico on \"Facebook Page Promoter Lightbox\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"http://wordpress.org/extend/plugins/facebook-page-promoter-lightbox/#post-30011\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Sep 2011 23:25:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"30011@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"All your visitors should know about your facebook page and tell their friends. With this plugin you can display a preconfigured Facebook Page-Like Box\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Arevico\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"dweius on \"WedgePrint\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://wordpress.org/extend/plugins/wedgeprint/#post-35842\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 16 Mar 2012 01:39:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"35842@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:136:\"WedgePrint plugin for WordPress is an easy way to show your readers short-time visual screenshots while loading the requested blog page.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"dweius\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"jowilki on \"Pretty Pinterest Pins\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wordpress.org/extend/plugins/pretty-pinterest-pins/#post-34005\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 Jan 2012 05:41:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"34005@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"A plugin to show off images, captions, and links from your latest Pinterest activity.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"jowilki\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"lite3 on \"Flash Show And Hide Box\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://wordpress.org/extend/plugins/flash-show-and-hide-box/#post-31559\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Oct 2011 13:33:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"31559@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"Flash Show And Hide Box lets we very convenient embed flash, and control it show and hide.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"lite3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"MZAWeb on \"Business Hours Plugin\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wordpress.org/extend/plugins/business-hours-plugin/#post-32320\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Nov 2011 12:00:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"32320@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"Business Hours lets you show to your visitors the time you open and close your business each day of the week.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"MZAWeb\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"Agence web Eoxia - Montpellier on \"wpshop\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://wordpress.org/extend/plugins/wpshop/#post-27342\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Jun 2011 15:30:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"27342@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"Plugin de gestion de produits sous wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Agence web Eoxia - Montpellier\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"ramon fincken on \"Quick cache comment garbagecollector\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://wordpress.org/extend/plugins/quick-cache-comment-garbagecollector/#post-35519\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Mar 2012 19:39:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"35519@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"Add-on for Quick Cache. Will regenerate single page/post caches if a comment has been placed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"ramon fincken\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Skysa on \"Skysa App Bar\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.org/extend/plugins/skysa-official/#post-21682\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 Oct 2010 18:38:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"21682@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"Provides real-time social interaction for your WordPress members. Chat Room, Instant Messaging, Announcements, Polls and more.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Skysa\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"realestatecloud on \"MLS Search Real Estate Cloud\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wordpress.org/extend/plugins/real-estate-mls-search/#post-31696\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Nov 2011 16:42:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"31696@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"Most open, SEO-friendly MLS Search Wordpress plugin available. Implement MLS search on your website or blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"realestatecloud\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"captchaad_wp on \"CaptchaAd WordPress Plugin\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://wordpress.org/extend/plugins/captchaad/#post-29550\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 23 Aug 2011 15:04:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"29550@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"Integrates CaptchaAd anti-spam methods with WordPress including comment, registration spam protection.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"captchaad_wp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"Remco Tolsma on \"WooCommerce (nl)\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.org/extend/plugins/woocommerce-nl/#post-32325\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Nov 2011 15:03:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"32325@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"This WordPress plugin extends the WooCommerce plugin with the Dutch translation.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Remco Tolsma\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"wmsedgar on \"WP User Control\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"http://wordpress.org/extend/plugins/wp-user-control/#post-33714\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Jan 2012 21:53:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"33714@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:136:\"Add a WordPress login widget that allows a user to login, register, or reset their password, ALL without leaving their current location!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"wmsedgar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Peter Chester on \"Blog Copier\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/extend/plugins/blog-copier/#post-35774\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Mar 2012 09:43:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"35774@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Enables superusers to copy existing sub blogs to new sub blogs.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Peter Chester\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:52:\"http://wordpress.org/extend/plugins/rss/view/updated\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 16 Mar 2012 17:09:07 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:19:\"2011-09-05 08:13:36\";s:14:\"content-length\";s:4:\"7841\";s:4:\"x-nc\";s:11:\"HIT luv 139\";}s:5:\"build\";s:14:\"20090627192103\";}','no'),(1754,0,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1331960946','no'),(1755,0,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:50:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Mar 2012 16:48:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://wordpress.org/?v=3.4-alpha-20205\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:44:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress Takes SXSW 2012!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/news/2012/03/wordpress-takes-sxsw-2012/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wordpress.org/news/2012/03/wordpress-takes-sxsw-2012/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Mar 2012 16:19:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2240\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:327:\"The South by Southwest Interactive Festival (SXSW) holds a special place in the history and heart of WordPress. Though the conference has changed in the years since I first met Matt in the hallway in 2003 — before WordPress even had a name — it’s still arguably one of the most influential events in our [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Jane Wells\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3437:\"

The South by Southwest Interactive Festival (SXSW) holds a special place in the history and heart of WordPress. Though the conference has changed in the years since I first met Matt in the hallway in 2003 — before WordPress even had a name — it’s still arguably one of the most influential events in our industry, and we’ll be there again this year. Will we see you there?

\n

Booth

\n

There will be a WordPress booth at the SXSW trade show March 12-15. Our booth was packed to overflowing last year as we helped people with their blogs and gave away WordPress swag, so this year we’ll have more space to meet as many of you as possible. Stop by if you need a helping hand with your site, or just to say hi. We’ll also have buttons, stickers, and t-shirts again this year.

\n

Party

\n

This year’s WordPress party will be hosted by the WordPress Foundation on Monday, March 12 from 6-9pm. Space is limited, so make sure you RSVP (no SXSW badge is required). The party this year will be at the Buzzmedia Pure Volume House, and the story of how we hooked up with them is pretty cool.

\n

Once upon a time, David Wang had a business called Buzzmedia in Malaysia, with the twitter username @buzzmedia. When David changed gears and started ClickWP, a WordPress support business, he stopped going by the Buzzmedia name. In the U.S., a company also called Buzzmedia wished it had that Twitter username, and asked if they could have it since David wasn’t going to use it anymore.

\n

David, feeling the WordPress community love, said he would give them the name, and suggested they do something in return for the WordPress Foundation. So, everyone talked to everyone else and it worked out that Buzzmedia was willing to donate a fantastic venue for this year’s party as well as covering the bar.

\n

In the end, the Foundation got a great SXSW party, Buzzmedia got their twitter username, and David got the warm glow of having used his power for the good of the WordPress community, and they all lived happily ever after.

\n

Seriously, though, the PureVolume House is always a great SXSW venue, so thank you David and Buzzmedia for your generosity! We’ll have drinks and snacks and a few hundred WordPress-loving partygoers, so you know it will be a good time. Kind of like a WordCamp afterparty without all the work of a WordCamp. \':)\'

\n

The venue can hold 500 people, and based on last year, we’ll hit that pretty quickly. The one requirement is that you use WordPress. On the RSVP form, you will be asked to enter the URL of your WordPress-powered site (if you have more than one, just pick your main site). If you fill in this field with something other than what’s requested (such as “N/A” or putting in a fake url) your RSVP may be deleted, so please make sure to enter your real site.
\n RSVP Now!

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.org/news/2012/03/wordpress-takes-sxsw-2012/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:41:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Year of the Meetup\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"http://wordpress.org/news/2012/01/year-of-the-meetup/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.org/news/2012/01/year-of-the-meetup/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Jan 2012 20:17:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2210\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:456:\"We hereby declare 2012 as the Year of the WordPress Meetup. You\'ll want to get in on this action. So what is a WordPress Meetup? Basically, it\'s people in a community getting together — meeting up — who share an interest in WordPress, whether they be bloggers, business users, developers, consultants, or any other category of person able to say, \"I use WordPress in some way and I like it, and I want to meet other people who can say the same.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Jane Wells\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6300:\"

We hereby declare 2012 as the Year of the WordPress Meetup. You’ll want to get in on this action.

\n

meet·up \\mēt-əp\\ noun
\nA meeting, especially a regular meeting of people who share a particular interest and have connected with each other through a social-networking Web site: a meetup for new moms in the neighborhood; a meetup to plan the trip; a meetup for WordPress users.1

\n

So what is a WordPress Meetup? Basically, it’s people in a community getting together — meeting up — who share an interest in WordPress, whether they be bloggers, business users, developers, consultants, or any other category of person able to say, “I use WordPress in some way and I like it, and I want to meet other people who can say the same.” Meetups come in different shapes and sizes, but they all carry the benefit of connecting you with potential collaborators and friends, and helping you learn more about what you can do with WordPress. Here are some of the common types of WordPress meetups:

\n\n

There’s no prescribed format, as each local group can decide for itself what they want to do. Some groups mix it up from month to month, while others have multiple events each month to satisfy the needs of their community.

\n

The tough part? Running a popular group takes time and money. Just as we worked last year to remove the financial burden for WordCamp organizers and provide logistical support so they could focus more on their event content and experience, we want to start extending that kind of support to meetup groups as well. We don’t want it to cost anything for someone to run a WordPress meetup, or to attend one — building local communities should be as free as WordPress itself!

\n

Since there are so many more meetups than there are WordCamps, we’re going to start with the cost that is the same for every group: meetup.com organizer dues. We’re setting up an official WordPress account on Meetup.com right now, and over the next couple of weeks will be working with existing meetup group organizers, people who want to start a new meetup group, and the helpful folks at Meetup.com to put this program in place. WordPress meetup groups that choose to have their group become part of the WordPress account will no longer pay organizer dues for that group, as the WordPress Foundation will be footing the bill.

\n

This is exciting for several reasons. First, it means local organizers who are giving something back to the project by way of their time won’t also have shell out $12-19/month for the privilege. That alone is a big step. Second, it will open the door to more events and leaders within a community, since leadership and event planning won’t need to be tied to “owning” the meetup group. Third, more active meetup groups means more WordCamps, yay!

\n

In addition to the financial aspects, we’ll be working on ways to improve social recognition of meetup activity by incorporating feeds from the official meetup groups into the WordPress.org site, and including meetup group participation in the activity stream on your WordPress.org profile.2 I’m also hoping we can do something around providing video equipment to meetup groups (like we already do for WordCamps) to record presentations and tutorials that can be posted to WordPress.tv, helping meetup groups offer WordPress classes in their community, and getting involved with mentoring WordPress clubs at local schools and universities. Oh, and we’ll send out some WordPress buttons and stickers to the groups that join in, because everyone loves buttons and stickers.

\n

We’re also putting together some cool resources for people who want to start a new meetup group. There will be a field guide to getting started and some supplies to help you get your group going, and a forum for organizers to talk to and learn from each other.

\n

Over time, we’ll be talking to organizers and looking at what other expenses we can absorb and what other support we can provide to local groups. For now, we’re starting with the organizer dues. If you currently run a WordPress meetup group (whether you are using Meetup.com or not) or would like to start a WordPress meetup group in your area, please fill out our WordPress Meetup Groups survey. Filling in the survey doesn’t obligate you to join the official group, it just gives us a starting point to a) find out what groups are around/interested, and b) get some information on existing groups and their expenses and needs. Meetup.com will contact the group organizers who’ve said they’d like to join the new program, and will walk them through the logistics of the change and answer questions before helping them to opt-in officially.

\n

So, if you currently run a WordPress meetup group, or you would like to start one, please  fill out our WordPress Meetup Groups survey. I can’t wait to see more meetups!

\n

1 – Adapted from “meetup” definition at dictionary.com.
\n2 – Didn’t know about profiles? Check out http://profiles.wordpress.org/users/yourwordpressdotorgusernamehere (put in the username you use in the WordPress.org forums) to see yours!

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://wordpress.org/news/2012/01/year-of-the-meetup/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:41:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Internet Blackout Day on January 18\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"http://wordpress.org/news/2012/01/internet-blackout/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/news/2012/01/internet-blackout/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 Jan 2012 23:18:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2199\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:314:\"WordPress.org is officially joining the protest against Senate Bill 968: the Protect IP Act that is coming before the U.S. Senate next week. As I wrote in my post a week ago, if this bill is passed it will jeopardize internet freedom and shift the power of the independent web into the hands of corporations. [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Jane Wells\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1752:\"

WordPress.org is officially joining the protest against Senate Bill 968: the Protect IP Act that is coming before the U.S. Senate next week. As I wrote in my post a week ago, if this bill is passed it will jeopardize internet freedom and shift the power of the independent web into the hands of corporations. We must stop it.

\n

On January 18, 2012 many sites around the web — from small personal blogs to internet institutions like Mozilla, Wikipedia, reddit, and I Can Has Cheezburger? – will be going dark in protest and to drive their visitors to sites like americancensorship.org to take action and help fight the passage of the Protect IP Act. So will WordPress.org.

\n

If you want to join the protest by blacking out your WordPress site or applying a ribbon, there is now a variety of blackout plugins in the WordPress.org plugins directory. While joining the protest in this manner is laudable, please don’t forget to also make those phone calls to U.S. Senators — they’re the ones with the voting power.

\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://wordpress.org/news/2012/01/internet-blackout/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:41:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Help Stop SOPA/PIPA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://wordpress.org/news/2012/01/help-stop-sopa-pipa/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"http://wordpress.org/news/2012/01/help-stop-sopa-pipa/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 Jan 2012 19:18:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2191\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:298:\"You are an agent of change. Has anyone ever told you that? Well, I just did, and I meant it. Normally we stay away from from politics here at the official WordPress project — having users from all over the globe that span the political spectrum is evidence that we are doing our job and [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Jane Wells\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4305:\"

You are an agent of change. Has anyone ever told you that? Well, I just did, and I meant it.

\n

Normally we stay away from from politics here at the official WordPress project — having users from all over the globe that span the political spectrum is evidence that we are doing our job and democratizing publishing, and we don’t want to alienate any of our users no matter how much some of us may disagree with some of them personally. Today, I’m breaking our no-politics rule, because there’s something going on in U.S. politics right now that we need to make sure you know about and understand, because it affects us all.

\n

Using WordPress to blog, to publish, to communicate things online that once upon a time would have been relegated to an unread private journal (or simply remained unspoken, uncreated, unshared) makes you a part of one of the biggest changes in modern history: the democratization of publishing and the independent web. Every time you click Publish, you are a part of that change, whether you are posting canny political insight or a cat that makes you LOL. How would you feel if the web stopped being so free and independent? I’m concerned freaked right the heck out about the bills that threaten to do this, and as a participant in one of the biggest changes in modern history, you should be, too.

\n

You may have heard people talking/blogging/twittering about SOPA — the Stop Online Piracy Act. The recent SOPA-related boycott of GoDaddy was all over the news, with many people expressing their outrage over the possibilities of SOPA, but when I ask people about SOPA and its sister bill in the Senate, PIPA (Protect IP Act), many don’t really know what the bills propose, or what we stand to lose. If you are not freaked out by SOPA/PIPA, please: for the next four minutes, instead of checking Facebook statuses, seeing who mentioned you on Twitter, or watching the latest episode of Sherlock*, watch this video (by Fight for the Future).

\n

\n

Some thoughts:

\n\n

Blogging is a form of activism. You can be an agent of change. Some people will tell you that taking action is useless, that online petitions, phone calls to representatives, and other actions won’t change a single mind, especially one that’s been convinced of something by lobbyist dollars. To those people, I repeat the words of Margaret Mead:

\n

Never doubt that a small group of thoughtful, committed citizens can change the world. Indeed, it is the only thing that ever has.

\n

We are not a small group. More than 60 million people use WordPress — it’s said to power about 15% of the web. We can make an impact, and you can be an agent of change. Go to Stop American Censorship for more information and a bunch of ways you can take action quickly, easily, and painlessly. The Senate votes in two weeks, and we need to help at least 41 more senators see reason before then. Please. Make your voice heard.

\n

*Yes, the latest episode of Sherlock is good. Stephen Moffatt + Russell Tovey = always good

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/news/2012/01/help-stop-sopa-pipa/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:44:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 3.3.1 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/news/2012/01/wordpress-3-3-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/news/2012/01/wordpress-3-3-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Jan 2012 21:24:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/news/2012/01/wordpress-3-3-1/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:358:\"WordPress 3.3.1 is now available. This maintenance release fixes 15 issues with WordPress 3.3, as well as a fix for a cross-site scripting vulnerability that affected version 3.3. Thanks to Joshua H., Hoang T., Stefan Zimmerman, Chris K., and the Go Daddy security team for responsibly disclosing the bug to our security team. Download 3.3.1 or visit [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Ryan Boren\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:603:\"

WordPress 3.3.1 is now available. This maintenance release fixes 15 issues with WordPress 3.3, as well as a fix for a cross-site scripting vulnerability that affected version 3.3. Thanks to Joshua H., Hoang T., Stefan Zimmerman, Chris K., and the Go Daddy security team for responsibly disclosing the bug to our security team.

\n

Download 3.3.1 or visit Dashboard → Updates in your site admin.

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2012/01/wordpress-3-3-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:41:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"WordPress 3.3 “Sonny”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://wordpress.org/news/2011/12/sonny/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"http://wordpress.org/news/2011/12/sonny/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 12 Dec 2011 22:58:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2135\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:382:\"The latest and greatest version of the WordPress software — 3.3, named “Sonny” in honor of the great jazz saxophonist Sonny Stitt — is immediately available for download or update inside your WordPress dashboard. WordPress has had over 65 million downloads since version 3.0 was released, and in this third major iteration we’ve added significant [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:16719:\"

The latest and greatest version of the WordPress software — 3.3, named “Sonny” in honor of the great jazz saxophonist Sonny Stitt — is immediately available for download or update inside your WordPress dashboard.

\n

WordPress has had over 65 million downloads since version 3.0 was released, and in this third major iteration we’ve added significant polish around the new user experience, navigation, uploading, and imports. Check out this short video that summarizes the things we think you’ll find are the cat’s pajamas:

\n\n

For Users

\n

Experienced users will appreciate the new drag-and-drop uploader, hover menus for the navigation, the new toolbar, improved co-editing support, and the new Tumblr importer. We’ve also been thinking a ton about what the WordPress experience is like for people completely new to the software. Version 3.3 has significant improvements there with pointer tips for new features included in each update, a friendly welcome message for first-time users, and revamped help tabs throughout the interface. Finally we’ve improved the dashboard experience on the iPad and other tablets with better touch support.

\n

For Developers

\n

There is a ton of candy for developers as well. I’d recommend starting your exploration with the new editor API, new jQuery version, better ways to hook into the help screens, more performant post-slug-only permalinks, and of course the entire list of improvements on the Codex and in Trac.

\n

Roll the Credits

\n

The Credits tab on the new About WordPress screen in the WordPress dashboard provides recognition for contributors to each release, but we like to thank them here as well.

\n

Aaron D. Campbell, Aaron Jorbin, Adam Backstrom, Adam Harley, Alex Concha, Alex King, Alex Mills (Viper007Bond), amereservant, ampt, Andrei Freeman, Andre Renaut, andrewfrazier, Andrew Nacin, Andrew Ozz, Andrew Ryno, Andy Skelton, Anthony Atkinson, Austin Matzko, Bartosz Kaszubowski, Benjamin J. Balter, Brandon Dove, carlospaulino, Caspie, cebradesign, Chelsea Otakan, Chip Bennett, Chris Jean, Coen Jacobs, Curtiss Grymala, Daniel Bachhuber, Daryl Koopersmith, Daryl L. L. Houston, David, David Cowgill, David Gwyer, Da^MsT, deltafactory, demetris, Derek Herman, Devin Reams, Digital Raindrops, Dion Hulse (@dd32), Dominik Schilling (ocean90), Doug Provencio, dragoonis, DrewAPicture, Dylan Kuhn, eduplessis, Eightamrock, eko-fr, Elpie, elyobo, Empireoflight, Erick Hitter, Eric Mann, Evan Anderson, Evan Solomon, fonglh, garyc40, Gary Jones, Gaurav Aggarwal, George Stephanis, goldenapples, goto10, hakre, Helen Hou-Sandi, Ian Stewart, Ipstenu, Jackson, Jacob Gillespie, Jake Goldman, James Collins, Jane Wells, jeremyclarke, Jesper Johansen (Jayjdk), jgadbois, Jick, Joe Hoyle, John Blackbourn, John Hawkins, John James JacobyJohnONolan, John P. Bloch, Jon Cave, Jorge Bernal, Joseph Scott, jtclarke, Jurica Zuanovic, Justin Givens, Justin Sainton, Kailey Lampert (trepmal), kevinB, kitchin, Konstantin Kovshenin, Kuraishi, Kurt Payne, Lance Willett, Latz, linuxologos, Lloyd Budd, Luc De Brouwer, lukeschlather, Mako, Mantas Malcius, MarcusPope, mark-k, Mark Jaquith, Mark McWilliams, Marko Heijnen, Martin Lormes, masonjames, Matias Ventura, Matt Mullenweg, Matt Thomas, Matt Wiebe, MattyRob, Mert Yazicioglu, Michael Adams (mdawaffe), Michael Fields, Michal “Mau” Pliska, Mike Bijon, Mike Schroder, Milan Dinic, mitchoyoshitaka, Mohammad Jangda, Morten Hauan, Mr Papa, mrtorrent, Naoko McCracken, natebedortha, Nikolay Bachiyski, olivM, olleicua, Otto, pagesimplify, paulhastings0, pavelevap, pete.mall, Peter Westwood, peterwilsoncc, ppaire, Ptah Dunbar, r-a-y, Rami Y, Rasheed Bydousi, Robert Chapin (miqrogroove), Ron Rennick, Ross Hanney, ruslany, Ryan Boren, ryanhellyer, Ryan Imel, Safirul Alredha, Samir Shah, Sam Margulies, saracannon, Scott Basgaard, Scott Bressler, Scott Cariss, scottconnerly, Scott Reilly, Scott Taylor, scribu, Sergey Biryukov, Sheri Bigelow, Simon Wheatley, sirzooro, Stephanie Leary, tech163, TheDeadMedic, Tim Moore, Tom Auger, Travis Ballard, Ulrich Sossou, vnsavage, wpweaver, WraithKenny, Yoav Farhi, and Ze Fontainhas.

\n

As well, we’d like to give a shout out to these users who have been particularly active on the support forums since the release of 3.2:

\n

alchymyth, Andrea_r, ClaytonJames, cubecolour, Eran Miller, esmi, Frederick Townes, govpatel, Ipstenu, keesiemeijer, kmessinger, Marcus, Otto, peredur, Rev. Voodoo, Samuel B, Tobias, vtxyzzy, and zoonini.

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"http://wordpress.org/news/2011/12/sonny/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:44:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 3.3 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"http://wordpress.org/news/2011/12/wordpress-3-3-rc3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/news/2011/12/wordpress-3-3-rc3/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 11 Dec 2011 00:27:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2130\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:364:\"The third (and hopefully final!) release candidate for WordPress 3.3 is now available. Since RC2, we’ve done a handful of last-minute tweaks and bugfixes that we felt were necessary. Our goal is to release version 3.3 early next week, so plugin and theme authors, this is your last pre-release chance to  test your plugins and themes  to find any [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Jane Wells\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1726:\"

The third (and hopefully final!) release candidate for WordPress 3.3 is now available. Since RC2, we’ve done a handful of last-minute tweaks and bugfixes that we felt were necessary.

\n

Our goal is to release version 3.3 early next week, so plugin and theme authors, this is your last pre-release chance to  test your plugins and themes  to find any compatibility issues before the final release. We’ve published a number of posts on the development blog that explain important things you need to know as you prepare for WordPress 3.3. Please review this information immediately if you have not done so already.

\n

If you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. Or, if you’re comfortable writing a reproducible bug report, file one on WordPress Trac. Known issues that crop up will be listed here, but let’s all keep our fingers crossed for a quiet Sunday so we can get these new features into your hands early next week!

\n

To test WordPress 3.3, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the release candidate here (zip).

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://wordpress.org/news/2011/12/wordpress-3-3-rc3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:41:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Core Team Meetup Time\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://wordpress.org/news/2011/12/core-team-meetup-time/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.org/news/2011/12/core-team-meetup-time/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 11 Dec 2011 00:06:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2127\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:352:\"It’s almost that time again, when the WordPress core development team gets together in person to review the year’s progress and talk about priorities for the coming year. Next week Matt Mullenweg, Mark Jaquith, Peter Westwood, Andrew Ozz, Andrew Nacin, Dion Hulse, Daryl Koopersmith, Jon Cave, and I will meet at Tybee Island, GA, the [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Jane Wells\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2152:\"

It’s almost that time again, when the WordPress core development team gets together in person to review the year’s progress and talk about priorities for the coming year. Next week Matt Mullenweg, Mark Jaquith, Peter Westwood, Andrew Ozz, Andrew Nacin, Dion Hulse, Daryl Koopersmith, Jon Cave, and I will meet at Tybee Island, GA, the same location as the last meetup.

\n

Last year we wanted to do a video town hall, but ran into technical and scheduling difficulties. This year we’re planning ahead, and will definitely make it happen. We’re currently taking questions, and will record a series of town hall-style videos where we answer your questions. Ask about the roadmap, code, community, contributing, WordCamps, meetups, themes, plugins, features, you name it. No topic (as long as it is about WordPress) is off limits, and we’ll do our best to answer as many questions as we can while we are together. The videos will be posted to this blog and archived at WordPress.tv.

\n

Last year the people who were in attendance also posted pictures and updates to Twitter using the #wptybee tag. We’ll use the same tag this year, so if you’re interested in following along, add it to your Twitter client as a search.

\n

What do you want to know from us? Ask away!

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/news/2011/12/core-team-meetup-time/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:44:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 3.3 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.org/news/2011/12/wordpress-3-3-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.org/news/2011/12/wordpress-3-3-release-candidate-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Dec 2011 06:26:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2119\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:349:\"The second release candidate for WordPress 3.3 is now available! As the first release candidate was well-received, we think we’re really close to a final release. Primarily, we’ve ensured that new toolbar (the admin bar in 3.2) has a consistent appearance across all browsers, and the API for developers is now final. You can check [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2123:\"

The second release candidate for WordPress 3.3 is now available!

\n

As the first release candidate was well-received, we think we’re really close to a final release. Primarily, we’ve ensured that new toolbar (the admin bar in 3.2) has a consistent appearance across all browsers, and the API for developers is now final. You can check our bug tracker for the complete list of changes.

\n

Plugin and theme authors, please test your plugins and themes now, so that if there is a compatibility issue, we can figure it out before the final release. On our development blog, we’ve published a number of posts that explain important things you need to know as you prepare for WordPress 3.3.

\n

If you haven’t tested WordPress 3.3 yet, now is the time — please though, not on your live site unless you’re adventurous. Once you install RC2, you can visit About WordPress page (hover over the WordPress logo in the top left) to see an overview of what’s to come in WordPress 3.3 (and what to test, of course).

\n

If you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. Or, if you’re comfortable writing a reproducible bug report, file one on WordPress Trac. Known issues that crop up will be listed here.

\n

Enjoy!

\n

To test WordPress 3.3, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the release candidate here (zip).

\n

Sometimes time slows down
\nbetween releases – like now
\nThis is RC2

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.org/news/2011/12/wordpress-3-3-release-candidate-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:41:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 3.3 Release Candidate 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.org/news/2011/12/wordpress-3-3-release-candidate-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.org/news/2011/12/wordpress-3-3-release-candidate-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Dec 2011 05:55:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2113\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:334:\"Release Candidate stage means we think we’re done and are about ready to launch this version, but are doing one last check before we officially call it. So take a look, and as always, please check your themes and plugins for compatibility if you’re a developer. Stayed up late tonight, Hammering toward RC1. Now with [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Ryan Boren\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:475:\"

Release Candidate stage means we think we’re done and are about ready to launch this version, but are doing one last check before we officially call it. So take a look, and as always, please check your themes and plugins for compatibility if you’re a developer.

\n

Stayed up late tonight,
\nHammering toward RC1.
\nNow with more icons!

\n

Download WordPress 3.3 Release Candidate 1.

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.org/news/2011/12/wordpress-3-3-release-candidate-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:31:\"http://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 16 Mar 2012 17:09:05 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:10:\"x-pingback\";s:36:\"http://wordpress.org/news/xmlrpc.php\";s:13:\"last-modified\";s:29:\"Tue, 06 Mar 2012 16:48:24 GMT\";s:4:\"x-nc\";s:11:\"HIT luv 138\";}s:5:\"build\";s:14:\"20090627192103\";}','no'),(1760,0,'_transient_timeout_feed_mod_a5420c83891a9c88ad2a4f04584a5efc','1331960946','no'),(1761,0,'_transient_feed_mod_a5420c83891a9c88ad2a4f04584a5efc','1331917746','no'),(1774,0,'_transient_timeout_plugin_slugs','1332004147','no'),(1775,0,'_transient_plugin_slugs','a:2:{i:0;s:19:\"akismet/akismet.php\";i:1;s:9:\"hello.php\";}','no'),(1085,0,'_site_transient_timeout_wporg_theme_feature_list','1318278908','yes'),(1086,0,'_site_transient_wporg_theme_feature_list','a:5:{s:6:\"Colors\";a:15:{i:0;s:5:\"black\";i:1;s:4:\"blue\";i:2;s:5:\"brown\";i:3;s:4:\"gray\";i:4;s:5:\"green\";i:5;s:6:\"orange\";i:6;s:4:\"pink\";i:7;s:6:\"purple\";i:8;s:3:\"red\";i:9;s:6:\"silver\";i:10;s:3:\"tan\";i:11;s:5:\"white\";i:12;s:6:\"yellow\";i:13;s:4:\"dark\";i:14;s:5:\"light\";}s:7:\"Columns\";a:6:{i:0;s:10:\"one-column\";i:1;s:11:\"two-columns\";i:2;s:13:\"three-columns\";i:3;s:12:\"four-columns\";i:4;s:12:\"left-sidebar\";i:5;s:13:\"right-sidebar\";}s:5:\"Width\";a:2:{i:0;s:11:\"fixed-width\";i:1;s:14:\"flexible-width\";}s:8:\"Features\";a:18:{i:0;s:8:\"blavatar\";i:1;s:10:\"buddypress\";i:2;s:17:\"custom-background\";i:3;s:13:\"custom-colors\";i:4;s:13:\"custom-header\";i:5;s:11:\"custom-menu\";i:6;s:12:\"editor-style\";i:7;s:21:\"featured-image-header\";i:8;s:15:\"featured-images\";i:9;s:20:\"front-page-post-form\";i:10;s:19:\"full-width-template\";i:11;s:12:\"microformats\";i:12;s:12:\"post-formats\";i:13;s:20:\"rtl-language-support\";i:14;s:11:\"sticky-post\";i:15;s:13:\"theme-options\";i:16;s:17:\"threaded-comments\";i:17;s:17:\"translation-ready\";}s:7:\"Subject\";a:3:{i:0;s:7:\"holiday\";i:1;s:13:\"photoblogging\";i:2;s:8:\"seasonal\";}}','yes'),(151,0,'theme_mods_toolbox','a:1:{i:0;b:0;}','yes'),(153,0,'theme_mods_catalog','a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:3;}}','yes'),(180,0,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:1:{i:0;i:3;}}','yes'),(228,0,'theme_mods_catalog-1','a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:3;}}','yes'),(1764,0,'_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c','1331960947','no'),(1765,0,'_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c','1331917747','no'),(1766,0,'_transient_timeout_feed_57bc725ad6568758915363af670fd8bc','1331960947','no'),(1767,0,'_transient_feed_57bc725ad6568758915363af670fd8bc','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:72:\"\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 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress Plugins » View: Newest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"http://wordpress.org/extend/plugins/browse/new/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress Plugins » View: Newest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 16 Mar 2012 16:54:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:15:{i:0;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"dweius on \"WedgePrint\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://wordpress.org/extend/plugins/wedgeprint/#post-35842\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 16 Mar 2012 01:39:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"35842@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:136:\"WedgePrint plugin for WordPress is an easy way to show your readers short-time visual screenshots while loading the requested blog page.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"dweius\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"Adsense-Plugin on \"AdSense Wordpress Plugin\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"http://wordpress.org/extend/plugins/adsense-wordpress-plugin/#post-34684\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Feb 2012 00:11:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"34684@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"AdSense WordPress Plugin provides a quick an easy way for you to create and manage AdSense across your entire Wordpress site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Adsense-Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"ramon fincken on \"Quick cache comment garbagecollector\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://wordpress.org/extend/plugins/quick-cache-comment-garbagecollector/#post-35519\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Mar 2012 19:39:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"35519@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"Add-on for Quick Cache. Will regenerate single page/post caches if a comment has been placed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"ramon fincken\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"MikesNameIsMike on \"Crocodoc\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://wordpress.org/extend/plugins/crocodoc/#post-35862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 16 Mar 2012 14:57:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"35862@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"The Crocodoc Plugin allows you to upload pdf, doc/docx, ppt/pptx, png and jpg files from Wordpress to Crocodoc and embed them in posts using ShortCode\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"MikesNameIsMike\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"mattchan on \"WP RunKeeper Button\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wordpress.org/extend/plugins/wp-runkeeper-button/#post-35791\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Mar 2012 13:30:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"35791@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Adds a RunKeeper Healthy button to the top of single posts.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"mattchan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"rfair404 on \"JSON only\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://wordpress.org/extend/plugins/json-only/#post-35188\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 23 Feb 2012 06:24:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"35188@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"Revieve a JSON response from any post, page or archive by adding ?json to the url.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"rfair404\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"rfair404 on \"Simple LESS\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.org/extend/plugins/simple-less-for-wordpress/#post-35186\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 23 Feb 2012 05:58:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"35186@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"A simple way to start using LESS in your theme. Just add a file named theme.less to your active theme's directory.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"rfair404\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"FoxRunSoftware on \"WooCommerce Custom Product Tabs Lite\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://wordpress.org/extend/plugins/woocommerce-custom-product-tabs-lite/#post-35641\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Mar 2012 20:52:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"35641@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"This plugin extends the WooCommerce e-commerce plugin by allowing a custom product tab to be created with arbitrary content.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"FoxRunSoftware\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Peter Chester on \"Blog Copier\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/extend/plugins/blog-copier/#post-35774\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Mar 2012 09:43:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"35774@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Enables superusers to copy existing sub blogs to new sub blogs.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Peter Chester\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"digmedia on \"DM User Tracking\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://wordpress.org/extend/plugins/dm-user-tracking-plugin/#post-35806\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Mar 2012 20:41:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"35806@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"An extensive, customisable, fully featured user tracking plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"digmedia\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"Austin Passy on \"Camera+ Widget\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/extend/plugins/camera-plus-widget/#post-35805\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Mar 2012 20:07:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"35805@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"A widget to showcase your camera+ uploaded photos.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Austin Passy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"keyword-strategy on \"Google authorship for multiple authors\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"http://wordpress.org/extend/plugins/google-authorship-for-multiple-writers/#post-35810\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Mar 2012 22:36:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"35810@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"This plugin allows Wordpress-driven websites with multiple authors to properly claim authorship, linking each individual writer to their associated Go\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"keyword-strategy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"bnovotny on \"Marquee Style RSS News Ticker\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.org/extend/plugins/marquee-style-rss-news-ticker/#post-35749\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 12 Mar 2012 23:29:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"35749@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:145:\"Creative Software Design Solutions Marquee Style RSS News Ticker is a simple wordpress plugin to create the marquee in the website with rss feed.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"bnovotny\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"kpgraham on \"Simple Rich Text Widget\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://wordpress.org/extend/plugins/simple-rich-text-widget/#post-35804\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Mar 2012 19:59:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"35804@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"A simple rich text format widget for adding formatted HTML to sidebars.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"kpgraham\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Protech.mk on \"Protech Novini\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/extend/plugins/protech-novinimk/#post-35809\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Mar 2012 22:28:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"35809@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Maecdonian news aggregator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Protech.mk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:48:\"http://wordpress.org/extend/plugins/rss/view/new\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 16 Mar 2012 17:09:07 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:19:\"2012-03-16 01:39:06\";s:14:\"content-length\";s:4:\"7858\";s:4:\"x-nc\";s:11:\"HIT luv 139\";}s:5:\"build\";s:14:\"20090627192103\";}','no'),(1768,0,'_transient_timeout_feed_mod_57bc725ad6568758915363af670fd8bc','1331960947','no'),(1769,0,'_transient_feed_mod_57bc725ad6568758915363af670fd8bc','1331917747','no'); /*!40000 ALTER TABLE `wp_options` 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) unsigned NOT NULL auto_increment, `post_id` bigint(20) unsigned 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=93 DEFAULT CHARSET=utf8; 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 (1,2,'_wp_page_template','default'),(2,2,'_edit_lock','1318260543:2'),(3,2,'_edit_last','2'),(4,5,'_edit_last','2'),(5,5,'_edit_lock','1331922358:2'),(6,5,'_wp_page_template','default'),(7,7,'_edit_last','2'),(8,7,'_edit_lock','1331921796:2'),(9,7,'_wp_page_template','default'),(10,9,'_edit_last','2'),(11,9,'_wp_page_template','default'),(12,9,'_edit_lock','1323728843:3'),(13,11,'_edit_last','2'),(14,11,'_edit_lock','1327930547:2'),(15,11,'_wp_page_template','default'),(16,14,'_menu_item_type','post_type'),(17,14,'_menu_item_menu_item_parent','0'),(18,14,'_menu_item_object_id','11'),(19,14,'_menu_item_object','page'),(20,14,'_menu_item_target',''),(21,14,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(22,14,'_menu_item_xfn',''),(23,14,'_menu_item_url',''),(25,15,'_menu_item_type','post_type'),(26,15,'_menu_item_menu_item_parent','0'),(27,15,'_menu_item_object_id','9'),(28,15,'_menu_item_object','page'),(29,15,'_menu_item_target',''),(30,15,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(31,15,'_menu_item_xfn',''),(32,15,'_menu_item_url',''),(34,16,'_menu_item_type','post_type'),(35,16,'_menu_item_menu_item_parent','0'),(36,16,'_menu_item_object_id','7'),(37,16,'_menu_item_object','page'),(38,16,'_menu_item_target',''),(39,16,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(40,16,'_menu_item_xfn',''),(41,16,'_menu_item_url',''),(43,17,'_menu_item_type','post_type'),(44,17,'_menu_item_menu_item_parent','0'),(45,17,'_menu_item_object_id','5'),(46,17,'_menu_item_object','page'),(47,17,'_menu_item_target',''),(48,17,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49,17,'_menu_item_xfn',''),(50,17,'_menu_item_url',''),(52,18,'_menu_item_type','post_type'),(53,18,'_menu_item_menu_item_parent','0'),(54,18,'_menu_item_object_id','2'),(55,18,'_menu_item_object','page'),(56,18,'_menu_item_target',''),(57,18,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58,18,'_menu_item_xfn',''),(59,18,'_menu_item_url',''),(61,1,'_edit_lock','1311430237:4'),(62,1,'_edit_last','1'),(63,31,'_edit_last','3'),(64,31,'_edit_lock','1323729202:3'),(65,31,'_wp_page_template','default'),(66,46,'_wp_attached_file','2011/05/tumblr_lfjhvou0Xs1qgaxjko1_1280.jpg'),(67,46,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"800\";s:6:\"height\";s:4:\"1215\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'63\'\";s:4:\"file\";s:43:\"2011/05/tumblr_lfjhvou0Xs1qgaxjko1_1280.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:43:\"tumblr_lfjhvou0Xs1qgaxjko1_1280-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:43:\"tumblr_lfjhvou0Xs1qgaxjko1_1280-197x300.jpg\";s:5:\"width\";s:3:\"197\";s:6:\"height\";s:3:\"300\";}s:5:\"large\";a:3:{s:4:\"file\";s:44:\"tumblr_lfjhvou0Xs1qgaxjko1_1280-674x1024.jpg\";s:5:\"width\";s:3:\"674\";s:6:\"height\";s:4:\"1024\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(75,64,'_wp_attached_file','2011/07/application-file.jpg'),(76,64,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"442\";s:14:\"hwstring_small\";s:23:\"height=\'94\' width=\'128\'\";s:4:\"file\";s:28:\"2011/07/application-file.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:28:\"application-file-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:28:\"application-file-300x221.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"221\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(77,65,'_wp_attached_file','2011/07/branch-meeting.jpg'),(78,65,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"424\";s:14:\"hwstring_small\";s:23:\"height=\'90\' width=\'128\'\";s:4:\"file\";s:26:\"2011/07/branch-meeting.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:26:\"branch-meeting-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:26:\"branch-meeting-300x212.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"212\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(79,66,'_wp_attached_file','2011/07/first-meeting1.jpg'),(80,66,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"349\";s:14:\"hwstring_small\";s:23:\"height=\'74\' width=\'128\'\";s:4:\"file\";s:26:\"2011/07/first-meeting1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:26:\"first-meeting1-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:26:\"first-meeting1-300x174.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"174\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(81,67,'_wp_attached_file','2011/07/first-meeting2.jpg'),(82,67,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"395\";s:14:\"hwstring_small\";s:23:\"height=\'84\' width=\'128\'\";s:4:\"file\";s:26:\"2011/07/first-meeting2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:26:\"first-meeting2-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:26:\"first-meeting2-300x197.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"197\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(85,138,'_wp_attached_file','2011/10/IF-I-KNEW_emailout72dpi.jpg'),(86,138,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"722\";s:6:\"height\";s:3:\"480\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:35:\"2011/10/IF-I-KNEW_emailout72dpi.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:35:\"IF-I-KNEW_emailout72dpi-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:35:\"IF-I-KNEW_emailout72dpi-300x199.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"199\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON D50\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1318252593\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";}}'),(87,167,'_wp_attached_file','2011/02/CATALOG_FiveYears8_lowres.jpg'),(88,167,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"480\";s:6:\"height\";s:3:\"722\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'63\'\";s:4:\"file\";s:37:\"2011/02/CATALOG_FiveYears8_lowres.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:37:\"CATALOG_FiveYears8_lowres-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:37:\"CATALOG_FiveYears8_lowres-199x300.jpg\";s:5:\"width\";s:3:\"199\";s:6:\"height\";s:3:\"300\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON D50\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1319300449\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";}}'),(89,176,'_wp_attached_file','2012/01/CATALOG_FiveYears2_lowres.jpg'),(90,176,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"722\";s:6:\"height\";s:3:\"480\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:37:\"2012/01/CATALOG_FiveYears2_lowres.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:37:\"CATALOG_FiveYears2_lowres-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:37:\"CATALOG_FiveYears2_lowres-300x199.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"199\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON D50\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1319300400\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";}}'),(91,177,'_wp_attached_file','2012/01/CATALOG_FiveYears3_lowres.jpg'),(92,177,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"722\";s:6:\"height\";s:3:\"480\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:37:\"2012/01/CATALOG_FiveYears3_lowres.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:37:\"CATALOG_FiveYears3_lowres-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:37:\"CATALOG_FiveYears3_lowres-300x199.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"199\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON D50\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1319299594\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";}}'); /*!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) unsigned 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_excerpt` text NOT NULL, `post_status` varchar(20) NOT NULL default 'publish', `comment_status` varchar(20) NOT NULL default 'open', `ping_status` varchar(20) 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) unsigned 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`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`) ) ENGINE=MyISAM AUTO_INCREMENT=184 DEFAULT CHARSET=utf8; 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 (1,1,'2011-02-26 19:44:10','2011-02-26 19:44:10','Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!','Hello world!','','draft','open','open','','hello-world','','','2011-02-27 17:14:20','2011-02-27 17:14:20','',0,'http://catalog.org.uk/?p=1',0,'post','',1),(2,1,'2011-02-26 19:44:10','2011-02-26 19:44:10','\r\n\r\nCATALOG is Joyce Cronin, Frances Scott and Carolyn Thompson.\r\n\r\nCATALOG was founded on the premise that working collaboratively and sharing resources can provide a mutually beneficial exchange of ideas and opportunities. Our work is two-fold: to work together as a unit to initiate projects and commissions, and to support practicing artists and organisations with our project management, coordination and fundraising skills. It is a model that stems from collective work – we each have our own practice, but also access to tools and shared resources through CATALOG.\r\n\r\nPlease contact info@catalog.org.uk for further information.\r\n\r\n \r\n\r\n ','Contents','','publish','closed','closed','','contents','','','2011-10-10 15:29:03','2011-10-10 15:29:03','',0,'http://catalog.org.uk/?page_id=2',0,'page','',0),(14,1,'2011-02-27 15:23:51','2011-02-27 15:23:51','Catalog is Joyce Cronin, Frances Scott, and Carolyn Thompson.\r\n\r\ninfo@catalog.org.uk','','','publish','open','open','','14','','','2011-02-27 15:23:51','2011-02-27 15:23:51','',0,'http://catalog.org.uk/?p=14',5,'nav_menu_item','',0),(15,1,'2011-02-27 15:23:51','2011-02-27 15:23:51',' ','','','publish','open','open','','15','','','2011-02-27 15:23:51','2011-02-27 15:23:51','',0,'http://catalog.org.uk/?p=15',4,'nav_menu_item','',0),(16,1,'2011-02-27 15:23:51','2011-02-27 15:23:51',' ','','','publish','open','open','','16','','','2011-02-27 15:23:51','2011-02-27 15:23:51','',0,'http://catalog.org.uk/?p=16',3,'nav_menu_item','',0),(17,1,'2011-02-27 15:23:51','2011-02-27 15:23:51',' ','','','publish','open','open','','17','','','2011-02-27 15:23:51','2011-02-27 15:23:51','',0,'http://catalog.org.uk/?p=17',2,'nav_menu_item','',0),(18,1,'2011-02-27 15:23:51','2011-02-27 15:23:51','Catalog is a recently established collective of three artists, writers and project managers who combine and overlap their skills and interests through residencies, exhibitions, visual intervention and critical dialogue.','','','publish','open','open','','18','','','2011-02-27 15:23:51','2011-02-27 15:23:51','',0,'http://catalog.org.uk/?p=18',1,'nav_menu_item','',0),(4,1,'2011-02-26 19:44:10','2011-02-26 19:44:10','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickies to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','inherit','open','open','','2-revision','','','2011-02-26 19:44:10','2011-02-26 19:44:10','',2,'http://catalog.org.uk/?p=4',0,'revision','',0),(5,1,'2011-02-27 15:20:49','2011-02-27 15:20:49','IF I KNEW THEN WHAT I KNOW NOW\r\n\r\n\"\"\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW is a project that was first held as part of this is not a school at FIVE YEARS, London between 5-6pm on 22 October 2011 in response to “a free and open invitation for anyone to propose a participatory activity questioning the idea of \'School\' - \'Free\' or otherwise” More information here\r\n\r\nParticipants booked in advance to attend the session. CATALOG sent participants an empty envelope and a blank postcard, requesting that they bring to the session their envelope filled with content around a topic that they are especially interested in and/or have knowledge, as well as the postcard, onto which they wrote their chosen topic’s ‘chapter’ title.\r\n\r\nOn arrival to the session, participants submitted their envelope and in return received another participant’s material. They constructed and titled a ‘chapter’ from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. The session took place in silence.\r\n\r\nThe chapters were collected and assembled as a whole by CATALOG after the session.\r\n\r\nWe are currently working on the final document, which will be downloadable here as a PDF in spring 2012. The PDF booklet becomes a compendium of the combined knowledge of the participants in the session at that moment in time.\r\n\r\n\"\"\r\n\r\n\"\"','Function','','publish','closed','closed','','function','','','2012-03-16 18:25:58','2012-03-16 18:25:58','',0,'http://catalog.org.uk/?page_id=5',0,'page','',0),(6,1,'2011-02-27 15:20:44','2011-02-27 15:20:44','','Function','','inherit','open','open','','5-revision','','','2011-02-27 15:20:44','2011-02-27 15:20:44','',5,'http://catalog.org.uk/?p=6',0,'revision','',0),(7,1,'2011-02-27 15:21:10','2011-02-27 15:21:10','\"\"\"\"\r\n\r\n\"\"\r\n\r\n \r\n\r\nCATALOG 2011','Journal','','publish','closed','closed','','journal','','','2011-11-30 16:11:25','2011-11-30 16:11:25','',0,'http://catalog.org.uk/?page_id=7',0,'page','',0),(8,1,'2011-02-27 15:21:00','2011-02-27 15:21:00','','Journal','','inherit','open','open','','7-revision','','','2011-02-27 15:21:00','2011-02-27 15:21:00','',7,'http://catalog.org.uk/?p=8',0,'revision','',0),(9,1,'2011-02-27 15:21:20','2011-02-27 15:21:20','Joyce Cronin\r\nARTslant selected reviews\r\n\r\n\r\nFrances Scott\r\nwww.abyme.org.uk\r\nThe Quiddity Grid\r\n\r\n\r\nCarolyn Thompson\r\nwww.carolynthompson.co.uk\r\n','Index','','publish','closed','closed','','index','','','2011-11-30 15:57:46','2011-11-30 15:57:46','',0,'http://catalog.org.uk/?page_id=9',0,'page','',0),(10,1,'2011-02-27 15:21:14','2011-02-27 15:21:14','','Auto Draft','','inherit','open','open','','9-revision','','','2011-02-27 15:21:14','2011-02-27 15:21:14','',9,'http://catalog.org.uk/?p=10',0,'revision','',0),(11,1,'2011-02-27 15:21:53','2011-02-27 15:21:53','\r\n\r\nJoyce Cronin is a gallery manager, project manager and writer. Currently freelance, she worked as Gallery Manager (Exhibitions) at Matt’s Gallery, London from 2004-2009. She has worked for non-profit visual arts organisations for over ten years including Cubitt Gallery, The Drawing Room, Studio Voltaire and the Foundation for Women’s Art (FWA). She is a visiting tutor at the University of the Arts, London providing professional development portfolio reviews to students. Joyce is a graduate of the University of the Arts, with a BA in History of Art from Camberwell College and MA in Enterprise Management for the Creative Arts from the London College of Communications. She has contributed to the Artslant website and Axis online and is an Artistic Assessor for Arts Council England.\r\n\r\n\r\nFrances Scott is an artist and has shown work in the UK and New York, recently for a Lucky PDF live broadcast as part of their commission with Frieze Projects 2011. She has also performed in film and installation projects for artists including Lucy Cash, Magnus Palsson, Aura Satz, and Jennet Thomas, and works freelance in a range of contexts; currently as studio manager to Mike Nelson, and previously at organisations including Matt\'s Gallery, Beaconsfield, and Artsadmin. She has presented talks at institutes across the University of the Arts London, and at the University of Central Lancashire. Frances graduated from the BA at Courtauld Institute of Art in 2003, and from the MA Fine Art at Wimbledon College of Art in 2010.\r\n\r\nCarolyn Thompson is a visual artist, writer and quilt maker. She has exhibited in solo and group exhibitions in the UK and internationally, including at the Centre for Book Arts, New York, the 18th Istanbul Art Fair, MCO Gallery, Portugal, and the Eagle Gallery, London. Carolyn possesses an MA in Fine Art from Wimbledon College of Art (University of the Arts London). She has held various coordination and new media roles within public/non profit art organisations, including most recently Gallery Manager (Communications) at Matt\'s Gallery, London, and at the Film and Video Workshop and Synergy Theatre Project.  She currently works at the Design Archives in University of Brighton.\r\n\r\ninfo@catalog.org.uk','Communicate','','publish','closed','closed','','communicate','','','2012-01-30 13:35:46','2012-01-30 13:35:46','',0,'http://catalog.org.uk/?page_id=11',0,'page','',0),(12,1,'2011-02-27 15:21:35','2011-02-27 15:21:35','','Communicate','','inherit','open','open','','11-revision','','','2011-02-27 15:21:35','2011-02-27 15:21:35','',11,'http://catalog.org.uk/?p=12',0,'revision','',0),(13,1,'2011-02-27 15:20:36','2011-02-27 15:20:36','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\r\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\r\n...or something like this:\r\n
The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickies to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.
\r\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Contents','','inherit','open','open','','2-revision-2','','','2011-02-27 15:20:36','2011-02-27 15:20:36','',2,'http://catalog.org.uk/?p=13',0,'revision','',0),(19,1,'2011-02-27 15:22:28','2011-02-27 15:22:28','Catalog is a recently established collective of three artists, writers and project managers who combine and overlap their skills and interests through residencies, exhibitions, visual intervention and critical dialogue.','Contents','','inherit','closed','closed','','2-revision-3','','','2011-02-27 15:22:28','2011-02-27 15:22:28','',2,'http://catalog.org.uk/?p=19',0,'revision','',0),(20,1,'2011-02-27 15:21:53','2011-02-27 15:21:53','Catalog is Joyce Cronin, Frances Scott, and Carolyn Thompson.\r\n\r\ninfo@catalog.org.uk','Communicate','','inherit','closed','closed','','11-revision-2','','','2011-02-27 15:21:53','2011-02-27 15:21:53','',11,'http://catalog.org.uk/?p=20',0,'revision','',0),(21,1,'2011-02-27 15:20:49','2011-02-27 15:20:49','','Function','','inherit','closed','closed','','5-revision-2','','','2011-02-27 15:20:49','2011-02-27 15:20:49','',5,'http://catalog.org.uk/?p=21',0,'revision','',0),(22,1,'2011-02-27 15:21:20','2011-02-27 15:21:20','','Index','','inherit','closed','closed','','9-revision-2','','','2011-02-27 15:21:20','2011-02-27 15:21:20','',9,'http://catalog.org.uk/?p=22',0,'revision','',0),(23,1,'2011-02-27 15:21:10','2011-02-27 15:21:10','','Journal','','inherit','closed','closed','','7-revision-2','','','2011-02-27 15:21:10','2011-02-27 15:21:10','',7,'http://catalog.org.uk/?p=23',0,'revision','',0),(25,1,'2011-02-27 15:39:31','2011-02-27 15:39:31','Catalog is a recently established collective of three artists, writers and project managers who combine and overlap their skills and interests through residencies, exhibitions, visual intervention and critical dialogue.','Contents','','inherit','closed','closed','','2-revision-4','','','2011-02-27 15:39:31','2011-02-27 15:39:31','',2,'http://catalog.org.uk/?p=25',0,'revision','',0),(24,1,'2011-02-26 19:44:10','2011-02-26 19:44:10','Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!','Hello world!','','inherit','closed','closed','','1-revision','','','2011-02-26 19:44:10','2011-02-26 19:44:10','',1,'http://catalog.org.uk/?p=24',0,'revision','',0),(46,1,'2011-05-08 17:15:34','2011-05-08 17:15:34','','test','','inherit','closed','closed','','tumblr_lfjhvou0xs1qgaxjko1_1280','','','2011-05-08 17:15:34','2011-05-08 17:15:34','',0,'http://catalog.org.uk/wp-content/uploads/2011/05/tumblr_lfjhvou0Xs1qgaxjko1_1280.jpg',0,'attachment','image/jpeg',0),(29,2,'2011-10-10 15:20:15','2011-10-10 15:20:15','\n\nCATALOG is Joyce Cronin, Frances Scott and Carolyn Thompson.\n\nCATALOG was founded on the premise that working collaboratively and sharing resources can provide a mutually beneficial exchange of ideas and opportunities. Our work is two-fold: to work together as a unit to initiate projects and commissions, and to support practicing artists and organisations with our project management, coordination and fundraising skills. It is a model that stems from collective work – we each have our own practice, but also access to tools and shared resources through CATALOG.\n\nPlease contact info@catalog.org.uk for further information.\n\n \n\n ','Contents','','inherit','closed','closed','','2-autosave','','','2011-10-10 15:20:15','2011-10-10 15:20:15','',2,'http://catalog.org.uk/?p=29',0,'revision','',0),(130,2,'2011-10-10 15:08:41','2011-10-10 15:08:41','\r\n\r\nCATALOG will host a publishing exercise to run as part of FIVE YEARS\' this is not a school, a programme of events that respond to the phenomenon of the \'alternative education project\'. The session will be held at FIVE YEARS on 22 October between 5 - 6pm. More information, and how to book if you would like to participate, below.\r\n\r\nDetails on the full programme this is not a school www.fiveyears.org.uk/thisisnotaschool1.html\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW\r\n\r\nThis is a self-publishing exercise. It is a silent exchange of knowledge. Each participant creates a chapter. Within this class, generosity is a requirement. There is no singular authorial voice. There is a responsibility to share information. The system encourages a relay of ideas. It is not restricted to a particular discipline. How this knowledge or non-knowledge is expressed happens in the format of a booklet. All participants own the booklet. It is contingent on each participant and how they approach their chapter. Participants will access knowledge on a topic that another has anonymously passed on. There will be one booklet.\r\n\r\nNo previous experience is required. Booking is essential.\r\n\r\nTime: 1 hour\r\n\r\nThe procedure:\r\n\r\nParticipants book in advance, emailing info@catalog.org.uk with their postal address. In advance of the session CATALOG will send to participants an empty jiffy envelope and a blank postcard.\r\n\r\nParticipants must bring the following to the session:\r\ntheir jiffy envelope filled with content around a topic that they are especially interested in and/or have knowledge.\r\nthe postcard, onto which they should denote their chosen topic’s \'chapter\' title.\r\n\r\nCATALOG will provide some basic equipment and materials, including A5 papers with which chapters will be structured. Participants are welcome to bring any booklet-making items they would like to share in the session.\r\n\r\nPlease note: The material placed in the jiffy envelope will be used and is non-returnable. Any material is acceptable, but is preferable that it is in a printed format. eg. print-outs, magazines, books, newspapers etc.\r\n\r\nThe session: \r\n\r\n On arrival, participants will submit their envelope and in return will receive another participant’s material. They will construct and title a \'chapter\' from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. They will form their interpretation of the material they have received in the class, and make their contribution to the booklet from this. The class takes place in silence. Interaction between participants is necessary but non-verbal. CATALOG are participants in the session.\r\n\r\nThe booklet: \r\n\r\n The chapters will be collected and assembled as a whole by CATALOG after the session\r\nThe original and new chapter titles will be named in the booklet, connections and departures will be made.\r\nThe resulting booklet will be duplicated and distributed to all participants. The final document becomes a compendium of the combined knowledge of the students in the class at that moment in time. There is scope to extend participation in this process once the booklet has been produced, for example gifting copies of the book to nominated people or using the booklet as a \'chapter\' in the next booklet in the chain. It is a mobile system that can be repeated, modified, and expanded.','Function','','inherit','closed','closed','','5-revision-27','','','2011-10-10 15:08:41','2011-10-10 15:08:41','',5,'http://catalog.org.uk/?p=130',0,'revision','',0),(129,2,'2011-10-03 18:28:00','2011-10-03 18:28:00','\r\n\r\nCatalog is a recently established collective of three artists, writers and project managers who combine and share their skills and interests through exhibitions, visual intervention and critical dialogue.\r\n\r\nCatalog is Joyce Cronin, Frances Scott and Carolyn Thompson.\r\n\r\nCatalog was founded on the premise that working collaboratively and sharing resources can provide a mutually beneficial exchange of ideas and opportunities. Our work is two-fold: to work together as a unit to initiate projects and commissions, and to support practicing artists and organisations with our project management, coordination and fundraising skills. It is a model that stems from collective work – we each have our own practice, but also access to tools and shared resources through Catalog.\r\n\r\nWe are interested in process and the act of working through ideas.\r\nWe are interested in communication through text, visual language, and learning.\r\nWe support artists in all aspects of making, exhibiting and touring work. We can provide assistance and advice on fundraising applications, securing venues, project management, marketing and publicity.\r\n\r\nPlease contact info@catalog.org.uk for further information.\r\n\r\n\r\n \r\n\r\n ','Contents','','inherit','closed','closed','','2-revision-12','','','2011-10-03 18:28:00','2011-10-03 18:28:00','',2,'http://catalog.org.uk/?p=129',0,'revision','',0),(76,2,'2011-09-26 15:21:17','2011-09-26 15:21:17','\r\n\r\nCatalog is a recently established collective of three artists, writers and project managers who combine and share their skills and interests through exhibitions, visual intervention and critical dialogue.\r\n\r\nCatalog is Joyce Cronin, Frances Scott and Carolyn Thompson.\r\n\r\nCatalog was founded on the premise that working collaboratively and sharing resources can provide a mutually beneficial exchange of ideas and opportunities. Our work is two-fold: to work together as a unit to initiate projects and commissions, and to support practicing artists and organisations with our project management, coordination and fundraising skills. It is a model that stems from collective work – we each have our own practice, but also access to tools and shared resources through Catalog.\r\n\r\nWe are interested in process and the act of working through ideas.\r\nWe are interested in communication through text, visual language, and learning.\r\nWe support artists in all aspects of making, exhibiting and touring work. We can provide assistance and advice on fundraising applications, securing venues, project management, marketing and publicity.\r\n\r\nPlease contact info@catalog.org.uk for further information\r\n\r\n \r\n\r\n ','Contents','','inherit','closed','closed','','2-revision-8','','','2011-09-26 15:21:17','2011-09-26 15:21:17','',2,'http://catalog.org.uk/?p=76',0,'revision','',0),(30,2,'2011-02-27 17:14:44','2011-02-27 17:14:44','Catalog is a recently established collective of three artists, writers and project managers who combine and overlap their skills and interests through residencies, exhibitions, visual intervention and critical dialogue.\r\n\r\nCatalog is Joyce Cronin, Frances Scott, and Carolyn Thompson.\r\n\r\ninfo@catalog.org.uk\r\n\r\n ','Contents','','inherit','closed','closed','','2-revision-5','','','2011-02-27 17:14:44','2011-02-27 17:14:44','',2,'http://catalog.org.uk/?p=30',0,'revision','',0),(78,2,'2011-07-23 13:39:53','2011-07-23 13:39:53','Joyce Cronin is a gallery manager, writer, project manager and fundraiser. Currently freelance, she worked as Gallery Manager (Exhibitions) at Matt’s Gallery, London from 2004-2009. She has worked for non-profit visual arts organisations for over ten years including The Drawing Room, Studio Voltaire and the Foundation for Women’s Art (FWA). She is a visiting tutor at the University of the Arts, London providing professional development portfolio reviews to students. Joyce is a graduate of the University of the Arts, with a BA in History of Art from Camberwell College and MA in Enterprise Management for the Creative Arts from the London College of Communications. She is a regular contributor to the Artslant website and an Artistic Assessor for Arts Council England.\r\n
\r\n

Frances Scott is an artist and has shown work in the UK and New York. She has also performed in film and installation projects for artists including Aura Satz, Jennet Thomas and Lucy Cash, and works freelance in a range of contexts; currently as Artist assistant to Mike Nelson towards the Venice Biennale 2011, and previously at organisations including Matt\'s Gallery, Beaconsfield, and Artsadmin. She has presented talks at institutes across the University of the Arts London, and at the University of Central Lancashire. Frances graduated from the BA at Courtauld Institute of Art in 2003, and from the MA Fine Art at Wimbledon College of Art in 2010.

\r\n

Carolyn Thompson is a visual artist, writer and quilt maker. She has exhibited in solo and group exhibitions in the UK and internationally, including at the Centre for Book Arts, New York, the 18th Istanbul Art Fair, MCO Gallery, Portugal, and the Eagle Gallery, London. Carolyn possesses an MA in Fine Art from Wimbledon College of Art (University of the Arts London). She has held various coordination and new media roles within public/non profit art organisations, including most recently Gallery Manager (Communications) at Matt\'s Gallery, London, and at the Film and Video Workshop and Synergy Theatre Project.  She currently works at the Design Archives in University of Brighton.\r\n

\r\n

info@catalog.org.uk

\r\n\r\n
\r\n ','Communicate','','inherit','closed','closed','','11-revision-8','','','2011-07-23 13:39:53','2011-07-23 13:39:53','',11,'http://catalog.org.uk/?p=78',0,'revision','',0),(31,2,'2011-04-12 10:21:18','2011-04-12 10:21:18','Joyce Cronin is a gallery manager, project manager and writer. Currently freelance, she worked as Gallery Manager (Exhibitions) at Matt’s Gallery, London from 2004-2009. She has worked for non-profit visual arts organisations for over ten years including Cubitt Gallery, The Drawing Room, Studio Voltaire and the Foundation for Women’s Art (FWA). She is a visiting tutor at the University of the Arts, London providing professional development portfolio reviews to students. Joyce is a graduate of the University of the Arts, with a BA in History of Art from Camberwell College and MA in Enterprise Management for the Creative Arts from the London College of Communications. She has contributed to the Artslant website and Axis online and is an Artistic Assessor for Arts Council England.\r\n

Frances Scott is an artist and has shown work in the UK and New York. She has also performed in film and installation projects for artists including Aura Satz, Jennet Thomas and Lucy Cash, and works freelance in a range of contexts; currently as Artist assistant to Mike Nelson towards the Venice Biennale 2011, and previously at organisations including Matt\'s Gallery, Beaconsfield, and Artsadmin. She has presented talks at institutes across the University of the Arts London, and at the University of Central Lancashire. Frances graduated from the BA at Courtauld Institute of Art in 2003, and from the MA Fine Art at Wimbledon College of Art in 2010.

\r\n

Carolyn Thompson is a visual artist, writer and quilt maker. She has exhibited in solo and group exhibitions in the UK and internationally, including at the Centre for Book Arts, New York, the 18th Istanbul Art Fair, MCO Gallery, Portugal, and the Eagle Gallery, London. Carolyn possesses an MA in Fine Art from Wimbledon College of Art (University of the Arts London). She has held various coordination and new media roles within public/non profit art organisations, including most recently Gallery Manager Communications at Matt\'s Gallery, London, and at the Film and Video Workshop and Synergy Theatre Project.  She currently works at the Design Archives in University of Brighton.\r\n

\r\n ','Biographies','','publish','closed','closed','','biographies','','','2011-12-12 22:28:51','2011-12-12 22:28:51','',2,'http://catalog.org.uk/?page_id=31',0,'page','',0),(32,2,'2011-04-12 10:21:09','2011-04-12 10:21:09','','Biographies','','inherit','closed','closed','','31-revision','','','2011-04-12 10:21:09','2011-04-12 10:21:09','',31,'http://catalog.org.uk/?p=32',0,'revision','',0),(33,3,'2011-12-12 22:34:23','2011-12-12 22:34:23','Joyce Cronin is a gallery manager, project manager and writer. Currently freelance, she worked as Gallery Manager (Exhibitions) at Matt’s Gallery, London from 2004-2009. She has worked for non-profit visual arts organisations for over ten years including Cubitt Gallery, The Drawing Room, Studio Voltaire and the Foundation for Women’s Art (FWA). She is a visiting tutor at the University of the Arts, London providing professional development portfolio reviews to students. Joyce is a graduate of the University of the Arts, with a BA in History of Art from Camberwell College and MA in Enterprise Management for the Creative Arts from the London College of Communications. She has contributed to the Artslant website and Axis online and is an Artistic Assessor for Arts Council England.\n

Frances Scott is an artist and has shown work in the UK and New York. She has also performed in film and installation projects for artists including Aura Satz, Jennet Thomas and Lucy Cash, and works freelance in a range of contexts; currently as Artist assistant to Mike Nelson towards the Venice Biennale 2011, and previously at organisations including Matt\'s Gallery, Beaconsfield, and Artsadmin. She has presented talks at institutes across the University of the Arts London, and at the University of Central Lancashire. Frances graduated from the BA at Courtauld Institute of Art in 2003, and from the MA Fine Art at Wimbledon College of Art in 2010.

\n

Carolyn Thompson is a visual artist, writer and quilt maker. She has exhibited in solo and group exhibitions in the UK and internationally, including at the Centre for Book Arts, New York, the 18th Istanbul Art Fair, MCO Gallery, Portugal, and the Eagle Gallery, London. Carolyn possesses an MA in Fine Art from Wimbledon College of Art (University of the Arts London). She has held various coordination and new media roles within public/non profit art organisations, including most recently Gallery Manager Communications at Matt\'s Gallery, London, and at the Film and Video Workshop and Synergy Theatre Project.  She currently works at the Design Archives in University of Brighton.\n

\n ','Biographies','','inherit','closed','closed','','31-autosave','','','2011-12-12 22:34:23','2011-12-12 22:34:23','',31,'http://catalog.org.uk/?p=33',0,'revision','',0),(150,3,'2011-04-12 10:22:51','2011-04-12 10:22:51','Joyce Cronin is a gallery manager, writer, project manager and fundraiser. Currently freelance, she worked as Gallery Manager (Exhibitions) at Matt’s Gallery, London from 2004-2009. She has worked for non-profit visual arts organisations for over ten years including The Drawing Room, Studio Voltaire and the Foundation for Women’s Art (FWA). She is a visiting tutor at the University of the Arts, London providing professional development portfolio reviews to students. Joyce is a graduate of the University of the Arts, with a BA in History of Art from Camberwell College and MA in Enterprise Management for the Creative Arts from the London College of Communications. She is a regular contributor to the Artslant website and an Artistic Assessor for Arts Council England.\r\n

Frances Scott is an artist, and has shown work in the UK and New York. She has also performed in film and installation projects for artists including Aura Satz, Jennet Thomas and Lucy Cash, and works freelance in a range of contexts; currently as Artist assistant to Mike Nelson towards the Venice Biennale 2011, and previously at organisations including Matt\'s Gallery, Beaconsfield, and Artsadmin. She has presented talks at institutes across the University of the Arts London, and at the University of Central Lancashire. Frances graduated from the BA at Courtauld Institute of Art in 2003, and from the MA Fine Art at Wimbledon College of Art in 2010.

\r\n

Carolyn Thompson is a visual artist and writer. She exhibits internationally and possesses an MA in Fine Art from Wimbledon College of Art (University of the Arts). Carolyn has held various co-ordination and technical roles at University of Brighton, Matt\'s Gallery, London, Film and Video Workshop and Synergy Theatre Project.

\r\n ','Biographies','','inherit','closed','closed','','31-revision-3','','','2011-04-12 10:22:51','2011-04-12 10:22:51','',31,'http://catalog.org.uk/?p=150',0,'revision','',0),(34,2,'2011-04-12 10:21:18','2011-04-12 10:21:18','','Biographies','','inherit','closed','closed','','31-revision-2','','','2011-04-12 10:21:18','2011-04-12 10:21:18','',31,'http://catalog.org.uk/?p=34',0,'revision','',0),(35,2,'2011-11-30 16:04:11','2011-11-30 16:04:11','\n\nJoyce Cronin is a gallery manager, writer, project manager and fundraiser. Currently freelance, she worked as Gallery Manager (Exhibitions) at Matt’s Gallery, London from 2004-2009. She has worked for non-profit visual arts organisations for over ten years including The Drawing Room, Studio Voltaire and the Foundation for Women’s Art (FWA). She is a visiting tutor at the University of the Arts, London providing professional development portfolio reviews to students. Joyce is a graduate of the University of the Arts, with a BA in History of Art from Camberwell College and MA in Enterprise Management for the Creative Arts from the London College of Communications. She is a regular contributor to the Artslant website and an Artistic Assessor for Arts Council England.\n\nFrances Scott is an artist and has shown work in the UK and New York, recently for a Lucky PDF broadcast as part of their commission in Frieze Projects 2011. She has also performed in film and installation projects for artists including Lucy Cash, Magnus Palsson, Aura Satz, and Jennet Thomas, and works freelance in a range of contexts; currently as Artist assistant to Mike Nelson, and previously at organisations including Matt\'s Gallery, Beaconsfield, and Artsadmin. She has presented talks at institutes across the University of the Arts London, and at the University of Central Lancashire. Frances graduated from the BA at Courtauld Institute of Art in 2003, and from the MA Fine Art at Wimbledon College of Art in 2010.\n\nCarolyn Thompson is a visual artist, writer and quilt maker. She has exhibited in solo and group exhibitions in the UK and internationally, including at the Centre for Book Arts, New York, the 18th Istanbul Art Fair, MCO Gallery, Portugal, and the Eagle Gallery, London. Carolyn possesses an MA in Fine Art from Wimbledon College of Art (University of the Arts London). She has held various coordination and new media roles within public/non profit art organisations, including most recently Gallery Manager (Communications) at Matt\'s Gallery, London, and at the Film and Video Workshop and Synergy Theatre Project.  She currently works at the Design Archives in University of Brighton.\n\ninfo@catalog.org.uk\n','Communicate','','inherit','closed','closed','','11-autosave','','','2011-11-30 16:04:11','2011-11-30 16:04:11','',11,'http://catalog.org.uk/?p=35',0,'revision','',0),(36,2,'2011-02-27 15:41:24','2011-02-27 15:41:24','Catalog is Joyce Cronin, Frances Scott, and Carolyn Thompson.\r\n\r\ninfo@catalog.org.uk','Communicate','','inherit','closed','closed','','11-revision-3','','','2011-02-27 15:41:24','2011-02-27 15:41:24','',11,'http://catalog.org.uk/?p=36',0,'revision','',0),(37,2,'2011-04-12 10:27:21','2011-04-12 10:27:21','info@catalog.org.uk\r\n\r\nJoyce Cronin is a gallery manager, writer, project manager and fundraiser. Currently freelance, she worked as Gallery Manager (Exhibitions) at Matt’s Gallery, London from 2004-2009. She has worked for non-profit visual arts organisations for over ten years including The Drawing Room, Studio Voltaire and the Foundation for Women’s Art (FWA). She is a visiting tutor at the University of the Arts, London providing professional development portfolio reviews to students. Joyce is a graduate of the University of the Arts, with a BA in History of Art from Camberwell College and MA in Enterprise Management for the Creative Arts from the London College of Communications. She is a regular contributor to the Artslant website and an Artistic Assessor for Arts Council England.\r\n
\r\n

Frances Scott is an artist, and has shown work in the UK and New York. She has also performed in film and installation projects for artists including Aura Satz, Jennet Thomas and Lucy Cash, and works freelance in a range of contexts; currently as Artist assistant to Mike Nelson towards the Venice Biennale 2011, and previously at organisations including Matt\'s Gallery, Beaconsfield, and Artsadmin. She has presented talks at institutes across the University of the Arts London, and at the University of Central Lancashire. Frances graduated from the BA at Courtauld Institute of Art in 2003, and from the MA Fine Art at Wimbledon College of Art in 2010.

\r\n

Carolyn Thompson is a visual artist and writer. She exhibits internationally and possesses an MA in Fine Art from Wimbledon College of Art (University of the Arts). Carolyn has held various co-ordination and technical roles at University of Brighton, Matt\'s Gallery, London, Film and Video Workshop and Synergy Theatre Project.

\r\n\r\n
\r\n ','Communicate','','inherit','closed','closed','','11-revision-4','','','2011-04-12 10:27:21','2011-04-12 10:27:21','',11,'http://catalog.org.uk/?p=37',0,'revision','',0),(38,2,'2011-04-12 10:34:21','2011-04-12 10:34:21','info@catalog.org.uk\r\n\r\nJoyce Cronin is a gallery manager, writer, project manager and fundraiser. Currently freelance, she worked as Gallery Manager (Exhibitions) at Matt’s Gallery, London from 2004-2009. She has worked for non-profit visual arts organisations for over ten years including The Drawing Room, Studio Voltaire and the Foundation for Women’s Art (FWA). She is a visiting tutor at the University of the Arts, London providing professional development portfolio reviews to students. Joyce is a graduate of the University of the Arts, with a BA in History of Art from Camberwell College and MA in Enterprise Management for the Creative Arts from the London College of Communications. She is a regular contributor to the Artslant website and an Artistic Assessor for Arts Council England.\r\n
\r\n

Frances Scott is an artist, and has shown work in the UK and New York. She has also performed in film and installation projects for artists including Aura Satz, Jennet Thomas and Lucy Cash, and works freelance in a range of contexts; currently as Artist assistant to Mike Nelson towards the Venice Biennale 2011, and previously at organisations including Matt\'s Gallery, Beaconsfield, and Artsadmin. She has presented talks at institutes across the University of the Arts London, and at the University of Central Lancashire. Frances graduated from the BA at Courtauld Institute of Art in 2003, and from the MA Fine Art at Wimbledon College of Art in 2010.

\r\n

Carolyn Thompson is a visual artist and writer. She exhibits internationally and possesses an MA in Fine Art from Wimbledon College of Art (University of the Arts). Carolyn has held various co-ordination and technical roles at University of Brighton, Matt\'s Gallery, London, Film and Video Workshop and Synergy Theatre Project.

\r\n\r\n
\r\n ','Communicate','','inherit','closed','closed','','11-revision-5','','','2011-04-12 10:34:21','2011-04-12 10:34:21','',11,'http://catalog.org.uk/?p=38',0,'revision','',0),(39,2,'2011-02-27 15:41:30','2011-02-27 15:41:30','','Function','','inherit','closed','closed','','5-revision-3','','','2011-02-27 15:41:30','2011-02-27 15:41:30','',5,'http://catalog.org.uk/?p=39',0,'revision','',0),(40,3,'2011-04-12 11:39:01','2011-04-12 11:39:01','Projects we are working on include\r\n\r\nHAIR an exhibition looking at hair as subject, object, and material in contemporary art and its significance in anthropology, science, history, mythology, religion and fairytales.\r\n\r\nINTERVENTIONS a series of artists\' interventions in spaces including archives, museums, and research centres in South London.\r\n\r\nRESEARCH includes a collaborative publishing project that documents the early stages of an artist\'s moving-image project, and a series of archival film-screenings of and in Brixton.\r\n\r\n \r\n\r\n ','Function','','inherit','closed','closed','','5-revision-4','','','2011-04-12 11:39:01','2011-04-12 11:39:01','',5,'http://catalog.org.uk/?p=40',0,'revision','',0),(41,2,'2012-03-16 18:25:50','2012-03-16 18:25:50','IF I KNEW THEN WHAT I KNOW NOW\r\n\r\n\"\"\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW is a project that was first held as part of this is not a school at FIVE YEARS, London between 5-6pm on 22 October 2011 in response to “a free and open invitation for anyone to propose a participatory activity questioning the idea of \'School\' - \'Free\' or otherwise” More information here\r\n\r\nParticipants booked in advance to attend the session. CATALOG sent participants an empty envelope and a blank postcard, requesting that they bring to the session their envelope filled with content around a topic that they are especially interested in and/or have knowledge, as well as the postcard, onto which they wrote their chosen topic’s ‘chapter’ title.\r\n\r\nOn arrival to the session, participants submitted their envelope and in return received another participant’s material. They constructed and titled a ‘chapter’ from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. The session took place in silence.\r\n\r\nThe chapters were collected and assembled as a whole by CATALOG after the session.\r\n\r\nWe are currently working on the final document, which will be downloadable here as a PDF in spring 2012. The PDF booklet becomes a compendium of the combined knowledge of the participants in the session at that moment in time.\r\n\r\n\"\"\r\n\r\n\"\"','Function','','inherit','closed','closed','','5-autosave','','','2012-03-16 18:25:50','2012-03-16 18:25:50','',5,'http://catalog.org.uk/?p=41',0,'revision','',0),(42,3,'2011-04-12 11:41:11','2011-04-12 11:41:11','Projects we are working on include\r\n\r\nHAIR an exhibition looking at hair as subject, object, and material in contemporary art and its significance in anthropology, science, history, mythology, religion and fairytales.\r\n\r\nINTERVENTIONS a series of artists\' interventions in spaces including archives, museums, and research centres in South London.\r\n\r\nand current research includes:\r\n\r\na collaborative publishing project that documents the early stages of an artist\'s moving-image project, and a series of archival film-screenings of and in Brixton.\r\n\r\n \r\n\r\n ','Function','','inherit','closed','closed','','5-revision-5','','','2011-04-12 11:41:11','2011-04-12 11:41:11','',5,'http://catalog.org.uk/?p=42',0,'revision','',0),(43,3,'2011-04-12 10:36:37','2011-04-12 10:36:37','Joyce Cronin is a gallery manager, writer, project manager and fundraiser. Currently freelance, she worked as Gallery Manager (Exhibitions) at Matt’s Gallery, London from 2004-2009. She has worked for non-profit visual arts organisations for over ten years including The Drawing Room, Studio Voltaire and the Foundation for Women’s Art (FWA). She is a visiting tutor at the University of the Arts, London providing professional development portfolio reviews to students. Joyce is a graduate of the University of the Arts, with a BA in History of Art from Camberwell College and MA in Enterprise Management for the Creative Arts from the London College of Communications. She is a regular contributor to the Artslant website and an Artistic Assessor for Arts Council England.\r\n
\r\n

Frances Scott is an artist, and has shown work in the UK and New York. She has also performed in film and installation projects for artists including Aura Satz, Jennet Thomas and Lucy Cash, and works freelance in a range of contexts; currently as Artist assistant to Mike Nelson towards the Venice Biennale 2011, and previously at organisations including Matt\'s Gallery, Beaconsfield, and Artsadmin. She has presented talks at institutes across the University of the Arts London, and at the University of Central Lancashire. Frances graduated from the BA at Courtauld Institute of Art in 2003, and from the MA Fine Art at Wimbledon College of Art in 2010.

\r\n

Carolyn Thompson is a visual artist and writer. She exhibits internationally and possesses an MA in Fine Art from Wimbledon College of Art (University of the Arts). Carolyn has held various co-ordination and technical roles at University of Brighton, Matt\'s Gallery, London, Film and Video Workshop and Synergy Theatre Project.

\r\n

info@catalog.org.uk

\r\n\r\n
\r\n ','Communicate','','inherit','closed','closed','','11-revision-6','','','2011-04-12 10:36:37','2011-04-12 10:36:37','',11,'http://catalog.org.uk/?p=43',0,'revision','',0),(44,3,'2011-04-12 11:44:03','2011-04-12 11:44:03','Projects we are working on include:\r\n\r\nHAIR an exhibition looking at hair as subject, object, and material in contemporary art and its significance in anthropology, science, history, mythology, religion and fairytales.\r\n\r\nINTERVENTIONS a series of artists\' interventions in spaces including archives, museums, and research centres in South London.\r\n\r\nCurrent research includes:\r\n\r\na collaborative publishing project that documents the early stages of an artist\'s moving-image project, and a series of archival film-screenings of and in Brixton.\r\n\r\n \r\n\r\n ','Function','','inherit','closed','closed','','5-revision-6','','','2011-04-12 11:44:03','2011-04-12 11:44:03','',5,'http://catalog.org.uk/?p=44',0,'revision','',0),(52,4,'2011-07-23 13:41:25','2011-07-23 13:41:25','Projects we are working on include:\r\n\r\nINTERVENTIONS a series of artists\' interventions in spaces including archives, museums, and research centres in South London.\r\n\r\nCurrent research includes:\r\n\r\na collaborative publishing project documenting the early stages of an artist\'s moving-image project and a series of archival film-screenings of and in Brixton.\r\n\r\n \r\n','Function','','inherit','closed','closed','','5-revision-9','','','2011-07-23 13:41:25','2011-07-23 13:41:25','',5,'http://catalog.org.uk/?p=52',0,'revision','',0),(51,4,'2011-07-23 13:33:47','2011-07-23 13:33:47','Projects we are working on include:\r\n\r\nHAIR an exhibition looking at hair as subject, object, and material in contemporary art and its significance in anthropology, science, history, mythology, religion and fairytales.\r\n\r\nINTERVENTIONS a series of artists\' interventions in spaces including archives, museums, and research centres in South London.\r\n\r\nCurrent research includes:\r\n\r\na collaborative publishing project documenting the early stages of an artist\'s moving-image project and a series of archival film-screenings of and in Brixton.\r\n\r\n \r\n','Function','','inherit','closed','closed','','5-revision-8','','','2011-07-23 13:33:47','2011-07-23 13:33:47','',5,'http://catalog.org.uk/?p=51',0,'revision','',0),(49,4,'2011-04-13 15:52:51','2011-04-13 15:52:51','Projects we are working on include:\r\n\r\nHAIR an exhibition looking at hair as subject, object, and material in contemporary art and its significance in anthropology, science, history, mythology, religion and fairytales.\r\n\r\nINTERVENTIONS a series of artists\' interventions in spaces including archives, museums, and research centres in South London.\r\n\r\nCurrent research includes:\r\n\r\na collaborative publishing project documenting the early stages of an artist\'s moving-image project and a series of archival film-screenings of and in Brixton.\r\n\r\n \r\n\r\n ','Function','','inherit','closed','closed','','5-revision-7','','','2011-04-13 15:52:51','2011-04-13 15:52:51','',5,'http://catalog.org.uk/?p=49',0,'revision','',0),(50,4,'2011-04-13 15:50:56','2011-04-13 15:50:56','Joyce Cronin is a gallery manager, writer, project manager and fundraiser. Currently freelance, she worked as Gallery Manager (Exhibitions) at Matt’s Gallery, London from 2004-2009. She has worked for non-profit visual arts organisations for over ten years including The Drawing Room, Studio Voltaire and the Foundation for Women’s Art (FWA). She is a visiting tutor at the University of the Arts, London providing professional development portfolio reviews to students. Joyce is a graduate of the University of the Arts, with a BA in History of Art from Camberwell College and MA in Enterprise Management for the Creative Arts from the London College of Communications. She is a regular contributor to the Artslant website and an Artistic Assessor for Arts Council England.\r\n
\r\n

Frances Scott is an artist and has shown work in the UK and New York. She has also performed in film and installation projects for artists including Aura Satz, Jennet Thomas and Lucy Cash, and works freelance in a range of contexts; currently as Artist assistant to Mike Nelson towards the Venice Biennale 2011, and previously at organisations including Matt\'s Gallery, Beaconsfield, and Artsadmin. She has presented talks at institutes across the University of the Arts London, and at the University of Central Lancashire. Frances graduated from the BA at Courtauld Institute of Art in 2003, and from the MA Fine Art at Wimbledon College of Art in 2010.

\r\n

Carolyn Thompson is a visual artist, writer and quilt maker. She has exhibited in solo and group exhibitions in the UK and internationally, including at the Centre for Book Arts, New York, the 18th Istanbul Art Fair, MCO Gallery, Portugal, and the Eagle Gallery, London. Carolyn possesses an MA in Fine Art from Wimbledon College of Art (University of the Arts London). She has held various coordination and new media roles within public/non profit art organisations, including most recently Gallery Manager (Communications) at Matt\'s Gallery, London, and at the Film and Video Workshop and Synergy Theatre Project.  She currently works at the Design Archives in University of Brighton.\r\n

\r\n

info@catalog.org.uk

\r\n\r\n
\r\n ','Communicate','','inherit','closed','closed','','11-revision-7','','','2011-04-13 15:50:56','2011-04-13 15:50:56','',11,'http://catalog.org.uk/?p=50',0,'revision','',0),(75,2,'2011-07-23 14:41:56','2011-07-23 14:41:56','Catalog is a recently established collective of three artists, writers and project managers who combine and share their skills and interests through exhibitions, visual intervention and critical dialogue.\r\n\r\nCatalog is Joyce Cronin, Frances Scott and Carolyn Thompson.\r\n\r\nCatalog was founded on the premise that working collaboratively and sharing resources can provide a mutually beneficial exchange of ideas and opportunities. Our work is two-fold: to work together as a unit to initiate projects and commissions, and to support practicing artists and organisations with our project management, coordination and fundraising skills. It is a model that stems from collective work – we each have our own practice, but also access to tools and shared resources through Catalog.\r\n\r\nWe are interested in process and the act of working through ideas.\r\nWe are interested in communication through text, visual language, and learning.\r\nWe support artists in all aspects of making, exhibiting and touring work. We can provide assistance and advice on fundraising applications, securing venues, project management, marketing and publicity.\r\n\r\nPlease contact info@catalog.org.uk for further information\r\n\r\n \r\n\r\n ','Contents','','inherit','closed','closed','','2-revision-7','','','2011-07-23 14:41:56','2011-07-23 14:41:56','',2,'http://catalog.org.uk/?p=75',0,'revision','',0),(58,4,'2011-07-23 13:42:11','2011-07-23 13:42:11','Projects we are working on include:\r\n\r\nINTERVENTIONS a series of artists\' interventions in spaces including archives, museums, and research centres in South London.\r\n\r\nCurrent research includes:\r\n\r\na collaborative publishing project documenting the early stages of an artist\'s moving-image project and a series of archival film-screenings of and in Brixton.\r\n\r\n \r\n','Function','','inherit','closed','closed','','5-revision-10','','','2011-07-23 13:42:11','2011-07-23 13:42:11','',5,'http://catalog.org.uk/?p=58',0,'revision','',0),(59,4,'2011-07-23 14:01:44','2011-07-23 14:01:44','Projects we are working on include:\r\n\r\nINTERVENTIONS a series of artists\' interventions in spaces including archives, museums, and research centres in South London.\r\n\r\nCurrent research includes:\r\n\r\na collaborative publishing project documenting the early stages of an artist\'s moving-image project and a series of archival film-screenings of and in Brixton.\r\n\r\n ','Function','','inherit','closed','closed','','5-revision-11','','','2011-07-23 14:01:44','2011-07-23 14:01:44','',5,'http://catalog.org.uk/?p=59',0,'revision','',0),(60,4,'2011-07-23 14:03:41','2011-07-23 14:03:41','

Projects we are working on include:

\r\n

INTERVENTIONS a series of artists\' interventions in spaces including archives, museums, and research centres in South London.

\r\n

Current research includes:

\r\n

a collaborative publishing project documenting the early stages of an artist\'s moving-image project and a series of archival film-screenings of and in Brixton.

\r\n


\r\n\r\n','Function','','inherit','closed','closed','','5-revision-12','','','2011-07-23 14:03:41','2011-07-23 14:03:41','',5,'http://catalog.org.uk/?p=60',0,'revision','',0),(70,4,'2011-07-23 14:43:40','2011-07-23 14:43:40','Projects we are working on include:\r\n\r\nHAIR an exhibition looking at hair as subject, object, and material in contemporary art and its significance in anthropology, science, history, mythology, religion and fairytales.\r\n\r\nINTERVENTIONS a series of artists\' interventions in spaces including archives, museums, and research centres in South London.\r\n\r\nCurrent research includes:\r\n\r\na collaborative publishing project documenting the early stages of an artist\'s moving-image project and a series of archival film-screenings of and in Brixton.\r\n\r\n \r\n\r\n ','Function','','inherit','closed','closed','','5-revision-14','','','2011-07-23 14:43:40','2011-07-23 14:43:40','',5,'http://catalog.org.uk/?p=70',0,'revision','',0),(61,2,'2011-11-30 16:11:31','2011-11-30 16:11:31','\"\"\"\"\r\n\r\n\"\"\r\n\r\n \r\n\r\nCATALOG 2011','Journal','','inherit','closed','closed','','7-autosave','','','2011-11-30 16:11:31','2011-11-30 16:11:31','',7,'http://catalog.org.uk/?p=61',0,'revision','',0),(63,4,'2011-07-23 14:08:16','2011-07-23 14:08:16','Catalog is a recently established collective of three artists, writers and project managers who combine and share their skills and interests through exhibitions, visual intervention and critical dialogue.','Journal','','inherit','closed','closed','','7-revision-4','','','2011-07-23 14:08:16','2011-07-23 14:08:16','',7,'http://catalog.org.uk/?p=63',0,'revision','',0),(62,4,'2011-02-27 15:41:37','2011-02-27 15:41:37','','Journal','','inherit','closed','closed','','7-revision-3','','','2011-02-27 15:41:37','2011-02-27 15:41:37','',7,'http://catalog.org.uk/?p=62',0,'revision','',0),(64,4,'2011-07-23 14:30:30','2011-07-23 14:30:30','','CATALOG_application-file','','inherit','closed','closed','','application-file','','','2011-07-23 14:30:30','2011-07-23 14:30:30','',7,'http://catalog.org.uk/wp-content/uploads/2011/07/application-file.jpg',0,'attachment','image/jpeg',0),(65,4,'2011-07-23 14:30:31','2011-07-23 14:30:31','','CATALOG_branch-meeting','','inherit','closed','closed','','branch-meeting','','','2011-07-23 14:30:31','2011-07-23 14:30:31','',7,'http://catalog.org.uk/wp-content/uploads/2011/07/branch-meeting.jpg',0,'attachment','image/jpeg',0),(66,4,'2011-07-23 14:30:32','2011-07-23 14:30:32','','CATALOG_first-meeting1','','inherit','closed','closed','','first-meeting1','','','2011-07-23 14:30:32','2011-07-23 14:30:32','',7,'http://catalog.org.uk/wp-content/uploads/2011/07/first-meeting1.jpg',0,'attachment','image/jpeg',0),(67,4,'2011-07-23 14:30:34','2011-07-23 14:30:34','','CATALOG_first-meeting2','','inherit','closed','closed','','first-meeting2','','','2011-07-23 14:30:34','2011-07-23 14:30:34','',7,'http://catalog.org.uk/wp-content/uploads/2011/07/first-meeting2.jpg',0,'attachment','image/jpeg',0),(68,4,'2011-04-12 10:14:19','2011-04-12 10:14:19','Catalog is a recently established collective of three artists, writers and project managers who combine and share their skills and interests through exhibitions, visual intervention and critical dialogue.\r\n\r\nCatalog is Joyce Cronin, Frances Scott and Carolyn Thompson.\r\n\r\nCatalog was founded on the premise that working collaboratively and sharing resources can provide a mutually beneficial exchange of ideas and opportunities. Our work is two-fold: to work together as a unit to initiate projects and commissions, and to support practicing artists and organisations with our project management, coordination and fundraising skills. It is a model that stems from collective work – we each have our own practice, but also access to tools and shared resources through Catalog.\r\n\r\nWe are interested in process and the act of working through ideas.\r\nWe are interested in communication through text, visual language, and learning.\r\nWe support artists in all aspects of making, exhibiting and touring work. We can provide assistance and advice on fundraising applications, securing venues, project management, marketing and publicity.\r\n\r\nPlease contact info@catalog.org.uk for further information\r\n\r\n \r\n\r\n ','Contents','','inherit','closed','closed','','2-revision-6','','','2011-04-12 10:14:19','2011-04-12 10:14:19','',2,'http://catalog.org.uk/?p=68',0,'revision','',0),(69,4,'2011-07-23 14:04:25','2011-07-23 14:04:25','

Projects we are working on include:

\r\n

INTERVENTIONS a series of artists\' interventions in spaces including archives, museums, and research centres in South London.

\r\n

Current research includes:

\r\n

a collaborative publishing project documenting the early stages of an artist\'s moving-image project and a series of archival film-screenings of and in Brixton.

\r\n


\r\n \r\n','Function','','inherit','closed','closed','','5-revision-13','','','2011-07-23 14:04:25','2011-07-23 14:04:25','',5,'http://catalog.org.uk/?p=69',0,'revision','',0),(71,4,'2011-07-23 14:44:10','2011-07-23 14:44:10','Projects we are working on include:\r\n\r\nHAIR an exhibition looking at hair as subject, object, and material in contemporary art and its significance in anthropology, science, history, mythology, religion and fairytales.\r\n\r\nINTERVENTIONS a series of artists\' interventions in spaces including archives, museums, and research centres in South London.\r\n\r\nCurrent research includes:\r\n\r\na collaborative publishing project documenting the early stages of an artist\'s moving-image project and a series of archival film-screenings of and in Brixton.\r\n\r\n \r\n\r\n ','Function','','inherit','closed','closed','','5-revision-15','','','2011-07-23 14:44:10','2011-07-23 14:44:10','',5,'http://catalog.org.uk/?p=71',0,'revision','',0),(178,2,'2012-01-30 12:29:13','2012-01-30 12:29:13','\r\n\r\nOn 22 October 2011 CATALOG hosted a publishing exercise as part of FIVE YEARS\' THIS IS NOT A SCHOOL, a programme of events that responded to the phenomenon of the \'alternative education project\'. The session was held at FIVE YEARS, London E8. More information below, and details on the full programme here\r\n\r\n\"\"\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW\r\n\r\nThis is a self-publishing exercise. It is a silent exchange of knowledge. Within this class, generosity is a requirement. There is no singular authorial voice. There is a responsibility to share information. The system encourages a relay of ideas. It is not restricted to a particular discipline.  This knowledge or non-knowledge is expressed in the format of a booklet. Each participant creates a chapter. All participants own the booklet. It is contingent on each participant and how they approach their chapter. Participants will access knowledge on a topic that another has anonymously passed on. There will be one booklet.\r\n\r\nNo previous experience is required. Booking is essential.\r\n\r\nTime: 1 hour\r\n\r\nThe procedure:\r\n\r\nParticipants book in advance, emailing info@catalog.org.uk with their postal address. In advance of the session CATALOG will send to participants an empty envelope and a blank postcard.\r\n\r\nParticipants must bring the following to the session:\r\n\r\nCATALOG will provide some basic equipment and materials, including A5 papers with which chapters will be structured. Participants are welcome to bring any booklet-making items they would like to share in the session.\r\n\r\nPlease note: The material placed in the envelope will be used and is non-returnable. Any material is acceptable, but is preferable that it is in a printed format. eg. print-outs, magazines, books, newspapers etc.\r\n\r\nThe session: \r\n\r\n On arrival, participants will submit their envelope and in return will receive another participant’s material. They will construct and title a \'chapter\' from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. They will form their interpretation of the material they have received in the class, and make their contribution to the booklet from this. The class takes place in silence. Interaction between participants is necessary but non-verbal. CATALOG are participants in the session.\r\n\r\nThe booklet: \r\n\r\n The chapters will be collected and assembled as a whole by CATALOG after the session\r\nThe original and new chapter titles will be named in the booklet, connections and departures will be made.\r\nThe resulting booklet will be duplicated and distributed to all participants. The final document becomes a compendium of the combined knowledge of the students in the class at that moment in time. There is scope to extend participation in this process once the booklet has been produced, for example gifting copies of the book to nominated people or using the booklet as a \'chapter\' in the next booklet in the chain. It is a mobile system that can be repeated, modified, and expanded.','Function','','inherit','closed','closed','','5-revision-41','','','2012-01-30 12:29:13','2012-01-30 12:29:13','',5,'http://catalog.org.uk/?p=178',0,'revision','',0),(73,3,'2011-07-23 14:49:22','2011-07-23 14:49:22','\r\n\r\nProjects we are working on include:\r\n\r\n\r\nINTERVENTIONS a series of artists\' interventions in spaces including archives, museums, and research centres in South London.\r\n\r\nCurrent research includes:\r\n\r\na collaborative publishing project documenting the early stages of an artist\'s moving-image project and a series of archival film-screenings of and in Brixton.\r\n\r\n \r\n\r\n \r\n\r\n ','Function','','inherit','closed','closed','','5-revision-16','','','2011-07-23 14:49:22','2011-07-23 14:49:22','',5,'http://catalog.org.uk/?p=73',0,'revision','',0),(180,2,'2012-03-16 17:15:06','2012-03-16 17:15:06','\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW\r\n\r\n\"\"\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW is a project that was first held as part of this is not a school at FIVE YEARS, London at 5-6pm on 22 October 2011 in response to “a free and open invitation for anyone to propose a participatory activity questioning the idea of \'School\' - \'Free\' or otherwise” More information here\r\n\r\nParticipants booked in advance to attend the session. CATALOG sent participants an empty envelope and a blank postcard, requesting that they bring to the session their envelope filled with content around a topic that they are especially interested in and/or have knowledge, as well as the postcard, onto which they wrote their chosen topic’s ‘chapter’ title.\r\n \r\nOn arrival to the session, participants submitted their envelope and in return received another participant’s material. They constructed and titled a ‘chapter’ from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. The session took place in silence.\r\n \r\nThe chapters were collected and assembled as a whole by CATALOG after the session. \r\n\r\nWe are currently working on the final document, which will be downloadable here as a PDF in spring 2012. The PDF booklet becomes a compendium of the combined knowledge of the participants in the session at that moment in time.\r\n\r\n\r\n\r\n','Function','','inherit','closed','closed','','5-revision-43','','','2012-03-16 17:15:06','2012-03-16 17:15:06','',5,'http://catalog.org.uk/?p=180',0,'revision','',0),(112,4,'2011-10-03 19:21:48','2011-10-03 19:21:48','\r\n\r\ncoming soon....','Index','','inherit','closed','closed','','9-revision-11','','','2011-10-03 19:21:48','2011-10-03 19:21:48','',9,'http://catalog.org.uk/?p=112',0,'revision','',0),(77,2,'2011-09-26 15:24:04','2011-09-26 15:24:04','\r\n\r\nCatalog is a recently established collective of three artists, writers and project managers who combine and share their skills and interests through exhibitions, visual intervention and critical dialogue.\r\n\r\nCatalog is Joyce Cronin, Frances Scott and Carolyn Thompson.\r\n\r\nCatalog was founded on the premise that working collaboratively and sharing resources can provide a mutually beneficial exchange of ideas and opportunities. Our work is two-fold: to work together as a unit to initiate projects and commissions, and to support practicing artists and organisations with our project management, coordination and fundraising skills. It is a model that stems from collective work – we each have our own practice, but also access to tools and shared resources through Catalog.\r\n\r\nWe are interested in process and the act of working through ideas.\r\nWe are interested in communication through text, visual language, and learning.\r\nWe support artists in all aspects of making, exhibiting and touring work. We can provide assistance and advice on fundraising applications, securing venues, project management, marketing and publicity.\r\n\r\nPlease contact info@catalog.org.uk for further information\r\n\r\n \r\n\r\n ','Contents','','inherit','closed','closed','','2-revision-9','','','2011-09-26 15:24:04','2011-09-26 15:24:04','',2,'http://catalog.org.uk/?p=77',0,'revision','',0),(79,2,'2011-07-23 14:08:33','2011-07-23 14:08:33','','Journal','','inherit','closed','closed','','7-revision-5','','','2011-07-23 14:08:33','2011-07-23 14:08:33','',7,'http://catalog.org.uk/?p=79',0,'revision','',0),(85,2,'2011-09-26 15:44:21','2011-09-26 15:44:21','http://catalog.org.uk/wp-content/uploads/2011/07/first-meeting2.jpg','Journal','','inherit','closed','closed','','7-revision-11','','','2011-09-26 15:44:21','2011-09-26 15:44:21','',7,'http://catalog.org.uk/?p=85',0,'revision','',0),(83,2,'2011-09-26 15:38:41','2011-09-26 15:38:41','\"\"','Journal','','inherit','closed','closed','','7-revision-9','','','2011-09-26 15:38:41','2011-09-26 15:38:41','',7,'http://catalog.org.uk/?p=83',0,'revision','',0),(84,2,'2011-09-26 15:41:27','2011-09-26 15:41:27','\"\"','Journal','','inherit','closed','closed','','7-revision-10','','','2011-09-26 15:41:27','2011-09-26 15:41:27','',7,'http://catalog.org.uk/?p=84',0,'revision','',0),(82,2,'2011-09-26 15:37:53','2011-09-26 15:37:53','[gallery]','Journal','','inherit','closed','closed','','7-revision-8','','','2011-09-26 15:37:53','2011-09-26 15:37:53','',7,'http://catalog.org.uk/?p=82',0,'revision','',0),(101,4,'2011-10-03 18:40:53','2011-10-03 18:40:53','[gallery]\r\n\r\n\r\n','Journal','','inherit','closed','closed','','7-revision-20','','','2011-10-03 18:40:53','2011-10-03 18:40:53','',7,'http://catalog.org.uk/?p=101',0,'revision','',0),(87,2,'2011-09-26 15:45:00','2011-09-26 15:45:00','[gallery link=\"file\"]','Journal','','inherit','closed','closed','','7-revision-12','','','2011-09-26 15:45:00','2011-09-26 15:45:00','',7,'http://catalog.org.uk/?p=87',0,'revision','',0),(144,2,'2011-10-11 13:49:52','2011-10-11 13:49:52','\"\"Visual journal\"\"\"\"\r\n\r\n\"\"\r\n\r\n ','Journal','','inherit','closed','closed','','7-revision-27','','','2011-10-11 13:49:52','2011-10-11 13:49:52','',7,'http://catalog.org.uk/?p=144',0,'revision','',0),(88,4,'2011-07-30 21:21:06','2011-07-30 21:21:06','\r\n\r\nAs the first part of a series of artists\' interventions, in spaces including archives, museums, and research centres in South London, CATALOG is working on a project to be located in the covered market areas of Brixton in the London Borough of Lambeth. It will take place in Spring 2012 in the Reliance Aracade, Market Row, and Brixton Village (previously known as the Granville Arcade) and in collaboration with market traders. The project will comprise both new work and archive material that responds to and re-presents the site of its encounter, as three interconnected strands:\r\n\r\nA collection of films made in and about Brixton, by a diverse body of documentary film-makers, artists and Brixton enthusiasts. Selected by Joyce Cronin, the works will be screened within the market-arcades.\r\n\r\nOut of the hours, a new moving image work by Frances Scott that traces activities and material residues outside the trading hours. The accompanying narrative is drawn from recorded testimonials from market workers. Proposed as ‘eye witness’ accounts, they come to reveal the occurrence of an unnamed event in Reliance Arcade, where objects are the physical remainders of some ‘visitation.’ Out of the hours considers collective memory as creative agent, and the role of narrator as (complicit) witness.\r\n\r\nX, an installation of objects and drawings embedded within the existing display-façade and stock of a vintage clothing store, originally a clock and watch shop, in which Carolyn Thompson creates a tension between the past-lives of objects; what was once there, is there now, and is newly inserted. The work slips between drawing and sculpture, using textiles and paper to describe and interpret the lost histories of both the environment in which the work is set, and the current items contained within it. Intimate drawings produced in hair, thread, paper and fabric suggest an essence of those who occupied the shop and owned its clothing and ephemera, whilst dSepicting an absence of physical presence.\r\n\r\n \r\n\r\nFOOTNOTE.\r\n\r\nThe genesis of Brixton Market can be traced back to Atlantic Road in the 1870s, that soon expanded to include Electric Avenue, one of the first streets to have electric light. The indoor market arcades were constructed in 1920s-30s. The various sites comprise a network of stalls and shops, and following extensive campaigning by local residents and community groups, were listed as Grade II buildings in 2010. They continue to form an important part to the social and economic history of the area.\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ','Function','','inherit','closed','closed','','5-revision-17','','','2011-07-30 21:21:06','2011-07-30 21:21:06','',5,'http://catalog.org.uk/?p=88',0,'revision','',0),(80,2,'2011-09-26 15:35:28','2011-09-26 15:35:28','\"\"\r\n\r\n\"\"\r\n\r\n\"\"\r\n\r\n\"\"','Journal','','inherit','closed','closed','','7-revision-6','','','2011-09-26 15:35:28','2011-09-26 15:35:28','',7,'http://catalog.org.uk/?p=80',0,'revision','',0),(81,2,'2011-09-26 15:36:19','2011-09-26 15:36:19','\"\"\r\n\r\n\"\"\r\n\r\n\"\"\r\n\r\n\"\"','Journal','','inherit','closed','closed','','7-revision-7','','','2011-09-26 15:36:19','2011-09-26 15:36:19','',7,'http://catalog.org.uk/?p=81',0,'revision','',0),(89,4,'2011-09-26 15:46:14','2011-09-26 15:46:14','[gallery]','Journal','','inherit','closed','closed','','7-revision-13','','','2011-09-26 15:46:14','2011-09-26 15:46:14','',7,'http://catalog.org.uk/?p=89',0,'revision','',0),(143,2,'2011-10-11 13:45:39','2011-10-11 13:45:39','\"\"','Journal','','inherit','closed','closed','','7-revision-26','','','2011-10-11 13:45:39','2011-10-11 13:45:39','',7,'http://catalog.org.uk/?p=143',0,'revision','',0),(90,4,'2011-10-03 18:17:26','2011-10-03 18:17:26','[gallery]\"\"','Journal','','inherit','closed','closed','','7-revision-14','','','2011-10-03 18:17:26','2011-10-03 18:17:26','',7,'http://catalog.org.uk/?p=90',0,'revision','',0),(102,4,'2011-10-03 18:36:49','2011-10-03 18:36:49','','Index','','inherit','closed','closed','','9-revision-6','','','2011-10-03 18:36:49','2011-10-03 18:36:49','',9,'http://catalog.org.uk/?p=102',0,'revision','',0),(103,2,'2011-11-30 15:53:27','2011-11-30 15:53:27','Joyce Cronin\nARTslant selected reviews\n\n\nFrances Scott\nwww.abyme.org.uk\nThe Quiddity Grid\n\n\nCarolyn Thompson\nwww.carolynthompson.co.uk\n','Index','','inherit','closed','closed','','9-autosave','','','2011-11-30 15:53:27','2011-11-30 15:53:27','',9,'http://catalog.org.uk/?p=103',0,'revision','',0),(91,4,'2011-10-03 18:21:30','2011-10-03 18:21:30','As the first part of a series of artists\' interventions, in spaces including archives, museums, and research centres in South London, CATALOG is working on a project to be located in the covered market areas of Brixton in the London Borough of Lambeth. It will take place in Spring 2012 in the Reliance Aracade, Market Row, and Brixton Village (previously known as the Granville Arcade) and in collaboration with market traders. The project will comprise both new work and archive material that responds to and re-presents the site of its encounter, as three interconnected strands:[gallery]\r\n\r\n\"\"','Journal','','inherit','closed','closed','','7-revision-15','','','2011-10-03 18:21:30','2011-10-03 18:21:30','',7,'http://catalog.org.uk/?p=91',0,'revision','',0),(100,4,'2011-10-03 18:39:57','2011-10-03 18:39:57','\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n[gallery]\r\n\r\n\r\n','Journal','','inherit','closed','closed','','7-revision-19','','','2011-10-03 18:39:57','2011-10-03 18:39:57','',7,'http://catalog.org.uk/?p=100',0,'revision','',0),(99,4,'2011-10-03 18:39:00','2011-10-03 18:39:00','\"\"\r\n\r\n\"\"\r\n\r\n \r\n\r\n\"\"[gallery]\r\n\r\n\"\"','Journal','','inherit','closed','closed','','7-revision-18','','','2011-10-03 18:39:00','2011-10-03 18:39:00','',7,'http://catalog.org.uk/?p=99',0,'revision','',0),(98,4,'2011-10-03 18:32:02','2011-10-03 18:32:02','As the first part of a series of artists\' interventions, in spaces including archives, museums, and research centres in South London, CATALOG is working on a project to be located in the covered market areas of Brixton in the London Borough of Lambeth. It will take place in Spring 2012 in the Reliance Aracade, Market Row, and Brixton Village (previously known as the Granville Arcade) and in collaboration with market traders. The project will comprise both new work and archive material that responds to and re-presents the site of its encounter, as three interconnected strands:\r\n\r\n \r\n\r\n\"\"[gallery]\r\n\r\n\"\"','Journal','','inherit','closed','closed','','7-revision-17','','','2011-10-03 18:32:02','2011-10-03 18:32:02','',7,'http://catalog.org.uk/?p=98',0,'revision','',0),(92,4,'2011-09-26 15:24:59','2011-09-26 15:24:59','\r\n\r\nCatalog is a recently established collective of three artists, writers and project managers who combine and share their skills and interests through exhibitions, visual intervention and critical dialogue.\r\n\r\nCatalog is Joyce Cronin, Frances Scott and Carolyn Thompson.\r\n\r\nCatalog was founded on the premise that working collaboratively and sharing resources can provide a mutually beneficial exchange of ideas and opportunities. Our work is two-fold: to work together as a unit to initiate projects and commissions, and to support practicing artists and organisations with our project management, coordination and fundraising skills. It is a model that stems from collective work – we each have our own practice, but also access to tools and shared resources through Catalog.\r\n\r\nWe are interested in process and the act of working through ideas.\r\nWe are interested in communication through text, visual language, and learning.\r\nWe support artists in all aspects of making, exhibiting and touring work. We can provide assistance and advice on fundraising applications, securing venues, project management, marketing and publicity.\r\n\r\nPlease contact info@catalog.org.uk for further information.\r\n\r\n \r\n\r\n ','Contents','','inherit','closed','closed','','2-revision-10','','','2011-09-26 15:24:59','2011-09-26 15:24:59','',2,'http://catalog.org.uk/?p=92',0,'revision','',0),(94,4,'2011-10-03 18:23:20','2011-10-03 18:23:20','As the first part of a series of artists\' interventions, in spaces including archives, museums, and research centres in South London, CATALOG is working on a project to be located in the covered market areas of Brixton in the London Borough of Lambeth. It will take place in Spring 2012 in the Reliance Aracade, Market Row, and Brixton Village (previously known as the Granville Arcade) and in collaboration with market traders. The project will comprise both new work and archive material that responds to and re-presents the site of its encounter, as three interconnected strands:\r\n\r\n \r\n\r\n\"\"[gallery]\r\n\r\n\"\"','Journal','','inherit','closed','closed','','7-revision-16','','','2011-10-03 18:23:20','2011-10-03 18:23:20','',7,'http://catalog.org.uk/?p=94',0,'revision','',0),(93,4,'2011-10-03 18:27:35','2011-10-03 18:27:35','\r\n\r\nCatalog is a recently established collective of three artists, writers and project managers who combine and share their skills and interests through exhibitions, visual intervention and critical dialogue.\r\n\r\nCatalog is Joyce Cronin, Frances Scott and Carolyn Thompson.\r\n\r\nCatalog was founded on the premise that working collaboratively and sharing resources can provide a mutually beneficial exchange of ideas and opportunities. Our work is two-fold: to work together as a unit to initiate projects and commissions, and to support practicing artists and organisations with our project management, coordination and fundraising skills. It is a model that stems from collective work – we each have our own practice, but also access to tools and shared resources through Catalog.\r\n\r\nWe are interested in process and the act of working through ideas.\r\nWe are interested in communication through text, visual language, and learning.\r\nWe support artists in all aspects of making, exhibiting and touring work. We can provide assistance and advice on fundraising applications, securing venues, project management, marketing and publicity.\r\n\r\nPlease contact info@catalog.org.uk for further information.\r\n\r\n \r\n\r\n\"\"\r\n\r\n \r\n\r\n ','Contents','','inherit','closed','closed','','2-revision-11','','','2011-10-03 18:27:35','2011-10-03 18:27:35','',2,'http://catalog.org.uk/?p=93',0,'revision','',0),(95,4,'2011-02-27 15:41:33','2011-02-27 15:41:33','','Index','','inherit','closed','closed','','9-revision-3','','','2011-02-27 15:41:33','2011-02-27 15:41:33','',9,'http://catalog.org.uk/?p=95',0,'revision','',0),(97,4,'2011-10-03 18:36:15','2011-10-03 18:36:15','\r\n','Index','','inherit','closed','closed','','9-revision-5','','','2011-10-03 18:36:15','2011-10-03 18:36:15','',9,'http://catalog.org.uk/?p=97',0,'revision','',0),(96,4,'2011-10-03 18:35:54','2011-10-03 18:35:54','\"\"','Index','','inherit','closed','closed','','9-revision-4','','','2011-10-03 18:35:54','2011-10-03 18:35:54','',9,'http://catalog.org.uk/?p=96',0,'revision','',0),(104,4,'2011-10-03 19:01:40','2011-10-03 19:01:40','coming soon....','Index','','inherit','closed','closed','','9-revision-7','','','2011-10-03 19:01:40','2011-10-03 19:01:40','',9,'http://catalog.org.uk/?p=104',0,'revision','',0),(106,4,'2011-10-03 19:02:55','2011-10-03 19:02:55','coming soon....\r\n\r\n \r\n\r\n ','Index','','inherit','closed','closed','','9-revision-8','','','2011-10-03 19:02:55','2011-10-03 19:02:55','',9,'http://catalog.org.uk/?p=106',0,'revision','',0),(121,2,'2011-10-06 15:02:03','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2011-10-06 15:02:03','0000-00-00 00:00:00','',0,'http://catalog.org.uk/?p=121',0,'post','',0),(122,2,'2011-10-03 19:23:43','2011-10-03 19:23:43','\r\n\r\nAs the first part of a series of artists\' interventions, in spaces including archives, museums, and research centres in South London, CATALOG is working on a project to be located in the covered market areas of Brixton in the London Borough of Lambeth. It will take place in Spring 2012 in the Reliance Aracade, Market Row, and Brixton Village (previously known as the Granville Arcade) and in collaboration with market traders. The project will comprise both new work and archive material that responds to and re-presents the site of its encounter, as three interconnected strands:\r\n\r\nA collection of films made in and about Brixton, by a diverse body of documentary film-makers, artists and Brixton enthusiasts. Selected by Joyce Cronin, the works will be screened within the market-arcades.\r\n\r\nOut of the hours, a new moving image work by Frances Scott that traces activities and material residues outside the trading hours. The accompanying narrative is drawn from recorded testimonials from market workers. Proposed as ‘eye witness’ accounts, they come to reveal the occurrence of an unnamed event in Reliance Arcade, where objects are the physical remainders of some ‘visitation.’ Out of the hours considers collective memory as creative agent, and the role of narrator as (complicit) witness.\r\n\r\nX, an installation of objects and drawings embedded within the existing display-façade and stock of a vintage clothing store, in which Carolyn Thompson creates a tension between the past-lives of objects; what was once there, is there now, and is newly inserted. The work slips between drawing and sculpture, using textiles and paper to describe and interpret the lost histories of both the environment in which the work is set, and the current items contained within it. Intimate drawings produced in hair, thread, paper and fabric suggest an essence of those who occupied the shop and owned its clothing and ephemera, whilst depicting an absence of physical presence.\r\n\r\n \r\n\r\nFOOTNOTE.\r\n\r\nThe genesis of Brixton Market can be traced back to Atlantic Road in the 1870s, that soon expanded to include Electric Avenue, one of the first streets to have electric light. The indoor market arcades were constructed in 1920s-30s. The various sites comprise a network of stalls and shops, and following extensive campaigning by local residents and community groups, were listed as Grade II buildings in 2010. They continue to form an important part to the social and economic history of the area.\r\n\r\n ','Function','','inherit','closed','closed','','5-revision-20','','','2011-10-03 19:23:43','2011-10-03 19:23:43','',5,'http://catalog.org.uk/?p=122',0,'revision','',0),(160,2,'2011-10-03 19:34:42','2011-10-03 19:34:42',' \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ','Index','','inherit','closed','closed','','9-revision-19','','','2011-10-03 19:34:42','2011-10-03 19:34:42','',9,'http://catalog.org.uk/?p=160',0,'revision','',0),(109,4,'2011-10-03 19:16:58','2011-10-03 19:16:58','\r\n\r\ncoming soon.... akjdflkja adlkjf akatlek ta aksdj athei ais alkdsj tehis alskj atoewi alks kj to aksj toeih ah l kasdlfj thei aksdfj laksth eih j','Index','','inherit','closed','closed','','9-revision-10','','','2011-10-03 19:16:58','2011-10-03 19:16:58','',9,'http://catalog.org.uk/?p=109',0,'revision','',0),(107,4,'2011-10-03 19:04:58','2011-10-03 19:04:58','\r\n\r\ncoming soon....','Index','','inherit','closed','closed','','9-revision-9','','','2011-10-03 19:04:58','2011-10-03 19:04:58','',9,'http://catalog.org.uk/?p=107',0,'revision','',0),(110,4,'2011-10-03 18:13:38','2011-10-03 18:13:38','\r\n\r\nAs the first part of a series of artists\' interventions, in spaces including archives, museums, and research centres in South London, CATALOG is working on a project to be located in the covered market areas of Brixton in the London Borough of Lambeth. It will take place in Spring 2012 in the Reliance Aracade, Market Row, and Brixton Village (previously known as the Granville Arcade) and in collaboration with market traders. The project will comprise both new work and archive material that responds to and re-presents the site of its encounter, as three interconnected strands:\r\n\r\nA collection of films made in and about Brixton, by a diverse body of documentary film-makers, artists and Brixton enthusiasts. Selected by Joyce Cronin, the works will be screened within the market-arcades.\r\n\r\nOut of the hours, a new moving image work by Frances Scott that traces activities and material residues outside the trading hours. The accompanying narrative is drawn from recorded testimonials from market workers. Proposed as ‘eye witness’ accounts, they come to reveal the occurrence of an unnamed event in Reliance Arcade, where objects are the physical remainders of some ‘visitation.’ Out of the hours considers collective memory as creative agent, and the role of narrator as (complicit) witness.\r\n\r\nX, an installation of objects and drawings embedded within the existing display-façade and stock of a vintage clothing store, in which Carolyn Thompson creates a tension between the past-lives of objects; what was once there, is there now, and is newly inserted. The work slips between drawing and sculpture, using textiles and paper to describe and interpret the lost histories of both the environment in which the work is set, and the current items contained within it. Intimate drawings produced in hair, thread, paper and fabric suggest an essence of those who occupied the shop and owned its clothing and ephemera, whilst dSepicting an absence of physical presence.\r\n\r\n \r\n\r\nFOOTNOTE.\r\n\r\nThe genesis of Brixton Market can be traced back to Atlantic Road in the 1870s, that soon expanded to include Electric Avenue, one of the first streets to have electric light. The indoor market arcades were constructed in 1920s-30s. The various sites comprise a network of stalls and shops, and following extensive campaigning by local residents and community groups, were listed as Grade II buildings in 2010. They continue to form an important part to the social and economic history of the area.\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ','Function','','inherit','closed','closed','','5-revision-18','','','2011-10-03 18:13:38','2011-10-03 18:13:38','',5,'http://catalog.org.uk/?p=110',0,'revision','',0),(149,3,'2011-10-11 20:08:58','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2011-10-11 20:08:58','0000-00-00 00:00:00','',0,'http://catalog.org.uk/?p=149',0,'post','',0),(111,4,'2011-10-03 19:23:20','2011-10-03 19:23:20','\r\n\r\nAs the first part of a series of artists\' interventions, in spaces including archives, museums, and research centres in South London, CATALOG is working on a project to be located in the covered market areas of Brixton in the London Borough of Lambeth. It will take place in Spring 2012 in the Reliance Aracade, Market Row, and Brixton Village (previously known as the Granville Arcade) and in collaboration with market traders. The project will comprise both new work and archive material that responds to and re-presents the site of its encounter, as three interconnected strands:\r\n\r\nA collection of films made in and about Brixton, by a diverse body of documentary film-makers, artists and Brixton enthusiasts. Selected by Joyce Cronin, the works will be screened within the market-arcades.\r\n\r\nOut of the hours, a new moving image work by Frances Scott that traces activities and material residues outside the trading hours. The accompanying narrative is drawn from recorded testimonials from market workers. Proposed as ‘eye witness’ accounts, they come to reveal the occurrence of an unnamed event in Reliance Arcade, where objects are the physical remainders of some ‘visitation.’ Out of the hours considers collective memory as creative agent, and the role of narrator as (complicit) witness.\r\n\r\nX, an installation of objects and drawings embedded within the existing display-façade and stock of a vintage clothing store, in which Carolyn Thompson creates a tension between the past-lives of objects; what was once there, is there now, and is newly inserted. The work slips between drawing and sculpture, using textiles and paper to describe and interpret the lost histories of both the environment in which the work is set, and the current items contained within it. Intimate drawings produced in hair, thread, paper and fabric suggest an essence of those who occupied the shop and owned its clothing and ephemera, whilst depicting an absence of physical presence.\r\n\r\n \r\n\r\nFOOTNOTE.\r\n\r\nThe genesis of Brixton Market can be traced back to Atlantic Road in the 1870s, that soon expanded to include Electric Avenue, one of the first streets to have electric light. The indoor market arcades were constructed in 1920s-30s. The various sites comprise a network of stalls and shops, and following extensive campaigning by local residents and community groups, were listed as Grade II buildings in 2010. They continue to form an important part to the social and economic history of the area.\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ','Function','','inherit','closed','closed','','5-revision-19','','','2011-10-03 19:23:20','2011-10-03 19:23:20','',5,'http://catalog.org.uk/?p=111',0,'revision','',0),(120,4,'2011-10-03 19:33:43','2011-10-03 19:33:43','','Index','','inherit','closed','closed','','9-revision-18','','','2011-10-03 19:33:43','2011-10-03 19:33:43','',9,'http://catalog.org.uk/?p=120',0,'revision','',0),(119,4,'2011-10-03 19:33:23','2011-10-03 19:33:23','\r\n

coming soon...

','Index','','inherit','closed','closed','','9-revision-17','','','2011-10-03 19:33:23','2011-10-03 19:33:23','',9,'http://catalog.org.uk/?p=119',0,'revision','',0),(115,4,'2011-10-03 19:30:19','2011-10-03 19:30:19','\r\n\r\ncoming soon....\r\n\r\n \r\n\r\n\r\n','Index','','inherit','closed','closed','','9-revision-13','','','2011-10-03 19:30:19','2011-10-03 19:30:19','',9,'http://catalog.org.uk/?p=115',0,'revision','',0),(113,4,'2011-10-03 19:29:52','2011-10-03 19:29:52','\r\n\r\ncoming soon....\r\n\r\n \r\n\r\n\"\"','Index','','inherit','closed','closed','','9-revision-12','','','2011-10-03 19:29:52','2011-10-03 19:29:52','',9,'http://catalog.org.uk/?p=113',0,'revision','',0),(117,4,'2011-10-03 19:31:40','2011-10-03 19:31:40','\r\n\r\ncoming soon','Index','','inherit','closed','closed','','9-revision-15','','','2011-10-03 19:31:40','2011-10-03 19:31:40','',9,'http://catalog.org.uk/?p=117',0,'revision','',0),(118,4,'2011-10-03 19:32:08','2011-10-03 19:32:08','\r\n\r\ncoming soon...\r\n\r\ncoming soon...','Index','','inherit','closed','closed','','9-revision-16','','','2011-10-03 19:32:08','2011-10-03 19:32:08','',9,'http://catalog.org.uk/?p=118',0,'revision','',0),(116,4,'2011-10-03 19:31:00','2011-10-03 19:31:00','\r\n\r\nJoyce Cronin is a gallery manager, writer, project manager and fundraiser. Currently freelance, she worked as Gallery Manager (Exhibitions) at Matt’s Gallery, London from 2004-2009. She has worked for non-profit visual arts organisations for over ten years including The Drawing Room, Studio Voltaire and the Foundation for Women’s Art (FWA). She is a visiting tutor at the University of the Arts, London providing professional development portfolio reviews to students. Joyce is a graduate of the University of the Arts, with a BA in History of Art from Camberwell College and MA in Enterprise Management for the Creative Arts from the London College of Communications. She is a regular contributor to the Artslant website and an Artistic Assessor for Arts Council England.\r\n\r\nFrances Scott is an artist and has shown work in the UK and New York. She has also performed in film and installation projects for artists including Aura Satz, Jennet Thomas and Lucy Cash, and works freelance in a range of contexts; currently as Artist assistant to Mike Nelson towards the Venice Biennale 2011, and previously at organisations including Matt\'s Gallery, Beaconsfield, and Artsadmin. She has presented talks at institutes across the University of the Arts London, and at the University of Central Lancashire. Frances graduated from the BA at Courtauld Institute of Art in 2003, and from the MA Fine Art at Wimbledon College of Art in 2010.\r\n\r\nCarolyn Thompson is a visual artist, writer and quilt maker. She has exhibited in solo and group exhibitions in the UK and internationally, including at the Centre for Book Arts, New York, the 18th Istanbul Art Fair, MCO Gallery, Portugal, and the Eagle Gallery, London. Carolyn possesses an MA in Fine Art from Wimbledon College of Art (University of the Arts London). She has held various coordination and new media roles within public/non profit art organisations, including most recently Gallery Manager (Communications) at Matt\'s Gallery, London, and at the Film and Video Workshop and Synergy Theatre Project.  She currently works at the Design Archives in University of Brighton.\r\n\r\ninfo@catalog.org.uk\r\n\r\n\r\n','Index','','inherit','closed','closed','','9-revision-14','','','2011-10-03 19:31:00','2011-10-03 19:31:00','',9,'http://catalog.org.uk/?p=116',0,'revision','',0),(124,2,'2011-10-07 12:33:11','2011-10-07 12:33:11','\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW\r\n\r\nA Catalog proposal.\r\n\r\nThis is a self-publishing exercise. It is a silent exchange of knowledge. Each participant creates a chapter. Within this class, generosity is a requirement. There is no singular authorial voice. There is a responsibility to share information. The system encourages a relay of ideas. It is not restricted to a particular discipline. How this knowledge or non-knowledge is expressed happens in the format of a booklet. All participants own the booklet. It is contingent on each participant and how they approach their chapter. Participants will access knowledge on a topic that another has anonymously passed on. There will be one booklet. \r\n\r\n\r\nNo previous experience is required. Booking is essential.\r\n\r\nTime: 1 hour (10 minutes set up - 40 minutes making - 10 minutes clear out)\r\n\r\nThe procedure: Participants book in advance, emailing info@catalog.org.uk with their postal address. In advance of the session Catalog will send to participants an empty jiffy envelope and a blank postcard. \r\n\r\nParticipants must bring the following to the session:\r\ntheir jiffy envelope filled with content around a topic that they are especially interested in and/or have knowledge.\r\nthe postcard, onto which they should denote their chosen topic’s \'chapter\' title. \r\n\r\nCatalog will provide some basic equipment and materials, including A5 papers with which \'chapters\' will be structured. Participants are welcome to bring any booklet-making items they would like to share in the session. \r\n\r\nPlease note: The material placed in the jiffy envelope will be used and is non-returnable. Any material is acceptable, but is preferable that it is in a printed format. eg. print-outs, magazines, books, newspapers etc. \r\n\r\nThe session: On arrival, participants will submit their envelope and in return will receive another participant’s material. They will construct and title a \'chapter\' from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. They will form their interpretation of the material they have received in the class, and make their contribution to the booklet from this. The class takes place in silence. Interaction between participants is necessary but non-verbal. Catalog are participants in the session.\r\n\r\nThe booklet: The chapters will be collected and assembled as a whole by Catalog after the session\r\nThe original and new chapter titles will be named in the booklet, connections and departures will be made.\r\nThe resulting booklet will be duplicated and distributed to all participants. The final document becomes a compendium of the combined knowledge of the students in the class at that moment in time. There is scope to extend participation in this process once the booklet has been produced, for example gifting copies of the book to nominated people or using the booklet as a \'chapter\' in the next booklet in the chain. It is a mobile system that can be repeated, modified, and expanded.\r\n','Function','','inherit','closed','closed','','5-revision-22','','','2011-10-07 12:33:11','2011-10-07 12:33:11','',5,'http://catalog.org.uk/?p=124',0,'revision','',0),(123,2,'2011-10-07 12:17:52','2011-10-07 12:17:52','\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW\r\n\r\n \r\n\r\nA Catalog proposal.\r\n\r\n \r\n\r\nThis is a self-publishing exercise. It is a silent exchange of knowledge. Each participant creates a chapter. Within this class, generosity is a requirement. There is no singular authorial voice. There is a responsibility to share information. The system encourages a relay of ideas. It is not restricted to a particular discipline. How this knowledge or non-knowledge is expressed happens in the format of a booklet. All participants own the booklet. It is contingent on each participant and how they approach their chapter. Participants will access knowledge on a topic that another has anonymously passed on. There will be one booklet. \r\n\r\n \r\n\r\nNo previous experience is required. Booking is essential. \r\n\r\n \r\n\r\nTime: 1 hour (10 minutes set up - 40 minutes making - 10 minutes clear out)\r\n\r\n \r\n\r\nThe procedure: \r\n\r\nParticipants book in advance, emailing info@catalog.org.uk with their postal address. In advance of the session Catalog will send to participants an empty jiffy envelope and a blank postcard. \r\n\r\n \r\n\r\nParticipants must bring the following to the session:\r\n\r\n \r\n\r\nCatalog will provide some basic equipment and materials, including A5 papers with which \'chapters\' will be structured. Participants are welcome to bring any booklet-making items they would like to share in the session. \r\n\r\n \r\n\r\nPlease note: The material placed in the jiffy envelope will be used and is non-returnable. Any material is acceptable, but is preferable that it is in a printed format. eg. print-outs, magazines, books, newspapers etc. \r\n\r\n \r\n\r\nThe session:\r\n\r\nOn arrival, participants will submit their envelope and in return will receive another participant’s material. They will construct and title a \'chapter\' from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. They will form their interpretation of the material they have received in the class, and make their contribution to the booklet from this. The class takes place in silence. Interaction between participants is necessary but non-verbal. Catalog are participants in the session.\r\n\r\n \r\n\r\nThe booklet:\r\n\r\n \r\n\r\n \r\n\r\n ','Function','','inherit','closed','closed','','5-revision-21','','','2011-10-07 12:17:52','2011-10-07 12:17:52','',5,'http://catalog.org.uk/?p=123',0,'revision','',0),(125,2,'2011-10-07 12:35:24','2011-10-07 12:35:24','\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW\r\n\r\nThis is a self-publishing exercise. It is a silent exchange of knowledge. Each participant creates a chapter. Within this class, generosity is a requirement. There is no singular authorial voice. There is a responsibility to share information. The system encourages a relay of ideas. It is not restricted to a particular discipline. How this knowledge or non-knowledge is expressed happens in the format of a booklet. All participants own the booklet. It is contingent on each participant and how they approach their chapter. Participants will access knowledge on a topic that another has anonymously passed on. There will be one booklet.\r\n\r\nNo previous experience is required. Booking is essential.\r\n\r\nTime: 1 hour (10 minutes set up - 40 minutes making - 10 minutes clear out)\r\n\r\nThe procedure:\r\n\r\nParticipants book in advance, emailing info@catalog.org.uk with their postal address. In advance of the session Catalog will send to participants an empty jiffy envelope and a blank postcard.\r\n\r\nParticipants must bring the following to the session:\r\ntheir jiffy envelope filled with content around a topic that they are especially interested in and/or have knowledge.\r\nthe postcard, onto which they should denote their chosen topic’s \'chapter\' title.\r\n\r\nCatalog will provide some basic equipment and materials, including A5 papers with which \'chapters\' will be structured. Participants are welcome to bring any booklet-making items they would like to share in the session.\r\n\r\nPlease note: The material placed in the jiffy envelope will be used and is non-returnable. Any material is acceptable, but is preferable that it is in a printed format. eg. print-outs, magazines, books, newspapers etc.\r\n\r\nThe session: \r\n\r\n On arrival, participants will submit their envelope and in return will receive another participant’s material. They will construct and title a \'chapter\' from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. They will form their interpretation of the material they have received in the class, and make their contribution to the booklet from this. The class takes place in silence. Interaction between participants is necessary but non-verbal. Catalog are participants in the session.\r\n\r\nThe booklet: \r\n\r\nThe chapters will be collected and assembled as a whole by Catalog after the session\r\nThe original and new chapter titles will be named in the booklet, connections and departures will be made.\r\nThe resulting booklet will be duplicated and distributed to all participants. The final document becomes a compendium of the combined knowledge of the students in the class at that moment in time. There is scope to extend participation in this process once the booklet has been produced, for example gifting copies of the book to nominated people or using the booklet as a \'chapter\' in the next booklet in the chain. It is a mobile system that can be repeated, modified, and expanded.','Function','','inherit','closed','closed','','5-revision-23','','','2011-10-07 12:35:24','2011-10-07 12:35:24','',5,'http://catalog.org.uk/?p=125',0,'revision','',0),(126,2,'2011-10-07 12:45:22','2011-10-07 12:45:22','\r\n\r\nCatalog will host a publishing exercise to run as part of FIVE YEARS\' this is not a school, a programme of events that respond to the phenomenon of the \'alternative education project\'. The session will be held at FIVE YEARS on 22 October between 5 - 6pm. More information, and how to book if you would like to participate, below.\r\n\r\nDetails on the full this is not a school programme www.fiveyears.org.uk/thisisnotaschool1.html\r\n\r\n \r\n\r\nIF I KNEW THEN WHAT I KNOW NOW\r\n\r\nThis is a self-publishing exercise. It is a silent exchange of knowledge. Each participant creates a chapter. Within this class, generosity is a requirement. There is no singular authorial voice. There is a responsibility to share information. The system encourages a relay of ideas. It is not restricted to a particular discipline. How this knowledge or non-knowledge is expressed happens in the format of a booklet. All participants own the booklet. It is contingent on each participant and how they approach their chapter. Participants will access knowledge on a topic that another has anonymously passed on. There will be one booklet.\r\n\r\nNo previous experience is required. Booking is essential.\r\n\r\nTime: 1 hour\r\n\r\nThe procedure:\r\n\r\nParticipants book in advance, emailing info@catalog.org.uk with their postal address. In advance of the session Catalog will send to participants an empty jiffy envelope and a blank postcard.\r\n\r\nParticipants must bring the following to the session:\r\ntheir jiffy envelope filled with content around a topic that they are especially interested in and/or have knowledge.\r\nthe postcard, onto which they should denote their chosen topic’s \'chapter\' title.\r\n\r\nCatalog will provide some basic equipment and materials, including A5 papers with which \'chapters\' will be structured. Participants are welcome to bring any booklet-making items they would like to share in the session.\r\n\r\nPlease note: The material placed in the jiffy envelope will be used and is non-returnable. Any material is acceptable, but is preferable that it is in a printed format. eg. print-outs, magazines, books, newspapers etc.\r\n\r\nThe session: \r\n\r\n On arrival, participants will submit their envelope and in return will receive another participant’s material. They will construct and title a \'chapter\' from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. They will form their interpretation of the material they have received in the class, and make their contribution to the booklet from this. The class takes place in silence. Interaction between participants is necessary but non-verbal. Catalog are participants in the session.\r\n\r\nThe booklet: \r\n\r\n The chapters will be collected and assembled as a whole by Catalog after the session\r\nThe original and new chapter titles will be named in the booklet, connections and departures will be made.\r\nThe resulting booklet will be duplicated and distributed to all participants. The final document becomes a compendium of the combined knowledge of the students in the class at that moment in time. There is scope to extend participation in this process once the booklet has been produced, for example gifting copies of the book to nominated people or using the booklet as a \'chapter\' in the next booklet in the chain. It is a mobile system that can be repeated, modified, and expanded.','Function','','inherit','closed','closed','','5-revision-24','','','2011-10-07 12:45:22','2011-10-07 12:45:22','',5,'http://catalog.org.uk/?p=126',0,'revision','',0),(127,2,'2011-10-10 15:02:10','2011-10-10 15:02:10','\r\n\r\nCATALOG will host a publishing exercise to run as part of FIVE YEARS\' this is not a school, a programme of events that respond to the phenomenon of the \'alternative education project\'. The session will be held at FIVE YEARS on 22 October between 5 - 6pm. More information, and how to book if you would like to participate, below.\r\n\r\nDetails on the full this is not a school programme www.fiveyears.org.uk/thisisnotaschool1.html\r\n\r\n \r\n\r\nIF I KNEW THEN WHAT I KNOW NOW\r\n\r\nThis is a self-publishing exercise. It is a silent exchange of knowledge. Each participant creates a chapter. Within this class, generosity is a requirement. There is no singular authorial voice. There is a responsibility to share information. The system encourages a relay of ideas. It is not restricted to a particular discipline. How this knowledge or non-knowledge is expressed happens in the format of a booklet. All participants own the booklet. It is contingent on each participant and how they approach their chapter. Participants will access knowledge on a topic that another has anonymously passed on. There will be one booklet.\r\n\r\nNo previous experience is required. Booking is essential.\r\n\r\nTime: 1 hour\r\n\r\nThe procedure:\r\n\r\nParticipants book in advance, emailing info@catalog.org.uk with their postal address. In advance of the session Catalog will send to participants an empty jiffy envelope and a blank postcard.\r\n\r\nParticipants must bring the following to the session:\r\ntheir jiffy envelope filled with content around a topic that they are especially interested in and/or have knowledge.\r\nthe postcard, onto which they should denote their chosen topic’s \'chapter\' title.\r\n\r\nCatalog will provide some basic equipment and materials, including A5 papers with which \'chapters\' will be structured. Participants are welcome to bring any booklet-making items they would like to share in the session.\r\n\r\nPlease note: The material placed in the jiffy envelope will be used and is non-returnable. Any material is acceptable, but is preferable that it is in a printed format. eg. print-outs, magazines, books, newspapers etc.\r\n\r\nThe session: \r\n\r\n On arrival, participants will submit their envelope and in return will receive another participant’s material. They will construct and title a \'chapter\' from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. They will form their interpretation of the material they have received in the class, and make their contribution to the booklet from this. The class takes place in silence. Interaction between participants is necessary but non-verbal. Catalog are participants in the session.\r\n\r\nThe booklet: \r\n\r\n The chapters will be collected and assembled as a whole by Catalog after the session\r\nThe original and new chapter titles will be named in the booklet, connections and departures will be made.\r\nThe resulting booklet will be duplicated and distributed to all participants. The final document becomes a compendium of the combined knowledge of the students in the class at that moment in time. There is scope to extend participation in this process once the booklet has been produced, for example gifting copies of the book to nominated people or using the booklet as a \'chapter\' in the next booklet in the chain. It is a mobile system that can be repeated, modified, and expanded.','Function','','inherit','closed','closed','','5-revision-25','','','2011-10-10 15:02:10','2011-10-10 15:02:10','',5,'http://catalog.org.uk/?p=127',0,'revision','',0),(128,2,'2011-10-10 15:07:45','2011-10-10 15:07:45','\r\n\r\nCATALOG will host a publishing exercise to run as part of FIVE YEARS\' this is not a school, a programme of events that respond to the phenomenon of the \'alternative education project\'. The session will be held at FIVE YEARS on 22 October between 5 - 6pm. More information, and how to book if you would like to participate, below.\r\n\r\nDetails on the full this is not a school programme www.fiveyears.org.uk/thisisnotaschool1.html\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW\r\n\r\nThis is a self-publishing exercise. It is a silent exchange of knowledge. Each participant creates a chapter. Within this class, generosity is a requirement. There is no singular authorial voice. There is a responsibility to share information. The system encourages a relay of ideas. It is not restricted to a particular discipline. How this knowledge or non-knowledge is expressed happens in the format of a booklet. All participants own the booklet. It is contingent on each participant and how they approach their chapter. Participants will access knowledge on a topic that another has anonymously passed on. There will be one booklet.\r\n\r\nNo previous experience is required. Booking is essential.\r\n\r\nTime: 1 hour\r\n\r\nThe procedure:\r\n\r\nParticipants book in advance, emailing info@catalog.org.uk with their postal address. In advance of the session Catalog will send to participants an empty jiffy envelope and a blank postcard.\r\n\r\nParticipants must bring the following to the session:\r\ntheir jiffy envelope filled with content around a topic that they are especially interested in and/or have knowledge.\r\nthe postcard, onto which they should denote their chosen topic’s \'chapter\' title.\r\n\r\nCATALOG will provide some basic equipment and materials, including A5 papers with which chapters will be structured. Participants are welcome to bring any booklet-making items they would like to share in the session.\r\n\r\nPlease note: The material placed in the jiffy envelope will be used and is non-returnable. Any material is acceptable, but is preferable that it is in a printed format. eg. print-outs, magazines, books, newspapers etc.\r\n\r\nThe session: \r\n\r\n On arrival, participants will submit their envelope and in return will receive another participant’s material. They will construct and title a \'chapter\' from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. They will form their interpretation of the material they have received in the class, and make their contribution to the booklet from this. The class takes place in silence. Interaction between participants is necessary but non-verbal. CATALOG are participants in the session.\r\n\r\nThe booklet: \r\n\r\n The chapters will be collected and assembled as a whole by CATALOG after the session\r\nThe original and new chapter titles will be named in the booklet, connections and departures will be made.\r\nThe resulting booklet will be duplicated and distributed to all participants. The final document becomes a compendium of the combined knowledge of the students in the class at that moment in time. There is scope to extend participation in this process once the booklet has been produced, for example gifting copies of the book to nominated people or using the booklet as a \'chapter\' in the next booklet in the chain. It is a mobile system that can be repeated, modified, and expanded.','Function','','inherit','closed','closed','','5-revision-26','','','2011-10-10 15:07:45','2011-10-10 15:07:45','',5,'http://catalog.org.uk/?p=128',0,'revision','',0),(131,2,'2011-10-10 15:19:14','2011-10-10 15:19:14','\r\n\r\nCATALOG is Joyce Cronin, Frances Scott and Carolyn Thompson.\r\n\r\nCATALOG was founded on the premise that working collaboratively and sharing resources can provide a mutually beneficial exchange of ideas and opportunities. Our work is two-fold: to work together as a unit to initiate projects and commissions, and to support practicing artists and organisations with our project management, coordination and fundraising skills. It is a model that stems from collective work – we each have our own practice, but also access to tools and shared resources through CATALOG.\r\n\r\nPlease contact info@catalog.org.uk for further information.\r\n\r\n \r\n\r\n ','Contents','','inherit','closed','closed','','2-revision-13','','','2011-10-10 15:19:14','2011-10-10 15:19:14','',2,'http://catalog.org.uk/?p=131',0,'revision','',0),(132,2,'2011-10-10 15:21:13','2011-10-10 15:21:13','\r\n\r\nCATALOG will host a publishing exercise to run as part of FIVE YEARS\' this is not a school, a programme of events that respond to the phenomenon of the \'alternative education project\'. The session will be held at FIVE YEARS on 22 October between 5 - 6pm. More information, and how to book if you would like to participate, below.\r\n\r\nDetails on the full programme this is not a school www.fiveyears.org.uk/thisisnotaschool1.html\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW\r\n\r\nThis is a self-publishing exercise. It is a silent exchange of knowledge. Each participant creates a chapter. Within this class, generosity is a requirement. There is no singular authorial voice. There is a responsibility to share information. The system encourages a relay of ideas. It is not restricted to a particular discipline. How this knowledge or non-knowledge is expressed happens in the format of a booklet. All participants own the booklet. It is contingent on each participant and how they approach their chapter. Participants will access knowledge on a topic that another has anonymously passed on. There will be one booklet.\r\n\r\nNo previous experience is required. Booking is essential.\r\n\r\nTime: 1 hour\r\n\r\nThe procedure:\r\n\r\nParticipants book in advance, emailing info@catalog.org.uk with their postal address. In advance of the session CATALOG will send to participants an empty envelope and a blank postcard.\r\n\r\nParticipants must bring the following to the session:\r\ntheir envelope filled with content around a topic that they are especially interested in and/or have knowledge.\r\nthe postcard, onto which they should denote their chosen topic’s \'chapter\' title.\r\n\r\nCATALOG will provide some basic equipment and materials, including A5 papers with which chapters will be structured. Participants are welcome to bring any booklet-making items they would like to share in the session.\r\n\r\nPlease note: The material placed in the envelope will be used and is non-returnable. Any material is acceptable, but is preferable that it is in a printed format. eg. print-outs, magazines, books, newspapers etc.\r\n\r\nThe session: \r\n\r\n On arrival, participants will submit their envelope and in return will receive another participant’s material. They will construct and title a \'chapter\' from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. They will form their interpretation of the material they have received in the class, and make their contribution to the booklet from this. The class takes place in silence. Interaction between participants is necessary but non-verbal. CATALOG are participants in the session.\r\n\r\nThe booklet: \r\n\r\n The chapters will be collected and assembled as a whole by CATALOG after the session\r\nThe original and new chapter titles will be named in the booklet, connections and departures will be made.\r\nThe resulting booklet will be duplicated and distributed to all participants. The final document becomes a compendium of the combined knowledge of the students in the class at that moment in time. There is scope to extend participation in this process once the booklet has been produced, for example gifting copies of the book to nominated people or using the booklet as a \'chapter\' in the next booklet in the chain. It is a mobile system that can be repeated, modified, and expanded.','Function','','inherit','closed','closed','','5-revision-28','','','2011-10-10 15:21:13','2011-10-10 15:21:13','',5,'http://catalog.org.uk/?p=132',0,'revision','',0),(133,1,'2011-10-10 15:32:39','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2011-10-10 15:32:39','0000-00-00 00:00:00','',0,'http://catalog.org.uk/?p=133',0,'post','',0),(134,2,'2011-10-03 19:00:14','2011-10-03 19:00:14','[gallery]\r\n\r\n\r\n','Journal','','inherit','closed','closed','','7-revision-21','','','2011-10-03 19:00:14','2011-10-03 19:00:14','',7,'http://catalog.org.uk/?p=134',0,'revision','',0),(136,2,'2011-10-10 17:34:37','2011-10-10 17:34:37','[gallery]\r\n\r\n\r\n','Journal','','inherit','closed','closed','','7-revision-23','','','2011-10-10 17:34:37','2011-10-10 17:34:37','',7,'http://catalog.org.uk/?p=136',0,'revision','',0),(135,2,'2011-10-10 17:33:36','2011-10-10 17:33:36','[gallery link=\"file\" columns=\"1\"]\r\n\r\n\r\n','Journal','','inherit','closed','closed','','7-revision-22','','','2011-10-10 17:33:36','2011-10-10 17:33:36','',7,'http://catalog.org.uk/?p=135',0,'revision','',0),(137,2,'2011-10-10 17:34:45','2011-10-10 17:34:45','[gallery]\r\n\r\n\r\n','Journal','','inherit','closed','closed','','7-revision-24','','','2011-10-10 17:34:45','2011-10-10 17:34:45','',7,'http://catalog.org.uk/?p=137',0,'revision','',0),(138,2,'2011-10-11 13:37:38','2011-10-11 13:37:38','','IF I KNEW THEN...','','inherit','closed','closed','','if-i-knew_emailout72dpi','','','2011-10-11 13:37:38','2011-10-11 13:37:38','',5,'http://catalog.org.uk/wp-content/uploads/2011/10/IF-I-KNEW_emailout72dpi.jpg',0,'attachment','image/jpeg',0),(139,2,'2011-10-10 15:31:44','2011-10-10 15:31:44','\r\n\r\nCATALOG will host a publishing exercise to run as part of FIVE YEARS\' THIS IS NOT A SCHOOL, a programme of events that respond to the phenomenon of the \'alternative education project\'. The session will be held at FIVE YEARS on 22 October between 5 - 6pm. More information, and how to book if you would like to participate, below.\r\n\r\nDetails on the full programme this is not a school www.fiveyears.org.uk/thisisnotaschool1.html\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW\r\n\r\nThis is a self-publishing exercise. It is a silent exchange of knowledge. Each participant creates a chapter. Within this class, generosity is a requirement. There is no singular authorial voice. There is a responsibility to share information. The system encourages a relay of ideas. It is not restricted to a particular discipline. How this knowledge or non-knowledge is expressed happens in the format of a booklet. All participants own the booklet. It is contingent on each participant and how they approach their chapter. Participants will access knowledge on a topic that another has anonymously passed on. There will be one booklet.\r\n\r\nNo previous experience is required. Booking is essential.\r\n\r\nTime: 1 hour\r\n\r\nThe procedure:\r\n\r\nParticipants book in advance, emailing info@catalog.org.uk with their postal address. In advance of the session CATALOG will send to participants an empty envelope and a blank postcard.\r\n\r\nParticipants must bring the following to the session:\r\ntheir envelope filled with content around a topic that they are especially interested in and/or have knowledge.\r\nthe postcard, onto which they should denote their chosen topic’s \'chapter\' title.\r\n\r\nCATALOG will provide some basic equipment and materials, including A5 papers with which chapters will be structured. Participants are welcome to bring any booklet-making items they would like to share in the session.\r\n\r\nPlease note: The material placed in the envelope will be used and is non-returnable. Any material is acceptable, but is preferable that it is in a printed format. eg. print-outs, magazines, books, newspapers etc.\r\n\r\nThe session: \r\n\r\n On arrival, participants will submit their envelope and in return will receive another participant’s material. They will construct and title a \'chapter\' from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. They will form their interpretation of the material they have received in the class, and make their contribution to the booklet from this. The class takes place in silence. Interaction between participants is necessary but non-verbal. CATALOG are participants in the session.\r\n\r\nThe booklet: \r\n\r\n The chapters will be collected and assembled as a whole by CATALOG after the session\r\nThe original and new chapter titles will be named in the booklet, connections and departures will be made.\r\nThe resulting booklet will be duplicated and distributed to all participants. The final document becomes a compendium of the combined knowledge of the students in the class at that moment in time. There is scope to extend participation in this process once the booklet has been produced, for example gifting copies of the book to nominated people or using the booklet as a \'chapter\' in the next booklet in the chain. It is a mobile system that can be repeated, modified, and expanded.','Function','','inherit','closed','closed','','5-revision-29','','','2011-10-10 15:31:44','2011-10-10 15:31:44','',5,'http://catalog.org.uk/?p=139',0,'revision','',0),(179,2,'2012-03-16 17:14:10','2012-03-16 17:14:10','\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW is a project that was first held as part of this is not a school at FIVE YEARS, London at 5-6pm on 22 October 2011 in response to “a free and open invitation for anyone to propose a participatory activity questioning the idea of \'School\' - \'Free\' or otherwise” More information here\r\n\r\nParticipants booked in advance to attend the session. CATALOG sent participants an empty envelope and a blank postcard, requesting that they bring to the session their envelope filled with content around a topic that they are especially interested in and/or have knowledge, as well as the postcard, onto which they wrote their chosen topic’s ‘chapter’ title.\r\n \r\nOn arrival to the session, participants submitted their envelope and in return received another participant’s material. They constructed and titled a ‘chapter’ from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. The session took place in silence.\r\n \r\nThe chapters were collected and assembled as a whole by CATALOG after the session. \r\n\r\nWe are currently working on the final document, which will be downloadable here as a PDF in spring 2012. The PDF booklet becomes a compendium of the combined knowledge of the participants in the session at that moment in time.\r\n\r\nhere\r\n\r\n\"\"\r\n\r\n\r\n\r\n','Function','','inherit','closed','closed','','5-revision-42','','','2012-03-16 17:14:10','2012-03-16 17:14:10','',5,'http://catalog.org.uk/?p=179',0,'revision','',0),(140,2,'2011-10-11 13:40:16','2011-10-11 13:40:16','\r\n\r\n\"\"\r\n\r\nCATALOG will host a publishing exercise to run as part of FIVE YEARS\' THIS IS NOT A SCHOOL, a programme of events that respond to the phenomenon of the \'alternative education project\'. The session will be held at FIVE YEARS on 22 October between 5 - 6pm. More information, and how to book if you would like to participate, below.\r\n\r\nDetails on the full programme this is not a school www.fiveyears.org.uk/thisisnotaschool1.html\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW\r\n\r\nThis is a self-publishing exercise. It is a silent exchange of knowledge. Each participant creates a chapter. Within this class, generosity is a requirement. There is no singular authorial voice. There is a responsibility to share information. The system encourages a relay of ideas. It is not restricted to a particular discipline. How this knowledge or non-knowledge is expressed happens in the format of a booklet. All participants own the booklet. It is contingent on each participant and how they approach their chapter. Participants will access knowledge on a topic that another has anonymously passed on. There will be one booklet.\r\n\r\nNo previous experience is required. Booking is essential.\r\n\r\nTime: 1 hour\r\n\r\nThe procedure:\r\n\r\nParticipants book in advance, emailing info@catalog.org.uk with their postal address. In advance of the session CATALOG will send to participants an empty envelope and a blank postcard.\r\n\r\nParticipants must bring the following to the session:\r\ntheir envelope filled with content around a topic that they are especially interested in and/or have knowledge.\r\nthe postcard, onto which they should denote their chosen topic’s \'chapter\' title.\r\n\r\nCATALOG will provide some basic equipment and materials, including A5 papers with which chapters will be structured. Participants are welcome to bring any booklet-making items they would like to share in the session.\r\n\r\nPlease note: The material placed in the envelope will be used and is non-returnable. Any material is acceptable, but is preferable that it is in a printed format. eg. print-outs, magazines, books, newspapers etc.\r\n\r\nThe session: \r\n\r\n On arrival, participants will submit their envelope and in return will receive another participant’s material. They will construct and title a \'chapter\' from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. They will form their interpretation of the material they have received in the class, and make their contribution to the booklet from this. The class takes place in silence. Interaction between participants is necessary but non-verbal. CATALOG are participants in the session.\r\n\r\nThe booklet: \r\n\r\n The chapters will be collected and assembled as a whole by CATALOG after the session\r\nThe original and new chapter titles will be named in the booklet, connections and departures will be made.\r\nThe resulting booklet will be duplicated and distributed to all participants. The final document becomes a compendium of the combined knowledge of the students in the class at that moment in time. There is scope to extend participation in this process once the booklet has been produced, for example gifting copies of the book to nominated people or using the booklet as a \'chapter\' in the next booklet in the chain. It is a mobile system that can be repeated, modified, and expanded.','Function','','inherit','closed','closed','','5-revision-30','','','2011-10-11 13:40:16','2011-10-11 13:40:16','',5,'http://catalog.org.uk/?p=140',0,'revision','',0),(141,2,'2011-10-11 13:41:39','2011-10-11 13:41:39','\r\n\r\n\"\"\r\n\r\nCATALOG will host a publishing exercise to run as part of FIVE YEARS\' THIS IS NOT A SCHOOL, a programme of events that respond to the phenomenon of the \'alternative education project\'. The session will be held at FIVE YEARS on 22 October between 5 - 6pm. More information, and how to book if you would like to participate, below.\r\n\r\nDetails on the full programme this is not a school www.fiveyears.org.uk/thisisnotaschool1.html\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW\r\n\r\nThis is a self-publishing exercise. It is a silent exchange of knowledge. Each participant creates a chapter. Within this class, generosity is a requirement. There is no singular authorial voice. There is a responsibility to share information. The system encourages a relay of ideas. It is not restricted to a particular discipline. How this knowledge or non-knowledge is expressed happens in the format of a booklet. All participants own the booklet. It is contingent on each participant and how they approach their chapter. Participants will access knowledge on a topic that another has anonymously passed on. There will be one booklet.\r\n\r\nNo previous experience is required. Booking is essential.\r\n\r\nTime: 1 hour\r\n\r\nThe procedure:\r\n\r\nParticipants book in advance, emailing info@catalog.org.uk with their postal address. In advance of the session CATALOG will send to participants an empty envelope and a blank postcard.\r\n\r\nParticipants must bring the following to the session:\r\ntheir envelope filled with content around a topic that they are especially interested in and/or have knowledge.\r\nthe postcard, onto which they should denote their chosen topic’s \'chapter\' title.\r\n\r\nCATALOG will provide some basic equipment and materials, including A5 papers with which chapters will be structured. Participants are welcome to bring any booklet-making items they would like to share in the session.\r\n\r\nPlease note: The material placed in the envelope will be used and is non-returnable. Any material is acceptable, but is preferable that it is in a printed format. eg. print-outs, magazines, books, newspapers etc.\r\n\r\nThe session: \r\n\r\n On arrival, participants will submit their envelope and in return will receive another participant’s material. They will construct and title a \'chapter\' from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. They will form their interpretation of the material they have received in the class, and make their contribution to the booklet from this. The class takes place in silence. Interaction between participants is necessary but non-verbal. CATALOG are participants in the session.\r\n\r\nThe booklet: \r\n\r\n The chapters will be collected and assembled as a whole by CATALOG after the session\r\nThe original and new chapter titles will be named in the booklet, connections and departures will be made.\r\nThe resulting booklet will be duplicated and distributed to all participants. The final document becomes a compendium of the combined knowledge of the students in the class at that moment in time. There is scope to extend participation in this process once the booklet has been produced, for example gifting copies of the book to nominated people or using the booklet as a \'chapter\' in the next booklet in the chain. It is a mobile system that can be repeated, modified, and expanded.','Function','','inherit','closed','closed','','5-revision-31','','','2011-10-11 13:41:39','2011-10-11 13:41:39','',5,'http://catalog.org.uk/?p=141',0,'revision','',0),(142,2,'2011-10-10 17:34:59','2011-10-10 17:34:59','[gallery]\r\n\r\n\r\n','Journal','','inherit','closed','closed','','7-revision-25','','','2011-10-10 17:34:59','2011-10-10 17:34:59','',7,'http://catalog.org.uk/?p=142',0,'revision','',0),(147,2,'2011-10-11 13:54:36','2011-10-11 13:54:36','\r\n\"\"','Journal','','inherit','closed','closed','','7-revision-30','','','2011-10-11 13:54:36','2011-10-11 13:54:36','',7,'http://catalog.org.uk/?p=147',0,'revision','',0),(146,2,'2011-10-11 13:53:27','2011-10-11 13:53:27','\r\n\"\"\"\"','Journal','','inherit','closed','closed','','7-revision-29','','','2011-10-11 13:53:27','2011-10-11 13:53:27','',7,'http://catalog.org.uk/?p=146',0,'revision','',0),(145,2,'2011-10-11 13:52:41','2011-10-11 13:52:41','\"\"\"\"\"\"','Journal','','inherit','closed','closed','','7-revision-28','','','2011-10-11 13:52:41','2011-10-11 13:52:41','',7,'http://catalog.org.uk/?p=145',0,'revision','',0),(148,2,'2011-10-11 13:56:46','2011-10-11 13:56:46','\"\"\"\"\r\n\r\n \r\n\r\n \r\n\r\nCATALOG 2011','Journal','','inherit','closed','closed','','7-revision-31','','','2011-10-11 13:56:46','2011-10-11 13:56:46','',7,'http://catalog.org.uk/?p=148',0,'revision','',0),(151,3,'2011-10-11 20:11:20','2011-10-11 20:11:20','Joyce Cronin is a gallery manager, project manager and writer. Currently freelance, she worked as Gallery Manager (Exhibitions) at Matt’s Gallery, London from 2004-2009. She has worked for non-profit visual arts organisations for over ten years including Cubitt Gallery, The Drawing Room, Studio Voltaire and the Foundation for Women’s Art (FWA). She is a visiting tutor at the University of the Arts, London providing professional development portfolio reviews to students. Joyce is a graduate of the University of the Arts, with a BA in History of Art from Camberwell College and MA in Enterprise Management for the Creative Arts from the London College of Communications. She has contributed to the Artslant website and Axis online and is an Artistic Assessor for Arts Council England.\r\n

Frances Scott is an artist and has shown work in the UK and New York. She has also performed in film and installation projects for artists including Aura Satz, Jennet Thomas and Lucy Cash, and works freelance in a range of contexts; currently as Artist assistant to Mike Nelson towards the Venice Biennale 2011, and previously at organisations including Matt\'s Gallery, Beaconsfield, and Artsadmin. She has presented talks at institutes across the University of the Arts London, and at the University of Central Lancashire. Frances graduated from the BA at Courtauld Institute of Art in 2003, and from the MA Fine Art at Wimbledon College of Art in 2010.

\r\n

Carolyn Thompson is a visual artist and writer. She exhibits internationally and possesses an MA in Fine Art from Wimbledon College of Art (University of the Arts). Carolyn has held various co-ordination and technical roles at University of Brighton, Matt\'s Gallery, London, Film and Video Workshop and Synergy Theatre Project.

\r\n ','Biographies','','inherit','closed','closed','','31-revision-4','','','2011-10-11 20:11:20','2011-10-11 20:11:20','',31,'http://catalog.org.uk/?p=151',0,'revision','',0),(172,3,'2011-11-30 16:04:31','2011-11-30 16:04:31','\r\n\r\nJoyce Cronin is a gallery manager, writer, project manager and fundraiser. Currently freelance, she worked as Gallery Manager (Exhibitions) at Matt’s Gallery, London from 2004-2009. She has worked for non-profit visual arts organisations for over ten years including The Drawing Room, Studio Voltaire and the Foundation for Women’s Art (FWA). She is a visiting tutor at the University of the Arts, London providing professional development portfolio reviews to students. Joyce is a graduate of the University of the Arts, with a BA in History of Art from Camberwell College and MA in Enterprise Management for the Creative Arts from the London College of Communications. She is a regular contributor to the Artslant website and an Artistic Assessor for Arts Council England.\r\n\r\nFrances Scott is an artist and has shown work in the UK and New York, recently for a Lucky PDF live broadcast as part of their commission with Frieze Projects 2011. She has also performed in film and installation projects for artists including Lucy Cash, Magnus Palsson, Aura Satz, and Jennet Thomas, and works freelance in a range of contexts; currently as Artist assistant to Mike Nelson, and previously at organisations including Matt\'s Gallery, Beaconsfield, and Artsadmin. She has presented talks at institutes across the University of the Arts London, and at the University of Central Lancashire. Frances graduated from the BA at Courtauld Institute of Art in 2003, and from the MA Fine Art at Wimbledon College of Art in 2010.\r\n\r\nCarolyn Thompson is a visual artist, writer and quilt maker. She has exhibited in solo and group exhibitions in the UK and internationally, including at the Centre for Book Arts, New York, the 18th Istanbul Art Fair, MCO Gallery, Portugal, and the Eagle Gallery, London. Carolyn possesses an MA in Fine Art from Wimbledon College of Art (University of the Arts London). She has held various coordination and new media roles within public/non profit art organisations, including most recently Gallery Manager (Communications) at Matt\'s Gallery, London, and at the Film and Video Workshop and Synergy Theatre Project.  She currently works at the Design Archives in University of Brighton.\r\n\r\ninfo@catalog.org.uk\r\n','Communicate','','inherit','closed','closed','','11-revision-10','','','2011-11-30 16:04:31','2011-11-30 16:04:31','',11,'http://catalog.org.uk/?p=172',0,'revision','',0),(152,3,'2011-10-11 20:41:31','2011-10-11 20:41:31','Joyce Cronin is a gallery manager, project manager and writer. Currently freelance, she worked as Gallery Manager (Exhibitions) at Matt’s Gallery, London from 2004-2009. She has worked for non-profit visual arts organisations for over ten years including Cubitt Gallery, The Drawing Room, Studio Voltaire and the Foundation for Women’s Art (FWA). She is a visiting tutor at the University of the Arts, London providing professional development portfolio reviews to students. Joyce is a graduate of the University of the Arts, with a BA in History of Art from Camberwell College and MA in Enterprise Management for the Creative Arts from the London College of Communications. She has contributed to the Artslant website and Axis online and is an Artistic Assessor for Arts Council England.\r\n

Frances Scott is an artist and has shown work in the UK and New York. She has also performed in film and installation projects for artists including Aura Satz, Jennet Thomas and Lucy Cash, and works freelance in a range of contexts; currently as Artist assistant to Mike Nelson towards the Venice Biennale 2011, and previously at organisations including Matt\'s Gallery, Beaconsfield, and Artsadmin. She has presented talks at institutes across the University of the Arts London, and at the University of Central Lancashire. Frances graduated from the BA at Courtauld Institute of Art in 2003, and from the MA Fine Art at Wimbledon College of Art in 2010.

\r\n

Carolyn Thompson is a visual artist, writer and quilt maker. She has exhibited in solo and group exhibitions in the UK and internationally, including at the Centre for Book Arts, New York, the 18th Istanbul Art Fair, MCO Gallery, Portugal, and the Eagle Gallery, London. Carolyn possesses an MA in Fine Art from Wimbledon College of Art (University of the Arts London). She has held various coordination and new media roles within public/non profit art organisations, including most recently Gallery Manager Communications at Matt\'s Gallery, London, and at the Film and Video Workshop and Synergy Theatre Project.  She currently works at the Design Archives in University of Brighton.\r\n

\r\n ','Biographies','','inherit','closed','closed','','31-revision-5','','','2011-10-11 20:41:31','2011-10-11 20:41:31','',31,'http://catalog.org.uk/?p=152',0,'revision','',0),(173,2,'2011-11-30 15:31:36','2011-11-30 15:31:36','\r\n\r\n22 OCTOBER 2011, FIVE YEARS London E8 \r\n\r\n\r\n\"\"\r\n\r\nCATALOG will host a publishing exercise to run as part of FIVE YEARS\' THIS IS NOT A SCHOOL, a programme of events that respond to the phenomenon of the \'alternative education project\'. The session will be held at FIVE YEARS on 22 October between 5 - 6pm. More information, and how to book if you would like to participate, below.\r\n\r\nDetails on the full programme here \r\n\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW\r\n\r\nThis is a self-publishing exercise. It is a silent exchange of knowledge. Within this class, generosity is a requirement. There is no singular authorial voice. There is a responsibility to share information. The system encourages a relay of ideas. It is not restricted to a particular discipline.  This knowledge or non-knowledge is expressed in the format of a booklet. Each participant creates a chapter. All participants own the booklet. It is contingent on each participant and how they approach their chapter. Participants will access knowledge on a topic that another has anonymously passed on. There will be one booklet.\r\n\r\nNo previous experience is required. Booking is essential.\r\n\r\nTime: 1 hour\r\n\r\nThe procedure:\r\n\r\nParticipants book in advance, emailing info@catalog.org.uk with their postal address. In advance of the session CATALOG will send to participants an empty envelope and a blank postcard.\r\n\r\nParticipants must bring the following to the session:\r\n\r\nCATALOG will provide some basic equipment and materials, including A5 papers with which chapters will be structured. Participants are welcome to bring any booklet-making items they would like to share in the session.\r\n\r\nPlease note: The material placed in the envelope will be used and is non-returnable. Any material is acceptable, but is preferable that it is in a printed format. eg. print-outs, magazines, books, newspapers etc.\r\n\r\nThe session: \r\n\r\n On arrival, participants will submit their envelope and in return will receive another participant’s material. They will construct and title a \'chapter\' from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. They will form their interpretation of the material they have received in the class, and make their contribution to the booklet from this. The class takes place in silence. Interaction between participants is necessary but non-verbal. CATALOG are participants in the session.\r\n\r\nThe booklet: \r\n\r\n The chapters will be collected and assembled as a whole by CATALOG after the session\r\nThe original and new chapter titles will be named in the booklet, connections and departures will be made.\r\nThe resulting booklet will be duplicated and distributed to all participants. The final document becomes a compendium of the combined knowledge of the students in the class at that moment in time. There is scope to extend participation in this process once the booklet has been produced, for example gifting copies of the book to nominated people or using the booklet as a \'chapter\' in the next booklet in the chain. It is a mobile system that can be repeated, modified, and expanded.','Function','','inherit','closed','closed','','5-revision-39','','','2011-11-30 15:31:36','2011-11-30 15:31:36','',5,'http://catalog.org.uk/?p=173',0,'revision','',0),(153,2,'2011-10-11 13:43:11','2011-10-11 13:43:11','\r\n\r\n\"\"\r\n\r\nCATALOG will host a publishing exercise to run as part of FIVE YEARS\' THIS IS NOT A SCHOOL, a programme of events that respond to the phenomenon of the \'alternative education project\'. The session will be held at FIVE YEARS on 22 October between 5 - 6pm. More information, and how to book if you would like to participate, below.\r\n\r\nDetails on the full programme this is not a school www.fiveyears.org.uk/thisisnotaschool1.html\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW\r\n\r\nThis is a self-publishing exercise. It is a silent exchange of knowledge. Within this class, generosity is a requirement. There is no singular authorial voice. There is a responsibility to share information. The system encourages a relay of ideas. It is not restricted to a particular discipline.  This knowledge or non-knowledge is expressed in the format of a booklet. Each participant creates a chapter. All participants own the booklet. It is contingent on each participant and how they approach their chapter. Participants will access knowledge on a topic that another has anonymously passed on. There will be one booklet.\r\n\r\nNo previous experience is required. Booking is essential.\r\n\r\nTime: 1 hour\r\n\r\nThe procedure:\r\n\r\nParticipants book in advance, emailing info@catalog.org.uk with their postal address. In advance of the session CATALOG will send to participants an empty envelope and a blank postcard.\r\n\r\nParticipants must bring the following to the session:\r\n\r\nCATALOG will provide some basic equipment and materials, including A5 papers with which chapters will be structured. Participants are welcome to bring any booklet-making items they would like to share in the session.\r\n\r\nPlease note: The material placed in the envelope will be used and is non-returnable. Any material is acceptable, but is preferable that it is in a printed format. eg. print-outs, magazines, books, newspapers etc.\r\n\r\nThe session: \r\n\r\n On arrival, participants will submit their envelope and in return will receive another participant’s material. They will construct and title a \'chapter\' from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. They will form their interpretation of the material they have received in the class, and make their contribution to the booklet from this. The class takes place in silence. Interaction between participants is necessary but non-verbal. CATALOG are participants in the session.\r\n\r\nThe booklet: \r\n\r\n The chapters will be collected and assembled as a whole by CATALOG after the session\r\nThe original and new chapter titles will be named in the booklet, connections and departures will be made.\r\nThe resulting booklet will be duplicated and distributed to all participants. The final document becomes a compendium of the combined knowledge of the students in the class at that moment in time. There is scope to extend participation in this process once the booklet has been produced, for example gifting copies of the book to nominated people or using the booklet as a \'chapter\' in the next booklet in the chain. It is a mobile system that can be repeated, modified, and expanded.','Function','','inherit','closed','closed','','5-revision-32','','','2011-10-11 13:43:11','2011-10-11 13:43:11','',5,'http://catalog.org.uk/?p=153',0,'revision','',0),(174,2,'2012-01-30 12:28:00','2012-01-30 12:28:00','\r\n\r\nOn 22 October 2011 CATALOG hosted a publishing exercise as part of FIVE YEARS\' THIS IS NOT A SCHOOL, a programme of events that responded to the phenomenon of the \'alternative education project\'. The session was held at FIVE YEARS, London E8. More information below, and details on the full programme here\r\n\r\n\"\"\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\nIF I KNEW THEN WHAT I KNOW NOW\r\n\r\nThis is a self-publishing exercise. It is a silent exchange of knowledge. Within this class, generosity is a requirement. There is no singular authorial voice. There is a responsibility to share information. The system encourages a relay of ideas. It is not restricted to a particular discipline.  This knowledge or non-knowledge is expressed in the format of a booklet. Each participant creates a chapter. All participants own the booklet. It is contingent on each participant and how they approach their chapter. Participants will access knowledge on a topic that another has anonymously passed on. There will be one booklet.\r\n\r\nNo previous experience is required. Booking is essential.\r\n\r\nTime: 1 hour\r\n\r\nThe procedure:\r\n\r\nParticipants book in advance, emailing info@catalog.org.uk with their postal address. In advance of the session CATALOG will send to participants an empty envelope and a blank postcard.\r\n\r\nParticipants must bring the following to the session:\r\n\r\nCATALOG will provide some basic equipment and materials, including A5 papers with which chapters will be structured. Participants are welcome to bring any booklet-making items they would like to share in the session.\r\n\r\nPlease note: The material placed in the envelope will be used and is non-returnable. Any material is acceptable, but is preferable that it is in a printed format. eg. print-outs, magazines, books, newspapers etc.\r\n\r\nThe session: \r\n\r\n On arrival, participants will submit their envelope and in return will receive another participant’s material. They will construct and title a \'chapter\' from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. They will form their interpretation of the material they have received in the class, and make their contribution to the booklet from this. The class takes place in silence. Interaction between participants is necessary but non-verbal. CATALOG are participants in the session.\r\n\r\nThe booklet: \r\n\r\n The chapters will be collected and assembled as a whole by CATALOG after the session\r\nThe original and new chapter titles will be named in the booklet, connections and departures will be made.\r\nThe resulting booklet will be duplicated and distributed to all participants. The final document becomes a compendium of the combined knowledge of the students in the class at that moment in time. There is scope to extend participation in this process once the booklet has been produced, for example gifting copies of the book to nominated people or using the booklet as a \'chapter\' in the next booklet in the chain. It is a mobile system that can be repeated, modified, and expanded.','Function','','inherit','closed','closed','','5-revision-40','','','2012-01-30 12:28:00','2012-01-30 12:28:00','',5,'http://catalog.org.uk/?p=174',0,'revision','',0),(154,2,'2011-11-30 15:24:19','2011-11-30 15:24:19','\r\n\r\n22 OCTOBER 2011, FIVE YEARS London E8 \r\n\r\n\r\n\"\"\r\n\r\nCATALOG will host a publishing exercise to run as part of FIVE YEARS\' THIS IS NOT A SCHOOL, a programme of events that respond to the phenomenon of the \'alternative education project\'. The session will be held at FIVE YEARS on 22 October between 5 - 6pm. More information, and how to book if you would like to participate, below.\r\n\r\nDetails on the full programme this is not a school www.fiveyears.org.uk/thisisnotaschool1.html\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW\r\n\r\nThis is a self-publishing exercise. It is a silent exchange of knowledge. Within this class, generosity is a requirement. There is no singular authorial voice. There is a responsibility to share information. The system encourages a relay of ideas. It is not restricted to a particular discipline.  This knowledge or non-knowledge is expressed in the format of a booklet. Each participant creates a chapter. All participants own the booklet. It is contingent on each participant and how they approach their chapter. Participants will access knowledge on a topic that another has anonymously passed on. There will be one booklet.\r\n\r\nNo previous experience is required. Booking is essential.\r\n\r\nTime: 1 hour\r\n\r\nThe procedure:\r\n\r\nParticipants book in advance, emailing info@catalog.org.uk with their postal address. In advance of the session CATALOG will send to participants an empty envelope and a blank postcard.\r\n\r\nParticipants must bring the following to the session:\r\n\r\nCATALOG will provide some basic equipment and materials, including A5 papers with which chapters will be structured. Participants are welcome to bring any booklet-making items they would like to share in the session.\r\n\r\nPlease note: The material placed in the envelope will be used and is non-returnable. Any material is acceptable, but is preferable that it is in a printed format. eg. print-outs, magazines, books, newspapers etc.\r\n\r\nThe session: \r\n\r\n On arrival, participants will submit their envelope and in return will receive another participant’s material. They will construct and title a \'chapter\' from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. They will form their interpretation of the material they have received in the class, and make their contribution to the booklet from this. The class takes place in silence. Interaction between participants is necessary but non-verbal. CATALOG are participants in the session.\r\n\r\nThe booklet: \r\n\r\n The chapters will be collected and assembled as a whole by CATALOG after the session\r\nThe original and new chapter titles will be named in the booklet, connections and departures will be made.\r\nThe resulting booklet will be duplicated and distributed to all participants. The final document becomes a compendium of the combined knowledge of the students in the class at that moment in time. There is scope to extend participation in this process once the booklet has been produced, for example gifting copies of the book to nominated people or using the booklet as a \'chapter\' in the next booklet in the chain. It is a mobile system that can be repeated, modified, and expanded.','Function','','inherit','closed','closed','','5-revision-33','','','2011-11-30 15:24:19','2011-11-30 15:24:19','',5,'http://catalog.org.uk/?p=154',0,'revision','',0),(155,2,'2011-11-30 15:24:58','2011-11-30 15:24:58','\r\n\r\n22 OCTOBER 2011, FIVE YEARS London E8 \r\n\r\n\r\n\"\"\r\n\r\nCATALOG will host a publishing exercise to run as part of FIVE YEARS\' THIS IS NOT A SCHOOL, a programme of events that respond to the phenomenon of the \'alternative education project\'. The session will be held at FIVE YEARS on 22 October between 5 - 6pm. More information, and how to book if you would like to participate, below.\r\n\r\nDetails on the full programme this is not a school www.fiveyears.org.uk/thisisnotaschool1.html\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW\r\n\r\nThis is a self-publishing exercise. It is a silent exchange of knowledge. Within this class, generosity is a requirement. There is no singular authorial voice. There is a responsibility to share information. The system encourages a relay of ideas. It is not restricted to a particular discipline.  This knowledge or non-knowledge is expressed in the format of a booklet. Each participant creates a chapter. All participants own the booklet. It is contingent on each participant and how they approach their chapter. Participants will access knowledge on a topic that another has anonymously passed on. There will be one booklet.\r\n\r\nNo previous experience is required. Booking is essential.\r\n\r\nTime: 1 hour\r\n\r\nThe procedure:\r\n\r\nParticipants book in advance, emailing info@catalog.org.uk with their postal address. In advance of the session CATALOG will send to participants an empty envelope and a blank postcard.\r\n\r\nParticipants must bring the following to the session:\r\n\r\nCATALOG will provide some basic equipment and materials, including A5 papers with which chapters will be structured. Participants are welcome to bring any booklet-making items they would like to share in the session.\r\n\r\nPlease note: The material placed in the envelope will be used and is non-returnable. Any material is acceptable, but is preferable that it is in a printed format. eg. print-outs, magazines, books, newspapers etc.\r\n\r\nThe session: \r\n\r\n On arrival, participants will submit their envelope and in return will receive another participant’s material. They will construct and title a \'chapter\' from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. They will form their interpretation of the material they have received in the class, and make their contribution to the booklet from this. The class takes place in silence. Interaction between participants is necessary but non-verbal. CATALOG are participants in the session.\r\n\r\nThe booklet: \r\n\r\n The chapters will be collected and assembled as a whole by CATALOG after the session\r\nThe original and new chapter titles will be named in the booklet, connections and departures will be made.\r\nThe resulting booklet will be duplicated and distributed to all participants. The final document becomes a compendium of the combined knowledge of the students in the class at that moment in time. There is scope to extend participation in this process once the booklet has been produced, for example gifting copies of the book to nominated people or using the booklet as a \'chapter\' in the next booklet in the chain. It is a mobile system that can be repeated, modified, and expanded.','Function','','inherit','closed','closed','','5-revision-34','','','2011-11-30 15:24:58','2011-11-30 15:24:58','',5,'http://catalog.org.uk/?p=155',0,'revision','',0),(156,2,'2011-11-30 15:28:14','2011-11-30 15:28:14','\r\n\r\n22 OCTOBER 2011, FIVE YEARS London E8 \r\n\r\n\r\n\"\"\r\n\r\nCATALOG will host a publishing exercise to run as part of FIVE YEARS\' THIS IS NOT A SCHOOL, a programme of events that respond to the phenomenon of the \'alternative education project\'. The session will be held at FIVE YEARS on 22 October between 5 - 6pm. More information, and how to book if you would like to participate, below.\r\n\r\nDetails on the full programme this is not a school http://www.fiveyears.org.uk/thisisnotaschool1.html\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW\r\n\r\nThis is a self-publishing exercise. It is a silent exchange of knowledge. Within this class, generosity is a requirement. There is no singular authorial voice. There is a responsibility to share information. The system encourages a relay of ideas. It is not restricted to a particular discipline.  This knowledge or non-knowledge is expressed in the format of a booklet. Each participant creates a chapter. All participants own the booklet. It is contingent on each participant and how they approach their chapter. Participants will access knowledge on a topic that another has anonymously passed on. There will be one booklet.\r\n\r\nNo previous experience is required. Booking is essential.\r\n\r\nTime: 1 hour\r\n\r\nThe procedure:\r\n\r\nParticipants book in advance, emailing info@catalog.org.uk with their postal address. In advance of the session CATALOG will send to participants an empty envelope and a blank postcard.\r\n\r\nParticipants must bring the following to the session:\r\n\r\nCATALOG will provide some basic equipment and materials, including A5 papers with which chapters will be structured. Participants are welcome to bring any booklet-making items they would like to share in the session.\r\n\r\nPlease note: The material placed in the envelope will be used and is non-returnable. Any material is acceptable, but is preferable that it is in a printed format. eg. print-outs, magazines, books, newspapers etc.\r\n\r\nThe session: \r\n\r\n On arrival, participants will submit their envelope and in return will receive another participant’s material. They will construct and title a \'chapter\' from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. They will form their interpretation of the material they have received in the class, and make their contribution to the booklet from this. The class takes place in silence. Interaction between participants is necessary but non-verbal. CATALOG are participants in the session.\r\n\r\nThe booklet: \r\n\r\n The chapters will be collected and assembled as a whole by CATALOG after the session\r\nThe original and new chapter titles will be named in the booklet, connections and departures will be made.\r\nThe resulting booklet will be duplicated and distributed to all participants. The final document becomes a compendium of the combined knowledge of the students in the class at that moment in time. There is scope to extend participation in this process once the booklet has been produced, for example gifting copies of the book to nominated people or using the booklet as a \'chapter\' in the next booklet in the chain. It is a mobile system that can be repeated, modified, and expanded.','Function','','inherit','closed','closed','','5-revision-35','','','2011-11-30 15:28:14','2011-11-30 15:28:14','',5,'http://catalog.org.uk/?p=156',0,'revision','',0),(159,2,'2011-11-30 15:30:21','2011-11-30 15:30:21','\r\n\r\n22 OCTOBER 2011, FIVE YEARS London E8 \r\n\r\n\r\n\"\"\r\n\r\nCATALOG will host a publishing exercise to run as part of FIVE YEARS\' THIS IS NOT A SCHOOL, a programme of events that respond to the phenomenon of the \'alternative education project\'. The session will be held at FIVE YEARS on 22 October between 5 - 6pm. More information, and how to book if you would like to participate, below.\r\n\r\nDetails on the full programme www.fiveyears.org.uk/thisisnotaschool1.html\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW\r\n\r\nThis is a self-publishing exercise. It is a silent exchange of knowledge. Within this class, generosity is a requirement. There is no singular authorial voice. There is a responsibility to share information. The system encourages a relay of ideas. It is not restricted to a particular discipline.  This knowledge or non-knowledge is expressed in the format of a booklet. Each participant creates a chapter. All participants own the booklet. It is contingent on each participant and how they approach their chapter. Participants will access knowledge on a topic that another has anonymously passed on. There will be one booklet.\r\n\r\nNo previous experience is required. Booking is essential.\r\n\r\nTime: 1 hour\r\n\r\nThe procedure:\r\n\r\nParticipants book in advance, emailing info@catalog.org.uk with their postal address. In advance of the session CATALOG will send to participants an empty envelope and a blank postcard.\r\n\r\nParticipants must bring the following to the session:\r\n\r\nCATALOG will provide some basic equipment and materials, including A5 papers with which chapters will be structured. Participants are welcome to bring any booklet-making items they would like to share in the session.\r\n\r\nPlease note: The material placed in the envelope will be used and is non-returnable. Any material is acceptable, but is preferable that it is in a printed format. eg. print-outs, magazines, books, newspapers etc.\r\n\r\nThe session: \r\n\r\n On arrival, participants will submit their envelope and in return will receive another participant’s material. They will construct and title a \'chapter\' from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. They will form their interpretation of the material they have received in the class, and make their contribution to the booklet from this. The class takes place in silence. Interaction between participants is necessary but non-verbal. CATALOG are participants in the session.\r\n\r\nThe booklet: \r\n\r\n The chapters will be collected and assembled as a whole by CATALOG after the session\r\nThe original and new chapter titles will be named in the booklet, connections and departures will be made.\r\nThe resulting booklet will be duplicated and distributed to all participants. The final document becomes a compendium of the combined knowledge of the students in the class at that moment in time. There is scope to extend participation in this process once the booklet has been produced, for example gifting copies of the book to nominated people or using the booklet as a \'chapter\' in the next booklet in the chain. It is a mobile system that can be repeated, modified, and expanded.','Function','','inherit','closed','closed','','5-revision-38','','','2011-11-30 15:30:21','2011-11-30 15:30:21','',5,'http://catalog.org.uk/?p=159',0,'revision','',0),(157,2,'2011-11-30 15:29:10','2011-11-30 15:29:10','\r\n\r\n22 OCTOBER 2011, FIVE YEARS London E8 \r\n\r\n\r\n\"\"\r\n\r\nCATALOG will host a publishing exercise to run as part of FIVE YEARS\' THIS IS NOT A SCHOOL, a programme of events that respond to the phenomenon of the \'alternative education project\'. The session will be held at FIVE YEARS on 22 October between 5 - 6pm. More information, and how to book if you would like to participate, below.\r\n\r\nDetails on the full programme this is not a school \r\nIF I KNEW THEN WHAT I KNOW NOW\r\n\r\nThis is a self-publishing exercise. It is a silent exchange of knowledge. Within this class, generosity is a requirement. There is no singular authorial voice. There is a responsibility to share information. The system encourages a relay of ideas. It is not restricted to a particular discipline.  This knowledge or non-knowledge is expressed in the format of a booklet. Each participant creates a chapter. All participants own the booklet. It is contingent on each participant and how they approach their chapter. Participants will access knowledge on a topic that another has anonymously passed on. There will be one booklet.\r\n\r\nNo previous experience is required. Booking is essential.\r\n\r\nTime: 1 hour\r\n\r\nThe procedure:\r\n\r\nParticipants book in advance, emailing info@catalog.org.uk with their postal address. In advance of the session CATALOG will send to participants an empty envelope and a blank postcard.\r\n\r\nParticipants must bring the following to the session:\r\n\r\nCATALOG will provide some basic equipment and materials, including A5 papers with which chapters will be structured. Participants are welcome to bring any booklet-making items they would like to share in the session.\r\n\r\nPlease note: The material placed in the envelope will be used and is non-returnable. Any material is acceptable, but is preferable that it is in a printed format. eg. print-outs, magazines, books, newspapers etc.\r\n\r\nThe session: \r\n\r\n On arrival, participants will submit their envelope and in return will receive another participant’s material. They will construct and title a \'chapter\' from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. They will form their interpretation of the material they have received in the class, and make their contribution to the booklet from this. The class takes place in silence. Interaction between participants is necessary but non-verbal. CATALOG are participants in the session.\r\n\r\nThe booklet: \r\n\r\n The chapters will be collected and assembled as a whole by CATALOG after the session\r\nThe original and new chapter titles will be named in the booklet, connections and departures will be made.\r\nThe resulting booklet will be duplicated and distributed to all participants. The final document becomes a compendium of the combined knowledge of the students in the class at that moment in time. There is scope to extend participation in this process once the booklet has been produced, for example gifting copies of the book to nominated people or using the booklet as a \'chapter\' in the next booklet in the chain. It is a mobile system that can be repeated, modified, and expanded.','Function','','inherit','closed','closed','','5-revision-36','','','2011-11-30 15:29:10','2011-11-30 15:29:10','',5,'http://catalog.org.uk/?p=157',0,'revision','',0),(158,2,'2011-11-30 15:29:46','2011-11-30 15:29:46','\r\n\r\n22 OCTOBER 2011, FIVE YEARS London E8 \r\n\r\n\r\n\"\"\r\n\r\nCATALOG will host a publishing exercise to run as part of FIVE YEARS\' THIS IS NOT A SCHOOL, a programme of events that respond to the phenomenon of the \'alternative education project\'. The session will be held at FIVE YEARS on 22 October between 5 - 6pm. More information, and how to book if you would like to participate, below.\r\n\r\nDetails on the full programme this is not a school \r\n\r\nIF I KNEW THEN WHAT I KNOW NOW\r\n\r\nThis is a self-publishing exercise. It is a silent exchange of knowledge. Within this class, generosity is a requirement. There is no singular authorial voice. There is a responsibility to share information. The system encourages a relay of ideas. It is not restricted to a particular discipline.  This knowledge or non-knowledge is expressed in the format of a booklet. Each participant creates a chapter. All participants own the booklet. It is contingent on each participant and how they approach their chapter. Participants will access knowledge on a topic that another has anonymously passed on. There will be one booklet.\r\n\r\nNo previous experience is required. Booking is essential.\r\n\r\nTime: 1 hour\r\n\r\nThe procedure:\r\n\r\nParticipants book in advance, emailing info@catalog.org.uk with their postal address. In advance of the session CATALOG will send to participants an empty envelope and a blank postcard.\r\n\r\nParticipants must bring the following to the session:\r\n\r\nCATALOG will provide some basic equipment and materials, including A5 papers with which chapters will be structured. Participants are welcome to bring any booklet-making items they would like to share in the session.\r\n\r\nPlease note: The material placed in the envelope will be used and is non-returnable. Any material is acceptable, but is preferable that it is in a printed format. eg. print-outs, magazines, books, newspapers etc.\r\n\r\nThe session: \r\n\r\n On arrival, participants will submit their envelope and in return will receive another participant’s material. They will construct and title a \'chapter\' from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. They will form their interpretation of the material they have received in the class, and make their contribution to the booklet from this. The class takes place in silence. Interaction between participants is necessary but non-verbal. CATALOG are participants in the session.\r\n\r\nThe booklet: \r\n\r\n The chapters will be collected and assembled as a whole by CATALOG after the session\r\nThe original and new chapter titles will be named in the booklet, connections and departures will be made.\r\nThe resulting booklet will be duplicated and distributed to all participants. The final document becomes a compendium of the combined knowledge of the students in the class at that moment in time. There is scope to extend participation in this process once the booklet has been produced, for example gifting copies of the book to nominated people or using the booklet as a \'chapter\' in the next booklet in the chain. It is a mobile system that can be repeated, modified, and expanded.','Function','','inherit','closed','closed','','5-revision-37','','','2011-11-30 15:29:46','2011-11-30 15:29:46','',5,'http://catalog.org.uk/?p=158',0,'revision','',0),(161,2,'2011-11-30 15:44:37','2011-11-30 15:44:37','Joyce Cronin\r\nwww.artslant.com/lon/artists/show/160117-joyce-cronin?tab=REVIEWS\r\nwww.artslant.com/mia/articles/show/18690\r\nwww.axisweb.org/dlForum.aspx?ESSAYID=18100\r\n\r\n\r\nFrances Scott\r\nwww.abyme.org.uk\r\n\r\n\r\nCarolyn Thompson\r\nwww.carolynthompson.co.uk/','Index','','inherit','closed','closed','','9-revision-20','','','2011-11-30 15:44:37','2011-11-30 15:44:37','',9,'http://catalog.org.uk/?p=161',0,'revision','',0),(162,2,'2011-11-30 15:49:43','2011-11-30 15:49:43','Joyce Cronin\r\nARTslant selected reviews\r\n\r\n\r\nFrances Scott\r\nAbyme\r\n\r\n\r\nCarolyn Thompson\r\nArtist website\r\n','Index','','inherit','closed','closed','','9-revision-21','','','2011-11-30 15:49:43','2011-11-30 15:49:43','',9,'http://catalog.org.uk/?p=162',0,'revision','',0),(163,2,'2011-11-30 15:50:47','2011-11-30 15:50:47','Joyce Cronin\r\nARTslant selected reviews\r\n\r\n\r\nFrances Scott\r\nwww.abyme.org.uk\r\n\r\n\r\nCarolyn Thompson\r\nwww.carolynthompson.co.uk\r\n','Index','','inherit','closed','closed','','9-revision-22','','','2011-11-30 15:50:47','2011-11-30 15:50:47','',9,'http://catalog.org.uk/?p=163',0,'revision','',0),(164,2,'2011-11-30 15:52:22','2011-11-30 15:52:22','Joyce Cronin\r\nARTslant selected reviews\r\n\r\n\r\nFrances Scott\r\nwww.abyme.org.uk\r\nThe Quiddity Grid\r\n\r\n\r\nCarolyn Thompson\r\nwww.carolynthompson.co.uk\r\n','Index','','inherit','closed','closed','','9-revision-23','','','2011-11-30 15:52:22','2011-11-30 15:52:22','',9,'http://catalog.org.uk/?p=164',0,'revision','',0),(165,2,'2011-11-30 15:57:14','2011-11-30 15:57:14','Joyce Cronin\r\nARTslant selected reviews\r\n\r\n\r\nFrances Scott\r\nwww.abyme.org.uk\r\nThe Quiddity Grid\r\n\r\n\r\nCarolyn Thompson\r\nwww.carolynthompson.co.uk\r\n','Index','','inherit','closed','closed','','9-revision-24','','','2011-11-30 15:57:14','2011-11-30 15:57:14','',9,'http://catalog.org.uk/?p=165',0,'revision','',0),(166,2,'2011-09-26 15:27:19','2011-09-26 15:27:19','\r\n\r\nJoyce Cronin is a gallery manager, writer, project manager and fundraiser. Currently freelance, she worked as Gallery Manager (Exhibitions) at Matt’s Gallery, London from 2004-2009. She has worked for non-profit visual arts organisations for over ten years including The Drawing Room, Studio Voltaire and the Foundation for Women’s Art (FWA). She is a visiting tutor at the University of the Arts, London providing professional development portfolio reviews to students. Joyce is a graduate of the University of the Arts, with a BA in History of Art from Camberwell College and MA in Enterprise Management for the Creative Arts from the London College of Communications. She is a regular contributor to the Artslant website and an Artistic Assessor for Arts Council England.\r\n\r\nFrances Scott is an artist and has shown work in the UK and New York. She has also performed in film and installation projects for artists including Aura Satz, Jennet Thomas and Lucy Cash, and works freelance in a range of contexts; currently as Artist assistant to Mike Nelson towards the Venice Biennale 2011, and previously at organisations including Matt\'s Gallery, Beaconsfield, and Artsadmin. She has presented talks at institutes across the University of the Arts London, and at the University of Central Lancashire. Frances graduated from the BA at Courtauld Institute of Art in 2003, and from the MA Fine Art at Wimbledon College of Art in 2010.\r\n\r\nCarolyn Thompson is a visual artist, writer and quilt maker. She has exhibited in solo and group exhibitions in the UK and internationally, including at the Centre for Book Arts, New York, the 18th Istanbul Art Fair, MCO Gallery, Portugal, and the Eagle Gallery, London. Carolyn possesses an MA in Fine Art from Wimbledon College of Art (University of the Arts London). She has held various coordination and new media roles within public/non profit art organisations, including most recently Gallery Manager (Communications) at Matt\'s Gallery, London, and at the Film and Video Workshop and Synergy Theatre Project.  She currently works at the Design Archives in University of Brighton.\r\n\r\ninfo@catalog.org.uk\r\n','Communicate','','inherit','closed','closed','','11-revision-9','','','2011-09-26 15:27:19','2011-09-26 15:27:19','',11,'http://catalog.org.uk/?p=166',0,'revision','',0),(167,2,'2011-11-30 16:07:54','2011-11-30 16:07:54','','CATALOG_FiveYears8_lowres','','inherit','closed','closed','','catalog_fiveyears8_lowres','','','2011-11-30 16:07:54','2011-11-30 16:07:54','',7,'http://catalog.org.uk/wp-content/uploads/2011/02/CATALOG_FiveYears8_lowres.jpg',0,'attachment','image/jpeg',0),(168,2,'2011-10-11 13:59:24','2011-10-11 13:59:24','\"\"\"\"\r\n\r\n\"\"\r\n\r\n \r\n\r\nCATALOG 2011','Journal','','inherit','closed','closed','','7-revision-32','','','2011-10-11 13:59:24','2011-10-11 13:59:24','',7,'http://catalog.org.uk/?p=168',0,'revision','',0),(170,2,'2011-11-30 16:11:11','2011-11-30 16:11:11','\"\"\"\"\r\n\r\n\"\"\r\n\r\n \r\n\r\nCATALOG 2011','Journal','','inherit','closed','closed','','7-revision-34','','','2011-11-30 16:11:11','2011-11-30 16:11:11','',7,'http://catalog.org.uk/?p=170',0,'revision','',0),(171,3,'2011-10-11 21:26:09','2011-10-11 21:26:09','Joyce Cronin is a gallery manager, project manager and writer. Currently freelance, she worked as Gallery Manager (Exhibitions) at Matt’s Gallery, London from 2004-2009. She has worked for non-profit visual arts organisations for over ten years including Cubitt Gallery, The Drawing Room, Studio Voltaire and the Foundation for Women’s Art (FWA). She is a visiting tutor at the University of the Arts, London providing professional development portfolio reviews to students. Joyce is a graduate of the University of the Arts, with a BA in History of Art from Camberwell College and MA in Enterprise Management for the Creative Arts from the London College of Communications. She has contributed to the Artslant website and Axis online and is an Artistic Assessor for Arts Council England.\r\n

Frances Scott is an artist and has shown work in the UK and New York. She has also performed in film and installation projects for artists including Aura Satz, Jennet Thomas and Lucy Cash, and works freelance in a range of contexts; currently as Artist assistant to Mike Nelson towards the Venice Biennale 2011, and previously at organisations including Matt\'s Gallery, Beaconsfield, and Artsadmin. She has presented talks at institutes across the University of the Arts London, and at the University of Central Lancashire. Frances graduated from the BA at Courtauld Institute of Art in 2003, and from the MA Fine Art at Wimbledon College of Art in 2010.

\r\n

Carolyn Thompson is a visual artist, writer and quilt maker. She has exhibited in solo and group exhibitions in the UK and internationally, including at the Centre for Book Arts, New York, the 18th Istanbul Art Fair, MCO Gallery, Portugal, and the Eagle Gallery, London. Carolyn possesses an MA in Fine Art from Wimbledon College of Art (University of the Arts London). She has held various coordination and new media roles within public/non profit art organisations, including most recently Gallery Manager Communications at Matt\'s Gallery, London, and at the Film and Video Workshop and Synergy Theatre Project.  She currently works at the Design Archives in University of Brighton.\r\n

\r\n ','Biographies','','inherit','closed','closed','','31-revision-6','','','2011-10-11 21:26:09','2011-10-11 21:26:09','',31,'http://catalog.org.uk/?p=171',0,'revision','',0),(169,2,'2011-11-30 16:08:17','2011-11-30 16:08:17','\"\"\"\"\"\"\r\n\r\n\"\"\r\n\r\n \r\n\r\nCATALOG 2011','Journal','','inherit','closed','closed','','7-revision-33','','','2011-11-30 16:08:17','2011-11-30 16:08:17','',7,'http://catalog.org.uk/?p=169',0,'revision','',0),(175,2,'2011-12-12 22:33:48','2011-12-12 22:33:48','\r\n\r\nJoyce Cronin is a gallery manager, project manager and writer. Currently freelance, she worked as Gallery Manager (Exhibitions) at Matt’s Gallery, London from 2004-2009. She has worked for non-profit visual arts organisations for over ten years including Cubitt Gallery, The Drawing Room, Studio Voltaire and the Foundation for Women’s Art (FWA). She is a visiting tutor at the University of the Arts, London providing professional development portfolio reviews to students. Joyce is a graduate of the University of the Arts, with a BA in History of Art from Camberwell College and MA in Enterprise Management for the Creative Arts from the London College of Communications. She has contributed to the Artslant website and Axis online and is an Artistic Assessor for Arts Council England.\r\n\r\n\r\nFrances Scott is an artist and has shown work in the UK and New York, recently for a Lucky PDF live broadcast as part of their commission with Frieze Projects 2011. She has also performed in film and installation projects for artists including Lucy Cash, Magnus Palsson, Aura Satz, and Jennet Thomas, and works freelance in a range of contexts; currently as Artist assistant to Mike Nelson, and previously at organisations including Matt\'s Gallery, Beaconsfield, and Artsadmin. She has presented talks at institutes across the University of the Arts London, and at the University of Central Lancashire. Frances graduated from the BA at Courtauld Institute of Art in 2003, and from the MA Fine Art at Wimbledon College of Art in 2010.\r\n\r\nCarolyn Thompson is a visual artist, writer and quilt maker. She has exhibited in solo and group exhibitions in the UK and internationally, including at the Centre for Book Arts, New York, the 18th Istanbul Art Fair, MCO Gallery, Portugal, and the Eagle Gallery, London. Carolyn possesses an MA in Fine Art from Wimbledon College of Art (University of the Arts London). She has held various coordination and new media roles within public/non profit art organisations, including most recently Gallery Manager (Communications) at Matt\'s Gallery, London, and at the Film and Video Workshop and Synergy Theatre Project.  She currently works at the Design Archives in University of Brighton.\r\n\r\ninfo@catalog.org.uk','Communicate','','inherit','closed','closed','','11-revision-11','','','2011-12-12 22:33:48','2011-12-12 22:33:48','',11,'http://catalog.org.uk/?p=175',0,'revision','',0),(176,2,'2012-01-31 16:45:09','2012-01-31 16:45:09','','CATALOG_FiveYears2_lowres','','inherit','closed','closed','','catalog_fiveyears2_lowres','','','2012-01-31 16:45:09','2012-01-31 16:45:09','',5,'http://catalog.org.uk/wp-content/uploads/2012/01/CATALOG_FiveYears2_lowres.jpg',0,'attachment','image/jpeg',0),(177,2,'2012-01-31 16:45:17','2012-01-31 16:45:17','','CATALOG_FiveYears3_lowres','','inherit','closed','closed','','catalog_fiveyears3_lowres','','','2012-01-31 16:45:17','2012-01-31 16:45:17','',5,'http://catalog.org.uk/wp-content/uploads/2012/01/CATALOG_FiveYears3_lowres.jpg',0,'attachment','image/jpeg',0),(181,2,'2012-03-16 17:15:59','2012-03-16 17:15:59','\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW\r\n\r\n\"\"\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW is a project that was first held as part of this is not a school at FIVE YEARS, London between 5-6pm on 22 October 2011 in response to “a free and open invitation for anyone to propose a participatory activity questioning the idea of \'School\' - \'Free\' or otherwise” More information here\r\n\r\nParticipants booked in advance to attend the session. CATALOG sent participants an empty envelope and a blank postcard, requesting that they bring to the session their envelope filled with content around a topic that they are especially interested in and/or have knowledge, as well as the postcard, onto which they wrote their chosen topic’s ‘chapter’ title.\r\n \r\nOn arrival to the session, participants submitted their envelope and in return received another participant’s material. They constructed and titled a ‘chapter’ from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. The session took place in silence.\r\n \r\nThe chapters were collected and assembled as a whole by CATALOG after the session. \r\n\r\nWe are currently working on the final document, which will be downloadable here as a PDF in spring 2012. The PDF booklet becomes a compendium of the combined knowledge of the participants in the session at that moment in time.\r\n\r\n\r\n\r\n','Function','','inherit','closed','closed','','5-revision-44','','','2012-03-16 17:15:59','2012-03-16 17:15:59','',5,'http://catalog.org.uk/?p=181',0,'revision','',0),(183,2,'2012-03-16 18:25:14','2012-03-16 18:25:14','IF I KNEW THEN WHAT I KNOW NOW\r\n\r\n\"\"\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW is a project that was first held as part of this is not a school at FIVE YEARS, London between 5-6pm on 22 October 2011 in response to “a free and open invitation for anyone to propose a participatory activity questioning the idea of \'School\' - \'Free\' or otherwise” More information here\r\n\r\nParticipants booked in advance to attend the session. CATALOG sent participants an empty envelope and a blank postcard, requesting that they bring to the session their envelope filled with content around a topic that they are especially interested in and/or have knowledge, as well as the postcard, onto which they wrote their chosen topic’s ‘chapter’ title.\r\n\r\nOn arrival to the session, participants submitted their envelope and in return received another participant’s material. They constructed and titled a ‘chapter’ from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. The session took place in silence.\r\n\r\nThe chapters were collected and assembled as a whole by CATALOG after the session.\r\n\r\nWe are currently working on the final document, which will be downloadable here as a PDF in spring 2012. The PDF booklet becomes a compendium of the combined knowledge of the participants in the session at that moment in time.\r\n\r\n \r\n\r\n\"\"\r\n\r\n\"\"','Function','','inherit','closed','closed','','5-revision-46','','','2012-03-16 18:25:14','2012-03-16 18:25:14','',5,'http://catalog.org.uk/?p=183',0,'revision','',0),(182,2,'2012-03-16 18:16:28','2012-03-16 18:16:28','\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW\r\n\r\n\"\"\r\n\r\nIF I KNEW THEN WHAT I KNOW NOW is a project that was first held as part of this is not a school at FIVE YEARS, London between 5-6pm on 22 October 2011 in response to “a free and open invitation for anyone to propose a participatory activity questioning the idea of \'School\' - \'Free\' or otherwise” More information here\r\n\r\nParticipants booked in advance to attend the session. CATALOG sent participants an empty envelope and a blank postcard, requesting that they bring to the session their envelope filled with content around a topic that they are especially interested in and/or have knowledge, as well as the postcard, onto which they wrote their chosen topic’s ‘chapter’ title.\r\n\r\nOn arrival to the session, participants submitted their envelope and in return received another participant’s material. They constructed and titled a ‘chapter’ from this material with no previous knowledge of the name of the chapter/topic originally given by the donor. The session took place in silence.\r\n\r\nThe chapters were collected and assembled as a whole by CATALOG after the session.\r\n\r\nWe are currently working on the final document, which will be downloadable here as a PDF in spring 2012. The PDF booklet becomes a compendium of the combined knowledge of the participants in the session at that moment in time.\r\n\r\n\"\"','Function','','inherit','closed','closed','','5-revision-45','','','2012-03-16 18:16:28','2012-03-16 18:16:28','',5,'http://catalog.org.uk/?p=182',0,'revision','',0); /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_relationships` -- DROP TABLE IF EXISTS `wp_term_relationships`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL default '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL default '0', `term_order` int(11) NOT NULL default '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_term_relationships` -- LOCK TABLES `wp_term_relationships` WRITE; /*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */; INSERT INTO `wp_term_relationships` VALUES (1,2,0),(2,2,0),(3,2,0),(4,2,0),(5,2,0),(6,2,0),(7,2,0),(1,1,0),(18,3,0),(17,3,0),(16,3,0),(15,3,0),(14,3,0); /*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_taxonomy` -- DROP TABLE IF EXISTS `wp_term_taxonomy`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL auto_increment, `term_id` bigint(20) unsigned NOT NULL default '0', `taxonomy` varchar(32) NOT NULL default '', `description` longtext NOT NULL, `parent` bigint(20) unsigned NOT NULL default '0', `count` bigint(20) NOT NULL default '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_term_taxonomy` -- LOCK TABLES `wp_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */; INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'link_category','',0,7),(3,3,'nav_menu','',0,5); /*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_terms` -- DROP TABLE IF EXISTS `wp_terms`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_terms` ( `term_id` bigint(20) unsigned NOT NULL auto_increment, `name` varchar(200) NOT NULL default '', `slug` varchar(200) NOT NULL default '', `term_group` bigint(10) NOT NULL default '0', PRIMARY KEY (`term_id`), UNIQUE KEY `slug` (`slug`), KEY `name` (`name`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_terms` -- LOCK TABLES `wp_terms` WRITE; /*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */; INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Blogroll','blogroll',0),(3,'main','main',0); /*!40000 ALTER TABLE `wp_terms` 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) unsigned NOT NULL auto_increment, `user_id` bigint(20) unsigned 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=89 DEFAULT CHARSET=utf8; 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,'first_name',''),(2,1,'last_name',''),(3,1,'nickname','admin'),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'show_admin_bar_admin','false'),(11,1,'aim',''),(12,1,'yim',''),(13,1,'jabber',''),(14,1,'wp_capabilities','a:1:{s:13:\"administrator\";s:1:\"1\";}'),(15,1,'wp_user_level','10'),(16,1,'wp_dashboard_quick_press_last_post_id','133'),(17,1,'wp_user-settings','m5=o'),(18,1,'wp_user-settings-time','1298749498'),(19,1,'managenav-menuscolumnshidden','a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),(20,1,'metaboxhidden_nav-menus','a:2:{i:0;s:8:\"add-post\";i:1;s:12:\"add-post_tag\";}'),(21,2,'first_name','Frances'),(22,2,'last_name','Scott'),(23,2,'nickname','frances'),(24,2,'description',''),(25,2,'rich_editing','true'),(26,2,'comment_shortcuts','false'),(27,2,'admin_color','fresh'),(28,2,'use_ssl','0'),(29,2,'show_admin_bar_front','true'),(30,2,'show_admin_bar_admin','false'),(31,2,'aim',''),(32,2,'yim',''),(33,2,'jabber',''),(34,2,'wp_capabilities','a:1:{s:13:\"administrator\";s:1:\"1\";}'),(35,2,'wp_user_level','10'),(36,3,'first_name','Joyce'),(37,3,'last_name','Cronin'),(38,3,'nickname','joyce'),(39,3,'description',''),(40,3,'rich_editing','true'),(41,3,'comment_shortcuts','false'),(42,3,'admin_color','fresh'),(43,3,'use_ssl','0'),(44,3,'show_admin_bar_front','true'),(45,3,'show_admin_bar_admin','false'),(46,3,'aim',''),(47,3,'yim',''),(48,3,'jabber',''),(49,3,'wp_capabilities','a:1:{s:13:\"administrator\";s:1:\"1\";}'),(50,3,'wp_user_level','10'),(51,4,'first_name','Carolyn'),(52,4,'last_name','Thompson'),(53,4,'nickname','carolyn'),(54,4,'description',''),(55,4,'rich_editing','true'),(56,4,'comment_shortcuts','false'),(57,4,'admin_color','fresh'),(58,4,'use_ssl','0'),(59,4,'show_admin_bar_front','true'),(60,4,'show_admin_bar_admin','false'),(61,4,'aim',''),(62,4,'yim',''),(63,4,'jabber',''),(64,4,'wp_capabilities','a:1:{s:13:\"administrator\";s:1:\"1\";}'),(65,4,'wp_user_level','10'),(66,3,'wp_dashboard_quick_press_last_post_id','149'),(67,1,'nav_menu_recently_edited','3'),(68,2,'wp_dashboard_quick_press_last_post_id','121'),(69,3,'nav_menu_recently_edited','3'),(70,3,'managenav-menuscolumnshidden','a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),(71,3,'metaboxhidden_nav-menus','a:2:{i:0;s:8:\"add-post\";i:1;s:12:\"add-post_tag\";}'),(72,3,'wp_user-settings','m5=o&mfold=f'),(73,3,'wp_user-settings-time','1318368948'),(74,4,'wp_dashboard_quick_press_last_post_id','48'),(75,4,'wp_user-settings','editor=tinymce&m2=o&uploader=1&align=center&imgsize=full'),(76,4,'wp_user-settings-time','1317670419'),(77,4,'nav_menu_recently_edited','3'),(78,4,'managenav-menuscolumnshidden','a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),(79,4,'metaboxhidden_nav-menus','a:2:{i:0;s:8:\"add-post\";i:1;s:12:\"add-post_tag\";}'),(80,2,'wp_user-settings','editor=html&imgsize=full&urlbutton=none&align=left&galfile=1&m8=c&galcols=1&m5=c'),(81,2,'wp_user-settings-time','1331922353'),(82,2,'closedpostboxes_page','a:0:{}'),(83,2,'metaboxhidden_page','a:6:{i:0;s:10:\"postcustom\";i:1;s:16:\"commentstatusdiv\";i:2;s:11:\"commentsdiv\";i:3;s:7:\"slugdiv\";i:4;s:9:\"authordiv\";i:5;s:12:\"revisionsdiv\";}'),(84,2,'nav_menu_recently_edited','3'),(85,2,'managenav-menuscolumnshidden','a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),(86,2,'metaboxhidden_nav-menus','a:2:{i:0;s:8:\"add-post\";i:1;s:12:\"add-post_tag\";}'),(87,3,'closedpostboxes_page','a:0:{}'),(88,3,'metaboxhidden_page','a:6:{i:0;s:10:\"postcustom\";i:1;s:16:\"commentstatusdiv\";i:2;s:11:\"commentsdiv\";i:3;s:7:\"slugdiv\";i:4;s:9:\"authordiv\";i:5;s:12:\"revisionsdiv\";}'); /*!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`), KEY `user_nicename` (`user_nicename`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; 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','$P$BQQSxLjP2AXCphW1b9ZbSAAxmOOxWi0','admin','oli@zilla.org.uk','','2011-02-26 19:44:10','',0,'admin'),(2,'frances','$P$BuT9uLdJwCRaUtyVPg6RaqqWosVGAZ0','frances','frances@catalog.org.uk','http://abyme.org.uk','2011-02-27 17:41:12','',0,'frances'),(3,'joyce','$P$BAddRaiRyjxJ1OB26d/xxasewpQBdI.','joyce','joyce@catalog.org.uk','','2011-02-27 17:43:47','',0,'joyce'),(4,'carolyn','$P$BE6rmhL.NfcghbKmFwrWvMjZwkocQ00','carolyn','carolyn@catalog.org.uk','','2011-02-27 17:47:44','',0,'carolyn'); /*!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 2012-03-20 17:14:54