-
Notifications
You must be signed in to change notification settings - Fork 0
/
wordpress.sql
408 lines (357 loc) · 527 KB
/
wordpress.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
-- MySQL dump 10.13 Distrib 5.1.54, for debian-linux-gnu (i686)
--
-- Host: localhost Database: wordpress
-- ------------------------------------------------------
-- Server version 5.1.54-1ubuntu4-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 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 AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 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`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 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;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_comments`
--
LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_ec3_schedule`
--
DROP TABLE IF EXISTS `wp_ec3_schedule`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ec3_schedule` (
`sched_id` bigint(20) NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) DEFAULT NULL,
`start` datetime DEFAULT NULL,
`end` datetime DEFAULT NULL,
`allday` tinyint(1) DEFAULT NULL,
`rpt` varchar(64) DEFAULT NULL,
PRIMARY KEY (`sched_id`)
) ENGINE=MyISAM AUTO_INCREMENT=118 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_ec3_schedule`
--
LOCK TABLES `wp_ec3_schedule` WRITE;
/*!40000 ALTER TABLE `wp_ec3_schedule` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_ec3_schedule` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 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=12 DEFAULT CHARSET=utf8;
/*!40101 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 */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 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=913 DEFAULT CHARSET=utf8;
/*!40101 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://localhost/freiland','yes'),(2,0,'blogname','Freiland','yes'),(3,0,'blogdescription','Ein Freiland für Potsdam','yes'),(4,0,'users_can_register','0','yes'),(5,0,'admin_email','chris.p.herbst@googlemail.com','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','open','yes'),(20,0,'default_pingback_flag','1','yes'),(21,0,'default_post_edit_rows','10','yes'),(22,0,'posts_per_page','-1','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','<em>','yes'),(27,0,'links_recently_updated_append','</em>','yes'),(28,0,'links_recently_updated_time','120','yes'),(29,0,'comment_moderation','','yes'),(30,0,'moderation_notify','1','yes'),(31,0,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','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:10:{i:0;s:33:\"blogroll-links/blogroll-links.php\";i:1;s:42:\"category-event-calendar/eventcalendar3.php\";i:2;s:34:\"category-event-calendar/widget.php\";i:3;s:41:\"flexi-pages-widget/flexi-pages-widget.php\";i:4;s:37:\"lightbox-gallery/lightbox-gallery.php\";i:5;s:27:\"nice-search/nice-search.php\";i:6;s:25:\"qtranslate/qtranslate.php\";i:7;s:30:\"smw-import/smwimport-admin.php\";i:8;s:33:\"widget-context/widget-context.php\";i:9;s:40:\"wp-no-category-base/no-category-base.php\";}','yes'),(37,0,'home','http://localhost/freiland','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:5:{i:0;s:78:\"/home/chris/Projects/Freiland/wordpress/wp-content/plugins/akismet/akismet.php\";i:1;s:84:\"/home/magnus/Documents/Repos/Freiland/wordpress/wp-content/themes/freiland/style.css\";i:2;s:78:\"/home/chris/Projects/Freiland/wordpress/wp-content/themes/twentyten/footer.php\";i:3;s:77:\"/home/chris/Projects/Freiland/wordpress/wp-content/themes/twentyten/style.css\";i:4;s:0:\"\";}','no'),(45,0,'template','twentyten','yes'),(46,0,'stylesheet','freiland','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','18226','yes'),(55,0,'uploads_use_yearmonth_folders','1','yes'),(56,0,'upload_path','','yes'),(57,0,'blog_public','1','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','','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','','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:1:{s:12:\"_multiwidget\";i:1;}','yes'),(87,0,'widget_text','a:3:{i:2;a:0:{}i:3;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b: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','265','yes'),(95,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'),(96,0,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(97,0,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(368,0,'ec3_widget_list','a:2:{s:5:\"title\";s:15:\"Upcoming Events\";s:5:\"limit\";s:1:\"5\";}','yes'),(98,0,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(99,0,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(155,0,'mods_Twenty Ten','a:5:{s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:6;}s:16:\"background_color\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:22:\"background_image_thumb\";s:0:\"\";s:12:\"header_image\";s:74:\"http://localhost/freiland/wp-content/uploads/2011/02/cropped-Freiland1.jpg\";}','yes'),(100,0,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,0,'sidebars_widgets','a:8:{s:19:\"wp_inactive_widgets\";a:0:{}s:19:\"primary-widget-area\";a:2:{i:0;s:14:\"event-calendar\";i:1;s:6:\"text-3\";}s:21:\"secondary-widget-area\";a:0:{}s:24:\"first-footer-widget-area\";a:2:{i:0;s:10:\"nav_menu-3\";i:1;s:12:\"flexipages-2\";}s:25:\"second-footer-widget-area\";a:0:{}s:24:\"third-footer-widget-area\";a:0:{}s:25:\"fourth-footer-widget-area\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(102,0,'cron','a:6:{i:1300465400;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:1300465407;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;}}}i:1300465658;a:1:{s:12:\"qs_cron_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1300472591;a:1:{s:26:\"smwimport_import_all_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1305538469;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}s:7:\"version\";i:2;}','yes'),(103,0,'_transient_doing_cron','1300462090','yes'),(874,0,'_site_transient_timeout_theme_roots','1309860581','yes'),(875,0,'_site_transient_theme_roots','a:3:{s:8:\"freiland\";s:7:\"/themes\";s:12:\"twentyeleven\";s:7:\"/themes\";s:9:\"twentyten\";s:7:\"/themes\";}','yes'),(176,0,'default_post_format','0','yes'),(107,0,'widget_pages','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(108,0,'widget_calendar','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(109,0,'widget_links','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(110,0,'widget_tag_cloud','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(111,0,'widget_nav_menu','a:3:{i:2;a:0:{}i:3;a:2:{s:5:\"title\";s:0:\"\";s:8:\"nav_menu\";i:25;}s:12:\"_multiwidget\";i:1;}','yes'),(114,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:25:\"http://localhost/freiland\";s:4:\"link\";s:101:\"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://localhost/freiland/\";s:3:\"url\";s:134:\"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://localhost/freiland/\";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'),(177,0,'db_upgraded','','yes'),(873,0,'_site_transient_update_core','O:8:\"stdClass\":3:{s:7:\"updates\";a:0:{}s:15:\"version_checked\";s:3:\"3.2\";s:12:\"last_checked\";i:1309853375;}','yes'),(113,0,'_site_transient_update_themes','O:8:\"stdClass\":3:{s:12:\"last_checked\";i:1309853382;s:7:\"checked\";a:3:{s:8:\"freiland\";s:3:\"0.1\";s:12:\"twentyeleven\";s:3:\"1.1\";s:9:\"twentyten\";s:3:\"1.2\";}s:8:\"response\";a:0:{}}','yes'),(267,0,'current_theme','Freiland','yes'),(895,0,'_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c','1309896587','no'),(896,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:47:\"Weblog Tools Collection: WordPress 3.2 Released\";s: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=10209\";s: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/xfAxFKaf11Y/\";s: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:1156:\"<p><a href=\"http://wordpress.org/\">WordPress</a> 3.2 <a href=\"http://wordpress.org/news/2011/07/gershwin/\">has been released</a>! WordPress is now faster and lighter, with a new Dashboard, new default theme, distraction free writing, admin bar enhancements, and <a href=\"http://codex.wordpress.org/Version_3.2\">much more</a>.</p>\n<p>WordPress now requires a minimum of PHP 5.2.4 and MySQL 5.0, so <a href=\"http://wordpress.org/news/2011/07/are-you-ready-for-wordpress-3-2/\">make sure that you’re ready</a> before upgrading. Support for the long-outdated Internet Explorer 6 has been dropped too, but <a href=\"http://weblogtoolscollection.com/archives/2011/03/23/do-you-still-use-internet-explorer-6/\">there are many alternatives</a>.</p>\n<p>To avoid any potential issues, make sure that you temporarily deactivate all of your plugins before upgrading, and refer to the <a href=\"http://wordpress.org/support/topic/troubleshooting-wordpress-32-master-list\">WordPress 3.2 Troubleshooting Master List</a> if you run into any problems.</p>\n<p></p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/xfAxFKaf11Y\" height=\"1\" width=\"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:\"Tue, 05 Jul 2011 00:46: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:10:\"James Huff\";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:28:\"BuddyPress: BuddyPress 1.2.9\";s: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:29:\"http://buddypress.org/?p=1453\";s: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://buddypress.org/2011/07/buddypress-1-2-9/\";s: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:1175:\"<p>Available immediately is <a href=\"http://wordpress.org/extend/plugins/buddypress/\">BuddyPress 1.2.9.</a> This is a bug-fix release of the 1.2 branch to ensure full compatibility with WordPress 3.2. (Note: This does not use the new bbPress 2.0! We’re working on it!)</p>\n<p>BuddyPress 1.2.9 includes fixes related to the new version of jQuery (1.6.1) that comes packaged with with WordPress 3.2. These changes affect the javascript and ajax behaviors in the bp-default theme. You can read more about them on the <a href=\"http://wpdevel.wordpress.com/2011/05/25/jquery-updates-in-wordpress-3-2/\">WordPress development blog</a>. If your BuddyPress site runs bp-default (or a child theme of it) you’ll need to update to BuddyPress 1.2.9 immediately after updating to WordPress 3.2.</p>\n<p>Questions? Let us know in the comments or in the <a href=\"http://buddypress.org/support\">support forums</a>, and stay on the lookout for an early preview of BuddyPress 1.3 sometime in July!</p>\n<p>Download BuddyPress 1.2.9 from <a href=\"http://wordpress.org/extend/plugins/buddypress/\">WordPress Extend</a> or <a href=\"http://buddypress.org/download/\">BuddyPress.org.</a></p>\";s: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, 04 Jul 2011 21:46: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:17:\"John James Jacoby\";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:37:\"Dev Blog: WordPress 3.2 now available\";s: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=1924\";s: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://wordpress.org/news/2011/07/gershwin/\";s: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:13941:\"<p>Here in the U.S. we are observing Independence Day, and I can’t think of a more fitting way to mark a day that celebrates freedom than by releasing more free software to help democratize publishing around the globe. I’m excited to announce that WordPress 3.2 is now available to the world, both as an update in your dashboard and a <a href=\"http://wordpress.org/\">download on WordPress.org</a>. Version 3.2 is our fifteenth major release of WordPress and comes just four months after 3.1 (which coincidentally just passed the 15 million download mark this morning), reflecting the growing speed of development in the WordPress community and our dedication to getting improvements in your hands as soon as possible. We’re dedicating this release to noted composer and pianist <a href=\"http://en.wikipedia.org/wiki/George_Gershwin\">George Gershwin</a>.</p>\n<p><em>Before we get to the release, in anticipation of the State of the Word speech at the upcoming <a href=\"http://2011.sf.wordcamp.org/\">WordCamp San Francisco</a> (the annual WordPress conference) we’re doing a survey or census of the WordPress world. If you have a moment, <a href=\"http://wpsurvey.polldaddy.com/s/wp-2011\">please fill out this survey</a> and we’ll share what <em>we learn by </em>publishing the aggregate results in August.</em></p>\n<p>The focus for this release was <strong>making WordPress faster and lighter</strong>. The first thing you’ll notice when you log in to 3.2 is a <strong>refreshed dashboard design</strong> that tightens the typography, design, and code behind the admin. (Rhapsody in Grey?) If you’re starting a new blog, you’ll also appreciate the fully HTML5 <strong>new Twenty Eleven theme</strong>, fulfilling our plan to replace the default theme every year. Start writing your first post in our redesigned post editor and venture to the full-screen button in the editing toolbar to enter the new <strong>distraction-free writing or zen mode</strong>, my personal favorite feature of the release. All of the widgets, menus, buttons, and interface elements fade away to allow you to compose and edit your thoughts in a completely clean environment conducive to writing, but when your mouse strays to the top of the screen your most-used shortcuts are right there where you need them. (I like to press F11 to take my browser full-screen, getting rid of even the OS chrome.)</p>\n<p></p>\n<p>Under the hood there have been a number of improvements, not the least of which is the <strong>streamlining</strong> enabled by our <a href=\"http://wordpress.org/news/2010/07/eol-for-php4-and-mysql4/\">previously announced plan</a> of retiring support for PHP4, older versions of MySQL, and legacy browsers like IE6, which allows us to take advantage of more features enabled by new technologies. The <strong>admin bar</strong> has a few more shortcuts to your most commonly-used actions. On the comment moderation screen, the new <strong>approve & reply</strong> feature speeds up your conversation management. You’ll notice in your first update after 3.2 that we’ll only be updating the files that have changed with each new release instead of every file in your WordPress installation, which makes <strong>updates significantly faster on all hosting platforms</strong>. There are also some fun new theme features shown off by Twenty Eleven, like the ability to have multiple <strong>rotating header images</strong> to highlight all of your favorite photos.</p>\n<p>There is way more, like our new freedoms and credits screens (linked from your dashboard footer), so for the full story check out the <a href=\"http://codex.wordpress.org/Version_3.2\">Codex page on 3.2</a> or the <a href=\"http://core.trac.wordpress.org/milestone/3.2\">Trac milestone which includes the 400+ tickets closed in this release</a>.</p>\n<h3>A Community Effort</h3>\n<p>We now finally have a credits page inside of WordPress itself (though a cool revision is coming in 3.3), but for posterity let’s give a round of applause to these fine folks who contributed to 3.2:</p>\n<p><a href=\"http://profiles.wordpress.org/users/technosailor\">Aaron Brazell</a>, <a href=\"http://profiles.wordpress.org/users/aaroncampbell\">Aaron Campbell</a>, <a href=\"http://profiles.wordpress.org/users/jorbin\">Aaron Jorbin</a>, <a href=\"http://profiles.wordpress.org/users/kawauso\">Adam Harley</a>, <a href=\"http://profiles.wordpress.org/users/xknown\">Alex Concha</a>, <a href=\"http://profiles.wordpress.org/users/ampt\">ampt</a>, <a href=\"http://profiles.wordpress.org/users/nacin\">Andrew Nacin</a>, <a href=\"http://profiles.wordpress.org/users/azaozz\">Andrew Ozz</a>, <a href=\"http://profiles.wordpress.org/users/andrewryno\">andrewryno</a>, <a href=\"http://profiles.wordpress.org/users/andy\">andy</a>, <a href=\"http://profiles.wordpress.org/users/filosofo\">Austin Matzko</a>, <a href=\"http://profiles.wordpress.org/users/benchapman\">BenChapman</a>, <a href=\"http://profiles.wordpress.org/users/empireoflight\">Ben Dunkle</a>, <a href=\"http://profiles.wordpress.org/users/bluntelk\">bluntelk</a>, <a href=\"http://profiles.wordpress.org/users/boonebgorges\">Boone Gorges</a>, <a href=\"http://profiles.wordpress.org/users/cnorris23\">Brandon Allen</a>, <a href=\"http://profiles.wordpress.org/users/brandonburke\">Brandon Burke</a>, <a href=\"http://profiles.wordpress.org/users/caspie\">Caspie</a>, <a href=\"http://profiles.wordpress.org/users/cfinke\">cfinke</a>, <a href=\"http://profiles.wordpress.org/users/charlesclarkson\">charlesclarkson</a>, <a href=\"http://profiles.wordpress.org/users/chexee\">chexee</a>, <a href=\"http://profiles.wordpress.org/users/coffee2code\">coffee2code</a>, <a href=\"http://profiles.wordpress.org/users/scribu\">Cristi Burcă</a>, <a href=\"http://profiles.wordpress.org/users/daniloercoli\">daniloercoli</a>, <a href=\"http://profiles.wordpress.org/users/koopersmith\">Daryl Koopersmith</a>, <a href=\"http://profiles.wordpress.org/users/dcowgill\">David Cowgill</a>, <a href=\"http://profiles.wordpress.org/users/jdtrower\">David Trower</a>, <a href=\"http://profiles.wordpress.org/users/demetris\">demetris</a>, <a href=\"http://profiles.wordpress.org/users/devinreams\">Devin Reams</a>, <a href=\"http://profiles.wordpress.org/users/dd32\">Dion Hulse</a>, <a href=\"http://profiles.wordpress.org/users/dllh\">dllh</a>, <a href=\"http://profiles.wordpress.org/users/ocean90\">Dominik Schilling</a>, <a href=\"http://profiles.wordpress.org/users/dougwrites\">Doug Provencio</a>, <a href=\"http://profiles.wordpress.org/users/dvwallin\">dvwallin</a>, <a href=\"http://profiles.wordpress.org/users/cyberhobo\">Dylan Kuhn</a>, <a href=\"http://profiles.wordpress.org/users/ericmann\">Eric Mann</a>, <a href=\"http://profiles.wordpress.org/users/fabifott\">fabifott</a>, <a href=\"http://profiles.wordpress.org/users/peaceablewhale\">Franklin Tse</a>, <a href=\"http://profiles.wordpress.org/users/frumph\">Frumph</a>, <a href=\"http://profiles.wordpress.org/users/garyc40\">garyc40</a>, <a href=\"http://profiles.wordpress.org/users/blepoxp\">Glenn Ansley</a>, <a href=\"http://profiles.wordpress.org/users/guyn\">guyn</a>, <a href=\"http://profiles.wordpress.org/users/hakre\">hakre</a>, <a href=\"http://profiles.wordpress.org/users/hebbet\">hebbet</a>, <a href=\"http://profiles.wordpress.org/users/helenyhou\">Helen Hou-Sandi</a>, <a href=\"http://profiles.wordpress.org/users/hew\">hew</a>, <a href=\"http://profiles.wordpress.org/users/holizz\">holizz</a>, <a href=\"http://profiles.wordpress.org/users/iandstewart\">Ian Stewart</a>, <a href=\"http://profiles.wordpress.org/users/jacobwg\">Jacob Gillespie</a>, <a href=\"http://profiles.wordpress.org/users/jane\">Jane Wells</a>, <a href=\"http://profiles.wordpress.org/users/jayjdk\">Jayjdk</a>, <a href=\"http://profiles.wordpress.org/users/jfarthing84\">Jeff Farthing</a>, <a href=\"http://profiles.wordpress.org/users/jkudish\">Joachim Kudish</a>, <a href=\"http://profiles.wordpress.org/users/joelhardi\">joelhardi</a>, <a href=\"http://profiles.wordpress.org/users/johnbillion\">John Blackbourn</a>, <a href=\"http://profiles.wordpress.org/users/aldenta\">John Ford</a>, <a href=\"http://profiles.wordpress.org/users/johnjamesjacoby\">John James Jacoby</a>, <a href=\"http://profiles.wordpress.org/users/johnonolan\">JohnONolan</a>, <a href=\"http://profiles.wordpress.org/users/duck_\">Jon Cave</a>, <a href=\"http://profiles.wordpress.org/users/joostdevalk\">joostdevalk</a>, <a href=\"http://profiles.wordpress.org/users/koke\">Jorge Bernal</a>, <a href=\"http://profiles.wordpress.org/users/josephscott\">Joseph Scott</a>, <a href=\"http://profiles.wordpress.org/users/jtsternberg\">Justin Sternberg</a>, <a href=\"http://profiles.wordpress.org/users/greenshady\">Justin Tadlock</a>, <a href=\"http://profiles.wordpress.org/users/kevinb\">kevinB</a>, <a href=\"http://profiles.wordpress.org/users/knutsp\">Knut Sparhell</a>, <a href=\"http://profiles.wordpress.org/users/kovshenin\">kovshenin</a>, <a href=\"http://profiles.wordpress.org/users/tenpura\">Kuraishi</a>, <a href=\"http://profiles.wordpress.org/users/lancewillett\">Lance Willett</a>, <a href=\"http://profiles.wordpress.org/users/linuxologos\">linuxologos</a>, <a href=\"http://profiles.wordpress.org/users/lloydbudd\">lloydbudd</a>, <a href=\"http://profiles.wordpress.org/users/ldebrouwer\">Luc De Brouwer</a>, <a href=\"http://profiles.wordpress.org/users/marcis20\">marcis20</a>, <a href=\"http://profiles.wordpress.org/users/markjaquith\">Mark Jaquith</a>, <a href=\"http://profiles.wordpress.org/users/markmcwilliams\">Mark McWilliams</a>, <a href=\"http://profiles.wordpress.org/users/tfnab\">Martin Lormes</a>, <a href=\"http://profiles.wordpress.org/users/matveb\">Matías Ventura</a>, <a href=\"http://profiles.wordpress.org/users/sivel\">Matt Martz</a>, <a href=\"http://profiles.wordpress.org/users/iammattthomas\">Matt Thomas</a>, <a href=\"http://profiles.wordpress.org/users/mattyrob\">MattyRob</a>, <a href=\"http://profiles.wordpress.org/users/mcepl\">mcepl</a>, <a href=\"http://profiles.wordpress.org/users/mdawaffe\">mdawaffe</a>, <a href=\"http://profiles.wordpress.org/users/mfields\">Michael Fields</a>, <a href=\"http://profiles.wordpress.org/users/michaelh\">MichaelH</a>, <a href=\"http://profiles.wordpress.org/users/michaeltyson\">michaeltyson</a>, <a href=\"http://profiles.wordpress.org/users/dh-shredder\">Mike Schroder</a>, <a href=\"http://profiles.wordpress.org/users/dimadin/\">Milan Dinić</a>, <a href=\"http://profiles.wordpress.org/users/mintindeed\">mintindeed</a>, <a href=\"http://profiles.wordpress.org/users/mitchoyoshitaka\">mitchoyoshitaka</a>, <a href=\"http://profiles.wordpress.org/users/batmoo\">Mohammad Jangda</a>, <a href=\"http://profiles.wordpress.org/users/mrroundhill\">mrroundhill</a>, <a href=\"http://profiles.wordpress.org/users/natecook\">natecook</a>, <a href=\"http://profiles.wordpress.org/users/nathanrice\">nathanrice</a>, <a href=\"http://profiles.wordpress.org/users/niallkennedy\">Niall Kennedy</a>, <a href=\"http://profiles.wordpress.org/users/nickbohle\">Nick Bohle</a>, <a href=\"http://profiles.wordpress.org/users/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"http://profiles.wordpress.org/users/nuxwin\">nuxwin</a>, <a href=\"http://profiles.wordpress.org/users/otto42\">Otto</a>, <a href=\"http://profiles.wordpress.org/users/pavelevap\">pavelevap</a>, <a href=\"http://profiles.wordpress.org/users/petemall\">pete.mall</a>, <a href=\"http://profiles.wordpress.org/users/westi\">Peter Westwood</a>, <a href=\"http://profiles.wordpress.org/users/nprasath002\">Prasath Nadarajah</a>, <a href=\"http://profiles.wordpress.org/users/ptahdunbar\">Ptah Dunbar</a>, <a href=\"http://profiles.wordpress.org/users/bi0xid\">Rafael Poveda</a>, <a href=\"http://profiles.wordpress.org/users/rahe\">Rahe</a>, <a href=\"http://profiles.wordpress.org/users/ramiy\">Ramiy</a>, <a href=\"http://profiles.wordpress.org/users/rasheed\">Rasheed Bydousi</a>, <a href=\"http://profiles.wordpress.org/users/greuben\">Reuben Gunday</a>, <a href=\"http://profiles.wordpress.org/users/miqrogroove\">Robert Chapin</a>, <a href=\"http://profiles.wordpress.org/users/wpmuguru\">Ron Rennick</a>, <a href=\"http://profiles.wordpress.org/users/rosshanney\">Ross Hanney</a>, <a href=\"http://profiles.wordpress.org/users/ryan\">Ryan Boren</a>, <a href=\"http://profiles.wordpress.org/users/ryanimel\">Ryan Imel</a>, <a href=\"http://profiles.wordpress.org/users/zeo\">Safirul Alredha</a>, <a href=\"http://profiles.wordpress.org/users/solarissmoke\">Samir Shah</a>, <a href=\"http://profiles.wordpress.org/users/saracannon\">saracannon</a>, <a href=\"http://profiles.wordpress.org/users/sbressler\">sbressler</a>, <a href=\"http://profiles.wordpress.org/users/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"http://profiles.wordpress.org/users/shakenstirred\">shakenstirred</a>, <a href=\"http://profiles.wordpress.org/users/sidharrell\">Sidney Harrell</a>, <a href=\"http://profiles.wordpress.org/users/pross\">Simon Prosser</a>, <a href=\"http://profiles.wordpress.org/users/sorich87\">sorich87</a>, <a href=\"http://profiles.wordpress.org/users/szadok\">szadok</a>, <a href=\"http://profiles.wordpress.org/users/tetele\">tetele</a>, <a href=\"http://profiles.wordpress.org/users/tigertech\">tigertech</a>, <a href=\"http://profiles.wordpress.org/users/trepmal\">trepmal</a>, <a href=\"http://profiles.wordpress.org/users/utkarsh\">Utkarsh Kukreti</a>, <a href=\"http://profiles.wordpress.org/users/valentinas\">valentinas</a>, <a href=\"http://profiles.wordpress.org/users/webduo\">webduo</a>, <a href=\"http://profiles.wordpress.org/users/xibe\">Xavier Borderie</a>, <a href=\"http://profiles.wordpress.org/users/yoavf\">Yoav Farhi</a>, <a href=\"http://profiles.wordpress.org/users/vanillalounge\">Ze Fontainhas</a>, and <a href=\"http://profiles.wordpress.org/users/ziofix\">ziofix</a>.</p>\n<p><strong>Bonus:</strong> On their WordPress.org profiles over 20,000 people have said they make their living from WordPress. Are you one of them? <a href=\"http://wpsurvey.polldaddy.com/s/wp-2011\">Don’t forget to take a minute for our survey</a>.</p>\";s: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, 04 Jul 2011 21:07: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: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: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:54:\"WordPress.tv: Introducing WordPress 3.2 “Gershwin”\";s: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=6472\";s: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.tv/2011/07/04/introducing-wordpress-3-2-gershwin/\";s: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:1801:\"<div id=\"v-ac07H291\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6472/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6472/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6472/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6472/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6472/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6472/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6472/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6472/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6472/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6472/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6472/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6472/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6472/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6472/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6472&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2011/07/04/introducing-wordpress-3-2-gershwin/\"><img alt=\"Introducing WordPress 3.2 “Gershwin”\" src=\"http://videos.videopress.com/ac07H291/3-2-release_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 04 Jul 2011 21:06: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Michael Pick\";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:57:\"Weblog Tools Collection: WordPress Theme Releases for 7/4\";s: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=10204\";s: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/6mWZ7uy6w7Q/\";s: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:1201:\"<p><img class=\"alignnone size-full wp-image-10205\" title=\"blueandgrey\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/07/blueandgrey.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/blue-and-grey\"><strong>Blue and Grey</strong></a> is a modern theme with a decent design. Main colors used in the theme are blue and grey.</p>\n<p><img class=\"alignnone size-full wp-image-10206\" title=\"commune\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/07/commune.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/commune\"><strong>Commune</strong></a> is a minimalist WordPress theme. The theme is also compatible with WP-PageNavi for a nice pagination.</p>\n<p><img class=\"alignnone size-full wp-image-10207\" title=\"greenleaf\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/07/greenleaf.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/greenleaf\"><strong>GreenLeaf</strong></a> is a green-based two-column theme with a right sidebar.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/6mWZ7uy6w7Q\" height=\"1\" width=\"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:\"Mon, 04 Jul 2011 13:00: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Huff\";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:42:\"Dev Blog: Are You Ready for WordPress 3.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=1952\";s: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/news/2011/07/are-you-ready-for-wordpress-3-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:4341:\"<p>WordPress 3.2 is going to be released very soon, and we want you to be ready! Take note: <strong>the minimum requirements are changing</strong>.</p>\n<h3>PHP and MySQL</h3>\n<p>As of 3.2, you’ll need to be running PHP 5.2.4 and MySQL 5.0. <a title=\"EOL Announcement for PHP4 and MySQL4\" href=\"http://wordpress.org/news/2010/07/eol-for-php4-and-mysql4/\">As we mentioned almost a year ago when we announced that this change was coming</a>, the percentage of people running older versions of PHP and MySQL is relatively low. With more than 45 million people using WordPress, though, even a small percentage can mean a lot of people! Don’t caught with your <del>pants</del> dashboard down — make sure you’re running compatible versions of PHP and MySQL before you update <del>tomorrow</del> when WordPress 3.2 is released.</p>\n<p>Log in to your hosting account, and check to make sure you have at least PHP 5.2.4 and MySQL 5.0. Most of the major hosts already default to these or newer versions, but there are some exceptions. Check to see which versions you are running, and if you’re still on an older version, it should be as simple as changing a dropdown menu and clicking Save to get up to date.</p>\n<p>If you don’t know how to find this information in your hosting account or you don’t even know how to access your hosting control panel because someone else manages that for you, don’t fret. You can <a href=\"http://wordpress.org/extend/plugins/health-check/\">find out if you’re ready for 3.2 with the Health Check plugin</a>. In your dashboard, go to Plugins → Add New and search for “health check” (it should be the first result). Install it, activate it, and it will tell you if you need to update anything.</p>\n<p>If you need more help, contact your host’s customer service and use this email template to ask them to help you.</p>\n<blockquote><p>Hi there. I host my domain [example.com] with you, and I run WordPress on my site. The minimum requirements are changing to PHP 5.2.4 and MySQL 5.0, and I would appreciate your help in confirming that my site’s setup meets these requirements. If I’m currently running an older version of PHP or MySQL, could you update it for me, or tell me how to do it? Thanks so much!</p></blockquote>\n<p>If your host replies that they can’t update to these versions, it might be time to <a href=\"http://wordpress.org/hosting/\">look for a new host</a>.</p>\n<h3>IE6 and Outdated Browsers</h3>\n<p>With 3.2, we’re also dropping support for Internet Explorer 6, a 10-years-old outdated browser that even <a href=\"http://www.ie6countdown.com/\">Microsoft is ready to leave behind</a>. From now on, if you access your WordPress dashboard from an outdated browser, we’ll let you know. Why? Because as web technology improves, so does WordPress, as we build features to take advantage of these improvements. If you’re using an out-of-date browser, chances are you’re missing out.</p>\n<p>If your browser is out of date, you’ll see a friendly orangey-yellow box in your dashboard letting you know you a newer version is available (which you can dismiss, of course). If you’re using IE6, though, the box will be red, and your dashboard will not function properly. If you’re stuck on IE6 because the computer you use is maintained by a business, library, school, or the like, and you are not able to download a newer browser, here’s a sample email you can use to ask your boss/administrator/IT guys to update the browser.</p>\n<blockquote><p>Hi there. The computer I use at [where you use the computer] is equipped with an out-of-date web browser. Internet Explorer 6 was created 10 years ago, before modern web standards, and does not support modern web applications. More and more sites and applications are dropping support for IE6, including the new version of WordPress. Even Microsoft, the makers of IE6, are counting down until IE6 goes the way of the dinosaur (see http://www.ie6countdown.com/ for more information). Can you please install an updated version of IE or any modern browser (see http://browsehappy.com for more information) on the available computers? Thank you very much.</p></blockquote>\n<p>Welcome to the future!</p>\n<p> </p>\n<p> </p>\";s: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, 03 Jul 2011 23:32: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: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: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:58:\"Weblog Tools Collection: WordPress Plugin Releases for 7/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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10201\";s: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/wcgcl6RyBdw/\";s: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:1321:\"<h3>New plugins</h3>\n<p><a href=\"http://www.jacobfresco.nl/programmeren/wordpress/before-and-after/\"><strong>Before And After</strong></a> allows scheduling of text within posts and pages.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/java-applet-embed/\"><strong>Java Applet Embed</strong></a> allows you to insert Java applets into your WordPress blog.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://www.ahsan.pk/2011/05/wp-plugin-adsense-float/\"><strong>Adsense Float</strong></a> shows Google AdSense ads at a prominent position on your site, which maximizes the CTR and revenue of your site.</p>\n<p><a href=\"http://ocaoimh.ie/exploit-scanner/\"><strong>Exploit Scanner</strong></a> searches the files on your website, and the posts and comments tables of your database for anything suspicious. It also examines your list of active plugins for unusual filenames.</p>\n<p><a href=\"http://www.fastsecurecontactform.com/\"><strong>Fast Secure Contact Form</strong></a> lets your visitors send you a quick e-mail message and blocks all common spammer tactics. Additionally, the plugin has a multi-form feature, optional extra fields, and an option to redirect visitors to any URL after the message is sent.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/wcgcl6RyBdw\" height=\"1\" width=\"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:\"Sat, 02 Jul 2011 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:10:\"James Huff\";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:58:\"Weblog Tools Collection: WordPress Theme Releases for 6/30\";s: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=10195\";s: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/aT0A1cwTtJg/\";s: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:1258:\"<p><img class=\"alignnone size-full wp-image-10196\" title=\"ambrosia\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/ambrosia.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/ambrosia\"><strong>Ambrosia</strong></a> is a modern, minimalistic, accessible, super clean, WordPress theme built with the latest W3C standards (HTML5 and CSS3).</p>\n<p><img class=\"alignnone size-full wp-image-10197\" title=\"industrial\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/industrial.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://emptynestthemes.emptynestheritage.com/?p=1609\"><strong>Industrial</strong></a> would suit a mechanical, industrial and/or engineering blog.</p>\n<p><img class=\"alignnone size-full wp-image-10198\" title=\"starter\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/starter.jpg\" alt=\"\" width=\"150\" height=\"97\" /></p>\n<p><a href=\"http://tentblogger.com/starter-wordpress-theme/\"><strong>Starter</strong></a> is a perfect super-crisp and clean look (black and white) to start a new blog or get back to the heart of great blogging.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/aT0A1cwTtJg\" height=\"1\" width=\"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:\"Thu, 30 Jun 2011 13:00: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:10:\"James Huff\";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:61:\"Weblog Tools Collection: WordPress 3.1.4 and 3.2 RC3 Released\";s: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=10191\";s: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/HgJl5vaUCt4/\";s: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:995:\"<p><a href=\"http://wordpress.org/\">WordPress</a> 3.1.4 and 3.2 RC3 <a href=\"http://wordpress.org/news/2011/06/wordpress-3-1-4/\">have been released</a>. WordPress 3.1.4 is primarily a security release which addresses one particular issue and “also incorporates several other security fixes and hardening measures.”</p>\n<p>WordPress 3.2 RC3 is described as “about all that stood in the way of a final release of WordPress 3.2.” It contains a few minor fixes and the same security improvements from 3.1.4.</p>\n<p>If you’re still on the 3.1 branch, update now to secure your blog. If you’re curious about 3.2, or you’re a theme or plugin developer, grab <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">the Beta Tester plugin</a> now to try it out.</p>\n<p>WordPress 3.2 is almost here! Can you feel the excitement in the air?</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/HgJl5vaUCt4\" height=\"1\" width=\"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, 29 Jun 2011 20:16: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:10:\"James Huff\";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:55:\"Dev Blog: WordPress 3.1.4 (and 3.2 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=1927\";s: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/2011/06/wordpress-3-1-4/\";s: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:2003:\"<p>WordPress 3.1.4 is available now and is a maintenance and security update for all previous versions.</p>\n<p>This release fixes an issue that could allow a malicious Editor-level user to gain further access to the site. Thanks K. Gudinavicius of <a href=\"http://www.sec-consult.com/\">SEC Consult</a> for bringing this to our attention. Version 3.1.4 also incorporates several other security fixes and hardening measures thanks to the work of WordPress developers <a href=\"http://www.buayacorp.com/\">Alexander Concha</a> and <a href=\"http://joncave.co.uk/\">Jon Cave</a> of our security team. Consult the <a href=\"http://core.trac.wordpress.org/log/branches/3.1/?action=stop_on_copy&mode=stop_on_copy&rev=18377&stop_rev=18043\">change log</a> for more details.</p>\n<p><strong><a href=\"http://wordpress.org/download/\"><strong>Download WordPress 3.1.4</strong></a> or update immediately from the Dashboard → Updates menu in your site’s admin area.</strong></p>\n<h3>WordPress 3.2 Release Candidate 3</h3>\n<p>This release was about all that stood in the way of a final release of WordPress 3.2. So we’re also announcing the third release candidate for 3.2, which contains all of the fixes in 3.1.4; few minor RTL, JavaScript, and user interface fixes; and ensures graceful failures if 3.2 is run on PHP4. As a reminder, we’ve bumped our minimum requirements for version 3.2 to PHP 5.2.4 and MySQL 5.0.</p>\n<p>To test WordPress 3.2, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester plugin</a> (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.2-RC3.zip\">download the release candidate here</a> (zip). At this stage, plugin authors should be doing final tests to ensure compatibility.</p>\n<p><em>Bonus: For more on what to test and what to do if you find an issue, please read <a href=\"http://wordpress.org/news/2011/05/wordpress-3-2-beta-1/\">our Beta 1 post</a>.</em></p>\";s: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, 29 Jun 2011 19:00: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: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:\"\";}}}}}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:43:\"Joseph: pressfs – Read Only Media Support\";s: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:30:\"http://josephscott.org/?p=4353\";s: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://josephscott.org/archives/2011/06/pressfs-read-only-media-support/\";s: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:1335:\"<p>Last night I tagged version 0.3.0 of <a href=\"https://github.com/josephscott/pressfs\">pressfs</a>, which includes read only support for media files managed by WordPress. You access these files via the new top level directory: /media. Entries in /media look like:</p>\n<pre class=\"brush: plain; title: ; notranslate\">\n-r-------- 1 joseph root 47487 2010-08-03 20:52 boat.jpg\n</pre>\n<p>Copying media files is as easy as <code>cp /var/wp/media/boat.jpg /tmp/boat.jpg</code></p>\n<p>To support read only media files I added two new methods to the pressfs WordPress plugin: <code>get_media_list</code> and <code>get_media_file</code>. The new <code>get_media_file</code> method is a bit different in that it does not return JSON, instead it returns the raw data of the file.</p>\n<p>There are still some questions about the best way to structure this data for WordPress installs that have a large number of media files. For now I just wanted something functional that people could use.</p>\n<p>The source is at <a href=\"https://github.com/josephscott/pressfs\">https://github.com/josephscott/pressfs</a> or you can download <a href=\"https://github.com/josephscott/pressfs/zipball/0.3.0\">pressfs 0.3.0 as a zip file</a>. A <a href=\"https://github.com/josephscott/pressfs/tarball/0.3.0\">tar.gz of pressfs 0.3.0</a> is also available.</p>\";s: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, 29 Jun 2011 14:26:15 +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:\"Joseph 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:\"\";}}}}}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:50:\"WordPress.tv: Heather Gold – Tools For Tummeling\";s: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=6072\";s: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/2011/06/29/heather-gold-tools-for-tummeling/\";s: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:1798:\"<div id=\"v-KD3mdceG\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6072/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6072/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6072/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6072/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6072/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6072/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6072/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6072/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6072/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6072/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6072/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6072/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6072/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6072/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6072&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2011/06/29/heather-gold-tools-for-tummeling/\"><img alt=\"Heather Gold Tools For Tummeling\" src=\"http://videos.videopress.com/KD3mdceG/heather-gold-tools-for-tummeling_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 29 Jun 2011 13:17: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: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: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:43:\"WordPress.tv: Boone Gorges BuddyPress Pt. 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=6216\";s: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.tv/2011/06/29/boone-gorges-buddypress-pt-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:1785:\"<div id=\"v-rvmvX4vI\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6216/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6216/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6216/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6216/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6216/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6216/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6216/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6216/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6216/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6216/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6216/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6216/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6216/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6216/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6216&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2011/06/29/boone-gorges-buddypress-pt-2/\"><img alt=\"Boone Gorges: BuddyPress Pt. 2\" src=\"http://videos.videopress.com/rvmvX4vI/04_h264_1500k_2997p_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 29 Jun 2011 13:13: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: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:43:\"WordPress.tv: Boone Gorges BuddyPress Pt. 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=6212\";s: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.tv/2011/06/29/boone-gorges-buddypress-pt-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:1769:\"<div id=\"v-bUqEoF60\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6212/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6212/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6212/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6212/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6212/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6212/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6212/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6212/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6212/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6212/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6212/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6212/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6212/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6212/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6212&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2011/06/29/boone-gorges-buddypress-pt-1/\"><img alt=\"03_H264_1500K_2997p\" src=\"http://videos.videopress.com/bUqEoF60/03_h264_1500k_2997p1_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 29 Jun 2011 13:11: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: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: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:59:\"Weblog Tools Collection: WordPress Plugin Releases for 6/28\";s: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=10189\";s: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/-xmy0S6Y-A4/\";s: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:846:\"<h3>New plugins</h3>\n<p><a href=\"http://allcreatives.net/2011/06/25/wordpress-plugin-bulk-remove-comments/\"><strong>Bulk Remove Comments</strong></a> allows you to remove all pending comments from your database with one click.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/wp-notcaptcha/\"><strong>WP-NOTCAPTCHA</strong></a> adds CAPTCHA anti-spam methods to WordPress on the comment form, registration form, or both. In order to post comments, users will have to range icons in right (upright) place.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://tinsology.net/plugins/amazon-tools/\"><strong>Amazon Tools</strong></a> allows you to display Amazon product information on your blog and earn commission through Amazon Associates.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/-xmy0S6Y-A4\" height=\"1\" width=\"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:\"Tue, 28 Jun 2011 13: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:10:\"James Huff\";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:28:\"Matt: A WordPress Filesystem\";s: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=38332\";s: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:44:\"http://ma.tt/2011/06/a-wordpress-filesystem/\";s: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:156:\"<p>Joseph Scott has written <a href=\"http://josephscott.org/archives/2011/05/pressfs-a-wordpress-filesystem/\">pressfs, a WordPress filesystem</a>. Cool!</p>\";s: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, 27 Jun 2011 02:52: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: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: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:58:\"Weblog Tools Collection: WordPress Theme Releases for 6/26\";s: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=10182\";s: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/uYhx7NA4QO0/\";s: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:1618:\"<p><img class=\"alignnone size-full wp-image-10183\" title=\"rocketwood\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/rocketwood.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://www.wpcrown.com/project/rocket-wood/\"><strong>Rocket Wood</strong></a> is a WordPress theme for business, portfolio, or corporate built with latest WordPress 3.1 features.</p>\n<p><img class=\"alignnone size-full wp-image-10184\" title=\"simple\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/simple.jpg\" alt=\"\" width=\"150\" height=\"106\" /></p>\n<p><a href=\"http://tentblogger.com/simple-wordpress-theme/\"><strong>Simple</strong></a> is a flexible, minimal theme focused on great typography.</p>\n<p><img class=\"alignnone size-full wp-image-10185\" title=\"urbanclassic\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/urbanclassic.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://emptynestthemes.emptynestheritage.com/?p=1544\"><strong>Urban Classic</strong></a> is great for a city business or corporation. It uses rich colours, valid xhtml, and three columns.</p>\n<p><img class=\"alignnone size-full wp-image-10186\" title=\"zeesynergie\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/zeesynergie.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://themezee.com/zeesynergie/\"><strong>zeeSynergie</strong></a> is a two column WordPress theme in an elegant and sleek design that fits perfectly for a blog or small business website.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/uYhx7NA4QO0\" height=\"1\" width=\"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:\"Sun, 26 Jun 2011 13: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:10:\"James Huff\";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:39:\"Matt: Robustness Principle Reconsidered\";s: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=38330\";s: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://ma.tt/2011/06/robustness-principle-reconsidered/\";s: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:206:\"<p><a href=\"http://queue.acm.org/detail.cfm?id=1999945\">The Robustness Principle Reconsidered in the most recent ACM Queue</a>. <cite>Hat tip: <a href=\"http://diveintomark.org/\">Mark Pilgrim</a>.</cite></p>\";s: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, 25 Jun 2011 18:28: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:\"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: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:45:\"Matt: WP Blocked in Kazakhstan and Kyrgyzstan\";s: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=38328\";s: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://ma.tt/2011/06/wp-blocked-in-kazakhstan-and-kyrgyzstan/\";s: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:593:\"<p>Here’s an <a href=\"http://www.neweurasia.net/media-and-internet/update-on-wordpress-woes-in-kazakhstan-and-kyrgyzstan/\">update on WordPress woes in Kazakhstan and Kyrgyzstan</a>. As far as I know we’ve had no contact with KazakhTelecom. Typically this happens when they don’t like something a blog is saying, so they block or degrade service for everybody. The footer of the site links to Global Voices <a href=\"http://advocacy.globalvoicesonline.org/projects/guide/\">Anonymous Blogging with WordPress and Tor</a> guide, which is still excellent all these years later.</p>\";s: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, 25 Jun 2011 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: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: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:28:\"Matt: Local Development Tips\";s: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=38326\";s: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:44:\"http://ma.tt/2011/06/local-development-tips/\";s: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:154:\"<p>Mark Jaquith writes <a href=\"http://markjaquith.wordpress.com/2011/06/24/wordpress-local-dev-tips/\">WordPress local dev tips: DB & plugins</a>.</p>\";s: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, 25 Jun 2011 17:09: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: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: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:51:\"Weblog Tools Collection: WordPress 3.2 RC2 Released\";s: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=10178\";s: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/D7mZdCCaN7U/\";s: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:1091:\"<p><a href=\"http://wordpress.org/\">WordPress</a> 3.2 RC2 <a href=\"http://wordpress.org/news/2011/06/wordpress-3-2-release-candidate-2/\">has been released</a>. There have been a few changes made since <a href=\"http://weblogtoolscollection.com/archives/2011/06/15/wordpress-3-2-rc1-released/\">RC1</a>, including a few Twenty Eleven tweaks, a new option to randomize header images, and some RTL fixes.</p>\n<p>This may be the last release candidate before the final, so now’s the time for developers to test their themes and plugins, if they have not done so already.</p>\n<p>If you find any bugs, please check <a href=\"http://core.trac.wordpress.org/report/5\">the known issues</a> first, then <a href=\"http://codex.wordpress.org/Reporting_Bugs\">file a bug report</a>. If you need any help, please feel free to contact <a href=\"http://wordpress.org/support/forum/alphabeta\">the WordPress.org Support Forums</a>.</p>\n<p>Have you tried WordPress 3.2 yet? What do you think so far?</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/D7mZdCCaN7U\" height=\"1\" width=\"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:\"Sat, 25 Jun 2011 13: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:10:\"James Huff\";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:22:\"Matt: MyISAM vs InnoDB\";s: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=38323\";s: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:38:\"http://ma.tt/2011/06/myisam-vs-innodb/\";s: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:212:\"<p>{EAV_BLOG_VER:c967aa2d93c7cb18} Mark Maunder writes <a href=\"http://markmaunder.com/2011/wordpress-myisam-vs-innodb-mysql/\">Can WordPress Developers survive without InnoDB? MyISAM vs InnoDB benchmarks</a>.</p>\";s: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, 25 Jun 2011 02:47: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: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: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:43:\"Dev Blog: WordPress 3.2 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=1915\";s: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/06/wordpress-3-2-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1875:\"<p>Howdy! The second release candidate for WordPress 3.2 is now available. If you haven’t tested WordPress 3.2 yet, now is the time — please though, not on your live site unless you’re extra adventurous.</p>\n<p>We’ve handled a number of issues since RC1, including additional Twenty Eleven tweaks, a new theme support option for defaulting to randomized headers, and various RTL fixes.</p>\n<p>Plugin and theme authors, <strong>please test your plugins and themes now</strong>, so that if there is a compatibility issue, we can figure it out before the final release. Users are also encouraged to test things out. If you find problems, let your plugin/theme authors know so they can figure out the cause. If you are testing the release candidate and think you’ve found a bug, there are a few ways to let us know:</p>\n<ul>\n<li>Post it to the <a href=\"http://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area in the support forums</a> or <a href=\"http://lists.automattic.com/mailman/listinfo/wp-testers\">wp-testers</a></li>\n<li>Join the development IRC channel and tell us live at irc.freenode.net #wordpress-dev</li>\n<li>File a bug ticket on the <a href=\"http://core.trac.wordpress.org/\">WordPress Trac</a></li>\n</ul>\n<p>To test WordPress 3.2, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester plugin</a> (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.2-RC2.zip\">download the release candidate here</a> (zip).</p>\n<p>If any known issues crop up, you’ll be able to <a href=\"http://core.trac.wordpress.org/report/5\">find them here</a>. If you’d like to know which levers to pull in your testing, <a href=\"http://wordpress.org/news/2011/05/wordpress-3-2-beta-1/\">check out a list of features</a> in our Beta 1 post.</p>\";s: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, 24 Jun 2011 23:15: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: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: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:\"Weblog Tools Collection: WordPress Plugin Releases for 6/24\";s: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=10176\";s: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/vxQ_-3Bj22o/\";s: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:1627:\"<h3>New plugins</h3>\n<p><a href=\"http://tentblogger.com/gravatar-reminder/\"><strong>Gravatar Reminder</strong></a> is a very simple plugin to remind people to get a <a href=\"http://gravatar.com/\">Gravatar</a>.</p>\n<p><a href=\"http://tinsology.net/plugins/wp-get/\"><strong>WP Get</strong></a> allows you to display content in posts dynamically, depending on URL parameters.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/addthis/\"><strong>AddThis</strong></a> allows any visitor to bookmark and share your site easily with many popular services.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/benchmark-email-lite/\"><strong>Benchmark Email Lite</strong></a> creates a newsletter signup form widget.</p>\n<p><a href=\"http://www.designchemical.com/blog/index.php/wordpress-plugins/wordpress-plugin-jquery-vertical-accordion-menu-widget/\"><strong>jQuery Vertical Accordion Menu</strong></a> creates vertical accordion menus from any WordPress custom menu.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/w3-total-cache/\"><strong>W3 Total Cache</strong></a> allows you to improve site performance and user experience via caching.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/wptouch/\"><strong>WPtouch</strong></a> automatically transforms your WordPress blog into an iPhone application-style theme, complete with ajax loading articles and effects, when viewed from an iPhone, iPod touch, Android, Opera Mini, Palm Pre, Samsung touch and BlackBerry Storm/Torch mobile devices.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/vxQ_-3Bj22o\" height=\"1\" width=\"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:\"Fri, 24 Jun 2011 13: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Huff\";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:52:\"Mark Jaquith: WordPress local dev tips: DB & 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:39:\"http://markjaquith.wordpress.com/?p=645\";s: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://markjaquith.wordpress.com/2011/06/24/wordpress-local-dev-tips/\";s: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:5542:\"<p>Running a WordPress site on your local machine is a great way to do development. I’ve taken advantage of this to do development while on flights (and yes, I realize that in about 5 years it’s going to seem positively <em>quaint</em> that there used to be flights without Internet access).</p>\n<p>Today, I’d like to tackle two common issues when running a WordPress site locally:</p>\n<ol>\n<li>Handling differing database connection details</li>\n<li>Handling plugins that can’t or shouldn’t run on a localhost</li>\n</ol>\n<p>My assumptions:</p>\n<ul>\n<li>You have your site in a Git repository</li>\n<li>You have a working LAMP/MAMP/WAMP/whatever setup.</li>\n<li>You already know how to do a mysqldump and import that dump to your local machine</li>\n</ul>\n<h3>Database connection details</h3>\n<p>Your database user and password are (or should) be different on your localhost than they are on your production environment. One way to handle this is to have <code>wp-config.php</code> not be in version control and have everyone make their own. Boo. Stop taking things out of version control. Another solution I’ve seen is that people modify the <code>wp-config.php</code> and just try to be really careful not to commit their local changes. Again, boo.</p>\n<p>Here’s how to do it. Open up your <code>wp-config.php</code> file.</p>\n<pre class=\"brush: php;\">\nif ( file_exists( dirname( __FILE__ ) . \'/local-config.php\' ) ) {\n include( dirname( __FILE__ ) . \'/local-config.php\' );\n define( \'WP_LOCAL_DEV\', true ); // We\'ll talk about this later\n} else {\n define( \'DB_NAME\', \'production_db\' );\n define( \'DB_USER\', \'production_user\' );\n define( \'DB_PASSWORD\', \'production_password\' );\n define( \'DB_HOST\', \'production_db_host\' );\n}\n</pre>\n<p>Ignore the <code>WP_LOCAL_DEV</code> define… I’ll explain that later.</p>\n<p>Now open up your <code>.gitignore</code> file.</p>\n<pre class=\"brush: plain;\">\n/dir-that-contains-wp-config/local-config.php\n</pre>\n<p>There. Now you can just create a <code>local-config.php</code> file and put your <code>DB_*</code> defines in there. And thanks to the <code>.gitignore</code> addition, you won’t have to worry about accidentally committing your local config.</p>\n<p>But what if you want to override other defines locally? Well, just modify them in <code>wp-config.php</code> like so:</p>\n<pre class=\"brush: php;\">\nif ( !defined( \'SCRIPT_DEBUG\' ) )\n define( \'SCRIPT_DEBUG\', false );\n</pre>\n<p>And make sure they’re after the <code>local-config.php</code> block. Now you can override these defines as well.</p>\n<h3>Plugins that are production-only</h3>\n<p>I’m a big fan of <a href=\"http://vaultpress.com/\">VaultPress</a> from Automattic. But this is not something you want to run on your localhost. Other backup plugins probably fall into this category of “production-only.”</p>\n<p>The bad way to do this is to remember to disable this plugin after you import a DB snapshot to your localhost. Boo. Remember <code>WP_LOCAL_DEV</code> that we set earlier? Let’s use it.</p>\n<p>I’ve written a quick “must-use” plugin to handle conditional plugin disabling. <a href=\"https://gist.github.com/1044546\">Get it here</a>, and put it in the <code>mu-plugins</code> directory (create it in your WP content directory if you don’t already have one).</p>\n<p>The part you modify is at the bottom:</p>\n<pre class=\"brush: php;\">\nnew CWS_Disable_Plugins_When_Local_Dev( array( \'vaultpress.php\' ) );\n</pre>\n<p>I’ve jump-started you by putting <code>vaultpress.php</code> in there. Add plugin filenames to that array as necessary. Don’t forget that most plugins are in a subdirectory, so they’ll be in the form <code>plugin-name/plugin-name.php</code>.</p>\n<p>Now those plugins won’t be active when doing local dev (based on the presence of <code>local-config.php</code>).</p>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/markjaquith.wordpress.com/645/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/markjaquith.wordpress.com/645/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/markjaquith.wordpress.com/645/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/markjaquith.wordpress.com/645/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/markjaquith.wordpress.com/645/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/markjaquith.wordpress.com/645/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/markjaquith.wordpress.com/645/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/markjaquith.wordpress.com/645/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/markjaquith.wordpress.com/645/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/markjaquith.wordpress.com/645/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/markjaquith.wordpress.com/645/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/markjaquith.wordpress.com/645/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/markjaquith.wordpress.com/645/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/markjaquith.wordpress.com/645/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=markjaquith.wordpress.com&blog=316&post=645&subd=markjaquith&ref=&feed=1\" width=\"1\" height=\"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:\"Fri, 24 Jun 2011 11:17:15 +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:\"Mark Jaquith\";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:54:\"Weblog Tools Collection: WordPress.org Passwords Reset\";s: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=10172\";s: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/ibwz2aG09YE/\";s: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:1461:\"<p>The <a href=\"http://wordpress.org/\">WordPress</a> team <a href=\"http://wordpress.org/news/2011/06/passwords-reset/\">noticed some suspicious changes</a> made to the <a href=\"http://wordpress.org/extend/plugins/addthis/\">AddThis</a>, <a href=\"http://wordpress.org/extend/plugins/wptouch/\">WPtouch</a>, and <a href=\"http://wordpress.org/extend/plugins/w3-total-cache/\">W3 Total Cache</a> plugins in <a href=\"http://wordpress.org/extend/plugins/\">the official plugin directory</a>. The three plugins have been updated to remove the suspicious code, and all account passwords on WordPress.org have been reset as a precautionary measure. If you have an account on WordPress.org, you’ll need to <a href=\"http://wordpress.org/support/bb-login.php\">reset your password</a>.</p>\n<p>To avoid future problems, or at the very least notice such activity sooner, the WordPress team <a href=\"http://wpdevel.wordpress.com/2011/06/22/plugin-committers-now-receive-svn-notify-emails-with/\">has enabled notification emails</a> for all plugin developers for whenever their plugin files are changed.</p>\n<p>If you have a WordPress.com account or a self-hosted WordPress blog, this reset did not affect your own user account, but you should probably immediately upgrade your copies of AddThis, WPtouch, and W3 Total Cache, if you’re using them of course.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/ibwz2aG09YE\" height=\"1\" width=\"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:\"Thu, 23 Jun 2011 13: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Huff\";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:99:\"WordPress.tv: Ariz Jacinto Strategies for Using and Integrating WordPress CMS to PHP MVC Frameworks\";s: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=6084\";s: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:117:\"http://wordpress.tv/2011/06/22/ariz-jacinto-strategies-for-using-and-integrating-wordpress-cms-to-php-mvc-frameworks/\";s: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:1839:\"<div id=\"v-urpXT8Ys\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6084/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6084/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6084/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6084/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6084/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6084/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6084/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6084/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6084/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6084/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6084/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6084/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6084/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6084/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6084&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2011/06/22/ariz-jacinto-strategies-for-using-and-integrating-wordpress-cms-to-php-mvc-frameworks/\"><img alt=\"Ariz Jacinto CMS Doctor\" src=\"http://videos.videopress.com/urpXT8Ys/ariz-jacinto-cms-doctor_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 22 Jun 2011 21:12: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: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:86:\"WordPress.tv: Bob Dunn How to Attract More Readers with a User-friendly 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=6088\";s: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:104:\"http://wordpress.tv/2011/06/22/bob-dunn-how-to-attract-more-readers-with-a-user-friendly-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1852:\"<div id=\"v-Vpv0hZlp\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6088/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6088/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6088/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6088/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6088/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6088/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6088/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6088/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6088/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6088/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6088/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6088/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6088/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6088/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6088&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2011/06/22/bob-dunn-how-to-attract-more-readers-with-a-user-friendly-wordpress-site/\"><img alt=\"Bob Dunn How To Attract More Readers\" src=\"http://videos.videopress.com/Vpv0hZlp/bob-dunn-how-to-attract-more-readers_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 22 Jun 2011 20:53: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: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:73:\"WordPress.tv: Bret Bernhoft Installing and Using Facebook Domain Insights\";s: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=6105\";s: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:91:\"http://wordpress.tv/2011/06/22/bret-bernhoft-installing-and-using-facebook-domain-insights/\";s: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:1885:\"<div id=\"v-Phr2O9wZ\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6105/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6105/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6105/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6105/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6105/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6105/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6105/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6105/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6105/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6105/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6105/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6105/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6105/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6105/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6105&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2011/06/22/bret-bernhoft-installing-and-using-facebook-domain-insights/\"><img alt=\"Bret Bernhoft Installing and Using Facebook Domain Insights\" src=\"http://videos.videopress.com/Phr2O9wZ/bret-bernhoft-installing-and-using-facebook-domain-insights_scruberthumbnail_2.jpg\" width=\"160\" height=\"120\" /></a></div>\";s: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, 22 Jun 2011 20:47:52 +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:18:\"Matt: ExpanDrive 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=38320\";s: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:34:\"http://ma.tt/2011/06/expandrive-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:401:\"<p>ExpanDrive, a program I’ve used for years, allows you to mount FTP, SFTP, or S3 accounts as local drives on your computer on Mac or Windows. <a href=\"http://blog.expandrive.com/2011/06/21/expandrive-2-for-windows-ftp-and-s3-blazing-fast-sftp/\">They just released their new Windows version</a>, and it’s fast and slick. They support key authentication, which is my must-have feature.</p>\";s: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, 22 Jun 2011 13:12: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: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: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:58:\"Weblog Tools Collection: WordPress Theme Releases for 6/22\";s: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=10165\";s: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/D9GIo78Jvh8/\";s: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:1257:\"<p><img class=\"alignnone size-full wp-image-10166\" title=\"brightnews\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/brightnews.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://emptynestthemes.emptynestheritage.com/?p=1502\"><strong>Bright News</strong></a> is a simple, bright, and colorful theme that’s great for blogs, news sites and/or newsletters.</p>\n<p><img class=\"alignnone size-full wp-image-10167\" title=\"minimalxpert\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/minimalxpert.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://www.wpexplorer.com/minimal-xpert.html\"><strong>Minimal Xpert</strong></a> is a very clean and professional theme that is perfect for both business and blogging use.</p>\n<p><img class=\"alignnone size-full wp-image-10168\" title=\"trending\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/trending.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/trending\"><strong>Trending</strong></a> is a theme for bloggers that uses multiple nav menus, several sidebars, and custom post layouts.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/D9GIo78Jvh8\" height=\"1\" width=\"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, 22 Jun 2011 13:00: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Huff\";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:25:\"Dev Blog: Passwords Reset\";s: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=1908\";s: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/2011/06/passwords-reset/\";s: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:1289:\"<p>Earlier today the WordPress team noticed suspicious commits to several popular plugins (AddThis, WPtouch, and W3 Total Cache) containing cleverly disguised backdoors. We determined the commits were not from the authors, rolled them back, pushed updates to the plugins, and shut down access to the plugin repository while we looked for anything else unsavory.</p>\n<p>We’re still investigating what happened, but as a prophylactic measure we’ve decided to force-reset all passwords on WordPress.org. To use the forums, trac, or commit to a plugin or theme, you’ll need to <a href=\"http://wordpress.org/support/bb-login.php\">reset your password to a new one</a>. (Same for bbPress.org and BuddyPress.org.)</p>\n<p>As a user, make sure to never use the same password for two different services, and we encourage you not to reset your password to be the same as your old one.</p>\n<p>Second, if you use <a href=\"http://wordpress.org/extend/plugins/addthis/\">AddThis</a>, <a href=\"http://wordpress.org/extend/plugins/wptouch/\">WPtouch</a>, or <a href=\"http://wordpress.org/extend/plugins/w3-total-cache/\">W3 Total Cache</a> and there’s a possibility you could have updated in the past day, make sure to visit your updates page and upgrade each to the latest version.</p>\";s: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, 21 Jun 2011 23:57: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: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: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:40:\"Matt: Pharrell Williams at Home in Miami\";s: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=38318\";s: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://ma.tt/2011/06/pharrell-williams-at-home-in-miami/\";s: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:210:\"<p>The Selby goes with <a href=\"http://theselby.com/5_25_10_PharrellWilliamsEd/\">Pharrell Williams at Home in Miami</a>. Explore the rest of the site, this is actually one of the less-interesting galleries.</p>\";s: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, 21 Jun 2011 23:47: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: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: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:24:\"Matt: Alec Baldwin on 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=38316\";s: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://ma.tt/2011/06/alec-baldwin-on-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:337:\"<p>Alec Baldwin, my favorite character on 30 Rock, <a href=\"http://www.alecbaldwin.com/\">has a great-looking WordPress-powered site</a>. It was also built by <a href=\"http://www.alleyinteractive.com/\">Alley Interactive</a> who did the Observer site I <a href=\"http://ma.tt/2011/06/new-york-observer/\">blogged about the other day</a>.</p>\";s: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, 21 Jun 2011 16:22: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: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:77:\"Weblog Tools Collection: What WordPress 3.2 items are you looking forward to?\";s: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=10162\";s: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/qqnOY-Fc3y0/\";s: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:1300:\"<p>With <a href=\"http://weblogtoolscollection.com/archives/2011/06/15/wordpress-3-2-rc1-released/\">the release of RC 1</a>, <a href=\"http://wordpress.org/\">WordPress</a> 3.2 is fast approaching completion. Besides <a href=\"http://wordpress.org/news/2011/05/wordpress-3-2-beta-1/\">some notable changes</a>, WordPress 3.2 has actually received a total of <a href=\"http://core.trac.wordpress.org/milestone/3.2\">over 370 changes</a> to date.</p>\n<p>Not only will this version of WordPress be dropping support for <a href=\"http://weblogtoolscollection.com/archives/2011/03/23/do-you-still-use-internet-explorer-6/\">Internet Explorer 6</a> and requiring a minimum of PHP 5.2.4 and MySQL 5, but it will be introducing <a href=\"http://weblogtoolscollection.com/archives/2011/05/04/distraction-free-writing-is-coming-to-wordpress/\">distraction free writing</a>, <a href=\"http://weblogtoolscollection.com/archives/2011/05/06/wordpress-3-2-new-dashboard-and-twenty-eleven/\">a new Dashboard</a>, <a href=\"http://weblogtoolscollection.com/archives/2011/06/07/new-wordpress-default-theme-unveiled/\">Twenty Eleven</a>, and an expanded Admin Bar.</p>\n<p>Which feature are you looking forward to the most?</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/qqnOY-Fc3y0\" height=\"1\" width=\"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:\"Tue, 21 Jun 2011 13: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:10:\"James Huff\";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:33:\"Matt: Gopher dead, blogging lives\";s: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=38314\";s: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://ma.tt/2011/06/gopher-dead-blogging-lives/\";s: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:178:\"<p><a href=\"http://inessential.com/2011/06/15/gopher_dead_blogging_lives\">Gopher dead, blogging lives</a>. “If blogs are dead, what are we reading in Instapaper?”</p>\";s: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, 20 Jun 2011 23:57:15 +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:29:\"Matt: Four Cool WP .gov 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:21:\"http://ma.tt/?p=38312\";s: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:44:\"http://ma.tt/2011/06/four-cool-wp-gov-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:1205:\"<p>I was in Washington DC last week at the <a href=\"http://opengovdc.com/\">OpenGovDC conference</a> where I participated on a panel about design. The organizers and many of the speakers were pretty Drupal-focused, but I did get to meet some folks and learn about the ever-growing use of WordPress inside the Beltway. Here are four:</p>\n<ol>\n<li><a href=\"http://www.consumerfinance.gov/\">CFPB, Consumer Financial Protection Bureau</a>. This is the best-looking of the four, and 100% WordPress.</li>\n<li><a href=\"http://www.mo.gov/\">MO.gov, Missouri State</a>. Is there a LESS.gov? <img src=\"http://s.ma.tt/blog/wp-includes/images/smilies/icon_wink.gif\" alt=\";)\" class=\"wp-smiley\" /> The show-me state has a solid WP-as-CMS going here.</li>\n<li><a href=\"http://www.compliance.gov/\">Office of Compliance</a>. As exciting as it sounds.</li>\n<li><a href=\"http://www.nccs.gov/\">NCCS.gov, National Center for Computational Sciences</a>. Website is okay, but center is super-cool: they provide super-computing (tens of thousands of processors) for open scientific research.</li>\n</ol>\n<p>Any other favorites? Particularly well-designed ones like <a href=\"http://consumerfinance.gov/\">consumerfinance.gov</a>.</p>\";s: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, 20 Jun 2011 19:03: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: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: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:76:\"Publisher Blog: Bangor Daily News: A complete publishing system on 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:43:\"http://publisherblog.automattic.com/?p=1575\";s: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:107:\"http://publisherblog.automattic.com/2011/06/20/bangor-daily-news-a-complete-publishing-system-on-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:8778:\"<p>Check out the inspiring and detailed story about <a href=\"http://www.mediabistro.com/10000words/how-to-run-a-news-site-and-newspaper-using-wordpress-and-google-docs_b4781\">Bangor Daily News switching to a publishing system powered by WordPress and Google Docs</a>, on Media Bistro. There’s also a screencast which <a href=\"http://www.screenr.com/8J8s\">outlines their new editorial workflow</a> and a list of all the plugins you can install to run your own news site with WordPress (emphasis ours):</p>\n<blockquote><p>The Bangor Daily News announced this week that it completed its full transition to open source blogging software, WordPress. And get this: The workflow integrates seamlessly with InDesign, meaning the paper now has one content management system for both its web and print operations. And if you’re auspicious enough, you can do it too — he’s <strong>open-sourced all the code</strong>!</p>\n<p>Rather than having to pay a licensing fee to a company that runs your content management system, what The BDN has set up is essentially free to run. Of course, there were upfront costs involved with paying freelancers to help write the plugins, and each month the website has to pay hosting fees, but the rest of the tools they use are free for everyone. WordPress is open source software that anyone can download and use. Google Docs is also a free product if your organization is small enough. [<em><a href=\"http://www.mediabistro.com/10000words/how-to-run-a-news-site-and-newspaper-using-wordpress-and-google-docs_b4781\">Media Bistro</a></em>]</p></blockquote>\n<p>We also had a chance to speak with William Davis, part of the <a href=\"http://dev.bangordailynews.com/2011/06/14/credits/\">Bangor Daily News team who led the integration</a> who told us more about their decision to use WordPress:</p>\n<p>“We looked at several solutions, including proprietary hosted solutions, but we quickly decided they wouldn’t offer the flexibility we needed. We didn’t want to have to wait around for a corporation to develop any features we needed. We wanted to be able to get into the guts of our website if we needed to,” Davis said. “We’re growing quickly online, so we wanted a platform that allowed us to develop and deploy easily and with speed.”</p>\n<p>Through a series of plugins they developed specifically for their news site, and utilizing a few from the WordPress community, Bangor Daily News extended WordPress to do exactly what they needed it to do.</p>\n<p>“To us, that’s the beauty of WordPress: It’s more easily extendable than any other CMS. In nine months I haven’t hacked core once except to apply patches,” said Davis.</p>\n<p>Some of those plugins include, in Davis’ words:</p>\n<ul>\n<li>the <a href=\"http://wordpress.org/extend/plugins/zoninator/\" target=\"_blank\">Zoninator</a> (written by now-<a title=\"VentureBeat now on WordPress.com VIP\" href=\"http://automattic.com/about\">Automattician</a> Mo Jangda) that allows us to order posts in specific zones, such as the home page, instead of displaying them in reverse-chronological order. It’s a must-have for any publisher on WordPress and we’re very pleased he released it. I believe it will be available for WordPress.com VIP members soon.</li>\n<li>We use custom post types for quite a bit, including to power our <a href=\"http://bangordailynews.com/contact/\" target=\"_blank\">contact pages</a>, our <a href=\"http://bangordailynews.com/events/\" target=\"_blank\">events pages</a>, our <a href=\"http://bangordailynews.com/?post_type=slideshow\" target=\"_blank\">photo galleries</a>, our <a href=\"http://bangordailynews.com/?post_type=ugc\" target=\"_blank\">our user-contributed content</a> and our candidate pages for the election. Each of those are a separate plugin, and all will be open-sourced eventually.</li>\n<li>We use <a href=\"http://wordpress.org/extend/plugins/terms-to-links/\" target=\"_blank\">Terms to Links</a>, which I built after being inspired by someone else’s plugins, to <a href=\"http://bangordailynews.com/2011/06/07/politics/lepage-vetoes-foreign-loggers-bill/\" target=\"_blank\">automatically link</a> people, organizations and places to drive readers deeper into the site. Each of those are custom taxonomies.</li>\n<li>We use <a href=\"http://wordpress.org/extend/plugins/edit-flow/\" target=\"_blank\">Edit Flow</a>, a CoPress project, to handle copy flow once it gets into WordPress. It’s another must-have.</li>\n<li>We use <a href=\"http://wordpress.org/extend/plugins/media-credit/\" target=\"_blank\">Media Credit</a> to handle attribution for images.</li>\n<li>We use Automattic’s own <a href=\"http://polldaddy.com/\" target=\"_blank\">PollDaddy</a>, with a custom plugin on top of theirs, to handle <a href=\"http://bangordailynews.com/polls/\" target=\"_blank\">polls</a>.</li>\n</ul>\n<p>The changes to Bangor Daily News’ editorial workflow have been immediate and dramatic, but they have also seen an increase in productivity regarding their development cycle, and their site has benefited with an increase in traffic, too.</p>\n<p>“We started rolling things out in earnest in January, and the change has been dramatic. With one workflow with WordPress at the center we’ve cut down handling times for articles dramatically — we’re now able to get the news out faster than ever before. We’ve also seen a nice jump in search engine traffic thanks to more advanced URLs. Our build times are now down dramatically, as well — we can develop or patch features as quickly as they need to be addressed. The speed at which we break news requires a nimble API to develop with, and we’ve already been able to put it to the test, to great results.”</p>\n<p>They were also able to take advantage of <a href=\"http://codex.wordpress.org/WordPress_API%27s\">WordPress’ APIs</a> to integrate everything and even publish back to the print version in InDesign, creating a truly seamless publishing system.</p>\n<p>“I’m proud of how deeply we’ve integrated WordPress into everything we do. Our stories start in Google Docs, where our reporters write and our editors edit. Those are seamlessly and automatically moved to WordPress when they’re ready to be published — no more copying and pasting. We also use <a href=\"https://github.com/bangordailynews/WordPress-xmlrpc-extenders\" target=\"_blank\">XML-RPC</a> to easily find and bring content onto the print page in InDesign. We custom-built an InDesign plugin to accomplish that.”</p>\n<p><a href=\"http://bangordailynews.com/\"><img class=\"aligncenter size-full wp-image-1577\" title=\"bangornews\" src=\"http://wordpresspublishers.files.wordpress.com/2011/06/bangornews.jpg?w=640&h=516\" alt=\"\" width=\"640\" height=\"516\" /></a><br />\nVisit <a href=\"http://bangordailynews.com/\">Bangor Daily News</a></p>\n<p><em></em><strong><em><a href=\"http://get.wp.com/\"><strong>Want WordPress for your site? Get.WP.com</strong></a></em></strong></p>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wordpresspublishers.wordpress.com/1575/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wordpresspublishers.wordpress.com/1575/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wordpresspublishers.wordpress.com/1575/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wordpresspublishers.wordpress.com/1575/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wordpresspublishers.wordpress.com/1575/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wordpresspublishers.wordpress.com/1575/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wordpresspublishers.wordpress.com/1575/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wordpresspublishers.wordpress.com/1575/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wordpresspublishers.wordpress.com/1575/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wordpresspublishers.wordpress.com/1575/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wordpresspublishers.wordpress.com/1575/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wordpresspublishers.wordpress.com/1575/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wordpresspublishers.wordpress.com/1575/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wordpresspublishers.wordpress.com/1575/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=publisherblog.automattic.com&blog=1470857&post=1575&subd=wordpresspublishers&ref=&feed=1\" width=\"1\" height=\"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:\"Mon, 20 Jun 2011 16:29:05 +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:\"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:\"\";}}}}}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:59:\"Weblog Tools Collection: WordPress Plugin Releases for 6/20\";s: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=10160\";s: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/52JfEZE8aNw/\";s: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:1440:\"<h3>New plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/crawlable-facebook-comments/\"><strong>Crawlable Facebook Comments</strong></a> retrieves Facebook comments (with authors, dates and replies) and makes them visible in your source code.</p>\n<p><a href=\"http://ottopress.com/2011/howto-html5-video-that-works-almost-everywhere/\"><strong>HTML5 Video Shortcode</strong></a> allows you to quickly and easily add HTML5 Video tags as a shortcode.</p>\n<p><a href=\"http://tentblogger.com/rss-reminder/\"><strong>TentBlogger RSS Reminder</strong></a> is a simple way of capturing commenters and calling them to subscribe to your feed.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://www.fastsecurecontactform.com/\"><strong>Fast Secure Contact Form</strong></a> lets your visitors send you a quick e-mail message and blocks all common spammer tactics. Additionally, the plugin has a multi-form feature, optional extra fields, and an option to redirect visitors to any URL after the message is sent.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/si-captcha-for-wordpress/\"><strong>SI CAPTCHA Anti-Spam</strong></a> adds CAPTCHA anti-spam methods to WordPress forms for comments, registration, lost password, login, or all. In order to post comments or register, users will have to type in the code shown on the image.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/52JfEZE8aNw\" height=\"1\" width=\"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:\"Mon, 20 Jun 2011 13:00:52 +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:\"James Huff\";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:46:\"Matt: Newspaper with WordPress And Google Docs\";s: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=38310\";s: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://ma.tt/2011/06/newspaper-with-wordpress-and-google-docs/\";s: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:390:\"<p><a href=\"http://www.mediabistro.com/10000words/how-to-run-a-news-site-and-newspaper-using-wordpress-and-google-docs_b4781\">How To Run A News Site And Newspaper Using WordPress And Google Docs</a>. This is why I love saying “scripting is the new literacy.” A bit of scripting glue can tie together Big Projects like WP and Google Docs to create something completely novel.</p>\";s: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, 19 Jun 2011 14:53: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:\"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: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:28:\"Matt: Achievement Design 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:21:\"http://ma.tt/?p=38308\";s: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:44:\"http://ma.tt/2011/06/achievement-design-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:261:\"<p><a href=\"http://www.gamasutra.com/blogs/GregMcClanahan/20091202/3709/Achievement_Design_101.php\">Gamasutra: Greg McClanahan’s Blog – Achievement Design 101</a>. Long article, but worth getting through. I’ve had it in Instapaper forever.</p>\";s: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, 19 Jun 2011 06:29:38 +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: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:58:\"Weblog Tools Collection: WordPress Theme Releases for 6/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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10153\";s: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/iAVj83SviLc/\";s: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:1223:\"<p><img class=\"alignnone size-full wp-image-10154\" title=\"blueline\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/blueline.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/blueline\"><strong>Blueline</strong></a> is a two-column, fixed-width, and conservative theme.</p>\n<p><img class=\"alignnone size-full wp-image-10155\" title=\"neuro\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/neuro.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/neuro\"><strong>Neuro</strong></a> is a clean and easily customizable HTML5 design, featuring customizable theme options, the Neuro slider, dynamic header for custom logo, and much more.</p>\n<p><img class=\"alignnone size-full wp-image-10157\" title=\"vintagespring\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/vintagespring1.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://emptynestthemes.emptynestheritage.com/?p=1477\"><strong>Vintage Spring</strong></a> is a very subtle, pretty theme with a vintage floral background.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/iAVj83SviLc\" height=\"1\" width=\"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:\"Sat, 18 Jun 2011 13:00:14 +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:\"James Huff\";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:23:\"Matt: New York Observer\";s: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=38305\";s: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:39:\"http://ma.tt/2011/06/new-york-observer/\";s: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:197:\"<p>WordPress Publisher Blog: <a href=\"http://publisherblog.automattic.com/2011/06/17/ny-observer/\">Influential Weekly The New York Observer Migrates from Drupal to WordPress</a>. <em>Cool!</em></p>\";s: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, 18 Jun 2011 10:44: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: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: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:22:\"Matt: Every 60 Seconds\";s: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=38303\";s: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:38:\"http://ma.tt/2011/06/every-60-seconds/\";s: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:264:\"<p><a href=\"http://www.adverblog.com/2011/06/15/60-seconds-on-the-web-infographic/60seconds/\">Every 60 seconds on the web</a> there are 50+ WordPress downloads and 60+ new blogs created. <cite>Hat tip: <a href=\"http://andrewnacin.com/\">Andrew Nacin</a>.</cite></p>\";s: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, 17 Jun 2011 17:32: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: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: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:90:\"Publisher Blog: Influential Weekly The New York Observer Migrates from Drupal to 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:43:\"http://publisherblog.automattic.com/?p=1553\";s: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://publisherblog.automattic.com/2011/06/17/ny-observer/\";s: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:2737:\"<p>Last week<em> The New York Observer</em> launched a redesign of <a href=\"http://observer.com\">Observer.com</a>, and switched from Drupal to <a href=\"http://wordpress.org\">WordPress</a> in the process.</p>\n<p>The site’s redesign “focused on cleaner presentation that would accommodate more breaking news and higher volume posting”, says Elizabeth Spiers, the paper’s editor-in-chief. [<a href=\"http://news.yahoo.com/s/yblog_thecutline/20110607/bs_yblog_thecutline/new-york-observer-to-emphasize-long-form-scoops-with-new-web-design\">via</a>]</p>\n<p><a href=\"http://observer.com\"><img class=\"aligncenter size-full wp-image-1554\" title=\"NY Observer\" src=\"http://wordpresspublishers.files.wordpress.com/2011/06/screen-shot-2011-06-16-at-2-25-37-pm.png?w=640&h=474\" alt=\"\" width=\"640\" height=\"474\" /></a></p>\n<p>[Visit <a href=\"http://observer.com\">Observer.com</a>]</p>\n<p><em><a href=\"http://get.wp.com/\"><strong>Want WordPress for your site? Get.WP.com</strong></a></em></p>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wordpresspublishers.wordpress.com/1553/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wordpresspublishers.wordpress.com/1553/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wordpresspublishers.wordpress.com/1553/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wordpresspublishers.wordpress.com/1553/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wordpresspublishers.wordpress.com/1553/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wordpresspublishers.wordpress.com/1553/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wordpresspublishers.wordpress.com/1553/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wordpresspublishers.wordpress.com/1553/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wordpresspublishers.wordpress.com/1553/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wordpresspublishers.wordpress.com/1553/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wordpresspublishers.wordpress.com/1553/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wordpresspublishers.wordpress.com/1553/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wordpresspublishers.wordpress.com/1553/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wordpresspublishers.wordpress.com/1553/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=publisherblog.automattic.com&blog=1470857&post=1553&subd=wordpresspublishers&ref=&feed=1\" width=\"1\" height=\"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:\"Fri, 17 Jun 2011 14:33: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Paul Maiorana\";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:52:\"Publisher Blog: VentureBeat now on WordPress.com VIP\";s: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:43:\"http://publisherblog.automattic.com/?p=1537\";s: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://publisherblog.automattic.com/2011/06/16/venturebeat-wordpresscom-vip/\";s: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:2821:\"<p>At the end of last week <a href=\"http://venturebeat.com/\">VentureBeat.com</a> migrated to <a href=\"http://vip.wordpress.com/hosting/\">WordPress.com VIP hosting</a></p>\n<p>Started by award-winning journalist <a href=\"http://venturebeat.com/about/\">Matt Marshall</a> in 2006, VentureBeat has long been a <a href=\"http://wordpress.org/\">WordPress</a> showcase site. Today, nearly 30,000 articles have been published on VentureBeat, and the archives dates back to August, 2004. There is a lot of our tech industry history laid out in these articles, and insights throughout.</p>\n<p><a href=\"http://venturebeat.com/\"><img class=\"aligncenter size-full wp-image-1565\" title=\"VentureBeat.com\" src=\"http://wordpresspublishers.files.wordpress.com/2011/06/veaturebeat.jpg?w=600&h=572\" alt=\"Screenshot of VentureBeat.com Home page\" width=\"600\" height=\"572\" /></a></p>\n<p>While monitoring the import to WordPress.com, it was cool to see the team growth and the breadth of topics covered increase tenfold from its inception.</p>\n<p>[Visit <a href=\"http://venturebeat.com/\">VentureBeat.com</a>]</p>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wordpresspublishers.wordpress.com/1537/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wordpresspublishers.wordpress.com/1537/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wordpresspublishers.wordpress.com/1537/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wordpresspublishers.wordpress.com/1537/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wordpresspublishers.wordpress.com/1537/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wordpresspublishers.wordpress.com/1537/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wordpresspublishers.wordpress.com/1537/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wordpresspublishers.wordpress.com/1537/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wordpresspublishers.wordpress.com/1537/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wordpresspublishers.wordpress.com/1537/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wordpresspublishers.wordpress.com/1537/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wordpresspublishers.wordpress.com/1537/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wordpresspublishers.wordpress.com/1537/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wordpresspublishers.wordpress.com/1537/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=publisherblog.automattic.com&blog=1470857&post=1537&subd=wordpresspublishers&ref=&feed=1\" width=\"1\" height=\"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:\"Thu, 16 Jun 2011 23: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Lloyd Budd\";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:66:\"Alex King: Use $content_width to Set Width of oEmbeds in 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://alexking.org/?p=5910\";s: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:90:\"http://alexking.org/blog/2011/06/16/use-content_width-to-set-width-of-oembeds-in-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:876:\"<p>If you want resulting oEmbed code to scale to a specific size (width) in WordPress, you can do this really easily by setting the <code>$content_width</code> global variable before calling your oEmbed processing.</p>\n<p>Example:</p>\n<div class=\"code\">\n<pre>global $wp_embed, $content_width;\n$content_width = \'600\'; // set to desired width\n$string_with_embedded_content = $wp_embed->autoembed($string_with_oembed_url);</pre>\n</div>\n<p>I only recently ran across this feature (just recently had the need for it), though it’s been around for <a href=\"http://wordpress.org/extend/ideas/topic/oembed-to-configure-width-and-height-of-video\" rel=\"external\">at least a year</a>. In talking with some other devs, it seems to not be a widely known feature – hopefully this helps.</p>\n<img src=\"http://alexking.org/wp/?ak_action=api_record_view&id=5910&type=feed\" alt=\"\" />\";s: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, 16 Jun 2011 18:57: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: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: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:59:\"Weblog Tools Collection: WordPress Plugin Releases for 6/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=10151\";s: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/0JM90aTdb58/\";s: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:1128:\"<h3>New plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/delete-custom-fields/\"><strong>Delete Custom Fields</strong></a> will let you delete every instance of a custom field from your site.</p>\n<p><a href=\"http://godropship.com/OfferMatch.html\"><strong>OfferMatch</strong></a> shows offers or ads related to your posts.</p>\n<p><a href=\"http://www.toppa.com/simpletest-for-wordpress/\"><strong>SimpleTest for WordPress</strong></a> is a tool for WordPress plugin developers who want to create and run automated tests for their plugins.</p>\n<p><a href=\"http://www.toppa.com/toppa-plugin-libraries-for-wordpress/\"><strong>Toppa Plugin Libraries for WordPress</strong></a> includes several utilities for plugin developers. They facilitate the use of Agile coding techniques for developing WordPress plugins.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\"><strong>WordPress Beta Tester</strong></a> allows you to easily upgrade to WordPress Beta releases.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/0JM90aTdb58\" height=\"1\" width=\"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:\"Thu, 16 Jun 2011 13: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:10:\"James Huff\";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:51:\"Weblog Tools Collection: WordPress 3.2 RC1 Released\";s: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=10147\";s: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/gJZWiWEiR7I/\";s: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:1254:\"<p><a href=\"http://wordpress.org/\">WordPress</a> 3.2 RC1 <a href=\"http://wordpress.org/news/2011/06/wordpress-3-2-release-candidate/\">has been released</a>. The release candidate stage is that special stage after beta which pretty much amounts to, “We think we’re done,” so now is the time for the community to really dig in, find bugs, and share some honest feedback.</p>\n<p><a href=\"http://core.trac.wordpress.org/milestone/3.2\">Over 360 tickets</a> have been closed, so <a href=\"http://wordpress.org/news/2011/05/wordpress-3-2-beta-1/\">quite a bit</a> has changed since WordPress 3.1, which means that now is definitely the time for plugin and theme developers to test their products before WordPress 3.2 is officially released.</p>\n<p>If you find any bugs, please check <a href=\"http://core.trac.wordpress.org/report/5\">the known issues</a> first, then <a href=\"http://codex.wordpress.org/Reporting_Bugs\">file a bug report</a>. If you need any help, please feel free to contact <a href=\"http://wordpress.org/support/forum/alphabeta\">the WordPress.org Support Forums</a>.</p>\n<p>What do you think of WordPress 3.2 so far?</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/gJZWiWEiR7I\" height=\"1\" width=\"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, 15 Jun 2011 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:10:\"James Huff\";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:\"Weblog Tools Collection: WordPress Theme Releases for 6/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=10139\";s: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/Ae8d6HG2OVM/\";s: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:1314:\"<p><img class=\"alignnone size-full wp-image-10140\" title=\"coolorange\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/coolorange.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://www.jasong-designs.com/2011/06/12/cool-orange/\"><strong>Cool Orange</strong></a> is a <a href=\"http://wordpress.org/extend/themes/sandbox\">Sandbox</a> child theme with a cool, muted blue vs. bright orange color scheme.</p>\n<p><img class=\"alignnone size-full wp-image-10141\" title=\"mygrid2\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/mygrid2.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/mygrid2\"><strong>MYgRID2</strong></a> is a minimalistic WordPress theme in grey-silver colors with fresh look, fancy css3 and jQurey effects, widget ready area, automatic post thumbnail, and more.</p>\n<p><img class=\"alignnone size-full wp-image-10142\" title=\"vibrato\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/vibrato.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://emptynestthemes.emptynestheritage.com/?p=1449\"><strong>Vibrato</strong></a> is a bright, colorful, cheerful, and loud two column theme.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/Ae8d6HG2OVM\" height=\"1\" width=\"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:\"Tue, 14 Jun 2011 13: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:10:\"James Huff\";s: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:\"Tue, 05 Jul 2011 08:09:44 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:\"Tue, 05 Jul 2011 08:00:13 GMT\";s:14:\"content-length\";s:6:\"123145\";s:4:\"x-nc\";s:11:\"HIT luv 138\";s:13:\"accept-ranges\";s:5:\"bytes\";}s:5:\"build\";s:14:\"20090627192103\";}','no'),(905,0,'_transient_timeout_feed_1a5f760f2e2b48827d4974a60857e7c2','1309896588','no'),(906,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:\"Tue, 05 Jul 2011 08:06: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:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"http://bbpress.org/?v=1.1-alpha-2855\";s: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:26:\"Ste-Bi on \"AppStore Links\"\";s: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/appstore/#post-12304\";s: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, 11 Aug 2009 07:56: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:\"12304@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:122:\"Plugin for easy linking to (Mac) AppStore Apps. You can use the TradeDoubler-ID for automatically creating Affiliate-Links\";s: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:\"Ste-Bi\";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:31:\"Byron on \"PhotoSmash Galleries\"\";s: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/photosmash-galleries/#post-8679\";s: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, 20 Jan 2009 05:11: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:41:\"8679@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:\"ATTENTION! A 'farewell' for PhotoSmash:\n\nIt has been my pleasure to be part of the WordPress community over the past couple of years by prov\";s: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:\"Byron\";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:\"Neil Simon on \"RainmakerMoxie\"\";s: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/rainmakermoxie/#post-27693\";s: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, 22 Jun 2011 20:45:34 +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:\"27693@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:148:\"RainmakerMoxie (BETA-limited support) is an interactive sidebar widget. Enter an email address and it displays a photo, name, social links 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:10:\"Neil Simon\";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:21:\"k2eric on \"TubePress\"\";s: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/tubepress/#post-312\";s: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:10: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"312@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:182:\"Displays gorgeous YouTube and Vimeo galleries in your posts, pages, and/or sidebar. Please visit <a href=\"http://tubepress.org\" rel=\"nofollow\">http://tubepress.org</a> for more info!\";s: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:\"k2eric\";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:38:\"xhanch_studio on \"Xhanch - My 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.org/extend/plugins/xhanch-my-twitter/#post-16364\";s: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, 03 Mar 2010 13:28: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:\"16364@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:\"The best plugin to display your latest tweets, replies, direct messages, retweets, auto and manual tweet and lots more. Support multiple accounts\";s: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:\"xhanch_studio\";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:36:\"hoffcamp on \"WordPress Form Manager\"\";s: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/wordpress-form-manager/#post-25783\";s: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, 11 Apr 2011 00:29: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"25783@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:\"Put custom forms into posts and pages using shortcodes. Download submissions in .csv format.\";s: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:\"hoffcamp\";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:52:\"Sparanoid on \"Readability Buttons (readability.com)\"\";s: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/readability-buttons/#post-24545\";s: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, 19 Feb 2011 08:35: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"24545@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:77:\"Readability Buttons displays readability.com official button on your sidebar.\";s: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:\"Sparanoid\";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:37:\"plugin-master on \"Quotmarks Replacer\"\";s: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/quotmarks-replacer/#post-11252\";s: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, 14 Jun 2009 03:37: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"11252@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:121:\"Quotmarks Replacer disables wptexturize function that keeps all quotation marks and suspension points in half-width 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"plugin-master\";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:34:\"Callum Macdonald on \"WP Mail SMTP\"\";s: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/wp-mail-smtp/#post-2302\";s: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, 12 Sep 2007 17:45: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"2302@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:117:\"Reconfigures the wp_mail() function to use SMTP instead of mail() and creates an options page to manage the settings.\";s: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:\"Callum Macdonald\";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:47:\"fireproofsocks on \"Custom Content Type Manager\"\";s: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:75:\"http://wordpress.org/extend/plugins/custom-content-type-manager/#post-21393\";s: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, 07 Oct 2010 07:34:14 +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:\"21393@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:146:\"Create custom content types (aka post types), standardize custom fields for each type, including dropdowns and images. Gives WP CMS functionality.\";s: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:\"fireproofsocks\";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:25:\"nofearinc on \"Offer Calc\"\";s: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/offer-calc/#post-28041\";s: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, 03 Jul 2011 23:52:14 +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:\"28041@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:\"Offer Calc is a simple plugin letting your site visitors to calculate your services at final cost.\";s: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:\"nofearinc\";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:35:\"eschnack on \"Musopress Discography\"\";s: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/musopress-discography/#post-28042\";s: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, 04 Jul 2011 00:53: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"28042@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:\"Creates a Discography Custom Post Type and allows you to import your albums from Bandcamp.\";s: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:\"eschnack\";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:24:\"PedroDM on \"mowsterTags\"\";s: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/mowster-tags/#post-19010\";s: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 Jul 2010 14:19: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"19010@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:52:\"Wordpress plugin for tag suggestions using Yahoo API\";s: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:\"PedroDM\";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:69:\"Google Adwords Consultant on \"Automatic Wordpress Facebook Converter\"\";s: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.org/extend/plugins/automatic-facebook-converter/#post-27839\";s: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, 27 Jun 2011 23:38: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"27839@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:112:\"The Automatic Facebook Converter automatically renders your site in a Facebook compatible format, in a page/app.\";s: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:25:\"Google Adwords Consultant\";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:34:\"Piotr Sochalewski on \"Readability\"\";s: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/readability/#post-24232\";s: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, 05 Feb 2011 21:28: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"24232@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:\"Plugin which lets you to show posts in stylish, legible pop-up window, like in Safari.\";s: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:\"Piotr Sochalewski\";s: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:\"Tue, 05 Jul 2011 08:09:47 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:\"2009-08-11 07:56:48\";s:14:\"content-length\";s:4:\"8100\";s:4:\"x-nc\";s:11:\"HIT luv 139\";}s:5:\"build\";s:14:\"20090627192103\";}','no'),(313,0,'qtranslate_next_update_mo','1310458148','yes'),(314,0,'widget_qtranslate','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(315,0,'qtranslate_qtranslate_services','0','yes'),(316,0,'qtranslate_default_language','de','yes'),(317,0,'qtranslate_flag_location','plugins/qtranslate/flags/','yes'),(318,0,'qtranslate_ignore_file_types','gif,jpg,jpeg,png,pdf,swf,tif,rar,zip,7z,mpg,divx,mpeg,avi,css,js','yes'),(319,0,'qtranslate_detect_browser_language','1','yes'),(320,0,'qtranslate_hide_untranslated','0','yes'),(321,0,'qtranslate_use_strftime','4','yes'),(322,0,'qtranslate_url_mode','2','yes'),(323,0,'qtranslate_auto_update_mo','1','yes'),(324,0,'qtranslate_hide_default_language','1','yes'),(325,0,'qtranslate_language_names','a:15:{s:2:\"de\";s:7:\"Deutsch\";s:2:\"en\";s:7:\"English\";s:2:\"zh\";s:6:\"中文\";s:2:\"fi\";s:5:\"suomi\";s:2:\"fr\";s:9:\"Français\";s:2:\"nl\";s:10:\"Nederlands\";s:2:\"sv\";s:7:\"Svenska\";s:2:\"it\";s:8:\"Italiano\";s:2:\"ro\";s:8:\"Română\";s:2:\"hu\";s:6:\"Magyar\";s:2:\"ja\";s:9:\"日本語\";s:2:\"es\";s:8:\"Español\";s:2:\"vi\";s:14:\"Tiếng Việt\";s:2:\"ar\";s:14:\"العربية\";s:2:\"pt\";s:10:\"Português\";}','yes'),(326,0,'qtranslate_enabled_languages','a:2:{i:0;s:2:\"de\";i:1;s:2:\"en\";}','yes'),(327,0,'qtranslate_flags','a:15:{s:2:\"en\";s:6:\"gb.png\";s:2:\"de\";s:6:\"de.png\";s:2:\"zh\";s:6:\"cn.png\";s:2:\"fi\";s:6:\"fi.png\";s:2:\"fr\";s:6:\"fr.png\";s:2:\"nl\";s:6:\"nl.png\";s:2:\"sv\";s:6:\"se.png\";s:2:\"it\";s:6:\"it.png\";s:2:\"ro\";s:6:\"ro.png\";s:2:\"hu\";s:6:\"hu.png\";s:2:\"ja\";s:6:\"jp.png\";s:2:\"es\";s:6:\"es.png\";s:2:\"vi\";s:6:\"vn.png\";s:2:\"ar\";s:8:\"arle.png\";s:2:\"pt\";s:6:\"br.png\";}','yes'),(328,0,'qtranslate_locales','a:15:{s:2:\"de\";s:5:\"de_DE\";s:2:\"en\";s:5:\"en_US\";s:2:\"zh\";s:5:\"zh_CN\";s:2:\"fi\";s:2:\"fi\";s:2:\"fr\";s:5:\"fr_FR\";s:2:\"nl\";s:5:\"nl_NL\";s:2:\"se\";s:5:\"sv_SE\";s:2:\"it\";s:5:\"it_IT\";s:2:\"ro\";s:5:\"ro_RO\";s:2:\"hu\";s:5:\"hu_HU\";s:2:\"ja\";s:2:\"ja\";s:2:\"es\";s:5:\"es_ES\";s:2:\"vi\";s:2:\"vi\";s:2:\"ar\";s:2:\"ar\";s:2:\"pt\";s:5:\"pt_BR\";}','yes'),(329,0,'qtranslate_na_messages','a:15:{s:2:\"de\";s:58:\"Leider ist der Eintrag nur auf %LANG:, : und % verfügbar.\";s:2:\"en\";s:55:\"Sorry, this entry is only available in %LANG:, : and %.\";s:2:\"zh\";s:50:\"对不起,此内容只适用于%LANG:,:和%。\";s:2:\"fi\";s:92:\"Anteeksi, mutta tämä kirjoitus on saatavana ainoastaan näillä kielillä: %LANG:, : ja %.\";s:2:\"fr\";s:65:\"Désolé, cet article est seulement disponible en %LANG:, : et %.\";s:2:\"nl\";s:78:\"Onze verontschuldigingen, dit bericht is alleen beschikbaar in %LANG:, : en %.\";s:2:\"sv\";s:66:\"Tyvärr är denna artikel enbart tillgänglig på %LANG:, : och %.\";s:2:\"it\";s:71:\"Ci spiace, ma questo articolo è disponibile soltanto in %LANG:, : e %.\";s:2:\"ro\";s:67:\"Din păcate acest articol este disponibil doar în %LANG:, : și %.\";s:2:\"hu\";s:73:\"Sajnos ennek a bejegyzésnek csak %LANG:, : és % nyelvű változata van.\";s:2:\"ja\";s:97:\"申し訳ありません、このコンテンツはただ今 %LANG:、 :と % のみです。\";s:2:\"es\";s:68:\"Disculpa, pero esta entrada está disponible sólo en %LANG:, : y %.\";s:2:\"vi\";s:63:\"Rất tiếc, mục này chỉ tồn tại ở %LANG:, : và %.\";s:2:\"ar\";s:73:\"عفوا، هذه المدخلة موجودة فقط في %LANG:, : و %.\";s:2:\"pt\";s:70:\"Desculpe-nos, mas este texto esta apenas disponível em %LANG:, : y %.\";}','yes'),(330,0,'qtranslate_date_formats','a:15:{s:2:\"en\";s:14:\"%A %B %e%q, %Y\";s:2:\"de\";s:17:\"%A, der %e. %B %Y\";s:2:\"zh\";s:5:\"%x %A\";s:2:\"fi\";s:8:\"%e.&m.%C\";s:2:\"fr\";s:11:\"%A %e %B %Y\";s:2:\"nl\";s:8:\"%d/%m/%y\";s:2:\"sv\";s:8:\"%Y/%m/%d\";s:2:\"it\";s:8:\"%e %B %Y\";s:2:\"ro\";s:12:\"%A, %e %B %Y\";s:2:\"hu\";s:12:\"%Y %B %e, %A\";s:2:\"ja\";s:15:\"%Y年%m月%d日\";s:2:\"es\";s:14:\"%d de %B de %Y\";s:2:\"vi\";s:8:\"%d/%m/%Y\";s:2:\"ar\";s:8:\"%d/%m/%Y\";s:2:\"pt\";s:14:\"%d de %B de %Y\";}','yes'),(331,0,'qtranslate_time_formats','a:15:{s:2:\"en\";s:8:\"%I:%M %p\";s:2:\"de\";s:5:\"%H:%M\";s:2:\"zh\";s:7:\"%I:%M%p\";s:2:\"fi\";s:5:\"%H:%M\";s:2:\"fr\";s:5:\"%H:%M\";s:2:\"nl\";s:5:\"%H:%M\";s:2:\"sv\";s:5:\"%H:%M\";s:2:\"it\";s:5:\"%H:%M\";s:2:\"ro\";s:5:\"%H:%M\";s:2:\"hu\";s:5:\"%H:%M\";s:2:\"ja\";s:5:\"%H:%M\";s:2:\"es\";s:10:\"%H:%M hrs.\";s:2:\"vi\";s:5:\"%H:%M\";s:2:\"ar\";s:5:\"%H:%M\";s:2:\"pt\";s:10:\"%H:%M hrs.\";}','yes'),(332,0,'qtranslate_term_name','a:7:{s:15:\"Veranstaltungen\";a:3:{s:2:\"de\";s:15:\"Veranstaltungen\";s:2:\"en\";s:6:\"Events\";s:2:\"zh\";s:6:\"Events\";}s:11:\"Neuigkeiten\";a:3:{s:2:\"de\";s:11:\"Neuigkeiten\";s:2:\"en\";s:4:\"News\";s:2:\"zh\";s:4:\"News\";}s:6:\"Presse\";a:3:{s:2:\"de\";s:6:\"Presse\";s:2:\"en\";s:5:\"Press\";s:2:\"zh\";s:5:\"Press\";}s:6:\"Bilder\";a:2:{s:2:\"de\";s:6:\"Bilder\";s:2:\"en\";s:6:\"Images\";}s:4:\"News\";a:2:{s:2:\"de\";s:4:\"News\";s:2:\"en\";s:4:\"News\";}s:7:\"Galerie\";a:2:{s:2:\"de\";s:7:\"Galerie\";s:2:\"en\";s:7:\"Gallery\";}s:6:\"Events\";a:2:{s:2:\"de\";s:6:\"Events\";s:2:\"en\";s:6:\"Events\";}}','yes'),(909,0,'_transient_timeout_plugin_slugs','1309939788','no'),(910,0,'_transient_plugin_slugs','a:13:{i:0;s:19:\"akismet/akismet.php\";i:1;s:33:\"blogroll-links/blogroll-links.php\";i:2;s:42:\"category-event-calendar/eventcalendar3.php\";i:3;s:34:\"category-event-calendar/widget.php\";i:4;s:41:\"flexi-pages-widget/flexi-pages-widget.php\";i:5;s:9:\"hello.php\";i:6;s:37:\"lightbox-gallery/lightbox-gallery.php\";i:7;s:27:\"nice-search/nice-search.php\";i:8;s:25:\"qtranslate/qtranslate.php\";i:9;s:30:\"smw-import/smwimport-admin.php\";i:10;s:43:\"the-events-calendar/the-events-calendar.php\";i:11;s:33:\"widget-context/widget-context.php\";i:12;s:40:\"wp-no-category-base/no-category-base.php\";}','no'),(156,0,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(171,0,'recently_activated','a:0:{}','yes'),(465,0,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1304007658','yes'),(466,0,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','a:40:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";s:4:\"2071\";}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"1465\";}s:6:\"plugin\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"count\";s:4:\"1281\";}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"1111\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";s:4:\"1081\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"1054\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:3:\"797\";}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";s:3:\"719\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";s:3:\"653\";}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:3:\"642\";}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";s:3:\"629\";}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";s:3:\"615\";}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";s:3:\"564\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";s:3:\"509\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"483\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:3:\"439\";}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";s:3:\"391\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";s:3:\"388\";}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:3:\"353\";}s:9:\"wordpress\";a:3:{s:4:\"name\";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:3:\"332\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";s:3:\"327\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"325\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";s:3:\"307\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"304\";}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"304\";}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:3:\"298\";}s:5:\"flash\";a:3:{s:4:\"name\";s:5:\"flash\";s:4:\"slug\";s:5:\"flash\";s:5:\"count\";s:3:\"297\";}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:3:\"296\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";s:3:\"294\";}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";s:3:\"293\";}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";s:3:\"289\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"287\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"286\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:3:\"274\";}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";s:3:\"272\";}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3:\"268\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:3:\"268\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";s:3:\"266\";}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";s:3:\"263\";}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";s:3:\"251\";}}','yes'),(255,0,'ec3_widget_cal','a:1:{s:5:\"title\";s:14:\"Event Calendar\";}','yes'),(256,0,'ec3_version','3.1.4','yes'),(257,0,'ec3_event_category','15','yes'),(258,0,'ec3_tz','wordpress','yes'),(826,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'),(825,0,'_site_transient_timeout_wporg_theme_feature_list','1307614310','yes'),(268,0,'theme_mods_freiland','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:6;}s:12:\"header_image\";s:0:\"\";}','yes'),(370,0,'smwimport_data_source0','http://87.238.194.42/SMWPublicQuery.php?QueryID=PQVeranstaltungen','yes'),(369,0,'smwimport_num_data_sources','4','yes'),(354,0,'ec3_hide_logo','1','yes'),(355,0,'ec3_advanced','1','yes'),(403,0,'smwimport_data_source1','http://87.238.194.42/SMWPublicQuery.php?QueryID=PQNews','yes'),(404,0,'smwimport_data_source2','http://87.238.194.42/SMWPublicQuery.php?QueryID=PQLinks','yes'),(407,0,'smwimport_attachment_url','http://87.238.194.42/df4/index.php/Spezial:Dateipfad?file=','yes'),(410,0,'smwimport_login_url','','yes'),(411,0,'smwimport_username','cms','yes'),(412,0,'smwimport_password','cmsgeheimcms','yes'),(413,0,'lightbox_gallery_data','a:1:{s:15:\"global_settings\";a:8:{s:29:\"lightbox_gallery_loading_type\";s:8:\"lightbox\";s:27:\"lightbox_gallery_categories\";s:0:\"\";s:22:\"lightbox_gallery_pages\";s:0:\"\";s:40:\"lightbox_gallery_enforce_loading_scripts\";s:1:\"1\";s:24:\"lightbox_gallery_columns\";s:0:\"\";s:30:\"lightbox_gallery_thumbnailsize\";s:0:\"\";s:29:\"lightbox_gallery_lightboxsize\";s:0:\"\";s:37:\"lightbox_gallery_script_loading_point\";s:6:\"header\";}}','yes'),(876,0,'_site_transient_timeout_browser_9c6639369101a96aa20f975e78871013','1310458182','yes'),(419,0,'smwimport_data_source3','http://87.238.194.42/SMWPublicQuery.php?QueryID=PQPresse','yes'),(470,0,'widget_logic_options','a:5:{s:14:\"event-calendar\";a:4:{s:6:\"incexc\";s:8:\"selected\";s:8:\"location\";a:2:{s:20:\"check_wordcount_type\";s:4:\"less\";s:10:\"word_count\";s:0:\"\";}s:3:\"url\";a:1:{s:4:\"urls\";s:12:\"events*\n?m=*\";}s:7:\"general\";a:1:{s:5:\"notes\";s:0:\"\";}}s:6:\"text-3\";a:4:{s:8:\"location\";a:2:{s:20:\"check_wordcount_type\";s:4:\"less\";s:10:\"word_count\";s:0:\"\";}s:3:\"url\";a:1:{s:4:\"urls\";s:0:\"\";}s:7:\"general\";a:1:{s:5:\"notes\";s:0:\"\";}s:6:\"incexc\";s:11:\"notselected\";}s:10:\"nav_menu-3\";a:4:{s:8:\"location\";a:2:{s:20:\"check_wordcount_type\";s:4:\"less\";s:10:\"word_count\";s:0:\"\";}s:3:\"url\";a:1:{s:4:\"urls\";s:0:\"\";}s:7:\"general\";a:1:{s:5:\"notes\";s:0:\"\";}s:6:\"incexc\";s:11:\"notselected\";}s:7:\"pages-3\";a:4:{s:6:\"incexc\";s:11:\"notselected\";s:8:\"location\";a:2:{s:20:\"check_wordcount_type\";s:4:\"less\";s:10:\"word_count\";s:0:\"\";}s:3:\"url\";a:1:{s:4:\"urls\";s:0:\"\";}s:7:\"general\";a:1:{s:5:\"notes\";s:0:\"\";}}s:12:\"flexipages-2\";a:4:{s:6:\"incexc\";s:11:\"notselected\";s:8:\"location\";a:2:{s:20:\"check_wordcount_type\";s:4:\"less\";s:10:\"word_count\";s:0:\"\";}s:3:\"url\";a:1:{s:4:\"urls\";s:0:\"\";}s:7:\"general\";a:1:{s:5:\"notes\";s:0:\"\";}}}','yes'),(471,0,'ec3_hide_event_box','1','yes'),(490,0,'ec3_show_only_events','1','yes'),(495,0,'ec3_navigation','1','yes'),(523,0,'ec3_num_days','7','yes'),(878,0,'can_compress_scripts','0','yes'),(881,0,'_transient_timeout_feed_mod_63c1c48257f28134bfcdde7e0a398401','1309896584','no'),(882,0,'_transient_feed_mod_63c1c48257f28134bfcdde7e0a398401','1309853384','no'),(883,0,'_transient_timeout_dash_20494a3d90a6669585674ed0eb8dcd8f','1309896584','no'),(884,0,'_transient_dash_20494a3d90a6669585674ed0eb8dcd8f','<p>Dieses Dashboard-Widget fragt die <a href=\"http://blogsearch.google.de/\">Google Blog-Suche</a> ab, so dass Blogs, die dich verlinken, hier erscheinen. Du bist bisher nirgends verlinkt… noch nicht...</p>\n','no'),(897,0,'_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c','1309896587','no'),(898,0,'_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c','1309853387','no'),(899,0,'_transient_timeout_dash_aa95765b5cc111c56d5993d476b1c2f0','1309896587','no'),(900,0,'_transient_dash_aa95765b5cc111c56d5993d476b1c2f0','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/xfAxFKaf11Y/\' title=\'WordPress 3.2 has been released! WordPress is now faster and lighter, with a new Dashboard, new default theme, distraction free writing, admin bar enhancements, and much more. WordPress now requires a minimum of PHP 5.2.4 and MySQL 5.0, so make sure that you’re ready before upgrading. Support for the long-outdated Internet Explorer 6 has been dropped too, bu […]\'>Weblog Tools Collection: WordPress 3.2 Released</a></li><li><a class=\'rsswidget\' href=\'http://buddypress.org/2011/07/buddypress-1-2-9/\' title=\'Available immediately is BuddyPress 1.2.9. This is a bug-fix release of the 1.2 branch to ensure full compatibility with WordPress 3.2. (Note: This does not use the new bbPress 2.0! We’re working on it!) BuddyPress 1.2.9 includes fixes related to the new version of jQuery (1.6.1) that comes packaged with with WordPress 3.2. These changes affect the javascrip […]\'>BuddyPress: BuddyPress 1.2.9</a></li><li><a class=\'rsswidget\' href=\'http://wordpress.org/news/2011/07/gershwin/\' title=\'Here in the U.S. we are observing Independence Day, and I can’t think of a more fitting way to mark a day that celebrates freedom than by releasing more free software to help democratize publishing around the globe. I’m excited to announce that WordPress 3.2 is now available to the world, both as an update in your dashboard and a download on WordPress.org. V […]\'>Dev Blog: WordPress 3.2 now available</a></li><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2011/07/04/introducing-wordpress-3-2-gershwin/\' title=\' […]\'>WordPress.tv: Introducing WordPress 3.2 “Gershwin”</a></li><li><a class=\'rsswidget\' href=\'http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/6mWZ7uy6w7Q/\' title=\'Blue and Grey is a modern theme with a decent design. Main colors used in the theme are blue and grey. Commune is a minimalist WordPress theme. The theme is also compatible with WP-PageNavi for a nice pagination. GreenLeaf is a green-based two-column theme with a right sidebar. […]\'>Weblog Tools Collection: WordPress Theme Releases for 7/4</a></li></ul></div>','no'),(901,0,'_transient_timeout_feed_57bc725ad6568758915363af670fd8bc','1309896587','no'),(902,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:\"Tue, 05 Jul 2011 08:06: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:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"http://bbpress.org/?v=1.1-alpha-2855\";s: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:35:\"eschnack on \"Musopress Discography\"\";s: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/musopress-discography/#post-28042\";s: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, 04 Jul 2011 00:53: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"28042@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:\"Creates a Discography Custom Post Type and allows you to import your albums from Bandcamp.\";s: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:\"eschnack\";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:28:\"ninetwozero on \"WPCustomAds\"\";s: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/wpcustomads/#post-28015\";s: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, 02 Jul 2011 23:10: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:\"28015@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:116:\"WPCustomAds places custom ads into pre-defined areas of your template, identified by their DOM-id's or classes.\";s: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:\"ninetwozero\";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:25:\"nofearinc on \"Offer Calc\"\";s: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/offer-calc/#post-28041\";s: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, 03 Jul 2011 23:52:14 +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:\"28041@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:\"Offer Calc is a simple plugin letting your site visitors to calculate your services at final cost.\";s: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:\"nofearinc\";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:30:\"rabby on \"Adwords-Remarketing\"\";s: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/adwords-remarketing/#post-28062\";s: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, 04 Jul 2011 17:44: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"28062@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:103:\"Embed specific Remarketing Code (from Google Adwords) to your wordpress posts or pages for retargeting.\";s: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:\"rabby\";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:26:\"Bloafer on \"Posts to 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/extend/plugins/posts-to-page/#post-28054\";s: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, 04 Jul 2011 13:31: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"28054@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:96:\"This plugin adds a shortcode [posts-to-page] to WP allowing you to place your posts into a 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:7:\"Bloafer\";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:32:\"Captin Shmit on \"Secret Passage\"\";s: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/secret-passage/#post-28020\";s: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, 03 Jul 2011 07:08: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"28020@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:68:\"Adds a secret key combination to whisk you away to the admin screen.\";s: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:\"Captin Shmit\";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:34:\"tollmanz on \"Custom Taxonomy Sort\"\";s: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/custom-taxonomy-sort/#post-28007\";s: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, 02 Jul 2011 17:53: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:\"28007@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:\"Custom Taxonomy Sort allows you to explicitly control the sort order of all taxonomy terms. By default,\nWordPress allows you to sort your taxonomy ter\";s: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:\"tollmanz\";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:25:\"gn_themes on \"VK 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:58:\"http://wordpress.org/extend/plugins/vk-gallery/#post-28021\";s: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, 03 Jul 2011 08:19: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"28021@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:\"Gallery with VK comments\n Usage: [vk_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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"gn_themes\";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:42:\"webhostingcondo on \"Improve My Load Times\"\";s: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/improve-my-load-times/#post-28055\";s: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, 04 Jul 2011 14:31: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:\"28055@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:\"This plugin allows you to compress your webpages to save bandwidth and make your blog load faster!\";s: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:\"webhostingcondo\";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:37:\"daveshine on \"Genesis Dashboard 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:70:\"http://wordpress.org/extend/plugins/genesis-dashboard-news/#post-28033\";s: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, 03 Jul 2011 17:39: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"28033@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 adds a new dashboard widget to your WordPress Admin Dashboard that pulls in the some recent (worldwide) news about the Genesis Theme Frame\";s: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:\"daveshine\";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:24:\"bajakan on \"Xlnkr Links\"\";s: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/xlnkr-links/#post-28057\";s: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, 04 Jul 2011 16:47: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"28057@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:99:\"Fetches links that your site is to link to in the network and embeds them in a page of your choice.\";s: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:\"bajakan\";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:\"donovanh on \"QR Print Version\"\";s: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/qr-print/#post-28048\";s: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, 04 Jul 2011 11:30:34 +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:\"28048@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:\"QR Print adds a QR code to the print version of each page, containing the URL of the current 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:8:\"donovanh\";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:31:\"tribalvibes on \"Memolane Embed\"\";s: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/memolane-embedded-timeline-view/#post-28037\";s: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, 03 Jul 2011 20:04:52 +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:\"28037@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:\"Embed the awesome Memolane media timeline view via an easy WordPress shortcode 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:11:\"tribalvibes\";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:26:\"Jana on \"Widget Paginator\"\";s: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/widget-pagination/#post-28030\";s: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, 03 Jul 2011 13:46: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:42:\"28030@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:123:\"This plugin lets you add a pagination for the widgets links, categories, archives, recent posts, recent comments, and meta.\";s: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:\"Jana\";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:31:\"karevn on \"Cyr to Lat enhanced\"\";s: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/cyr3lat/#post-27660\";s: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, 21 Jun 2011 20:20: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"27660@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:78:\"Converts Cyrillic characters in post, page and term slugs to Latin characters.\";s: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:\"karevn\";s: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:\"Tue, 05 Jul 2011 08:09:47 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-07-04 00:53:12\";s:14:\"content-length\";s:4:\"7707\";s:4:\"x-nc\";s:11:\"HIT luv 139\";}s:5:\"build\";s:14:\"20090627192103\";}','no'),(571,0,'banner','179','yes'),(872,0,'rewrite_rules','a:105:{s:50:\"(events/age)/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:33:\"(events/age)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:15:\"(events/age)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:46:\"(events)/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:29:\"(events)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:11:\"(events)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:56:\"(events/eventtype)/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:39:\"(events/eventtype)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:21:\"(events/eventtype)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:46:\"(images)/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:29:\"(images)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:11:\"(images)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:52:\"(events/genre)/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:35:\"(events/genre)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"(events/genre)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:52:\"(events/house)/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:35:\"(events/house)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"(events/house)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:55:\"(events/location)/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:38:\"(events/location)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:20:\"(events/location)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"(news)/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:27:\"(news)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:9:\"(news)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:45:\"(press)/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:28:\"(press)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:10:\"(press)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:51:\"(events/room)/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:34:\"(events/room)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:16:\"(events/room)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:53:\"(uncategorized)/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:36:\"(uncategorized)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:18:\"(uncategorized)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:14:\"category/(.*)$\";s:39:\"index.php?category_redirect=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:14:\".*wp-atom.php$\";s:19:\"index.php?feed=atom\";s:13:\".*wp-rdf.php$\";s:18:\"index.php?feed=rdf\";s:13:\".*wp-rss.php$\";s:18:\"index.php?feed=rss\";s:14:\".*wp-rss2.php$\";s:19:\"index.php?feed=rss2\";s:14:\".*wp-feed.php$\";s:19:\"index.php?feed=feed\";s:22:\".*wp-commentsrss2.php$\";s:34:\"index.php?feed=rss2&withcomments=1\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:40:\"index.php?&page_id=265&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:29:\"comments/page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:25:\".+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\".+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\".+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\".+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\".+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:18:\"(.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:38:\"(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:33:\"(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:26:\"(.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:33:\"(.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:18:\"(.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(597,0,'favicon-http://www.moviefans.de/','http://www.moviefans.de/favicon.ico','yes'),(598,0,'favicon-http://www.amazon.de/','http://www.amazon.de/favicon.ico','yes'),(599,0,'favicon-http://de.wikipedia.org/','http://de.wikipedia.org/favicon.ico','yes'),(600,0,'favicon-http://www.pnn.de/','http://www.pnn.de/favicon.ico','yes'),(601,0,'favicon-http://www.myheimat.de/','http://www.myheimat.de/themes/default/resources/images/favicon.ico','yes'),(602,0,'favicon-http://www.maerkischeallgemeine.de/','http://www.maerkischeallgemeine.de/favicon.ico','yes'),(604,0,'category_children','a:7:{i:15;a:6:{i:0;i:26;i:1;i:28;i:2;i:30;i:3;i:32;i:4;i:34;i:5;i:36;}i:26;a:4:{i:0;i:27;i:1;i:39;i:2;i:46;i:3;i:54;}i:28;a:7:{i:0;i:29;i:1;i:44;i:2;i:45;i:3;i:50;i:4;i:53;i:5;i:57;i:6;i:62;}i:30;a:4:{i:0;i:31;i:1;i:41;i:2;i:48;i:3;i:59;}i:32;a:8:{i:0;i:33;i:1;i:42;i:2;i:49;i:3;i:51;i:4;i:52;i:5;i:55;i:6;i:60;i:7;i:63;}i:34;a:5:{i:0;i:35;i:1;i:43;i:2;i:56;i:3;i:58;i:4;i:61;}i:36;a:3:{i:0;i:37;i:1;i:40;i:2;i:47;}}','yes'),(879,0,'_transient_timeout_feed_63c1c48257f28134bfcdde7e0a398401','1309896584','no'),(880,0,'_transient_feed_63c1c48257f28134bfcdde7e0a398401','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:52:\"link:http://localhost/freiland/ - 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:89:\"http://www.google.com/search?ie=utf-8&q=link:http://localhost/freiland/&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:85:\"Your search - <b>link:http://localhost/freiland/</b> - 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:7:{s:12:\"content-type\";s:28:\"text/xml; charset=ISO-8859-1\";s:4:\"date\";s:29:\"Tue, 05 Jul 2011 08:09:44 GMT\";s:7:\"expires\";s:2:\"-1\";s:13:\"cache-control\";s:18:\"private, max-age=0\";s:10:\"set-cookie\";s:143:\"PREF=ID=fb08052469bb89bf:FF=0:TM=1309853384:LM=1309853384:S=KwbzbYMKnfQfVlCZ; expires=Thu, 04-Jul-2013 08:09:44 GMT; path=/; domain=.google.com\";s:6:\"server\";s:3:\"gws\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";}s:5:\"build\";s:14:\"20090627192103\";}','no'),(885,0,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1309896585','no'),(886,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:\"Mon, 04 Jul 2011 21:08: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: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:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.org/?v=3.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:\"item\";a:10:{i:0;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:27:\"WordPress 3.2 now available\";s: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://wordpress.org/news/2011/07/gershwin/\";s: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:52:\"http://wordpress.org/news/2011/07/gershwin/#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, 04 Jul 2011 21:07: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: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=1924\";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:329:\"Here in the U.S. we are observing Independence Day, and I can’t think of a more fitting way to mark a day that celebrates freedom than by releasing more free software to help democratize publishing around the globe. I’m excited to announce that WordPress 3.2 is now available to the world, both as an update in [...]\";s: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:14127:\"<p>Here in the U.S. we are observing Independence Day, and I can’t think of a more fitting way to mark a day that celebrates freedom than by releasing more free software to help democratize publishing around the globe. I’m excited to announce that WordPress 3.2 is now available to the world, both as an update in your dashboard and a <a href=\"http://wordpress.org/\">download on WordPress.org</a>. Version 3.2 is our fifteenth major release of WordPress and comes just four months after 3.1 (which coincidentally just passed the 15 million download mark this morning), reflecting the growing speed of development in the WordPress community and our dedication to getting improvements in your hands as soon as possible. We’re dedicating this release to noted composer and pianist <a href=\"http://en.wikipedia.org/wiki/George_Gershwin\">George Gershwin</a>.</p>\n<p><em>Before we get to the release, in anticipation of the State of the Word speech at the upcoming <a href=\"http://2011.sf.wordcamp.org/\">WordCamp San Francisco</a> (the annual WordPress conference) we’re doing a survey or census of the WordPress world. If you have a moment, <a href=\"http://wpsurvey.polldaddy.com/s/wp-2011\">please fill out this survey</a> and we’ll share what <em>we learn by </em>publishing the aggregate results in August.</em></p>\n<p>The focus for this release was <strong>making WordPress faster and lighter</strong>. The first thing you’ll notice when you log in to 3.2 is a <strong>refreshed dashboard design</strong> that tightens the typography, design, and code behind the admin. (Rhapsody in Grey?) If you’re starting a new blog, you’ll also appreciate the fully HTML5 <strong>new Twenty Eleven theme</strong>, fulfilling our plan to replace the default theme every year. Start writing your first post in our redesigned post editor and venture to the full-screen button in the editing toolbar to enter the new <strong>distraction-free writing or zen mode</strong>, my personal favorite feature of the release. All of the widgets, menus, buttons, and interface elements fade away to allow you to compose and edit your thoughts in a completely clean environment conducive to writing, but when your mouse strays to the top of the screen your most-used shortcuts are right there where you need them. (I like to press F11 to take my browser full-screen, getting rid of even the OS chrome.)</p>\n<p><embed src=\"http://v.wordpress.com/ac07H291\" type=\"application/x-shockwave-flash\" width=\"600\" height=\"337\" allowscriptaccess=\"always\" allowfullscreen=\"true\" wmode=\"transparent\"></embed></p>\n<p>Under the hood there have been a number of improvements, not the least of which is the <strong>streamlining</strong> enabled by our <a href=\"http://wordpress.org/news/2010/07/eol-for-php4-and-mysql4/\">previously announced plan</a> of retiring support for PHP4, older versions of MySQL, and legacy browsers like IE6, which allows us to take advantage of more features enabled by new technologies. The <strong>admin bar</strong> has a few more shortcuts to your most commonly-used actions. On the comment moderation screen, the new <strong>approve & reply</strong> feature speeds up your conversation management. You’ll notice in your first update after 3.2 that we’ll only be updating the files that have changed with each new release instead of every file in your WordPress installation, which makes <strong>updates significantly faster on all hosting platforms</strong>. There are also some fun new theme features shown off by Twenty Eleven, like the ability to have multiple <strong>rotating header images</strong> to highlight all of your favorite photos.</p>\n<p>There is way more, like our new freedoms and credits screens (linked from your dashboard footer), so for the full story check out the <a href=\"http://codex.wordpress.org/Version_3.2\">Codex page on 3.2</a> or the <a href=\"http://core.trac.wordpress.org/milestone/3.2\">Trac milestone which includes the 400+ tickets closed in this release</a>.</p>\n<h3>A Community Effort</h3>\n<p>We now finally have a credits page inside of WordPress itself (though a cool revision is coming in 3.3), but for posterity let’s give a round of applause to these fine folks who contributed to 3.2:</p>\n<p><a href=\"http://profiles.wordpress.org/users/technosailor\">Aaron Brazell</a>, <a href=\"http://profiles.wordpress.org/users/aaroncampbell\">Aaron Campbell</a>, <a href=\"http://profiles.wordpress.org/users/jorbin\">Aaron Jorbin</a>, <a href=\"http://profiles.wordpress.org/users/kawauso\">Adam Harley</a>, <a href=\"http://profiles.wordpress.org/users/xknown\">Alex Concha</a>, <a href=\"http://profiles.wordpress.org/users/ampt\">ampt</a>, <a href=\"http://profiles.wordpress.org/users/nacin\">Andrew Nacin</a>, <a href=\"http://profiles.wordpress.org/users/azaozz\">Andrew Ozz</a>, <a href=\"http://profiles.wordpress.org/users/andrewryno\">andrewryno</a>, <a href=\"http://profiles.wordpress.org/users/andy\">andy</a>, <a href=\"http://profiles.wordpress.org/users/filosofo\">Austin Matzko</a>, <a href=\"http://profiles.wordpress.org/users/benchapman\">BenChapman</a>, <a href=\"http://profiles.wordpress.org/users/empireoflight\">Ben Dunkle</a>, <a href=\"http://profiles.wordpress.org/users/bluntelk\">bluntelk</a>, <a href=\"http://profiles.wordpress.org/users/boonebgorges\">Boone Gorges</a>, <a href=\"http://profiles.wordpress.org/users/cnorris23\">Brandon Allen</a>, <a href=\"http://profiles.wordpress.org/users/brandonburke\">Brandon Burke</a>, <a href=\"http://profiles.wordpress.org/users/caspie\">Caspie</a>, <a href=\"http://profiles.wordpress.org/users/cfinke\">cfinke</a>, <a href=\"http://profiles.wordpress.org/users/charlesclarkson\">charlesclarkson</a>, <a href=\"http://profiles.wordpress.org/users/chexee\">chexee</a>, <a href=\"http://profiles.wordpress.org/users/coffee2code\">coffee2code</a>, <a href=\"http://profiles.wordpress.org/users/scribu\">Cristi Burcă</a>, <a href=\"http://profiles.wordpress.org/users/daniloercoli\">daniloercoli</a>, <a href=\"http://profiles.wordpress.org/users/koopersmith\">Daryl Koopersmith</a>, <a href=\"http://profiles.wordpress.org/users/dcowgill\">David Cowgill</a>, <a href=\"http://profiles.wordpress.org/users/jdtrower\">David Trower</a>, <a href=\"http://profiles.wordpress.org/users/demetris\">demetris</a>, <a href=\"http://profiles.wordpress.org/users/devinreams\">Devin Reams</a>, <a href=\"http://profiles.wordpress.org/users/dd32\">Dion Hulse</a>, <a href=\"http://profiles.wordpress.org/users/dllh\">dllh</a>, <a href=\"http://profiles.wordpress.org/users/ocean90\">Dominik Schilling</a>, <a href=\"http://profiles.wordpress.org/users/dougwrites\">Doug Provencio</a>, <a href=\"http://profiles.wordpress.org/users/dvwallin\">dvwallin</a>, <a href=\"http://profiles.wordpress.org/users/cyberhobo\">Dylan Kuhn</a>, <a href=\"http://profiles.wordpress.org/users/ericmann\">Eric Mann</a>, <a href=\"http://profiles.wordpress.org/users/fabifott\">fabifott</a>, <a href=\"http://profiles.wordpress.org/users/peaceablewhale\">Franklin Tse</a>, <a href=\"http://profiles.wordpress.org/users/frumph\">Frumph</a>, <a href=\"http://profiles.wordpress.org/users/garyc40\">garyc40</a>, <a href=\"http://profiles.wordpress.org/users/blepoxp\">Glenn Ansley</a>, <a href=\"http://profiles.wordpress.org/users/guyn\">guyn</a>, <a href=\"http://profiles.wordpress.org/users/hakre\">hakre</a>, <a href=\"http://profiles.wordpress.org/users/hebbet\">hebbet</a>, <a href=\"http://profiles.wordpress.org/users/helenyhou\">Helen Hou-Sandi</a>, <a href=\"http://profiles.wordpress.org/users/hew\">hew</a>, <a href=\"http://profiles.wordpress.org/users/holizz\">holizz</a>, <a href=\"http://profiles.wordpress.org/users/iandstewart\">Ian Stewart</a>, <a href=\"http://profiles.wordpress.org/users/jacobwg\">Jacob Gillespie</a>, <a href=\"http://profiles.wordpress.org/users/jane\">Jane Wells</a>, <a href=\"http://profiles.wordpress.org/users/jayjdk\">Jayjdk</a>, <a href=\"http://profiles.wordpress.org/users/jfarthing84\">Jeff Farthing</a>, <a href=\"http://profiles.wordpress.org/users/jkudish\">Joachim Kudish</a>, <a href=\"http://profiles.wordpress.org/users/joelhardi\">joelhardi</a>, <a href=\"http://profiles.wordpress.org/users/johnbillion\">John Blackbourn</a>, <a href=\"http://profiles.wordpress.org/users/aldenta\">John Ford</a>, <a href=\"http://profiles.wordpress.org/users/johnjamesjacoby\">John James Jacoby</a>, <a href=\"http://profiles.wordpress.org/users/johnonolan\">JohnONolan</a>, <a href=\"http://profiles.wordpress.org/users/duck_\">Jon Cave</a>, <a href=\"http://profiles.wordpress.org/users/joostdevalk\">joostdevalk</a>, <a href=\"http://profiles.wordpress.org/users/koke\">Jorge Bernal</a>, <a href=\"http://profiles.wordpress.org/users/josephscott\">Joseph Scott</a>, <a href=\"http://profiles.wordpress.org/users/jtsternberg\">Justin Sternberg</a>, <a href=\"http://profiles.wordpress.org/users/greenshady\">Justin Tadlock</a>, <a href=\"http://profiles.wordpress.org/users/kevinb\">kevinB</a>, <a href=\"http://profiles.wordpress.org/users/knutsp\">Knut Sparhell</a>, <a href=\"http://profiles.wordpress.org/users/kovshenin\">kovshenin</a>, <a href=\"http://profiles.wordpress.org/users/tenpura\">Kuraishi</a>, <a href=\"http://profiles.wordpress.org/users/lancewillett\">Lance Willett</a>, <a href=\"http://profiles.wordpress.org/users/linuxologos\">linuxologos</a>, <a href=\"http://profiles.wordpress.org/users/lloydbudd\">lloydbudd</a>, <a href=\"http://profiles.wordpress.org/users/ldebrouwer\">Luc De Brouwer</a>, <a href=\"http://profiles.wordpress.org/users/marcis20\">marcis20</a>, <a href=\"http://profiles.wordpress.org/users/markjaquith\">Mark Jaquith</a>, <a href=\"http://profiles.wordpress.org/users/markmcwilliams\">Mark McWilliams</a>, <a href=\"http://profiles.wordpress.org/users/tfnab\">Martin Lormes</a>, <a href=\"http://profiles.wordpress.org/users/matveb\">Matías Ventura</a>, <a href=\"http://profiles.wordpress.org/users/sivel\">Matt Martz</a>, <a href=\"http://profiles.wordpress.org/users/iammattthomas\">Matt Thomas</a>, <a href=\"http://profiles.wordpress.org/users/mattyrob\">MattyRob</a>, <a href=\"http://profiles.wordpress.org/users/mcepl\">mcepl</a>, <a href=\"http://profiles.wordpress.org/users/mdawaffe\">mdawaffe</a>, <a href=\"http://profiles.wordpress.org/users/mfields\">Michael Fields</a>, <a href=\"http://profiles.wordpress.org/users/michaelh\">MichaelH</a>, <a href=\"http://profiles.wordpress.org/users/michaeltyson\">michaeltyson</a>, <a href=\"http://profiles.wordpress.org/users/dh-shredder\">Mike Schroder</a>, <a href=\"http://profiles.wordpress.org/users/dimadin/\">Milan Dinić</a>, <a href=\"http://profiles.wordpress.org/users/mintindeed\">mintindeed</a>, <a href=\"http://profiles.wordpress.org/users/mitchoyoshitaka\">mitchoyoshitaka</a>, <a href=\"http://profiles.wordpress.org/users/batmoo\">Mohammad Jangda</a>, <a href=\"http://profiles.wordpress.org/users/mrroundhill\">mrroundhill</a>, <a href=\"http://profiles.wordpress.org/users/natecook\">natecook</a>, <a href=\"http://profiles.wordpress.org/users/nathanrice\">nathanrice</a>, <a href=\"http://profiles.wordpress.org/users/niallkennedy\">Niall Kennedy</a>, <a href=\"http://profiles.wordpress.org/users/nickbohle\">Nick Bohle</a>, <a href=\"http://profiles.wordpress.org/users/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"http://profiles.wordpress.org/users/nuxwin\">nuxwin</a>, <a href=\"http://profiles.wordpress.org/users/otto42\">Otto</a>, <a href=\"http://profiles.wordpress.org/users/pavelevap\">pavelevap</a>, <a href=\"http://profiles.wordpress.org/users/petemall\">pete.mall</a>, <a href=\"http://profiles.wordpress.org/users/westi\">Peter Westwood</a>, <a href=\"http://profiles.wordpress.org/users/nprasath002\">Prasath Nadarajah</a>, <a href=\"http://profiles.wordpress.org/users/ptahdunbar\">Ptah Dunbar</a>, <a href=\"http://profiles.wordpress.org/users/bi0xid\">Rafael Poveda</a>, <a href=\"http://profiles.wordpress.org/users/rahe\">Rahe</a>, <a href=\"http://profiles.wordpress.org/users/ramiy\">Ramiy</a>, <a href=\"http://profiles.wordpress.org/users/rasheed\">Rasheed Bydousi</a>, <a href=\"http://profiles.wordpress.org/users/greuben\">Reuben Gunday</a>, <a href=\"http://profiles.wordpress.org/users/miqrogroove\">Robert Chapin</a>, <a href=\"http://profiles.wordpress.org/users/wpmuguru\">Ron Rennick</a>, <a href=\"http://profiles.wordpress.org/users/rosshanney\">Ross Hanney</a>, <a href=\"http://profiles.wordpress.org/users/ryan\">Ryan Boren</a>, <a href=\"http://profiles.wordpress.org/users/ryanimel\">Ryan Imel</a>, <a href=\"http://profiles.wordpress.org/users/zeo\">Safirul Alredha</a>, <a href=\"http://profiles.wordpress.org/users/solarissmoke\">Samir Shah</a>, <a href=\"http://profiles.wordpress.org/users/saracannon\">saracannon</a>, <a href=\"http://profiles.wordpress.org/users/sbressler\">sbressler</a>, <a href=\"http://profiles.wordpress.org/users/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"http://profiles.wordpress.org/users/shakenstirred\">shakenstirred</a>, <a href=\"http://profiles.wordpress.org/users/sidharrell\">Sidney Harrell</a>, <a href=\"http://profiles.wordpress.org/users/pross\">Simon Prosser</a>, <a href=\"http://profiles.wordpress.org/users/sorich87\">sorich87</a>, <a href=\"http://profiles.wordpress.org/users/szadok\">szadok</a>, <a href=\"http://profiles.wordpress.org/users/tetele\">tetele</a>, <a href=\"http://profiles.wordpress.org/users/tigertech\">tigertech</a>, <a href=\"http://profiles.wordpress.org/users/trepmal\">trepmal</a>, <a href=\"http://profiles.wordpress.org/users/utkarsh\">Utkarsh Kukreti</a>, <a href=\"http://profiles.wordpress.org/users/valentinas\">valentinas</a>, <a href=\"http://profiles.wordpress.org/users/webduo\">webduo</a>, <a href=\"http://profiles.wordpress.org/users/xibe\">Xavier Borderie</a>, <a href=\"http://profiles.wordpress.org/users/yoavf\">Yoav Farhi</a>, <a href=\"http://profiles.wordpress.org/users/vanillalounge\">Ze Fontainhas</a>, and <a href=\"http://profiles.wordpress.org/users/ziofix\">ziofix</a>.</p>\n<p><strong>Bonus:</strong> On their WordPress.org profiles over 20,000 people have said they make their living from WordPress. Are you one of them? <a href=\"http://wpsurvey.polldaddy.com/s/wp-2011\">Don’t forget to take a minute for our survey</a>.</p>\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:48:\"http://wordpress.org/news/2011/07/gershwin/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:53:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"Are You Ready for WordPress 3.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:66:\"http://wordpress.org/news/2011/07/are-you-ready-for-wordpress-3-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:75:\"http://wordpress.org/news/2011/07/are-you-ready-for-wordpress-3-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:\"Sun, 03 Jul 2011 23:32: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:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:7:\"Hosting\";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:12:\"health 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:\"\";}i:2;a:5:{s:4:\"data\";s:20:\"minimum requirements\";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:5:{s:4:\"data\";s:5:\"MySQL\";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:5:{s:4:\"data\";s:3:\"PHP\";s: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=1952\";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:312:\"WordPress 3.2 is going to be released very soon, and we want you to be ready! Take note: the minimum requirements are changing. PHP and MySQL As of 3.2, you’ll need to be running PHP 5.2.4 and MySQL 5.0. As we mentioned almost a year ago when we announced that this change was coming, the percentage [...]\";s: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:4342:\"<p>WordPress 3.2 is going to be released very soon, and we want you to be ready! Take note: <strong>the minimum requirements are changing</strong>.</p>\n<h3>PHP and MySQL</h3>\n<p>As of 3.2, you’ll need to be running PHP 5.2.4 and MySQL 5.0. <a title=\"EOL Announcement for PHP4 and MySQL4\" href=\"http://wordpress.org/news/2010/07/eol-for-php4-and-mysql4/\">As we mentioned almost a year ago when we announced that this change was coming</a>, the percentage of people running older versions of PHP and MySQL is relatively low. With more than 45 million people using WordPress, though, even a small percentage can mean a lot of people! Don’t caught with your <del>pants</del> dashboard down — make sure you’re running compatible versions of PHP and MySQL before you update <del>tomorrow</del> when WordPress 3.2 is released.</p>\n<p>Log in to your hosting account, and check to make sure you have at least PHP 5.2.4 and MySQL 5.0. Most of the major hosts already default to these or newer versions, but there are some exceptions. Check to see which versions you are running, and if you’re still on an older version, it should be as simple as changing a dropdown menu and clicking Save to get up to date.</p>\n<p>If you don’t know how to find this information in your hosting account or you don’t even know how to access your hosting control panel because someone else manages that for you, don’t fret. You can <a href=\"http://wordpress.org/extend/plugins/health-check/\">find out if you’re ready for 3.2 with the Health Check plugin</a>. In your dashboard, go to Plugins → Add New and search for “health check” (it should be the first result). Install it, activate it, and it will tell you if you need to update anything.</p>\n<p>If you need more help, contact your host’s customer service and use this email template to ask them to help you.</p>\n<blockquote><p>Hi there. I host my domain [example.com] with you, and I run WordPress on my site. The minimum requirements are changing to PHP 5.2.4 and MySQL 5.0, and I would appreciate your help in confirming that my site’s setup meets these requirements. If I’m currently running an older version of PHP or MySQL, could you update it for me, or tell me how to do it? Thanks so much!</p></blockquote>\n<p>If your host replies that they can’t update to these versions, it might be time to <a href=\"http://wordpress.org/hosting/\">look for a new host</a>.</p>\n<h3>IE6 and Outdated Browsers</h3>\n<p>With 3.2, we’re also dropping support for Internet Explorer 6, a 10-years-old outdated browser that even <a href=\"http://www.ie6countdown.com/\">Microsoft is ready to leave behind</a>. From now on, if you access your WordPress dashboard from an outdated browser, we’ll let you know. Why? Because as web technology improves, so does WordPress, as we build features to take advantage of these improvements. If you’re using an out-of-date browser, chances are you’re missing out.</p>\n<p>If your browser is out of date, you’ll see a friendly orangey-yellow box in your dashboard letting you know you a newer version is available (which you can dismiss, of course). If you’re using IE6, though, the box will be red, and your dashboard will not function properly. If you’re stuck on IE6 because the computer you use is maintained by a business, library, school, or the like, and you are not able to download a newer browser, here’s a sample email you can use to ask your boss/administrator/IT guys to update the browser.</p>\n<blockquote><p>Hi there. The computer I use at [where you use the computer] is equipped with an out-of-date web browser. Internet Explorer 6 was created 10 years ago, before modern web standards, and does not support modern web applications. More and more sites and applications are dropping support for IE6, including the new version of WordPress. Even Microsoft, the makers of IE6, are counting down until IE6 goes the way of the dinosaur (see http://www.ie6countdown.com/ for more information). Can you please install an updated version of IE or any modern browser (see http://browsehappy.com for more information) on the available computers? Thank you very much.</p></blockquote>\n<p>Welcome to the future!</p>\n<p> </p>\n<p> </p>\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:71:\"http://wordpress.org/news/2011/07/are-you-ready-for-wordpress-3-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:2;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:45:\"WordPress 3.1.4 (and 3.2 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:50:\"http://wordpress.org/news/2011/06/wordpress-3-1-4/\";s: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/2011/06/wordpress-3-1-4/#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, 29 Jun 2011 19:00: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: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:33:\"http://wordpress.org/news/?p=1927\";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:368:\"WordPress 3.1.4 is available now and is a maintenance and security update for all previous versions. This release fixes an issue that could allow a malicious Editor-level user to gain further access to the site. Thanks K. Gudinavicius of SEC Consult for bringing this to our attention. Version 3.1.4 also incorporates several other security fixes and hardening [...]\";s: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:2016:\"<p>WordPress 3.1.4 is available now and is a maintenance and security update for all previous versions.</p>\n<p>This release fixes an issue that could allow a malicious Editor-level user to gain further access to the site. Thanks K. Gudinavicius of <a href=\"http://www.sec-consult.com/\">SEC Consult</a> for bringing this to our attention. Version 3.1.4 also incorporates several other security fixes and hardening measures thanks to the work of WordPress developers <a href=\"http://www.buayacorp.com/\">Alexander Concha</a> and <a href=\"http://joncave.co.uk/\">Jon Cave</a> of our security team. Consult the <a href=\"http://core.trac.wordpress.org/log/branches/3.1/?action=stop_on_copy&mode=stop_on_copy&rev=18377&stop_rev=18043\">change log</a> for more details.</p>\n<p><strong><a href=\"http://wordpress.org/download/\"><strong>Download WordPress 3.1.4</strong></a> or update immediately from the Dashboard → Updates menu in your site’s admin area.</strong></p>\n<h3>WordPress 3.2 Release Candidate 3</h3>\n<p>This release was about all that stood in the way of a final release of WordPress 3.2. So we’re also announcing the third release candidate for 3.2, which contains all of the fixes in 3.1.4; few minor RTL, JavaScript, and user interface fixes; and ensures graceful failures if 3.2 is run on PHP4. As a reminder, we’ve bumped our minimum requirements for version 3.2 to PHP 5.2.4 and MySQL 5.0.</p>\n<p>To test WordPress 3.2, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester plugin</a> (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.2-RC3.zip\">download the release candidate here</a> (zip). At this stage, plugin authors should be doing final tests to ensure compatibility.</p>\n<p><em>Bonus: For more on what to test and what to do if you find an issue, please read <a href=\"http://wordpress.org/news/2011/05/wordpress-3-2-beta-1/\">our Beta 1 post</a>.</em></p>\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/2011/06/wordpress-3-1-4/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:33:\"WordPress 3.2 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/06/wordpress-3-2-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/06/wordpress-3-2-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:\"Fri, 24 Jun 2011 23:15: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Testing\";s: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=1915\";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:\"Howdy! The second release candidate for WordPress 3.2 is now available. If you haven’t tested WordPress 3.2 yet, now is the time — please though, not on your live site unless you’re extra adventurous. We’ve handled a number of issues since RC1, including additional Twenty Eleven tweaks, a new theme support option for defaulting to [...]\";s: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:1876:\"<p>Howdy! The second release candidate for WordPress 3.2 is now available. If you haven’t tested WordPress 3.2 yet, now is the time — please though, not on your live site unless you’re extra adventurous.</p>\n<p>We’ve handled a number of issues since RC1, including additional Twenty Eleven tweaks, a new theme support option for defaulting to randomized headers, and various RTL fixes.</p>\n<p>Plugin and theme authors, <strong>please test your plugins and themes now</strong>, so that if there is a compatibility issue, we can figure it out before the final release. Users are also encouraged to test things out. If you find problems, let your plugin/theme authors know so they can figure out the cause. If you are testing the release candidate and think you’ve found a bug, there are a few ways to let us know:</p>\n<ul>\n<li>Post it to the <a href=\"http://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area in the support forums</a> or <a href=\"http://lists.automattic.com/mailman/listinfo/wp-testers\">wp-testers</a></li>\n<li>Join the development IRC channel and tell us live at irc.freenode.net #wordpress-dev</li>\n<li>File a bug ticket on the <a href=\"http://core.trac.wordpress.org/\">WordPress Trac</a></li>\n</ul>\n<p>To test WordPress 3.2, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester plugin</a> (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.2-RC2.zip\">download the release candidate here</a> (zip).</p>\n<p>If any known issues crop up, you’ll be able to <a href=\"http://core.trac.wordpress.org/report/5\">find them here</a>. If you’d like to know which levers to pull in your testing, <a href=\"http://wordpress.org/news/2011/05/wordpress-3-2-beta-1/\">check out a list of features</a> in our Beta 1 post.</p>\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/06/wordpress-3-2-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:4;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:15:\"Passwords Reset\";s: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/2011/06/passwords-reset/\";s: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/2011/06/passwords-reset/#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, 21 Jun 2011 23:57: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:8:\"category\";a:1:{i:0;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:33:\"http://wordpress.org/news/?p=1908\";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:376:\"Earlier today the WordPress team noticed suspicious commits to several popular plugins (AddThis, WPtouch, and W3 Total Cache) containing cleverly disguised backdoors. We determined the commits were not from the authors, rolled them back, pushed updates to the plugins, and shut down access to the plugin repository while we looked for anything else unsavory. We’re [...]\";s: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:1290:\"<p>Earlier today the WordPress team noticed suspicious commits to several popular plugins (AddThis, WPtouch, and W3 Total Cache) containing cleverly disguised backdoors. We determined the commits were not from the authors, rolled them back, pushed updates to the plugins, and shut down access to the plugin repository while we looked for anything else unsavory.</p>\n<p>We’re still investigating what happened, but as a prophylactic measure we’ve decided to force-reset all passwords on WordPress.org. To use the forums, trac, or commit to a plugin or theme, you’ll need to <a href=\"http://wordpress.org/support/bb-login.php\">reset your password to a new one</a>. (Same for bbPress.org and BuddyPress.org.)</p>\n<p>As a user, make sure to never use the same password for two different services, and we encourage you not to reset your password to be the same as your old one.</p>\n<p>Second, if you use <a href=\"http://wordpress.org/extend/plugins/addthis/\">AddThis</a>, <a href=\"http://wordpress.org/extend/plugins/wptouch/\">WPtouch</a>, or <a href=\"http://wordpress.org/extend/plugins/w3-total-cache/\">W3 Total Cache</a> and there’s a possibility you could have updated in the past day, make sure to visit your updates page and upgrade each to the latest version.</p>\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/2011/06/passwords-reset/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:47:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 3.2 Release Candidate\";s: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/news/2011/06/wordpress-3-2-release-candidate/\";s: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:75:\"http://wordpress.org/news/2011/06/wordpress-3-2-release-candidate/#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, 14 Jun 2011 04:28: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:8:\"category\";a:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"Testing\";s: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=1890\";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:341:\"The first release candidate (RC1) for WordPress 3.2 is now available. An RC comes after the beta period and before final release. We think we’re done, but with tens of millions of users, a variety of configurations, and thousands of plugins, it’s possible we’ve missed something. So if you haven’t tested WordPress 3.2 yet, 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: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:2297:\"<p>The first release candidate (RC1) for WordPress 3.2 is now available.</p>\n<p>An RC comes after the beta period and before final release. We think we’re done, but with tens of millions of users, a variety of configurations, and thousands of plugins, it’s possible we’ve missed something. So if you haven’t tested WordPress 3.2 yet, now is the time! Please though, not on your live site unless you’re extra adventurous.</p>\n<p>Things to keep in mind:</p>\n<ul>\n<li>With <a href=\"http://core.trac.wordpress.org/milestone/3.2\">more than 350 tickets closed</a>, there are plenty of changes. Plugin and theme authors, <strong>please test your plugins and themes now</strong>, so that if there is a compatibility issue, we can figure it out before the final release.</li>\n<li><strong>Users</strong> are also encouraged to test things out. If you find problems, let your plugin/theme authors know so they can figure out the cause.</li>\n<li>Twenty Eleven isn’t quite at the release candidate stage. <a href=\"http://cheezburger.com/Mmmbop/lolz/View/4683101952\">Contents may settle</a>.</li>\n<li>If any known issues crop up, you’ll be able to <a href=\"http://core.trac.wordpress.org/report/5\">find them here</a>.</li>\n</ul>\n<p>If you are testing the release candidate and think you’ve found a bug, there are a few ways to let us know:</p>\n<ul>\n<li>Post it to the <a href=\"http://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area in the support forums</a> or <a href=\"http://lists.automattic.com/mailman/listinfo/wp-testers\">wp-testers</a></li>\n<li>Join the development IRC channel and tell us live at irc.freenode.net #wordpress-dev</li>\n<li>File a bug ticket on the <a href=\"http://core.trac.wordpress.org/\">WordPress Trac</a></li>\n</ul>\n<p>To test WordPress 3.2, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester plugin</a> (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.2-RC1.zip\">download the release candidate here</a> (zip).</p>\n<p>Happy testing!</p>\n<p><em>If you’d like to know which levers to pull in your testing, <a href=\"http://wordpress.org/news/2011/05/wordpress-3-2-beta-1/\">check out a list of features</a> in our Beta 1 post.</em></p>\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:71:\"http://wordpress.org/news/2011/06/wordpress-3-2-release-candidate/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:47:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordCamp San Francisco Call for Speakers\";s: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:75:\"http://wordpress.org/news/2011/05/wordcamp-san-francisco-call-for-speakers/\";s: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:84:\"http://wordpress.org/news/2011/05/wordcamp-san-francisco-call-for-speakers/#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, 31 May 2011 18:59: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:8:\"category\";a:3:{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:8:\"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:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"wcsf\";s: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=1886\";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:425:\"The annual WordPress conference, WordCamp San Francisco (home of the very first WordCamp), is now accepting speaker applications. Past speakers have included core WordPress developers, people building successful businesses on WordPress, popular bloggers, people from related projects and businesses…you name it. In addition to Matt Mullenweg’s annual “State of the Word” address, WCSF has played [...]\";s: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:905:\"<p>The annual WordPress conference, <a href=\"http://2011.sf.wordcamp.org/\">WordCamp San Francisco</a> (home of the very first WordCamp), is now accepting speaker applications. Past speakers have included core WordPress developers, people building successful businesses on WordPress, popular bloggers, people from related projects and businesses…you name it. In addition to Matt Mullenweg’s annual “State of the Word” address, WCSF has played host to talks by people like Mark Jaquith, Matt Cutts, Richard Stallman, Scott Berkun, Karl Fogel, Tim Ferriss, Tara Hunt, Chris Pirillo, and John Lilly. With 3 days of content this year instead of just one, the list of speakers should be even more impressive. If you think you’d make a good addition to this year’s roster, check out the <a href=\"http://2011.sf.wordcamp.org/call-for-speakers/\">WCSF Call for Speakers</a>.</p>\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:80:\"http://wordpress.org/news/2011/05/wordcamp-san-francisco-call-for-speakers/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:47:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"WordPress 3.1.3 (and WordPress 3.2 Beta 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:50:\"http://wordpress.org/news/2011/05/wordpress-3-1-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/news/2011/05/wordpress-3-1-3/#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, 25 May 2011 18:43: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:8:\"category\";a:3:{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:\"\";}i:2;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:33:\"http://wordpress.org/news/?p=1838\";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:408:\"WordPress 3.1.3 is available now and is a security update for all previous versions. It contains the following security fixes and enhancements: Various security hardening by Alexander Concha. Taxonomy query hardening by John Lamansky. Prevent sniffing out user names of non-authors by using canonical redirects. Props Verónica Valeros. Media security fixes by Richard Lundeen of Microsoft, Jesse Ou [...]\";s: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:\"Mark Jaquith\";s: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:3497:\"<p><a href=\"http://wordpress.org/download/\">WordPress 3.1.3</a> is available now and is a security update for all previous versions. It contains the following security fixes and enhancements:</p>\n<ul>\n<li>Various security hardening by <a href=\"http://www.buayacorp.com\">Alexander Concha</a>.</li>\n<li>Taxonomy query hardening by <a href=\"http://johnlamansky.com/wordpress\">John Lamansky</a>.</li>\n<li>Prevent sniffing out user names of non-authors by using canonical redirects. Props <a href=\"http://www.talsoft.com.ar\">Verónica Valeros</a>.</li>\n<li>Media security fixes by Richard Lundeen of <a href=\"http://www.microsoft.com/\">Microsoft</a>, Jesse Ou of <a href=\"http://www.microsoft.com/\">Microsoft</a>, and <a href=\"http://www.microsoft.com/security/msrc/default.aspx\">Microsoft Vulnerability Research</a>.</li>\n<li>Improves file upload security on hosts with dangerous security settings.</li>\n<li>Cleans up old WordPress import files if the import does not finish.</li>\n<li>Introduce “clickjacking” protection in modern browsers on admin and login pages.</li>\n</ul>\n<p>Consult the <a href=\"http://core.trac.wordpress.org/log/branches/3.1/?action=stop_on_copy&mode=stop_on_copy&rev=18023&stop_rev=17805&limit=100\">change log</a> for more details.</p>\n<p><a href=\"http://wordpress.org/download/\">Download WordPress 3.1.3</a> or update automatically from the Dashboard → Updates menu in your site’s admin area.</p>\n<hr />\n<h3>WordPress 3.2 Beta 2 also available</h3>\n<p>In other news, our development of WordPress 3.2 development continues right on schedule. We released <a href=\"http://wordpress.org/news/2011/05/wordpress-3-2-beta-1/\">Beta 1</a> thirteen days ago, and today we’re putting out Beta 2 for your testing pleasure.</p>\n<p>This is still beta software, so <strong>we don’t recommend that you use it on production sites</strong>. But if you’re a plugin developer, a theme developer, or a site administrator, <strong>you should be running this on your test environments</strong> and <a href=\"http://codex.wordpress.org/Reporting_Bugs\">reporting any bugs</a> you find. If you’re a WordPress user who wants to open your presents early, take advantage of WordPress’ famous 5-minute install and spin up a secondary test site. Let us know what you think!</p>\n<p>The plan is to start putting out release candidates in early June, and to release WordPress 3.2 by the end of the month. The more you help us iron out issues during the beta period, the more likely we are to hit those dates. To misappropriate and mangle a quote from Mahatma Gandhi: “Be the punctuality you want to see in the WordPress.” In other words, test now!</p>\n<p>Here are some of the things that changed since Beta 1:</p>\n<ul>\n<li><a href=\"http://code.google.com/chrome/chromeframe/\">Google Chrome Frame</a> is now supported in the admin, if you have it installed. This is especially useful for IE 6 users (remember, IE 6 is otherwise deprecated for the admin).</li>\n<li>The admin is less ugly in IE 7.</li>\n<li>The blue admin color scheme has caught up to the grey one, and is ready for testing.</li>\n<li>We are now bundling jQuery 1.6.1. You should test any JS that uses jQuery. WordPress JavaScript guru Andrew Ozz has <a href=\"http://wpdevel.wordpress.com/2011/05/25/jquery-updates-in-wordpress-3-2/\">a post with more info</a>.</li>\n</ul>\n<p><a href=\"http://wordpress.org/wordpress-3.2-beta2.zip\">Download WordPress 3.2 Beta 2</a></p>\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/2011/05/wordpress-3-1-3/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: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:\"WordPress 3.2, Beta 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:55:\"http://wordpress.org/news/2011/05/wordpress-3-2-beta-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:64:\"http://wordpress.org/news/2011/05/wordpress-3-2-beta-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, 12 May 2011 08:22: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: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=1816\";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:351:\"It seems like just yesterday that we released WordPress 3.1, but it’s actually been almost three months. We’ve spent that time putting together a new release focused on performance improvements, and are ready for our first beta testers! As always, this is software still in development and we don’t recommend that you run it on [...]\";s: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:4230:\"<p>It seems like just yesterday that we released WordPress 3.1, but it’s actually been almost three months. We’ve spent that time putting together a new release focused on performance improvements, and are ready for our first beta testers!</p>\n<p>As always, this is software still in development and <strong>we don’t recommend that you run it on a production site</strong> — set up a test site just to play with the new version. If you break it (find a bug), please report it, and if you’re a developer, try to help us fix it.</p>\n<p>If all goes well, we hope to release WordPress 3.2 by the end of June, though that is (again, as always) subject to change depending on how the beta period goes. The more help we get with testing and fixing bugs, the sooner we will be able to release the final version. If you want to be a beta tester, you should check out the Codex article on <a title=\"Reporting Bugs for WordPress\" href=\"http://codex.wordpress.org/Reporting_Bugs\">how to report bugs</a>.</p>\n<p><strong>Here’s some of what’s new:</strong></p>\n<ul>\n<li><strong>Performance improvements</strong> like you wouldn’t believe. What’s that mean? Things are faster!</li>\n<li><strong>Distraction-free Writing</strong>. The visual editor’s full-screen composing experience has gotten a major overhaul, and is now available from HTML mode, too. More than ever, WordPress allows you to focus on what matters most — your content.</li>\n<li><strong>Admin UI Refresh</strong>. The last major redesign of the WordPress admin was in 2008. This isn’t a major redesign, just a little facelift to keep us feeling young. WordPress turns 8 later this month, you know.</li>\n<li><strong>New Default Theme</strong>. Introducing Twenty Eleven, based on the popular Duster theme. Rotating header images, post format support, and more.</li>\n<li><strong><a href=\"http://browsehappy.com\">Browse Happy</a></strong>. WordPress is made to work with modern browsers. If you visit your Dashboard using an outdated web browser, we’ll let you know there’s a newer version available.</li>\n<li><strong>Admin Bar</strong>. We’ve added more links to the admin bar to make it even more useful.</li>\n</ul>\n<div>\n<div><strong>Be Aware:</strong></div>\n<div>\n<ul>\n<li>WordPress has new minimum system requirements: PHP 5.2.4 and MySQL 5.0.</li>\n<li>Internet Explorer 6 will no longer be supported.</li>\n<li>The favorites menu has been removed. If you’ve written any plugins that use this menu, it’s time to switch over to an admin bar placement.</li>\n</ul>\n</div>\n</div>\n<div><strong>Known Issues</strong>:</div>\n<div>\n<ul>\n<li>We haven’t updated the blue admin color scheme yet, so do your testing in the gray zone for best results.</li>\n</ul>\n</div>\n<p>Remember, if you find something you think is a bug, report it! You can bring it up in the <a title=\"Alpha/Beta Support Forum\" href=\"http://wordpress.org/support/forum/alphabeta\">alpha/beta forum</a>, you can email it to the <a title=\"WP-testers mailing list info page\" href=\"http://lists.automattic.com/mailman/listinfo/wp-testers\">wp-testers list</a>, or if you’ve confirmed that other people are experiencing the same bug, you can report it on the <a title=\"WordPress Core Trac\" href=\"http://core.trac.wordpress.org/\">WordPress Core Trac</a>. (I recommend starting in the forum or on the mailing list.)</p>\n<p>Theme and plugin authors, if you haven’t been following the 3.2 development cycle, <strong>please start now</strong> so that you can update your themes and plugins to be compatible with the newest version of WordPress.</p>\n<p>Note to developers: WordPress is built by the contributions of hundreds of developers. If you’d like to see this release come out on time, I encourage you to pitch in. Even if you don’t have time to do testing on the beta version, you could help us by contributing a fix for one of the <a title=\"3.1 bugs that need a patch\" href=\"http://core.trac.wordpress.org/report/6\">many bugs</a> we already know about.</p>\n<p><a title=\"Download WordPress 3.2 Beta 1\" href=\"http://wordpress.org/wordpress-3.2-beta1.zip\">Download WordPress 3.2 Beta 1</a></p>\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:60:\"http://wordpress.org/news/2011/05/wordpress-3-2-beta-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:9;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:15:\"WordPress 3.1.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:50:\"http://wordpress.org/news/2011/04/wordpress-3-1-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:59:\"http://wordpress.org/news/2011/04/wordpress-3-1-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:\"Tue, 26 Apr 2011 19:00: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: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:33:\"http://wordpress.org/news/?p=1801\";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:376:\"WordPress 3.1.2 is now available and is a security release for all previous WordPress versions. This release addresses a vulnerability that allowed Contributor-level users to improperly publish posts. The issue was discovered by a member of our security team, WordPress developer Andrew Nacin, with Benjamin Balter. We suggest you update to 3.1.2 promptly, especially if [...]\";s: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:980:\"<p><a href=\"http://wordpress.org/download/\">WordPress 3.1.2</a> is now available and is a security release for all previous WordPress versions.</p>\n<p>This release addresses a vulnerability that allowed Contributor-level users to improperly publish posts.</p>\n<p>The issue was discovered by a member of our security team, WordPress developer <a href=\"http://andrewnacin.com/\">Andrew Nacin</a>, with <a href=\"http://ben.balter.com/\">Benjamin Balter</a>.</p>\n<p>We suggest you update to 3.1.2 promptly, especially if you allow users to register as contributors or if you have untrusted users. <a href=\"http://codex.wordpress.org/Version_3.1.2\">This release</a> also fixes <a title=\"Bugs fixed in 3.1.2\" href=\"http://core.trac.wordpress.org/query?milestone=3.1.2\">a few bugs</a> that missed the boat for version 3.1.1.</p>\n<p><a href=\"http://wordpress.org/download/\">Download 3.1.2</a> or update automatically from the Dashboard → Updates menu in your site’s admin area.</p>\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/2011/04/wordpress-3-1-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:\"\";}}}}}}}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:\"Tue, 05 Jul 2011 08:09:44 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:\"Mon, 04 Jul 2011 21:08:45 GMT\";s:4:\"x-nc\";s:11:\"HIT luv 138\";}s:5:\"build\";s:14:\"20090627192103\";}','no'),(745,0,'ec3_disable_popups','1','yes'),(887,0,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1309896585','no'),(888,0,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1309853385','no'),(889,0,'_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51','1309896585','no'),(890,0,'_transient_dash_4077549d03da2e451c8b5f002294ff51','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wordpress.org/news/2011/07/gershwin/\' title=\'Here in the U.S. we are observing Independence Day, and I can’t think of a more fitting way to mark a day that celebrates freedom than by releasing more free software to help democratize publishing around the globe. I’m excited to announce that WordPress 3.2 is now available to the world, both as an update in […]\'>WordPress 3.2 now available</a> <span class=\"rss-date\">Juli 4, 2011</span><div class=\'rssSummary\'>Here in the U.S. we are observing Independence Day, and I can’t think of a more fitting way to mark a day that celebrates freedom than by releasing more free software to help democratize publishing around the globe. I’m excited to announce that WordPress 3.2 is now available to the world, both as an update in […]</div></li><li><a class=\'rsswidget\' href=\'http://wordpress.org/news/2011/07/are-you-ready-for-wordpress-3-2/\' title=\'WordPress 3.2 is going to be released very soon, and we want you to be ready! Take note: the minimum requirements are changing. PHP and MySQL As of 3.2, you’ll need to be running PHP 5.2.4 and MySQL 5.0. As we mentioned almost a year ago when we announced that this change was coming, the percentage […]\'>Are You Ready for WordPress 3.2?</a> <span class=\"rss-date\">Juli 3, 2011</span><div class=\'rssSummary\'>WordPress 3.2 is going to be released very soon, and we want you to be ready! Take note: the minimum requirements are changing. PHP and MySQL As of 3.2, you’ll need to be running PHP 5.2.4 and MySQL 5.0. As we mentioned almost a year ago when we announced that this change was coming, the percentage […]</div></li></ul></div>','no'),(891,0,'_transient_timeout_feed_a5420c83891a9c88ad2a4f04584a5efc','1309896586','no'),(892,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:\"Tue, 05 Jul 2011 07:58: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:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"http://bbpress.org/?v=1.1-alpha-2855\";s: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: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:92:\"Automatically optimizes your Wordpress blog for Search Engines (Search Engine Optimization).\";s: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: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: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:150:\"WPtouch: A simple, powerful and elegant mobile theme for your website.\n\nWPtouch automatically transforms your WordPress blog into an iPhone applicatio\";s: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: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:22:\"edo888 on \"GTranslate\"\";s: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/gtranslate/#post-14437\";s: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, 26 Nov 2009 17:35: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"14437@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:\"Get translations with a single click between 58 languages (more than 98% of internet users) on 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:6:\"edo888\";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: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: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: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: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:96:\"nicashmu on \"Post video players, slideshow albums, photo galleries and music / podcast playlist\"\";s: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.org/extend/plugins/video-playlist-and-gallery-plugin/#post-23415\";s: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, 04 Jan 2011 16:16: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:\"23415@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:73:\"Post your videos, photo galleries/flash slideshows easily and in seconds.\";s: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:\"nicashmu\";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:66:\"eight7teen on \"SexyBookmarks | email, bookmark, and share buttons\"\";s: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/sexybookmarks/#post-9249\";s: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, 22 Feb 2009 11:30: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"9249@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:104:\"Adds an attractive social bookmarking menu to your posts, pages, index, or any combination of the three.\";s: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:\"eight7teen\";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: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: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:52:\"micropat on \"AddToAny: Share/Bookmark/Email Buttons\"\";s: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/add-to-any/#post-498\";s: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, 17 Mar 2007 23:08: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:40:\"498@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:148:\"Help people share, bookmark, and email your posts & pages using any service, such as Facebook, Twitter, Google, StumbleUpon, Digg and many 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:8:\"micropat\";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:36:\"Frederick Townes on \"W3 Total Cache\"\";s: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/w3-total-cache/#post-12073\";s: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, 29 Jul 2009 18:46: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"12073@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:135:\"Improve site performance and user experience via caching: browser, page, object, database, minify and content delivery network support.\";s: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:\"Frederick Townes\";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: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: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:28:\"casibus on \"ourSTATS 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:65:\"http://wordpress.org/extend/plugins/ourstatsde-widget/#post-18282\";s: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, 29 May 2010 14:16: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:\"18282@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:51:\"create a widget for the ourstats.de counter service\";s: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:\"casibus\";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:47:\"joostdevalk 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:11:\"joostdevalk\";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:36:\"Donncha O Caoimh on \"WP Super Cache\"\";s: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/wp-super-cache/#post-2572\";s: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 Nov 2007 11:40: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:41:\"2572@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:73:\"A very fast caching engine for WordPress that produces static html files.\";s: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:\"Donncha O Caoimh\";s: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:\"Tue, 05 Jul 2011 08:09:45 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-30 20:08:18\";s:14:\"content-length\";s:4:\"7999\";s:4:\"x-nc\";s:11:\"HIT luv 139\";}s:5:\"build\";s:14:\"20090627192103\";}','no'),(893,0,'_transient_timeout_feed_mod_a5420c83891a9c88ad2a4f04584a5efc','1309896586','no'),(894,0,'_transient_feed_mod_a5420c83891a9c88ad2a4f04584a5efc','1309853386','no'),(907,0,'_transient_timeout_feed_mod_1a5f760f2e2b48827d4974a60857e7c2','1309896588','no'),(908,0,'_transient_feed_mod_1a5f760f2e2b48827d4974a60857e7c2','1309853388','no'),(827,0,'flexipages_widget','a:1:{i:2;a:14:{s:5:\"title\";s:6:\"Seiten\";s:11:\"sort_column\";s:10:\"menu_order\";s:10:\"sort_order\";s:3:\"ASC\";s:9:\"exinclude\";s:7:\"include\";s:16:\"exinclude_values\";s:11:\"57,64,61,25\";s:19:\"show_subpages_check\";s:0:\"\";s:13:\"show_subpages\";s:2:\"-2\";s:9:\"hierarchy\";s:0:\"\";s:5:\"depth\";s:1:\"0\";s:15:\"show_home_check\";s:0:\"\";s:9:\"show_home\";s:4:\"Home\";s:9:\"show_date\";s:0:\"\";s:11:\"date_format\";s:0:\"\";s:8:\"dropdown\";s:0:\"\";}}','yes'),(864,0,'_site_transient_update_plugins','O:8:\"stdClass\":3:{s:12:\"last_checked\";i:1309853378;s:7:\"checked\";a:13:{s:19:\"akismet/akismet.php\";s:5:\"2.5.3\";s:33:\"blogroll-links/blogroll-links.php\";s:3:\"2.2\";s:42:\"category-event-calendar/eventcalendar3.php\";s:3:\"1.0\";s:34:\"category-event-calendar/widget.php\";s:5:\"3.1.5\";s:41:\"flexi-pages-widget/flexi-pages-widget.php\";s:5:\"1.6.6\";s:9:\"hello.php\";s:3:\"1.6\";s:37:\"lightbox-gallery/lightbox-gallery.php\";s:5:\"0.6.5\";s:27:\"nice-search/nice-search.php\";s:3:\"0.3\";s:25:\"qtranslate/qtranslate.php\";s:6:\"2.5.22\";s:30:\"smw-import/smwimport-admin.php\";s:3:\"0.1\";s:43:\"the-events-calendar/the-events-calendar.php\";s:5:\"1.6.5\";s:33:\"widget-context/widget-context.php\";s:3:\"0.7\";s:40:\"wp-no-category-base/no-category-base.php\";s:3:\"1.0\";}s:8:\"response\";a:0:{}}','yes'),(877,0,'_site_transient_browser_9c6639369101a96aa20f975e78871013','a:9:{s:8:\"platform\";s:5:\"Linux\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:3:\"5.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:1:\"5\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(903,0,'_transient_timeout_feed_mod_57bc725ad6568758915363af670fd8bc','1309896587','no'),(904,0,'_transient_feed_mod_57bc725ad6568758915363af670fd8bc','1309853387','no'),(911,0,'_transient_timeout_dash_de3249c4736ad3bd2cd29147c4a0d43e','1309896588','no'),(912,0,'_transient_dash_de3249c4736ad3bd2cd29147c4a0d43e','<h4>Beliebt</h4>\n<h5><a href=\'http://wordpress.org/extend/plugins/video-playlist-and-gallery-plugin/\'>Post video players, slideshow albums, photo galleries and music / podcast playlist</a></h5> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=video-playlist-and-gallery-plugin&_wpnonce=3bae9b01a7&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'Post video players, slideshow albums, photo galleries and music / podcast playlist\'>Jetzt installieren</a>)</span>\n<p>Post your videos, photo galleries/flash slideshows easily and in seconds.</p>\n<h4>Neue Plugins</h4>\n<h5><a href=\'http://wordpress.org/extend/plugins/posts-to-page/\'>Posts to Page</a></h5> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=posts-to-page&_wpnonce=8139918890&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'Posts to Page\'>Jetzt installieren</a>)</span>\n<p>This plugin adds a shortcode [posts-to-page] to WP allowing you to place your posts into a page.</p>\n<h4>Frisch aktualisiert</h4>\n<h5><a href=\'http://wordpress.org/extend/plugins/musopress-discography/\'>Musopress Discography</a></h5> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=musopress-discography&_wpnonce=321349d162&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'Musopress Discography\'>Jetzt installieren</a>)</span>\n<p>Creates a Discography Custom Post Type and allows you to import your albums from Bandcamp.</p>\n','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 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=2151 DEFAULT CHARSET=utf8;
/*!40101 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 (178,56,'_menu_item_object_id','54'),(177,56,'_menu_item_menu_item_parent','0'),(78,25,'_wp_page_template','default'),(77,25,'_edit_lock','1304029930:1'),(76,25,'_edit_last','1'),(16,14,'_menu_item_type','taxonomy'),(17,14,'_menu_item_menu_item_parent','0'),(18,14,'_menu_item_object_id','1'),(19,14,'_menu_item_object','category'),(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',''),(24,14,'_menu_item_orphaned','1298393364'),(155,45,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(154,45,'_menu_item_target',''),(153,45,'_menu_item_object','category'),(152,45,'_menu_item_object_id','22'),(151,45,'_menu_item_menu_item_parent','0'),(176,56,'_menu_item_type','post_type'),(150,45,'_menu_item_type','taxonomy'),(148,44,'_menu_item_url',''),(147,44,'_menu_item_xfn',''),(146,44,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(145,44,'_menu_item_target',''),(144,44,'_menu_item_object','category'),(143,44,'_menu_item_object_id','23'),(142,44,'_menu_item_menu_item_parent','0'),(141,44,'_menu_item_type','taxonomy'),(139,43,'_menu_item_url',''),(138,43,'_menu_item_xfn',''),(174,54,'_edit_last','1'),(137,43,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(136,43,'_menu_item_target',''),(135,43,'_menu_item_object','category'),(134,43,'_menu_item_object_id','15'),(97,29,'_wp_attached_file','2011/02/Freiland.jpg'),(61,19,'_menu_item_type','taxonomy'),(62,19,'_menu_item_menu_item_parent','0'),(63,19,'_menu_item_object_id','1'),(64,19,'_menu_item_object','category'),(65,19,'_menu_item_target',''),(66,19,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(67,19,'_menu_item_xfn',''),(68,19,'_menu_item_url',''),(69,19,'_menu_item_orphaned','1298393373'),(175,54,'_wp_page_template','default'),(98,29,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"780\";s:6:\"height\";s:3:\"189\";s:14:\"hwstring_small\";s:23:\"height=\'31\' width=\'128\'\";s:4:\"file\";s:20:\"2011/02/Freiland.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:20:\"Freiland-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:19:\"Freiland-300x72.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"72\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1278528123\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(99,30,'_wp_attached_file','2011/02/cropped-Freiland1.jpg'),(100,30,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"940\";s:6:\"height\";s:3:\"198\";s:14:\"hwstring_small\";s:23:\"height=\'26\' width=\'128\'\";s:4:\"file\";s:29:\"2011/02/cropped-Freiland1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:29:\"cropped-Freiland1-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:28:\"cropped-Freiland1-300x63.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"63\";}}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:\"\";}}'),(112,38,'_edit_last','1'),(113,38,'_edit_lock','1300462709:1'),(114,38,'_wp_page_template','default'),(184,54,'_edit_lock','1305549505:1'),(183,56,'_menu_item_url',''),(182,56,'_menu_item_xfn',''),(181,56,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(180,56,'_menu_item_target',''),(179,56,'_menu_item_object','page'),(133,43,'_menu_item_menu_item_parent','0'),(132,43,'_menu_item_type','taxonomy'),(156,45,'_menu_item_xfn',''),(157,45,'_menu_item_url',''),(163,50,'_wp_attached_file','2011/03/Freiland7.jpg'),(164,50,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"940\";s:6:\"height\";s:3:\"198\";s:14:\"hwstring_small\";s:23:\"height=\'26\' width=\'128\'\";s:4:\"file\";s:21:\"2011/03/Freiland7.jpg\";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:\"\";}}'),(165,52,'_menu_item_type','taxonomy'),(166,52,'_menu_item_menu_item_parent','0'),(167,52,'_menu_item_object_id','24'),(168,52,'_menu_item_object','category'),(169,52,'_menu_item_target',''),(170,52,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(171,52,'_menu_item_xfn',''),(172,52,'_menu_item_url',''),(185,57,'_edit_last','1'),(186,57,'_wp_page_template','default'),(195,57,'_edit_lock','1308932860:1'),(196,61,'_edit_last','1'),(197,61,'_wp_page_template','default'),(206,61,'_edit_lock','1305538962:1'),(207,64,'_edit_last','1'),(208,64,'_edit_lock','1308932905:1'),(209,64,'_wp_page_template','default'),(218,71,'_menu_item_type','custom'),(219,71,'_menu_item_menu_item_parent','0'),(220,71,'_menu_item_object_id','71'),(221,71,'_menu_item_object','custom'),(222,71,'_menu_item_target',''),(223,71,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(224,71,'_menu_item_xfn',''),(225,71,'_menu_item_url','http://facebook.com/freiLand.potsdam'),(252,75,'_menu_item_url','http://twitter.com/freilandpotsdam'),(250,75,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(249,75,'_menu_item_target',''),(248,75,'_menu_item_object','custom'),(247,75,'_menu_item_object_id','75'),(245,75,'_menu_item_type','custom'),(246,75,'_menu_item_menu_item_parent','0'),(236,73,'_menu_item_type','custom'),(237,73,'_menu_item_menu_item_parent','0'),(238,73,'_menu_item_object_id','73'),(239,73,'_menu_item_object','custom'),(240,73,'_menu_item_target',''),(241,73,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(242,73,'_menu_item_xfn',''),(243,73,'_menu_item_url','https://joindiaspora.com/'),(251,75,'_menu_item_xfn',''),(2097,265,'_edit_last','1'),(2098,265,'_wp_page_template','welcome.php'),(2099,265,'_edit_lock','1308297250:1'),(2108,271,'_edit_last','1'),(2109,271,'_edit_lock','1306847185:1'),(2110,271,'_wp_page_template','events404.php'),(2125,278,'_edit_last','1'),(2126,278,'_edit_lock','1307461235:1'),(2127,278,'_wp_page_template','default'),(2128,280,'_wp_attached_file','2011/06/broken_fingaz.jpg'),(2129,280,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"350\";s:6:\"height\";s:3:\"467\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'71\'\";s:4:\"file\";s:25:\"2011/06/broken_fingaz.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:25:\"broken_fingaz-112x150.jpg\";s:5:\"width\";s:3:\"112\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:25:\"broken_fingaz-224x300.jpg\";s:5:\"width\";s:3:\"224\";s:6:\"height\";s:3:\"300\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:25:\"broken_fingaz-350x198.jpg\";s:5:\"width\";s:3:\"350\";s:6:\"height\";s:3:\"198\";}}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:\"\";}}'),(2130,278,'_thumbnail_id','280'),(2131,281,'_edit_last','1'),(2132,281,'_edit_lock','1307461258:1'),(2133,281,'_wp_page_template','default'),(2134,285,'_edit_last','1'),(2135,285,'_wp_page_template','default'),(2136,285,'_edit_lock','1307461281:1'),(2137,288,'_edit_last','1'),(2138,288,'_wp_page_template','default'),(2139,288,'_edit_lock','1307461263:1'),(2140,291,'_edit_last','1'),(2141,291,'_wp_page_template','default'),(2142,291,'_edit_lock','1307461299:1'),(2143,294,'_edit_last','1'),(2144,294,'_wp_page_template','default'),(2145,294,'_edit_lock','1307461402:1'),(2146,294,'_thumbnail_id','280'),(2147,281,'_thumbnail_id','280'),(2148,288,'_thumbnail_id','280'),(2149,285,'_thumbnail_id','280'),(2150,291,'_thumbnail_id','280');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_posts`
--
DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 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=311 DEFAULT CHARSET=utf8;
/*!40101 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 (38,1,'2011-03-01 19:24:44','2011-03-01 19:24:44','[gallery]','<!--:de-->Bilder<!--:--><!--:en-->Images<!--:--><!--:zh-->Images<!--:-->','','publish','closed','open','','images','','','2011-03-18 15:38:29','2011-03-18 15:38:29','',0,'http://localhost/freiland/?page_id=38',0,'page','',0),(54,1,'2011-04-28 09:14:15','2011-04-28 09:14:15','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Aquarium</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"210,230,230,260\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Jugendclub, freiRaum, Bandhaus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"80,350,110,480\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Spartacus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"130,350,160,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Cafe</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"190,370,220,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Lager</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"100,470,170,500\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Werkstätten, Künstlerunterkunft</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"175,480,220,500\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n</map>\r\n\r\n<div id=\"legende_box\">\r\n<img src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n</div>\r\n\r\n</div><!--:-->','Land','','publish','closed','open','','land','','','2011-05-16 12:38:25','2011-05-16 12:38:25','',0,'http://localhost/freiland/?page_id=54',0,'page','',0),(25,1,'2011-02-22 17:00:31','2011-02-22 17:00:31','<code>[blogroll-links categoryslug=\"smwimport\"]</code>','Links','','publish','closed','open','','links','','','2011-04-28 22:32:10','2011-04-28 22:32:10','',0,'http://localhost/freiland/',3,'page','',0),(45,1,'2011-03-15 11:39:43','2011-03-15 11:39:43','Press\r\n','','','publish','open','open','','45','','','2011-05-31 13:06:45','2011-05-31 13:06:45','',0,'http://localhost/freiland/?p=45',4,'nav_menu_item','',0),(44,1,'2011-03-15 11:39:43','2011-03-15 11:39:43','News\r\n','','','publish','open','open','','44','','','2011-05-31 13:06:45','2011-05-31 13:06:45','',0,'http://localhost/freiland/?p=44',1,'nav_menu_item','',0),(43,1,'2011-03-15 11:39:43','2011-03-15 11:39:43','Events\r\n','','','publish','open','open','','43','','','2011-05-31 13:06:45','2011-05-31 13:06:45','',0,'http://localhost/freiland/?p=43',2,'nav_menu_item','',0),(55,1,'2011-04-28 09:14:00','2011-04-28 09:14:00','','Automatisch gespeicherter Entwurf','','inherit','closed','open','','54-revision','','','2011-04-28 09:14:00','2011-04-28 09:14:00','',54,'http://localhost/freiland/2011/04/28/54-revision/',0,'revision','',0),(75,1,'2011-05-07 08:35:34','2011-05-07 08:35:34','','<span></span>','twitter','publish','closed','open','','75','','','2011-07-01 06:39:34','2011-07-01 06:39:34','',0,'http://localhost/freiland/?p=75',1,'nav_menu_item','',0),(52,1,'2011-04-28 09:10:14','2011-04-28 09:10:14',' ','','','publish','closed','open','','52','','','2011-05-31 13:06:45','2011-05-31 13:06:45','',0,'http://localhost/freiland/?p=52',3,'nav_menu_item','',0),(56,1,'2011-04-28 09:14:15','2011-04-28 09:14:15',' ','','','publish','closed','open','','56','','','2011-05-31 13:06:45','2011-05-31 13:06:45','',0,'http://localhost/freiland/2011/04/28/56/',5,'nav_menu_item','',0),(57,1,'2011-04-28 22:23:43','2011-04-28 22:23:43','<!--:de--><h2>1. Haftungsbeschränkung</h2>\r\nVerantwortlich für dieses Informationsangebot ist der eingetragene CULTUS UG - im folgenden Anbieter/Herausgeber bzw. \"wir\" genannt. Die Informationen auf dieser Website wurden mit großer Sorgfalt zusammengestellt. Für die Richtigkeit und Vollständigkeit kann gleichwohl keine Gewähr übernommen werden. Aus diesem Grund ist jegliche Haftung für eventuelle Schäden im Zusammenhang mit der Nutzung des Informationsangebots ausgeschlossen. Durch die bloße Nutzung dieser Website kommt keinerlei Vertragsverhältnis zwischen Nutzer und Anbieter/Herausgeber zustande.\r\n<h2>2. Hinweis zum Urheberrecht</h2>\r\nDer gesamte Inhalt dieser Website unterliegt dem Urheberrecht. Unerlaubte Verwendung, Reproduktion oder Wiedergabe des Inhalts oder von Teilen des Inhalts ist untersagt bzw. nur mit ausdrücklicher schriftlicher Genehmigung gestattet. Wegen einer Erlaubnis zur Nutzung des Inhalts wenden Sie sich bitte an den Herausgeber. (<span id=\"officemail\"></span>)\r\n<h2>3. Hinweis zu externen Links</h2>\r\nSoweit von dieser Website auf andere Websites Links gelegt sind, wird darauf hingewiesen, dass keinerlei Einfluss auf die Gestaltung und die Inhalte der gelinkten Seiten besteht und sich deren Inhalt nicht zu eigen gemacht wird. Dies gilt für alle auf dieser Seite ausgebrachten, externen Links und für alle Inhalte der Seiten, zu denen Werbemittel (z.B. Banner, Textanzeigen, Videoanzeigen) führen. Für verlinkte Seiten gilt, dass rechtswidrige Inhalte zum Zeitpunkt der Verlinkung nicht erkennbar waren. Die Links werden regelmäßig auf rechtswidrige Inhalte überprüft und bei Rechtsverletzungen unverzüglich entfernt.\r\n<h2>4. Datenschutz</h2>\r\nNach § 13 Abs. 1 des Telemediengesetz (TMG) möchten wir Sie als Nutzer unseres Informationsagebots über Art, Umfang und Zwecke der Erhebung und Verwendung personenbezogener Daten im Rahmen dieser Internetpräsenz in Kenntnis setzen. Wir erheben und verwenden Ihre personenbezogenen Daten ausschließlich im Rahmen der Bestimmungen des Datenschutzrechts der Bundesrepublik Deutschland. Im folgenden unterrichten wir Sie über Art, Umfang und Zwecke der Erhebung und Verwendung personenbezogener Daten. Sie können diese Unterrichtung jederzeit auf unserer Webseite abrufen. Datenübermittlung und -protokollierung zu systeminternen und statistischen Zwecken Ihr Internet-Browser übermittelt beim Zugriff auf unsere Webseite aus technischen Gründen automatisch Daten an unseren Webserver. Es handelt sich dabei unter anderem um Datum und Uhrzeit des Zugriffs, URL der verweisenden Webseite, abgerufene Datei, Menge der gesendeten Daten, Browsertyp und -version, Betriebssystem sowie Ihre IP-Adresse. Diese Daten werden getrennt von anderen Daten, die Sie im Rahmen der Nutzung unseres Angebotes eingeben gespeichert. Eine Zuordnung dieser Daten zu einer bestimmten Person ist uns nicht möglich. Diese Daten werden zu statistischen Zwecken ausgewertet und im Anschluss gelöscht.\r\n<h3>Bestandsdaten</h3>\r\nSofern zwischen Ihnen und uns ein Vertragsverhältnis begründet, inhaltlich ausgestaltet oder geändert werden soll, erheben und verwenden wir personenbezogene Daten von Ihnen, soweit dies zu diesen Zwecken erforderlich ist. Auf Anordnung der zuständigen Stellen dürfen wir im Einzelfall Auskunft über diese Daten (Bestandsdaten) erteilen, soweit dies für Zwecke der Strafverfolgung, zur Gefahrenabwehr, zur Erfüllung der gesetzlichen Aufgaben der Verfassungsschutzbehörden oder des Militärischen Abschirmdienstes oder zur Durchsetzung der Rechte am geistigen Eigentum erforderlich ist.\r\n<h3>Nutzungsdaten</h3>\r\nWir erheben und verwenden personenbezogene Daten von Ihnen, soweit dies erforderlich ist, um die Inanspruchnahme unseres Internetangebotes zu ermöglichen oder abzurechnen (Nutzungsdaten). Dazu gehören insbesondere Merkmale zu Ihrer Identifikation und Angaben zu Beginn und Ende sowie des Umfangs der Nutzung unseres Angebotes. Für Zwecke der Werbung, der Marktforschung und zur bedarfsgerechten Gestaltung unseres Internetangebotes dürfen wir bei Verwendung von Pseudonymen Nutzungsprofile erstellen. Sie haben das Recht, dieser Verwendung Ihrer Daten zu widersprechen. Die Nutzungsprofile dürfen wir nicht mit Daten über den Träger des Pseudonyms zusammenführen. Auf Anordnung der zuständigen Stellen dürfen wir im Einzelfall Auskunft über diese Daten (Bestandsdaten) erteilen, soweit dies für Zwecke der Strafverfolgung, zur Gefahrenabwehr, zur Erfüllung der gesetzlichen Aufgaben der Verfassungsschutzbehörden oder des Militärischen Abschirmdienstes oder zur Durchsetzung der Rechte am geistigen Eigentum erforderlich ist.\r\n<h3>Cookies</h3>\r\nUm den Funktionsumfang unseres Internetangebotes zu erweitern und die Nutzung für Sie komfortabler zu gestalten, verwenden wir so genannte „Cookies“. Mit Hilfe dieser „Cookies“ können bei dem Aufruf unserer Webseite Daten auf Ihrem Rechner gespeichert werden. Sie haben die Möglichkeit, das Abspeichern von Cookies auf Ihrem Rechner durch entsprechende Einstellungen in Ihrem Browser zu verhindern. Hierdurch könnten allerdings der Funktionsumfang unseres Angebotes eingeschränkt werden.\r\n<h3>Google Analytics</h3>\r\nDiese Website benutzt Google Analytics, einen Webanalysedienst der Google Inc. („Google“). Google Analytics verwendet sog. „Cookies“, Textdateien, die auf Ihrem Computer gespeichert werden und die eine Analyse der Benutzung der Website durch Sie ermöglichen. Die durch den Cookie erzeugten Informationen über Ihre Benutzung dieser Website (einschließlich Ihrer IP-Adresse) wird an einen Server von Google in den USA übertragen und dort gespeichert. Google wird diese Informationen benutzen, um Ihre Nutzung der Website auszuwerten, um Reports über die Websiteaktivitäten für die Websitebetreiber zusammenzustellen und um weitere mit der Websitenutzung und der Internetnutzung verbundene Dienstleistungen zu erbringen. Auch wird Google diese Informationen gegebenenfalls an Dritte übertragen, sofern dies gesetzlich vorgeschrieben oder soweit Dritte diese Daten im Auftrag von Google verarbeiten. Google wird in keinem Fall Ihre IP-Adresse mit anderen Daten von Google in Verbindung bringen. Sie können die Installation der Cookies durch eine entsprechende Einstellung Ihrer Browser Software verhindern; wir weisen Sie jedoch darauf hin, dass Sie in diesem Fall gegebenenfalls nicht sämtliche Funktionen dieser Website vollumfänglich nutzen können. Durch die Nutzung dieser Website erklären Sie sich mit der Bearbeitung der über Sie erhobenen Daten durch Google in der zuvor beschriebenen Art und Weise und zu dem zuvor benannten Zweck einverstanden.\r\n<h3>Auskunftsrecht</h3>\r\nAls Nutzer unseres Internetangebotes haben Sie das Recht, von uns Auskunft über die zu Ihrer Person oder zu Ihrem Pseudonym gespeicherten Daten zu verlangen. Auf Ihr Verlangen kann die Auskunft auch elektronisch erteilt werden.
Sonstiges
Es wird darauf hingewiesen, dass hinsichtlich der Datenübertragung über das Internet (z.B. bei der Kommunikation per E-Mail) keine sichere Übertragung gewährleistet ist. Empfindliche Daten sollten daher mit äußerster Vorsicht oder nur über eine sichere Verbindung (SSL) übertragen werden.<!--:-->','<!--:de-->Disclaimer<!--:--><!--:en-->Disclaimer<!--:-->','','publish','closed','open','','disclaimer','','','2011-06-24 16:27:39','2011-06-24 16:27:39','',0,'http://localhost/freiland/?page_id=57',0,'page','',0),(58,1,'2011-04-28 22:22:54','2011-04-28 22:22:54','','Automatisch gespeicherter Entwurf','','inherit','closed','open','','57-revision','','','2011-04-28 22:22:54','2011-04-28 22:22:54','',57,'http://localhost/freiland/2011/04/28/57-revision/',0,'revision','',0),(69,1,'2011-04-28 22:26:24','2011-04-28 22:26:24','<!--:de-->VERANTWORTLICHE IM SINNE DES TMG:\r\n\r\nCULTUS UG\r\nFriedrich-Engels-Str. 22\r\n14473 Potsdam\r\nTel. : +4917632539322\r\nmail: office@freiland-potsdam.de\r\nwww.freiland-potsdam.de\r\nRegistergericht: Amtsgericht Potsdam\r\nRegisternummer: HRB 23680 P\r\n\r\nVertretungsberechtigte Gesellschafter:\r\nAchim Trautvetter, (Anschrift wie oben)\r\nDirk Harder, (Anschrift wie oben)\r\n\r\nVerantwortlich für Layout und Design der Seite ist:\r\nYana Vidysh\r\n\r\nHaftung für Inhalte:\r\nDie Inhalte unserer Seiten wurden mit größter Sorgfalt erstellt. Für die Richtigkeit,\r\nVollständigkeit und Aktualität der Inhalte können wir jedoch keine Gewähr über-\r\nnehmen.\r\n\r\nAls Diensteanbieter sind wir gemäß § 7 Abs.1 TMG für eigene Inhalte auf diesen\r\nSeiten nach den allgemeinen Gesetzen verantwortlich.Nach § 8 bis 10 TMG sind\r\nwir als Diensteanbieter jedoch nicht verpflichtet, übermittelte oder gespeicher-\r\nte fremde Informationen zu überwachen oder nach Umständen zu forschen, die\r\nauf eine rechtswidrige Tätigkeit hinweisen. Verpflichtungen zur Entfernung oder\r\nSperrung der Nutzung von Informationen nach den allgemeinen Gesetzen bleiben\r\nhiervon unberührt. Eine diesbezügliche Haftung ist jedoch erst ab dem Zeitpunkt\r\nder Kenntnis einer konkreten Rechtsverletzung möglich. Bei bekannt werden von\r\nentsprechenden Rechtsverletzungen werden wir diese Inhalte umgehend entfer-\r\nnen.\r\n<!--:-->','<!--:de-->Impressum | Kontakt<!--:--><!--:en-->Impressum | Kontakt<!--:-->','','inherit','closed','open','','64-revision-2','','','2011-04-28 22:26:24','2011-04-28 22:26:24','',64,'http://localhost/freiland/2011/04/28/64-revision-2/',0,'revision','',0),(265,1,'2011-05-17 12:50:58','2011-05-17 12:50:58','<!--:de--><div id=\"start_box\" style=\"width=100%; margin:20px; text-align: center;\">\r\n<a href=\"events/\"><img id=\"welcome_img\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/willkommen.jpg\" alt=\"\" style=\"width:100%; height: auto;margin: 0px auto; border: 0px;\"/></a>\r\n</div><!--:--><!--:en--><div id=\"start_box\" style=\"width=100%; margin:20px; text-align: center;\">\r\n<a href=\"events/\"><img id=\"welcome_img\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/willkommen.jpg\" alt=\"\" style=\"width:100%; height: auto; margin: 0px auto; border: 0px\"/></a>\r\n</div><!--:-->','<!--:de-->Startseite<!--:--><!--:en-->Startseite<!--:-->','','publish','closed','open','','startseite','','','2011-06-17 07:54:09','2011-06-17 07:54:09','',0,'http://localhost/freiland/?page_id=265',0,'page','',0),(61,1,'2011-04-28 22:25:07','2011-04-28 22:25:07','<!--:de--><div id=\"newsletter_box\">\r\n<img src=\"http://localhost/freiland/wp-content/themes/freiland/images/takes_ebenena.jpg\" alt=\"\" title=\"takes_ebenena\" width=\"100%\" height=\"auto\" class=\"aligncenter size-large wp-image-191\" />\r\n</div><!--:-->','<!--:de-->Newsletter<!--:--><!--:en-->Newsletter<!--:-->','','publish','closed','open','','newsletter','','','2011-05-09 09:45:11','2011-05-09 09:45:11','',0,'http://localhost/freiland/?page_id=61',1,'page','',0),(62,1,'2011-04-28 22:24:15','2011-04-28 22:24:15','','Automatisch gespeicherter Entwurf','','inherit','closed','open','','61-revision','','','2011-04-28 22:24:15','2011-04-28 22:24:15','',61,'http://localhost/freiland/2011/04/28/61-revision/',0,'revision','',0),(64,1,'2011-04-28 22:26:24','2011-04-28 22:26:24','<!--:de--><h2>VERANTWORTLICHE IM SINNE DES TMG:</h2>\r\n\r\nCULTUS UG\r\nFriedrich-Engels-Str. 22\r\n14473 Potsdam\r\nTel. : +4917632539322\r\nmail: <span id=\"officemail\"></span>\r\nwww.freiland-potsdam.de\r\nRegistergericht: Amtsgericht Potsdam\r\nRegisternummer: HRB 23680 P\r\n\r\nVertretungsberechtigte Gesellschafter:\r\nAchim Trautvetter, (Anschrift wie oben)\r\nDirk Harder, (Anschrift wie oben)\r\n\r\nVerantwortlich für Layout und Design der Seite ist:\r\nYana Vidysh\r\n\r\nProgrammierung und CSS:\r\nChristoph Herbst, chris.p.herbst[at]googlemail.com\r\nRalph B. Magnus\r\n\r\n\r\nHaftung für Inhalte:\r\nDie Inhalte unserer Seiten wurden mit größter Sorgfalt erstellt. Für die Richtigkeit,\r\nVollständigkeit und Aktualität der Inhalte können wir jedoch keine Gewähr über-\r\nnehmen.\r\n\r\nAls Diensteanbieter sind wir gemäß § 7 Abs.1 TMG für eigene Inhalte auf diesen\r\nSeiten nach den allgemeinen Gesetzen verantwortlich.Nach § 8 bis 10 TMG sind\r\nwir als Diensteanbieter jedoch nicht verpflichtet, übermittelte oder gespeicher-\r\nte fremde Informationen zu überwachen oder nach Umständen zu forschen, die\r\nauf eine rechtswidrige Tätigkeit hinweisen. Verpflichtungen zur Entfernung oder\r\nSperrung der Nutzung von Informationen nach den allgemeinen Gesetzen bleiben\r\nhiervon unberührt. Eine diesbezügliche Haftung ist jedoch erst ab dem Zeitpunkt\r\nder Kenntnis einer konkreten Rechtsverletzung möglich. Bei bekannt werden von\r\nentsprechenden Rechtsverletzungen werden wir diese Inhalte umgehend entfer-\r\nnen.\r\n<!--:-->','<!--:de-->Impressum | Kontakt<!--:--><!--:en-->Impressum | Kontakt<!--:-->','','publish','closed','open','','impressum-kontakt','','','2011-06-24 16:28:24','2011-06-24 16:28:24','',0,'http://localhost/freiland/?page_id=64',2,'page','',0),(65,1,'2011-04-28 22:26:13','2011-04-28 22:26:13','<!--:de-->VERANTWORTLICHE IM SINNE DES TMG:\n\nCULTUS UG\nFriedrich-Engels-Str. 22\n14473 Potsdam\nTel. : +4917632539322\nmail: office@freiland-potsdam.de\nwww.freiland-potsdam.de\nRegistergericht: Amtsgericht Potsdam\nRegisternummer: HRB 23680 P\n\nVertretungsberechtigte Gesellschafter:\nAchim Trautvetter, (Anschrift wie oben)\nDirk Harder, (Anschrift wie oben)\n\nVerantwortlich für Layout und Design der Seite ist:\nYana Vidysh\nHaftung für Inhalte:\nDie Inhalte unserer Seiten wurden mit größter Sorgfalt erstellt. Für die Richtigkeit,\nVollständigkeit und Aktualität der Inhalte können wir jedoch keine Gewähr über-\nnehmen.\nAls Diensteanbieter sind wir gemäß § 7 Abs.1 TMG für eigene Inhalte auf diesen\nSeiten nach den allgemeinen Gesetzen verantwortlich.Nach § 8 bis 10 TMG sind\nwir als Diensteanbieter jedoch nicht verpflichtet, übermittelte oder gespeicher-\nte fremde Informationen zu überwachen oder nach Umständen zu forschen, die\nauf eine rechtswidrige Tätigkeit hinweisen. Verpflichtungen zur Entfernung oder\nSperrung der Nutzung von Informationen nach den allgemeinen Gesetzen bleiben\nhiervon unberührt. Eine diesbezügliche Haftung ist jedoch erst ab dem Zeitpunkt\nder Kenntnis einer konkreten Rechtsverletzung möglich. Bei bekannt werden von\nentsprechenden Rechtsverletzungen werden wir diese Inhalte umgehend entfer-\nnen.\n<!--:-->','<!--:de-->Impressum | Kontakt<!--:--><!--:en-->Impressum | Kontakt<!--:-->','','inherit','closed','open','','64-revision','','','2011-04-28 22:26:13','2011-04-28 22:26:13','',64,'http://localhost/freiland/2011/04/28/64-revision/',0,'revision','',0),(68,1,'2011-04-28 22:25:07','2011-04-28 22:25:07','','<!--:de-->Newsletter<!--:--><!--:en-->Newsletter<!--:-->','','inherit','closed','open','','61-revision-2','','','2011-04-28 22:25:07','2011-04-28 22:25:07','',61,'http://localhost/freiland/2011/04/28/61-revision-2/',0,'revision','',0),(67,1,'2011-04-28 22:23:43','2011-04-28 22:23:43','<!--:de-->VERANTWORTLICHE IM SINNE DES TMG:\r\nCULTUS UG\r\nFriedrich-Engels-Str. 22\r\n14473 Potsdam\r\nTel. : +4917632539322\r\nmail: office@freiland-potsdam.de\r\nwww.freiland-potsdam.de\r\nRegistergericht: Amtsgericht Potsdam\r\nRegisternummer: HRB 23680 P\r\nVertretungsberechtigte Gesellschafter:\r\nAchim Trautvetter, (Anschrift wie oben)\r\nDirk Harder, (Anschrift wie oben)\r\nVerantwortlich für Layout und Design der Seite ist:\r\nYana Vidysh\r\nHaftung für Inhalte:\r\nDie Inhalte unserer Seiten wurden mit größter Sorgfalt erstellt. Für die Richtigkeit,\r\nVollständigkeit und Aktualität der Inhalte können wir jedoch keine Gewähr über-\r\nnehmen.\r\nAls Diensteanbieter sind wir gemäß § 7 Abs.1 TMG für eigene Inhalte auf diesen\r\nSeiten nach den allgemeinen Gesetzen verantwortlich.Nach § 8 bis 10 TMG sind\r\nwir als Diensteanbieter jedoch nicht verpflichtet, übermittelte oder gespeicher-\r\nte fremde Informationen zu überwachen oder nach Umständen zu forschen, die\r\nauf eine rechtswidrige Tätigkeit hinweisen. Verpflichtungen zur Entfernung oder\r\nSperrung der Nutzung von Informationen nach den allgemeinen Gesetzen bleiben\r\nhiervon unberührt. Eine diesbezügliche Haftung ist jedoch erst ab dem Zeitpunkt\r\nder Kenntnis einer konkreten Rechtsverletzung möglich. Bei bekannt werden von\r\nentsprechenden Rechtsverletzungen werden wir diese Inhalte umgehend entfer-\r\nnen.\r\n<!--:-->','<!--:de-->Disclaimer<!--:--><!--:en-->Disclaimer<!--:-->','','inherit','closed','open','','57-revision-2','','','2011-04-28 22:23:43','2011-04-28 22:23:43','',57,'http://localhost/freiland/2011/04/28/57-revision-2/',0,'revision','',0),(70,1,'2011-03-19 14:37:39','2011-03-19 14:37:39','<code>[blogroll-links categoryslug=\"smwimport\"]</code>','Links','','inherit','closed','open','','25-revision','','','2011-03-19 14:37:39','2011-03-19 14:37:39','',25,'http://localhost/freiland/2011/03/19/25-revision/',0,'revision','',0),(71,1,'2011-05-07 07:47:18','2011-05-07 07:47:18','','<span></span>','facebook','publish','closed','open','','facebook','','','2011-07-01 06:39:34','2011-07-01 06:39:34','',0,'http://localhost/freiland/?p=71',2,'nav_menu_item','',0),(73,1,'2011-05-07 07:47:18','2011-05-07 07:47:18','','<span></span>','diaspora','publish','closed','open','','diaspora','','','2011-07-01 06:39:34','2011-07-01 06:39:34','',0,'http://localhost/freiland/?p=73',3,'nav_menu_item','',0),(76,1,'2011-05-09 09:44:55','2011-05-09 09:44:55','<!--:de--><div id=\"newsletter_box\">\r\n<img src=\"http://localhost/freiland/wp-content/themes/freiland/images/takes_ebenena.jpg\" alt=\"\" title=\"takes_ebenena\" width=\"100%\" height=\"auto\" class=\"aligncenter size-large wp-image-191\" />\r\n</div><!--:-->','<!--:de-->Newsletter<!--:--><!--:en-->Newsletter<!--:-->','','inherit','closed','open','','61-autosave','','','2011-05-09 09:44:55','2011-05-09 09:44:55','',61,'http://localhost/freiland/2011/05/09/61-autosave/',0,'revision','',0),(77,1,'2011-04-28 22:31:43','2011-04-28 22:31:43','','<!--:de-->Newsletter<!--:--><!--:en-->Newsletter<!--:-->','','inherit','closed','open','','61-revision-3','','','2011-04-28 22:31:43','2011-04-28 22:31:43','',61,'http://localhost/freiland/2011/04/28/61-revision-3/',0,'revision','',0),(251,1,'2011-05-16 12:27:59','2011-05-16 12:27:59','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Jugendclub, freiRaum, Bandhaus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"80,330,110,480\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Spartacus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"130,330,160,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div>\r\n\r\n<!-- BACKUP\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n--><!--:-->','Land','','inherit','closed','open','','54-revision-49','','','2011-05-16 12:27:59','2011-05-16 12:27:59','',54,'http://localhost/freiland/2011/05/16/54-revision-49/',0,'revision','',0),(250,1,'2011-05-16 12:26:41','2011-05-16 12:26:41','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Jugendclub, freiRaum, Bandhaus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"80,280,110,480\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Spartacus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"130,300,160,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div>\r\n\r\n<!-- BACKUP\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n--><!--:-->','Land','','inherit','closed','open','','54-revision-48','','','2011-05-16 12:26:41','2011-05-16 12:26:41','',54,'http://localhost/freiland/2011/05/16/54-revision-48/',0,'revision','',0),(249,1,'2011-05-16 12:23:34','2011-05-16 12:23:34','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Jugendclub, freiRaum, Bandhaus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"80,260,110,480\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Spartacus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"130,280,160,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div>\r\n\r\n<!-- BACKUP\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n--><!--:-->','Land','','inherit','closed','open','','54-revision-47','','','2011-05-16 12:23:34','2011-05-16 12:23:34','',54,'http://localhost/freiland/2011/05/16/54-revision-47/',0,'revision','',0),(248,1,'2011-05-16 12:22:59','2011-05-16 12:22:59','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Jugendclub, freiRaum, Bandhaus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"80,260,110,480\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Spartacus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"150,280,180,480\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div>\r\n\r\n<!-- BACKUP\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n--><!--:-->','Land','','inherit','closed','open','','54-revision-46','','','2011-05-16 12:22:59','2011-05-16 12:22:59','',54,'http://localhost/freiland/2011/05/16/54-revision-46/',0,'revision','',0),(247,1,'2011-05-16 12:22:23','2011-05-16 12:22:23','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Jugendclub, freiRaum, Bandhaus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"80,260,110,480\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Spartacus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"120,280,130,480\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div>\r\n\r\n<!-- BACKUP\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n--><!--:-->','Land','','inherit','closed','open','','54-revision-45','','','2011-05-16 12:22:23','2011-05-16 12:22:23','',54,'http://localhost/freiland/2011/05/16/54-revision-45/',0,'revision','',0),(246,1,'2011-05-16 12:21:24','2011-05-16 12:21:24','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Jugendclub, freiRaum, Bandhaus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"80,260,110,480\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div>\r\n\r\n<!-- BACKUP\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n--><!--:-->','Land','','inherit','closed','open','','54-revision-44','','','2011-05-16 12:21:24','2011-05-16 12:21:24','',54,'http://localhost/freiland/2011/05/16/54-revision-44/',0,'revision','',0),(245,1,'2011-05-16 12:21:02','2011-05-16 12:21:02','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Jugendclub, freiRaum, Bandhaus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"80,260,100,480\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div>\r\n\r\n<!-- BACKUP\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n--><!--:-->','Land','','inherit','closed','open','','54-revision-43','','','2011-05-16 12:21:02','2011-05-16 12:21:02','',54,'http://localhost/freiland/2011/05/16/54-revision-43/',0,'revision','',0),(244,1,'2011-05-16 12:20:24','2011-05-16 12:20:24','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"80,260,100,480\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div>\r\n\r\n<!-- BACKUP\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n--><!--:-->','Land','','inherit','closed','open','','54-revision-42','','','2011-05-16 12:20:24','2011-05-16 12:20:24','',54,'http://localhost/freiland/2011/05/16/54-revision-42/',0,'revision','',0),(243,1,'2011-05-16 12:19:50','2011-05-16 12:19:50','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"70,260,90,520\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div>\r\n\r\n<!-- BACKUP\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n--><!--:-->','Land','','inherit','closed','open','','54-revision-41','','','2011-05-16 12:19:50','2011-05-16 12:19:50','',54,'http://localhost/freiland/2011/05/16/54-revision-41/',0,'revision','',0),(242,1,'2011-05-16 12:19:07','2011-05-16 12:19:07','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"50,260,100,520\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div>\r\n\r\n<!-- BACKUP\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n--><!--:-->','Land','','inherit','closed','open','','54-revision-40','','','2011-05-16 12:19:07','2011-05-16 12:19:07','',54,'http://localhost/freiland/2011/05/16/54-revision-40/',0,'revision','',0),(241,1,'2011-05-16 12:17:53','2011-05-16 12:17:53','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n\r\n\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div>\r\n\r\n<!-- BACKUP\r\n<area onmouseover=\"Tip('<img src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg">Büro-, Beratungs-, Atelierräume</img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n--><!--:-->','Land','','inherit','closed','open','','54-revision-39','','','2011-05-16 12:17:53','2011-05-16 12:17:53','',54,'http://localhost/freiland/2011/05/16/54-revision-39/',0,'revision','',0),(240,1,'2011-05-16 12:16:08','2011-05-16 12:16:08','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg">Büro-, Beratungs-, Atelierräume</img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n\r\n\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div>\r\n\r\n<!-- BACKUP\r\n<area onmouseover=\"Tip('<img src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg">Büro-, Beratungs-, Atelierräume</img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n--><!--:-->','Land','','inherit','closed','open','','54-revision-38','','','2011-05-16 12:16:08','2011-05-16 12:16:08','',54,'http://localhost/freiland/2011/05/16/54-revision-38/',0,'revision','',0),(203,1,'2011-05-16 12:34:00','2011-05-16 12:34:00','<!--:de--><div id=\"land_box\">\n\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\n<map name=\"map\">\n\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\n\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Jugendclub, freiRaum, Bandhaus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"80,350,110,480\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\n\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Spartacus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"130,350,160,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\n\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Cafe</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"190,370,220,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\n\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Aquarium</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"100,470,170,500\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\n\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Werkstätten, Künstlerunterkunft</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"100,470,170,500\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\n\n</map>\n\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\n\n</div>\n\n<!-- BACKUP\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\n--><!--:-->','Land','','inherit','closed','open','','54-autosave','','','2011-05-16 12:34:00','2011-05-16 12:34:00','',54,'http://localhost/freiland/2011/05/16/54-autosave/',0,'revision','',0),(204,1,'2011-04-28 09:14:15','2011-04-28 09:14:15','','Land','','inherit','closed','open','','54-revision-2','','','2011-04-28 09:14:15','2011-04-28 09:14:15','',54,'http://localhost/freiland/2011/04/28/54-revision-2/',0,'revision','',0),(205,1,'2011-05-16 09:42:36','2011-05-16 09:42:36','<!--:de--><div id=\"land_box\">\r\n<img src=\"images/lageplan.png\" alt=\"\" title=\"Lageplan freiLand\" width=\"auto\" height=\"auto\" class=\"alignleft size-large wp-image-191\" />\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-3','','','2011-05-16 09:42:36','2011-05-16 09:42:36','',54,'http://localhost/freiland/2011/05/16/54-revision-3/',0,'revision','',0),(206,1,'2011-05-16 09:43:10','2011-05-16 09:43:10','<!--:de--><div id=\"land_box\">\r\n<img src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" title=\"Lageplan freiLand\" width=\"auto\" height=\"auto\" class=\"alignleft size-large wp-image-191\" />\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-4','','','2011-05-16 09:43:10','2011-05-16 09:43:10','',54,'http://localhost/freiland/2011/05/16/54-revision-4/',0,'revision','',0),(207,1,'2011-05-16 09:43:24','2011-05-16 09:43:24','<!--:de--><div id=\"land_box\">\r\n<img src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" title=\"Lageplan freiLand\" width=\"auto\" height=\"auto\" class=\"alignleft size-large wp-image-191\" />\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-5','','','2011-05-16 09:43:24','2011-05-16 09:43:24','',54,'http://localhost/freiland/2011/05/16/54-revision-5/',0,'revision','',0),(209,1,'2011-05-16 10:02:09','2011-05-16 10:02:09','<!--:de--><div id=\"land_box\">\r\n\r\n<img usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" class=\"alignleft\">\r\n<map name=\"map\">\r\n <area href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" coords=\"100,140,200,220\" shape=\"rectangle\"/>\r\n</map> \r\n\r\n<img src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" class=\"alignright\"/>\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-7','','','2011-05-16 10:02:09','2011-05-16 10:02:09','',54,'http://localhost/freiland/2011/05/16/54-revision-7/',0,'revision','',0),(208,1,'2011-05-16 09:49:46','2011-05-16 09:49:46','<!--:de--><div id=\"land_box\">\r\n\r\n<img usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" class=\"alignleft\">\r\n<map name=\"map\">\r\n <area href=\"name.htm\" alt=\"Text\" coords=\"3,15,7\" shape=\"circle\">\r\n <area href=\"name2.htm\" alt=\"Text\" coords=\"15,46,69,50,13,14\" shape=\"poly\">\r\n</map> \r\n\r\n<img src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" class=\"alignright\"/>\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-6','','','2011-05-16 09:49:46','2011-05-16 09:49:46','',54,'http://localhost/freiland/2011/05/16/54-revision-6/',0,'revision','',0),(210,1,'2011-05-16 10:03:40','2011-05-16 10:03:40','<!--:de--><div id=\"land_box\">\r\n\r\n<img usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" class=\"alignleft\">\r\n<map name=\"map\">\r\n <area href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" coords=\"30,240,200,320\" shape=\"rectangle\"/>\r\n</map> \r\n\r\n<img src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" class=\"alignright\"/>\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-8','','','2011-05-16 10:03:40','2011-05-16 10:03:40','',54,'http://localhost/freiland/2011/05/16/54-revision-8/',0,'revision','',0),(211,1,'2011-05-16 10:09:28','2011-05-16 10:09:28','<!--:de--><div id=\"land_box\">\r\n\r\n<img usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" class=\"alignleft\">\r\n<map name=\"map\">\r\n <area href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" coords=\"30,240,200,320\" shape=\"rectangle\"/>\r\n</map> \r\n\r\n<img src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" class=\"alignright\"/>\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-9','','','2011-05-16 10:09:28','2011-05-16 10:09:28','',54,'http://localhost/freiland/2011/05/16/54-revision-9/',0,'revision','',0),(212,1,'2011-05-16 11:39:27','2011-05-16 11:39:27','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n<area onmouseover=\"Tip(\'hallo\')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-10','','','2011-05-16 11:39:27','2011-05-16 11:39:27','',54,'http://localhost/freiland/2011/05/16/54-revision-10/',0,'revision','',0),(214,1,'2011-05-16 11:47:22','2011-05-16 11:47:22','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n<area onmouseover=\"Tip(\'Spartacus\')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-12','','','2011-05-16 11:47:22','2011-05-16 11:47:22','',54,'http://localhost/freiland/2011/05/16/54-revision-12/',0,'revision','',0),(213,1,'2011-05-16 11:44:51','2011-05-16 11:44:51','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n<area onmouseover=\"Tip(\'<img src=\"http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg\" alt=\"Spartacus\" />\')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-11','','','2011-05-16 11:44:51','2011-05-16 11:44:51','',54,'http://localhost/freiland/2011/05/16/54-revision-11/',0,'revision','',0),(224,1,'2011-05-16 11:56:58','2011-05-16 11:56:58','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n<area onmouseover=\"Tip(\'<p> COOL </p>\')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-22','','','2011-05-16 11:56:58','2011-05-16 11:56:58','',54,'http://localhost/freiland/2011/05/16/54-revision-22/',0,'revision','',0),(215,1,'2011-05-16 11:47:53','2011-05-16 11:47:53','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n<area onmouseover=\"Tip(\'Büro-, Beratungs-, Atelierräume\')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-13','','','2011-05-16 11:47:53','2011-05-16 11:47:53','',54,'http://localhost/freiland/2011/05/16/54-revision-13/',0,'revision','',0),(216,1,'2011-05-16 11:48:15','2011-05-16 11:48:15','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n<area onmouseover=\"Tip(\'<b>Büro-, Beratungs-, Atelierräume</b>\')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-14','','','2011-05-16 11:48:15','2011-05-16 11:48:15','',54,'http://localhost/freiland/2011/05/16/54-revision-14/',0,'revision','',0),(217,1,'2011-05-16 11:49:04','2011-05-16 11:49:04','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n<area onmouseover=\"Tip(\'<b>Büro-, Beratungs-, Atelierräume</b>\')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-15','','','2011-05-16 11:49:04','2011-05-16 11:49:04','',54,'http://localhost/freiland/2011/05/16/54-revision-15/',0,'revision','',0),(218,1,'2011-05-16 11:50:31','2011-05-16 11:50:31','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n<area onmouseover=\"Tip(\'\\<b>Büro-, Beratungs-, Atelierräume\\</b>\')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-16','','','2011-05-16 11:50:31','2011-05-16 11:50:31','',54,'http://localhost/freiland/2011/05/16/54-revision-16/',0,'revision','',0),(219,1,'2011-05-16 11:50:57','2011-05-16 11:50:57','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n<area onmouseover=\"Tip(\'<b>Büro-, Beratungs-, Atelierräume</b>\')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-17','','','2011-05-16 11:50:57','2011-05-16 11:50:57','',54,'http://localhost/freiland/2011/05/16/54-revision-17/',0,'revision','',0),(220,1,'2011-05-16 11:51:10','2011-05-16 11:51:10','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n<area onmouseover=\"Tip(\'Büro-, Beratungs-, Atelierräume\')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-18','','','2011-05-16 11:51:10','2011-05-16 11:51:10','',54,'http://localhost/freiland/2011/05/16/54-revision-18/',0,'revision','',0),(221,1,'2011-05-16 11:53:32','2011-05-16 11:53:32','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n<area onmouseover=\"Tip(\'<p>Büro-, Beratungs-, Atelierräume</p>\')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-19','','','2011-05-16 11:53:32','2011-05-16 11:53:32','',54,'http://localhost/freiland/2011/05/16/54-revision-19/',0,'revision','',0),(222,1,'2011-05-16 11:54:02','2011-05-16 11:54:02','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n<area onmouseover=\"Tip(\'<p> Büro-, Beratungs-, Atelierräume </p>\')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-20','','','2011-05-16 11:54:02','2011-05-16 11:54:02','',54,'http://localhost/freiland/2011/05/16/54-revision-20/',0,'revision','',0),(223,1,'2011-05-16 11:56:18','2011-05-16 11:56:18','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n<area onmouseover=\"Tip(<p> Büro-, Beratungs-, Atelierräume </p>)\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-21','','','2011-05-16 11:56:18','2011-05-16 11:56:18','',54,'http://localhost/freiland/2011/05/16/54-revision-21/',0,'revision','',0),(226,1,'2011-05-16 11:58:07','2011-05-16 11:58:07','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n<area onmouseover=\"Tip(\'<p> COOL </p>\')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-24','','','2011-05-16 11:58:07','2011-05-16 11:58:07','',54,'http://localhost/freiland/2011/05/16/54-revision-24/',0,'revision','',0),(225,1,'2011-05-16 11:57:28','2011-05-16 11:57:28','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n<area onmouseover=\"Tip(\'<code><p> COOL </p></code>\')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-23','','','2011-05-16 11:57:28','2011-05-16 11:57:28','',54,'http://localhost/freiland/2011/05/16/54-revision-23/',0,'revision','',0),(227,1,'2011-05-16 11:58:31','2011-05-16 11:58:31','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n<area onmouseover=\"Tip(\'<p> COOLness </p>\')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-25','','','2011-05-16 11:58:31','2011-05-16 11:58:31','',54,'http://localhost/freiland/2011/05/16/54-revision-25/',0,'revision','',0),(228,1,'2011-05-16 11:59:09','2011-05-16 11:59:09','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n<area onmouseover=\"Tip(\'<p>COOL</p>\')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-26','','','2011-05-16 11:59:09','2011-05-16 11:59:09','',54,'http://localhost/freiland/2011/05/16/54-revision-26/',0,'revision','',0),(232,1,'2011-05-16 12:07:51','2011-05-16 12:07:51','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n<area onmouseover=\"Tip('<p>COOL</p>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-30','','','2011-05-16 12:07:51','2011-05-16 12:07:51','',54,'http://localhost/freiland/2011/05/16/54-revision-30/',0,'revision','',0),(229,1,'2011-05-16 12:04:51','2011-05-16 12:04:51','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n<area onmouseover="Tip('<p>COOL</p>')" onmouseout="UnTip()" shape="rectangle" coords="30,240,200,320" href="#" alt="Büro-, Beratungs-, Atelierräume" />\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-27','','','2011-05-16 12:04:51','2011-05-16 12:04:51','',54,'http://localhost/freiland/2011/05/16/54-revision-27/',0,'revision','',0),(230,1,'2011-05-16 12:05:34','2011-05-16 12:05:34','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n<area onmouseover="Tip('<p>COOL</p>')" onmouseout="UnTip()" shape="rectangle" coords="30,240,200,320" href="#" alt="Büro-, Beratungs-, Atelierräume" />\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-28','','','2011-05-16 12:05:34','2011-05-16 12:05:34','',54,'http://localhost/freiland/2011/05/16/54-revision-28/',0,'revision','',0),(231,1,'2011-05-16 12:06:43','2011-05-16 12:06:43','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n<area onmouseover=\"Tip('<p>COOL</p>')\" onmouseout="UnTip()" shape="rectangle" coords="30,240,200,320" href="#" alt="Büro-, Beratungs-, Atelierräume" />\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-29','','','2011-05-16 12:06:43','2011-05-16 12:06:43','',54,'http://localhost/freiland/2011/05/16/54-revision-29/',0,'revision','',0),(233,1,'2011-05-16 12:08:10','2011-05-16 12:08:10','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n<area onmouseover=\"Tip('<img>COOL</img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-31','','','2011-05-16 12:08:10','2011-05-16 12:08:10','',54,'http://localhost/freiland/2011/05/16/54-revision-31/',0,'revision','',0),(234,1,'2011-05-16 12:09:15','2011-05-16 12:09:15','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n<area onmouseover=\"Tip('<img src=\"http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg\">COOL</img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-32','','','2011-05-16 12:09:15','2011-05-16 12:09:15','',54,'http://localhost/freiland/2011/05/16/54-revision-32/',0,'revision','',0),(235,1,'2011-05-16 12:10:23','2011-05-16 12:10:23','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n<area onmouseover=\"Tip('<img src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg">COOL</img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-33','','','2011-05-16 12:10:23','2011-05-16 12:10:23','',54,'http://localhost/freiland/2011/05/16/54-revision-33/',0,'revision','',0),(236,1,'2011-05-16 12:11:42','2011-05-16 12:11:42','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n<area onmouseover=\"Tip('<img src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg">Büro-, Beratungs-, Atelierräume</img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-34','','','2011-05-16 12:11:42','2011-05-16 12:11:42','',54,'http://localhost/freiland/2011/05/16/54-revision-34/',0,'revision','',0),(237,1,'2011-05-16 12:13:36','2011-05-16 12:13:36','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg">Büro-, Beratungs-, Atelierräume</img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n\r\n\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div>\r\n\r\n<!-- BACKUP\r\n<area onmouseover=\"Tip('<img src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg">Büro-, Beratungs-, Atelierräume</img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n--><!--:-->','Land','','inherit','closed','open','','54-revision-35','','','2011-05-16 12:13:36','2011-05-16 12:13:36','',54,'http://localhost/freiland/2011/05/16/54-revision-35/',0,'revision','',0),(238,1,'2011-05-16 12:14:15','2011-05-16 12:14:15','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="auto" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg">Büro-, Beratungs-, Atelierräume</img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n\r\n\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div>\r\n\r\n<!-- BACKUP\r\n<area onmouseover=\"Tip('<img src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg">Büro-, Beratungs-, Atelierräume</img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n--><!--:-->','Land','','inherit','closed','open','','54-revision-36','','','2011-05-16 12:14:15','2011-05-16 12:14:15','',54,'http://localhost/freiland/2011/05/16/54-revision-36/',0,'revision','',0),(239,1,'2011-05-16 12:14:53','2011-05-16 12:14:53','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg">Büro-, Beratungs-, Atelierräume</img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n\r\n\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div>\r\n\r\n<!-- BACKUP\r\n<area onmouseover=\"Tip('<img src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg">Büro-, Beratungs-, Atelierräume</img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n--><!--:-->','Land','','inherit','closed','open','','54-revision-37','','','2011-05-16 12:14:53','2011-05-16 12:14:53','',54,'http://localhost/freiland/2011/05/16/54-revision-37/',0,'revision','',0),(252,1,'2011-05-16 12:28:33','2011-05-16 12:28:33','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Jugendclub, freiRaum, Bandhaus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"80,350,110,480\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Spartacus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"130,350,160,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div>\r\n\r\n<!-- BACKUP\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n--><!--:-->','Land','','inherit','closed','open','','54-revision-50','','','2011-05-16 12:28:33','2011-05-16 12:28:33','',54,'http://localhost/freiland/2011/05/16/54-revision-50/',0,'revision','',0),(253,1,'2011-05-16 12:29:39','2011-05-16 12:29:39','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Jugendclub, freiRaum, Bandhaus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"80,350,110,480\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Spartacus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"130,350,160,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Cafe</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"180,350,200,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div>\r\n\r\n<!-- BACKUP\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n--><!--:-->','Land','','inherit','closed','open','','54-revision-51','','','2011-05-16 12:29:39','2011-05-16 12:29:39','',54,'http://localhost/freiland/2011/05/16/54-revision-51/',0,'revision','',0),(254,1,'2011-05-16 12:29:57','2011-05-16 12:29:57','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Jugendclub, freiRaum, Bandhaus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"80,350,110,480\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Spartacus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"130,350,160,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Cafe</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"200,370,220,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div>\r\n\r\n<!-- BACKUP\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n--><!--:-->','Land','','inherit','closed','open','','54-revision-52','','','2011-05-16 12:29:57','2011-05-16 12:29:57','',54,'http://localhost/freiland/2011/05/16/54-revision-52/',0,'revision','',0),(255,1,'2011-05-16 12:30:20','2011-05-16 12:30:20','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Jugendclub, freiRaum, Bandhaus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"80,350,110,480\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Spartacus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"130,350,160,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Cafe</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"190,370,220,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div>\r\n\r\n<!-- BACKUP\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n--><!--:-->','Land','','inherit','closed','open','','54-revision-53','','','2011-05-16 12:30:20','2011-05-16 12:30:20','',54,'http://localhost/freiland/2011/05/16/54-revision-53/',0,'revision','',0),(256,1,'2011-05-16 12:31:41','2011-05-16 12:31:41','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Jugendclub, freiRaum, Bandhaus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"80,350,110,480\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Spartacus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"130,350,160,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Cafe</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"190,370,220,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Aquarium</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"80,400,150,430\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div>\r\n\r\n<!-- BACKUP\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n--><!--:-->','Land','','inherit','closed','open','','54-revision-54','','','2011-05-16 12:31:41','2011-05-16 12:31:41','',54,'http://localhost/freiland/2011/05/16/54-revision-54/',0,'revision','',0),(257,1,'2011-05-16 12:32:39','2011-05-16 12:32:39','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Jugendclub, freiRaum, Bandhaus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"80,350,110,480\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Spartacus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"130,350,160,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Cafe</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"190,370,220,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Aquarium</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"80,470,150,500\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div>\r\n\r\n<!-- BACKUP\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n--><!--:-->','Land','','inherit','closed','open','','54-revision-55','','','2011-05-16 12:32:39','2011-05-16 12:32:39','',54,'http://localhost/freiland/2011/05/16/54-revision-55/',0,'revision','',0),(258,1,'2011-05-16 12:32:59','2011-05-16 12:32:59','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Jugendclub, freiRaum, Bandhaus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"80,350,110,480\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Spartacus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"130,350,160,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Cafe</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"190,370,220,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Aquarium</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"100,470,170,500\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div>\r\n\r\n<!-- BACKUP\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n--><!--:-->','Land','','inherit','closed','open','','54-revision-56','','','2011-05-16 12:32:59','2011-05-16 12:32:59','',54,'http://localhost/freiland/2011/05/16/54-revision-56/',0,'revision','',0),(261,1,'2011-05-16 12:35:35','2011-05-16 12:35:35','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Jugendclub, freiRaum, Bandhaus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"80,350,110,480\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Spartacus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"130,350,160,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Cafe</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"190,370,220,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Aquarium</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"100,470,170,500\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Werkstätten, Künstlerunterkunft</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"175,480,220,500\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n</map>\r\n\r\n<img src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-59','','','2011-05-16 12:35:35','2011-05-16 12:35:35','',54,'http://localhost/freiland/2011/05/16/54-revision-59/',0,'revision','',0),(259,1,'2011-05-16 12:34:23','2011-05-16 12:34:23','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Jugendclub, freiRaum, Bandhaus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"80,350,110,480\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Spartacus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"130,350,160,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Cafe</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"190,370,220,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Aquarium</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"100,470,170,500\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Werkstätten, Künstlerunterkunft</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"175,480,200,500\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div>\r\n\r\n<!-- BACKUP\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n--><!--:-->','Land','','inherit','closed','open','','54-revision-57','','','2011-05-16 12:34:23','2011-05-16 12:34:23','',54,'http://localhost/freiland/2011/05/16/54-revision-57/',0,'revision','',0),(260,1,'2011-05-16 12:34:50','2011-05-16 12:34:50','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Jugendclub, freiRaum, Bandhaus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"80,350,110,480\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Spartacus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"130,350,160,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Cafe</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"190,370,220,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Aquarium</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"100,470,170,500\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Werkstätten, Künstlerunterkunft</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"175,480,220,500\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n</map>\r\n\r\n<img class=\"alignright\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div>\r\n\r\n<!-- BACKUP\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n--><!--:-->','Land','','inherit','closed','open','','54-revision-58','','','2011-05-16 12:34:50','2011-05-16 12:34:50','',54,'http://localhost/freiland/2011/05/16/54-revision-58/',0,'revision','',0),(262,1,'2011-05-16 12:36:31','2011-05-16 12:36:31','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Jugendclub, freiRaum, Bandhaus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"80,350,110,480\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Spartacus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"130,350,160,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Cafe</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"190,370,220,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Lager</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"100,470,170,500\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Werkstätten, Künstlerunterkunft</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"175,480,220,500\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n</map>\r\n\r\n<img src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-60','','','2011-05-16 12:36:31','2011-05-16 12:36:31','',54,'http://localhost/freiland/2011/05/16/54-revision-60/',0,'revision','',0),(263,1,'2011-05-16 12:37:19','2011-05-16 12:37:19','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Aquarium</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"210,240,230,260\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Jugendclub, freiRaum, Bandhaus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"80,350,110,480\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Spartacus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"130,350,160,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Cafe</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"190,370,220,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Lager</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"100,470,170,500\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Werkstätten, Künstlerunterkunft</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"175,480,220,500\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n</map>\r\n\r\n<img src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-61','','','2011-05-16 12:37:19','2011-05-16 12:37:19','',54,'http://localhost/freiland/2011/05/16/54-revision-61/',0,'revision','',0),(264,1,'2011-05-16 12:37:41','2011-05-16 12:37:41','<!--:de--><div id=\"land_box\">\r\n\r\n<img class=\"alignleft\" usemap=\"#map\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan.png\" alt=\"\" />\r\n<map name=\"map\">\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Büro-, Beratungs-, Atelierräume</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"30,240,200,320\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Aquarium</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"210,230,230,260\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Jugendclub, freiRaum, Bandhaus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"80,350,110,480\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Spartacus</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"130,350,160,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Cafe</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"190,370,220,450\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Lager</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"100,470,170,500\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n<area onmouseover=\"Tip('<img width="100px" height="auto" src="http://localhost/freiland/wp-content/themes/freiland/images/broken_fingaz.jpg"><p> Werkstätten, Künstlerunterkunft</p></img>')\" onmouseout=\"UnTip()\" shape=\"rectangle\" coords=\"175,480,220,500\" href=\"#\" alt=\"Büro-, Beratungs-, Atelierräume\" />\r\n\r\n</map>\r\n\r\n<img src=\"http://localhost/freiland/wp-content/themes/freiland/images/lageplan_beschreibung.png\" alt=\"\" />\r\n\r\n</div><!--:-->','Land','','inherit','closed','open','','54-revision-62','','','2011-05-16 12:37:41','2011-05-16 12:37:41','',54,'http://localhost/freiland/2011/05/16/54-revision-62/',0,'revision','',0),(266,1,'2011-05-17 12:48:16','2011-05-17 12:48:16','','Automatisch gespeicherter Entwurf','','inherit','closed','open','','265-revision','','','2011-05-17 12:48:16','2011-05-17 12:48:16','',265,'http://localhost/freiland/2011/05/17/265-revision/',0,'revision','',0),(267,1,'2011-05-17 12:49:15','2011-05-17 12:49:15','<!--:de--><div id=\"start_box\" style=\"width=100%; margin:20px; text-align: center;\">\r\n<a href=\"events/\"><img id=\"welcome_img\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/willkommen.png\" alt=\"\" style=\"margin: 0px auto;\"/></a>\r\n</div><!--:-->','','','inherit','closed','open','','265-revision-2','','','2011-05-17 12:49:15','2011-05-17 12:49:15','',265,'http://localhost/freiland/2011/05/17/265-revision-2/',0,'revision','',0),(268,1,'2011-05-17 12:50:23','2011-05-17 12:50:23','<!--:de--><div id=\"start_box\" style=\"width=100%; margin:20px; text-align: center;\">\r\n<a href=\"events/\"><img id=\"welcome_img\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/willkommen.png\" alt=\"\" style=\"margin: 0px auto;\"/></a>\r\n</div><!--:-->','<!--:de-->Startseite<!--:--><!--:en-->Startseite<!--:-->','','inherit','closed','open','','265-revision-3','','','2011-05-17 12:50:23','2011-05-17 12:50:23','',265,'http://localhost/freiland/2011/05/17/265-revision-3/',0,'revision','',0),(271,1,'2011-05-31 13:06:05','2011-05-31 13:06:05','Entschuldigung, aber für diesen monat sind in dieser Kategorie noch keine Veranstaltungen eingetragen worden.\r\nDer folgende Link bringt sie zurück zur Veranstaltungsübersicht:','Keine Veranstaltungen gefunden','','publish','closed','open','','events404','','','2011-05-31 13:06:05','2011-05-31 13:06:05','',0,'http://localhost/freiland/?page_id=271',0,'page','',0),(272,1,'2011-05-31 13:05:47','2011-05-31 13:05:47','','Keine Veranstaltungen gefunden','','inherit','closed','open','','271-revision','','','2011-05-31 13:05:47','2011-05-31 13:05:47','',271,'http://localhost/freiland/2011/05/31/271-revision/',0,'revision','',0),(277,1,'2011-05-17 12:50:58','2011-05-17 12:50:58','<!--:de--><div id=\"start_box\" style=\"width=100%; margin:20px; text-align: center;\">\r\n<a href=\"events/\"><img id=\"welcome_img\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/willkommen.png\" alt=\"\" style=\"margin: 0px auto;\"/></a>\r\n</div><!--:-->','<!--:de-->Startseite<!--:--><!--:en-->Startseite<!--:-->','','inherit','closed','open','','265-revision-4','','','2011-05-17 12:50:58','2011-05-17 12:50:58','',265,'http://localhost/freiland/2011/05/17/265-revision-4/',0,'revision','',0),(278,1,'2011-06-07 15:10:17','2011-06-07 15:10:17','<!--:de-->Lorem ipsum dolor sit amet, con-sectetuer adipiscing elit. Aeneancommodo ligula eget dolor. Ae-nean massa. Cum sociis natoquepenatibus et magnis dis partu-rient montes, nascetur ridiculusmus. Donec quam felis, ultriciesnec, pellentesque eu, pretiumquis, sem. Nulla consequat mas-sa quis enim. Donec pede justo,fringilla vel, aliquet nec, vulpu-tate eget, arcu. In enim justo,rhoncus ut, imperdiet a, venen-atis vitae, justo. Nullam dictumfelis eu pede mollis pretium.Integer tincidunt. Cras dapibus.Vivamus elementum semper nisi.Aenean vulputate eleifend tel-lus. Aenean leo ligula, porttitoreu, consequat vitae, eleifend ac,enim.<!--:-->','<!--:de-->Büro-, Beratungs-, Atelierräume<!--:--><!--:en-->Büro-, Beratungs-, Atelierräume<!--:-->','','publish','closed','open','','haus1','','','2011-06-07 15:10:17','2011-06-07 15:10:17','',54,'http://localhost/freiland/?page_id=278',0,'page','',0),(279,1,'2011-06-07 15:09:36','2011-06-07 15:09:36','<!--:de-->Lorem ipsum dolor sit amet, con-sectetuer adipiscing elit. Aeneancommodo ligula eget dolor. Ae-nean massa. Cum sociis natoquepenatibus et magnis dis partu-rient montes, nascetur ridiculusmus. Donec quam felis, ultriciesnec, pellentesque eu, pretiumquis, sem. Nulla consequat mas-sa quis enim. Donec pede justo,fringilla vel, aliquet nec, vulpu-tate eget, arcu. In enim justo,rhoncus ut, imperdiet a, venen-atis vitae, justo. Nullam dictumfelis eu pede mollis pretium.Integer tincidunt. Cras dapibus.Vivamus elementum semper nisi.Aenean vulputate eleifend tel-lus. Aenean leo ligula, porttitoreu, consequat vitae, eleifend ac,enim.<!--:-->','<!--:de-->Büro-, Beratungs-, Atelierräume<!--:--><!--:en-->Büro-, Beratungs-, Atelierräume<!--:-->','','inherit','closed','open','','278-revision','','','2011-06-07 15:09:36','2011-06-07 15:09:36','',278,'http://localhost/freiland/2011/06/07/278-revision/',0,'revision','',0),(280,1,'2011-06-07 15:34:22','2011-06-07 15:34:22','','broken_fingaz','','inherit','closed','open','','broken_fingaz','','','2011-06-07 15:34:22','2011-06-07 15:34:22','',278,'http://localhost/freiland/wp-content/uploads/2011/06/broken_fingaz.jpg',0,'attachment','image/jpeg',0),(281,1,'2011-06-07 15:37:26','2011-06-07 15:37:26','<!--:de-->Lorem ipsum dolor sit amet, con-sectetuer adipiscing elit. Aeneancommodo ligula eget dolor. Ae-nean massa. Cum sociis natoquepenatibus et magnis dis partu-rient montes, nascetur ridiculusmus. Donec quam felis, ultriciesnec, pellentesque eu, pretiumquis, sem. Nulla consequat mas-sa quis enim. Donec pede justo,fringilla vel, aliquet nec, vulpu-tate eget, arcu. In enim justo,rhoncus ut, imperdiet a, venen-atis vitae, justo. Nullam dictumfelis eu pede mollis pretium.Integer tincidunt. Cras dapibus.Vivamus elementum semper nisi.Aenean vulputate eleifend tel-lus. Aenean leo ligula, porttitoreu, consequat vitae, eleifend ac,enim.<!--:-->','<!--:de-->Cafe<!--:--><!--:en-->Cafe<!--:-->','','publish','closed','open','','haus2','','','2011-06-07 15:37:44','2011-06-07 15:37:44','',54,'http://localhost/freiland/?page_id=281',0,'page','',0),(282,1,'2011-06-07 15:37:11','2011-06-07 15:37:11','<!--:de-->Lorem ipsum dolor sit amet, con-sectetuer adipiscing elit. Aeneancommodo ligula eget dolor. Ae-nean massa. Cum sociis natoquepenatibus et magnis dis partu-rient montes, nascetur ridiculusmus. Donec quam felis, ultriciesnec, pellentesque eu, pretiumquis, sem. Nulla consequat mas-sa quis enim. Donec pede justo,fringilla vel, aliquet nec, vulpu-tate eget, arcu. In enim justo,rhoncus ut, imperdiet a, venen-atis vitae, justo. Nullam dictumfelis eu pede mollis pretium.Integer tincidunt. Cras dapibus.Vivamus elementum semper nisi.Aenean vulputate eleifend tel-lus. Aenean leo ligula, porttitoreu, consequat vitae, eleifend ac,enim.<!--:-->','<!--:de-->Cafe<!--:--><!--:en-->Cafe<!--:-->','','inherit','closed','open','','281-revision','','','2011-06-07 15:37:11','2011-06-07 15:37:11','',281,'http://localhost/freiland/2011/06/07/281-revision/',0,'revision','',0),(307,1,'2011-06-17 07:51:17','0000-00-00 00:00:00','','Automatisch gespeicherter Entwurf','','auto-draft','closed','open','','','','','2011-06-17 07:51:17','0000-00-00 00:00:00','',0,'http://localhost/freiland/?p=307',0,'post','',0),(284,1,'2011-06-07 15:37:26','2011-06-07 15:37:26','<!--:de-->Lorem ipsum dolor sit amet, con-sectetuer adipiscing elit. Aeneancommodo ligula eget dolor. Ae-nean massa. Cum sociis natoquepenatibus et magnis dis partu-rient montes, nascetur ridiculusmus. Donec quam felis, ultriciesnec, pellentesque eu, pretiumquis, sem. Nulla consequat mas-sa quis enim. Donec pede justo,fringilla vel, aliquet nec, vulpu-tate eget, arcu. In enim justo,rhoncus ut, imperdiet a, venen-atis vitae, justo. Nullam dictumfelis eu pede mollis pretium.Integer tincidunt. Cras dapibus.Vivamus elementum semper nisi.Aenean vulputate eleifend tel-lus. Aenean leo ligula, porttitoreu, consequat vitae, eleifend ac,enim.<!--:-->','<!--:de-->Cafe<!--:--><!--:en-->Cafe<!--:-->','','inherit','closed','open','','281-revision-2','','','2011-06-07 15:37:26','2011-06-07 15:37:26','',281,'http://localhost/freiland/2011/06/07/281-revision-2/',0,'revision','',0),(285,1,'2011-06-07 15:38:07','2011-06-07 15:38:07','<!--:de-->Lorem ipsum dolor sit amet, con-sectetuer adipiscing elit. Aeneancommodo ligula eget dolor. Ae-nean massa. Cum sociis natoquepenatibus et magnis dis partu-rient montes, nascetur ridiculusmus. Donec quam felis, ultriciesnec, pellentesque eu, pretiumquis, sem. Nulla consequat mas-sa quis enim. Donec pede justo,fringilla vel, aliquet nec, vulpu-tate eget, arcu. In enim justo,rhoncus ut, imperdiet a, venen-atis vitae, justo. Nullam dictumfelis eu pede mollis pretium.Integer tincidunt. Cras dapibus.Vivamus elementum semper nisi.Aenean vulputate eleifend tel-lus. Aenean leo ligula, porttitoreu, consequat vitae, eleifend ac,enim.<!--:-->','<!--:de-->Spartacus<!--:--><!--:en-->Spartacus<!--:-->','','publish','closed','open','','haus3','','','2011-06-07 15:38:17','2011-06-07 15:38:17','',54,'http://localhost/freiland/?page_id=285',0,'page','',0),(286,1,'2011-06-07 15:37:48','2011-06-07 15:37:48','','Automatisch gespeicherter Entwurf','','inherit','closed','open','','285-revision','','','2011-06-07 15:37:48','2011-06-07 15:37:48','',285,'http://localhost/freiland/2011/06/07/285-revision/',0,'revision','',0),(287,1,'2011-06-07 15:38:07','2011-06-07 15:38:07','<!--:de-->Lorem ipsum dolor sit amet, con-sectetuer adipiscing elit. Aeneancommodo ligula eget dolor. Ae-nean massa. Cum sociis natoquepenatibus et magnis dis partu-rient montes, nascetur ridiculusmus. Donec quam felis, ultriciesnec, pellentesque eu, pretiumquis, sem. Nulla consequat mas-sa quis enim. Donec pede justo,fringilla vel, aliquet nec, vulpu-tate eget, arcu. In enim justo,rhoncus ut, imperdiet a, venen-atis vitae, justo. Nullam dictumfelis eu pede mollis pretium.Integer tincidunt. Cras dapibus.Vivamus elementum semper nisi.Aenean vulputate eleifend tel-lus. Aenean leo ligula, porttitoreu, consequat vitae, eleifend ac,enim.<!--:-->','<!--:de-->Spartacus<!--:--><!--:en-->Spartacus<!--:-->','','inherit','closed','open','','285-revision-2','','','2011-06-07 15:38:07','2011-06-07 15:38:07','',285,'http://localhost/freiland/2011/06/07/285-revision-2/',0,'revision','',0),(288,1,'2011-06-07 15:38:43','2011-06-07 15:38:43','<!--:de-->Lorem ipsum dolor sit amet, con-sectetuer adipiscing elit. Aeneancommodo ligula eget dolor. Ae-nean massa. Cum sociis natoquepenatibus et magnis dis partu-rient montes, nascetur ridiculusmus. Donec quam felis, ultriciesnec, pellentesque eu, pretiumquis, sem. Nulla consequat mas-sa quis enim. Donec pede justo,fringilla vel, aliquet nec, vulpu-tate eget, arcu. In enim justo,rhoncus ut, imperdiet a, venen-atis vitae, justo. Nullam dictumfelis eu pede mollis pretium.Integer tincidunt. Cras dapibus.Vivamus elementum semper nisi.Aenean vulputate eleifend tel-lus. Aenean leo ligula, porttitoreu, consequat vitae, eleifend ac,enim.<!--:-->','<!--:de-->Jugendclub, freiRaum, Bandhaus<!--:--><!--:en-->Jugendclub, freiRaum, Bandhaus<!--:-->','','publish','closed','open','','haus4','','','2011-06-07 15:39:00','2011-06-07 15:39:00','',54,'http://localhost/freiland/?page_id=288',0,'page','',0),(289,1,'2011-06-07 15:38:23','2011-06-07 15:38:23','','Automatisch gespeicherter Entwurf','','inherit','closed','open','','288-revision','','','2011-06-07 15:38:23','2011-06-07 15:38:23','',288,'http://localhost/freiland/2011/06/07/288-revision/',0,'revision','',0),(290,1,'2011-06-07 15:38:43','2011-06-07 15:38:43','<!--:de-->Lorem ipsum dolor sit amet, con-sectetuer adipiscing elit. Aeneancommodo ligula eget dolor. Ae-nean massa. Cum sociis natoquepenatibus et magnis dis partu-rient montes, nascetur ridiculusmus. Donec quam felis, ultriciesnec, pellentesque eu, pretiumquis, sem. Nulla consequat mas-sa quis enim. Donec pede justo,fringilla vel, aliquet nec, vulpu-tate eget, arcu. In enim justo,rhoncus ut, imperdiet a, venen-atis vitae, justo. Nullam dictumfelis eu pede mollis pretium.Integer tincidunt. Cras dapibus.Vivamus elementum semper nisi.Aenean vulputate eleifend tel-lus. Aenean leo ligula, porttitoreu, consequat vitae, eleifend ac,enim.<!--:-->','<!--:de-->Jugendclub, freiRaum, Bandhaus<!--:--><!--:en-->Jugendclub, freiRaum, Bandhaus<!--:-->','','inherit','closed','open','','288-revision-2','','','2011-06-07 15:38:43','2011-06-07 15:38:43','',288,'http://localhost/freiland/2011/06/07/288-revision-2/',0,'revision','',0),(291,1,'2011-06-07 15:39:22','2011-06-07 15:39:22','<!--:de-->Lorem ipsum dolor sit amet, con-sectetuer adipiscing elit. Aeneancommodo ligula eget dolor. Ae-nean massa. Cum sociis natoquepenatibus et magnis dis partu-rient montes, nascetur ridiculusmus. Donec quam felis, ultriciesnec, pellentesque eu, pretiumquis, sem. Nulla consequat mas-sa quis enim. Donec pede justo,fringilla vel, aliquet nec, vulpu-tate eget, arcu. In enim justo,rhoncus ut, imperdiet a, venen-atis vitae, justo. Nullam dictumfelis eu pede mollis pretium.Integer tincidunt. Cras dapibus.Vivamus elementum semper nisi.Aenean vulputate eleifend tel-lus. Aenean leo ligula, porttitoreu, consequat vitae, eleifend ac,enim.<!--:-->','<!--:de-->Werkstätten, Künstlerunterkunft<!--:--><!--:en-->Werkstätten, Künstlerunterkunft<!--:-->','','publish','closed','open','','haus5','','','2011-06-07 15:39:35','2011-06-07 15:39:35','',54,'http://localhost/freiland/?page_id=291',0,'page','',0),(292,1,'2011-06-07 15:39:02','2011-06-07 15:39:02','','Automatisch gespeicherter Entwurf','','inherit','closed','open','','291-revision','','','2011-06-07 15:39:02','2011-06-07 15:39:02','',291,'http://localhost/freiland/2011/06/07/291-revision/',0,'revision','',0),(293,1,'2011-06-07 15:39:22','2011-06-07 15:39:22','<!--:de-->Lorem ipsum dolor sit amet, con-sectetuer adipiscing elit. Aeneancommodo ligula eget dolor. Ae-nean massa. Cum sociis natoquepenatibus et magnis dis partu-rient montes, nascetur ridiculusmus. Donec quam felis, ultriciesnec, pellentesque eu, pretiumquis, sem. Nulla consequat mas-sa quis enim. Donec pede justo,fringilla vel, aliquet nec, vulpu-tate eget, arcu. In enim justo,rhoncus ut, imperdiet a, venen-atis vitae, justo. Nullam dictumfelis eu pede mollis pretium.Integer tincidunt. Cras dapibus.Vivamus elementum semper nisi.Aenean vulputate eleifend tel-lus. Aenean leo ligula, porttitoreu, consequat vitae, eleifend ac,enim.<!--:-->','<!--:de-->Werkstätten, Künstlerunterkunft<!--:--><!--:en-->Werkstätten, Künstlerunterkunft<!--:-->','','inherit','closed','open','','291-revision-2','','','2011-06-07 15:39:22','2011-06-07 15:39:22','',291,'http://localhost/freiland/2011/06/07/291-revision-2/',0,'revision','',0),(294,1,'2011-06-07 15:39:52','2011-06-07 15:39:52','<!--:de-->Lorem ipsum dolor sit amet, con-sectetuer adipiscing elit. Aeneancommodo ligula eget dolor. Ae-nean massa. Cum sociis natoquepenatibus et magnis dis partu-rient montes, nascetur ridiculusmus. Donec quam felis, ultriciesnec, pellentesque eu, pretiumquis, sem. Nulla consequat mas-sa quis enim. Donec pede justo,fringilla vel, aliquet nec, vulpu-tate eget, arcu. In enim justo,rhoncus ut, imperdiet a, venen-atis vitae, justo. Nullam dictumfelis eu pede mollis pretium.Integer tincidunt. Cras dapibus.Vivamus elementum semper nisi.Aenean vulputate eleifend tel-lus. Aenean leo ligula, porttitoreu, consequat vitae, eleifend ac,enim.<!--:-->','<!--:de-->Aquarium<!--:--><!--:en-->Aquarium<!--:-->','','publish','closed','open','','haus6','','','2011-06-07 15:43:22','2011-06-07 15:43:22','',54,'http://localhost/freiland/?page_id=294',0,'page','',0),(295,1,'2011-06-07 15:39:37','2011-06-07 15:39:37','','Automatisch gespeicherter Entwurf','','inherit','closed','open','','294-revision','','','2011-06-07 15:39:37','2011-06-07 15:39:37','',294,'http://localhost/freiland/2011/06/07/294-revision/',0,'revision','',0),(296,1,'2011-06-07 15:39:52','2011-06-07 15:39:52','<!--:de-->Lorem ipsum dolor sit amet, con-sectetuer adipiscing elit. Aeneancommodo ligula eget dolor. Ae-nean massa. Cum sociis natoquepenatibus et magnis dis partu-rient montes, nascetur ridiculusmus. Donec quam felis, ultriciesnec, pellentesque eu, pretiumquis, sem. Nulla consequat mas-sa quis enim. Donec pede justo,fringilla vel, aliquet nec, vulpu-tate eget, arcu. In enim justo,rhoncus ut, imperdiet a, venen-atis vitae, justo. Nullam dictumfelis eu pede mollis pretium.Integer tincidunt. Cras dapibus.Vivamus elementum semper nisi.Aenean vulputate eleifend tel-lus. Aenean leo ligula, porttitoreu, consequat vitae, eleifend ac,enim.<!--:-->','<!--:de-->Aquarium<!--:--><!--:en-->Aquarium<!--:-->','','inherit','closed','open','','294-revision-2','','','2011-06-07 15:39:52','2011-06-07 15:39:52','',294,'http://localhost/freiland/2011/06/07/294-revision-2/',0,'revision','',0),(297,1,'2011-06-08 10:57:08','2011-06-08 10:57:08','<!--:de-->HAFTUNGSBESCHRÄNKUNG\n\nVerantwortlich für dieses Informationsangebot ist der eingetragene Verein Event\nUs e.V. - im folgenden Anbieter/Herausgeber bzw. „wir“ genannt. Die Informati-\nonen auf dieser Website wurden mit großer Sorgfalt zusammengestellt. Für die\nRichtigkeit und Vollständigkeit kann gleichwohl keine Gewähr übernommen wer-\nden. Aus diesem Grund ist jegliche Haftung für eventuelle Schäden im Zusam-\nmenhang mit der Nutzung des Informationsangebots ausgeschlossen. Durch die\nbloße Nutzung dieser Website kommt keinerlei Vertragsverhältnis zwischen Nutzer\nund Anbieter/Herausgeber zustande.\n\nHINWEIS ZUM URHEBERRECHT\n\nDer gesamte Inhalt dieser Website unterliegt dem Urheberrecht. Unerlaubte Ver-\nwendung, Reproduktion oder Wiedergabe des Inhalts oder von Teilen des Inhalts\nist untersagt bzw. nur mit ausdrücklicher schriftlicher Genehmigung gestattet.\nWegen einer Erlaubnis zur Nutzung des Inhalts wenden Sie sich bitte an den Her-\nausgeber. (info@dimensionale-berlin.de)\n\nHINWEIS ZU EXTERNEN LINKS\n\nSoweit von dieser Website auf andere Websites Links gelegt sind, wird darauf hin-\ngewiesen, dass keinerlei Einfluss auf die Gestaltung und die Inhalte der gelinkten\nSeiten besteht und sich deren Inhalt nicht zu eigen gemacht wird. Dies gilt für alle\nauf dieser Seite ausgebrachten, externen Links und für alle Inhalte der Seiten, zu\ndenen Werbemittel (z.B. Banner, Textanzeigen, Videoanzeigen) führen. Für ver-\nlinkte Seiten gilt, dass rechtswidrige Inhalte zum Zeitpunkt der Verlinkung nicht\nerkennbar waren. Die Links werden regelmäßig auf rechtswidrige Inhalte über-\nprüft und bei Rechtsverletzungen unverzüglich entfernt.\n\nDATENSCHUTZ\n\nNach § 13 Abs. 1 des Telemediengesetz (TMG) möchten wir Sie als Nutzer un-\nseres Informationsagebots über Art, Umfang und Zwecke der Erhebung und\nVerwendung personenbezogener Daten im Rahmen dieser Internetpräsenz in\nKenntnis setzen. Wir erheben und verwenden Ihre personenbezogenen Daten<!--:-->','<!--:de-->Disclaimer<!--:--><!--:en-->Disclaimer<!--:-->','','inherit','closed','open','','57-autosave','','','2011-06-08 10:57:08','2011-06-08 10:57:08','',57,'http://localhost/freiland/2011/06/08/57-autosave/',0,'revision','',0),(298,1,'2011-04-28 22:27:06','2011-04-28 22:27:06','<!--:de-->HAFTUNGSBESCHRÄNKUNG\r\n\r\nVerantwortlich für dieses Informationsangebot ist der eingetragene Verein Event\r\nUs e.V. - im folgenden Anbieter/Herausgeber bzw. „wir“ genannt. Die Informati-\r\nonen auf dieser Website wurden mit großer Sorgfalt zusammengestellt. Für die\r\nRichtigkeit und Vollständigkeit kann gleichwohl keine Gewähr übernommen wer-\r\nden. Aus diesem Grund ist jegliche Haftung für eventuelle Schäden im Zusam-\r\nmenhang mit der Nutzung des Informationsangebots ausgeschlossen. Durch die\r\nbloße Nutzung dieser Website kommt keinerlei Vertragsverhältnis zwischen Nutzer\r\nund Anbieter/Herausgeber zustande.\r\n\r\nHINWEIS ZUM URHEBERRECHT\r\n\r\nDer gesamte Inhalt dieser Website unterliegt dem Urheberrecht. Unerlaubte Ver-\r\nwendung, Reproduktion oder Wiedergabe des Inhalts oder von Teilen des Inhalts\r\nist untersagt bzw. nur mit ausdrücklicher schriftlicher Genehmigung gestattet.\r\nWegen einer Erlaubnis zur Nutzung des Inhalts wenden Sie sich bitte an den Her-\r\nausgeber. (info@dimensionale-berlin.de)\r\n\r\nHINWEIS ZU EXTERNEN LINKS\r\n\r\nSoweit von dieser Website auf andere Websites Links gelegt sind, wird darauf hin-\r\ngewiesen, dass keinerlei Einfluss auf die Gestaltung und die Inhalte der gelinkten\r\nSeiten besteht und sich deren Inhalt nicht zu eigen gemacht wird. Dies gilt für alle\r\nauf dieser Seite ausgebrachten, externen Links und für alle Inhalte der Seiten, zu\r\ndenen Werbemittel (z.B. Banner, Textanzeigen, Videoanzeigen) führen. Für ver-\r\nlinkte Seiten gilt, dass rechtswidrige Inhalte zum Zeitpunkt der Verlinkung nicht\r\nerkennbar waren. Die Links werden regelmäßig auf rechtswidrige Inhalte über-\r\nprüft und bei Rechtsverletzungen unverzüglich entfernt.\r\n\r\nDATENSCHUTZ\r\n\r\nNach § 13 Abs. 1 des Telemediengesetz (TMG) möchten wir Sie als Nutzer un-\r\nseres Informationsagebots über Art, Umfang und Zwecke der Erhebung und\r\nVerwendung personenbezogener Daten im Rahmen dieser Internetpräsenz in\r\nKenntnis setzen. Wir erheben und verwenden Ihre personenbezogenen Daten\r\n<!--:-->','<!--:de-->Disclaimer<!--:--><!--:en-->Disclaimer<!--:-->','','inherit','closed','open','','57-revision-3','','','2011-04-28 22:27:06','2011-04-28 22:27:06','',57,'http://localhost/freiland/2011/04/28/57-revision-3/',0,'revision','',0),(299,1,'2011-06-08 10:57:13','2011-06-08 10:57:13','<!--:de--><h1>HAFTUNGSBESCHRÄNKUNG</h1>\r\n\r\nVerantwortlich für dieses Informationsangebot ist der eingetragene Verein Event\r\nUs e.V. - im folgenden Anbieter/Herausgeber bzw. „wir“ genannt. Die Informati-\r\nonen auf dieser Website wurden mit großer Sorgfalt zusammengestellt. Für die\r\nRichtigkeit und Vollständigkeit kann gleichwohl keine Gewähr übernommen wer-\r\nden. Aus diesem Grund ist jegliche Haftung für eventuelle Schäden im Zusam-\r\nmenhang mit der Nutzung des Informationsangebots ausgeschlossen. Durch die\r\nbloße Nutzung dieser Website kommt keinerlei Vertragsverhältnis zwischen Nutzer\r\nund Anbieter/Herausgeber zustande.\r\n\r\nHINWEIS ZUM URHEBERRECHT\r\n\r\nDer gesamte Inhalt dieser Website unterliegt dem Urheberrecht. Unerlaubte Ver-\r\nwendung, Reproduktion oder Wiedergabe des Inhalts oder von Teilen des Inhalts\r\nist untersagt bzw. nur mit ausdrücklicher schriftlicher Genehmigung gestattet.\r\nWegen einer Erlaubnis zur Nutzung des Inhalts wenden Sie sich bitte an den Her-\r\nausgeber. (info@dimensionale-berlin.de)\r\n\r\nHINWEIS ZU EXTERNEN LINKS\r\n\r\nSoweit von dieser Website auf andere Websites Links gelegt sind, wird darauf hin-\r\ngewiesen, dass keinerlei Einfluss auf die Gestaltung und die Inhalte der gelinkten\r\nSeiten besteht und sich deren Inhalt nicht zu eigen gemacht wird. Dies gilt für alle\r\nauf dieser Seite ausgebrachten, externen Links und für alle Inhalte der Seiten, zu\r\ndenen Werbemittel (z.B. Banner, Textanzeigen, Videoanzeigen) führen. Für ver-\r\nlinkte Seiten gilt, dass rechtswidrige Inhalte zum Zeitpunkt der Verlinkung nicht\r\nerkennbar waren. Die Links werden regelmäßig auf rechtswidrige Inhalte über-\r\nprüft und bei Rechtsverletzungen unverzüglich entfernt.\r\n\r\nDATENSCHUTZ\r\n\r\nNach § 13 Abs. 1 des Telemediengesetz (TMG) möchten wir Sie als Nutzer un-\r\nseres Informationsagebots über Art, Umfang und Zwecke der Erhebung und\r\nVerwendung personenbezogener Daten im Rahmen dieser Internetpräsenz in\r\nKenntnis setzen. Wir erheben und verwenden Ihre personenbezogenen Daten<!--:-->','<!--:de-->Disclaimer<!--:--><!--:en-->Disclaimer<!--:-->','','inherit','closed','open','','57-revision-4','','','2011-06-08 10:57:13','2011-06-08 10:57:13','',57,'http://localhost/freiland/2011/06/08/57-revision-4/',0,'revision','',0),(300,1,'2011-04-28 22:31:56','2011-04-28 22:31:56','<!--:de-->VERANTWORTLICHE IM SINNE DES TMG:\r\n\r\nCULTUS UG\r\nFriedrich-Engels-Str. 22\r\n14473 Potsdam\r\nTel. : +4917632539322\r\nmail: office@freiland-potsdam.de\r\nwww.freiland-potsdam.de\r\nRegistergericht: Amtsgericht Potsdam\r\nRegisternummer: HRB 23680 P\r\n\r\nVertretungsberechtigte Gesellschafter:\r\nAchim Trautvetter, (Anschrift wie oben)\r\nDirk Harder, (Anschrift wie oben)\r\n\r\nVerantwortlich für Layout und Design der Seite ist:\r\nYana Vidysh\r\n\r\nHaftung für Inhalte:\r\nDie Inhalte unserer Seiten wurden mit größter Sorgfalt erstellt. Für die Richtigkeit,\r\nVollständigkeit und Aktualität der Inhalte können wir jedoch keine Gewähr über-\r\nnehmen.\r\n\r\nAls Diensteanbieter sind wir gemäß § 7 Abs.1 TMG für eigene Inhalte auf diesen\r\nSeiten nach den allgemeinen Gesetzen verantwortlich.Nach § 8 bis 10 TMG sind\r\nwir als Diensteanbieter jedoch nicht verpflichtet, übermittelte oder gespeicher-\r\nte fremde Informationen zu überwachen oder nach Umständen zu forschen, die\r\nauf eine rechtswidrige Tätigkeit hinweisen. Verpflichtungen zur Entfernung oder\r\nSperrung der Nutzung von Informationen nach den allgemeinen Gesetzen bleiben\r\nhiervon unberührt. Eine diesbezügliche Haftung ist jedoch erst ab dem Zeitpunkt\r\nder Kenntnis einer konkreten Rechtsverletzung möglich. Bei bekannt werden von\r\nentsprechenden Rechtsverletzungen werden wir diese Inhalte umgehend entfer-\r\nnen.\r\n<!--:-->','<!--:de-->Impressum | Kontakt<!--:--><!--:en-->Impressum | Kontakt<!--:-->','','inherit','closed','open','','64-revision-3','','','2011-04-28 22:31:56','2011-04-28 22:31:56','',64,'http://localhost/freiland/2011/04/28/64-revision-3/',0,'revision','',0),(301,1,'2011-06-08 11:05:25','2011-06-08 11:05:25','<!--:de--><h2>VERANTWORTLICHE IM SINNE DES TMG:<h2>\r\n\r\nCULTUS UG\r\nFriedrich-Engels-Str. 22\r\n14473 Potsdam\r\nTel. : +4917632539322\r\nmail: office@freiland-potsdam.de\r\nwww.freiland-potsdam.de\r\nRegistergericht: Amtsgericht Potsdam\r\nRegisternummer: HRB 23680 P\r\n\r\nVertretungsberechtigte Gesellschafter:\r\nAchim Trautvetter, (Anschrift wie oben)\r\nDirk Harder, (Anschrift wie oben)\r\n\r\nVerantwortlich für Layout und Design der Seite ist:\r\nYana Vidysh\r\n\r\nHaftung für Inhalte:\r\nDie Inhalte unserer Seiten wurden mit größter Sorgfalt erstellt. Für die Richtigkeit,\r\nVollständigkeit und Aktualität der Inhalte können wir jedoch keine Gewähr über-\r\nnehmen.\r\n\r\nAls Diensteanbieter sind wir gemäß § 7 Abs.1 TMG für eigene Inhalte auf diesen\r\nSeiten nach den allgemeinen Gesetzen verantwortlich.Nach § 8 bis 10 TMG sind\r\nwir als Diensteanbieter jedoch nicht verpflichtet, übermittelte oder gespeicher-\r\nte fremde Informationen zu überwachen oder nach Umständen zu forschen, die\r\nauf eine rechtswidrige Tätigkeit hinweisen. Verpflichtungen zur Entfernung oder\r\nSperrung der Nutzung von Informationen nach den allgemeinen Gesetzen bleiben\r\nhiervon unberührt. Eine diesbezügliche Haftung ist jedoch erst ab dem Zeitpunkt\r\nder Kenntnis einer konkreten Rechtsverletzung möglich. Bei bekannt werden von\r\nentsprechenden Rechtsverletzungen werden wir diese Inhalte umgehend entfer-\r\nnen.\r\n<!--:-->','<!--:de-->Impressum | Kontakt<!--:--><!--:en-->Impressum | Kontakt<!--:-->','','inherit','closed','open','','64-revision-4','','','2011-06-08 11:05:25','2011-06-08 11:05:25','',64,'http://localhost/freiland/2011/06/08/64-revision-4/',0,'revision','',0),(302,1,'2011-06-08 11:05:51','2011-06-08 11:05:51','<!--:de--><h2>VERANTWORTLICHE IM SINNE DES TMG:</h2>\r\n\r\nCULTUS UG\r\nFriedrich-Engels-Str. 22\r\n14473 Potsdam\r\nTel. : +4917632539322\r\nmail: office@freiland-potsdam.de\r\nwww.freiland-potsdam.de\r\nRegistergericht: Amtsgericht Potsdam\r\nRegisternummer: HRB 23680 P\r\n\r\nVertretungsberechtigte Gesellschafter:\r\nAchim Trautvetter, (Anschrift wie oben)\r\nDirk Harder, (Anschrift wie oben)\r\n\r\nVerantwortlich für Layout und Design der Seite ist:\r\nYana Vidysh\r\n\r\nHaftung für Inhalte:\r\nDie Inhalte unserer Seiten wurden mit größter Sorgfalt erstellt. Für die Richtigkeit,\r\nVollständigkeit und Aktualität der Inhalte können wir jedoch keine Gewähr über-\r\nnehmen.\r\n\r\nAls Diensteanbieter sind wir gemäß § 7 Abs.1 TMG für eigene Inhalte auf diesen\r\nSeiten nach den allgemeinen Gesetzen verantwortlich.Nach § 8 bis 10 TMG sind\r\nwir als Diensteanbieter jedoch nicht verpflichtet, übermittelte oder gespeicher-\r\nte fremde Informationen zu überwachen oder nach Umständen zu forschen, die\r\nauf eine rechtswidrige Tätigkeit hinweisen. Verpflichtungen zur Entfernung oder\r\nSperrung der Nutzung von Informationen nach den allgemeinen Gesetzen bleiben\r\nhiervon unberührt. Eine diesbezügliche Haftung ist jedoch erst ab dem Zeitpunkt\r\nder Kenntnis einer konkreten Rechtsverletzung möglich. Bei bekannt werden von\r\nentsprechenden Rechtsverletzungen werden wir diese Inhalte umgehend entfer-\r\nnen.\r\n<!--:-->','<!--:de-->Impressum | Kontakt<!--:--><!--:en-->Impressum | Kontakt<!--:-->','','inherit','closed','open','','64-revision-5','','','2011-06-08 11:05:51','2011-06-08 11:05:51','',64,'http://localhost/freiland/2011/06/08/64-revision-5/',0,'revision','',0),(303,1,'2011-06-08 11:08:09','2011-06-08 11:08:09','<!--:de--><h2>VERANTWORTLICHE IM SINNE DES TMG:</h2>\r\n\r\nCULTUS UG\r\nFriedrich-Engels-Str. 22\r\n14473 Potsdam\r\nTel. : +4917632539322\r\nmail: office@freiland-potsdam.de\r\nwww.freiland-potsdam.de\r\nRegistergericht: Amtsgericht Potsdam\r\nRegisternummer: HRB 23680 P\r\n\r\nVertretungsberechtigte Gesellschafter:\r\nAchim Trautvetter, (Anschrift wie oben)\r\nDirk Harder, (Anschrift wie oben)\r\n\r\nVerantwortlich für Layout und Design der Seite ist:\r\nYana Vidysh\r\nProgrammierung und CSS:\r\nChristoph Herbst, email: chris.p.herbst[at]googlemail.com\r\nRalph B. Magnus\r\n\r\n\r\nHaftung für Inhalte:\r\nDie Inhalte unserer Seiten wurden mit größter Sorgfalt erstellt. Für die Richtigkeit,\r\nVollständigkeit und Aktualität der Inhalte können wir jedoch keine Gewähr über-\r\nnehmen.\r\n\r\nAls Diensteanbieter sind wir gemäß § 7 Abs.1 TMG für eigene Inhalte auf diesen\r\nSeiten nach den allgemeinen Gesetzen verantwortlich.Nach § 8 bis 10 TMG sind\r\nwir als Diensteanbieter jedoch nicht verpflichtet, übermittelte oder gespeicher-\r\nte fremde Informationen zu überwachen oder nach Umständen zu forschen, die\r\nauf eine rechtswidrige Tätigkeit hinweisen. Verpflichtungen zur Entfernung oder\r\nSperrung der Nutzung von Informationen nach den allgemeinen Gesetzen bleiben\r\nhiervon unberührt. Eine diesbezügliche Haftung ist jedoch erst ab dem Zeitpunkt\r\nder Kenntnis einer konkreten Rechtsverletzung möglich. Bei bekannt werden von\r\nentsprechenden Rechtsverletzungen werden wir diese Inhalte umgehend entfer-\r\nnen.\r\n<!--:-->','<!--:de-->Impressum | Kontakt<!--:--><!--:en-->Impressum | Kontakt<!--:-->','','inherit','closed','open','','64-revision-6','','','2011-06-08 11:08:09','2011-06-08 11:08:09','',64,'http://localhost/freiland/2011/06/08/64-revision-6/',0,'revision','',0),(304,1,'2011-06-08 11:09:02','2011-06-08 11:09:02','<!--:de--><h2>VERANTWORTLICHE IM SINNE DES TMG:</h2>\r\n\r\nCULTUS UG\r\nFriedrich-Engels-Str. 22\r\n14473 Potsdam\r\nTel. : +4917632539322\r\nmail: office@freiland-potsdam.de\r\nwww.freiland-potsdam.de\r\nRegistergericht: Amtsgericht Potsdam\r\nRegisternummer: HRB 23680 P\r\n\r\nVertretungsberechtigte Gesellschafter:\r\nAchim Trautvetter, (Anschrift wie oben)\r\nDirk Harder, (Anschrift wie oben)\r\n\r\nVerantwortlich für Layout und Design der Seite ist:\r\nYana Vidysh\r\nProgrammierung und CSS:\r\nChristoph Herbst, chris.p.herbst[at]googlemail.com\r\nRalph B. Magnus\r\n\r\n\r\nHaftung für Inhalte:\r\nDie Inhalte unserer Seiten wurden mit größter Sorgfalt erstellt. Für die Richtigkeit,\r\nVollständigkeit und Aktualität der Inhalte können wir jedoch keine Gewähr über-\r\nnehmen.\r\n\r\nAls Diensteanbieter sind wir gemäß § 7 Abs.1 TMG für eigene Inhalte auf diesen\r\nSeiten nach den allgemeinen Gesetzen verantwortlich.Nach § 8 bis 10 TMG sind\r\nwir als Diensteanbieter jedoch nicht verpflichtet, übermittelte oder gespeicher-\r\nte fremde Informationen zu überwachen oder nach Umständen zu forschen, die\r\nauf eine rechtswidrige Tätigkeit hinweisen. Verpflichtungen zur Entfernung oder\r\nSperrung der Nutzung von Informationen nach den allgemeinen Gesetzen bleiben\r\nhiervon unberührt. Eine diesbezügliche Haftung ist jedoch erst ab dem Zeitpunkt\r\nder Kenntnis einer konkreten Rechtsverletzung möglich. Bei bekannt werden von\r\nentsprechenden Rechtsverletzungen werden wir diese Inhalte umgehend entfer-\r\nnen.\r\n<!--:-->','<!--:de-->Impressum | Kontakt<!--:--><!--:en-->Impressum | Kontakt<!--:-->','','inherit','closed','open','','64-revision-7','','','2011-06-08 11:09:02','2011-06-08 11:09:02','',64,'http://localhost/freiland/2011/06/08/64-revision-7/',0,'revision','',0),(305,1,'2011-05-31 19:15:17','2011-05-31 19:15:17','<!--:de--><div id=\"start_box\" style=\"width=100%; margin:20px; text-align: center;\">\r\n<a href=\"events/\"><img id=\"welcome_img\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/willkommen.png\" alt=\"\" style=\"margin: 0px auto;\"/></a>\r\n</div><!--:--><!--:en--><div id=\"start_box\" style=\"width=100%; margin:20px; text-align: center;\">\r\n<a href=\"events/\"><img id=\"welcome_img\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/willkommen.png\" alt=\"\" style=\"margin: 0px auto;\"/></a>\r\n</div><!--:-->','<!--:de-->Startseite<!--:--><!--:en-->Startseite<!--:-->','','inherit','closed','open','','265-revision-5','','','2011-05-31 19:15:17','2011-05-31 19:15:17','',265,'http://localhost/freiland/2011/05/31/265-revision-5/',0,'revision','',0),(306,1,'2011-06-09 07:14:29','2011-06-09 07:14:29','<!--:de--><div id=\"start_box\" style=\"width=100%; margin:20px; text-align: center;\">\r\n<a href=\"events/\"><img id=\"welcome_img\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/willkommen.png\" alt=\"\" style=\"margin: 0px auto; border: 0px;\"/></a>\r\n</div><!--:--><!--:en--><div id=\"start_box\" style=\"width=100%; margin:20px; text-align: center;\">\r\n<a href=\"events/\"><img id=\"welcome_img\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/willkommen.png\" alt=\"\" style=\"margin: 0px auto;\"/></a>\r\n</div><!--:-->','<!--:de-->Startseite<!--:--><!--:en-->Startseite<!--:-->','','inherit','closed','open','','265-revision-6','','','2011-06-09 07:14:29','2011-06-09 07:14:29','',265,'http://localhost/freiland/2011/06/09/265-revision-6/',0,'revision','',0),(308,1,'2011-06-09 07:14:48','2011-06-09 07:14:48','<!--:de--><div id=\"start_box\" style=\"width=100%; margin:20px; text-align: center;\">\r\n<a href=\"events/\"><img id=\"welcome_img\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/willkommen.png\" alt=\"\" style=\"margin: 0px auto; border: 0px;\"/></a>\r\n</div><!--:--><!--:en--><div id=\"start_box\" style=\"width=100%; margin:20px; text-align: center;\">\r\n<a href=\"events/\"><img id=\"welcome_img\" src=\"http://localhost/freiland/wp-content/themes/freiland/images/willkommen.png\" alt=\"\" style=\"margin: 0px auto; border: 0px\"/></a>\r\n</div><!--:-->','<!--:de-->Startseite<!--:--><!--:en-->Startseite<!--:-->','','inherit','closed','open','','265-revision-7','','','2011-06-09 07:14:48','2011-06-09 07:14:48','',265,'http://localhost/freiland/2011/06/09/265-revision-7/',0,'revision','',0),(309,1,'2011-06-08 10:58:38','2011-06-08 10:58:38','<!--:de--><h2>HAFTUNGSBESCHRÄNKUNG</h2>\r\n\r\nVerantwortlich für dieses Informationsangebot ist der eingetragene Verein Event\r\nUs e.V. - im folgenden Anbieter/Herausgeber bzw. „wir“ genannt. Die Informati-\r\nonen auf dieser Website wurden mit großer Sorgfalt zusammengestellt. Für die\r\nRichtigkeit und Vollständigkeit kann gleichwohl keine Gewähr übernommen wer-\r\nden. Aus diesem Grund ist jegliche Haftung für eventuelle Schäden im Zusam-\r\nmenhang mit der Nutzung des Informationsangebots ausgeschlossen. Durch die\r\nbloße Nutzung dieser Website kommt keinerlei Vertragsverhältnis zwischen Nutzer\r\nund Anbieter/Herausgeber zustande.\r\n\r\n<h2>HINWEIS ZUM URHEBERRECHT</h2>\r\n\r\nDer gesamte Inhalt dieser Website unterliegt dem Urheberrecht. Unerlaubte Ver-\r\nwendung, Reproduktion oder Wiedergabe des Inhalts oder von Teilen des Inhalts\r\nist untersagt bzw. nur mit ausdrücklicher schriftlicher Genehmigung gestattet.\r\nWegen einer Erlaubnis zur Nutzung des Inhalts wenden Sie sich bitte an den Her-\r\nausgeber. (info@dimensionale-berlin.de)\r\n\r\n<h2>HINWEIS ZU EXTERNEN LINKS</h2>\r\n\r\nSoweit von dieser Website auf andere Websites Links gelegt sind, wird darauf hin-\r\ngewiesen, dass keinerlei Einfluss auf die Gestaltung und die Inhalte der gelinkten\r\nSeiten besteht und sich deren Inhalt nicht zu eigen gemacht wird. Dies gilt für alle\r\nauf dieser Seite ausgebrachten, externen Links und für alle Inhalte der Seiten, zu\r\ndenen Werbemittel (z.B. Banner, Textanzeigen, Videoanzeigen) führen. Für ver-\r\nlinkte Seiten gilt, dass rechtswidrige Inhalte zum Zeitpunkt der Verlinkung nicht\r\nerkennbar waren. Die Links werden regelmäßig auf rechtswidrige Inhalte über-\r\nprüft und bei Rechtsverletzungen unverzüglich entfernt.\r\n\r\n<h2>DATENSCHUTZ</h2>\r\n\r\nNach § 13 Abs. 1 des Telemediengesetz (TMG) möchten wir Sie als Nutzer un-\r\nseres Informationsagebots über Art, Umfang und Zwecke der Erhebung und\r\nVerwendung personenbezogener Daten im Rahmen dieser Internetpräsenz in\r\nKenntnis setzen. Wir erheben und verwenden Ihre personenbezogenen Daten<!--:-->','<!--:de-->Disclaimer<!--:--><!--:en-->Disclaimer<!--:-->','','inherit','closed','open','','57-revision-5','','','2011-06-08 10:58:38','2011-06-08 10:58:38','',57,'http://localhost/freiland/2011/06/08/57-revision-5/',0,'revision','',0),(310,1,'2011-06-08 11:09:22','2011-06-08 11:09:22','<!--:de--><h2>VERANTWORTLICHE IM SINNE DES TMG:</h2>\r\n\r\nCULTUS UG\r\nFriedrich-Engels-Str. 22\r\n14473 Potsdam\r\nTel. : +4917632539322\r\nmail: office@freiland-potsdam.de\r\nwww.freiland-potsdam.de\r\nRegistergericht: Amtsgericht Potsdam\r\nRegisternummer: HRB 23680 P\r\n\r\nVertretungsberechtigte Gesellschafter:\r\nAchim Trautvetter, (Anschrift wie oben)\r\nDirk Harder, (Anschrift wie oben)\r\n\r\nVerantwortlich für Layout und Design der Seite ist:\r\nYana Vidysh\r\n\r\nProgrammierung und CSS:\r\nChristoph Herbst, chris.p.herbst[at]googlemail.com\r\nRalph B. Magnus\r\n\r\n\r\nHaftung für Inhalte:\r\nDie Inhalte unserer Seiten wurden mit größter Sorgfalt erstellt. Für die Richtigkeit,\r\nVollständigkeit und Aktualität der Inhalte können wir jedoch keine Gewähr über-\r\nnehmen.\r\n\r\nAls Diensteanbieter sind wir gemäß § 7 Abs.1 TMG für eigene Inhalte auf diesen\r\nSeiten nach den allgemeinen Gesetzen verantwortlich.Nach § 8 bis 10 TMG sind\r\nwir als Diensteanbieter jedoch nicht verpflichtet, übermittelte oder gespeicher-\r\nte fremde Informationen zu überwachen oder nach Umständen zu forschen, die\r\nauf eine rechtswidrige Tätigkeit hinweisen. Verpflichtungen zur Entfernung oder\r\nSperrung der Nutzung von Informationen nach den allgemeinen Gesetzen bleiben\r\nhiervon unberührt. Eine diesbezügliche Haftung ist jedoch erst ab dem Zeitpunkt\r\nder Kenntnis einer konkreten Rechtsverletzung möglich. Bei bekannt werden von\r\nentsprechenden Rechtsverletzungen werden wir diese Inhalte umgehend entfer-\r\nnen.\r\n<!--:-->','<!--:de-->Impressum | Kontakt<!--:--><!--:en-->Impressum | Kontakt<!--:-->','','inherit','closed','open','','64-revision-8','','','2011-06-08 11:09:22','2011-06-08 11:09:22','',64,'http://localhost/freiland/2011/06/08/64-revision-8/',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`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 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;
/*!40101 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 (45,6,0),(44,6,0),(43,6,0),(56,6,0),(52,6,0),(75,25,0),(71,25,0),(73,25,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`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 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=65 DEFAULT CHARSET=utf8;
/*!40101 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,0),(6,6,'nav_menu','',0,5),(7,7,'link_category','Links imported from SMW',0,0),(15,15,'category','Events',0,0),(22,22,'category','Press',0,0),(23,23,'category','News',0,0),(24,24,'category','',0,0),(25,25,'nav_menu','',0,3),(26,26,'category','',15,0),(28,28,'category','',15,0),(30,30,'category','',15,0),(32,32,'category','',15,0),(34,34,'category','',15,0),(36,36,'category','',15,0),(38,38,'link_category','',0,0),(64,64,'link_category','',0,0);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_terms`
--
DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 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=65 DEFAULT CHARSET=utf8;
/*!40101 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),(6,'Main menu','main-menu',0),(7,'smwimport','smwimport',0),(15,'Events','events',0),(22,'Presse','press',0),(23,'News','news',0),(24,'Galerie','images',0),(25,'extern','extern',0),(26,'eventtype','eventtype',0),(28,'genre','genre',0),(30,'location','location',0),(32,'house','house',0),(34,'room','room',0),(36,'age','age',0),(38,'SMW Test Category','smw-test-category',0),(64,'Freiland','freiland-2',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 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=22 DEFAULT CHARSET=utf8;
/*!40101 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,'aim',''),(10,1,'yim',''),(11,1,'jabber',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";s:1:\"1\";}'),(13,1,'wp_user_level','10'),(14,1,'wp_dashboard_quick_press_last_post_id','307'),(15,1,'closedpostboxes_page','a:0:{}'),(16,1,'metaboxhidden_page','a:1:{i:0;s:7:\"slugdiv\";}'),(17,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\";}'),(18,1,'metaboxhidden_nav-menus','a:2:{i:0;s:8:\"add-post\";i:1;s:12:\"add-post_tag\";}'),(19,1,'nav_menu_recently_edited','25'),(20,1,'wp_user-settings','hidetb=0&editor=html&m8=o&m2=o&m9=o&align=left&imgsize=large'),(21,1,'wp_user-settings-time','1307460949');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 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=2 DEFAULT CHARSET=utf8;
/*!40101 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$Bgs/exKe.fQAqqvgh.pirqvobkWeL0.','admin','chris.p.herbst@googlemail.com','','2011-02-22 16:23:17','',0,'admin');
/*!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 2011-07-05 10:09:51