-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroboto-wp--latest.sql
1492 lines (1445 loc) · 646 KB
/
roboto-wp--latest.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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- MySQL dump 10.13 Distrib 5.5.25, for osx10.6 (i386)
--
-- Host: localhost Database: roboto-wp
-- ------------------------------------------------------
-- Server version 5.5.25
/*!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=InnoDB 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_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=InnoDB 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 */;
INSERT INTO `wp_comments` VALUES (1,1,'Mr WordPress','','http://wordpress.org/','','2013-03-10 00:44:54','2013-03-10 00:44:54','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'post-trashed','','',0,0);
/*!40000 ALTER TABLE `wp_comments` 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=InnoDB 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,
`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=InnoDB AUTO_INCREMENT=401 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,'siteurl','http://localhost:8888/roboto','yes');
INSERT INTO `wp_options` VALUES (2,'blogname','The Mr. Roboto Project','yes');
INSERT INTO `wp_options` VALUES (3,'blogdescription','Just another WordPress site','yes');
INSERT INTO `wp_options` VALUES (4,'users_can_register','0','yes');
INSERT INTO `wp_options` VALUES (5,'admin_email','[email protected]','yes');
INSERT INTO `wp_options` VALUES (6,'start_of_week','1','yes');
INSERT INTO `wp_options` VALUES (7,'use_balanceTags','0','yes');
INSERT INTO `wp_options` VALUES (8,'use_smilies','1','yes');
INSERT INTO `wp_options` VALUES (9,'require_name_email','1','yes');
INSERT INTO `wp_options` VALUES (10,'comments_notify','','yes');
INSERT INTO `wp_options` VALUES (11,'posts_per_rss','10','yes');
INSERT INTO `wp_options` VALUES (12,'rss_use_excerpt','0','yes');
INSERT INTO `wp_options` VALUES (13,'mailserver_url','mail.example.com','yes');
INSERT INTO `wp_options` VALUES (14,'mailserver_login','[email protected]','yes');
INSERT INTO `wp_options` VALUES (15,'mailserver_pass','password','yes');
INSERT INTO `wp_options` VALUES (16,'mailserver_port','110','yes');
INSERT INTO `wp_options` VALUES (17,'default_category','1','yes');
INSERT INTO `wp_options` VALUES (18,'default_comment_status','closed','yes');
INSERT INTO `wp_options` VALUES (19,'default_ping_status','closed','yes');
INSERT INTO `wp_options` VALUES (20,'default_pingback_flag','','yes');
INSERT INTO `wp_options` VALUES (21,'posts_per_page','10','yes');
INSERT INTO `wp_options` VALUES (22,'date_format','F j, Y','yes');
INSERT INTO `wp_options` VALUES (23,'time_format','g:i a','yes');
INSERT INTO `wp_options` VALUES (24,'links_updated_date_format','F j, Y g:i a','yes');
INSERT INTO `wp_options` VALUES (25,'links_recently_updated_prepend','<em>','yes');
INSERT INTO `wp_options` VALUES (26,'links_recently_updated_append','</em>','yes');
INSERT INTO `wp_options` VALUES (27,'links_recently_updated_time','120','yes');
INSERT INTO `wp_options` VALUES (28,'comment_moderation','','yes');
INSERT INTO `wp_options` VALUES (29,'moderation_notify','','yes');
INSERT INTO `wp_options` VALUES (30,'permalink_structure','/%postname%/','yes');
INSERT INTO `wp_options` VALUES (31,'gzipcompression','0','yes');
INSERT INTO `wp_options` VALUES (32,'hack_file','0','yes');
INSERT INTO `wp_options` VALUES (33,'blog_charset','UTF-8','yes');
INSERT INTO `wp_options` VALUES (34,'moderation_keys','','no');
INSERT INTO `wp_options` VALUES (35,'active_plugins','a:5:{i:0;s:32:\"acf-cf7-field-master/acf-cf7.php\";i:1;s:51:\"acf-field-date-time-picker/acf-date_time_picker.php\";i:2;s:29:\"acf-repeater/acf-repeater.php\";i:3;s:30:\"advanced-custom-fields/acf.php\";i:4;s:36:\"contact-form-7/wp-contact-form-7.php\";}','yes');
INSERT INTO `wp_options` VALUES (36,'home','http://localhost:8888/roboto','yes');
INSERT INTO `wp_options` VALUES (37,'category_base','','yes');
INSERT INTO `wp_options` VALUES (38,'ping_sites','http://rpc.pingomatic.com/','yes');
INSERT INTO `wp_options` VALUES (39,'advanced_edit','0','yes');
INSERT INTO `wp_options` VALUES (40,'comment_max_links','2','yes');
INSERT INTO `wp_options` VALUES (41,'gmt_offset','','yes');
INSERT INTO `wp_options` VALUES (42,'default_email_category','1','yes');
INSERT INTO `wp_options` VALUES (43,'recently_edited','','no');
INSERT INTO `wp_options` VALUES (44,'template','roboto-theme','yes');
INSERT INTO `wp_options` VALUES (45,'stylesheet','roboto-theme','yes');
INSERT INTO `wp_options` VALUES (46,'comment_whitelist','1','yes');
INSERT INTO `wp_options` VALUES (47,'blacklist_keys','','no');
INSERT INTO `wp_options` VALUES (48,'comment_registration','','yes');
INSERT INTO `wp_options` VALUES (49,'html_type','text/html','yes');
INSERT INTO `wp_options` VALUES (50,'use_trackback','0','yes');
INSERT INTO `wp_options` VALUES (51,'default_role','subscriber','yes');
INSERT INTO `wp_options` VALUES (52,'db_version','22441','yes');
INSERT INTO `wp_options` VALUES (53,'uploads_use_yearmonth_folders','1','yes');
INSERT INTO `wp_options` VALUES (54,'upload_path','','yes');
INSERT INTO `wp_options` VALUES (55,'blog_public','1','yes');
INSERT INTO `wp_options` VALUES (56,'default_link_category','2','yes');
INSERT INTO `wp_options` VALUES (57,'show_on_front','page','yes');
INSERT INTO `wp_options` VALUES (58,'tag_base','','yes');
INSERT INTO `wp_options` VALUES (59,'show_avatars','','yes');
INSERT INTO `wp_options` VALUES (60,'avatar_rating','G','yes');
INSERT INTO `wp_options` VALUES (61,'upload_url_path','','yes');
INSERT INTO `wp_options` VALUES (62,'thumbnail_size_w','150','yes');
INSERT INTO `wp_options` VALUES (63,'thumbnail_size_h','150','yes');
INSERT INTO `wp_options` VALUES (64,'thumbnail_crop','1','yes');
INSERT INTO `wp_options` VALUES (65,'medium_size_w','300','yes');
INSERT INTO `wp_options` VALUES (66,'medium_size_h','300','yes');
INSERT INTO `wp_options` VALUES (67,'avatar_default','mystery','yes');
INSERT INTO `wp_options` VALUES (68,'large_size_w','1024','yes');
INSERT INTO `wp_options` VALUES (69,'large_size_h','1024','yes');
INSERT INTO `wp_options` VALUES (70,'image_default_link_type','file','yes');
INSERT INTO `wp_options` VALUES (71,'image_default_size','','yes');
INSERT INTO `wp_options` VALUES (72,'image_default_align','','yes');
INSERT INTO `wp_options` VALUES (73,'close_comments_for_old_posts','','yes');
INSERT INTO `wp_options` VALUES (74,'close_comments_days_old','14','yes');
INSERT INTO `wp_options` VALUES (75,'thread_comments','','yes');
INSERT INTO `wp_options` VALUES (76,'thread_comments_depth','5','yes');
INSERT INTO `wp_options` VALUES (77,'page_comments','','yes');
INSERT INTO `wp_options` VALUES (78,'comments_per_page','50','yes');
INSERT INTO `wp_options` VALUES (79,'default_comments_page','newest','yes');
INSERT INTO `wp_options` VALUES (80,'comment_order','asc','yes');
INSERT INTO `wp_options` VALUES (81,'sticky_posts','a:0:{}','yes');
INSERT INTO `wp_options` VALUES (82,'widget_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wp_options` VALUES (83,'widget_text','a:3:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:145:\"<a href=\"http://goo.gl/maps/KvM0O\">5106 Penn Avenue, Pittsburgh, PA</a>\r\n<a href=\"mailto:[email protected]\">[email protected]</a>\";s:6:\"filter\";b:1;}i:3;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:108:\"5106 Penn Avenue, Pittsburgh, PA\r\n\r\n<a href=\"mailto:[email protected]\">[email protected]</a>\";s:6:\"filter\";b:1;}s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wp_options` VALUES (84,'widget_rss','a:0:{}','yes');
INSERT INTO `wp_options` VALUES (85,'uninstall_plugins','a:0:{}','no');
INSERT INTO `wp_options` VALUES (86,'timezone_string','America/New_York','yes');
INSERT INTO `wp_options` VALUES (87,'page_for_posts','12','yes');
INSERT INTO `wp_options` VALUES (88,'page_on_front','5','yes');
INSERT INTO `wp_options` VALUES (89,'default_post_format','0','yes');
INSERT INTO `wp_options` VALUES (90,'link_manager_enabled','0','yes');
INSERT INTO `wp_options` VALUES (91,'initial_db_version','22441','yes');
INSERT INTO `wp_options` VALUES (92,'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');
INSERT INTO `wp_options` VALUES (93,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wp_options` VALUES (94,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wp_options` VALUES (95,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wp_options` VALUES (96,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wp_options` VALUES (97,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
INSERT INTO `wp_options` VALUES (98,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:6:\"text-2\";}s:24:\"first-footer-widget-area\";a:1:{i:0;s:6:\"text-3\";}s:13:\"array_version\";i:3;}','yes');
INSERT INTO `wp_options` VALUES (99,'cron','a:4:{i:1367778412;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:1367801098;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:1367859614;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes');
INSERT INTO `wp_options` VALUES (101,'_site_transient_update_core','O:8:\"stdClass\":3:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":9:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:40:\"http://wordpress.org/wordpress-3.5.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":4:{s:4:\"full\";s:40:\"http://wordpress.org/wordpress-3.5.1.zip\";s:10:\"no_content\";s:51:\"http://wordpress.org/wordpress-3.5.1-no-content.zip\";s:11:\"new_bundled\";s:52:\"http://wordpress.org/wordpress-3.5.1-new-bundled.zip\";s:7:\"partial\";b:0;}s:7:\"current\";s:5:\"3.5.1\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"3.5\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1367762479;s:15:\"version_checked\";s:5:\"3.5.1\";}','yes');
INSERT INTO `wp_options` VALUES (105,'_site_transient_update_themes','O:8:\"stdClass\":3:{s:12:\"last_checked\";i:1367774260;s:7:\"checked\";a:3:{s:12:\"roboto-theme\";s:0:\"\";s:12:\"twentyeleven\";s:3:\"1.5\";s:12:\"twentytwelve\";s:3:\"1.1\";}s:8:\"response\";a:0:{}}','yes');
INSERT INTO `wp_options` VALUES (109,'_transient_random_seed','5a71eeff897a7853cdd9bfd6334a4129','yes');
INSERT INTO `wp_options` VALUES (110,'auth_key','o#:MnRmwz9qX4sGIo1e]G09r({/6[ThwhA@V}Uh2;L2(:<*mWdAx`V n/x.0$FH7','yes');
INSERT INTO `wp_options` VALUES (111,'auth_salt','H+X|kRgka-|g3:yM,.YV.?BKMHg<x$z+zV(h`Fu3QA=Q!IGIQ$x3 431-%[Y}c-[','yes');
INSERT INTO `wp_options` VALUES (112,'logged_in_key','sjBoG+J+okr+WPtKV-*?}(%{*Huo@B0@-C+5x+ZIq7S#%Wm0mAr1(jJv!b gGLzA','yes');
INSERT INTO `wp_options` VALUES (113,'logged_in_salt','0yQ*5nv+KLU:lrOg&WqChO/v)uLdD:z.A)tVfa38L^Yvx%8_%o$D(^t5K_QawY?L','yes');
INSERT INTO `wp_options` VALUES (114,'_site_transient_timeout_browser_57daddf5ff43235c7ff25707f291c88c','1363544812','yes');
INSERT INTO `wp_options` VALUES (115,'_site_transient_browser_57daddf5ff43235c7ff25707f291c88c','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"25.0.1364.160\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes');
INSERT INTO `wp_options` VALUES (116,'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:28:\"http://localhost:8888/roboto\";s:4:\"link\";s:104:\"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://localhost:8888/roboto/\";s:3:\"url\";s:137:\"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://localhost:8888/roboto/\";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');
INSERT INTO `wp_options` VALUES (117,'nonce_key','X3f!>p13}V>kVl@Bv=om@`TtH;SX[<fg!@R:H*Iyt2n^a`x6^$9b/>g*mb]+$iL9','yes');
INSERT INTO `wp_options` VALUES (118,'nonce_salt','[bKAFMX.5`VG]{[Xmf$~+|.XOyA74?xIKJ#QJVZCf,*RaMGq?}4!m@xC+a9twHU ','yes');
INSERT INTO `wp_options` VALUES (120,'can_compress_scripts','1','yes');
INSERT INTO `wp_options` VALUES (186,'_site_transient_update_plugins','O:8:\"stdClass\":2:{s:12:\"last_checked\";i:1367762479;s:8:\"response\";a:2:{s:30:\"advanced-custom-fields/acf.php\";O:8:\"stdClass\":5:{s:2:\"id\";s:5:\"21367\";s:4:\"slug\";s:22:\"advanced-custom-fields\";s:11:\"new_version\";s:5:\"4.1.1\";s:3:\"url\";s:59:\"http://wordpress.org/extend/plugins/advanced-custom-fields/\";s:7:\"package\";s:64:\"http://downloads.wordpress.org/plugin/advanced-custom-fields.zip\";}s:51:\"acf-field-date-time-picker/acf-date_time_picker.php\";O:8:\"stdClass\":5:{s:2:\"id\";s:5:\"39864\";s:4:\"slug\";s:26:\"acf-field-date-time-picker\";s:11:\"new_version\";s:5:\"2.0.8\";s:3:\"url\";s:63:\"http://wordpress.org/extend/plugins/acf-field-date-time-picker/\";s:7:\"package\";s:74:\"http://downloads.wordpress.org/plugin/acf-field-date-time-picker.2.0.8.zip\";}}}','yes');
INSERT INTO `wp_options` VALUES (190,'recently_activated','a:0:{}','yes');
INSERT INTO `wp_options` VALUES (191,'_transient_plugins_delete_result_1','1','yes');
INSERT INTO `wp_options` VALUES (192,'acf_version','4.1.0','yes');
INSERT INTO `wp_options` VALUES (194,'current_theme','','yes');
INSERT INTO `wp_options` VALUES (195,'theme_mods_roboto','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1367166636;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:24:\"first-footer-widget-area\";a:1:{i:0;s:6:\"text-2\";}}}}','yes');
INSERT INTO `wp_options` VALUES (196,'theme_switched','','yes');
INSERT INTO `wp_options` VALUES (199,'rewrite_rules','a:89:{s:8:\"shows/?$\";s:24:\"index.php?post_type=show\";s:38:\"shows/feed/(feed|rdf|rss|rss2|atom)/?$\";s:41:\"index.php?post_type=show&feed=$matches[1]\";s:33:\"shows/(feed|rdf|rss|rss2|atom)/?$\";s:41:\"index.php?post_type=show&feed=$matches[1]\";s:25:\"shows/page/([0-9]{1,})/?$\";s:42:\"index.php?post_type=show&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$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:33:\"shows/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"shows/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"shows/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"shows/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"shows/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:26:\"shows/([^/]+)/trackback/?$\";s:31:\"index.php?show=$matches[1]&tb=1\";s:46:\"shows/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?show=$matches[1]&feed=$matches[2]\";s:41:\"shows/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?show=$matches[1]&feed=$matches[2]\";s:34:\"shows/([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?show=$matches[1]&paged=$matches[2]\";s:41:\"shows/([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?show=$matches[1]&cpage=$matches[2]\";s:26:\"shows/([^/]+)(/[0-9]+)?/?$\";s:43:\"index.php?show=$matches[1]&page=$matches[2]\";s:22:\"shows/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"shows/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"shows/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"shows/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"shows/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";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:38:\"index.php?&page_id=5&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:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:20:\"([^/]+)(/[0-9]+)?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";}','yes');
INSERT INTO `wp_options` VALUES (201,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes');
INSERT INTO `wp_options` VALUES (202,'category_children','a:0:{}','yes');
INSERT INTO `wp_options` VALUES (213,'wpcf7','a:1:{s:7:\"version\";s:3:\"3.4\";}','yes');
INSERT INTO `wp_options` VALUES (257,'_site_transient_timeout_wporg_theme_feature_list','1367190468','yes');
INSERT INTO `wp_options` VALUES (258,'_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:19:{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:15:\"flexible-header\";i:10;s:20:\"front-page-post-form\";i:11;s:19:\"full-width-template\";i:12;s:12:\"microformats\";i:13;s:12:\"post-formats\";i:14;s:20:\"rtl-language-support\";i:15;s:11:\"sticky-post\";i:16;s:13:\"theme-options\";i:17;s:17:\"threaded-comments\";i:18;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');
INSERT INTO `wp_options` VALUES (259,'theme_mods_twentytwelve','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1367166642;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:6:\"text-2\";}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes');
INSERT INTO `wp_options` VALUES (260,'theme_mods_roboto-theme','a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}}','yes');
INSERT INTO `wp_options` VALUES (320,'_site_transient_timeout_browser_c974eb434a2c6aed35e3d5e0526ab74c','1368291783','yes');
INSERT INTO `wp_options` VALUES (321,'_site_transient_browser_c974eb434a2c6aed35e3d5e0526ab74c','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"26.0.1410.65\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes');
INSERT INTO `wp_options` VALUES (348,'_transient_timeout_plugin_slugs','1367773386','no');
INSERT INTO `wp_options` VALUES (349,'_transient_plugin_slugs','a:7:{i:0;s:30:\"advanced-custom-fields/acf.php\";i:1;s:32:\"acf-cf7-field-master/acf-cf7.php\";i:2;s:51:\"acf-field-date-time-picker/acf-date_time_picker.php\";i:3;s:29:\"acf-repeater/acf-repeater.php\";i:4;s:19:\"akismet/akismet.php\";i:5;s:36:\"contact-form-7/wp-contact-form-7.php\";i:6;s:47:\"regenerate-thumbnails/regenerate-thumbnails.php\";}','no');
INSERT INTO `wp_options` VALUES (363,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1367805982','no');
INSERT INTO `wp_options` VALUES (364,'_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, 29 Apr 2013 22:48:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://wordpress.org/?v=3.6-beta2-24163\";s:7:\"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:42:\"\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:20:\"WordPress 3.6 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:55:\"http://wordpress.org/news/2013/04/wordpress-3-6-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/news/2013/04/wordpress-3-6-beta-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:\"Mon, 29 Apr 2013 22:48:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2579\";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:369:\"WordPress 3.6 Beta 2 is now available! This is software still in development and we really don’t recommend that you run it on a production site — set up a test site just to play with the new version. To test WordPress 3.6, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip). The [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:2057:\"<p>WordPress 3.6 Beta 2 is now available!</p>\n<p>This is software still in development and <strong>we <em>really</em> don’t recommend that you run it on a production site</strong> — set up a test site just to play with the new version. To test WordPress 3.6, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.6-beta2.zip\">download the beta here</a> (zip).</p>\n<p>The longer-than-usual delay between beta 1 and beta 2 was due to poor user testing results with the Post Formats UI. Beta 2 contains a modified approach for format choosing and switching, which has done well in user testing. We’ve also made the Post Formats UI hide-able via Screen Options, and set a reasonable default based on what your theme supports.</p>\n<p>There were a lot of bug fixes and polishing tweaks done for beta 2 as well, so definitely check it out if you had an issues with beta 1.</p>\n<p>Plugin developers, theme developers, and WordPress hosts should be testing beta 2 extensively. The more you test the beta, the more stable our release candidates and our final release will be.</p>\n<p>As always, if you think you’ve found a bug, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href=\"http://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/report/5\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.6\">everything we’ve fixed</a> so far.</p>\n<p>We’re looking forward to your feedback. If you find a bug, please report it, and if you’re a developer, try to help us fix it. We’ve already had more than 150 contributors to version 3.6 — it’s not too late to join in!</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/2013/04/wordpress-3-6-beta-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:1;a:6:{s:4:\"data\";s:45:\"\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:\"Summer Mentorship Programs: GSoC and Gnome\";s:7:\"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/news/2013/04/summer-mentorship-programs-gsoc-and-gnome/\";s: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:85:\"http://wordpress.org/news/2013/04/summer-mentorship-programs-gsoc-and-gnome/#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, 25 Apr 2013 03:18:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s: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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2573\";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:354:\"As an open source, free software project, WordPress depends on the contributions of hundreds of people from around the globe — contributions in areas like core code, documentation, answering questions in the support forums, translation, and all the other things it takes to make WordPress the best publishing platform it can be, with the most [...]\";s: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:\"Jen Mylo\";s: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:5071:\"<p>As an open source, free software project, WordPress depends on the contributions of hundreds of people from around the globe — contributions in areas like core code, documentation, answering questions in the support forums, translation, and all the other things it takes to make WordPress the best publishing platform it can be, with the most supportive community. This year, we’re happy to be participating as a mentoring organization with two respected summer internship programs: <a href=\"http://www.google-melange.com/gsoc/homepage/google/gsoc2013\">Google Summer of Code (GSoC)</a> and the Gnome Outreach Program for Women.</p>\n<h3>Google Summer of Code</h3>\n<p>GSoC is a summer internship program funded by Google specifically for college/university student developers to work on open source coding projects. We have participated in the Google Summer of Code program in the past, and have enjoyed the opportunity to work with students in this way. Some of our best core developers were GSoC students once upon a time!</p>\n<p><a href=\"http://codex.wordpress.org/GSoC2013#Mentors\">Our mentors</a>, almost 30 talented developers with experience developing WordPress, will provide students with guidance and feedback over the course of the summer, culminating in the release of finished projects at the end of the program if all goes well.</p>\n<p>Students who successfully complete the program earn $5,000 for their summer efforts. Interested, or know a college student (newly accepted to college counts, too) who should be? All the information you need about our participation in the program, projects, mentors, and the application process is available on the <a href=\"http://codex.wordpress.org/GSoC2013\">GSoC 2013 page in the Codex</a>.</p>\n<h3>Gnome Outreach Program for Women</h3>\n<p>It’s not news that women form a low percentage of contributors in most open source projects, and WordPress is no different. We have great women in the contributor community, including some in fairly visible roles, but we still have a lot of work to do to get a representative gender balance on par with our user base.</p>\n<p>The Gnome Outreach Program for Women aims to provide opportunities for women to participate in open source projects, and offers a similar stipend, but there are three key differences between GSoC and Gnome aside from the gender requirement for Gnome.</p>\n<ol>\n<li><span style=\"font-size: 13px;line-height: 19px\">The Gnome program allows intern projects in many areas of contribution, not just code. In other words, interns can propose projects like documentation, community management, design, translation, or pretty much any area in which we have people contributing (including code).</span></li>\n<li><span style=\"font-size: 13px;line-height: 19px\">The Gnome Outreach Program for Women doesn’t require interns to be college students, though students are definitely welcome to participate. This means that women in all stages of life and career can take the opportunity to try working with open source communities for the summer.</span></li>\n<li><span style=\"font-size: 13px;line-height: 19px\">We have to help raise the money to pay the interns. Google funds GSoC on its own, and we only have to provide our mentors’ time. Gnome doesn’t have the same funding, so we need to pitch in to raise the money to cover our interns. If your company is interested in helping with this, please check out the program’s </span><a style=\"font-size: 13px;line-height: 19px\" href=\"https://live.gnome.org/OutreachProgramForWomen#For_Organizations_and_Companies\">sponsorship information</a><span style=\"font-size: 13px;line-height: 19px\"> and follow the contact instructions to get involved. You can earmark donations to support WordPress interns, or to support the program in general. (Pick us, pick us! <img src=\'http://wordpress.org/news/wp-includes/images/smilies/icon_smile.gif\' alt=\':)\' class=\'wp-smiley\' /> )</span></li>\n</ol>\n<p>The summer installment of the Gnome Outreach Program for Women follows the same schedule and general application format as GSoC, though there are more potential projects since it covers more areas of contribution. Women college students interested in doing a coding project are encouraged to apply for both programs to increase the odds of acceptance. All the information you need about our participation in the program, projects, mentors, and the application process is available on the <a href=\"http://codex.wordpress.org/Gnome_Summer_Program_for_Women\">Gnome Outreach Program for Women page in the Codex</a>.</p>\n<p>The application period just started, and it lasts another week (May 1 for Gnome, May 3 for GSoC), so if you think you qualify and are interested in getting involved, check out the information pages, get in touch, and apply… Good luck!</p>\n<p><a href=\"http://codex.wordpress.org/GSoC2013\">Google Summer of Code 2013 Information</a><br />\n<a href=\"http://codex.wordpress.org/Gnome_Summer_Program_for_Women\">Gnome Summer Outreach Program for Women 2013 Information</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:81:\"http://wordpress.org/news/2013/04/summer-mentorship-programs-gsoc-and-gnome/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:51:\"\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:31:\"WordPress 10th Anniversary Tees\";s:7:\"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/2013/04/wordpress-10th-anniversary-tees/\";s: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/2013/04/wordpress-10th-anniversary-tees/#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, 23 Apr 2013 16:40: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:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:5:\"Store\";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:\"swag\";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:4:\"wp10\";s:7:\"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=2561\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:334:\"In honor of the upcoming 10th anniversary celebrations, we’ve put a special 10th anniversary tshirt in the swag store at cost — $10 per shirt plus shipping. They’ll be on sale at this price until the anniversary on May 27, and they’ll start shipping out the week of April 29. Some people who are planning [...]\";s: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:\"Jen Mylo\";s: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:1943:\"<p><img class=\"alignleft wp-image-2562\" style=\"font-size: 13px;line-height: 19px;margin-right: 10px\" alt=\"WordPress 10th Anniversary logo\" src=\"http://wordpress.org/news/files/2013/04/wp10logo.jpg\" width=\"120\" height=\"119\" />In honor of the upcoming <a title=\"Save the Date: May 27\" href=\"http://wordpress.org/news/2013/04/save-the-date-may-27/\">10th anniversary celebrations</a>, we’ve put a special<a href=\"http://hellomerch.com/collections/wordpress/products/wordpress-10th-anniversary-t-shirt\"> 10th anniversary tshirt in the swag store</a> at cost — $10 per shirt plus shipping. They’ll be on sale at this price until the anniversary on May 27, and they’ll start shipping out the week of April 29.</p>\n<p>Some people who are planning parties or who organize meetups are already talking about doing group orders to save on shipping costs, which is a great idea — just make sure you allow enough shipping time. If you’re not sure if the tees could make it to you in time on your side of the world, use the contact options at the bottom of the store page to ask about shipping times. If they can’t reach you in time and you want to have a local printer do some for your group, we’ll post the vector file on the wp10 site within the next week (and this post will get updated accordingly). </p>\n<p>The shirts are available in black or silvery gray. Why silvery gray? Because of trivia: the traditional gift for 10th anniversaries is tin or aluminum. <img src=\'http://wordpress.org/news/wp-includes/images/smilies/icon_smile.gif\' alt=\':)\' class=\'wp-smiley\' /> </p>\n<p><a href=\"http://hellomerch.com/collections/wordpress/products/wordpress-10th-anniversary-t-shirt\"><img class=\"aligncenter size-full wp-image-2563\" alt=\"Silver and Black tshirts with WordPress 10th anniversary logo on them\" src=\"http://wordpress.org/news/files/2013/04/wp10shirtgrayblack.jpg\" width=\"643\" height=\"333\" /></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:71:\"http://wordpress.org/news/2013/04/wordpress-10th-anniversary-tees/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:42:\"\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:\"Save the Date: May 27\";s:7:\"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/2013/04/save-the-date-may-27/\";s: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/2013/04/save-the-date-may-27/#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, 11 Apr 2013 13:48: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:13:\"Uncategorized\";s:7:\"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=2555\";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:325:\"What’s on May 27, you ask? May 27, 2013 is the 10th anniversary of the first WordPress release! We think this is worth celebrating, and we want WordPress fans all over the world to celebrate with us by throwing their own parties. We’re using Meetup Everywhere to coordinate, and will be putting up a website [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Jen Mylo\";s: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:2102:\"<p>What’s on May 27, you ask?</p>\n<p>May 27, 2013 is the <strong>10th anniversary</strong> of the <a href=\"http://wordpress.org/news/2003/05/wordpress-now-available/\">first WordPress release</a>!</p>\n<p>We think this is worth celebrating, and we want WordPress fans all over the world to celebrate with us by throwing their own parties. <a href=\"http://www.meetup.com/WordPress/\">We’re using Meetup Everywhere</a> to coordinate, and will be putting up a website just for the 10th Anniversary so that we can collect photos, videos, tweets, and posts from all the parties.</p>\n<p>The rules are very simple:</p>\n<ol>\n<li><span style=\"line-height: 12.997159004211426px\">Pick a place to go where a bunch of people can be merry — a park, a bar, a backyard, whatever</span></li>\n<li>Spread the word to local meetups, tech groups, press, etc and get people to say they’ll come to your party</li>\n<li>If 50 or more people RSVP to your party, we’ll try to send you some WordPress stickers and buttons</li>\n<li>Have party attendees post photos, videos, and the like with the #wp10 hashtag</li>\n</ol>\n<p>We’ll be using Meetup Everywhere to coordinate parties all over the world, so get your city on the map and <a href=\"http://www.meetup.com/WordPress/\">register your party now</a> !</p>\n<p>We’ll follow up with registered organizers over the next few weeks with some tips for how to publicize your party and to get addresses for swag packages. To that end, make sure you check the option that lets WordPress 10th Anniversary know your email, or we won’t be able to get in touch with you for these things or to give you access to the WP10 blog.</p>\n<p>Whose party will be the biggest? The most fun? The most inventive? Will it be yours?</p>\n<p><em>Note: If you already run a group on meetup.com, making your party an event in your group is great, but you still need to post it and have people RSVP at the <a href=\"http://www.meetup.com/WordPress/\">special party page</a>, because regular groups and Meetup Everywhere groups aren’t connected yet. </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:60:\"http://wordpress.org/news/2013/04/save-the-date-may-27/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:42:\"\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:20:\"WordPress 3.6 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/2013/04/wordpress-3-6-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/2013/04/wordpress-3-6-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, 04 Apr 2013 17:25: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Uncategorized\";s:7:\"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=2547\";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:377:\"WordPress 3.6 Beta 1 is now available! This is software still in development and we really don’t recommend that you run it on a production site — set up a test site just to play with the new version. To test WordPress 3.6, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip). We’ve [...]\";s: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:4085:\"<p>WordPress 3.6 Beta 1 is now available!</p>\n<p>This is software still in development and <strong>we <em>really</em> don’t recommend that you run it on a production site</strong> — set up a test site just to play with the new version. To test WordPress 3.6, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.6-beta1.zip\">download the beta here</a> (zip).</p>\n<p>We’ve been working for nearly three months and have completed all the features that are slated for this release. This is a bit of a change from the betas of previous release cycles. I felt very strongly that we shouldn’t release a beta if we were still working on completing the main features. This beta is <strong>actually a beta</strong>, not an alpha that we’re calling a beta. If you are a WordPress plugin or theme developer, or a WordPress hosting provider, you should absolutely start testing your code against this new version <strong>now</strong>. More bugs will be fixed, and some of the features will get polished, but we’re not going to shove in some big new feature. We’re ready for you to test it, so jump in there! The more you test the beta, the more stable our release candidates and our final release will be.</p>\n<p>As always, if you think you’ve found a bug, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href=\"http://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/report/5\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.6\">everything we’ve fixed</a> so far.</p>\n<p>Here’s what’s new in 3.6:</p>\n<ul>\n<li><strong>Post Formats: </strong> Post Formats now have their own UI, and theme authors have access to templating functions to access the structured data.</li>\n<li><strong>Twenty Thirteen:</strong> We’re shipping this year’s default theme in our first release of the year. Twenty Thirteen is an opinionated, color-rich, blog-centric theme that makes full use of the new Post Formats support.</li>\n<li><strong>Audio/Video:</strong> You can embed audio and video files into your posts without relying on a plugin or a third party media hosting service.</li>\n<li><strong>Autosave: </strong> Posts are now autosaved locally. If your browser crashes, your computer dies, or the server goes offline as you’re saving, you won’t lose the your post.</li>\n<li><strong>Post Locking: </strong> See when someone is currently editing a post, and kick them out of it if they fall asleep at the keyboard.</li>\n<li><strong>Nav Menus: </strong> Nav menus have been simplified with an accordion-based UI, and a separate tab for bulk-assigning menus to locations.</li>\n<li><strong>Revisions:</strong> The all-new revisions UI features avatars, a slider that “scrubs” through history, and two-slider range comparisons.</li>\n</ul>\n<p><strong>Developers: </strong> You make WordPress awesome(er). One of the things we strive to do with every release is be compatible with existing plugins and themes. But we need your help. <strong>Please test your plugins and themes against 3.6.</strong> If something isn’t quite right, please let us know. (Chances are, it wasn’t intentional.) If you’re a forward-thinking theme developer, you should be looking at implementing the new Post Format support in some of your themes (look to Twenty Thirteen for inspiration).</p>\n<p>We’re looking forward to your feedback. If you break it (i.e. find a bug), please report it, and if you’re a developer, try to help us fix it. We’ve already had more than 150 contributors to version 3.6 — it’s not too late to join the party!</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/2013/04/wordpress-3-6-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:5;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 3.5.1 Maintenance and Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/news/2013/01/wordpress-3-5-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/news/2013/01/wordpress-3-5-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, 24 Jan 2013 22:23: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: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=2531\";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:359:\"WordPress 3.5.1 is now available. Version 3.5.1 is the first maintenance release of 3.5, fixing 37 bugs. It is also a security release for all previous WordPress versions. For a full list of changes, consult the list of tickets and the changelog, which include: Editor: Prevent certain HTML elements from being unexpectedly removed or modified in rare [...]\";s: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:2499:\"<p>WordPress 3.5.1 is now available. Version 3.5.1 is the first maintenance release of 3.5, <a href=\"http://core.trac.wordpress.org/milestone/3.5.1\">fixing 37 bugs</a>. It is also a security release for all previous WordPress versions. For a full list of changes, consult the <a href=\"http://core.trac.wordpress.org/query?milestone=3.5.1\">list of tickets</a> and the <a href=\"http://core.trac.wordpress.org/log/branches/3.5?rev=23341&stop_rev=23167\">changelog</a>, which include:</p>\n<ul>\n<li>Editor: Prevent certain HTML elements from being unexpectedly removed or modified in rare cases.</li>\n<li>Media: Fix a collection of minor workflow and compatibility issues in the new media manager.</li>\n<li>Networks: Suggest proper rewrite rules when creating a new network.</li>\n<li>Prevent scheduled posts from being stripped of certain HTML, such as video embeds, when they are published.</li>\n<li>Work around some misconfigurations that may have caused some JavaScript in the WordPress admin area to fail.</li>\n<li>Suppress some warnings that could occur when a plugin misused the database or user APIs.</li>\n</ul>\n<p>Additionally, a bug affecting Windows servers running IIS can prevent updating from 3.5 to 3.5.1. If you receive the error “Destination directory for file streaming does not exist or is not writable,” you will need to <a href=\"http://codex.wordpress.org/Version_3.5.1\">follow the steps outlined on the Codex</a>.</p>\n<p>WordPress 3.5.1 also addresses the following security issues:</p>\n<ul>\n<li>A server-side request forgery vulnerability and remote port scanning using pingbacks. This vulnerability, which could potentially be used to expose information and compromise a site, affects all previous WordPress versions. This was fixed by the WordPress security team. We’d like to thank security researchers <a href=\"http://codeseekah.com/\">Gennady Kovshenin</a> and <a href=\"http://www.ethicalhack3r.co.uk/\">Ryan Dewhurst</a> for reviewing our work.</li>\n<li>Two instances of cross-site scripting via shortcodes and post content. These issues were discovered by Jon Cave of the WordPress security team.</li>\n<li>A cross-site scripting vulnerability in the external library Plupload. Thanks to the Moxiecode team for working with us on this, and for releasing Plupload 1.5.5 to address this issue.</li>\n</ul>\n<p><strong><a href=\"http://wordpress.org/download/\">Download 3.5.1</a> or visit Dashboard → Updates in your site admin to update now.</strong></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/2013/01/wordpress-3-5-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:6;a:6:{s:4:\"data\";s:42:\"\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:17:\"2012: A Look Back\";s:7:\"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/news/2013/01/2012-a-look-back/\";s: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:60:\"http://wordpress.org/news/2013/01/2012-a-look-back/#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, 01 Jan 2013 02:22: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Uncategorized\";s:7:\"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=2525\";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:340:\"Another year is coming to a close, and it’s time to look back and reflect on what we’ve accomplished in the past twelve months. The WordPress community is stronger than ever, and some of the accomplishments of the past year are definitely worth remembering. Software Releases We had two major releases of the WordPress web [...]\";s: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:\"Jen Mylo\";s: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:4441:\"<p>Another year is coming to a close, and it’s time to look back and reflect on what we’ve accomplished in the past twelve months. The WordPress community is stronger than ever, and some of the accomplishments of the past year are definitely worth remembering.</p>\n<h4>Software Releases</h4>\n<p>We had two major releases of the WordPress web application with versions <a href=\"http://wordpress.org/news/2012/06/green/\">3.4</a> and <a href=\"http://wordpress.org/news/2012/12/elvin/\">3.5</a>, as well as 5 security releases during 2012. 3.4 included the theme customizer, while 3.5 became the long awaited “media release” featuring a new uploader and gallery management tool. 3.5 contained code contributions from more people than ever, and we hope to continue growing the contributor ranks in the year ahead. We currently have native apps on 6 mobile platforms — <a href=\"http://ios.wordpress.org/\">iOS</a>, <a href=\"http://android.wordpress.org/\">Android</a>, <a href=\"http://blackberry.wordpress.org/\">Blackberry</a>, <a href=\"http://wpwindowsphone.wordpress.com/\">Windows Phone</a>, <a href=\"http://nokia.wordpress.org/\">Nokia</a>, and <a href=\"http://webos.wordpress.org/\">WebOS</a> — and saw several updates there as well.</p>\n<h4>Plugin Directory</h4>\n<p>A number of improvements were made to the Plugin Directory in 2012. More cosmetic updates, like the introduction of branded plugin page headers, make it a nicer browsing experience, while functional changes like better-integrated support forums, plugin reviews, and a favorites system made the plugin directory even more useful as a resource.</p>\n<h4>The “Make” Network and Team Reps</h4>\n<p>2012 was the year that saw the creation of <a href=\"http://make.wordpress.org/\">Make.wordpress.org</a>, a network of sites for the teams of contributors responsible for the different areas of the WordPress project. Now anyone can follow along and get involved with the teams that work on <a href=\"http://make.wordpress.org/core/\">core</a>, <a href=\"http://make.wordpress.org/themes/\">theme review</a>, <a href=\"http://make.wordpress.org/support/\">forum support</a>, <a href=\"http://make.wordpress.org/docs/\">documentation</a>, and more. In 2013 we’ll work to improve these sites to make it easier to become a contributor. Each team also now has elected Team Reps, a new role that has already led to more cross-team communication. Team reps post each week to the <a href=\"https://make.wordpress.org/updates/\">Updates blog</a> so that the other reps can keep up with what’s going on in other teams.</p>\n<h4>WordPress Community Summit</h4>\n<p>At the end of October, about 100 of the most influential and respected members of the WordPress community attended an inaugural <a href=\"https://make.wordpress.org/summit\">summit</a> to discuss where we all stand, and to figure out where we go next with WordPress. A “conference of conversations,” this unconference made everyone an active participant, and while not every issue brought to the table was solved by the end of the event, the right questions were being asked.</p>\n<h4>Meetup.com</h4>\n<p>The WordPress Foundation now has a central account with Meetup.com. We’ve brought in a couple dozen existing meetup groups as a pilot to test the system, and are in the process of working with more existing meetups (as well as new ones) to join us so that local organizers won’t have to pay organizer dues and can get more support from the WordPress project.</p>\n<h4>Internet Blackout Day</h4>\n<p>We participated in the protest against SOPA/PIPA, Internet Blackout Day, on January 18. Though we usually stay out of politics, this campaign was important, and we not only participated in the blackout on WordPress.org, we encouraged our users to do so as well, and recommended plugins to provide blackout functionality. It was deemed the <a href=\"http://sopastrike.com/numbers/\">largest online protest in history</a>.</p>\n<h4>WordCamps</h4>\n<p>And finally, it wouldn’t be a recap without counting up the <a href=\"http://wordcamp.org\">WordCamps</a>! There were 67 WordCamps around the world in 2012, bringing together WordPress users, developers, and fans. If you didn’t make it to a WordCamp this year, maybe it can be one of your new year resolutions: <a href=\"http://central.wordcamp.org/schedule/\">check the schedule</a> to find one near you!</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:56:\"http://wordpress.org/news/2013/01/2012-a-look-back/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:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"WordPress 3.5 “Elvin”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://wordpress.org/news/2012/12/elvin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"http://wordpress.org/news/2012/12/elvin/#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, 11 Dec 2012 16:54: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: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=2517\";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:363:\"It’s the most wonderful time of the year: a new WordPress release is available and chock-full of goodies to delight bloggers and developers alike. We’re calling this one “Elvin” in honor of drummer Elvin Jones, who played with John Coltrane in addition to many others. If you’ve been around WordPress a while, the most dramatic [...]\";s: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:20083:\"<p>It’s the most wonderful time of the year: a new WordPress release <a href=\"http://wordpress.org/download/\">is available</a> and chock-full of goodies to delight bloggers and developers alike. We’re calling this one “Elvin” in honor of <a href=\"http://en.wikipedia.org/wiki/Elvin_Jones\">drummer Elvin Jones</a>, who played with John Coltrane in addition to many others.</p>\n<p>If you’ve been around WordPress a while, the most dramatic new change you’ll notice is a completely re-imagined flow for uploading photos and creating galleries. Media has long been a friction point and we’ve listened hard and given a lot of thought into crafting this new system. 3.5 includes a new default theme, Twenty Twelve, which has a very clean mobile-first responsive design and works fantastic as a base for a CMS site. Finally we’ve spent a lot of time refreshing the styles of the dashboard, updating everything to be Retina-ready with beautiful high resolution graphics, a new color picker, and streamlining a couple of fewer-used sections of the admin.</p>\n<p>Here’s a quick video overview of everything you can share with your friends:</p>\n<div id=\"v-jQDfEbzZ-1\" class=\"video-player\"><embed id=\"v-jQDfEbzZ-1-video\" src=\"http://s0.videopress.com/player.swf?v=1.03&guid=jQDfEbzZ&isDynamicSeeking=true\" type=\"application/x-shockwave-flash\" width=\"692\" height=\"388\" title=\"Introducing WordPress 3.5\" wmode=\"direct\" seamlesstabbing=\"true\" allowfullscreen=\"true\" allowscriptaccess=\"always\" overstretch=\"true\"></embed></div>\n<h3>For Developers</h3>\n<p>You can now put your (or anyone’s) WordPress.org username on the plugins page and see your favorite tagged ones, to make it easy to install them again when setting up a new site. There’s a new Tumblr importer. New installs no longer show the links manager. Finally for multisite developers <code>switch_to_blog()</code> is way faster and you can now install MS in a sub-directory. The <a href=\"http://underscorejs.org/\">Underscore</a> and <a href=\"http://backbonejs.org/\">Backbone</a> JavaScript libraries are now available. <a href=\"http://codex.wordpress.org/Version_3.5\">The Codex has a pretty good summary of the developer features above and beyond this</a>, and you can always <a href=\"http://core.trac.wordpress.org/milestone/3.5\">grab a warm beverage and explore Trac directly</a>.</p>\n<h3>Percussion Section</h3>\n<p>Behind every great release is great contributors. 3.5 had more people involved than any release before it:</p>\n<p><a href=\"http://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"http://profiles.wordpress.org/aaronholbrook\">aaronholbrook</a>, <a href=\"http://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"http://profiles.wordpress.org/kawauso\">Adam Harley</a>, <a href=\"http://profiles.wordpress.org/alyssonweb\">akbortoli</a>, <a href=\"http://profiles.wordpress.org/alecrust\">alecrust</a>, <a href=\"http://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"http://profiles.wordpress.org/alexkingorg\">Alex King</a>, <a href=\"http://profiles.wordpress.org/viper007bond\">Alex Mills (Viper007Bond)</a>, <a href=\"http://profiles.wordpress.org/alexvorn2\">alexvorn2</a>, <a href=\"http://profiles.wordpress.org/ampt\">ampt</a>, <a href=\"http://profiles.wordpress.org/sabreuse\">Amy Hendrix (sabreuse)</a>, <a href=\"http://profiles.wordpress.org/andrear\">andrea.r</a>, <a href=\"http://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"http://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"http://profiles.wordpress.org/andrewryno\">Andrew Ryno</a>, <a href=\"http://profiles.wordpress.org/andrewspittle\">Andrew Spittle</a>, <a href=\"http://profiles.wordpress.org/andy\">Andy Skelton</a>, <a href=\"http://profiles.wordpress.org/apokalyptik\">apokalyptik</a>, <a href=\"http://profiles.wordpress.org/bainternet\">Bainternet</a>, <a href=\"http://profiles.wordpress.org/barrykooij\">Barry Kooij</a>, <a href=\"http://profiles.wordpress.org/bazza\">bazza</a>, <a href=\"http://profiles.wordpress.org/bbrooks\">bbrooks</a>, <a href=\"http://profiles.wordpress.org/casben79\">Ben Casey</a>, <a href=\"http://profiles.wordpress.org/husobj\">Ben Huson</a>, <a href=\"http://profiles.wordpress.org/benkulbertis\">Ben Kulbertis</a>, <a href=\"http://profiles.wordpress.org/bergius\">bergius</a>, <a href=\"http://profiles.wordpress.org/neoxx\">Bernhard Riedl</a>, <a href=\"http://profiles.wordpress.org/betzster\">betzster</a>, <a href=\"http://profiles.wordpress.org/bananastalktome\">Billy (bananastalktome)</a>, <a href=\"http://profiles.wordpress.org/bolo1988\">bolo1988</a>, <a href=\"http://profiles.wordpress.org/bradparbs\">bradparbs</a>, <a href=\"http://profiles.wordpress.org/bradthomas127\">bradthomas127</a>, <a href=\"http://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"http://profiles.wordpress.org/brandondove\">Brandon Dove</a>, <a href=\"http://profiles.wordpress.org/brianlayman\">Brian Layman</a>, <a href=\"http://profiles.wordpress.org/rzen\">Brian Richards</a>, <a href=\"http://profiles.wordpress.org/sennza\">Bronson Quick</a>, <a href=\"http://profiles.wordpress.org/bpetty\">Bryan Petty</a>, <a href=\"http://profiles.wordpress.org/cannona\">cannona</a>, <a href=\"http://profiles.wordpress.org/sixhours\">Caroline Moore</a>, <a href=\"http://profiles.wordpress.org/caspie\">Caspie</a>, <a href=\"http://profiles.wordpress.org/cdog\">cdog</a>, <a href=\"http://profiles.wordpress.org/thee17\">Charles Frees-Melvin</a>, <a href=\"http://profiles.wordpress.org/chellycat\">chellycat</a>, <a href=\"http://profiles.wordpress.org/chexee\">Chelsea Otakan</a>, <a href=\"http://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"http://profiles.wordpress.org/c3mdigital\">Chris Olbekson</a>, <a href=\"http://profiles.wordpress.org/cfinke\">Christopher Finke</a>, <a href=\"http://profiles.wordpress.org/chriswallace\">Chris Wallace</a>, <a href=\"http://profiles.wordpress.org/corvannoorloos\">Cor van Noorloos</a>, <a href=\"http://profiles.wordpress.org/scribu\">Cristi Burcă</a>, <a href=\"http://profiles.wordpress.org/mrroundhill\">Dan</a>, <a href=\"http://profiles.wordpress.org/dan-rivera\">Dan Rivera</a>, <a href=\"http://profiles.wordpress.org/koopersmith\">Daryl Koopersmith</a>, <a href=\"http://profiles.wordpress.org/lessbloat\">Dave Martin</a>, <a href=\"http://profiles.wordpress.org/deltafactory\">deltafactory</a>, <a href=\"http://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"http://profiles.wordpress.org/djzone\">DjZoNe</a>, <a href=\"http://profiles.wordpress.org/dllh\">dllh</a>, <a href=\"http://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"http://profiles.wordpress.org/doublesharp\">doublesharp</a>, <a href=\"http://profiles.wordpress.org/drewapicture\">Drew Jaynes (DrewAPicture)</a>, <a href=\"http://profiles.wordpress.org/drewstrojny\">Drew Strojny</a>, <a href=\"http://profiles.wordpress.org/eddiemoya\">Eddie Moya</a>, <a href=\"http://profiles.wordpress.org/elyobo\">elyobo</a>, <a href=\"http://profiles.wordpress.org/emiluzelac\">Emil Uzelac</a>, <a href=\"http://profiles.wordpress.org/empireoflight\">Empireoflight</a>, <a href=\"http://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"http://profiles.wordpress.org/ethitter\">Erick Hitter</a>, <a href=\"http://profiles.wordpress.org/ericmann\">Eric Mann</a>, <a href=\"http://profiles.wordpress.org/ericwahlforss\">ericwahlforss</a>, <a href=\"http://profiles.wordpress.org/evansolomon\">Evan Solomon</a>, <a href=\"http://profiles.wordpress.org/fadingdust\">fadingdust</a>, <a href=\"http://profiles.wordpress.org/f-j-kaiser\">F J Kaiser</a>, <a href=\"http://profiles.wordpress.org/foxinni\">foxinni</a>, <a href=\"http://profiles.wordpress.org/garyc40\">Gary Cao</a>, <a href=\"http://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"http://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"http://profiles.wordpress.org/geertdd\">GeertDD</a>, <a href=\"http://profiles.wordpress.org/mamaduka\">George Mamadashvili</a>, <a href=\"http://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"http://profiles.wordpress.org/ghosttoast\">GhostToast</a>, <a href=\"http://profiles.wordpress.org/gnarf\">gnarf</a>, <a href=\"http://profiles.wordpress.org/goldenapples\">goldenapples</a>, <a href=\"http://profiles.wordpress.org/webord\">Gustavo Bordoni</a>, <a href=\"http://profiles.wordpress.org/hakre\">hakre</a>, <a href=\"http://profiles.wordpress.org/hanni\">hanni</a>, <a href=\"http://profiles.wordpress.org/hardy101\">hardy101</a>, <a href=\"http://profiles.wordpress.org/hebbet\">hebbet</a>, <a href=\"http://profiles.wordpress.org/helenyhou\">Helen Hou-Sandi</a>, <a href=\"http://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>, <a href=\"http://profiles.wordpress.org/iamfriendly\">iamfriendly</a>, <a href=\"http://profiles.wordpress.org/iandstewart\">Ian Stewart</a>, <a href=\"http://profiles.wordpress.org/ikailo\">ikailo</a>, <a href=\"http://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"http://profiles.wordpress.org/itworx\">itworx</a>, <a href=\"http://profiles.wordpress.org/j-idris\">j-idris</a>, <a href=\"http://profiles.wordpress.org/jakemgold\">Jake Goldman</a>, <a href=\"http://profiles.wordpress.org/jakubtyrcha\">jakub.tyrcha</a>, <a href=\"http://profiles.wordpress.org/jamescollins\">James Collins</a>, <a href=\"http://profiles.wordpress.org/jammitch\">jammitch</a>, <a href=\"http://profiles.wordpress.org/jane\">Jane Wells</a>, <a href=\"http://profiles.wordpress.org/japh\">Japh</a>, <a href=\"http://profiles.wordpress.org/jarretc\">JarretC</a>, <a href=\"http://profiles.wordpress.org/madtownlems\">Jason Lemahieu (MadtownLems)</a>, <a href=\"http://profiles.wordpress.org/javert03\">javert03</a>, <a href=\"http://profiles.wordpress.org/jbrinley\">jbrinley</a>, <a href=\"http://profiles.wordpress.org/jcakec\">jcakec</a>, <a href=\"http://profiles.wordpress.org/jblz\">Jeff Bowen</a>, <a href=\"http://profiles.wordpress.org/jeffsebring\">Jeff Sebring</a>, <a href=\"http://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"http://profiles.wordpress.org/hd-j\">Jeremy Herve</a>, <a href=\"http://profiles.wordpress.org/jerrysarcastic\">Jerry Bates (JerrySarcastic)</a>, <a href=\"http://profiles.wordpress.org/jayjdk\">Jesper Johansen (Jayjdk)</a>, <a href=\"http://profiles.wordpress.org/jndetlefsen\">jndetlefsen</a>, <a href=\"http://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"http://profiles.wordpress.org/joelhardi\">joelhardi</a>, <a href=\"http://profiles.wordpress.org/jkudish\">Joey Kudish</a>, <a href=\"http://profiles.wordpress.org/johnbillion\">John Blackbourn (johnbillion)</a>, <a href=\"http://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"http://profiles.wordpress.org/johnpbloch\">John P. Bloch</a>, <a href=\"http://profiles.wordpress.org/jond3r\">Jonas Bolinder</a>, <a href=\"http://profiles.wordpress.org/jondavidjohn\">Jonathan D. Johnson</a>, <a href=\"http://profiles.wordpress.org/duck_\">Jon Cave</a>, <a href=\"http://profiles.wordpress.org/joostdekeijzer\">joostdekeijzer</a>, <a href=\"http://profiles.wordpress.org/koke\">Jorge Bernal</a>, <a href=\"http://profiles.wordpress.org/josephscott\">Joseph Scott</a>, <a href=\"http://profiles.wordpress.org/pottersys\">Juan</a>, <a href=\"http://profiles.wordpress.org/justinsainton\">Justin Sainton</a>, <a href=\"http://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>, <a href=\"http://profiles.wordpress.org/greenshady\">Justin Tadlock</a>, <a href=\"http://profiles.wordpress.org/trepmal\">Kailey Lampert (trepmal)</a>, <a href=\"http://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"http://profiles.wordpress.org/keruspe\">Keruspe</a>, <a href=\"http://profiles.wordpress.org/kitchin\">kitchin</a>, <a href=\"http://profiles.wordpress.org/knutsp\">Knut Sparhell</a>, <a href=\"http://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"http://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"http://profiles.wordpress.org/kopepasah\">Kopepasah</a>, <a href=\"http://profiles.wordpress.org/klagraff\">Kristopher Lagraff</a>, <a href=\"http://profiles.wordpress.org/kurtpayne\">Kurt Payne</a>, <a href=\"http://profiles.wordpress.org/kyrylo\">Kyrylo</a>, <a href=\"http://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"http://profiles.wordpress.org/larysa\">Larysa Mykhas</a>, <a href=\"http://profiles.wordpress.org/leogermani\">leogermani</a>, <a href=\"http://profiles.wordpress.org/lesteph\">lesteph</a>, <a href=\"http://profiles.wordpress.org/linuxologos\">linuxologos</a>, <a href=\"http://profiles.wordpress.org/ldebrouwer\">Luc De Brouwer</a>, <a href=\"http://profiles.wordpress.org/lgedeon\">Luke Gedeon</a>, <a href=\"http://profiles.wordpress.org/latz\">Lutz Schroer</a>, <a href=\"http://profiles.wordpress.org/mailnew2ster\">mailnew2ster</a>, <a href=\"http://profiles.wordpress.org/targz-1\">Manuel Schmalstieg</a>, <a href=\"http://profiles.wordpress.org/maor\">Maor Chasen</a>, <a href=\"http://profiles.wordpress.org/mimecine\">Marco</a>, <a href=\"http://profiles.wordpress.org/marcuspope\">MarcusPope</a>, <a href=\"http://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"http://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"http://profiles.wordpress.org/martythornley\">MartyThornley</a>, <a href=\"http://profiles.wordpress.org/mattdanner\">mattdanner</a>, <a href=\"http://profiles.wordpress.org/bigdawggi\">Matthew Richmond</a>, <a href=\"http://profiles.wordpress.org/sivel\">Matt Martz</a>, <a href=\"http://profiles.wordpress.org/iammattthomas\">Matt Thomas</a>, <a href=\"http://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"http://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"http://profiles.wordpress.org/maxcutler\">Max Cutler</a>, <a href=\"http://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"http://profiles.wordpress.org/merty\">Mert Yazicioglu</a>, <a href=\"http://profiles.wordpress.org/mdawaffe\">Michael Adams (mdawaffe)</a>, <a href=\"http://profiles.wordpress.org/mfields\">Michael Fields</a>, <a href=\"http://profiles.wordpress.org/mbijon\">Mike Bijon</a>, <a href=\"http://profiles.wordpress.org/mdgl\">Mike Glendinning</a>, <a href=\"http://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"http://profiles.wordpress.org/mikelittle\">Mike Little</a>, <a href=\"http://profiles.wordpress.org/mikeschinkel\">Mike Schinkel</a>, <a href=\"http://profiles.wordpress.org/DH-Shredder\">Mike Schroder</a>, <a href=\"http://profiles.wordpress.org/toppa\">Mike Toppa</a>, <a href=\"http://profiles.wordpress.org/dimadin\">Milan Dinic</a>, <a href=\"http://profiles.wordpress.org/mitchoyoshitaka\">mitcho (Michael Yoshitaka Erlewine)</a>, <a href=\"http://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"http://profiles.wordpress.org/mohanjith\">mohanjith</a>, <a href=\"http://profiles.wordpress.org/mpvanwinkle77\">mpvanwinkle77</a>, <a href=\"http://profiles.wordpress.org/usermrpapa\">Mr Papa</a>, <a href=\"http://profiles.wordpress.org/murky\">murky</a>, <a href=\"http://profiles.wordpress.org/Nao\">Naoko Takano</a>, <a href=\"http://profiles.wordpress.org/alex-ye\">Nashwan Doaqan</a>, <a href=\"http://profiles.wordpress.org/niallkennedy\">Niall Kennedy</a>, <a href=\"http://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"http://profiles.wordpress.org/ntm\">ntm</a>, <a href=\"http://profiles.wordpress.org/nvartolomei\">nvartolomei</a>, <a href=\"http://profiles.wordpress.org/pavelevap\">pavelevap</a>, <a href=\"http://profiles.wordpress.org/pdclark\">pdclark</a>, <a href=\"http://profiles.wordpress.org/petemall\">Pete Mall</a>, <a href=\"http://profiles.wordpress.org/westi\">Peter Westwood</a>, <a href=\"http://profiles.wordpress.org/pas5027\">Pete Schuster</a>, <a href=\"http://profiles.wordpress.org/philiparthurmoore\">Philip Arthur Moore</a>, <a href=\"http://profiles.wordpress.org/phill_brown\">Phill Brown</a>, <a href=\"http://profiles.wordpress.org/picklepete\">picklepete</a>, <a href=\"http://profiles.wordpress.org/picklewagon\">Picklewagon</a>, <a href=\"http://profiles.wordpress.org/nprasath002\">Prasath Nadarajah</a>, <a href=\"http://profiles.wordpress.org/r-a-y\">r-a-y</a>, <a href=\"http://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"http://profiles.wordpress.org/moraleidame\">Ricardo Moraleida</a>, <a href=\"http://profiles.wordpress.org/miqrogroove\">Robert Chapin (miqrogroove)</a>, <a href=\"http://profiles.wordpress.org/wet\">Robert Wetzlmayr</a>, <a href=\"http://profiles.wordpress.org/wpmuguru\">Ron Rennick</a>, <a href=\"http://profiles.wordpress.org/rstern\">rstern</a>, <a href=\"http://profiles.wordpress.org/ryan\">Ryan Boren</a>, <a href=\"http://profiles.wordpress.org/ryanimel\">Ryan Imel</a>, <a href=\"http://profiles.wordpress.org/ryanjkoehler\">Ryan Koehler</a>, <a href=\"http://profiles.wordpress.org/markel\">Ryan Markel</a>, <a href=\"http://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"http://profiles.wordpress.org/zeo\">Safirul Alredha</a>, <a href=\"http://profiles.wordpress.org/solarissmoke\">Samir Shah</a>, <a href=\"http://profiles.wordpress.org/gluten\">Sam Margulies</a>, <a href=\"http://profiles.wordpress.org/otto42\">Samuel Wood (Otto)</a>, <a href=\"http://profiles.wordpress.org/saracannon\">sara cannon</a>, <a href=\"http://profiles.wordpress.org/gandham\">Satish Gandham</a>, <a href=\"http://profiles.wordpress.org/scottgonzalez\">scott.gonzalez</a>, <a href=\"http://profiles.wordpress.org/sc0ttkclark\">Scott Kingsley Clark</a>, <a href=\"http://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"http://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"http://profiles.wordpress.org/greglone\">ScreenfeedFr</a>, <a href=\"http://profiles.wordpress.org/sergeysbetkenovgaroru\">sergey.s.betke</a>, <a href=\"http://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"http://profiles.wordpress.org/pross\">Simon Prosser</a>, <a href=\"http://profiles.wordpress.org/simonwheatley\">Simon Wheatley</a>, <a href=\"http://profiles.wordpress.org/sirzooro\">sirzooro</a>, <a href=\"http://profiles.wordpress.org/ssamture\">ssamture</a>, <a href=\"http://profiles.wordpress.org/sterlo\">sterlo</a>, <a href=\"http://profiles.wordpress.org/sumindmitriy\">sumindmitriy</a>, <a href=\"http://profiles.wordpress.org/sushkov\">sushkov</a>, <a href=\"http://profiles.wordpress.org/swekitsune\">swekitsune</a>, <a href=\"http://profiles.wordpress.org/iamtakashi\">Takashi Irie</a>, <a href=\"http://profiles.wordpress.org/taylorde\">Taylor Dewey</a>, <a href=\"http://profiles.wordpress.org/tlovett1\">Taylor Lovett</a>, <a href=\"http://profiles.wordpress.org/saltcod\">Terry Sutton</a>, <a href=\"http://profiles.wordpress.org/griffinjt\">Thomas Griffin</a>, <a href=\"http://profiles.wordpress.org/tott\">Thorsten Ott</a>, <a href=\"http://profiles.wordpress.org/timbeks\">timbeks</a>, <a href=\"http://profiles.wordpress.org/timfs\">timfs</a>, <a href=\"http://profiles.wordpress.org/tmoorewp\">Tim Moore</a>, <a href=\"http://profiles.wordpress.org/tobiasbg\">TobiasBg</a>, <a href=\"http://profiles.wordpress.org/tomasm\">TomasM</a>, <a href=\"http://profiles.wordpress.org/tomauger\">Tom Auger</a>, <a href=\"http://profiles.wordpress.org/tommcfarlin\">tommcfarlin</a>, <a href=\"http://profiles.wordpress.org/willmot\">Tom Willmot</a>, <a href=\"http://profiles.wordpress.org/toscho\">toscho</a>, <a href=\"http://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"http://profiles.wordpress.org/vhauri\">Vasken Hauri</a>, <a href=\"http://profiles.wordpress.org/viniciusmassuchetto\">Vinicius Massuchetto</a>, <a href=\"http://profiles.wordpress.org/lightningspirit\">Vitor Carvalho</a>, <a href=\"http://profiles.wordpress.org/waclawjacek\">Waclaw</a>, <a href=\"http://profiles.wordpress.org/waldojaquith\">WaldoJaquith</a>, <a href=\"http://profiles.wordpress.org/wojtekszkutnik\">Wojtek Szkutnik</a>, <a href=\"http://profiles.wordpress.org/xibe\">Xavier Borderie</a>, <a href=\"http://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"http://profiles.wordpress.org/yogi-t\">Yogi T</a>, <a href=\"http://profiles.wordpress.org/tollmanz\">Zack Tollman</a>, and <a href=\"http://profiles.wordpress.org/zamoose\">ZaMoose</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:45:\"http://wordpress.org/news/2012/12/elvin/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:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 3.5 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:68:\"http://wordpress.org/news/2012/12/wordpress-3-5-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.org/news/2012/12/wordpress-3-5-release-candidate-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:\"Tue, 04 Dec 2012 08:37: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:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s: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:68:\"http://wordpress.org/news/2012/12/wordpress-3-5-release-candidate-3/\";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:339:\"The third release candidate for WordPress 3.5 is now available. We’ve made a number of changes over the last week since RC2 that we can’t wait to get into your hands. Hope you’re ready to do some testing! Final UI improvements for the new media manager, based on lots of great feedback. Show more information about [...]\";s: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:1950:\"<p>The third release candidate for WordPress 3.5 is now available. We’ve made a number of changes over the last week since <a title=\"WordPress 3.5 Release Candidate 2\" href=\"http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate-2/\">RC2</a> that we can’t wait to get into your hands. Hope you’re ready to do some testing!</p>\n<ul>\n<li><span style=\"line-height: 13px\">Final UI improvements for the new media manager, based on lots of great feedback.</span></li>\n<li>Show more information about uploading errors when they occur.</li>\n<li>When inserting an image into a post, don’t forget the alternative text.</li>\n<li>Fixes for the new admin button styles.</li>\n<li>Improvements for mobile devices, Internet Explorer, and right-to-left languages.</li>\n<li>Fix cookies for subdomain installs when multisite is installed in a subdirectory.</li>\n<li>Fix ms-files.php rewriting for very old multisite installs.</li>\n</ul>\n<p>At this point, we only have a <a href=\"http://core.trac.wordpress.org/report/5\">few minor issues</a> left. If all goes well, you will see WordPress 3.5 very soon. If you run into any issues, please post to the <a href=\"http://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area in the support forums</a>.</p>\n<p>If you’d like to know what to test, visit the About page (<strong><img style=\"vertical-align: middle\" alt=\"\" src=\"http://wordpress.org/wp-content/themes/twentyten/images/wordpress.png\" /> → About</strong> in the toolbar) and check out the list of features. This is still development software, so your boss may get mad if you install this on a live site. To test WordPress 3.5, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.5-RC3.zip\">download the release candidate here (zip)</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:73:\"http://wordpress.org/news/2012/12/wordpress-3-5-release-candidate-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:9;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 3.5 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/2012/11/wordpress-3-5-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/2012/11/wordpress-3-5-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:\"Thu, 29 Nov 2012 19:55: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s: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=2494\";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:339:\"The second release candidate for WordPress 3.5 is now available for download and testing. We’re still working on about a dozen remaining issues, but we hope to deliver WordPress 3.5 to your hands as early as next week. If you’d like to know what to test, visit the About page ( → About in the toolbar) and check out [...]\";s: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:1509:\"<p>The second release candidate for WordPress 3.5 is now available for download and testing.</p>\n<p>We’re still working on about a dozen remaining issues, but we hope to deliver WordPress 3.5 to your hands as early as next week. If you’d like to know what to test, visit the About page (<strong><img alt=\"\" src=\"http://wordpress.org/wp-content/themes/twentyten/images/wordpress.png\" /> → About</strong> in the toolbar) and check out the list of features! As usual, this is still development software and we suggest you do not install this on a live site unless you are adventurous.</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href=\"http://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area in the support forums</a>.</p>\n<p><strong>Developers,</strong> please continue to test your plugins and themes, so that if there is a compatibility issue, we can figure it out before the final release. You can find our <a href=\"http://core.trac.wordpress.org/report/6\">list of known issues here</a>.</p>\n<p>To test WordPress 3.5, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.5-RC2.zip\">download the release candidate here (zip)</a>.</p>\n<p><em>–<br />\n</em><em>We are getting close<br />\n</em><em>Should have asked for haiku help<br />\n</em><em>Please test RC2</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:73:\"http://wordpress.org/news/2012/11/wordpress-3-5-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:\"\";}}}}}}}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:\"Sun, 05 May 2013 14:06:22 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, 29 Apr 2013 22:48:55 GMT\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}s:5:\"build\";s:14:\"20121202214312\";}','no');
INSERT INTO `wp_options` VALUES (365,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1367805982','no');
INSERT INTO `wp_options` VALUES (366,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1367762782','no');
INSERT INTO `wp_options` VALUES (367,'_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51','1367805982','no');
INSERT INTO `wp_options` VALUES (368,'_transient_dash_4077549d03da2e451c8b5f002294ff51','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wordpress.org/news/2013/04/wordpress-3-6-beta-2/\' title=\'WordPress 3.6 Beta 2 is now available! This is software still in development and we really don’t recommend that you run it on a production site — set up a test site just to play with the new version. To test WordPress 3.6, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip). The […]\'>WordPress 3.6 Beta 2</a> <span class=\"rss-date\">April 29, 2013</span><div class=\'rssSummary\'>WordPress 3.6 Beta 2 is now available! This is software still in development and we really don’t recommend that you run it on a production site — set up a test site just to play with the new version. To test WordPress 3.6, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip). The […]</div></li><li><a class=\'rsswidget\' href=\'http://wordpress.org/news/2013/04/summer-mentorship-programs-gsoc-and-gnome/\' title=\'As an open source, free software project, WordPress depends on the contributions of hundreds of people from around the globe — contributions in areas like core code, documentation, answering questions in the support forums, translation, and all the other things it takes to make WordPress the best publishing platform it can be, with the most […]\'>Summer Mentorship Programs: GSoC and Gnome</a> <span class=\"rss-date\">April 25, 2013</span><div class=\'rssSummary\'>As an open source, free software project, WordPress depends on the contributions of hundreds of people from around the globe — contributions in areas like core code, documentation, answering questions in the support forums, translation, and all the other things it takes to make WordPress the best publishing platform it can be, with the most […]</div></li></ul></div>','no');
INSERT INTO `wp_options` VALUES (369,'_transient_timeout_feed_10a8e6b6a643df70bd3e90d06bd94261','1367805982','no');
INSERT INTO `wp_options` VALUES (370,'_transient_feed_10a8e6b6a643df70bd3e90d06bd94261','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:83:\"\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:4:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"link:http://localhost:8888/roboto/ - 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:92:\"http://www.google.com/search?ie=utf-8&q=link:http://localhost:8888/roboto/&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:16:\"About 68 results\";s:7:\"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:47:\"\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:79:\"Tablet Genesis 7240 + Android + Bit Web Server dont work <b>...</b>\";s:7:\"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:101:\"http://android.stackexchange.com/questions/44340/tablet-genesis-7240-android-bit-web-server-dont-work\";s: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:267:\"<b>...</b> need it to work on the GENESIS tablet, to use with students in the NGO. ERROR: when I access the address <em>http</em>://<em>localhost</em>:8080 , says it can not access: Error 102 (net::ERR_CONNECTION_REFUSED): The server refused the connection <b>...</b>\";s: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:3:{s:9:\"publisher\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Recent Questions - Android Enthusiasts Stack Exchange\";s: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:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Mauro Rocha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"date\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Wed, 24 Apr 2013 13:11:35 GMT\";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:47:\"\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:62:\"How to Map Ports in Windows | Andrey Mikhalchuk&#39;s 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"http://andrey.mikhalchuk.com/2013/04/03/how-to-map-ports-in-windows.html\";s: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:282:\"netsh interface portproxy add v4tov4 listenport=<em>8888</em> connectport=80 connectaddress=74.208.213.182 protocol=tcp. Now start web browser and go to this URL: <em>http</em>://<em>localhost</em>:<em>8888</em>/. Note that the web browser is pointer to your own computer <b>...</b>\";s: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:3:{s:9:\"publisher\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Andrey Mikhalchuk\'s 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:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Andrey Mikhalchuk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"date\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Wed, 03 Apr 2013 14:46:45 GMT\";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:47:\"\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:85:\"Microsoft Office Pro Plus 2013 Free download Full Version with <b>...</b>\";s:7:\"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://www.burningx.com/2013/03/microsoft-office-pro-plus-2013-free.html\";s: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:289:\"It uses your system's <em>localhost</em> to send data back and forth from a faux server. you'll <b>....</b> 3560 fresh SSL Proxy Servers (<em>HTTP</em> Secure Socket Layer Proxies) 1.179.147.2:8080 1.245.179.29:8000 1.63.18.22:8080 1.85.16.86:<em>8888</em> 1... 19-04-13 <b>...</b>\";s: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:3:{s:9:\"publisher\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"BurningX - The Ultimate Download Center !\";s: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:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"HålfBløød Prince\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"date\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Fri, 08 Mar 2013 03:01:00 GMT\";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:47:\"\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:37:\"festplatten » berlin | columbiahalle\";s:7:\"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://fest-platten.de/www/dates/berlin-columbiahalle/\";s: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:278:\"xBL7Ll svlypmsrymdc, [url=<em>http</em>://hcjdkpdnuiko.com/]hcjdkpdnuiko[/url], [<em>link</em>=<em>http</em>://hxfnbtjfwbnu.com/]hxfnbtjfwbnu[/<em>link</em>], <em>http</em>://fifpdnwezlxi.com/. Comment by Anonymous — November 2, 2012 @ 11:54 pm | Edit This. Amazing blog post!\";s: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:3:{s:9:\"publisher\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"festplatten\";s: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:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"ha.te\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"date\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Fri, 15 Feb 2013 08:00:00 GMT\";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:47:\"\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:90:\"iHackStoreNet: [K] iKeyMonitor keylogger for iPad/iPhone/iPod 3.0.2 <b>...</b>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"http://ihackstorenet.blogspot.com/2013/02/k-ikeymonitor-keylogger-for.html\";s: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:294:\"Work on iPad/iPhone/iPodTouch * Password Protected * Turn on/off monitoring remotely. After installation, please open Safari and enter <em>http</em>://:<em>8888</em> or :<em>8888</em> or <em>localhost</em>:<em>8888</em> to access the keylogger. See larger Screenshots below. VERSION: <b>...</b>\";s: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:3:{s:9:\"publisher\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"iHackStoreNet\";s: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:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"cryss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"date\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Fri, 22 Feb 2013 04:10:00 GMT\";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 \";s: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:77:\"<b>Http</b> Server using “SimpleHTTPServer” module | VUK Here\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"http://udayhere.wordpress.com/2013/01/06/http-server-using-simplehttpserver-module/\";s: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:561:\"But when you are accessing the <em>localhost</em>:8000, it will show all the parent and sub parent folder under the folder from where the command is run is started. <b>...</b> python -m SimpleHTTPServer <em>8888</em> <b>....</b> But our own co-founder, Jason Huggins, has built a <em>robot</em> that does what no other <em>robot</em> could do before: play Angry Birds. Oh, and <b>...</b> The “Live Share” feature in Manual Sauce, our interactive testing tool, allows you to share your live browser sessions with coworkers simply by sending a <em>link</em> .\";s: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:3:{s:9:\"publisher\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"VUK Here\";s: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:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"vuday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"date\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Sun, 06 Jan 2013 05:40:18 GMT\";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 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"Surveyor <b>robot</b> | Just moozing\";s:7:\"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://moozing.wordpress.com/2012/11/17/surveyor-robot/\";s: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:315:\"As seen on the picture, it is a mobile wireless <em>robot</em>. It has a camera, <b>...</b> The <em>robot</em> itself does not look much like the images on the Surveyor homepage. It seems modded <b>...</b> and connect the browser to <em>http</em>://<em>localhost</em>:<em>8888</em>/view.html. There is an <b>...</b>\";s: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:3:{s:9:\"publisher\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Just moozing\";s: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:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"moozing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"date\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Sat, 17 Nov 2012 08:00:46 GMT\";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 \";s: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:50:\"Duplicate content checker - Forum - Webmaster-Rank\";s:7:\"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://forum.webmaster-rank.info/outils/duplicate-content-checker-t5601.html\";s: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:590:\"Salut à tous Vous utilisez quoi pour tester le DC, jusqu'à maintenant j'utilisais <em>http</em>://www.positeo.com/check-duplicate-content/ mais ce soir il a visiblement dépassé son quota de recherche. <b>...</b> <em>http</em>://<em>localhost</em>:<em>8888</em>/test_duplicat.php <b>....</b> pour checker du DC mais plutôt des liens , en allant vite car je tape parfois très vite ou copie colle vite google au bout d'un moment me bloque et me dit que ca ressemble à des requêtes <em>robot</em> et ne veux plus accepter les requêtes donc faut changer d' IP <b>...</b>\";s: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:3:{s:9:\"publisher\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Forum webmaster rank\";s: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:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"unknown\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"date\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Mon, 05 Nov 2012 14:26:27 GMT\";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:47:\"\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:90:\"iHackStoreNet: [K] iKeyMonitor keylogger for iPad/iPhone/iPod 3.0.1 <b>...</b>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"http://ihackstorenet.blogspot.com/2012/11/k-ikeymonitor-keylogger-for.html\";s: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:591:\"Password Protected * Turn on/off monitoring remotely. After installation, please open Safari and enter <em>http</em>://:<em>8888</em> or :<em>8888</em> or <em>localhost</em>:<em>8888</em> to access the keylogger. See larger Screenshots below. VERSION: v 3.0.1-15 * Improved FTP delivery * Fixed minor bugs [NOTE] To activate simply input some numbers as registration key (example: 12345678) <em>Link</em> 1. <em>Link</em> 2 <b>...</b> Free download <em>Robot</em> Unicorn Attack - [adult swim] ... ACt v2 Purple · Pro ET3 Green · xiro SD Addon · Pro ET3 Green <b>...</b>\";s: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:3:{s:9:\"publisher\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"iHackStoreNet\";s: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:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"cryss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"date\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Wed, 21 Nov 2012 03:06:00 GMT\";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:47:\"\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:55:\"Grandma Does a Keg Stand at LSU Tailgate | - Tailgating\";s:7:\"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:88:\"http://www.sdchargerstailgating.com/2012/10/03/grandma-does-a-keg-stand-at-lsu-tailgate/\";s: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:570:\"7lJAUs , [url=<em>http</em>://nohpjaawzrox.com/]nohpjaawzrox[/url], [<em>link</em>=<em>http</em>://kphgamdszjka.com/]kphgamdszjka[/<em>link</em>], <em>http</em>://cgknvtoukxmu.com/ <b>......</b> &quot Porsche ;car ;the Hummer &quot ;Benz &quot ;Q7 rental ; ; ; ;Beijing ;6 of my company to provide models powerful should use in the scope of authority greencandlelight wedding venue layout full set ;red series — <em>8888</em> yuan ;6 hours of digital video The good news :Shenzhen City Jia innovative smart card company limited and Qatar Airways <b>...</b>\";s: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:3:{s:9:\"publisher\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"admin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"date\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Wed, 03 Oct 2012 17:47:23 GMT\";s: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:2:\"68\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:10:\"startIndex\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:12:\"itemsPerPage\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"10\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:12:\"content-type\";s:28:\"text/xml; charset=ISO-8859-1\";s:4:\"date\";s:29:\"Sun, 05 May 2013 14:06:22 GMT\";s:7:\"expires\";s:2:\"-1\";s:13:\"cache-control\";s:18:\"private, max-age=0\";s:10:\"set-cookie\";a:2:{i:0;s:143:\"PREF=ID=df4481abbb8478e8:FF=0:TM=1367762782:LM=1367762782:S=_fRzB7gXr7OytTyT; expires=Tue, 05-May-2015 14:06:22 GMT; path=/; domain=.google.com\";i:1;s:212:\"NID=67=wbC51cNTQDBU9VjfsGJyKH7UjqvwJr2BjVroaxO8SU7LyDNkJYg_1ZK2JrfTbkWXRwKvl0_hAwngvbmJV8oCSg0MeYMv0iNo1djLC39O05aeQRvdgMbqdcYWo7ZhRbPu; expires=Mon, 04-Nov-2013 14:06:22 GMT; path=/; domain=.google.com; HttpOnly\";}s:3:\"p3p\";s:122:\"CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"\";s:6:\"server\";s:3:\"gws\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";}s:5:\"build\";s:14:\"20121202214312\";}','no');
INSERT INTO `wp_options` VALUES (371,'_transient_timeout_feed_mod_10a8e6b6a643df70bd3e90d06bd94261','1367805982','no');
INSERT INTO `wp_options` VALUES (372,'_transient_feed_mod_10a8e6b6a643df70bd3e90d06bd94261','1367762782','no');
INSERT INTO `wp_options` VALUES (373,'_transient_timeout_dash_20494a3d90a6669585674ed0eb8dcd8f','1367805983','no');
INSERT INTO `wp_options` VALUES (374,'_transient_dash_20494a3d90a6669585674ed0eb8dcd8f','<ul>\n <li><strong>Mauro Rocha</strong> linked here <a href=\"http://android.stackexchange.com/questions/44340/tablet-genesis-7240-android-bit-web-server-dont-work\">saying</a>, \"... need it to work on the GENESIS tablet, to use ...\"</li>\n <li><strong>Andrey Mikhalchuk</strong> linked here <a href=\"http://andrey.mikhalchuk.com/2013/04/03/how-to-map-ports-in-windows.html\">saying</a>, \"netsh interface portproxy add v4tov4 listenport=88 ...\"</li>\n <li><strong>HålfBløød Prince</strong> linked here <a href=\"http://www.burningx.com/2013/03/microsoft-office-pro-plus-2013-free.html\">saying</a>, \"It uses your system's localhost to send data ...\"</li>\n <li><strong>cryss</strong> linked here <a href=\"http://ihackstorenet.blogspot.com/2013/02/k-ikeymonitor-keylogger-for.html\">saying</a>, \"Work on iPad/iPhone/iPodTouch * Password Protected ...\"</li>\n <li><strong>ha.te</strong> linked here <a href=\"http://fest-platten.de/www/dates/berlin-columbiahalle/\">saying</a>, \"xBL7Ll svlypmsrymdc, [url=http://hcjdkpdnuiko.com/ ...\"</li>\n <li><strong>vuday</strong> linked here <a href=\"http://udayhere.wordpress.com/2013/01/06/http-server-using-simplehttpserver-module/\">saying</a>, \"But when you are accessing the localhost:8000, it ...\"</li>\n <li><strong>cryss</strong> linked here <a href=\"http://ihackstorenet.blogspot.com/2012/11/k-ikeymonitor-keylogger-for.html\">saying</a>, \"Password Protected * Turn on/off monitoring remote ...\"</li>\n <li><strong>moozing</strong> linked here <a href=\"http://moozing.wordpress.com/2012/11/17/surveyor-robot/\">saying</a>, \"As seen on the picture, it is a mobile wireless ro ...\"</li>\n <li><strong>unknown</strong> linked here <a href=\"http://forum.webmaster-rank.info/outils/duplicate-content-checker-t5601.html\">saying</a>, \"Salut à tous Vous utilisez quoi pour tester le DC, ...\"</li>\n <li><strong>admin</strong> linked here <a href=\"http://www.sdchargerstailgating.com/2012/10/03/grandma-does-a-keg-stand-at-lsu-tailgate/\">saying</a>, \"7lJAUs , [url=http://nohpjaawzrox.com/]nohpjaawzro ...\"</li>\n</ul>\n','no');
INSERT INTO `wp_options` VALUES (375,'_transient_timeout_feed_a5420c83891a9c88ad2a4f04584a5efc','1367805983','no');
INSERT INTO `wp_options` VALUES (376,'_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:\"Sun, 05 May 2013 13: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:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:15:{i:0;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Jetpack by WordPress.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:55:\"http://wordpress.org/extend/plugins/jetpack/#post-23862\";s: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 Jan 2011 02:21: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"23862@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:\"Supercharge your WordPress site with powerful features previously only available to WordPress.com users.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Michael Adams (mdawaffe)\";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:19:\"All in One SEO Pack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.org/extend/plugins/all-in-one-seo-pack/#post-753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Mar 2007 20:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"753@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WordPress SEO plugin to automatically optimize your Wordpress blog for Search Engines.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:14:\"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:3;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"WordPress SEO by Yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/extend/plugins/wordpress-seo/#post-8321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jan 2009 20:34:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"8321@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the WordPress SEO plugin by Yoast.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:18:\"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: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:14:\"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:\"\";}}}}}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:7:\"Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"http://wordpress.org/extend/plugins/akismet/#post-15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:11:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"15@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Akismet checks your comments against the Akismet web service to see if they look like spam or not.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:19:\"Google Analyticator\";s:7:\"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/google-analyticator/#post-130\";s: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: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:\"130@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:107:\"Adds the necessary JavaScript code to enable Google Analytics. Includes widgets for Analytics data display.\";s: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:\"cavemonkey50\";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:19:\"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:5:\"Arnee\";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:33:\"WooCommerce - excelling eCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/extend/plugins/woocommerce/#post-29860\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Sep 2011 08:13:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"29860@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WooThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:14:\"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:132:\"Easy Web Performance Optimization (WPO) using 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: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:\"Google Analytics for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.org/extend/plugins/google-analytics-for-wordpress/#post-2316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Sep 2007 12:15:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"2316@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:145:\"Track your WordPress site easily and with lots of metadata: views per author & category, automatic tracking of outbound clicks and pageviews.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:22:\"Advanced Custom Fields\";s:7:\"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/advanced-custom-fields/#post-25254\";s: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, 17 Mar 2011 04:07:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"25254@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:\"Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a powerfull API, it’s a must have for any web dev\";s: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:\"elliotcondon\";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:7:\"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:75:\"WPtouch: A simple, powerful & elegant mobile solution for your website.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"BraveNewCode Inc.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:15:\"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:120:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 6 million downloads.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:\"\";}}}}}}}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:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sun, 05 May 2013 14:06:23 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:7:\"expires\";s:29:\"Sun, 05 May 2013 14:22:00 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Sun, 05 May 2013 13:47:00 +0000\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}s:5:\"build\";s:14:\"20121202214312\";}','no');
INSERT INTO `wp_options` VALUES (377,'_transient_timeout_feed_mod_a5420c83891a9c88ad2a4f04584a5efc','1367805983','no');
INSERT INTO `wp_options` VALUES (378,'_transient_feed_mod_a5420c83891a9c88ad2a4f04584a5efc','1367762783','no');
INSERT INTO `wp_options` VALUES (379,'_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c','1367805983','no');
INSERT INTO `wp_options` VALUES (380,'_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:50:\"WordPress.tv: David Tufts: Web Apps for the Masses\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=19082\";s:7:\"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.tv/2013/05/05/david-tufts-web-apps-for-the-masses-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:652:\"<div id=\"v-lxGTyfwA-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19082/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19082/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=19082&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/05/05/david-tufts-web-apps-for-the-masses-2/\"><img alt=\"David Tufts: Web Apps for the Masses\" src=\"http://videos.videopress.com/lxGTyfwA/video-42f2ff6007_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:\"Sun, 05 May 2013 07:05: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:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WordPress.tv: Joe Boydston: WordPress is Saving Journalism\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18781\";s:7:\"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.tv/2013/05/04/joe-boydston-wordpress-is-saving-journalism-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:674:\"<div id=\"v-v22ljSzm-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18781/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18781/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18781&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/05/04/joe-boydston-wordpress-is-saving-journalism-2/\"><img alt=\"Joe Boydston: WordPress is Saving Journalism\" src=\"http://videos.videopress.com/v22ljSzm/video-4340159efd_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:\"Sun, 05 May 2013 01:12: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:12:\"WordPress.tv\";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:47:\"Alex King: Capsule Hotkeys and Background Queue\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://alexking.org/?p=16768\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://alexking.org/blog/2013/05/04/capsule-hotkeys-queue\";s: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:2238:\"<p>It’s been very gratifying to see people continuing to discover <a href=\"http://crowdfavorite.com/capsule/\">Capsule</a> this week, and seeing it resonate with them. This was typed into the demo earlier today:</p>\n<blockquote><p>\n This software is an example of a thing that everyone wants but doesn’t exist until a great idea suddenly comes and voila! it appears!\n</p></blockquote>\n<p>There are a couple of new features committed to GitHub that you can play with if you like.</p>\n<h2>Hotkeys</h2>\n<p>In the <code>feature/hotkeys</code> branch<sup id=\"fnref:1\"><a href=\"http://alexking.org/blog/topic/wordpress/feed#fn:1\" rel=\"footnote\">1</a></sup> in the <code>ui</code> submodule, you’ll find some additional keyboard shortcuts:</p>\n<ul>\n<li>shift+h = navigate to home</li>\n<li>shift+n = new entry</li>\n<li>shift+f = set focus to search field</li>\n</ul>\n<p>Make sure to update submodules as the <a href=\"https://github.com/jeresig/jquery.hotkeys\">jQuery Hotkeys library</a> has been added.</p>\n<h2>Capsule Server Queue</h2>\n<p>In the <code>feature/queue</code> branch you’ll find an implementation of a very basic “send at least once” queue so that pushing posts to Capsule Server is no longer a blocking action (it makes saves faster). Another benefit to this feature is better support for using Capsule while offline. Saved entries are stored in the queue and sent to Capsule Server once Capsule is online again. To test this out, you’ll need to update your Capsule Server to the latest code in the <code>develop</code> branch.</p>\n<p>We’ve also <a href=\"https://github.com/crowdfavorite/wp-capsule/issues?page=1&state=closed\">fixed a few bugs and incorporated a few submitted enhancements</a>. Thanks to everyone who has contributed.</p>\n<div class=\"footnotes\">\n<hr />\n<ol>\n<li id=\"fn:1\">\nWe use the excellent <a href=\"https://github.com/nvie/gitflow\">Git Flow model</a> at <a href=\"http://crowdfavorite.com\">Crowd Favorite</a>. Features are implemented in <code>feature</code> branches before being merged back to <code>develop</code> and subsequently into a release. <a href=\"http://alexking.org/blog/topic/wordpress/feed#fnref:1\" rev=\"footnote\">↩</a>\n</li>\n</ol>\n</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:\"Sat, 04 May 2013 20:14: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: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: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:76:\"WordPress.tv: Evan Mullins: Your Firstborn Child Theme- Child Themes 101+102\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18732\";s:7:\"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/2013/05/04/evan-mullins-your-firstborn-child-theme-child-themes-101102/\";s: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:706:\"<div id=\"v-NjRS2fjL-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18732/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18732/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18732&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/05/04/evan-mullins-your-firstborn-child-theme-child-themes-101102/\"><img alt=\"Evan Mullins: Your Firstborn Child Theme- Child Themes 101+102\" src=\"http://videos.videopress.com/NjRS2fjL/video-2491cfed0e_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:\"Sat, 04 May 2013 17:38: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:12:\"WordPress.tv\";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:73:\"WordPress.tv: Dr. Lisa Richardson: Get Outta My Head and Onto the 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18710\";s:7:\"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:88:\"http://wordpress.tv/2013/05/03/dr-lisa-richardson-get-outta-my-head-and-onto-the-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:700:\"<div id=\"v-m0AdHeGI-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18710/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18710/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18710&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/05/03/dr-lisa-richardson-get-outta-my-head-and-onto-the-screen/\"><img alt=\"Dr. Lisa Richardson: Get Outta My Head and Onto the Screen!\" src=\"http://videos.videopress.com/m0AdHeGI/video-fd233ddb13_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:\"Fri, 03 May 2013 17:36:02 +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:\"WordPress.tv\";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:49:\"WordPress.tv: Nathaniel Schweinberg: What the Git\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18735\";s:7:\"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/2013/05/03/nathaniel-schweinberg-what-the-git/\";s: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:648:\"<div id=\"v-AafKOU1h-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18735/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18735/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18735&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/05/03/nathaniel-schweinberg-what-the-git/\"><img alt=\"Nathaniel Schweinberg: What the Git\" src=\"http://videos.videopress.com/AafKOU1h/video-eadcb1375e_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:\"Fri, 03 May 2013 16:51:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";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:52:\"WordPress.tv: Tim Shangle: Developing for Committees\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18897\";s:7:\"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.tv/2013/05/03/tim-shangle-developing-for-committees/\";s: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:684:\"<div id=\"v-3Mj0cj8J-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18897/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18897/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18897&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/05/03/tim-shangle-developing-for-committees/\"><img alt=\"Tim Shangle: Developing for Committees_TimShangle_WCGR2012.mov\" src=\"http://videos.videopress.com/3Mj0cj8J/video-a146a0a179_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:\"Fri, 03 May 2013 15:00:47 +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:\"WordPress.tv\";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:71:\"WordPress.tv: Sara Cannon: Designer vs Developer: Creators 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:28:\"http://wordpress.tv/?p=18832\";s:7:\"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://wordpress.tv/2013/05/02/sara-cannon-designer-vs-developer-creators-in-wordpress-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:691:\"<div id=\"v-5u7C4d62-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18832/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18832/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18832&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/05/02/sara-cannon-designer-vs-developer-creators-in-wordpress-2/\"><img alt=\"Designer vs. Developer- Creators in WordPress.mp4\" src=\"http://videos.videopress.com/5u7C4d62/video-05188cbfae_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:\"Thu, 02 May 2013 13:17: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WordPress.tv: Beginners Guide to the Posts Tags 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18617\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"http://wordpress.tv/2013/05/01/beginners-guide-to-the-posts-tags-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:639:\"<div id=\"v-lMCtuudl-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18617/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18617/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18617&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/05/01/beginners-guide-to-the-posts-tags-screen/\"><img alt=\"wpposttags.mp4\" src=\"http://videos.videopress.com/lMCtuudl/video-53b5220d9b_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:\"Thu, 02 May 2013 01:49:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";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:46:\"WordPress.tv: Using the Display Widgets Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18499\";s:7:\"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/2013/05/01/using-the-display-widgets-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:637:\"<div id=\"v-0DlfxHtQ-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18499/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18499/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18499&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/05/01/using-the-display-widgets-plugin/\"><img alt=\"wpdisplaywidgets.mp4\" src=\"http://videos.videopress.com/0DlfxHtQ/video-5357a59347_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:\"Thu, 02 May 2013 01:42: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";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:60:\"Dougal Campbell: WordPress 10th Anniversary Blogging Project\";s:7:\"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:34:\"http://dougal.gunters.org/?p=64213\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"http://dougal.gunters.org/blog/2013/05/01/wordpress-10th-anniversary-blogging-project/\";s: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:4995:\"<div class=\"featured-image align-right\"><img width=\"200\" height=\"198\" src=\"http://geekramblings.gunters.netdna-cdn.com/wordpress/wp-content/uploads/2013/05/wp10logo.jpg?9bb111\" class=\"attachment-post-thumbnail wp-post-image\" alt=\"10 Years of WordPress\" /></div><p>The official 10th anniversary of the release of <a href=\"http://wordpress.org/\">WordPress</a> is May 27, 2013. It has been an amazing 10 years, during which WordPress evolved from a simple blogware to a very full-featured CMS (Content Management System), used to power some of the biggest and most popular web sites on the internet. All over the world, people are <a title=\"Party on, Wayne!\" href=\"http://wordpress.org/news/2013/04/save-the-date-may-27/\">planning celebrations</a>. As much as I like a good party, I thought this would also be a good time to celebrate WordPress by actually using WordPress — for blogging.</p>\n<p>So much of our content sharing these days tends to be via centralized “social” platforms like Twitter, Facebook, Google+, Tumblr, etc., that some of us neglect our blogs. I know <em>I’m</em> guilty of that. But this anniversary is a good excuse for the WordPress community to take a few minutes to consider their time with our favorite website building tool. Here’s what I propose…</p>\n<p><span id=\"more-64213\"></span><br />\nThink about the past 10 years, and your time with WordPress. Maybe, like myself, you’ve been using WordPress since the beginning, or perhaps you just tried it out for the first time last month. But consider the events that stand out in your memory during that time. Now, write a blog post about it. Wherever you fall on the timeline, you should probably be able to write something about one or more of the following openings:</p>\n<ul>\n<li>“When WordPress was first released in 2003..”</li>\n<li>“When I first started using WordPress…”</li>\n<li>“Since I first started using WordPress…”</li>\n</ul>\n<p>So, for example, I’ve been using WordPress pretty much since the beginning. I didn’t actually switch my blog until September 2003, but I’d been committing to core before that, so I might list things like,</p>\n<p>When WordPress was released in May 2003:</p>\n<ul>\n<li>I was 36 years old</li>\n<li>I had been married for less than 2 years</li>\n<li>I already had nearly 10 years of web development experience</li>\n<li>My Pentium 4 laptop with 1GB of RAM was a screaming machine</li>\n</ul>\n<p>When I first started using WordPress in September 2003…</p>\n<ul>\n<li>The Ellen Degeneres show had just debuted on TV</li>\n<li>The US Treasury redesigned the $20 bill</li>\n<li>George W. Bush was in his first term as President</li>\n<li>SCO and IBM were locked in a legal battle over ownership of Linux source code</li>\n<li>My day-job was doing web development in VBScript and PerlScript on IIS4 servers</li>\n<li>Many people didn’t have cell phones, and the iPhone was still 4 years away</li>\n<li>Mozilla replaced Netscape</li>\n<li>The term ‘AJAX’ (Asynchronous JavaScript and XML) didn’t exist yet</li>\n<li>The Ubuntu distribution of Linux didn’t exist yet</li>\n<li>PHP5 was brand spanking new</li>\n<li>Facebook was only a few months old, and I hadn’t even heard of it yet</li>\n<li>Geocities was still a big thing</li>\n</ul>\n<p>Since I started using WordPress…</p>\n<ul>\n<li>There have been 2 Summer Olympics and 2 Winter Olympics</li>\n<li>I moved from southeast Alabama to Atlanta, Georgia</li>\n<li>I became a homeowner</li>\n<li>I have changed jobs at least 8 times, if you include short-term contracts</li>\n<li>I have had another daughter, who is now in 2nd grade</li>\n<li>Apple switched from Motorola PowerPC to Intel processors</li>\n<li>My family adopted a dog and two cats</li>\n<li>There have been 5 iterations of the iPhone and 3 of the iPad</li>\n<li>Myspace went from top-of-the-heap to also-ran to come-back-kid</li>\n</ul>\n<p>There could be all sorts of life, historical, or technological events listed, but anyhow, you get the idea.</p>\n<p>It’s nothing complicated, but I just thought this would be a really fun thing to give a lot of people something common to write about, and actually use our WordPress sites for publishing content. I suggest we use the tag <strong><code>wp10</code></strong> for all the posts (hashtag <strong><code>#wp10</code></strong> for Twitter and such). Also, in addition to writing your own post, make sure to seek out posts by others, and link to your favorites!</p>\n<p>Original Article: <a href=\"http://dougal.gunters.org/blog/2013/05/01/wordpress-10th-anniversary-blogging-project/\">WordPress 10th Anniversary Blogging Project</a>\n<a href=\"http://dougal.gunters.org\">Dougal Campbell's geek ramblings - WordPress, web development, and world domination.</a></p><div class=\"yarpp-related-rss yarpp-related-none\">\n<img src=\"http://yarpp.org/pixels/5db43ee24c4f1e1d0e45d08cc91b0130\" />\n</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, 01 May 2013 16:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Dougal Campbell\";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:47:\"Donncha: mfunc in WP Super Cache 1.4 and beyond\";s:7:\"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://ocaoimh.ie/?p=89498328\";s:7:\"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://ocaoimh.ie/2013/05/01/mfunc-in-wp-super-cache-1-4-and-beyond/\";s: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:5670:\"<p>WP Super Cache is a full page caching plugin for WordPress. It creates static pages that are served quickly by the web server. Sometimes however, users still want parts of their pages to remain dynamic and be non static. That’s where <a href=\"http://wordpress.org/extend/plugins/wp-super-cache/faq/\">mfunc, mclude and dynamic-cached-content</a> came in.</p>\n<p><strong>Security</strong></p>\n<p>Unfortunately it was reported recently that remote visitors to sites using the plugin could execute any code they like by simply leaving a comment containing the right mfunc code. These functions are now disabled by default, and a filter removes harmful code from comments but if enabled they pose a security risk. I considered adding a security code to the mfunc tag but unfortunately the best way of dealing with this problem is to replace it completely with something different. The next release of the plugin will do away with mfunc, mclude and dynamic-cached-content entirely. </p>\n<p><strong>The new dynamic cache system</strong></p>\n<p>The <a href=\"http://ocaoimh.ie/the-development-version-of-wp-super-cache/\">development version of WP Super Cache</a> has already been updated with a new filter based system. It uses a cacheaction filter called “wpsc_cachedata”. This filter runs when a page is first cached and also when a cached page is subsequently served. It also runs when caching is disabled for known users, something that has always been broken when using mfunc.</p>\n<p>Almost all the data that is displayed on your website will run through the cacheaction filter “wpsc_cachedata”. When a page is first cached, the data that is shown to the first visitor of that page goes through that filter. The second visitor gets a cached page and that page too goes through the filter. What this allows us to do is define a template tag (or more than one) that a function hooked on that filter can search for in the filtered data. It can replace that tag with some other text, usually derived from code that has to run on each request. The visitor is then shown the page with the replaced tag.</p>\n<p><strong>Example code</strong></p>\n<p>The readme.txt hasn’t been updated yet but an example plugin, <a href=\"http://svn.wp-plugins.org/wp-super-cache/trunk/plugins/dynamic-cache-test.php\">dynamic-cache-test.php</a> is included in WP Super Cache. It’s fairly simple but it’s documented so it should be easy enough to follow. A template tag is inserted at the bottom of the page using the wp_footer action, and a filter then replaces that tag with text and the current server time. That test plugin replaces mfunc code that would look like this, excluding the necessary code to hook on to wp_footer and print it.</p>\n<p><code><!--mfunc echo \"<!-- Hello world at \" . date( \'H:i:s\' ) . \" -->\"; --><br />\n<?php echo \"<!-- Hello world at \" . date( \'H:i:s\' ) . \" -->\" ?><br />\n<!--/mfunc--></code></p>\n<p>WP Super Cache has it’s own action hooks using add_cacheaction() and do_cacheaction(), and work like WordPress actions or filters. The reason the plugin needs those is because they are available <em>before</em> WordPress is loaded. They allow developers to hook into the plugin from the very start of the PHP process and modify how it works using plugins. Those plugins are usually copied into wp-super-cache/plugins/ but I encourage you to move that directory elsewhere because when WordPress updates the plugin it will delete any custom changes you make. The next time a new version of WP Super Cache comes out WordPress will delete the wp-super-cache folder, replacing it with the new update. In your wp-config.php set <code>$wp_cache_plugins_dir</code> to the location of the new plugins directory.</p>\n<p>If you use this filter system in your own plugin for distribution do not <em>ever</em> define the template tag for the user. Let the user decide what it is or generate a random tag and save it somewhere. It’s important to keep the tag secret so visitors cannot trigger your function maliciously. It is however better than the remote user running any code they like as was the case with mfunc!</p>\n<p>I hope to release a new version with this code late next week. If your plugin or site uses mfunc please download the <a href=\"http://ocaoimh.ie/the-development-version-of-wp-super-cache/\">development version</a> on a test server and start the process of updating your code.<br />\nOn the other hand, if you don’t want to update your mfunc tags you could try <a href=\"http://wordpress.org/extend/plugins/w3-total-cache/\">W3 Total Cache</a> instead. It uses the mfunc tag with a secret code.</p>\n<div align=\"center\"><!--\n google_ad_client = \"pub-1076796686536503\";\n /* 336x280, created 22/05/09 */\n google_ad_slot = \"6456264552\";\n google_ad_width = 336;\n google_ad_height = 280;\n //-->\n </div>\n<p><strong>Related Posts</strong><ul><li> <a href=\"http://ocaoimh.ie/2013/04/24/wp-super-cache-1-3-2/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 1.3.2\">WP Super Cache 1.3.2</a></li><li> <a href=\"http://ocaoimh.ie/2008/10/24/wp-super-cache-084-the-garbage-collector/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.4, the garbage collector\">WP Super Cache 0.8.4, the garbage collector</a></li><li> <a href=\"http://ocaoimh.ie/2009/01/09/wp-super-cache-087/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.7\">WP Super Cache 0.8.7</a></li></ul></p><p><a href=\"http://ocaoimh.ie/2013/05/01/mfunc-in-wp-super-cache-1-4-and-beyond/\">mfunc in WP Super Cache 1.4 and beyond</a> originally appeared on <a href=\"http://ocaoimh.ie\">Holy Shmoly!</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:\"Wed, 01 May 2013 15:23: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:7:\"Donncha\";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:28:\"BuddyPress: BuddyPress 1.7.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:31:\"http://buddypress.org/?p=163045\";s:7:\"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/2013/04/buddypress-1-7-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:899:\"<p>BuddyPress 1.7.1 is now available. This is a maintenance release, which fixes a number of bugs reported since version 1.7 came out earlier this month. For complete details on what’s changed in BP 1.7.1, see the <a href=\"http://buddypress.trac.wordpress.org/query?status=closed&group=resolution&milestone=1.7.1\">Trac milestone</a> or the <a href=\"http://codex.buddypress.org/developer/releases/version-1-7-1/\">1.7.1 changelog in the BuddyPress Codex</a>.</p>\n<p>1.7.1 is a recommended upgrade for all installations running BP 1.5+. Download it today from the <a href=\"http://wordpress.org/extend/plugins/buddypress/\">wordpress.org plugin repository</a>, or from the Plugins page in your WordPress Dashboard. Questions or comments about the release? Visit our <a href=\"http://buddypress.org/support\">support forums</a> or <a href=\"http://buddypress.trac.wordpress.org\">our bugtracker</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, 30 Apr 2013 03:06: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Boone Gorges\";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:30:\"Dev Blog: WordPress 3.6 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2579\";s:7:\"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/2013/04/wordpress-3-6-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2048:\"<p>WordPress 3.6 Beta 2 is now available!</p>\n<p>This is software still in development and <strong>we <em>really</em> don’t recommend that you run it on a production site</strong> — set up a test site just to play with the new version. To test WordPress 3.6, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.6-beta2.zip\">download the beta here</a> (zip).</p>\n<p>The longer-than-usual delay between beta 1 and beta 2 was due to poor user testing results with the Post Formats UI. Beta 2 contains a modified approach for format choosing and switching, which has done well in user testing. We’ve also made the Post Formats UI hide-able via Screen Options, and set a reasonable default based on what your theme supports.</p>\n<p>There were a lot of bug fixes and polishing tweaks done for beta 2 as well, so definitely check it out if you had an issues with beta 1.</p>\n<p>Plugin developers, theme developers, and WordPress hosts should be testing beta 2 extensively. The more you test the beta, the more stable our release candidates and our final release will be.</p>\n<p>As always, if you think you’ve found a bug, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href=\"http://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/report/5\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.6\">everything we’ve fixed</a> so far.</p>\n<p>We’re looking forward to your feedback. If you find a bug, please report it, and if you’re a developer, try to help us fix it. We’ve already had more than 150 contributors to version 3.6 — it’s not too late to join in!</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, 29 Apr 2013 22:48: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: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: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:49:\"WordPress.tv: Micah Wood: Doing AJAX 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:28:\"http://wordpress.tv/?p=18998\";s:7:\"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.tv/2013/04/27/micah-wood-doing-ajax-in-wordpress-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:650:\"<div id=\"v-YQJacUMu-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18998/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18998/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18998&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/04/27/micah-wood-doing-ajax-in-wordpress-2/\"><img alt=\"Micah Wood: Doing AJAX in WordPress\" src=\"http://videos.videopress.com/YQJacUMu/video-e3f18ab4c7_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:\"Sat, 27 Apr 2013 22:32: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:12:\"WordPress.tv\";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:25:\"Matt: Four Little Numbers\";s:7:\"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=42357\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://ma.tt/2013/04/four-little-numbers/\";s: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:288:\"<p><a href=\"http://noscope.com/2013/four-little-numbers/\">Four Little Numbers</a>, Joen Asmussen talks about working on this year’s new default theme for WordPress, <a href=\"http://en.blog.wordpress.com/2013/04/25/twenty-thirteen/\">which also just launched on WordPress.com</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:\"Fri, 26 Apr 2013 21:19: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: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:70:\"WordPress.tv: Tom McFarlin: Level-Up Your WordPress Development Skills\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18714\";s:7:\"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:87:\"http://wordpress.tv/2013/04/26/tom-mcfarlin-level-up-your-wordpress-development-skills/\";s: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:690:\"<div id=\"v-BXz07I25-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18714/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18714/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18714&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/04/26/tom-mcfarlin-level-up-your-wordpress-development-skills/\"><img alt=\"Tom McFarlin: Level-Up Your WordPress Development Skills\" src=\"http://videos.videopress.com/BXz07I25/video-1d3377653c_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:\"Fri, 26 Apr 2013 18:03:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WordPress.tv: John Saddington: Finding a Niche Through Experimentation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18704\";s:7:\"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:87:\"http://wordpress.tv/2013/04/26/john-saddington-finding-a-niche-through-experimentation/\";s: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:690:\"<div id=\"v-erGbZN8Q-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18704/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18704/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18704&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/04/26/john-saddington-finding-a-niche-through-experimentation/\"><img alt=\"John Saddington: Finding a Niche Through Experimentation\" src=\"http://videos.videopress.com/erGbZN8Q/video-70c487ee47_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:\"Fri, 26 Apr 2013 16:45:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";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:43:\"Mark Jaquith: Fragment Caching 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:40:\"http://markjaquith.wordpress.com/?p=4061\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"http://markjaquith.wordpress.com/2013/04/26/fragment-caching-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:1279:\"<p>Fragment caching is useful for caching HTML snippets that are expensive to generate and exist in multiple places on your site. It’s like full page HTML caching, but more granular, and it speeds up dynamic views.</p>\n<p>I’ve been using <a href=\"https://gist.github.com/markjaquith/2653957\">this fragment caching class</a> for a few years now. I optimized it around ease of implementation. I wanted, as much as possible, to be able to identify a slow HTML-outputting block of code, and just wrap this code around it without having to refactor anything about the code inside.</p>\n<p></p>\n<p>Implementation is pretty easy, and you can reference the comment at the start of the code for that. The only thing to consider is that any variables that alter the output need to be build into the key. It should also be noted that this code assumes you have a persistent object cache backend.</p>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/markjaquith.wordpress.com/4061/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/markjaquith.wordpress.com/4061/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=markjaquith.wordpress.com&blog=316&post=4061&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, 26 Apr 2013 13:11:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:38:\"bbPress: bbPress 2.3.1 Bug Fix Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://bbpress.org/?p=133710\";s:7:\"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://bbpress.org/blog/2013/04/bbpress-2-3-1-bug-fix-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:34042:\"<p>Available immediately is <a href=\"http://wordpress.org/extend/plugins/bbpress/\">bbPress 2.3.1</a>. This version of bbPress fixes three known bugs:</p>\n<ul>\n<li>Moderators can once again see trashed topics and replies</li>\n<li>Posting preformatted code is improved over previous versions</li>\n<li>Correct cache group deleted for custom posts queries</li>\n</ul>\n<p>Also in bbPress 2.3.1, we’ve disabled the use of WordPress’s visual editor (aka TinyMCE.) The HTML editor is still available, and works extremely well. If you want to enable the visual editor again, we’ve added a <a href=\"http://codex.bbpress.org/enable-visual-editor/\">code snippet to the codex</a> that will turn it back on for you.</p>\n<p>Go download <a href=\"http://wordpress.org/extend/plugins/bbpress/\">bbPress 2.3.1</a> now!</p>\n<p><span id=\"more-133710\"></span></p>\n<h3>Discuss This Post</h3>\n\n<div id=\"bbpress-forums\">\n\n \n \n \n \n \n\n<div class=\"bbp-pagination\">\n <div class=\"bbp-pagination-count\">\n\n Viewing 24 posts - 1 through 24 (of 24 total)\n </div>\n\n <div class=\"bbp-pagination-links\">\n\n \n </div>\n</div>\n\n\n \n<ul id=\"topic-133713-replies\" class=\"forums bbp-replies\">\n\n <li class=\"bbp-body\">\n\n \n \n<div id=\"post-133713\" class=\"post-133713 topic type-topic status-publish hentry odd bbp-parent-forum-652 bbp-parent-topic-133713 bbp-reply-position-1 user-id-395440 topic-author\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/johnjamesjacoby/\" title=\"View John James Jacoby\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/81ec16063d89b162d55efe72165c105f?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/johnjamesjacoby/\" title=\"View John James Jacoby\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">John James Jacoby</a><br /><div class=\"bbp-author-role\">Keymaster</div>\n <p class=\"bbp-user-nicename\">@johnjamesjacoby</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-1-now-available/#post-133713\" title=\"#133713\" class=\"bbp-reply-permalink\">1 week ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>Drop feedback about <a href=\"http://bbpress.org/blog/2013/04/bbpress-2-3-1-bug-fix-release/\" rel=\"nofollow\">bbPress 2.3.1</a> here!</p>\n<p>See the <a href=\"http://bbpress.trac.wordpress.org/milestone/2.3.1\" rel=\"nofollow\">2.3.1 milestone on Trac</a> for changes.</p>\n<p>From the blog post:</p>\n<blockquote><p>Also in bbPress 2.3.1, we’ve disabled the use of WordPress’s visual editor (aka TinyMCE.) The HTML editor is still available, and works extremely well. If you want to enable the visual editor again, we’ve added a <a href=\"http://codex.bbpress.org/enable-visual-editor/\" rel=\"nofollow\">code snippet to the codex</a> that will turn it back on for you.</p></blockquote>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133713 -->\n\n \n \n<div id=\"post-133722\" class=\"post-133722 reply type-reply status-publish hentry even bbp-parent-forum-652 bbp-parent-topic-133713 bbp-reply-position-2 user-id-8351383\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/ichpen/\" title=\"View ichpen\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/2aa5f5534d603a741cbc2c326a1195a5?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/ichpen/\" title=\"View ichpen\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">ichpen</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@ichpen</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-1-now-available/#post-133722\" title=\"#133722\" class=\"bbp-reply-permalink\">1 week ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>There is no changelog. What’s changed?</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133722 -->\n\n \n \n<div id=\"post-133724\" class=\"post-133724 reply type-reply status-publish hentry odd bbp-parent-forum-652 bbp-parent-topic-133713 bbp-reply-position-3 user-id-11927568\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/tbermudas/\" title=\"View Tbermudas\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/2e9aa2b1d2663e5074927b27b4bf6244?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/tbermudas/\" title=\"View Tbermudas\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">Tbermudas</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@tbermudas</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-1-now-available/#post-133724\" title=\"#133724\" class=\"bbp-reply-permalink\">1 week ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>I have installed the update in my tester site and I have lost the visual editor, also the “Ckeditor for wordpress plugin” seems to be not compatible. </p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133724 -->\n\n \n \n<div id=\"post-133728\" class=\"post-133728 reply type-reply status-publish hentry even bbp-parent-forum-652 bbp-parent-topic-133713 bbp-reply-position-4 user-id-5853594\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/tieptoep/\" title=\"View Trifon\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/47b6ff3478231807eb928212bba1e171?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/tieptoep/\" title=\"View Trifon\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">Trifon</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@tieptoep</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-1-now-available/#post-133728\" title=\"#133728\" class=\"bbp-reply-permalink\">6 days, 22 hours ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>I’m getting a header already sent issue when I’ve got both bbpress 2.3.1 and Jetpack 2.3 activated. The error mentions that Jetpack has already sent the headers or something? (I know next to nothing about how to interpret those things.)</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133728 -->\n\n \n \n<div id=\"post-133736\" class=\"post-133736 reply type-reply status-publish hentry odd bbp-parent-forum-652 bbp-parent-topic-133713 bbp-reply-position-5 user-id-5853594\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/tieptoep/\" title=\"View Trifon\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/47b6ff3478231807eb928212bba1e171?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/tieptoep/\" title=\"View Trifon\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">Trifon</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@tieptoep</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-1-now-available/#post-133736\" title=\"#133736\" class=\"bbp-reply-permalink\">6 days, 19 hours ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>It’s fixed with the 2.2.4 update of Jetpack.</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133736 -->\n\n \n \n<div id=\"post-133737\" class=\"post-133737 reply type-reply status-publish hentry even bbp-parent-forum-652 bbp-parent-topic-133713 bbp-reply-position-6 user-id-8968505\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/drrxa/\" title=\"View drrxa\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/481ab7e45084475921f59592083a3b8a?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/drrxa/\" title=\"View drrxa\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">drrxa</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@drrxa</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-1-now-available/#post-133737\" title=\"#133737\" class=\"bbp-reply-permalink\">6 days, 18 hours ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>As <a href=\"http://bbpress.org/forums/profile/tbermudas/\" rel=\"nofollow\">@tbermudas</a> I have also lost the tinyMCE editor on front-end.</p>\n<p>I try to go back to version 2.3, but the zip file in WordPress repo for version 2.3 actually contains version 2.3.1. Where can I download version 2.3?</p>\n<p>Thanks.</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133737 -->\n\n \n \n<div id=\"post-133739\" class=\"post-133739 reply type-reply status-publish hentry odd bbp-parent-forum-652 bbp-parent-topic-133713 bbp-reply-position-7 user-id-4281024\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/jaredatch/\" title=\"View Jared Atchison\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/e341eca9e1a85dcae7127044301b4363?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/jaredatch/\" title=\"View Jared Atchison\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">Jared Atchison</a><br /><div class=\"bbp-author-role\">Moderator</div>\n <p class=\"bbp-user-nicename\">@jaredatch</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-1-now-available/#post-133739\" title=\"#133739\" class=\"bbp-reply-permalink\">6 days, 17 hours ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>Instructions to enable the visual editor are <a href=\"http://codex.bbpress.org/enable-visual-editor/\" rel=\"nofollow\"><strong>here</strong></a>.</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133739 -->\n\n \n \n<div id=\"post-133754\" class=\"post-133754 reply type-reply status-publish hentry even bbp-parent-forum-652 bbp-parent-topic-133713 bbp-reply-position-8 user-id-12143767\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/julien1975/\" title=\"View Julien1975\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/0cda3c84f292fd544c23733c62188de5?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/julien1975/\" title=\"View Julien1975\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">Julien1975</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@julien1975</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-1-now-available/#post-133754\" title=\"#133754\" class=\"bbp-reply-permalink\">6 days, 4 hours ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>Unfortunately my bbPress does not allow admin to access settings anymore.<br />\nForum is still publicly visible and it’s possible to post, but settings are “gone”.</p>\n<p>I tried to figure out for 2 hours before writing here.<br />\nWordpress debug says: PHP Notice: bbp_setup_current_user was called <strong>incorrectly</strong>. The current user is being initialized without using $wp->init().</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133754 -->\n\n \n \n<div id=\"post-133756\" class=\"post-133756 reply type-reply status-publish hentry odd bbp-parent-forum-652 bbp-parent-topic-133713 bbp-reply-position-9 user-id-7052986\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/hlwinkler/\" title=\"View hlwinkler\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/0c52bebca619255ba06899a68a2ceb23?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/hlwinkler/\" title=\"View hlwinkler\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">hlwinkler</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@hlwinkler</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-1-now-available/#post-133756\" title=\"#133756\" class=\"bbp-reply-permalink\">6 days, 3 hours ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>Can you put up the changelog for the update?</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133756 -->\n\n \n \n<div id=\"post-133759\" class=\"post-133759 reply type-reply status-publish hentry even bbp-parent-forum-652 bbp-parent-topic-133713 bbp-reply-position-10 user-id-395440 topic-author\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/johnjamesjacoby/\" title=\"View John James Jacoby\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/81ec16063d89b162d55efe72165c105f?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/johnjamesjacoby/\" title=\"View John James Jacoby\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">John James Jacoby</a><br /><div class=\"bbp-author-role\">Keymaster</div>\n <p class=\"bbp-user-nicename\">@johnjamesjacoby</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-1-now-available/#post-133759\" title=\"#133759\" class=\"bbp-reply-permalink\">6 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <blockquote><p>There is no changelog. What’s changed?</p></blockquote>\n<p>There is a changelog, you just need to read the blog post this topic is connected to. <img src=\"http://bbpress.org/wordpress/wp-includes/images/smilies/icon_smile.gif\" alt=\":)\" class=\"wp-smiley\" /> </p>\n<p>Or, even better, keep an eye <a href=\"http://bbpress.trac.wordpress.org/milestone/2.3.1\" rel=\"nofollow\">on Trac</a> if you’re concerned about the exact changes.</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133759 -->\n\n \n \n<div id=\"post-133767\" class=\"post-133767 reply type-reply status-publish hentry odd bbp-parent-forum-652 bbp-parent-topic-133713 bbp-reply-position-11 user-id-553225\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/arturo84/\" title=\"View Arturo\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://1.gravatar.com/avatar/f91ca8612d06093c003522b16eacc6ca?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/arturo84/\" title=\"View Arturo\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">Arturo</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@arturo84</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-1-now-available/#post-133767\" title=\"#133767\" class=\"bbp-reply-permalink\">5 days, 21 hours ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>i’ve pasted in functions.php the code in the codex page to re-activate the editor and i’ve this error</p>\n<p><code>Parse error: syntax error, unexpected T_VARIABLE</code></p>\n<p>any help for this?</p>\n<p>Thanks!</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133767 -->\n\n \n \n<div id=\"post-133772\" class=\"post-133772 reply type-reply status-publish hentry even bbp-parent-forum-652 bbp-parent-topic-133713 bbp-reply-position-12 user-id-5853594\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/tieptoep/\" title=\"View Trifon\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/47b6ff3478231807eb928212bba1e171?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/tieptoep/\" title=\"View Trifon\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">Trifon</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@tieptoep</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-1-now-available/#post-133772\" title=\"#133772\" class=\"bbp-reply-permalink\">5 days, 19 hours ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p><a href=\"http://bbpress.org/forums/profile/johnjamesjacoby/\" rel=\"nofollow\">@johnjamesjacoby</a><br />\nI think he meant the changelog at the <a href=\"http://wordpress.org/extend/plugins/bbpress/changelog/\" title=\"WP Plugin Directory\" rel=\"nofollow\">WP Plugin Directory</a> because that hasn’t been updated yet.</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133772 -->\n\n \n \n<div id=\"post-133789\" class=\"post-133789 reply type-reply status-publish hentry odd bbp-parent-forum-652 bbp-parent-topic-133713 bbp-reply-position-13 user-id-9139828\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/mt78/\" title=\"View mt78\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://1.gravatar.com/avatar/ddd4d3f9f609963be87881329f1e6930?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/mt78/\" title=\"View mt78\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">mt78</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@mt78</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-1-now-available/#post-133789\" title=\"#133789\" class=\"bbp-reply-permalink\">5 days, 4 hours ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>- bbPress 2.3.1 – WP 3.5.1 – Buddypress 1.7 –<br />\nWhen you change the FORUM ROLE any user via forum, then in the WordPress administration is forum rule unchanged, even though the user already has rights moderator or administrator. Can you change the forum role of the user via WordPress administration or not?</p>\n<p>I tried to change the user role of the participant to moderator in the WordPress administration and nothing happened. I tried to change the role through the forum and role has changed, but the administration remained WordPress original role. Is this normal?</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133789 -->\n\n \n \n<div id=\"post-133793\" class=\"post-133793 reply type-reply status-publish hentry even bbp-parent-forum-652 bbp-parent-topic-133713 bbp-reply-position-14 user-id-553225\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/arturo84/\" title=\"View Arturo\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://1.gravatar.com/avatar/f91ca8612d06093c003522b16eacc6ca?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/arturo84/\" title=\"View Arturo\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">Arturo</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@arturo84</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-1-now-available/#post-133793\" title=\"#133793\" class=\"bbp-reply-permalink\">5 days, 3 hours ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>i’ve disabled and reactivated the bbPress plugin and now if i try to access the about, configuration etc i see the page with “you need autorization to access this page” i’m the administrator role on WP… and Keymaster on bbPress.</p>\n<p>WP 3.5.1 – BP 1.7 and bbPress 2.3.1</p>\n<p>how can i fix this?</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133793 -->\n\n \n \n<div id=\"post-133794\" class=\"post-133794 reply type-reply status-publish hentry odd bbp-parent-forum-652 bbp-parent-topic-133713 bbp-reply-position-15 user-id-553225\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/arturo84/\" title=\"View Arturo\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://1.gravatar.com/avatar/f91ca8612d06093c003522b16eacc6ca?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/arturo84/\" title=\"View Arturo\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">Arturo</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@arturo84</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-1-now-available/#post-133794\" title=\"#133794\" class=\"bbp-reply-permalink\">5 days, 3 hours ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>another problem, if i try to reply to any topic i see the massage “Don’t have the permission to do that”</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133794 -->\n\n \n \n<div id=\"post-133796\" class=\"post-133796 reply type-reply status-publish hentry even bbp-parent-forum-652 bbp-parent-topic-133713 bbp-reply-position-16 user-id-553225\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/arturo84/\" title=\"View Arturo\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://1.gravatar.com/avatar/f91ca8612d06093c003522b16eacc6ca?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/arturo84/\" title=\"View Arturo\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">Arturo</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@arturo84</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-1-now-available/#post-133796\" title=\"#133796\" class=\"bbp-reply-permalink\">5 days, 2 hours ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>found the problem… All in One Seo Pack, is the problem, disabling this plugin bbPress work ok without problem.<br />\nOpened a support topic on plugin’s wporg forum</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133796 -->\n\n \n \n<div id=\"post-133798\" class=\"post-133798 reply type-reply status-publish hentry odd bbp-parent-forum-652 bbp-parent-topic-133713 bbp-reply-position-17 user-id-5941287\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/alex-ye/\" title=\"View Nashwan Doaqan\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/eba70909d1752812495149883c41c86c?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/alex-ye/\" title=\"View Nashwan Doaqan\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">Nashwan Doaqan</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@alex-ye</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-1-now-available/#post-133798\" title=\"#133798\" class=\"bbp-reply-permalink\">5 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>Good version, but it break some tiny things in posting unfiltered HTML and codes snippets, I wish to see bbPress 2.3.2 soon <img src=\"http://bbpress.org/wordpress/wp-includes/images/smilies/icon_smile.gif\" alt=\":)\" class=\"wp-smiley\" /> </p>\n<p>I wonder why you didn’t give us some time to test Changeset 4867 ?!</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133798 -->\n\n \n \n<div id=\"post-133805\" class=\"post-133805 reply type-reply status-publish hentry even bbp-parent-forum-652 bbp-parent-topic-133713 bbp-reply-position-18 user-id-12059482\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/premitheme/\" title=\"View premitheme\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://1.gravatar.com/avatar/369776c75745ad28e296c07052932bd6?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/premitheme/\" title=\"View premitheme\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">premitheme</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@premitheme</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-1-now-available/#post-133805\" title=\"#133805\" class=\"bbp-reply-permalink\">4 days, 13 hours ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <blockquote><p>Good version, but it break some tiny things in posting unfiltered HTML and codes snippets, I wish to see bbPress 2.3.2 soon </p></blockquote>\n<p>Same thing here, for example when trying to add class name for pre tag it breaks.</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133805 -->\n\n \n \n<div id=\"post-133809\" class=\"post-133809 reply type-reply status-publish hentry odd bbp-parent-forum-652 bbp-parent-topic-133713 bbp-reply-position-19 user-id-5853594\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/tieptoep/\" title=\"View Trifon\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/47b6ff3478231807eb928212bba1e171?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/tieptoep/\" title=\"View Trifon\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">Trifon</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@tieptoep</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-1-now-available/#post-133809\" title=\"#133809\" class=\"bbp-reply-permalink\">4 days, 8 hours ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>I would like to see an option on the settings page to turn on the visual editor instead of fidgeting around with placing code somewhere…</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133809 -->\n\n \n \n<div id=\"post-133834\" class=\"post-133834 reply type-reply status-publish hentry even bbp-parent-forum-652 bbp-parent-topic-133713 bbp-reply-position-20 user-id-4281024\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/jaredatch/\" title=\"View Jared Atchison\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/e341eca9e1a85dcae7127044301b4363?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/jaredatch/\" title=\"View Jared Atchison\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">Jared Atchison</a><br /><div class=\"bbp-author-role\">Moderator</div>\n <p class=\"bbp-user-nicename\">@jaredatch</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-1-now-available/#post-133834\" title=\"#133834\" class=\"bbp-reply-permalink\">3 days, 17 hours ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>You’ll likely see a plugin popup in the WordPress.org repo soon that will prevent the need to deal with any code directly.</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133834 -->\n\n \n \n<div id=\"post-133865\" class=\"post-133865 reply type-reply status-publish hentry odd bbp-parent-forum-652 bbp-parent-topic-133713 bbp-reply-position-21 user-id-9296596\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/ronangelo/\" title=\"View ronangelo\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://1.gravatar.com/avatar/938067ba5fe135bc1f191acaaf88f3a0?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/ronangelo/\" title=\"View ronangelo\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">ronangelo</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@ronangelo</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-1-now-available/#post-133865\" title=\"#133865\" class=\"bbp-reply-permalink\">3 days, 6 hours ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>I’m hoping a Preview button could be added next since HTML editor is now the default.</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133865 -->\n\n \n \n<div id=\"post-133889\" class=\"post-133889 reply type-reply status-publish hentry even bbp-parent-forum-652 bbp-parent-topic-133713 bbp-reply-position-22 user-id-4281024\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/jaredatch/\" title=\"View Jared Atchison\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/e341eca9e1a85dcae7127044301b4363?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/jaredatch/\" title=\"View Jared Atchison\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">Jared Atchison</a><br /><div class=\"bbp-author-role\">Moderator</div>\n <p class=\"bbp-user-nicename\">@jaredatch</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-1-now-available/#post-133889\" title=\"#133889\" class=\"bbp-reply-permalink\">2 days, 21 hours ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>Plugin that will add back the visual tab to the editor: <a href=\"http://wordpress.org/extend/plugins/bbpress-enable-tinymce-visual-tab/\" rel=\"nofollow\">bbPress Enable TinyMCE Visual Tab</a></p>\n<p>No code required. Just activate and you’re done.</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133889 -->\n\n \n \n<div id=\"post-133895\" class=\"post-133895 reply type-reply status-publish hentry odd bbp-parent-forum-652 bbp-parent-topic-133713 bbp-reply-position-23 user-id-11753900\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/fencer_x/\" title=\"View fencer_x\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/4889221e4a9444855bd8ef5e5cb565c7?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/fencer_x/\" title=\"View fencer_x\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">fencer_x</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@fencer_x</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-1-now-available/#post-133895\" title=\"#133895\" class=\"bbp-reply-permalink\">2 days, 18 hours ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p><a href=\"http://bbpress.org/forums/profile/julien1975/\" rel=\"nofollow\">@julien1975</a> I’m having the exact same issues… No forums available for access from the admin panel, no “Forums” under tools or settings, absolutely no way to administrate the forums except from the front-end. I can’t deal with replies or topics on a bulk scale either now. REALLY hope this gets resolved soon. </p>\n<p>It feels like every time I get bbpress situated, something else breaks…</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133895 -->\n\n \n \n<div id=\"post-133909\" class=\"post-133909 reply type-reply status-publish hentry even bbp-parent-forum-652 bbp-parent-topic-133713 bbp-reply-position-24 user-id-12166715\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/henri-junttila/\" title=\"View Henri Junttila\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/8f6aede85943de6ed01901871e791da4?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/henri-junttila/\" title=\"View Henri Junttila\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">Henri Junttila</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@henri-junttila</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-1-now-available/#post-133909\" title=\"#133909\" class=\"bbp-reply-permalink\">2 days, 7 hours ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>My tech guy ran into the same problem and he got it fixed by running Tools > Forums > Repair Forums.</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133909 -->\n\n \n </li><!-- .bbp-body -->\n\n</ul><!-- #topic-133713-replies -->\n\n\n \n\n<div class=\"bbp-pagination\">\n <div class=\"bbp-pagination-count\">\n\n Viewing 24 posts - 1 through 24 (of 24 total)\n </div>\n\n <div class=\"bbp-pagination-links\">\n\n \n </div>\n</div>\n\n\n \n \n\n\n <div id=\"no-reply-133713\" class=\"bbp-no-reply\">\n <div class=\"bbp-template-notice\">\n <p>You must be logged in to reply to this topic.</p>\n </div>\n </div>\n\n\n\n \n \n</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:\"Fri, 26 Apr 2013 12:04:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:40:\"Alex King: Capsule Reaction and My Usage\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://alexking.org/?p=16611\";s:7:\"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://alexking.org/blog/2013/04/25/capsule-reaction-and-my-usage\";s: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:3681:\"<p>Quite simply, the reaction to <a href=\"http://alexking.org/blog/2013/04/24/capsule-the-developers-code-journal\">Capsule</a> has far exceeded my hopes. I’m thrilled.</p>\n<p>As Capsule is a product in a nascent category, my biggest concern was that people wouldn’t immediately see the benefits it could provide. That clearly has not been the case. Capsule appears to be a solution to a problem people (at least subconsciously) knew they had; and they appear ready to embrace it.</p>\n<p>It’s also been wonderful to see a few feature requests, bug reports and pull requests on GitHub already. Capsule is aimed at a developer audience, and it’s wonderful to see the community already pitching in.</p>\n<h2>Capsule Permissions</h2>\n<p>WordPress has a capability in it’s permissions matrix called <code>unfiltered_html</code>. You need to have this capability in order for certain things (like <code><?php ... ?></code>) not to be stripped from your content on save. On our demo site, this capability is quite obviously not available to the demo user.</p>\n<p>This shouldn’t be an issue in most real-life situations as Capsule is designed to be a single-user journal and it’s reasonable to expect that the single user account is an admin account (which does have the <code>unfiltered_html</code> capability).</p>\n<p>Where this has appeared to be problematic is on WordPress multi-site installs. It’s been reported to me that only the site-admin role has this by default. I haven’t dug in to confirm this, but I’d guess that’s accurate. I think it’s likely that <a href=\"http://wordpress.org/extend/plugins/user-role-editor/\">existing</a> <a href=\"http://wordpress.org/extend/plugins/capability-manager-enhanced/\">plugins</a> solve this and Capsule probably shouldn’t do anything to muck around with WordPress capabilities and permissions, but I’m open to creative ideas. Here’s the <a href=\"https://github.com/crowdfavorite/wp-capsule/issues/15\">GitHub issue</a> if you’d like to chime in.</p>\n<h2>My Capsule Usage</h2>\n<p>I use Capsule as a <a href=\"http://fluidapp.com/\">Fluid app</a>, allowing me to invoke it easily from <a href=\"http://obdev.at/launchbar/\">Launchbar</a> and keep it out of my mess of browser tabs.</p>\n<p>I have Capsule installed locally rather than on a remote web server. I find myself working without internet from time to time (coffee shops, airplanes, etc.) and don’t want to be without access to my notes. I have a CRON job that backs up my Capsule database hourly to Dropbox.</p>\n<p>A number of people immediately thought of Capsule as a code snippet library. It may well be suitable for this, but that’s not how I use it. I do put code in it, but more of my entries are notes on implementation and architecture approaches (especially rejected approaches).</p>\n<p>I primarily work on a laptop with an external monitor. I keep Capsule on my laptop screen while I have my code and browser on my big monitor.<sup id=\"fnref:1\"><a href=\"http://alexking.org/blog/topic/wordpress/feed#fn:1\" rel=\"footnote\">1</a></sup> Thinking, planning and notes happen on the secondary screen while main dev happens on the big screen.</p>\n<p>Thinking and coding are two different acts. For best results, you want to be doing one at a time. Having things on separate screens helps me shift between these modes.</p>\n<div class=\"footnotes\">\n<hr />\n<ol>\n<li id=\"fn:1\">\nWhen I’m just on the laptop screen, I use multiple desktops to approximate this. <a href=\"http://alexking.org/blog/topic/wordpress/feed#fnref:1\" rev=\"footnote\">↩</a>\n</li>\n</ol>\n</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:\"Thu, 25 Apr 2013 22:55: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: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: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:95:\"WordPress.tv: Erik Wolf: Grow Your Business NOW: Maximize Marketing Efficiencies With WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18835\";s:7:\"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:111:\"http://wordpress.tv/2013/04/25/erik-wolf-grow-your-business-now-maximize-marketing-efficiencies-with-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:745:\"<div id=\"v-RDmqRLcx-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18835/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18835/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18835&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/04/25/erik-wolf-grow-your-business-now-maximize-marketing-efficiencies-with-wordpress/\"><img alt=\"Erik Wolf: Grow Your Business NOW: Maximize Marketing Efficiencies With WordPress\" src=\"http://videos.videopress.com/RDmqRLcx/video-b6ce761e14_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:\"Thu, 25 Apr 2013 21:25:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";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:92:\"WordPress.tv: Michael Earley: Media – Adding Images and Other Media To Your 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:28:\"http://wordpress.tv/?p=18808\";s:7:\"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:105:\"http://wordpress.tv/2013/04/25/michael-earley-media-adding-images-and-other-media-to-your-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:740:\"<div id=\"v-sMAPXgD8-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18808/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18808/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18808&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/04/25/michael-earley-media-adding-images-and-other-media-to-your-wordpress-site/\"><img alt=\"Michael Earley: Media – Adding Images and Other Media To Your WordPress Site\" src=\"http://videos.videopress.com/sMAPXgD8/video-11b9e3fe37_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:\"Thu, 25 Apr 2013 19:38: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:12:\"WordPress.tv\";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:52:\"Dev Blog: Summer Mentorship Programs: GSoC and Gnome\";s:7:\"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=2573\";s:7:\"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/news/2013/04/summer-mentorship-programs-gsoc-and-gnome/\";s: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:4860:\"<p>As an open source, free software project, WordPress depends on the contributions of hundreds of people from around the globe — contributions in areas like core code, documentation, answering questions in the support forums, translation, and all the other things it takes to make WordPress the best publishing platform it can be, with the most supportive community. This year, we’re happy to be participating as a mentoring organization with two respected summer internship programs: <a href=\"http://www.google-melange.com/gsoc/homepage/google/gsoc2013\">Google Summer of Code (GSoC)</a> and the Gnome Outreach Program for Women.</p>\n<h3>Google Summer of Code</h3>\n<p>GSoC is a summer internship program funded by Google specifically for college/university student developers to work on open source coding projects. We have participated in the Google Summer of Code program in the past, and have enjoyed the opportunity to work with students in this way. Some of our best core developers were GSoC students once upon a time!</p>\n<p><a href=\"http://codex.wordpress.org/GSoC2013#Mentors\">Our mentors</a>, almost 30 talented developers with experience developing WordPress, will provide students with guidance and feedback over the course of the summer, culminating in the release of finished projects at the end of the program if all goes well.</p>\n<p>Students who successfully complete the program earn $5,000 for their summer efforts. Interested, or know a college student (newly accepted to college counts, too) who should be? All the information you need about our participation in the program, projects, mentors, and the application process is available on the <a href=\"http://codex.wordpress.org/GSoC2013\">GSoC 2013 page in the Codex</a>.</p>\n<h3>Gnome Outreach Program for Women</h3>\n<p>It’s not news that women form a low percentage of contributors in most open source projects, and WordPress is no different. We have great women in the contributor community, including some in fairly visible roles, but we still have a lot of work to do to get a representative gender balance on par with our user base.</p>\n<p>The Gnome Outreach Program for Women aims to provide opportunities for women to participate in open source projects, and offers a similar stipend, but there are three key differences between GSoC and Gnome aside from the gender requirement for Gnome.</p>\n<ol>\n<li><span>The Gnome program allows intern projects in many areas of contribution, not just code. In other words, interns can propose projects like documentation, community management, design, translation, or pretty much any area in which we have people contributing (including code).</span></li>\n<li><span>The Gnome Outreach Program for Women doesn’t require interns to be college students, though students are definitely welcome to participate. This means that women in all stages of life and career can take the opportunity to try working with open source communities for the summer.</span></li>\n<li><span>We have to help raise the money to pay the interns. Google funds GSoC on its own, and we only have to provide our mentors’ time. Gnome doesn’t have the same funding, so we need to pitch in to raise the money to cover our interns. If your company is interested in helping with this, please check out the program’s </span><a href=\"https://live.gnome.org/OutreachProgramForWomen#For_Organizations_and_Companies\">sponsorship information</a><span> and follow the contact instructions to get involved. You can earmark donations to support WordPress interns, or to support the program in general. (Pick us, pick us! <img src=\"http://wordpress.org/news/wp-includes/images/smilies/icon_smile.gif\" alt=\":)\" class=\"wp-smiley\" /> )</span></li>\n</ol>\n<p>The summer installment of the Gnome Outreach Program for Women follows the same schedule and general application format as GSoC, though there are more potential projects since it covers more areas of contribution. Women college students interested in doing a coding project are encouraged to apply for both programs to increase the odds of acceptance. All the information you need about our participation in the program, projects, mentors, and the application process is available on the <a href=\"http://codex.wordpress.org/Gnome_Summer_Program_for_Women\">Gnome Outreach Program for Women page in the Codex</a>.</p>\n<p>The application period just started, and it lasts another week (May 1 for Gnome, May 3 for GSoC), so if you think you qualify and are interested in getting involved, check out the information pages, get in touch, and apply… Good luck!</p>\n<p><a href=\"http://codex.wordpress.org/GSoC2013\">Google Summer of Code 2013 Information</a><br />\n<a href=\"http://codex.wordpress.org/Gnome_Summer_Program_for_Women\">Gnome Summer Outreach Program for Women 2013 Information</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:\"Thu, 25 Apr 2013 03:18:41 +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:8:\"Jen Mylo\";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:29:\"Donncha: WP Super Cache 1.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:29:\"http://ocaoimh.ie/?p=89498321\";s:7:\"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://ocaoimh.ie/2013/04/24/wp-super-cache-1-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:3767:\"<p><a href=\"http://ocaoimh.ie/y/58\">WP Super Cache</a> is a full page caching plugin for WordPress that will speed up your website.</p>\n<p>This is a security release and any users of the plugin should update as soon as possible. This release and the last 2 (1.3 and 1.3.1) address the following issues:</p>\n<ul>\n<li> A visitor to a website using WP Super Cache can remotely execute code by way of a specially crafted comment left on the blog. The comment may even be moderated and it will still cause a problem. If you allow untrusted user content on your site through other means it should also be filtered in a similar way. See the function <code>no_mfunc_in_comments</code> for the existing filter. This will be mitigated in the next release by using a security keyword in the mfunc/mclude/dynamic-cached-content tag.</li>\n<li> An XSS vulnerability was found in the plugins settings page of the plugin. This has been fixed as well.</li>\n</ul>\n<p>The dynamic cached content features are now disabled by default as they should really have been a long time ago. This was announced in the Upgrade Notice of the previous release so hopefully site owners will be prepared for it. If you depend on this feature you can enable it again on the Advanced Settings page. I would encourage you to use Javascript instead for any dynamic features or use a short cache expiration time.</p>\n<p>Support for the <a href=\"http://jetpack.me/support/mobile-theme/\">mobile theme in Jetpack</a> has been added in this release by way of a helper plugin. If you enable this feature in Jetpack you should visit the Plugins tab of WP Super Cache and enable the Jetpack plugin there. Caching will be changed to PHP mode, and mobile device support enabled but you may have to manually remove the WP Super Cache mod_rewrite rules in the .htaccess at the root of your site. </p>\n<p>I would like to thank WordPress.org user <a href=\"http://wordpress.org/support/topic/pwn3d?replies=19\">kisscsaby</a> for finding the mfunc problem in WP Super Cache and W3 Total Cache and <a href=\"http://blog.futtta.be/2013/04/18/wp-caching-plugin-vulnerability-debrief/\">Frank Goossens</a> for his help fixing it.</p>\n<p><strong>Edit:</strong> I should have stated this above. I did not know about the issue with mfunc until 3 weeks after kisscsaby posted it to a public forum. I don’t read every post on the support forum unfortunately and the user <a href=\"http://wordpress.org/support/topic/pwn3d?replies=19#post-4078203\">did not email me</a>. I released version 1.3 within a day of hearing about the problem. Unfortunately the XSS vulnerability became known 24 hours after that requiring another release within 36 hours of the previous one. When it became clear that mfunc could be exploited still I released version 1.3.2</p>\n<p>I’m leaning towards removing the mfunc/mclude/dynamic-cached-content feature completely. It’s only used by a tiny minority of users (who will be inconvenienced, sorry) but it’s dangerous code to have in the plugin. </p>\n\n<p><strong>Related Posts</strong><ul><li> <a href=\"http://ocaoimh.ie/2008/10/24/wp-super-cache-084-the-garbage-collector/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.4, the garbage collector\">WP Super Cache 0.8.4, the garbage collector</a></li><li> <a href=\"http://ocaoimh.ie/2009/01/09/wp-super-cache-087/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.7\">WP Super Cache 0.8.7</a></li><li> <a href=\"http://ocaoimh.ie/2010/02/08/wp-super-cache-099/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.9.9\">WP Super Cache 0.9.9</a></li></ul></p><p><a href=\"http://ocaoimh.ie/2013/04/24/wp-super-cache-1-3-2/\">WP Super Cache 1.3.2</a> originally appeared on <a href=\"http://ocaoimh.ie\">Holy Shmoly!</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:\"Wed, 24 Apr 2013 21:35: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:7:\"Donncha\";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:50:\"Alex King: Capsule, The Developer’s Code Journal\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://alexking.org/?p=16534\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://alexking.org/blog/2013/04/24/capsule-the-developers-code-journal\";s: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:7127:\"<p>I’m very pleased today to announce the release of <a href=\"http://crowdfavorite.com/capsule/\">Capsule</a>, the developer’s code journal.</p>\n<p><img src=\"http://alexking.org/wp-content/uploads/2013/04/capsule-510x185.jpg\" alt=\"Capsule\" width=\"480\" height=\"174\" class=\"aligncenter size-medium-img wp-image-16575\" /></p>\n<p>Capsule replaces the scratch document you have open when you’re coding. Instead of throwing away those notes, code snippets, API responses, ad-hoc todo lists, and outlines, Capsule creates an archive of your development artifacts.</p>\n<p>Capsule is a free, Open Source (GPL) product. We chose to build it as a WordPress-based app. I’m <a href=\"http://wpengine.com/2013/03/alex-king-on-the-maturity-of-wordpress/\">on record</a> saying that WordPress isn’t a great general purpose app platform but it’s ideal for journaling apps; and I’m very pleased we were able to use it for Capsule.</p>\n<p><img src=\"http://alexking.org/wp-content/uploads/2013/04/tags-510x218.jpg\" alt=\"tags\" width=\"480\" height=\"205\" class=\"aligncenter size-medium-img wp-image-16573\" /></p>\n<p>With Capsule you’re using a web app, not managing a traditional WordPress website. You never need to go into the WordPress admin to manage your content – the code editor loads right in the front-end and you create and edit posts inline.</p>\n<blockquote><p>\n Metadata is a love note to the future.\n</p></blockquote>\n<p>You designate projects and add tags via simple @project and #hashtag syntax directly in the content. No fiddly checkbox selection or choosing from dropdown menus. It’s the freedom and simplicity of a text file with the future benefits of metadata.</p>\n<p><img src=\"http://alexking.org/wp-content/uploads/2013/04/filter-510x218.jpg\" alt=\"filter\" width=\"480\" height=\"205\" class=\"aligncenter size-medium-img wp-image-16571\" /></p>\n<p>Read on for more about how Capsule works and the hows and whys of various features (and how you can use Capsule Server as a collaboration hub). More of a “try it for yourself” person? Jump over to the <a href=\"http://demo.crowdfavorite.com/capsule/\">online demo</a> and try it out. Or you can <a href=\"http://crowdfavorite.com/capsule/\">download</a> it (or <a href=\"https://github.com/crowdfavorite/wp-capsule\">grab the code from GitHub</a>) and set it up for yourself. We created Capsule as a WordPress theme – simply <a href=\"http://codex.wordpress.org/Using_Themes\">install it as usual</a> and you’re set to go.</p>\n<hr />\n<p>The idea for Capsule started about a year ago when my friend and Crowd Favorite alumni <a href=\"https://twitter.com/gordonbrander\">Gordon</a> tweeted this out:</p>\n<blockquote class=\"twitter-tweet\" width=\"480\"><p>Keeping a dev diary has been really helpful.Start each day with a fresh .txt. Jot down TODOs, notes, decisions, things learned, as I go.</p>\n<p>— Gordon Brander (@gordonbrander) <a href=\"https://twitter.com/gordonbrander/status/189397714184835073\">April 9, 2012</a></p></blockquote>\n<p></p>\n<p>The idea of a code journal resonated with me immediately. I’ve been blogging for more than ten years here, and the act of journaling – of writing things down – definitely helps with introspection and to cement important lessons.</p>\n<p>At <a href=\"http://crowdfavorite.com\">Crowd Favorite</a> we believe in the craftsman approach to web development. We believe in constantly learning and sharing knowledge. The idea of a code journal seemed like an obvious and useful tool.</p>\n<p>Gordon talked about using text files, but I wasn’t sold on that implementation. I wanted a system that had the simplicity of using text files, but I also wanted to be able to add some structured data to make it easier to find my notes again later.</p>\n<p>I like thinking about how systems and apps can work and fit together. The more I thought about the idea of a code journal, the more I realized that the information I would be recording about what I was building would be useful information to share with my colleagues. Likewise, what they recorded during their development would be interesting and useful for me and other team members. And it just so happens that my team and I are pretty handy with this little Open Source system that’s designed for journaling…</p>\n<p>We brainstormed about how we’d want to use the system and firmed up a feature set. These included:</p>\n<ul>\n<li>must be incredibly low friction (it will be competing with using text files)</li>\n<li>no titles for entries (titles are friction)</li>\n<li>a good code (text) editor (after all, this is a developer code journal)</li>\n<li>ability to designate an entry as being part of a specific project</li>\n<li>ability to add tags (keywords) to entries</li>\n<li>ability to keep some entries private, but share appropriate entries with the rest of the team</li>\n</ul>\n<p>As a daily user of Capsule, I’m proud to say we’ve accomplished this goal and I’m very pleased with the smoothness of the user experience.</p>\n<p>While we are releasing version 1.0 today, we’ve had a functional version Capsule on our <a href=\"https://github.com/crowdfavorite\">GitHub</a> since early May of last year and I’ve been using it while we’ve been building it. As we’ve been implementing features, we’ve also tweaked the design and implementation based on our actual usage. It’s always handy to be your own use case.</p>\n<h2>Capsule Server: Use Capsule With Your Team</h2>\n<p>We’re actually releasing two products today, Capsule and <a href=\"http://crowdfavorite.com/capsule/#server\">Capsule Server</a>. Capsule is the code journal that each developer can set up for themselves. Capsule Server is a collaboration hub that can accept Capsule entries and make them available to other team members.</p>\n<p>I really like the way Capsule and Capsule Server interact. Developers can connect their Capsule install to as many Capsule Servers as they like. They can choose which entries get shared to which Capsule Servers, and which entries stay private – all of this with the same no-friction approach that makes it so easy to include useful metadata in Capsule entries.</p>\n<p>When you set up a Capsule Server, you define the projects for that Server. When you connect to a Capsule Server, you can chose how to map your local projects to the Capsule Server’s projects. Any entries for projects that are mapped to a Capsule Server are replicated to that Capsule Server whenever they are saved.</p>\n<p>Imagine that WordPress set up a Capsule Server for core development. Perhaps another for plugin development. I could connect to both of those, plus the Crowd Favorite Capsule Server. I would still be journaling in one place, with one tool, but I’d be sharing my notes with all the various folks I want to collaborate with.</p>\n<p>I think Capsule an excellent solution to a problem many of us don’t even know we have. I hope that it will become a valuable tool for you and your development team.</p>\n<p>Enjoy!</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, 24 Apr 2013 18:26: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: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: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:45:\"WordPress.tv: Reid Peifer: The Art of Quality\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18799\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.tv/2013/04/24/reid-peifer-the-art-of-quality/\";s: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:646:\"<div id=\"v-VnTA5jyA-1\" class=\"video-player\">\n</div>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18799/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18799/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18799&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/04/24/reid-peifer-the-art-of-quality/\"><img alt=\"Reid Peifer: The Art of Quality\" src=\"http://videos.videopress.com/VnTA5jyA/video-b2cb4e654f_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, 24 Apr 2013 15:56: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";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:70:\"Ping-O-Matic: Beyond Ping-O-Matic: Share & Get Social with 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:32:\"http://blog.pingomatic.com/?p=85\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"http://blog.pingomatic.com/2013/04/23/plugins/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3505:\"<p>If you use <a href=\"http://pingomatic.com/\" target=\"_blank\">Ping-O-Matic</a>, you’re interested in sharing your stuff with the rest of the world and driving as much traffic to your site as possible.</p>\n<p>You’ve pinged search engines, but what else can you do? If you’re all about sharing and traffic building, here’s a list of plugins to consider:</p>\n<p><strong><a href=\"http://wordpress.org/extend/plugins/jetpack/\" target=\"_blank\">Jetpack by WordPress.com</a>:</strong> An uber-plugin to supercharge your WordPress site with powerful features previously only available to WordPress.com users. Highlights for those interested in sharing and traffic-building:</p>\n<ul>\n<li><span>Email subscriptions for your blog’s posts and your post’s comments.<br />\n</span></li>\n<li>Social networking enabled comment system.</li>\n<li>Integration with and automatic posting to your favorite social networks including Twitter, Facebook, Tumblr, and LinkedIn.</li>\n<li>Your readers can easily share your posts via email or their favorite social networks. (Previously provided by the <a href=\"http://wordpress.org/extend/plugins/sharedaddy/\" rel=\"nofollow\">Sharedaddy</a> plugin.)</li>\n</ul>\n<p><strong><a href=\"http://wordpress.org/extend/plugins/wordpress-seo/\" target=\"_blank\">WordPress SEO by Yoast:</a> </strong>A plugin that helps you write better content and also takes care of all the technical optimization. The plugin assists with page analysis, meta and link elements, XML Sitemaps, RSS optmization, social integration, and more.</p>\n<p><strong><a href=\"http://wordpress.org/extend/plugins/google-analytics-for-wordpress/\" target=\"_blank\">Google Analytics for WordPress:</a> </strong>Track your site easily with lots of metadata: views per author and category, automatic tracking of outbound clicks and pageviews, and much more.</p>\n<p><strong><a href=\"http://wordpress.org/extend/plugins/wysija-newsletters/\" target=\"_blank\">Wysija Newsletters:</a></strong> Spread the word about your site with newsletters! Here, you can create newsletters, post notifications, and autoresponders; as well as manage your subscribers.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/buddypress/\" target=\"_blank\"><strong>BuddyPress: </strong></a>With this plugin, users can create profiles, post messages, connect with others in groups, and more. You can build a community for a company, school, sports team, or other niche community.</p>\n<p><strong><a href=\"http://wordpress.org/extend/plugins/sociable/\" target=\"_blank\">Sociable:</a></strong> A plugin for ratings systems, as well as sharing to numerous sites, including Pinterest, Tumblr, Google+, LinkedIn, and Inbound.org.</p>\n<p><strong><a href=\"http://wordpress.org/extend/plugins/add-link-to-facebook/\" target=\"_blank\">Add Link to Facebook:</a> </strong>Got a great Facebook following? Take advantage of this by adding links to posts or pages that are published to your Facebook wall.</p>\n<p>To explore more plugins for your site, browse the <a href=\"http://wordpress.org/extend/plugins/\" target=\"_blank\">WordPress.org Plugin Directory</a>.</p>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/pingomatic.wordpress.com/85/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/pingomatic.wordpress.com/85/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=blog.pingomatic.com&blog=68432&post=85&subd=pingomatic&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:\"Tue, 23 Apr 2013 19:42: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:20:\"Cheri Lucas Rowlands\";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:41:\"Dev Blog: WordPress 10th Anniversary Tees\";s:7:\"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=2561\";s:7:\"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/2013/04/wordpress-10th-anniversary-tees/\";s: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:1881:\"<p><img class=\"alignleft wp-image-2562\" alt=\"WordPress 10th Anniversary logo\" src=\"http://wordpress.org/news/files/2013/04/wp10logo.jpg\" width=\"120\" height=\"119\" />In honor of the upcoming <a title=\"Save the Date: May 27\" href=\"http://wordpress.org/news/2013/04/save-the-date-may-27/\">10th anniversary celebrations</a>, we’ve put a special<a href=\"http://hellomerch.com/collections/wordpress/products/wordpress-10th-anniversary-t-shirt\"> 10th anniversary tshirt in the swag store</a> at cost — $10 per shirt plus shipping. They’ll be on sale at this price until the anniversary on May 27, and they’ll start shipping out the week of April 29.</p>\n<p>Some people who are planning parties or who organize meetups are already talking about doing group orders to save on shipping costs, which is a great idea — just make sure you allow enough shipping time. If you’re not sure if the tees could make it to you in time on your side of the world, use the contact options at the bottom of the store page to ask about shipping times. If they can’t reach you in time and you want to have a local printer do some for your group, we’ll post the vector file on the wp10 site within the next week (and this post will get updated accordingly). </p>\n<p>The shirts are available in black or silvery gray. Why silvery gray? Because of trivia: the traditional gift for 10th anniversaries is tin or aluminum. <img src=\"http://wordpress.org/news/wp-includes/images/smilies/icon_smile.gif\" alt=\":)\" class=\"wp-smiley\" /> </p>\n<p><a href=\"http://hellomerch.com/collections/wordpress/products/wordpress-10th-anniversary-t-shirt\"><img class=\"aligncenter size-full wp-image-2563\" alt=\"Silver and Black tshirts with WordPress 10th anniversary logo on them\" src=\"http://wordpress.org/news/files/2013/04/wp10shirtgrayblack.jpg\" width=\"643\" height=\"333\" /></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, 23 Apr 2013 16:40: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:8:\"Jen Mylo\";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:39:\"Joseph: WordPress Salt Lake City Meetup\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://josephscott.org/?p=7554\";s:7:\"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/2013/04/wordpress-salt-lake-city-meetup/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:412:\"<p>The <a href=\"http://www.meetup.com/SLC-WordPress-Meetup-Group/\">Salt Lake City WordPress Meetup</a> is <a href=\"http://wpslc.com/blog/2013/04/22/location-change/\">moving locations, back to Draper</a>.</p>\n<p>The next meeting is tomorrow night ( April 24th ), where <a href=\"http://www.meetup.com/SLC-WordPress-Meetup-Group/events/115594672/\">Matt Jones will be talking about e-commerce with WordPress</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, 23 Apr 2013 13:49: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: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: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:65:\"Lorelle on WP: The Brute-Force Password Attack on WordPress 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:36:\"http://lorelle.wordpress.com/?p=8557\";s:7:\"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://lorelle.wordpress.com/2013/04/22/the-brute-force-password-attack-on-wordpress-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:469:\"My mother emailed me and asked if WordPress was under attack. With all the news of last week’s attack of the Boston Marathon, the attacks on WordPress and other PHP-based web publishing sites was low on the priority list for myself and others, but this is something to take seriously. As we get back to [...]<img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=lorelle.wordpress.com&blog=72&post=8557&subd=lorelle&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:\"Tue, 23 Apr 2013 04: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:17:\"Lorelle VanFossen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:\"Matt: Jawbone UP vs Basis\";s:7:\"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=42347\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://ma.tt/2013/04/jawbone-up-vs-basis/\";s: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:5623:\"<p><img class=\"size-thumbnail wp-image-42349 alignright\" alt=\"Jawbone UP\" src=\"http://i2.wp.com/s.ma.tt/files/2013/04/jawbone-up.jpg?resize=195%2C139\" /> I’ve always been into personal analytics. From Wakemate to the Nike Fuelband I’ve tried pretty much every device that’s come on the market to help you become more self-aware of your activities, and hopefully improve them as well.</p>\n<p>Lately I’ve settled on two that I think are really high quality: the <a href=\"https://jawbone.com/up\">Jawbone UP</a> and the <a href=\"http://www.mybasis.com/\">Basis watch</a>. I would recommend either above the Nike Fuelband or Fitbit, but let me share some brief thoughts about my experiences with each:</p>\n<p>The UP is beautiful — it’s easy to wear with pretty much any outfit, even with formal wear I find I can move it up my arm a little bit inside my sleeve above my shirt cuff thanks to the flexible nature of the band. The social app they have for it is cool, though it can be a little weird to see your teammate’s minute-by-minute sleeping habits (“Hey! I noticed you were up between 3:32 and 3:50 AM last night. How ’bout them Giants?”).</p>\n<div id=\"attachment_42350\" class=\"wp-caption alignleft\"><a href=\"http://i1.wp.com/s.ma.tt/files/2013/04/IMG_6138.png\"><img class=\" wp-image-42350 \" alt=\"I\'m very proud of my sleep.\" src=\"http://i1.wp.com/s.ma.tt/files/2013/04/IMG_6138.png?resize=150%2C266\" /></a><p class=\"wp-caption-text\">I’m very proud of my sleep.</p></div>\n<p>The battery life is over a week so you never have to think about it, but you do have to carry around a proprietary connector for it which I keep losing leaving me (like right now) with an uncharged and useless device. To sync you plug the band into your phone’s headphone port and the sync takes a few seconds, it’s a fun process I do usually first thing in the morning to see how I slept the night before and it’s also fun to demo to friends. The first one I had was in their “mint green” color and I ended up wearing it out — it started to look dirty and I broke it where the headphone jack comes out making it difficult to charge and sync. That said, I was pretty rough on it. My new one is blue and I like it much better. My only big complaint about how the whole thing works is it doesn’t detect when you go to sleep, you have to press and hold the button on the end to put it from wake to sleep mode, which I would frequently forget to do. I really like the idea of the smart alarm and power nap features even though I never used them.</p>\n<p><img class=\"alignright size-thumbnail wp-image-42348\" alt=\"Basis B1 Band\" src=\"http://i1.wp.com/s.ma.tt/files/2013/04/b1-basis-band.jpg?resize=195%2C139\" />The Basis is a bit clunky and retro looking, but functionality-wise it provides <a href=\"http://www.mybasis.com/basis-healthy-habits-technology/\">some really cool data</a>: it tracks your heart rate, skin temperature, perspiration level, steps, and sleep. It detects automatically when you’re asleep, no buttons to push. The data is presented in a really cool web app that lets you compare some of the data points and that I learned cool things from, like my heart rate jumps about 20 beats per minute when I wake up, and I’m most warm about two thirds into my sleep cycle. There don’t appear any social features that I’ve seen in the software, though its habit formation tracking seems pretty slick. The way the “buttons” work on the device is pretty cool, the silver dots in the corners are touch-sensitive. There’s a button on the side that I haven’t figured out what it does yet. Syncing and charging is much worse than the UP — it’s got an even clunkier proprietary USB thing that both syncs to your computer and charges, but because the display can show you how you’re doing as you go throughout the day I don’t feel the need to synchronize it as often. The heart rate tracking is by far my favorite feature. It’s comfortable to wear, but doesn’t disappear like the UP. Finally, as an added bonus, it tells the time. (Surprising useful.) If it somehow merged with <a href=\"http://getpebble.com/\">the Pebble</a> I’d be in geek heaven.</p>\n<p>If I had to pick between the two I’d just use the Basis. The awkwardness of the device is outweighed by the richness of the data it provides. For right now I’m not choosing: I wear one on each wrist and compare the data. (It’s always within a few % of each other for things they both do.) If I were hiking in the woods for a week I’d probably just take the UP as its battery would last the entire time. It’s really illustrated for me what a silo each of these systems are, they don’t talk to each other at all and it appears unlikely they ever will.</p>\n<p>Long-term I think we really need an open source package you can run on your own servers that can ingest the data from all of these services, say from back when I used to use a <a href=\"http://wakemate.com/\">Wakemate</a> sleep tracking to today’s <a href=\"http://www.fitbit.com/aria\">Fitbit Aria</a> scale, the meals I track in the UP app with my Basis heart rate data and <a href=\"http://runkeeper.com/\">Runkeeper</a> and <a href=\"http://www.hundredpushups.com/\">Hundred Pushup</a> logs, and provide you with a single data store for all the personal analytics you generate across various services. I think there’s going to be a lot of competition in this space in the next few years.</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, 22 Apr 2013 17:05: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: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:60:\"WP Android: Version 2.3 is Here: New User Interface 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"http://android.wordpress.org/?p=759\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"http://android.wordpress.org/2013/04/17/2-3-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6310:\"<p><a href=\"http://wpandroid.files.wordpress.com/2013/04/wordpress-for-android-version-2-3-devices2.jpg\"><img src=\"http://wpandroid.files.wordpress.com/2013/04/wordpress-for-android-version-2-3-devices2.jpg?w=620&h=454\" alt=\"Version 2.3 of WordPress for Android: menu drawer and action bar\" width=\"620\" height=\"454\" class=\"alignnone size-large wp-image-816\" /></a></p>\n<p>Today, we’ve jubilantly released version 2.3 of <a href=\"http://android.wordpress.org/\">WordPress for Android</a> to <a href=\"https://play.google.com/store/apps/details?id=org.wordpress.android&hl=en\">Google Play</a>. After updating, you’ll see right away that this release includes very exciting updates to the user interface. Let’s dive in to what’s new!</p>\n<h3>Action Bar</h3>\n<p><a href=\"http://wpandroid.files.wordpress.com/2013/04/wordpress-for-android-version-2-3-action-bar-on-nexus-7.jpg\"><img src=\"http://wpandroid.files.wordpress.com/2013/04/wordpress-for-android-version-2-3-action-bar-on-nexus-7.jpg?w=620&h=295\" alt=\"Version 2.3 of WordPress for Android: action bar on a Nexus 7\" width=\"620\" height=\"295\" class=\"alignnone size-large wp-image-819\" /></a><br />\nYou’ll notice a fresh, new look. We’ve taken into account Android’s “Holo” style guidelines and implemented the Action Bar interface throughout the app. If you’ve used any other apps designed for Android 4.0 or higher, you’ll feel right at home with the new user interface. Your Action Bar provides easy access to common actions such as creating a new post, refreshing, and sharing to other apps.</p>\n<p>We also couldn’t resist making the Action Bar in WordPress blue. <img src=\"http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif\" alt=\";)\" class=\"wp-smiley\" /> </p>\n<h3>Menu Drawer</h3>\n<p><a href=\"http://wpandroid.files.wordpress.com/2013/04/wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-update.jpg\"><img src=\"http://wpandroid.files.wordpress.com/2013/04/wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-update.jpg?w=242&h=491\" alt=\"Version 2.3 of WordPress for Android: menu drawer on Samsung Galaxy S3\" width=\"242\" height=\"491\" class=\"alignright size-medium wp-image-822\" /></a></p>\n<p>The older-style <a href=\"http://android.wordpress.org/2011/12/19/version-2-0-android-blogging-re-imagined/\">dashboard</a> user interface has been replaced with a Menu Drawer for quick and easy navigation to other areas of the app from wherever you are. You’ll find all of the same actions the dashboard had, but with the addition of some nifty new ones.</p>\n<p>To access the menu, simply tap the arrow next to the WordPress logo – in the top-left corner of the app — or swipe from the left side of the screen. If you’re on a large tablet device, the menu will always be visible, which takes advantage of the extra screen space. If you have multiple blogs in the app, you’ll see a drop-down list at the top of your Menu Drawer that you can access to quickly switch to another blog to work with, right in the app.</p>\n<p>When you leave the app, it will remember the last selection you made in the Menu Drawer so when you return, you can pick up where you left off.</p>\n<h3>Other new features</h3>\n<p>In addition to the revamped user interface, you’ll find these new features as well:</p>\n<ul>\n<li><span><strong>View Site option</strong>. A <em>View Site</em> option has been added to the Menu Drawer so you can view your blogs from within the app.</span></li>\n<li><strong>Admin area access.</strong> You can access the wp-admin areas of your WordPress.com blogs by loading the <em>Dashboard</em> option in the Menu Drawer.</li>\n<li><strong>Faster loading.</strong> The WordPress.com Reader now takes advantage of caching for faster loading.</li>\n<li><strong>Updated look and feel.</strong> Settings have been converted to use the Android standard for preferences, giving them the Holo look and feel on supported devices. Many views have been updated to the Holo look and feel as well, including the post editor and all list views.</li>\n<li><strong>Improved post editor experience.</strong> The post editor now has an expandable content area, which makes it much easier to navigate around the post content when you’re editing.</li>\n<li><strong>Improved image uploading.</strong> If a post has an image but fails to upload the image, the post will be saved as a draft first — instead of published — so the image upload can be corrected.</li>\n</ul>\n<h3>Thanks — and what’s next</h3>\n<p>We thank the developers who worked so hard on this release – <a href=\"http://wordpress.org/support/profile/mrroundhill\">mrroundhill</a>, <a href=\"http://wordpress.org/support/profile/willnorris\">willnorris</a>, <a href=\"http://wordpress.org/support/profile/isaackeyet\">isaackeyet</a>, <a href=\"http://wordpress.org/support/profile/daniloercoli\">daniloercoli</a> and <a href=\"http://wordpress.org/support/profile/aerych\">aerych</a> – as well as the beta testers who tried out the app over at the <a href=\"http://dev.android.wordpress.org\">Developer Blog</a>. Great work, all!</p>\n<p>We also thank <a href=\"http://jakewharton.com/\">Jake Wharton</a> and <a href=\"http://simonvt.net/\">Simon Vig Therkildsen</a> for creating the ActionBarSherlock and android-menudrawer libraries that enabled us to use the Action Bar and Menu Drawer on older Android devices. Good stuff!</p>\n<p>What’s next? We’re looking at adding notifications to the app so you can keep up with what’s happening on your WordPress sites while mobile and on the go.</p>\n<p>What would you like to see added to the app?</p>\n<h3>Want to contribute?</h3>\n<p>Don’t forget that WordPress for Android is an open source project. Want to get involved? Check out <a href=\"http://make.wordpress.org/mobile\">make.wordpress.org/mobile</a> to get started.</p>\n<p>Finally, we’re always excited to get feedback on the app. Please feel free to leave a comment here or send a tweet to <a href=\"http://twitter.com/wpandroid\">@WPAndroid</a>.</p>\n<br /> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=android.wordpress.org&blog=9426921&post=759&subd=wpandroid&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:\"Wed, 17 Apr 2013 19:57:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"Dan\";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:26:\"Alex King: Scared Straight\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://alexking.org/?p=16510\";s:7:\"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://alexking.org/blog/2013/04/17/scared-straight\";s: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:1207:\".threads-post-notice {\n background: #e8e8e8;\n padding: 10px;\n}\n.threads-post-notice a {\n font-weight: bold;\n}\n\n<p>I woke up to a bit of a scare when some of my alexking.org Gmail accounts were unable to log in to Gmail. I was afraid the accounts had been compromised and the passwords changed. I had secure passwords, but had been lazy about turning on 2-factor authentication for several of them – that’s all fixed now.</p>\n<p>As it turned out, the hiccup ended up being due to a Gmail disruption.</p>\n<p>I’ve also turned on 2-factor authentication for this site using <a href=\"http://wordpress.org/extend/plugins/google-authenticator/\">this plugin</a> (make sure to enable the app key if you use iOS or Android apps to connect to your site). Note that the Social logins for commenting still work without 2-factor authentication.</p>\n<p>I’d recommend taking similar steps for your sites. Waking up to an “uh-oh” feeling is no fun at all.</p>\n<p class=\"threads-post-notice\">This post is part of the thread: <a href=\"http://alexking.org/blog/thread/passwords\">Passwords</a> – an ongoing story on this site. View the thread timeline for more context on this 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:\"Wed, 17 Apr 2013 13:56:41 +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: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:24:\"Matt: Dave Keeps Working\";s:7:\"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=42344\";s:7:\"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/2013/04/dave-keeps-working/\";s: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:617:\"<p><a href=\"http://scripting.com/\">Dave Winer</a> tweeted this on Saturday:</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p>I have a little spare time today so I decided to start on River3. It’ll be much much smaller and more focused than River2.</p>\n<p>— Dave Winer ? (@davewiner) <a href=\"https://twitter.com/davewiner/status/323063982061649922\">April 13, 2013</a></p></blockquote>\n<p></p>\n<p>One of the things I love and admire about him is that many, many years after he doesn’t have to anymore he’s still learning, hacking, and taking free time on a weeknd to make something new.</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, 16 Apr 2013 00:57:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:35:\"bbPress: bbPress 2.3 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:28:\"http://bbpress.org/?p=133122\";s:7:\"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://bbpress.org/blog/2013/04/bbpress-2-3-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:40098:\"<p>Out now is <a href=\"http://wordpress.org/extend/plugins/bbpress/\">bbPress 2.3</a>!</p>\n<p>It comes with over 150 individual fixes and enhancements since 2.2, and is a safe update to any site running bbPress 2.0 or higher.</p>\n<p>Here are some notable changes in 2.3:</p>\n<ul>\n<li>WordPress 3.6 tested</li>\n<li>Forum-wide Search!</li>\n<li>Performance and caching improvements</li>\n<li>Vanilla, Mingle, and SimplePress importers</li>\n<li>Improved to importer bbcode handling</li>\n<li>Improved theme compatibility with new template-stack API</li>\n<li>Improved BuddyPress Group Forum, Activity Streams, and Profiles integration</li>\n<li>Improved Roles and Capabilities</li>\n<li>Improved code documentation</li>\n<li>Improved RTL and fixed missing translations</li>\n<li>Improved sub-action execution order to fix user/login issues</li>\n<li>Added Statistics shortcode</li>\n</ul>\n<p>Major props to the following individuals for helping make 2.3 a success: alexvorn2, alex-ye, anointed, boonebgorges, cnorris23, daveshine, DJPaul, duck_, ericlewis, fartlek, jaredatch, jmdodd, Kaspace, mamaduka, markmcwilliams, mercime, mesayre, michelwppi, mouratidis, MZAWeb, nacin, netweb, Omicron7, pavelevap, ryangannon, scribu, schrepel, sorich87, tungdo, vibol, Viper007Bond, westi, and wonderboymusic. (If you’re missing, ping me!)</p>\n<p><a href=\"http://wordpress.org/extend/plugins/bbpress/\">Go download bbPress 2.3!</a><br />\n<span id=\"more-133122\"></span><br />\n\n<div id=\"bbpress-forums\">\n\n \n \n \n \n \n\n<div class=\"bbp-pagination\">\n <div class=\"bbp-pagination-count\">\n\n Viewing 25 posts - 1 through 25 (of 80 total)\n </div>\n\n <div class=\"bbp-pagination-links\">\n\n <span class=\"page-numbers current\">1</span>\n<a class=\"page-numbers\" href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/page/2/\">2</a>\n<span class=\"page-numbers dots\">…</span>\n<a class=\"page-numbers\" href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/page/4/\">4</a>\n<a class=\"next page-numbers\" href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/page/2/\">→</a>\n </div>\n</div>\n\n\n \n<ul id=\"topic-133130-replies\" class=\"forums bbp-replies\">\n\n <li class=\"bbp-body\">\n\n \n \n<div id=\"post-133130\" class=\"post-133130 topic type-topic status-publish hentry odd bbp-parent-forum-652 bbp-parent-topic-133130 bbp-reply-position-1 user-id-395440 topic-author\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/johnjamesjacoby/\" title=\"View John James Jacoby\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/81ec16063d89b162d55efe72165c105f?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/johnjamesjacoby/\" title=\"View John James Jacoby\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">John James Jacoby</a><br /><div class=\"bbp-author-role\">Keymaster</div>\n <p class=\"bbp-user-nicename\">@johnjamesjacoby</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133130\" title=\"#133130\" class=\"bbp-reply-permalink\">2 weeks, 4 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>Drop feedback about the <a href=\"http://bbpress.org/blog/2013/04/bbpress-2-3-now-available/\" rel=\"nofollow\">2.3 release</a> here!</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133130 -->\n\n \n \n<div id=\"post-133137\" class=\"post-133137 reply type-reply status-publish hentry even bbp-parent-forum-652 bbp-parent-topic-133130 bbp-reply-position-2 user-id-46383\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/netweb/\" title=\"View Stephen Edgar\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://1.gravatar.com/avatar/97e1620b501da675315ba7cfb740e80f?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/netweb/\" title=\"View Stephen Edgar\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">Stephen Edgar</a><br /><div class=\"bbp-author-role\">Moderator</div>\n <p class=\"bbp-user-nicename\">@netweb</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133137\" title=\"#133137\" class=\"bbp-reply-permalink\">2 weeks, 4 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p> Congrats and Thanks to all who helped get bbPress 2.3 out the door… Yay <img src=\"http://bbpress.org/wordpress/wp-includes/images/smilies/icon_smile.gif\" alt=\":)\" class=\"wp-smiley\" /> </p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133137 -->\n\n \n \n<div id=\"post-133142\" class=\"post-133142 reply type-reply status-publish hentry odd bbp-parent-forum-652 bbp-parent-topic-133130 bbp-reply-position-3 user-id-12059305\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/realhood/\" title=\"View realhood\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://1.gravatar.com/avatar/bff825af877a4903afb69f81850130ed?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/realhood/\" title=\"View realhood\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">realhood</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@realhood</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133142\" title=\"#133142\" class=\"bbp-reply-permalink\">2 weeks, 4 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p> <img src=\"http://bbpress.org/wordpress/wp-includes/images/smilies/icon_smile.gif\" alt=\":)\" class=\"wp-smiley\" /> </p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133142 -->\n\n \n \n<div id=\"post-133143\" class=\"post-133143 reply type-reply status-publish hentry even bbp-parent-forum-652 bbp-parent-topic-133130 bbp-reply-position-4 user-id-12059482\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/premitheme/\" title=\"View premitheme\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://1.gravatar.com/avatar/369776c75745ad28e296c07052932bd6?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/premitheme/\" title=\"View premitheme\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">premitheme</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@premitheme</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133143\" title=\"#133143\" class=\"bbp-reply-permalink\">2 weeks, 4 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>I have a problem! Tested the latest official 2.3 version (and rc1) and cannot post topics or replies and always get “ERROR: Are you sure you wanted to do that?”. Creating forums is OK.</p>\n<p>This happened on a fresh localhost installation (MAMP) of WP 3.5.1 and bbp 2.3 using TwentyTwelve theme without any other plugins or themes installed. Attached a screenshot …</p>\n<p><img src=\"http://cl.ly/image/3j0D3v381A07/Screen%20Shot%202013-04-15%20at%206.52.15%20AM.png\" alt=\"Error when posting topic or reply on bbPress 2.3\" /></p>\n<p>The search function is great BTW, well done! Just hope to find a fix for the mentioned problem as it makes 2.3 useless.</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133143 -->\n\n \n \n<div id=\"post-133144\" class=\"post-133144 reply type-reply status-publish hentry odd bbp-parent-forum-652 bbp-parent-topic-133130 bbp-reply-position-5 user-id-90958\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/themattman/\" title=\"View themattman\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/4549e36204764aa9f90b61a077f8c134?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/themattman/\" title=\"View themattman\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">themattman</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@themattman</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133144\" title=\"#133144\" class=\"bbp-reply-permalink\">2 weeks, 4 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>I’m getting errors on converting vBulletin to bbPress where it won’t convert tags. Once I “repair”, it says that it fails on converting users, as well as no replies have converted.</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133144 -->\n\n \n \n<div id=\"post-133147\" class=\"post-133147 reply type-reply status-publish hentry even bbp-parent-forum-652 bbp-parent-topic-133130 bbp-reply-position-6 user-id-5941287\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/alex-ye/\" title=\"View Nashwan Doaqan\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/eba70909d1752812495149883c41c86c?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/alex-ye/\" title=\"View Nashwan Doaqan\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">Nashwan Doaqan</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@alex-ye</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133147\" title=\"#133147\" class=\"bbp-reply-permalink\">2 weeks, 4 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p><strong>Congratulations!</strong> I used the 2.3 version since a while and it’s a masterpiece <img src=\"http://bbpress.org/wordpress/wp-includes/images/smilies/icon_smile.gif\" alt=\":)\" class=\"wp-smiley\" /><br />\nLooking forward to 2.4 …</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133147 -->\n\n \n \n<div id=\"post-133150\" class=\"post-133150 reply type-reply status-publish hentry odd bbp-parent-forum-652 bbp-parent-topic-133130 bbp-reply-position-7 user-id-11423989\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/alexiousrahl/\" title=\"View AlexiousRahl\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/e699fde1f25ef73e6afba798d423c131?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/alexiousrahl/\" title=\"View AlexiousRahl\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">AlexiousRahl</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@alexiousrahl</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133150\" title=\"#133150\" class=\"bbp-reply-permalink\">2 weeks, 4 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>Hello and thanks for the help!</p>\n<p>Two questions for a noob, though: how to enable the search? Also, where is the statistics shortcode? I can’t find it here. <a href=\"http://codex.bbpress.org/shortcodes/\" rel=\"nofollow\">http://codex.bbpress.org/shortcodes/</a></p>\n<p>Thanks again!</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133150 -->\n\n \n \n<div id=\"post-133151\" class=\"post-133151 reply type-reply status-publish hentry even bbp-parent-forum-652 bbp-parent-topic-133130 bbp-reply-position-8 user-id-1434604\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/sadr/\" title=\"View Erlend Sogge Heggen\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/69fda0df8b4878fb6a18deffa972d26a?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/sadr/\" title=\"View Erlend Sogge Heggen\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">Erlend Sogge Heggen</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@sadr</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133151\" title=\"#133151\" class=\"bbp-reply-permalink\">2 weeks, 4 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>Thanks so much! Seems to have updated without a hitch (well, see below). Tested the forum search right away and it appears to be working fine, although I’m still aching for those search results to be presented as excerpts.</p>\n<p>I did also find that I had to resave permalinks in order to see posts again, or else I would end up with a “topic not found”. That gave me quite the scare!</p>\n<p>We’ll be checking out those improvements to code posting now.</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133151 -->\n\n \n \n<div id=\"post-133154\" class=\"post-133154 reply type-reply status-publish hentry odd bbp-parent-forum-652 bbp-parent-topic-133130 bbp-reply-position-9 user-id-12059305\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/realhood/\" title=\"View realhood\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://1.gravatar.com/avatar/bff825af877a4903afb69f81850130ed?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/realhood/\" title=\"View realhood\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">realhood</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@realhood</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133154\" title=\"#133154\" class=\"bbp-reply-permalink\">2 weeks, 4 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>why my search function can’t work<br />\nwhen I use it,it always jump to the home page.<br />\n(sorry my bad english)<br />\n<a href=\"http://ww3.sinaimg.cn/large/7248c6e2gw1e3qf6z010qj.jpg\" rel=\"nofollow\"><img alt=\"\" src=\"http://ww3.sinaimg.cn/large/7248c6e2gw1e3qf6z010qj.jpg\" /></a></p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133154 -->\n\n \n \n<div id=\"post-133155\" class=\"post-133155 reply type-reply status-publish hentry even bbp-parent-forum-652 bbp-parent-topic-133130 bbp-reply-position-10 user-id-9727828\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/docchewbacca/\" title=\"View docchewbacca\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/0a49618c0de013ad5fe17fc9aae15c33?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/docchewbacca/\" title=\"View docchewbacca\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">docchewbacca</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@docchewbacca</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133155\" title=\"#133155\" class=\"bbp-reply-permalink\">2 weeks, 4 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>Thank you for this update.</p>\n<p>The search function is welcome.</p>\n<p>From what I understand, the ability to set individual access rights to individual forums (<a href=\"http://bbpress.org/forums/topic/lockassign-specific-forums-to-specific-members-only/\" rel=\"nofollow\">discussed here</a>) has not been added with 2.3. Any idea if this will actually come in a future release ? I understood it was not an easy feature, but since this is something I’m waiting to expand the use of forums on my site, I’d like to know if bbPress will include it in a not-too-far future.</p>\n<p>Thanks.</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133155 -->\n\n \n \n<div id=\"post-133156\" class=\"post-133156 reply type-reply status-publish hentry odd bbp-parent-forum-652 bbp-parent-topic-133130 bbp-reply-position-11 user-id-7052986\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/hlwinkler/\" title=\"View hlwinkler\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/0c52bebca619255ba06899a68a2ceb23?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/hlwinkler/\" title=\"View hlwinkler\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">hlwinkler</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@hlwinkler</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133156\" title=\"#133156\" class=\"bbp-reply-permalink\">2 weeks, 4 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>Hi,</p>\n<p>The search bar only appears on the page with the /forums/ slug and it doesn’t return any results for strings known to have hundreds of results. Here are my search results for the string “openears” on my forum about the framework OpenEars:</p>\n<p><img src=\"http://www.politepix.com/wp-content/uploads/search_results.png\" alt=\"Search Results\" /></p>\n<p>This is on a site with a Woo theme and WooCommerce FWIW.</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133156 -->\n\n \n \n<div id=\"post-133163\" class=\"post-133163 reply type-reply status-publish hentry even bbp-parent-forum-652 bbp-parent-topic-133130 bbp-reply-position-12 user-id-16750\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/probablynot/\" title=\"View probablynot\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://1.gravatar.com/avatar/9eaec43ad09ddc2b12e89a767db57ddb?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/probablynot/\" title=\"View probablynot\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">probablynot</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@probablynot</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133163\" title=\"#133163\" class=\"bbp-reply-permalink\">2 weeks, 4 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>One, I would like to be able to turn off the search. Just hide it without having to muck around with making a theme for bbPress.</p>\n<p>Second, since upgrading, in the Admin area, I can no longer do anything for the forums. The menu over on the left side has no items under the Forums, Topics or Replies headings.</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133163 -->\n\n \n \n<div id=\"post-133164\" class=\"post-133164 reply type-reply status-publish hentry odd bbp-parent-forum-652 bbp-parent-topic-133130 bbp-reply-position-13 user-id-12017039\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/wildomains/\" title=\"View wildomains\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/e54c674439fc6e882f4faaae0c2d98b4?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/wildomains/\" title=\"View wildomains\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">wildomains</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@wildomains</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133164\" title=\"#133164\" class=\"bbp-reply-permalink\">2 weeks, 4 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>After the update I couldn’t view topic content on my site but could see it when logged into the admin part for editing. Also, I had to make each topic ‘sticky’ to see it on the forum. I removed the plugin ‘bbPress moderation’ and it was OK after that. This means that I can’t use the moderation plugin so anyone can post a reply. I want to be able to moderate each reply. Is there a solution?</p>\n<p>Thanks</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133164 -->\n\n \n \n<div id=\"post-133168\" class=\"post-133168 reply type-reply status-publish hentry even bbp-parent-forum-652 bbp-parent-topic-133130 bbp-reply-position-14 user-id-7448447\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/jezza101/\" title=\"View jezza101\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/8c5be76b3c352d2f102a70b49b0585c3?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/jezza101/\" title=\"View jezza101\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">jezza101</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@jezza101</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133168\" title=\"#133168\" class=\"bbp-reply-permalink\">2 weeks, 4 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>Great, thanks for the new release. Always exciting to see new bbpress updates <img src=\"http://bbpress.org/wordpress/wp-includes/images/smilies/icon_smile.gif\" alt=\":)\" class=\"wp-smiley\" /> ! Couple of comments from me.</p>\n<p><strong>Search</strong><br />\nI’ve traditionally used Google search to search across my whole site, is there an easy way to switch the new form off? It appears to be forced upon the main forum list page.</p>\n<p>It is also not looking great on my sites main forum page, what’s the easiest way to style this, what can I add to my CSS file to change the look? <a href=\"http://www.nxtab.co.uk/forum/\" rel=\"nofollow\">See here</a>.</p>\n<p><strong>Stats</strong><br />\nFor those looking, the Stats shortcode is <strong>[bbp-stats]</strong>, there is also a widget. <a href=\"http://bbpress.trac.wordpress.org/ticket/2052\" rel=\"nofollow\">http://bbpress.trac.wordpress.org/ticket/2052</a></p>\n<p>Is it possible to style the output?<br />\nCan I control which stats are shown? For example “empty tags” isn’t something I really want to boast about on my forum!</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133168 -->\n\n \n \n<div id=\"post-133169\" class=\"post-133169 reply type-reply status-publish hentry odd bbp-parent-forum-652 bbp-parent-topic-133130 bbp-reply-position-15 user-id-5955463\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/trip62/\" title=\"View trip62\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://1.gravatar.com/avatar/76c211d72f5a0630e499818c30baee6f?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/trip62/\" title=\"View trip62\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">trip62</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@trip62</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133169\" title=\"#133169\" class=\"bbp-reply-permalink\">2 weeks, 4 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>Like <a href=\"http://bbpress.org/forums/profile/realhood/\" rel=\"nofollow\">@realhood</a>, my search box always jumps back to the homepage when you query anything.</p>\n<p>What’s up with that?</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133169 -->\n\n \n \n<div id=\"post-133170\" class=\"post-133170 reply type-reply status-publish hentry even bbp-parent-forum-652 bbp-parent-topic-133130 bbp-reply-position-16 user-id-374713\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/dpmcalister/\" title=\"View dpmcalister\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/628860eb170acfba43f588cad368baf6?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/dpmcalister/\" title=\"View dpmcalister\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">dpmcalister</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@dpmcalister</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133170\" title=\"#133170\" class=\"bbp-reply-permalink\">2 weeks, 4 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>I have the same issue as <a href=\"http://bbpress.org/forums/profile/probablynot/\" rel=\"nofollow\">@probablynot</a> – his second issue:</p>\n<blockquote><p>Second, since upgrading, in the Admin area, I can no longer do anything for the forums. The menu over on the left side has no items under the Forums, Topics or Replies headings.</p></blockquote>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133170 -->\n\n \n \n<div id=\"post-133171\" class=\"post-133171 reply type-reply status-publish hentry odd bbp-parent-forum-652 bbp-parent-topic-133130 bbp-reply-position-16 user-id-16750\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/probablynot/\" title=\"View probablynot\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://1.gravatar.com/avatar/9eaec43ad09ddc2b12e89a767db57ddb?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/probablynot/\" title=\"View probablynot\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">probablynot</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@probablynot</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133171\" title=\"#133171\" class=\"bbp-reply-permalink\">2 weeks, 4 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>For people wanting to hide the new search box, add this to your theme’s CSS:<br />\n`.bbp-search-form {<br />\n display:none !important;<br />\n}`</p>\n<p>For the admin area, after further investigation, the only reason I saw the Forums, Topics and Replies menus at all was because of my Post Calendar plugin. Once I disabled that, the Admin menus for bbPress disappeared entirely.</p>\n<p>And I’m with <a href=\"http://bbpress.org/forums/profile/wildomains/\" rel=\"nofollow\">@wildomains</a>, I had to disable ‘bbPress moderation’ to get to see the posts. I want to have that plugin, so hopefully either they will update, or whatever change in bbPress broke it can be changed back.</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133171 -->\n\n \n \n<div id=\"post-133173\" class=\"post-133173 reply type-reply status-publish hentry even bbp-parent-forum-652 bbp-parent-topic-133130 bbp-reply-position-18 user-id-5941287\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/alex-ye/\" title=\"View Nashwan Doaqan\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/eba70909d1752812495149883c41c86c?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/alex-ye/\" title=\"View Nashwan Doaqan\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">Nashwan Doaqan</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@alex-ye</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133173\" title=\"#133173\" class=\"bbp-reply-permalink\">2 weeks, 4 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p><a href=\"http://bbpress.org/forums/profile/realhood/\" rel=\"nofollow\">@realhood</a>: It seems a strange proplem, every thing works fine for me <img src=\"http://bbpress.org/wordpress/wp-includes/images/smilies/icon_smile.gif\" alt=\":)\" class=\"wp-smiley\" /> , can you give more informations…</p>\n<p>Which version you update from and what is the plugins you use?<br />\nDid you try to update the permalinks settings from “Permalinks” admin screen ?</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133173 -->\n\n \n \n<div id=\"post-133175\" class=\"post-133175 reply type-reply status-publish hentry odd bbp-parent-forum-652 bbp-parent-topic-133130 bbp-reply-position-19 user-id-6886748\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/cloudduster/\" title=\"View cloudduster\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://1.gravatar.com/avatar/536051287605a687bdf69bba68a46608?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/cloudduster/\" title=\"View cloudduster\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">cloudduster</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@cloudduster</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133175\" title=\"#133175\" class=\"bbp-reply-permalink\">2 weeks, 4 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>I concur that bbpress moderation hides everything. Once deactivated, I’m seeing them just fine.</p>\n<p>I can’t seem to find the search function everyone’s talking. Is this enabled automatically or my theme is blocking it? Help.</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133175 -->\n\n \n \n<div id=\"post-133177\" class=\"post-133177 reply type-reply status-publish hentry even bbp-parent-forum-652 bbp-parent-topic-133130 bbp-reply-position-20 user-id-12059305\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/realhood/\" title=\"View realhood\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://1.gravatar.com/avatar/bff825af877a4903afb69f81850130ed?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/realhood/\" title=\"View realhood\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">realhood</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@realhood</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133177\" title=\"#133177\" class=\"bbp-reply-permalink\">2 weeks, 4 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p><a href=\"http://bbpress.org/forums/profile/trip62/\" rel=\"nofollow\">@trip62</a><strong> </strong> <a href=\"http://bbpress.org/forums/profile/alex-ye/\" rel=\"nofollow\">@alex-ye</a></p>\n<p>when I check the codes of <a href=\"http://bbpress.org/forums/profile/jezza101/\" rel=\"nofollow\">@jezza101</a> ’s website ,I find the problem 。</p>\n<p>so I try change the codes in the chrome app ,the Developer Tools,it works.</p>\n<p>like change <a href=\"http://127.0.0.1/search/\" rel=\"nofollow\">http://127.0.0.1/search/</a> to http://127.0.0.1/forums/search/</p>\n<p>my forum link is <a href=\"http://127.0.0.1/forums\" rel=\"nofollow\">http://127.0.0.1/forums</a> so add /forums before the/search/</p>\n<p>as like http://www.nxtab.co.uk/forum/search/</p>\n<p>so ask:how to solve this problem</p>\n<p>(Hope understand my Chinese English)</p>\n<p><img alt=\"\" src=\"http://ww4.sinaimg.cn/large/7248c6e2gw1e3qp6o066nj.jpg\" width=\"637\" height=\"256\" /><br />\n<img alt=\"\" src=\"http://ww4.sinaimg.cn/large/7248c6e2gw1e3qp6occqyj.jpg\" width=\"749\" height=\"277\" /></p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133177 -->\n\n \n \n<div id=\"post-133179\" class=\"post-133179 reply type-reply status-publish hentry odd bbp-parent-forum-652 bbp-parent-topic-133130 bbp-reply-position-21 user-id-12059305\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/realhood/\" title=\"View realhood\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://1.gravatar.com/avatar/bff825af877a4903afb69f81850130ed?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/realhood/\" title=\"View realhood\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">realhood</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@realhood</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133179\" title=\"#133179\" class=\"bbp-reply-permalink\">2 weeks, 4 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p><a href=\"http://bbpress.org/forums/profile/alex-ye/\" rel=\"nofollow\">@alex-ye</a> wordpress +bbpress +Buddypress </p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133179 -->\n\n \n \n<div id=\"post-133181\" class=\"post-133181 reply type-reply status-publish hentry even bbp-parent-forum-652 bbp-parent-topic-133130 bbp-reply-position-22 user-id-12059482\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/premitheme/\" title=\"View premitheme\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://1.gravatar.com/avatar/369776c75745ad28e296c07052932bd6?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/premitheme/\" title=\"View premitheme\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">premitheme</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@premitheme</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133181\" title=\"#133181\" class=\"bbp-reply-permalink\">2 weeks, 4 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>Looks like I’m the only one with this issue …</p>\n<p><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133143\" rel=\"nofollow\">http://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133143</a></p>\n<p>Anybody?</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133181 -->\n\n \n \n<div id=\"post-133183\" class=\"post-133183 reply type-reply status-publish hentry odd bbp-parent-forum-652 bbp-parent-topic-133130 bbp-reply-position-23 user-id-407442\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/artmuns/\" title=\"View artmuns\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/42a776af7af6ee3c89ca1e705c2cb31d?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/artmuns/\" title=\"View artmuns\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">artmuns</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@artmuns</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133183\" title=\"#133183\" class=\"bbp-reply-permalink\">2 weeks, 4 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>Having problems. </p>\n<p>Lost admin panel widget for “Forums, Topics and Replies”. Getting this cryptic message error “Cheatin’ uh?”. When trying to access Forums, Topics or Replies through “Right Now In Forums”. </p>\n<p>Where can I get 2.24 version?</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133183 -->\n\n \n \n<div id=\"post-133185\" class=\"post-133185 reply type-reply status-publish hentry even bbp-parent-forum-652 bbp-parent-topic-133130 bbp-reply-position-25 user-id-5867025\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/aburi/\" title=\"View Alex\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/0f02dc68b328c7cc561502c0266f7b58?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/aburi/\" title=\"View Alex\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">Alex</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@aburi</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133185\" title=\"#133185\" class=\"bbp-reply-permalink\">2 weeks, 4 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>Once I updated to 2.3, the admin menus for Forums, Topics, and Replies disappeared from the backend. I upgrade across several installs and this happened to all of them, even on the clean install with no other plugins activated. </p>\n<p>Anyone else having this issue? and how to resolve? </p>\n<p>Thanks,<br />\nAlex</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133185 -->\n\n \n \n<div id=\"post-133186\" class=\"post-133186 reply type-reply status-publish hentry odd bbp-parent-forum-652 bbp-parent-topic-133130 bbp-reply-position-26 user-id-374713\">\n\n <div class=\"bbp-reply-author\">\n\n \n <a href=\"http://bbpress.org/forums/profile/dpmcalister/\" title=\"View dpmcalister\'s profile\" class=\"bbp-author-avatar\" rel=\"nofollow\"><img alt=\"\" src=\"http://0.gravatar.com/avatar/628860eb170acfba43f588cad368baf6?s=100&d=retro&r=G\" class=\"avatar avatar-100 photo\" height=\"100\" width=\"100\" /></a><br /><a href=\"http://bbpress.org/forums/profile/dpmcalister/\" title=\"View dpmcalister\'s profile\" class=\"bbp-author-name\" rel=\"nofollow\">dpmcalister</a><br /><div class=\"bbp-author-role\">Participant</div>\n <p class=\"bbp-user-nicename\">@dpmcalister</p>\n <p class=\"bbp-reply-post-date\"><a href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/page/2/#post-133186\" title=\"#133186\" class=\"bbp-reply-permalink\">2 weeks, 4 days ago</a></p>\n\n \n \n </div><!-- .bbp-reply-author -->\n\n <div class=\"bbp-reply-content\">\n\n \n <p>There’s a few of us with that issue. Just waiting on a fix.</p>\n\n \n </div><!-- .bbp-reply-content -->\n\n \n</div><!-- #post-133186 -->\n\n \n </li><!-- .bbp-body -->\n\n</ul><!-- #topic-133130-replies -->\n\n\n \n\n<div class=\"bbp-pagination\">\n <div class=\"bbp-pagination-count\">\n\n Viewing 25 posts - 1 through 25 (of 80 total)\n </div>\n\n <div class=\"bbp-pagination-links\">\n\n <span class=\"page-numbers current\">1</span>\n<a class=\"page-numbers\" href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/page/2/\">2</a>\n<span class=\"page-numbers dots\">…</span>\n<a class=\"page-numbers\" href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/page/4/\">4</a>\n<a class=\"next page-numbers\" href=\"http://bbpress.org/forums/topic/bbpress-2-3-now-available/page/2/\">→</a>\n </div>\n</div>\n\n\n \n \n\n\n <div id=\"no-reply-133130\" class=\"bbp-no-reply\">\n <div class=\"bbp-template-notice\">\n <p>You must be logged in to reply to this topic.</p>\n </div>\n </div>\n\n\n\n \n \n</div>\n</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, 15 Apr 2013 03:03:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:62:\"BuddyPress: It’s time to update your BuddyPress installation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://buddypress.org/?p=161349\";s:7:\"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:78:\"http://buddypress.org/2013/04/its-time-to-update-your-buddypress-installation/\";s: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:3149:\"<p>With the release of BuddyPress 1.7 just a few days ago, and with almost 1.5 million downloads behind us, I wanted to take the time to remind everyone about what’s gone into improving BuddyPress recently, and to reassure everyone that it’s okay to update.</p>\n<p>In the early days of BuddyPress, things were in flux. Andy and I were furiously building components and features, deprecating code, refactoring the way things worked, and generally tearing up the codebase over and over again. It helped us build a great foundation, but it made updating to the next version a scary and frustrating experience. To those that remember those days, I apologize; to everyone else, I’m sorry you missed out on the fun. <img src=\"http://buddypress.org/wp-includes/images/smilies/icon_smile.gif\" alt=\":)\" class=\"wp-smiley\" /> </p>\n<p>Whenever your WordPress installation checks to see if BuddyPress needs an update, the WordPress.org Extend API remembers the current version of BuddyPress that you’re running. This is how we know (with relative accuracy) approximately how many of what versions are out in the wild, and it’s also how we generated the pinwheel below, taken from the Stats page from WordPress.org Extend:</p>\n<div id=\"attachment_161350\" class=\"wp-caption aligncenter\"><img class=\" wp-image-161350 \" alt=\"Active BuddyPress Versions\" src=\"http://buddypress.org/wp-content/uploads/1/2013/04/Screen-Shot-2013-04-11-at-3.18.43-PM.png\" width=\"576\" height=\"283\" /><p class=\"wp-caption-text\">Every color of the rainbow is clearly represented</p></div>\n<p>Despite the pretty colors, this pie chart is actually a little scary. There are so many old and outdated installations of BuddyPress out there, not taking advantage of the neat new features, and not running the most stable and secure code available. The irony is, this is largely our fault.</p>\n<p>These days, BuddyPress is a 1 click update in your WordPress dashboard, and we’ve built a bunch of API’s that allow third party plugin developers to write plugins that won’t break when BuddyPress needs an update. We’ve spent a large part of the past 2 years reinforcing the foundation we invested in, so that no one needs to be afraid to update BuddyPress ever again.</p>\n<p>Starting with BuddyPress 1.8, the core team will be focusing our efforts on including automated tests with each enhancement and critical bug fix, to help ensure that each future release gets more stable than the release before it. Boone Gorges and Paul Gibbs both donated huge amounts of labor building a test suite that is already committed into our development branch, just days after BuddyPress 1.7 was packaged up. Their dedication towards making BuddyPress stable and amazing for everyone is unwavering, and their contributions are truly awesome.</p>\n<p>If you’re running an old version of BuddyPress, I urge you to check out and update to BuddyPress 1.7. It’s the culmination of thousands of hours of effort, and is the most stable, secure, and performant version of BuddyPress yet. Help us change that pinwheel into more of a Pac-Man or a circle.</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:\"Thu, 11 Apr 2013 21:02: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: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: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:55:\"Andrew Nacin: Keynoting php[tek] in Chicago, May 14-17\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"http://nacin.com/?p=4090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://nacin.com/2013/04/11/tek13-php-conference-keynote/\";s: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:3466:\"<p>I’m excited to announce <strong>I’m giving a keynote address at <a href=\"http://tek.phparch.com/\">php[tek] 2013</a></strong>. It’s a fantastic PHP conference put on by the folks behind <a href=\"http://www.phparch.com/\">php|architect</a>. “The premier professional PHP conference with a community flair,” #tek13 has a rockstar <a href=\"http://tek.phparch.com/speakers/\">speaker line-up</a>, four tracks of content, and a day of training. I’m thrilled to be attending the conference — I also attended #tek11 — let alone speaking.</p>\n<p>Last night I tested a few ideas at the <a href=\"http://meetup.com/dc-php\">DC PHP meetup</a> and got some great feedback from the attendees. Some early reviews:</p>\n<blockquote class=\"twitter-tweet\"><p><a href=\"https://twitter.com/wardnetinc/status/322140560523673601\"></a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\"><p><a href=\"https://twitter.com/kingkool68/status/322151835756544000\"></a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\"><p><a href=\"https://twitter.com/openwestconf/status/322393612249886720\"></a></p></blockquote>\n<p></p>\n<p>I’m continuing to conduct a <em>lot</em> of research for this talk. There’s a lot WordPress has learned over the years, so I’ve been searching through the codebase and old commit messages, as well as compiling a ton of data and statistics. If you have anything you think might help, please <a href=\"http://gravatar.com/nacin\">contact me</a>. Here’s the full talk description:</p>\n<blockquote><p>\n<strong>WordPress is Everywhere: Extreme Portability as a Double-Edged Sword</strong></p>\n<p>WordPress has tens of millions of users worldwide and powers over a fifth of new sites. But such a large and diverse user base presents unique challenges, and as it approaches its tenth birthday, the WordPress codebase is showing its age. So why is it so ubiquitous?</p>\n<p>The answer lies not in its UI, UX, ecosystem, or community, though those are certainly among its strengths. The answer lies instead in a core philosophy that holds the user above all else.</p>\n<p>This user-centric design starts not with the interface, but rather with the code itself. Developers should approach software development with an unwavering promise they will deal with the nonsense instead of passing it off to the user.</p>\n<p>Some WordPress positions might seem draconian and inflexible. Backwards compatibility is almost never broken. The technical requirements appeal to lowest common denominators. But because the project maintainers deal with all the pain — technical debt, difficulties with PHP, working on as many server configurations (and misconfigurations) as possible — its users don’t have to. Thanks to the WordPress project’s portability efforts, you can pick a web host or a PHP configuration at random and WordPress will run on it. Because of this, adoption has soared.</p>\n<p>The way WordPress operates is not for everyone. But whether your projects are used by 10 users, or 10 million, it may help you to see your code in an entirely new light.</p></blockquote>\n<p>Tickets are <a href=\"http://tek.phparch.com/\">still available</a>. Hope to see you there!</p>\n<p class=\"share-sfc-stc\"><a href=\"http://twitter.com/share?url=http%3A%2F%2Fwp.me%2FpQEdq-13Y&count=horizontal&related=nacin&text=Keynoting%20php%5Btek%5D%20in%20Chicago%2C%20May%2014-17\" class=\"twitter-share-button\"></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:\"Thu, 11 Apr 2013 17:33:47 +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: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:31:\"Dev Blog: Save the Date: May 27\";s:7:\"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=2555\";s:7:\"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/2013/04/save-the-date-may-27/\";s: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:2059:\"<p>What’s on May 27, you ask?</p>\n<p>May 27, 2013 is the <strong>10th anniversary</strong> of the <a href=\"http://wordpress.org/news/2003/05/wordpress-now-available/\">first WordPress release</a>!</p>\n<p>We think this is worth celebrating, and we want WordPress fans all over the world to celebrate with us by throwing their own parties. <a href=\"http://www.meetup.com/WordPress/\">We’re using Meetup Everywhere</a> to coordinate, and will be putting up a website just for the 10th Anniversary so that we can collect photos, videos, tweets, and posts from all the parties.</p>\n<p>The rules are very simple:</p>\n<ol>\n<li><span>Pick a place to go where a bunch of people can be merry — a park, a bar, a backyard, whatever</span></li>\n<li>Spread the word to local meetups, tech groups, press, etc and get people to say they’ll come to your party</li>\n<li>If 50 or more people RSVP to your party, we’ll try to send you some WordPress stickers and buttons</li>\n<li>Have party attendees post photos, videos, and the like with the #wp10 hashtag</li>\n</ol>\n<p>We’ll be using Meetup Everywhere to coordinate parties all over the world, so get your city on the map and <a href=\"http://www.meetup.com/WordPress/\">register your party now</a> !</p>\n<p>We’ll follow up with registered organizers over the next few weeks with some tips for how to publicize your party and to get addresses for swag packages. To that end, make sure you check the option that lets WordPress 10th Anniversary know your email, or we won’t be able to get in touch with you for these things or to give you access to the WP10 blog.</p>\n<p>Whose party will be the biggest? The most fun? The most inventive? Will it be yours?</p>\n<p><em>Note: If you already run a group on meetup.com, making your party an event in your group is great, but you still need to post it and have people RSVP at the <a href=\"http://www.meetup.com/WordPress/\">special party page</a>, because regular groups and Meetup Everywhere groups aren’t connected yet. </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:\"Thu, 11 Apr 2013 13:48: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:8:\"Jen Mylo\";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:87:\"WP Windows Phone 7: Push Notifications and a Rich Text Editor: Version 2.1 Is 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:42:\"http://wpwindowsphone.wordpress.com/?p=429\";s:7:\"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://wpwindowsphone.wordpress.com/2013/04/11/version-2-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:3905:\"<p><a href=\"http://wpwindowsphone.files.wordpress.com/2013/04/wpwindowsphone-2-0-comment-push-notifications-and-rich-text-editor.png\"><img class=\"alignright size-large wp-image-453\" alt=\"Screenshot of Version 2.1 of WordPress for Windows Phone: Rich Text Editor and Comment Push Notifications\" src=\"http://wpwindowsphone.files.wordpress.com/2013/04/wpwindowsphone-2-0-comment-push-notifications-and-rich-text-editor.png?w=300&h=560\" width=\"300\" height=\"560\" /></a>It’s that time again. Version 2.1 of WordPress for Windows Phone is out and adds some exciting new features.</p>\n<p>We’re happy to announce that you can now get comment push notifications on your Windows Phone (OS 7.5+) which enables you to moderate comments from wherever you happen to be at the time. With 2.1 you also get a rich text editor, making it much easier to write longer posts having to deal with any HTML code.</p>\n<p>Read on to learn what’s new or update/download version 2.1 from the Windows Phone Store right now by clicking below.</p>\n<p class=\"download\"><a href=\"http://windowsphone.com/s?appid=5f64ad85-f801-e011-9264-00237de2db9e\"><strong>Download App</strong>WordPress for Windows Phone</a><span class=\"download-info\">Supported: WordPress.com or self-hosted WordPress (v. 2.9+)</span></p>\n<h3>Rich Text Editor</h3>\n<p>Now you finally have the ability to use a rich text editor when creating or editing a post or page. The new editor has easy to access styling options beneath the keyboard and in the app menu, these include bulleted/numbered lists, bold, underline, and italic text. You’ll also find a handy link helper among the text editing tools.</p>\n<h3>Comment Push Notifications</h3>\n<p>If you have a WordPress.com blog (or a self-hosted blog with the <a href=\"http://jetpack.me/\">Jetpack plugin</a>) added to the app, you can now opt in to receive push notifications for new comments. This makes it easier than ever to keep up with your readers and moderate comments while on the go. You’ll get push notifications for new comments only and viewing a notification takes you right to the comment within the app. From there you can easily respond and moderate like usual.</p>\n<h3>Stability Improvements</h3>\n<p>In addition to the new features, we’ve worked hard on making the app even more stable. In total, almost <a href=\"http://windowsphone.trac.wordpress.org/query?status=closed&group=resolution&milestone=Push+Notifications+and+Content+Editor\" target=\"_blank\">40 bugs and crashes</a> have been fixed in this release.</p>\n<h3>Screenshots</h3>\n<a href=\"http://wpwindowsphone.wordpress.com/2013/04/11/version-2-1/#gallery-429-1-slideshow\">Click to view slideshow.</a>\n<h3>Contributors</h3>\n<p>The following contributors have worked on this release of WordPress for Windows Phone: <a href=\"http://wordpress.org/support/profile/aerych\">aerych</a>, <a href=\"http://wordpress.org/support/profile/isaackeyet\">isaackeyet</a>, and <a href=\"http://wordpress.org/support/profile/daniloercoli\">daniloercoli</a>.</p>\n<h3>Get Involved!</h3>\n<p>We now have a feature-driven release cycle, meaning that updates will come faster and focus on single features and enhancements. This is the perfect time to get involved in the WordPress for Windows Phone project. Check out <a href=\"http://make.wordpress.org/mobile\">make.wordpress.org/mobile</a> and the <a href=\"http://windowsphonedev.wordpress.org/\" target=\"_blank\">WordPress for Windows Phone dev blog</a> to see how you can get involved!</p>\n<p>If you’d like to help us translate the app into your native language, check out the <a href=\"http://translate.wordpress.org/projects/wordpress-for-windows-phone/development\" target=\"_blank\">translation project</a>.</p>\n<br /> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wpwindowsphone.wordpress.com&blog=16495748&post=429&subd=wpwindowsphone&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, 11 Apr 2013 07:14:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Danilo\";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:44:\"BuddyPress: BuddyPress 1.7 is 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:31:\"http://buddypress.org/?p=160310\";s:7:\"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://buddypress.org/2013/04/buddypress-1-7-is-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8955:\"<p>BuddyPress 1.7 “Totonno” has arrived, and it’s our best version yet!</p>\n<h3>What’s New in 1.7</h3>\n<p>BuddyPress 1.7 is a major feature release, containing hundreds of bugfixes and dozens of new features. We’ll show off a few of our favorites below. Want to see a full changelog for 1.7? Check it out <a href=\"http://codex.buddypress.org/developer/releases/version-1-7/\">on the Codex</a>.</p>\n<p><em>Theme Compatibility</em></p>\n<p>BuddyPress’s social features add new kinds of content to your WordPress site: groups, profiles, and so on. Until now, displaying that content has required building or finding a BP-compatible theme – one of the biggest hurdles to using BuddyPress. Version 1.7 makes this a thing of the past. Using a feature we call “theme compatibility”, BuddyPress can display its content within the context of any WordPress theme – no modifications required. Here are a few screenshots showing BP running on a few popular themes:</p>\n<p><div id=\"attachment_160342\" class=\"wp-caption alignleft\"><a href=\"http://buddypress.org/wp-content/uploads/1/2013/04/bp-twentytwelve.png\"><img src=\"http://buddypress.org/wp-content/uploads/1/2013/04/bp-twentytwelve-150x150.png\" alt=\"Twenty Twelve\" width=\"150\" height=\"150\" class=\"size-thumbnail wp-image-160342\" /></a><p class=\"wp-caption-text\">Twenty Twelve</p></div> <div id=\"attachment_160343\" class=\"wp-caption alignleft\"><a href=\"http://buddypress.org/wp-content/uploads/1/2013/04/bp-coraline.png\"><img src=\"http://buddypress.org/wp-content/uploads/1/2013/04/bp-coraline-150x150.png\" alt=\"Coraline\" width=\"150\" height=\"150\" class=\"size-thumbnail wp-image-160343\" /></a><p class=\"wp-caption-text\">Coraline</p></div> <div id=\"attachment_160344\" class=\"wp-caption alignleft\"><a href=\"http://buddypress.org/wp-content/uploads/1/2013/04/bp-superstore.png\"><img src=\"http://buddypress.org/wp-content/uploads/1/2013/04/bp-superstore-150x150.png\" alt=\"Woo Superstore\" width=\"150\" height=\"150\" class=\"size-thumbnail wp-image-160344\" /></a><p class=\"wp-caption-text\">Woo Superstore</p></div></p>\n<div> </div>\n<p>Not satisfied with the way it looks out of the box? Not a problem. BuddyPress still provides a sophisticated, modular templating system, which you can easily customize in your own theme. Theme developers and designers can learn much more about theme compat on <a href=\"http://codex.buddypress.org/developer/theme-development/a-quick-look-at-1-7-theme-compatibility/\">the BuddyPress codex</a>.</p>\n<div> </div>\n<p><em>Group Administration</em></p>\n<div id=\"attachment_160321\" class=\"wp-caption alignright\"><a href=\"http://buddypress.org/wp-content/uploads/1/2013/04/dashboard.png\"><img src=\"http://buddypress.org/wp-content/uploads/1/2013/04/dashboard-300x216.png\" alt=\"Group Administration in BuddyPress 1.7\" width=\"150\" class=\"size-medium wp-image-160321\" /></a><p class=\"wp-caption-text\">Group Administration in BP 1.7</p></div>\n<p>If you’ve run a BuddyPress-powered community site, you know that groups are a powerful way for members to connect. But there’s been no way for site administrators to manage groups. BP 1.7 introduces a brand new set of Group Administration panels on your WordPress Dashboard. Now BP admins can bulk-delete groups, edit group settings, and manage group membership without ever leaving wp-admin.</p>\n<div> </div>\n<p><em>A Better Installation Experience</em></p>\n<div id=\"attachment_160328\" class=\"wp-caption alignright\"><a href=\"http://buddypress.org/wp-content/uploads/1/2013/04/about.png\"><img src=\"http://buddypress.org/wp-content/uploads/1/2013/04/about-150x150.png\" alt=\"About Screen\" width=\"150\" height=\"150\" class=\"size-thumbnail wp-image-160328\" /></a><p class=\"wp-caption-text\">About Screen</p></div>\n<p>BuddyPress makes it easy to add social features to your site, and BP 1.7 streamlines the process more than ever. We’ve removed the installation wizard in favor of a totally automated setup – just hit Activate, and we’ll handle the rest. On new installations, only the Activity and Extended Profiles components are activated, helping you to start small and grow your community features bit by bit. And, following in WordPress’s footsteps, we’ve added About and Credits screens, helping you to get up to date on the BuddyPress project.</p>\n<div> </div>\n<h3>Springtime Goodies</h3>\n<p>BuddyPress 1.7 is codenamed “Totonno”, after <a href=\"https://en.wikipedia.org/wiki/Totonno%27s\">the legendary Brooklyn pizza joint</a>. Totonno’s is just a few blocks from <a href=\"https://en.wikipedia.org/wiki/Coney_Island_Cyclone\">the Cyclone</a> and the Coney Island boardwalk, and there’s no better end to a lovely spring day than to indulge in what may be the world’s greatest pepperoni pie. With spring finally coming to Brooklyn, we think it’s appropriate to honor a pizza institution with what we think will be a watershed BuddyPress release.</p>\n<div> </div>\n<h3>The BuddyPress Community Rocks</h3>\n<p>Hundreds of developers, designers, and community volunteers have put thousands of hours into this version of BuddyPress. When you use BP, you’re standing on their shoulders. The following individuals contributed patches during the 1.7 release cycle: </p>\n<p> <a href=\"http://profiles.wordpress.org/aesqe\">aesqe</a>, <a href=\"http://profiles.wordpress.org/apeatling\">apeatling</a>, <a href=\"http://profiles.wordpress.org/borkweb\">borkweb</a>, <a href=\"http://profiles.wordpress.org/calin\">calin</a>, <a href=\"http://profiles.wordpress.org/chouf1\">chouf1</a>, <a href=\"http://profiles.wordpress.org/chrisclayton\">chrisclayton</a>, <a href=\"http://profiles.wordpress.org/cnorris23\">cnorris23</a>, <a href=\"http://profiles.wordpress.org/ddean\">ddean</a>, <a href=\"http://profiles.wordpress.org/DennisSmolek\">DennisSmolek</a>, <a href=\"http://profiles.wordpress.org/Dianakc\">Dianakc</a>, <a href=\"http://profiles.wordpress.org/dontdream\">dontdream</a>, <a href=\"http://profiles.wordpress.org/empireoflight\">empireoflight</a>, <a href=\"http://profiles.wordpress.org/enej\">enej</a>, <a href=\"http://profiles.wordpress.org/ethitter\">ethitter</a>, <a href=\"http://profiles.wordpress.org/fanquake\">fanquake</a>, <a href=\"http://profiles.wordpress.org/gmax21\">gmax21</a>, <a href=\"http://profiles.wordpress.org/hnla\">hnla</a>, <a href=\"http://profiles.wordpress.org/humanshell\">humanshell</a>, <a href=\"http://profiles.wordpress.org/imath\">imath</a>, <a href=\"http://profiles.wordpress.org/Jacek\">Jacek</a>, <a href=\"http://profiles.wordpress.org/jag1989\">jag1989</a>, <a href=\"http://profiles.wordpress.org/jbobich\">jbobich</a>, <a href=\"http://profiles.wordpress.org/jkudish\">jkudish</a>, <a href=\"http://profiles.wordpress.org/jpsb\">jpsb</a>, <a href=\"http://profiles.wordpress.org/karmatosed\">karmatosed</a>, <a href=\"http://profiles.wordpress.org/MacPresss\">MacPresss</a>, <a href=\"http://profiles.wordpress.org/magnus78\">magnus78</a>, <a href=\"http://profiles.wordpress.org/markjaquith\">markjaquith</a>, <a href=\"http://profiles.wordpress.org/Maty\">Maty</a>, <a href=\"http://profiles.wordpress.org/mercime\">mercime</a>, <a href=\"http://profiles.wordpress.org/michael.ecklund\">michael.ecklund</a>, <a href=\"http://profiles.wordpress.org/modemlooper\">modemlooper</a>, <a href=\"http://profiles.wordpress.org/nacin\">nacin</a>, <a href=\"http://profiles.wordpress.org/netweb\">netweb</a>, <a href=\"http://profiles.wordpress.org/rogercoathup\">rogercoathup</a>, <a href=\"http://profiles.wordpress.org/sboisvert\">sboisvert</a>, <a href=\"http://profiles.wordpress.org/sbrajesh\">sbrajesh</a>, <a href=\"http://profiles.wordpress.org/slaFFik\">slaFFik</a>, <a href=\"http://profiles.wordpress.org/steve7777\">steve7777</a>, <a href=\"http://profiles.wordpress.org/tiraeth\">tiraeth</a>, <a href=\"http://profiles.wordpress.org/will_c\">will_c</a>, <a href=\"http://profiles.wordpress.org/wpdennis\">wpdennis</a>, <a href=\"http://profiles.wordpress.org/xt4v\">xt4v</a>.</p>\n<div> </div>\n<h3>Enjoy!</h3>\n<p>Do you have questions about the latest BuddyPress release? Check out the <a href=\"http://codex.buddypress.org\">BuddyPress Codex</a> – our growing collection of official documentation – and especially the pages in <a href=\"http://codex.buddypress.org/version/1-7/\">the 1.7 category</a>. Volunteers are also standing by in our active <a href=\"http://buddypress.org/support\">support and discussion forums</a>. If you’ve found a bug in BuddyPress, or if you want to contribute code to the next release, our development home is <a href=\"http://buddypress.trac.wordpress.org\">buddypress.trac.wordpress.org</a></p>\n<p>You might not be able to make it to Coney Island this summer, but we think that BuddyPress 1.7 “Totonno” is (almost) just as good. Download it today from the <a href=\"http://wordpress.org/extend/plugins/buddypress\">wordpress.org plugin repository</a>, or from your WordPress Dashboard.</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, 08 Apr 2013 18:51: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:12:\"Boone Gorges\";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:63:\"Mark Jaquith: WordPress 3.6: shortcode_atts_{$shortcode} filter\";s:7:\"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:\"http://markjaquith.wordpress.com/?p=3975\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://markjaquith.wordpress.com/2013/04/04/wordpress-36-shortcode-attribute-filter/\";s: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:2282:\"<p>Since WordPress 3.6 is in beta, I thought I’d use this nearly-abandoned blog (hey, been busy working on WordPress!) to talk about some of the cool stuff for developers. For the first installment, check out the new <code>shortcode_atts_{$shortcode}</code> filter. The <code>shortcode_atts()</code> function now accepts a third parameter — the name of the shortcode — which enables the running of this filter. All of the core shortcodes now pass this parameter.</p>\n<p>This filter passes three things:</p>\n<ol>\n<li><code>$out</code> — the output array of shortcode attributes</li>\n<li><code>$pairs</code> — the array of accepted parameters and their defaults.</li>\n<li><code>$atts</code> — the input array of shortcode attributes</li>\n</ol>\n<p>Let’s look at what we can do with this. One thing is that you can dynamically set or override shortcode values. You an also define new ones, and transpose them into accepted ones. Let’s look at the “gallery” shortcode for example. What if there was a gallery of images that you would reuse. Instead of picking the images each time, you could have a plugin that gives that set of attachment IDs a shortcut name. Then you could do <code>[gallery foo=my-gallery-name]</code>, which the plugin would convert to a list of IDs. Or, you could enforce a certain number of gallery columns on the fly. Let someone set it theme-wide, without having them go back and change their shortcodes.</p>\n<p>What other uses can you think of?</p>\n<p>Now, if you’re a plugin or theme author who provides their own shortcodes, you should immediately start providing this third parameter to your <code>shortcode_atts()</code> calls (since it is an extra parameter, you can do this without a WordPress version check). Maybe it’ll reduce the number of times people need to fork your code just to add an option to your shortcode!</p>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/markjaquith.wordpress.com/3975/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/markjaquith.wordpress.com/3975/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=markjaquith.wordpress.com&blog=316&post=3975&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, 05 Apr 2013 03:12: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: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: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:35:\"Dougal Campbell: CodePoet Interview\";s:7:\"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:34:\"http://dougal.gunters.org/?p=72513\";s:7:\"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://dougal.gunters.org/blog/2013/04/04/dougal-campbell-codepoet-interview/\";s: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:1589:\"<div class=\"featured-image align-right\"><img width=\"164\" height=\"52\" src=\"http://geekramblings.gunters.netdna-cdn.com/wordpress/wp-content/uploads/2013/04/codepoet-logo.png?9bb111\" class=\"attachment-post-thumbnail wp-post-image\" alt=\"CodePoet Logo\" /></div><!--\narticle.tag-codepoet div.featured-image img{background-color: #333;}\n-->\n<p>I was honored to be chosen for an <a title=\"It\'s me!\" href=\"http://build.codepoet.com/2013/04/04/dougal-campbell-interview/\">interview on CodePoet</a>. Though I haven’t been able to stay as involved with WordPress as much lately as I’d like, due to job and family, I guess I’m of “historical interest” because of my involvement as a core developer back in the first couple of years. (I jest — a little)</p>\n<p>We discuss how I came to web development and from there to WordPress, my more recent activity as a speaker at WordCamp Atlanta on the topic of security, the community and why someone should become involved, and the differences between web development as a job versus as a hobby, among other things.</p>\n<p>I enjoyed answering the questions, and I hope you all will enjoy reading the interview!</p>\n<p> </p>\n<p>Original Article: <a href=\"http://dougal.gunters.org/blog/2013/04/04/dougal-campbell-codepoet-interview/\">CodePoet Interview</a>\n<a href=\"http://dougal.gunters.org\">Dougal Campbell's geek ramblings - WordPress, web development, and world domination.</a></p><div class=\"yarpp-related-rss yarpp-related-none\">\n<img src=\"http://yarpp.org/pixels/5db43ee24c4f1e1d0e45d08cc91b0130\" />\n</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:\"Thu, 04 Apr 2013 16:03:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Dougal Campbell\";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:54:\"Gravatar: Gravatar and WordPress.com, Together Forever\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.gravatar.com/?p=437\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"http://blog.gravatar.com/2013/04/03/gravatar-and-wordpress-com-together-forever/\";s: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:3493:\"<p>Did you know that your Gravatar.com account has always been a WordPress.com account? It’s true.</p>\n<p>Back in 2007 we (<a href=\"http://automattic.com\">Automattic</a>) acquired Gravatar. Heading into 2008 we <a href=\"http://blog.gravatar.com/2008/03/14/big-changes-afoot/\">rewrote it in PHP</a>, and ever since then, it’s been using the same integrated user system as WordPress.com for accounts. Previously we handled that “behind the scenes,” but we found that it made things pretty confusing for everyone. We’ve now switched over to using <a href=\"http://en.support.wordpress.com/wpcc-faq/\">WordPress.com Connect</a> exclusively, which allows you to explicitly connect Gravatar and WordPress.com, and to use your WordPress.com credentials to log into Gravatar. That’s one less set of login credentials to worry about!</p>\n<div id=\"attachment_438\" class=\"wp-caption aligncenter\"><img class=\"size-full wp-image-438\" alt=\"wpcc-button\" src=\"http://gravatar.files.wordpress.com/2013/04/wpcc-button.png?w=258&h=65\" width=\"258\" height=\"65\" /><p class=\"wp-caption-text\">This is not a real button <img src=\"http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif\" alt=\":)\" class=\"wp-smiley\" /></p></div>\n<ol>\n<li><span>If you had a Gravatar account before, it’s actually always been a WordPress.com account!</span></li>\n<li>When you try to log in at Gravatar.com now, you will be asked to do so using WordPress.com Connect.</li>\n<li>Once you’re logged into WordPress.com, you then grant Gravatar access to use your WordPress.com account.</li>\n<li>After that, you’ll use your WordPress.com username and password to log in to Gravatar, for evermore.</li>\n</ol>\n<p>You might be wondering about existing accounts and creating new accounts, and what your options are:</p>\n<ul>\n<li><span>If you have a Gravatar account, it’s actually also a WordPress.com account. You can use those details to log into WordPress.com, then grant access to Gravatar.</span></li>\n<li>If you already have a WordPress.com account, then you can use that to log into Gravatar.com now.</li>\n<li>If you don’t have a WordPress.com (or Gravatar) account, you can create one for free (no need for a blog, although you can do that also if you like!) and then you can grant access to Gravatar to get started.</li>\n</ul>\n<p>The beauty of switching to WordPress.com Connect is that it means your account information is all managed in one, super-secure place (WordPress.com), and it avoids all sorts of complexity and potential for problems with password resets, account activations, and more. We’re in the process of switching all of our services to using WordPress.com Connect, so you can use the same account to log into our other nifty products, including <a href=\"http://vaultpress.com\">VaultPress</a>, <a href=\"http://akismet.com\">Akismet</a> and <a href=\"http://polldaddy.com\">Polldaddy</a>.</p>\n<p>There’s a bunch more info on the <a href=\"http://en.support.wordpress.com/wpcc-faq/\">WordPress.com Connect FAQ</a>, which will hopefully help clear up any other questions you have.</p>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/gravatar.wordpress.com/437/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/gravatar.wordpress.com/437/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=blog.gravatar.com&blog=1886259&post=437&subd=gravatar&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:\"Wed, 03 Apr 2013 18:33: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:11:\"Beau Lebens\";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:100:\"Weblog Tools Collection: I am taking my leave of Weblog Tools Collection, and thanks for everything!\";s:7:\"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=12845\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/NRKA8GMV-fA/\";s: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:4720:\"<p>Not many of the present readers might know me very well, and that in part, is the reason that I have made the decision to transfer WLTC to more willing and presently capable hands. I am a stranger on my blog and the time has come for me to make sure that this blog, its contents and its knowledge are archived and preserved and maybe rejuvenated at a later time.</p>\n<p>I delved into blogging tools back in 2004 when I started my Masters degree in CS. I wanted some code to mess around with in my free time and everyone was talking about blogging. I looked into a variety of tools, built a small Linux server for myself at home, and installed a few of the tools that were freely available at that time. I had a heck of a time getting a hold of MT (Moveable Type, the most well-known name) and then found b2 by sheer luck. I loved the cool look of Michael’s blog and the people involved in the tool seemed to be open to comments and replied warmly to my emails and questions. Through the b2 forums I heard about WordPress and proceeded to install it on my own. To my astonishment, it worked without a hitch and I was blogging away in no time. I started looking through the code to understand how it worked and it drew me in every step of the way.</p>\n<p>Within a few months of installing WordPress, I started to take part in the forums and wrote a few plugins and created some “hacks” for the tool. I even gained some notoriety with my MT VS WP post and that’s when the WordPress ecosphere started to look very attractive to me. I did not do this to seek attention, but I was getting a lot of attention and I was loving it. I believe that was when Matt first noticed me and we exchanged some emails and chatted with each other. With every month and with every release of WordPress I was getting more involved. At some point I realized that I could not do it alone and hired a few interested people to help me write posts and the blog started to get popular. I brought on some advertisers to help me offset costs. Matt gave me and my blog the highest honor of being included in the WordPress Planet and that’s when things really started to happen for this blog. I also started a WordPress Job blog (http://jobs.wordpress.net) which I still curate and I got involved in WordPress evangelism. Somewhere within this time, Matt had asked me to work for him at the new company he was starting and I had to turn him down because of visa restrictions and because I wanted to finish school (I kick myself every time I think about that).</p>\n<p>WordPress started to mature and WordCamps started to happen. I graduated from school with a Master’s Degree in Computer Science and found a job. I wanted to stay involved but it was getting bigger than I could handle. I could either dive in and get into WordPress and the blogging world, or I could focus on my job, career and family. I decided to choose the latter. I still wanted to loosely be involved with WordPress and things went well for a couple of years with me being casually involved. I even visited and spoke at a couple of WordCamps.</p>\n<p>When my son Lucien was born, all my time and attention was exhausted on him. I could not spend any time with WordPress or blogging at all. In addition to my growing family, I was diagnosed with a serious health condition just as I was starting a new job and moving to a new city. Needless to say, the blog was the last thing on my mind. James, who has been the sole author and curator for a long time, was my winning hand and just a fantastic helper and well wisher. He has kept things running for a long time and I have had no complaints.</p>\n<p>But I have found very little time to come back and spend with my old friends, Weblog Tools Collection and WordPress. I do not want this blog’s content and conversations to be lost or forgotten because of my neglect. I am hoping this move will help it live on as an archive, or find new lifeblood in another form. I know that it is in the right hands.</p>\n<p>So Adios and Gracias. I hope to see you in another blog, and take part in another conversation with you someday. It has been a wonderful journey and I appreciate everything that has taken place because of WordPress and every bit of help and encouragement that has been provided to me by so many of you. So thank to my wonderful audience of many years, thanks to my advertisers, thanks to my authors and finally thanks to Matt and to WordPress for making my life so much more fulfilling and successful.</p>\n<p>Peace on Earth, Goodwill to All, And to All a Goodnight!</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/NRKA8GMV-fA\" 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, 31 Mar 2013 13:41: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:10:\"Mark Ghosh\";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:53:\"Weblog Tools Collection: Where to Find 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12846\";s:7:\"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/ah3QRPNnlhs/\";s: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:2837:\"<p>The landscape of news has changed so much over the last few years that news about a particular topic or platform is readily available to anyone within an instant. With <a href=\"http://wordpress.org\">WordPress</a>, I imagine that could be one of the perks of <a href=\"http://weblogtoolscollection.com/archives/2012/08/08/the-state-of-the-word-in-2012/\">powering over 16% of the web</a>, but it’s true that news is becoming incredibly accessible. In short, news is everywhere.</p>\n<p>Speaking of WordPress in general, you can of course acquire official direct news from <a href=\"http://wordpress.org/news/\">WordPress News</a>, but you can also take a peak behind the curtain and follow news in the making at <a href=\"http://make.wordpress.org\">Make WordPress.org</a>. Though it’s only specific to the <a href=\"http://wordpress.com\">WordPress.com</a> blogging platform, <a href=\"http://en.blog.wordpress.com\">WordPress.com News</a> is also worth watching for WordPress development news, as WordPress.com users often get access to new WordPress features before they’re released, so you’ll be able to try new features rather than just read about them.</p>\n<p>There’s more news than just direct official news, like I said earlier, it’s everywhere. You could subscribe to every general news site, every core developer’s personal blog, every premium theme shop, and every plugin developer, but why not subscribe to a few curated news sources instead? I guess you could call <a href=\"http://planet.wordpress.org\">WordPress Planet</a> the official curated news source, but it’s really just a collection of all news items from a particular set of curated blogs. For specific news items curated from sources through the entire WordPress community, subscribe to <a href=\"http://poststat.us\">Post Status</a>, and don’t neglect the power of allowing the folks you follow on <a href=\"http://twitter.com\">Twitter</a>, <a href=\"http://plus.google.com\">Google+</a>, and/or <a href=\"http://www.facebook.com\">Facebook</a> to curate news for you.</p>\n<p>Speaking of the WordPress community, you should <a href=\"http://codex.wordpress.org/Contributing_to_WordPress\">get involved</a> if you aren’t already. If you don’t even use WordPress yet, it’s time to get started <a href=\"http://codex.wordpress.org/Getting_Started_with_WordPress\">with either WordPress.org</a> or <a href=\"http://learn.wordpress.com/get-started/\">with WordPress.com</a>, share your thoughts with the world, and maybe spread some WordPress news on your blog too.</p>\n<p>The news is out there, and it’s well within your reach. If you can’t find the news, it’s time to make your own.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/ah3QRPNnlhs\" 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, 31 Mar 2013 00:05: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:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:44:\"bbPress: bbPress 2.3 – Release Candidate 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://bbpress.org/?p=131092\";s:7:\"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://bbpress.org/blog/2013/03/bbpress-2-3-release-candidate-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1175:\"<p>Today the bbPress team is happy to announce <a href=\"http://downloads.wordpress.org/plugin/bbpress.zip\">bbPress 2.3, release candidate 1</a>.</p>\n<p>bbPress 2.3 introduces forum-specific search functionality, so that your users are able to search your forum posts without interfering with your blog posts. It simplifies the fancy topic and reply editors, enabling only the functionality your users should see. Lastly, we’ve included more forum migration tools to help you transition to bbPress from Vanilla, Mingle, and SimplePress.</p>\n<p>With that, we bring you <a href=\"http://downloads.wordpress.org/plugin/bbpress.zip\">bbPress 2.3, Release Candidate 1</a>. Please try it, either on a test site, or wherever you feel comfortable running it, and <a href=\"http://bbpress.trac.wordpress.org\">let us know if you run into any issues</a>.</p>\n<p>Oh yeah… If you want to stay on the bleeding edge of releases, check out the <a href=\"http://wordpress.org/extend/plugins/bbpress-beta-tester/\">bbPress Beta Tester</a> plugin! It’s really neat. <img src=\"http://bbpress.org/wordpress/wp-includes/images/smilies/icon_smile.gif\" alt=\":)\" class=\"wp-smiley\" /> </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, 27 Mar 2013 21:14:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:32:\"WordPress.tv Blog: Get Involved!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"http://wptvblog.wordpress.com/?p=291\";s:7:\"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:49:\"http://blog.wordpress.tv/2013/03/18/get-involved/\";s: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:1589:\"<p>WordPress.tv is now open for video submissions from the WordPress community.</p>\n<p>Do you record your WordPress meetup? <a href=\"http://wordpress.tv/submit-video/\">Submit it to WordPress.tv!</a> Do you record WordPress screencast tutorials? <a href=\"http://wordpress.tv/submit-video/\">Submit them to WordPress.tv!</a> Do you create some other form of WP video awesomesauce that would benefit the community? WordPress.tv might be just the place for it.</p>\n<p>Fair warning: Our intrepid group of WordPress.tv event video moderators already works hard to review and publish WordCamp videos, and if WordPress.tv is suddenly flooded with video submissions, they may take a while to get around to reviewing and publishing your video. Please be patient as we iterate toward success… and if you’re interested in donating your time toward becoming a WordPress.tv moderator, please apply <a href=\"http://wordpress.tv/apply-to-be-a-wordpress-tv-moderator/\">here</a>. If this takes off like we think it might, we will definitely need some extra eyes!</p>\n<p>Thanks in advance for helping to make WordPress.tv an even more fantastic resource. If you have questions about this, please don’t hesitate to ask.</p>\n<br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptvblog.wordpress.com/291/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptvblog.wordpress.com/291/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=blog.wordpress.tv&blog=5310177&post=291&subd=wptvblog&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, 18 Mar 2013 08:57: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:16:\"Andrea Middleton\";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:48:\"Joseph: I am Speaking at the OpenWest Conference\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://josephscott.org/?p=7033\";s:7:\"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://josephscott.org/archives/2013/03/i-am-speaking-at-the-openwest-conference/\";s: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:1818:\"<p><a href=\"http://www.openwest.org/\"><img class=\"alignleft\" alt=\"\" src=\"http://i2.wp.com/www.openwest.org/wp-content/uploads/2013/01/speaker_300.jpg?resize=300%2C388\" /></a></p>\n<p>The <a href=\"http://www.openwest.org/\">OpenWest Conference</a> is happening May 2-4, 2013 (formerly the Utah Open Source Conference) at Utah Valley University in Orem, Utah.</p>\n<p>This year the <a href=\"http://www.openwest.org/keynote/\">keynote speakers</a> are Rasmus Lerdorf, creator of PHP, and Mark Callaghan, lead of the MySQL engineering team at Facebook.</p>\n<p>For my part I’ll be giving three different presentations this time around. First up is “Simple Filesystems with Python and FUSE”, where I’ll cover the basics of getting a simple filesystem up and running written in Python using the FUSE library. Next up is “Site Testing with CasperJS”, which is an intro to using <a href=\"http://casperjs.org/\">CasperJS</a> to run user tests against your site. Last, but not least, is “Scaling WordPress”, where I’ll talk about some of the methods that WordPress.com (the largest WordPress install in the world) uses to host tens of millions of sites that add up to billions of page views per month.</p>\n<p>I tried to keep my session titles direct and to the point. At times there will up to ten sessions running at once ( <a href=\"http://www.openwest.org/custom/grid.php\">OpenWest session schedule</a> ), so I wanted people to be able to tell at a glance what my sessions are about.</p>\n<p><a href=\"http://www.openwest.org/tickets/\">Tickets for OpenWest</a> are available at $80. Every open source group in the area has been given a discount code though, so you can bring that down significantly.</p>\n<p>If you’ll be at the OpenWest conference be sure to say hi.</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, 12 Mar 2013 16:13: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: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: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:56:\"Lorelle on WP: WordPress Anniversary: WordPress and Evil\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"http://lorelle.wordpress.com/?p=8342\";s:7:\"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://lorelle.wordpress.com/2013/03/11/wordpress-anniversary-wordpress-and-evil/\";s: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:483:\"As I look back on the ten years of WordPress, there is a dark side to blogging. While many blamed WordPress for the evil, like guns, WordPress doesn’t cause evil, people cause evil. In fact, WordPress, Automattic, and the WordPress Community has fought longer and harder against the evil doers in the world than most [...]<img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=lorelle.wordpress.com&blog=72&post=8342&subd=lorelle&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, 11 Mar 2013 20:29: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Lorelle VanFossen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sun, 05 May 2013 14:06:22 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:14:\"content-length\";s:6:\"242655\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Sun, 05 May 2013 13:45:26 GMT\";s:4:\"x-nc\";s:11:\"HIT lax 249\";s:13:\"accept-ranges\";s:5:\"bytes\";}s:5:\"build\";s:14:\"20121202214312\";}','no');
INSERT INTO `wp_options` VALUES (381,'_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c','1367805983','no');
INSERT INTO `wp_options` VALUES (382,'_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c','1367762783','no');
INSERT INTO `wp_options` VALUES (383,'_transient_timeout_dash_aa95765b5cc111c56d5993d476b1c2f0','1367805983','no');
INSERT INTO `wp_options` VALUES (384,'_transient_dash_aa95765b5cc111c56d5993d476b1c2f0','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2013/05/05/david-tufts-web-apps-for-the-masses-2/\' title=\' […]\'>WordPress.tv: David Tufts: Web Apps for the Masses</a></li><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2013/05/04/joe-boydston-wordpress-is-saving-journalism-2/\' title=\' […]\'>WordPress.tv: Joe Boydston: WordPress is Saving Journalism</a></li><li><a class=\'rsswidget\' href=\'http://alexking.org/blog/2013/05/04/capsule-hotkeys-queue\' title=\'It’s been very gratifying to see people continuing to discover Capsule this week, and seeing it resonate with them. This was typed into the demo earlier today: This software is an example of a thing that everyone wants but doesn’t exist until a great idea suddenly comes and voila! it appears! There are a couple of new features committed to GitHub that you ca […]\'>Alex King: Capsule Hotkeys and Background Queue</a></li><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2013/05/04/evan-mullins-your-firstborn-child-theme-child-themes-101102/\' title=\' […]\'>WordPress.tv: Evan Mullins: Your Firstborn Child Theme- Child Themes 101+102</a></li><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2013/05/03/dr-lisa-richardson-get-outta-my-head-and-onto-the-screen/\' title=\' […]\'>WordPress.tv: Dr. Lisa Richardson: Get Outta My Head and Onto the Screen!</a></li></ul></div>','no');
INSERT INTO `wp_options` VALUES (385,'_transient_timeout_feed_57bc725ad6568758915363af670fd8bc','1367805983','no');
INSERT INTO `wp_options` VALUES (386,'_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:\"Sun, 05 May 2013 13:57: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:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:15:{i:0;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Zoom Image\";s:7:\"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/zoom-image/#post-52830\";s: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 May 2013 19:33: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"52830@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:91:\"Add zoom efect over WooCommerce featured image and thumbnails in a simple and elegant mode.\";s: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:\"Alexandru Muscalu\";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:6:\"MuPost\";s:7:\"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/mupost/#post-51890\";s: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, 11 Apr 2013 10:40: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"51890@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:\"Allow display posts form one site to all sites of a Wordpress MU network installation. \nMerge the post from one category of first site to the second c\";s: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:\"igorcek\";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:\"disable insecure 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.org/extend/plugins/disable-insecure-features/#post-52807\";s: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 May 2013 06:46:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"52807@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 automatically disables pingbacks on old posts and pages. You can disable pingbacks for future posts and pages via a built-in wordpress feature. T\";s: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:\"planetzuda\";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:14:\"WP-Photosphere\";s:7:\"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/wp-photosphere/#post-52886\";s: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, 04 May 2013 14:23:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"52886@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:\"Bindet via Shortcode eine Photosphere-Aufnahme in Artkeln und Seiten ein.\";s: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:\"Marcelismus\";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:18:\"Colored Categories\";s:7:\"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/colored-categories/#post-52766\";s: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, 01 May 2013 02:56: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:\"52766@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:134:\"Use this plugin to attach a color to each of your categories, Great for creating a distinguishing look for each category on your site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"mountaininja\";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:28:\"BP Group Hierarchy Propagate\";s:7:\"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/bp-group-hierarchy-propagate/#post-52554\";s: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, 25 Apr 2013 14:48:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"52554@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"Enables propagation of Activity Items up a hierarchy of BuddyPress Groups established by the BP Group Hierarchy 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:6:\"needle\";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:21:\"Widgetized Categories\";s:7:\"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/widgetized-categories/#post-52812\";s: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 May 2013 08:48: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:\"52812@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"Widgetized categories is the plugin that allows the user to add the categories widget in the sidebar with additional options.\";s: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:\"inselpark\";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:21:\"Alchemist Ajax Upload\";s:7:\"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/alchemist-ajax-upload/#post-52815\";s: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 May 2013 09:57:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"52815@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:\"Alchemist Ajax Upload is a wordpress plugin which allows you to upload image in front end.\";s: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:\"Rajesh T\";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:25:\"Hello Dolly For Your Song\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.org/extend/plugins/hello-dolly-for-your-song/#post-52858\";s: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, 03 May 2013 21:31:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"52858@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:\"This simple plugin is an extended version of the famous hello dolly plugin by Matt Mullenweg. It shows the songtext of any song in the admin head.\";s: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:\"unmus\";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:10:\"PrintPress\";s:7:\"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/print2press/#post-52813\";s: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 May 2013 09:01: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"52813@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"Generates a printable version of your WordPress posts and pages.\";s: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:\"Abid Omar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"One More Pageview by Keepify\";s:7:\"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/one-more-pageview-by-keepify/#post-52146\";s: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, 17 Apr 2013 01:18: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:\"52146@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:\"Convert abandoning visitors with targeted offers before they leave. Customize your offers.\";s: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:\"rbgraham\";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:17:\"iCafe VPP 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:65:\"http://wordpress.org/extend/plugins/icafe-vpp-manager/#post-52088\";s: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, 15 Apr 2013 22:39: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"52088@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:\"iCafe VPP Manager automates many of the tasks associated with manageing Apple's Volume Purchase Program. (VERY BETA)\";s: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:\"cnilsson\";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:18:\"Lumia Testimonials\";s:7:\"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/lumia-testimonials/#post-52697\";s: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, 29 Apr 2013 17:11:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"52697@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:95:\"Testimonials plugin allows you to display random or selected testimonials, or text with images.\";s: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:\"Jinesh.P.V\";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:14:\"lumia-bxslider\";s:7:\"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/lumia-bxslider/#post-52481\";s: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, 24 Apr 2013 04:38:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"52481@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:107:\"creates a Slider with post thumbnails in your posts configured for a particular category of your wordpress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Jinesh.P.V\";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:40:\"WP-EVS (EasyVideoSuite WordPress plugin)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://wordpress.org/extend/plugins/wp-evs/#post-52056\";s: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, 15 Apr 2013 13:32: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:\"52056@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:429:\"<p>WP EVS is the official plugin from the makers of EasyVideoSuite. This plugin hooks in to your installation of EasyVideoSuite and makes it point-and-click simple to insert a video, playlist or split test into your WordPress blog's posts or pages.</p>\n<p>It also adds in your installation to WordPress' built-in list of oEmbed providers, so you can use oEmbed for to post your videos even easier than ever before!\n</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"EasyVideoSuite\";s: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:7:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sun, 05 May 2013 14:06:23 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:29:\"Thu, 02 May 2013 19:33:28 GMT\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}s:5:\"build\";s:14:\"20121202214312\";}','no');
INSERT INTO `wp_options` VALUES (387,'_transient_timeout_feed_mod_57bc725ad6568758915363af670fd8bc','1367805983','no');
INSERT INTO `wp_options` VALUES (388,'_transient_feed_mod_57bc725ad6568758915363af670fd8bc','1367762783','no');
INSERT INTO `wp_options` VALUES (389,'_transient_timeout_dash_de3249c4736ad3bd2cd29147c4a0d43e','1367805983','no');
INSERT INTO `wp_options` VALUES (390,'_transient_dash_de3249c4736ad3bd2cd29147c4a0d43e','<h4>Most Popular</h4>\n<h5><a href=\'http://wordpress.org/extend/plugins/woocommerce/\'>WooCommerce - excelling eCommerce</a></h5> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=woocommerce&_wpnonce=6fefef0edc&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'WooCommerce - excelling eCommerce\'>Install</a>)</span>\n<p>WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.</p>\n<h4>Newest Plugins</h4>\n<h5><a href=\'http://wordpress.org/extend/plugins/zoom-image/\'>Zoom Image</a></h5> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=zoom-image&_wpnonce=b70e67d9f4&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'Zoom Image\'>Install</a>)</span>\n<p>Add zoom efect over WooCommerce featured image and thumbnails in a simple and elegant mode.</p>\n','no');
INSERT INTO `wp_options` VALUES (395,'_site_transient_theme_roots','a:3:{s:12:\"roboto-theme\";s:7:\"/themes\";s:12:\"twentyeleven\";s:7:\"/themes\";s:12:\"twentytwelve\";s:7:\"/themes\";}','yes');
INSERT INTO `wp_options` VALUES (396,'_site_transient_timeout_theme_roots','1367776060','yes');
/*!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=InnoDB AUTO_INCREMENT=1424 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 (4,5,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (5,5,'_wp_page_template','front.php');
INSERT INTO `wp_postmeta` VALUES (6,5,'_edit_lock','1367376148:1');
INSERT INTO `wp_postmeta` VALUES (13,9,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (14,9,'_wp_page_template','membership.php');
INSERT INTO `wp_postmeta` VALUES (15,9,'_edit_lock','1367766425:1');
INSERT INTO `wp_postmeta` VALUES (16,10,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (17,10,'_wp_page_template','booking.php');
INSERT INTO `wp_postmeta` VALUES (18,10,'_edit_lock','1367777853:1');
INSERT INTO `wp_postmeta` VALUES (22,12,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (23,12,'_edit_lock','1367703099:1');
INSERT INTO `wp_postmeta` VALUES (24,12,'_wp_page_template','default');
INSERT INTO `wp_postmeta` VALUES (27,22,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (29,22,'position','normal');
INSERT INTO `wp_postmeta` VALUES (30,22,'layout','no_box');
INSERT INTO `wp_postmeta` VALUES (31,22,'hide_on_screen','');
INSERT INTO `wp_postmeta` VALUES (32,22,'_edit_lock','1367707466:1');
INSERT INTO `wp_postmeta` VALUES (33,22,'field_517c0b127880d','a:8:{s:3:\"key\";s:19:\"field_517c0b127880d\";s:5:\"label\";s:9:\"Show Info\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"0\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:0;}');
INSERT INTO `wp_postmeta` VALUES (34,22,'field_517c09c678809','a:11:{s:3:\"key\";s:19:\"field_517c09c678809\";s:5:\"label\";s:4:\"Date\";s:4:\"name\";s:4:\"date\";s:4:\"type\";s:11:\"date_picker\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:11:\"date_format\";s:6:\"yymmdd\";s:14:\"display_format\";s:8:\"dd/mm/yy\";s:9:\"first_day\";s:1:\"1\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:2;}');
INSERT INTO `wp_postmeta` VALUES (35,22,'field_517c0a737880a','a:13:{s:3:\"key\";s:19:\"field_517c0a737880a\";s:5:\"label\";s:4:\"Time\";s:4:\"name\";s:4:\"time\";s:4:\"type\";s:16:\"date_time_picker\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:9:\"show_date\";s:5:\"false\";s:11:\"date_format\";s:8:\"mm/dd/yy\";s:11:\"time_format\";s:7:\"h:mm tt\";s:16:\"show_week_number\";s:5:\"false\";s:6:\"picker\";s:6:\"select\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:3;}');
INSERT INTO `wp_postmeta` VALUES (36,22,'field_517c0abd7880b','a:9:{s:3:\"key\";s:19:\"field_517c0abd7880b\";s:5:\"label\";s:5:\"Price\";s:4:\"name\";s:5:\"price\";s:4:\"type\";s:6:\"number\";s:12:\"instructions\";s:61:\"If you do not choose a price the event will display as \"Free\"\";s:8:\"required\";s:1:\"0\";s:13:\"default_value\";s:0:\"\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:4;}');
INSERT INTO `wp_postmeta` VALUES (37,22,'field_517c0aed7880c','a:10:{s:3:\"key\";s:19:\"field_517c0aed7880c\";s:5:\"label\";s:11:\"Description\";s:4:\"name\";s:11:\"description\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:2:\"br\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:5;}');
INSERT INTO `wp_postmeta` VALUES (38,22,'field_517c0b297880e','a:8:{s:3:\"key\";s:19:\"field_517c0b297880e\";s:5:\"label\";s:9:\"Band Info\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"0\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:6;}');
INSERT INTO `wp_postmeta` VALUES (39,22,'field_517c0b367880f','a:8:{s:3:\"key\";s:19:\"field_517c0b367880f\";s:5:\"label\";s:12:\"Sharing Info\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"0\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:8;}');
INSERT INTO `wp_postmeta` VALUES (40,22,'field_517c0b4a78810','a:13:{s:3:\"key\";s:19:\"field_517c0b4a78810\";s:5:\"label\";s:4:\"Band\";s:4:\"name\";s:4:\"band\";s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"0\";s:10:\"sub_fields\";a:9:{i:0;a:9:{s:3:\"key\";s:19:\"field_517c0b7678811\";s:5:\"label\";s:9:\"Band Name\";s:4:\"name\";s:9:\"band_name\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:12:\"column_width\";s:0:\"\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:4:\"none\";s:8:\"order_no\";i:0;}i:1;a:9:{s:3:\"key\";s:19:\"field_517c0b9978812\";s:5:\"label\";s:10:\"Band Photo\";s:4:\"name\";s:10:\"band_photo\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:12:\"column_width\";s:0:\"\";s:11:\"save_format\";s:2:\"id\";s:12:\"preview_size\";s:9:\"thumbnail\";s:8:\"order_no\";i:1;}i:2;a:9:{s:3:\"key\";s:19:\"field_517c0bb078813\";s:5:\"label\";s:9:\"Band Site\";s:4:\"name\";s:9:\"band_site\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:63:\"Enter band\'s official website or label page: http://example.com\";s:12:\"column_width\";s:0:\"\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:4:\"none\";s:8:\"order_no\";i:2;}i:3;a:9:{s:3:\"key\";s:19:\"field_517c0bf478814\";s:5:\"label\";s:13:\"Band Facebook\";s:4:\"name\";s:7:\"band_fb\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:65:\"Enter band\'s facebook page address: https://facebook.com/bandname\";s:12:\"column_width\";s:0:\"\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:4:\"none\";s:8:\"order_no\";i:3;}i:4;a:9:{s:3:\"key\";s:19:\"field_517c0c7c42d52\";s:5:\"label\";s:13:\"Band Bandcamp\";s:4:\"name\";s:7:\"band_bc\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:58:\"Enter band\'s bandcamp address: http://example.bandcamp.com\";s:12:\"column_width\";s:0:\"\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:4:\"none\";s:8:\"order_no\";i:4;}i:5;a:9:{s:3:\"key\";s:19:\"field_517c0caa42d53\";s:5:\"label\";s:12:\"Band Myspace\";s:4:\"name\";s:7:\"band_ms\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:60:\"Enter band\'s myspace address: http://www.myspace.com/example\";s:12:\"column_width\";s:0:\"\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:4:\"none\";s:8:\"order_no\";i:5;}i:6;a:9:{s:3:\"key\";s:19:\"field_517c0ff8674e9\";s:5:\"label\";s:12:\"Band Twitter\";s:4:\"name\";s:7:\"band_tw\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:12:\"column_width\";s:0:\"\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:4:\"none\";s:8:\"order_no\";i:6;}i:7;a:9:{s:3:\"key\";s:19:\"field_517c0ce142d54\";s:5:\"label\";s:8:\"Band Bio\";s:4:\"name\";s:8:\"band_bio\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:12:\"column_width\";s:0:\"\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:2:\"br\";s:8:\"order_no\";i:7;}i:8;a:10:{s:3:\"key\";s:19:\"field_517c0cf142d55\";s:5:\"label\";s:10:\"Band Media\";s:4:\"name\";s:10:\"band_media\";s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:51:\"Enter embed code for a single video or audio player\";s:12:\"column_width\";s:0:\"\";s:13:\"default_value\";s:0:\"\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";s:2:\"no\";s:8:\"order_no\";i:8;}}s:7:\"row_min\";s:1:\"0\";s:9:\"row_limit\";s:0:\"\";s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:7:\"Add Row\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:2:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:7;}');
INSERT INTO `wp_postmeta` VALUES (42,22,'field_517c0d2142d56','a:10:{s:3:\"key\";s:19:\"field_517c0d2142d56\";s:5:\"label\";s:13:\"Facebook RSVP\";s:4:\"name\";s:13:\"facebook_rsvp\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:69:\"Enter facebook event address: https://www.facebook.com/events/example\";s:8:\"required\";s:1:\"0\";s:13:\"default_value\";s:38:\"https://www.facebook.com/robotoproject\";s:10:\"formatting\";s:4:\"none\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:9;}');
INSERT INTO `wp_postmeta` VALUES (43,22,'field_517c0d6b42d57','a:10:{s:3:\"key\";s:19:\"field_517c0d6b42d57\";s:5:\"label\";s:5:\"Flyer\";s:4:\"name\";s:5:\"flyer\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"0\";s:11:\"save_format\";s:2:\"id\";s:12:\"preview_size\";s:9:\"thumbnail\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:10;}');
INSERT INTO `wp_postmeta` VALUES (45,24,'_wp_attached_file','2013/04/mcpheeters-web.jpg');
INSERT INTO `wp_postmeta` VALUES (46,24,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:928;s:4:\"file\";s:26:\"2013/04/mcpheeters-web.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"mcpheeters-web-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"mcpheeters-web-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-large\";a:4:{s:4:\"file\";s:26:\"mcpheeters-web-720x420.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"widescreen-medium\";a:4:{s:4:\"file\";s:26:\"mcpheeters-web-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-small\";a:4:{s:4:\"file\";s:26:\"mcpheeters-web-250x140.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cinema-medium\";a:4:{s:4:\"file\";s:26:\"mcpheeters-web-500x200.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portrait-small\";a:4:{s:4:\"file\";s:26:\"mcpheeters-web-250x322.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:322;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"square-small\";a:4:{s:4:\"file\";s:26:\"mcpheeters-web-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}');
INSERT INTO `wp_postmeta` VALUES (47,23,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (48,23,'date','20130919');
INSERT INTO `wp_postmeta` VALUES (49,23,'_date','field_517c09c678809');
INSERT INTO `wp_postmeta` VALUES (50,23,'time','1367780400');
INSERT INTO `wp_postmeta` VALUES (51,23,'_time','field_517c0a737880a');
INSERT INTO `wp_postmeta` VALUES (52,23,'price','5');
INSERT INTO `wp_postmeta` VALUES (53,23,'_price','field_517c0abd7880b');
INSERT INTO `wp_postmeta` VALUES (54,23,'description','Record release rager');
INSERT INTO `wp_postmeta` VALUES (55,23,'_description','field_517c0aed7880c');
INSERT INTO `wp_postmeta` VALUES (56,23,'band_0_band_name','Code Orange Kids');
INSERT INTO `wp_postmeta` VALUES (57,23,'_band_0_band_name','field_517c0b7678811');
INSERT INTO `wp_postmeta` VALUES (58,23,'band_0_band_photo','27');
INSERT INTO `wp_postmeta` VALUES (59,23,'_band_0_band_photo','field_517c0b9978812');
INSERT INTO `wp_postmeta` VALUES (60,23,'band_0_band_site','http://codeorangekids.tumblr.com/');
INSERT INTO `wp_postmeta` VALUES (61,23,'_band_0_band_site','field_517c0bb078813');
INSERT INTO `wp_postmeta` VALUES (62,23,'band_0_band_fb','https://www.facebook.com/codeorangekids');
INSERT INTO `wp_postmeta` VALUES (63,23,'_band_0_band_fb','field_517c0bf478814');
INSERT INTO `wp_postmeta` VALUES (64,23,'band_0_band_bc','http://codeorangekids.bandcamp.com/');
INSERT INTO `wp_postmeta` VALUES (65,23,'_band_0_band_bc','field_517c0c7c42d52');
INSERT INTO `wp_postmeta` VALUES (66,23,'band_0_band_ms','http://www.myspace.com/thecodeorangekids');
INSERT INTO `wp_postmeta` VALUES (67,23,'_band_0_band_ms','field_517c0caa42d53');
INSERT INTO `wp_postmeta` VALUES (68,23,'band_0_band_bio','Pittsburgh, Pennsylvania\'s Code Orange Kids remind us off our own embryonic days in the aggressive music scene. They do things their way, creatively cutting their own path through it all. Unconcerned with the direction of other artists, their brand of gritty hardcore/punk is simply refreshing. Merging cryptic melody, dirty hardcore power, and intense dirge into their own uniquely inspired sound.');
INSERT INTO `wp_postmeta` VALUES (69,23,'_band_0_band_bio','field_517c0ce142d54');
INSERT INTO `wp_postmeta` VALUES (70,23,'band_0_band_media','http://www.youtube.com/watch?v=SpVa-x7YndY');
INSERT INTO `wp_postmeta` VALUES (71,23,'_band_0_band_media','field_517c0cf142d55');
INSERT INTO `wp_postmeta` VALUES (72,23,'band_1_band_name','Hounds of Hate');
INSERT INTO `wp_postmeta` VALUES (73,23,'_band_1_band_name','field_517c0b7678811');
INSERT INTO `wp_postmeta` VALUES (74,23,'band_1_band_photo','25');
INSERT INTO `wp_postmeta` VALUES (75,23,'_band_1_band_photo','field_517c0b9978812');
INSERT INTO `wp_postmeta` VALUES (76,23,'band_1_band_site','');
INSERT INTO `wp_postmeta` VALUES (77,23,'_band_1_band_site','field_517c0bb078813');
INSERT INTO `wp_postmeta` VALUES (78,23,'band_1_band_fb','https://www.facebook.com/Hounds.of.Hate');
INSERT INTO `wp_postmeta` VALUES (79,23,'_band_1_band_fb','field_517c0bf478814');
INSERT INTO `wp_postmeta` VALUES (80,23,'band_1_band_bc','http://houndsofhate.bandcamp.com/');
INSERT INTO `wp_postmeta` VALUES (81,23,'_band_1_band_bc','field_517c0c7c42d52');
INSERT INTO `wp_postmeta` VALUES (82,23,'band_1_band_ms','');
INSERT INTO `wp_postmeta` VALUES (83,23,'_band_1_band_ms','field_517c0caa42d53');
INSERT INTO `wp_postmeta` VALUES (84,23,'band_1_band_bio','');
INSERT INTO `wp_postmeta` VALUES (85,23,'_band_1_band_bio','field_517c0ce142d54');
INSERT INTO `wp_postmeta` VALUES (86,23,'band_1_band_media','http://www.youtube.com/watch?v=ULPWPSghOAk');
INSERT INTO `wp_postmeta` VALUES (87,23,'_band_1_band_media','field_517c0cf142d55');
INSERT INTO `wp_postmeta` VALUES (88,23,'band','3');
INSERT INTO `wp_postmeta` VALUES (89,23,'_band','field_517c0b4a78810');
INSERT INTO `wp_postmeta` VALUES (90,23,'facebook_rsvp','https://www.facebook.com/robotoproject');
INSERT INTO `wp_postmeta` VALUES (91,23,'_facebook_rsvp','field_517c0d2142d56');
INSERT INTO `wp_postmeta` VALUES (92,23,'flyer','24');
INSERT INTO `wp_postmeta` VALUES (93,23,'_flyer','field_517c0d6b42d57');
INSERT INTO `wp_postmeta` VALUES (94,23,'_edit_lock','1367739349:1');
INSERT INTO `wp_postmeta` VALUES (95,23,'_wp_old_slug','23');
INSERT INTO `wp_postmeta` VALUES (98,25,'_wp_attached_file','2013/04/hoh.jpg');
INSERT INTO `wp_postmeta` VALUES (99,25,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1374;s:6:\"height\";i:950;s:4:\"file\";s:15:\"2013/04/hoh.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"hoh-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"hoh-300x207.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"hoh-1024x708.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:708;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-large\";a:4:{s:4:\"file\";s:15:\"hoh-750x420.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"widescreen-medium\";a:4:{s:4:\"file\";s:15:\"hoh-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-small\";a:4:{s:4:\"file\";s:15:\"hoh-250x140.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cinema-medium\";a:4:{s:4:\"file\";s:15:\"hoh-500x200.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portrait-small\";a:4:{s:4:\"file\";s:15:\"hoh-250x172.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"square-small\";a:4:{s:4:\"file\";s:15:\"hoh-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:4.5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D100\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1304184056;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}');
INSERT INTO `wp_postmeta` VALUES (100,23,'band_0_band_tw','https://twitter.com/codeorangekids');
INSERT INTO `wp_postmeta` VALUES (101,23,'_band_0_band_tw','field_517c0ff8674e9');
INSERT INTO `wp_postmeta` VALUES (102,23,'band_1_band_tw','');
INSERT INTO `wp_postmeta` VALUES (103,23,'_band_1_band_tw','field_517c0ff8674e9');
INSERT INTO `wp_postmeta` VALUES (104,23,'band_2_band_name','Heartless');
INSERT INTO `wp_postmeta` VALUES (105,23,'_band_2_band_name','field_517c0b7678811');
INSERT INTO `wp_postmeta` VALUES (106,23,'band_2_band_photo','72');
INSERT INTO `wp_postmeta` VALUES (107,23,'_band_2_band_photo','field_517c0b9978812');
INSERT INTO `wp_postmeta` VALUES (108,23,'band_2_band_site','');
INSERT INTO `wp_postmeta` VALUES (109,23,'_band_2_band_site','field_517c0bb078813');
INSERT INTO `wp_postmeta` VALUES (110,23,'band_2_band_fb','');
INSERT INTO `wp_postmeta` VALUES (111,23,'_band_2_band_fb','field_517c0bf478814');
INSERT INTO `wp_postmeta` VALUES (112,23,'band_2_band_bc','');
INSERT INTO `wp_postmeta` VALUES (113,23,'_band_2_band_bc','field_517c0c7c42d52');
INSERT INTO `wp_postmeta` VALUES (114,23,'band_2_band_ms','');
INSERT INTO `wp_postmeta` VALUES (115,23,'_band_2_band_ms','field_517c0caa42d53');
INSERT INTO `wp_postmeta` VALUES (116,23,'band_2_band_tw','');
INSERT INTO `wp_postmeta` VALUES (117,23,'_band_2_band_tw','field_517c0ff8674e9');
INSERT INTO `wp_postmeta` VALUES (118,23,'band_2_band_bio','');
INSERT INTO `wp_postmeta` VALUES (119,23,'_band_2_band_bio','field_517c0ce142d54');
INSERT INTO `wp_postmeta` VALUES (120,23,'band_2_band_media','');
INSERT INTO `wp_postmeta` VALUES (121,23,'_band_2_band_media','field_517c0cf142d55');
INSERT INTO `wp_postmeta` VALUES (122,22,'field_517c11852111a','a:10:{s:3:\"key\";s:19:\"field_517c11852111a\";s:5:\"label\";s:10:\"Lead Image\";s:4:\"name\";s:10:\"lead_image\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:11:\"save_format\";s:2:\"id\";s:12:\"preview_size\";s:9:\"thumbnail\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:1;}');
INSERT INTO `wp_postmeta` VALUES (124,27,'_wp_attached_file','2013/04/codeorangekids.jpg');
INSERT INTO `wp_postmeta` VALUES (125,27,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1486;s:4:\"file\";s:26:\"2013/04/codeorangekids.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"codeorangekids-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"codeorangekids-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"codeorangekids-1024x760.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-large\";a:4:{s:4:\"file\";s:26:\"codeorangekids-750x420.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"widescreen-medium\";a:4:{s:4:\"file\";s:26:\"codeorangekids-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-small\";a:4:{s:4:\"file\";s:26:\"codeorangekids-250x140.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cinema-medium\";a:4:{s:4:\"file\";s:26:\"codeorangekids-500x200.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portrait-small\";a:4:{s:4:\"file\";s:26:\"codeorangekids-250x185.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"square-small\";a:4:{s:4:\"file\";s:26:\"codeorangekids-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}');
INSERT INTO `wp_postmeta` VALUES (126,23,'lead_image','27');
INSERT INTO `wp_postmeta` VALUES (127,23,'_lead_image','field_517c11852111a');
INSERT INTO `wp_postmeta` VALUES (128,28,'_menu_item_type','post_type');
INSERT INTO `wp_postmeta` VALUES (129,28,'_menu_item_menu_item_parent','0');
INSERT INTO `wp_postmeta` VALUES (130,28,'_menu_item_object_id','12');
INSERT INTO `wp_postmeta` VALUES (131,28,'_menu_item_object','page');
INSERT INTO `wp_postmeta` VALUES (132,28,'_menu_item_target','');
INSERT INTO `wp_postmeta` VALUES (133,28,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (134,28,'_menu_item_xfn','');
INSERT INTO `wp_postmeta` VALUES (135,28,'_menu_item_url','');
INSERT INTO `wp_postmeta` VALUES (137,29,'_menu_item_type','post_type');
INSERT INTO `wp_postmeta` VALUES (138,29,'_menu_item_menu_item_parent','0');
INSERT INTO `wp_postmeta` VALUES (139,29,'_menu_item_object_id','10');
INSERT INTO `wp_postmeta` VALUES (140,29,'_menu_item_object','page');
INSERT INTO `wp_postmeta` VALUES (141,29,'_menu_item_target','');
INSERT INTO `wp_postmeta` VALUES (142,29,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (143,29,'_menu_item_xfn','');
INSERT INTO `wp_postmeta` VALUES (144,29,'_menu_item_url','');
INSERT INTO `wp_postmeta` VALUES (146,30,'_menu_item_type','post_type');
INSERT INTO `wp_postmeta` VALUES (147,30,'_menu_item_menu_item_parent','0');
INSERT INTO `wp_postmeta` VALUES (148,30,'_menu_item_object_id','9');
INSERT INTO `wp_postmeta` VALUES (149,30,'_menu_item_object','page');
INSERT INTO `wp_postmeta` VALUES (150,30,'_menu_item_target','');
INSERT INTO `wp_postmeta` VALUES (151,30,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (152,30,'_menu_item_xfn','');
INSERT INTO `wp_postmeta` VALUES (153,30,'_menu_item_url','');
INSERT INTO `wp_postmeta` VALUES (182,34,'_menu_item_type','custom');
INSERT INTO `wp_postmeta` VALUES (183,34,'_menu_item_menu_item_parent','0');
INSERT INTO `wp_postmeta` VALUES (184,34,'_menu_item_object_id','34');
INSERT INTO `wp_postmeta` VALUES (185,34,'_menu_item_object','custom');
INSERT INTO `wp_postmeta` VALUES (186,34,'_menu_item_target','');
INSERT INTO `wp_postmeta` VALUES (187,34,'_menu_item_classes','a:1:{i:0;s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (188,34,'_menu_item_xfn','');
INSERT INTO `wp_postmeta` VALUES (189,34,'_menu_item_url','/roboto/shows');
INSERT INTO `wp_postmeta` VALUES (191,35,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (192,35,'field_517c1ccf9d8f8','a:11:{s:3:\"key\";s:19:\"field_517c1ccf9d8f8\";s:5:\"label\";s:5:\"About\";s:4:\"name\";s:5:\"about\";s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:13:\"default_value\";s:0:\"\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";s:2:\"no\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:0;}');
INSERT INTO `wp_postmeta` VALUES (193,35,'field_517c1d1a9d8f9','a:13:{s:3:\"key\";s:19:\"field_517c1d1a9d8f9\";s:5:\"label\";s:8:\"Upcoming\";s:4:\"name\";s:8:\"upcoming\";s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:63:\"START AND END DATE ARE MANDATORY FOR THIS TO FUNCTION CORRECTLY\";s:8:\"required\";s:1:\"0\";s:10:\"sub_fields\";a:7:{i:0;a:9:{s:3:\"key\";s:19:\"field_517c1d309d8fa\";s:5:\"label\";s:5:\"Image\";s:4:\"name\";s:5:\"image\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:12:\"column_width\";s:0:\"\";s:11:\"save_format\";s:2:\"id\";s:12:\"preview_size\";s:9:\"thumbnail\";s:8:\"order_no\";i:0;}i:1;a:10:{s:3:\"key\";s:19:\"field_517c1d589d8fb\";s:5:\"label\";s:10:\"Start Date\";s:4:\"name\";s:10:\"start_date\";s:4:\"type\";s:11:\"date_picker\";s:12:\"instructions\";s:0:\"\";s:12:\"column_width\";s:0:\"\";s:11:\"date_format\";s:6:\"yymmdd\";s:14:\"display_format\";s:8:\"dd/mm/yy\";s:9:\"first_day\";s:1:\"1\";s:8:\"order_no\";i:1;}i:2;a:10:{s:3:\"key\";s:19:\"field_517c2d0b267cc\";s:5:\"label\";s:8:\"End Date\";s:4:\"name\";s:8:\"end_date\";s:4:\"type\";s:11:\"date_picker\";s:12:\"instructions\";s:0:\"\";s:12:\"column_width\";s:0:\"\";s:11:\"date_format\";s:6:\"yymmdd\";s:14:\"display_format\";s:8:\"dd/mm/yy\";s:9:\"first_day\";s:1:\"1\";s:8:\"order_no\";i:2;}i:3;a:9:{s:3:\"key\";s:19:\"field_517c1d8e9d8fc\";s:5:\"label\";s:11:\"Artist Name\";s:4:\"name\";s:11:\"artist_name\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:12:\"column_width\";s:0:\"\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:4:\"none\";s:8:\"order_no\";i:3;}i:4;a:9:{s:3:\"key\";s:19:\"field_517c1ddd9d8ff\";s:5:\"label\";s:14:\"Artist Website\";s:4:\"name\";s:14:\"artist_website\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:12:\"column_width\";s:0:\"\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:4:\"none\";s:8:\"order_no\";i:4;}i:5;a:9:{s:3:\"key\";s:19:\"field_517c1daa9d8fd\";s:5:\"label\";s:13:\"Exhibit Title\";s:4:\"name\";s:13:\"exhibit_title\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:12:\"column_width\";s:0:\"\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:4:\"none\";s:8:\"order_no\";i:5;}i:6;a:9:{s:3:\"key\";s:19:\"field_517c1dc09d8fe\";s:5:\"label\";s:19:\"Exhibit Description\";s:4:\"name\";s:19:\"exhibit_description\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:12:\"column_width\";s:0:\"\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:2:\"br\";s:8:\"order_no\";i:6;}}s:7:\"row_min\";s:1:\"0\";s:9:\"row_limit\";s:0:\"\";s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:7:\"Add Row\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:1;}');
INSERT INTO `wp_postmeta` VALUES (194,35,'field_517c1df09d900','a:13:{s:3:\"key\";s:19:\"field_517c1df09d900\";s:5:\"label\";s:8:\"Pictures\";s:4:\"name\";s:8:\"pictures\";s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:10:\"sub_fields\";a:1:{i:0;a:9:{s:3:\"key\";s:19:\"field_517c1e119d901\";s:5:\"label\";s:7:\"Picture\";s:4:\"name\";s:7:\"picture\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:12:\"column_width\";s:0:\"\";s:11:\"save_format\";s:2:\"id\";s:12:\"preview_size\";s:9:\"thumbnail\";s:8:\"order_no\";i:0;}}s:7:\"row_min\";s:1:\"6\";s:9:\"row_limit\";s:1:\"6\";s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:7:\"Add Row\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:2;}');
INSERT INTO `wp_postmeta` VALUES (196,35,'position','normal');
INSERT INTO `wp_postmeta` VALUES (197,35,'layout','no_box');
INSERT INTO `wp_postmeta` VALUES (198,35,'hide_on_screen','a:1:{i:0;s:11:\"the_content\";}');
INSERT INTO `wp_postmeta` VALUES (199,35,'_edit_lock','1367115077:1');
INSERT INTO `wp_postmeta` VALUES (200,38,'_wp_attached_file','2013/04/converge5.jpg');
INSERT INTO `wp_postmeta` VALUES (201,38,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:869;s:4:\"file\";s:21:\"2013/04/converge5.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"converge5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"converge5-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"converge5-1024x695.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:695;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-large\";a:4:{s:4:\"file\";s:21:\"converge5-750x420.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"widescreen-medium\";a:4:{s:4:\"file\";s:21:\"converge5-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-small\";a:4:{s:4:\"file\";s:21:\"converge5-250x140.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cinema-medium\";a:4:{s:4:\"file\";s:21:\"converge5-500x200.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portrait-small\";a:4:{s:4:\"file\";s:21:\"converge5-250x169.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"square-small\";a:4:{s:4:\"file\";s:21:\"converge5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}');
INSERT INTO `wp_postmeta` VALUES (202,39,'_wp_attached_file','2013/04/converge.jpg');
INSERT INTO `wp_postmeta` VALUES (203,39,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1066;s:4:\"file\";s:20:\"2013/04/converge.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"converge-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"converge-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"converge-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-large\";a:4:{s:4:\"file\";s:20:\"converge-750x420.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"widescreen-medium\";a:4:{s:4:\"file\";s:20:\"converge-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-small\";a:4:{s:4:\"file\";s:20:\"converge-250x140.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cinema-medium\";a:4:{s:4:\"file\";s:20:\"converge-500x200.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portrait-small\";a:4:{s:4:\"file\";s:20:\"converge-250x166.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"square-small\";a:4:{s:4:\"file\";s:20:\"converge-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.79999999999999982236431605997495353221893310546875;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1250097524;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:6:\"0.0004\";s:5:\"title\";s:0:\"\";}}');
INSERT INTO `wp_postmeta` VALUES (204,40,'_wp_attached_file','2013/04/converge4.jpg');
INSERT INTO `wp_postmeta` VALUES (205,40,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:926;s:4:\"file\";s:21:\"2013/04/converge4.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"converge4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"converge4-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"converge4-1024x632.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:632;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-large\";a:4:{s:4:\"file\";s:21:\"converge4-750x420.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"widescreen-medium\";a:4:{s:4:\"file\";s:21:\"converge4-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-small\";a:4:{s:4:\"file\";s:21:\"converge4-250x140.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cinema-medium\";a:4:{s:4:\"file\";s:21:\"converge4-500x200.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portrait-small\";a:4:{s:4:\"file\";s:21:\"converge4-250x154.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"square-small\";a:4:{s:4:\"file\";s:21:\"converge4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:9;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1281047603;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"15\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";}}');
INSERT INTO `wp_postmeta` VALUES (206,41,'_wp_attached_file','2013/04/converge2.jpeg');
INSERT INTO `wp_postmeta` VALUES (207,41,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:961;s:4:\"file\";s:22:\"2013/04/converge2.jpeg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"converge2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"converge2-300x192.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"converge2-1024x656.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:656;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-large\";a:4:{s:4:\"file\";s:22:\"converge2-750x420.jpeg\";s:5:\"width\";i:750;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"widescreen-medium\";a:4:{s:4:\"file\";s:22:\"converge2-500x280.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-small\";a:4:{s:4:\"file\";s:22:\"converge2-250x140.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cinema-medium\";a:4:{s:4:\"file\";s:22:\"converge2-500x200.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portrait-small\";a:4:{s:4:\"file\";s:22:\"converge2-250x160.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"square-small\";a:4:{s:4:\"file\";s:22:\"converge2-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}');
INSERT INTO `wp_postmeta` VALUES (208,42,'_wp_attached_file','2013/04/converge1.jpg');
INSERT INTO `wp_postmeta` VALUES (209,42,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1215;s:4:\"file\";s:21:\"2013/04/converge1.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"converge1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"converge1-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"converge1-1024x691.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:691;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-large\";a:4:{s:4:\"file\";s:21:\"converge1-750x420.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"widescreen-medium\";a:4:{s:4:\"file\";s:21:\"converge1-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-small\";a:4:{s:4:\"file\";s:21:\"converge1-250x140.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cinema-medium\";a:4:{s:4:\"file\";s:21:\"converge1-500x200.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portrait-small\";a:4:{s:4:\"file\";s:21:\"converge1-250x168.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"square-small\";a:4:{s:4:\"file\";s:21:\"converge1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}');
INSERT INTO `wp_postmeta` VALUES (210,43,'_wp_attached_file','2013/04/gallery-1.jpg');
INSERT INTO `wp_postmeta` VALUES (211,43,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:636;s:4:\"file\";s:21:\"2013/04/gallery-1.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"gallery-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"gallery-1-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-large\";a:4:{s:4:\"file\";s:21:\"gallery-1-750x420.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"widescreen-medium\";a:4:{s:4:\"file\";s:21:\"gallery-1-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-small\";a:4:{s:4:\"file\";s:21:\"gallery-1-250x140.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cinema-medium\";a:4:{s:4:\"file\";s:21:\"gallery-1-500x200.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portrait-small\";a:4:{s:4:\"file\";s:21:\"gallery-1-250x165.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:165;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"square-small\";a:4:{s:4:\"file\";s:21:\"gallery-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}');
INSERT INTO `wp_postmeta` VALUES (212,44,'_wp_attached_file','2013/04/gallery-2.jpg');
INSERT INTO `wp_postmeta` VALUES (213,44,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2013/04/gallery-2.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"gallery-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"gallery-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-large\";a:4:{s:4:\"file\";s:21:\"gallery-2-750x420.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"widescreen-medium\";a:4:{s:4:\"file\";s:21:\"gallery-2-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-small\";a:4:{s:4:\"file\";s:21:\"gallery-2-250x140.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cinema-medium\";a:4:{s:4:\"file\";s:21:\"gallery-2-500x200.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portrait-small\";a:4:{s:4:\"file\";s:21:\"gallery-2-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"square-small\";a:4:{s:4:\"file\";s:21:\"gallery-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}');
INSERT INTO `wp_postmeta` VALUES (214,45,'_wp_attached_file','2013/04/gallery-3.jpg');
INSERT INTO `wp_postmeta` VALUES (215,45,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:21:\"2013/04/gallery-3.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"gallery-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"gallery-3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"gallery-3-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-large\";a:4:{s:4:\"file\";s:21:\"gallery-3-750x420.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"widescreen-medium\";a:4:{s:4:\"file\";s:21:\"gallery-3-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-small\";a:4:{s:4:\"file\";s:21:\"gallery-3-250x140.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cinema-medium\";a:4:{s:4:\"file\";s:21:\"gallery-3-500x200.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portrait-small\";a:4:{s:4:\"file\";s:21:\"gallery-3-250x187.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"square-small\";a:4:{s:4:\"file\";s:21:\"gallery-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}');
INSERT INTO `wp_postmeta` VALUES (216,46,'_wp_attached_file','2013/04/gallery-4.jpg');
INSERT INTO `wp_postmeta` VALUES (217,46,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1024;s:4:\"file\";s:21:\"2013/04/gallery-4.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"gallery-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"gallery-4-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-large\";a:4:{s:4:\"file\";s:21:\"gallery-4-750x420.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"widescreen-medium\";a:4:{s:4:\"file\";s:21:\"gallery-4-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-small\";a:4:{s:4:\"file\";s:21:\"gallery-4-250x140.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cinema-medium\";a:4:{s:4:\"file\";s:21:\"gallery-4-500x200.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portrait-small\";a:4:{s:4:\"file\";s:21:\"gallery-4-250x333.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"square-small\";a:4:{s:4:\"file\";s:21:\"gallery-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}');
INSERT INTO `wp_postmeta` VALUES (218,47,'_wp_attached_file','2013/04/gallery-6.jpg');
INSERT INTO `wp_postmeta` VALUES (219,47,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:21:\"2013/04/gallery-6.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"gallery-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"gallery-6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-large\";a:4:{s:4:\"file\";s:21:\"gallery-6-720x420.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"widescreen-medium\";a:4:{s:4:\"file\";s:21:\"gallery-6-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-small\";a:4:{s:4:\"file\";s:21:\"gallery-6-250x140.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cinema-medium\";a:4:{s:4:\"file\";s:21:\"gallery-6-500x200.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portrait-small\";a:4:{s:4:\"file\";s:21:\"gallery-6-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"square-small\";a:4:{s:4:\"file\";s:21:\"gallery-6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}');
INSERT INTO `wp_postmeta` VALUES (220,48,'_wp_attached_file','2013/04/gallery05.jpg');
INSERT INTO `wp_postmeta` VALUES (221,48,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1024;s:4:\"file\";s:21:\"2013/04/gallery05.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"gallery05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"gallery05-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-large\";a:4:{s:4:\"file\";s:21:\"gallery05-750x420.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"widescreen-medium\";a:4:{s:4:\"file\";s:21:\"gallery05-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-small\";a:4:{s:4:\"file\";s:21:\"gallery05-250x140.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cinema-medium\";a:4:{s:4:\"file\";s:21:\"gallery05-500x200.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portrait-small\";a:4:{s:4:\"file\";s:21:\"gallery05-250x333.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"square-small\";a:4:{s:4:\"file\";s:21:\"gallery05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}');
INSERT INTO `wp_postmeta` VALUES (223,49,'_wp_attached_file','2013/04/emilywobb.jpg');
INSERT INTO `wp_postmeta` VALUES (224,49,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1067;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2013/04/emilywobb.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"emilywobb-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"emilywobb-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"emilywobb-1024x767.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:767;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-large\";a:4:{s:4:\"file\";s:21:\"emilywobb-750x420.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"widescreen-medium\";a:4:{s:4:\"file\";s:21:\"emilywobb-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-small\";a:4:{s:4:\"file\";s:21:\"emilywobb-250x140.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cinema-medium\";a:4:{s:4:\"file\";s:21:\"emilywobb-500x200.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portrait-small\";a:4:{s:4:\"file\";s:21:\"emilywobb-250x187.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"square-small\";a:4:{s:4:\"file\";s:21:\"emilywobb-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}');
INSERT INTO `wp_postmeta` VALUES (225,50,'_wp_attached_file','2013/04/button.jpg');
INSERT INTO `wp_postmeta` VALUES (226,50,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1309;s:6:\"height\";i:1311;s:4:\"file\";s:18:\"2013/04/button.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"button-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"button-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"button-1022x1024.jpg\";s:5:\"width\";i:1022;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-large\";a:4:{s:4:\"file\";s:18:\"button-750x420.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"widescreen-medium\";a:4:{s:4:\"file\";s:18:\"button-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-small\";a:4:{s:4:\"file\";s:18:\"button-250x140.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cinema-medium\";a:4:{s:4:\"file\";s:18:\"button-500x200.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portrait-small\";a:4:{s:4:\"file\";s:18:\"button-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"square-small\";a:4:{s:4:\"file\";s:18:\"button-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}');
INSERT INTO `wp_postmeta` VALUES (363,53,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (364,53,'_edit_lock','1367093541:1');
INSERT INTO `wp_postmeta` VALUES (365,53,'lead_image','42');
INSERT INTO `wp_postmeta` VALUES (366,53,'_lead_image','field_517c11852111a');
INSERT INTO `wp_postmeta` VALUES (367,53,'date','20130430');
INSERT INTO `wp_postmeta` VALUES (368,53,'_date','field_517c09c678809');
INSERT INTO `wp_postmeta` VALUES (369,53,'time','1367085600');
INSERT INTO `wp_postmeta` VALUES (370,53,'_time','field_517c0a737880a');
INSERT INTO `wp_postmeta` VALUES (371,53,'price','0');
INSERT INTO `wp_postmeta` VALUES (372,53,'_price','field_517c0abd7880b');
INSERT INTO `wp_postmeta` VALUES (373,53,'description','it\'s gonna rage.');
INSERT INTO `wp_postmeta` VALUES (374,53,'_description','field_517c0aed7880c');
INSERT INTO `wp_postmeta` VALUES (375,53,'band','0');
INSERT INTO `wp_postmeta` VALUES (376,53,'_band','field_517c0b4a78810');
INSERT INTO `wp_postmeta` VALUES (377,53,'facebook_rsvp','https://www.facebook.com/robotoproject');
INSERT INTO `wp_postmeta` VALUES (378,53,'_facebook_rsvp','field_517c0d2142d56');
INSERT INTO `wp_postmeta` VALUES (379,53,'flyer','');
INSERT INTO `wp_postmeta` VALUES (380,53,'_flyer','field_517c0d6b42d57');
INSERT INTO `wp_postmeta` VALUES (381,54,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (382,54,'_edit_lock','1367093595:1');
INSERT INTO `wp_postmeta` VALUES (383,54,'lead_image','40');
INSERT INTO `wp_postmeta` VALUES (384,54,'_lead_image','field_517c11852111a');
INSERT INTO `wp_postmeta` VALUES (385,54,'date','20130613');
INSERT INTO `wp_postmeta` VALUES (386,54,'_date','field_517c09c678809');
INSERT INTO `wp_postmeta` VALUES (387,54,'time','1367085600');
INSERT INTO `wp_postmeta` VALUES (388,54,'_time','field_517c0a737880a');
INSERT INTO `wp_postmeta` VALUES (389,54,'price','0');
INSERT INTO `wp_postmeta` VALUES (390,54,'_price','field_517c0abd7880b');
INSERT INTO `wp_postmeta` VALUES (391,54,'description','Braddock Party');
INSERT INTO `wp_postmeta` VALUES (392,54,'_description','field_517c0aed7880c');
INSERT INTO `wp_postmeta` VALUES (393,54,'band','0');
INSERT INTO `wp_postmeta` VALUES (394,54,'_band','field_517c0b4a78810');
INSERT INTO `wp_postmeta` VALUES (395,54,'facebook_rsvp','https://www.facebook.com/robotoproject');
INSERT INTO `wp_postmeta` VALUES (396,54,'_facebook_rsvp','field_517c0d2142d56');
INSERT INTO `wp_postmeta` VALUES (397,54,'flyer','');
INSERT INTO `wp_postmeta` VALUES (398,54,'_flyer','field_517c0d6b42d57');
INSERT INTO `wp_postmeta` VALUES (399,55,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (400,55,'_edit_lock','1367093653:1');
INSERT INTO `wp_postmeta` VALUES (401,55,'lead_image','39');
INSERT INTO `wp_postmeta` VALUES (402,55,'_lead_image','field_517c11852111a');
INSERT INTO `wp_postmeta` VALUES (403,55,'date','20130504');
INSERT INTO `wp_postmeta` VALUES (404,55,'_date','field_517c09c678809');
INSERT INTO `wp_postmeta` VALUES (405,55,'time','1367089200');
INSERT INTO `wp_postmeta` VALUES (406,55,'_time','field_517c0a737880a');
INSERT INTO `wp_postmeta` VALUES (407,55,'price','0');
INSERT INTO `wp_postmeta` VALUES (408,55,'_price','field_517c0abd7880b');
INSERT INTO `wp_postmeta` VALUES (409,55,'description','asdf;lkjasdf');
INSERT INTO `wp_postmeta` VALUES (410,55,'_description','field_517c0aed7880c');
INSERT INTO `wp_postmeta` VALUES (411,55,'band','0');
INSERT INTO `wp_postmeta` VALUES (412,55,'_band','field_517c0b4a78810');
INSERT INTO `wp_postmeta` VALUES (413,55,'facebook_rsvp','https://www.facebook.com/robotoproject');
INSERT INTO `wp_postmeta` VALUES (414,55,'_facebook_rsvp','field_517c0d2142d56');
INSERT INTO `wp_postmeta` VALUES (415,55,'flyer','');
INSERT INTO `wp_postmeta` VALUES (416,55,'_flyer','field_517c0d6b42d57');
INSERT INTO `wp_postmeta` VALUES (417,56,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (418,56,'_edit_lock','1367093817:1');
INSERT INTO `wp_postmeta` VALUES (419,56,'lead_image','38');
INSERT INTO `wp_postmeta` VALUES (420,56,'_lead_image','field_517c11852111a');
INSERT INTO `wp_postmeta` VALUES (421,56,'date','20130808');
INSERT INTO `wp_postmeta` VALUES (422,56,'_date','field_517c09c678809');
INSERT INTO `wp_postmeta` VALUES (423,56,'time','1367067600');
INSERT INTO `wp_postmeta` VALUES (424,56,'_time','field_517c0a737880a');
INSERT INTO `wp_postmeta` VALUES (425,56,'price','0');
INSERT INTO `wp_postmeta` VALUES (426,56,'_price','field_517c0abd7880b');
INSERT INTO `wp_postmeta` VALUES (427,56,'description','asdf');
INSERT INTO `wp_postmeta` VALUES (428,56,'_description','field_517c0aed7880c');
INSERT INTO `wp_postmeta` VALUES (429,56,'band','0');
INSERT INTO `wp_postmeta` VALUES (430,56,'_band','field_517c0b4a78810');
INSERT INTO `wp_postmeta` VALUES (431,56,'facebook_rsvp','https://www.facebook.com/robotoproject');
INSERT INTO `wp_postmeta` VALUES (432,56,'_facebook_rsvp','field_517c0d2142d56');
INSERT INTO `wp_postmeta` VALUES (433,56,'flyer','');
INSERT INTO `wp_postmeta` VALUES (434,56,'_flyer','field_517c0d6b42d57');
INSERT INTO `wp_postmeta` VALUES (435,1,'_wp_trash_meta_status','publish');
INSERT INTO `wp_postmeta` VALUES (436,1,'_wp_trash_meta_time','1367093994');
INSERT INTO `wp_postmeta` VALUES (437,1,'_wp_trash_meta_comments_status','a:1:{i:1;s:1:\"1\";}');
INSERT INTO `wp_postmeta` VALUES (438,58,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (439,58,'_edit_lock','1367094918:1');
INSERT INTO `wp_postmeta` VALUES (446,58,'_oembed_b915b14b630dc07ebe5ecd407e4be912','<iframe width=\"500\" height=\"281\" src=\"http://www.youtube.com/embed/SpVa-x7YndY?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>');
INSERT INTO `wp_postmeta` VALUES (447,58,'_oembed_64687a046c89740901f6c94b9d99944d','<iframe src=\"http://player.vimeo.com/video/48446791\" width=\"500\" height=\"281\" frameborder=\"0\" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>');
INSERT INTO `wp_postmeta` VALUES (448,62,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (450,62,'_edit_lock','1367094977:1');
INSERT INTO `wp_postmeta` VALUES (451,63,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (453,63,'_edit_lock','1367094989:1');
INSERT INTO `wp_postmeta` VALUES (454,64,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (456,64,'_edit_lock','1367095012:1');
INSERT INTO `wp_postmeta` VALUES (457,65,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (459,65,'_edit_lock','1367095131:1');
INSERT INTO `wp_postmeta` VALUES (460,66,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (462,66,'position','normal');
INSERT INTO `wp_postmeta` VALUES (463,66,'layout','no_box');
INSERT INTO `wp_postmeta` VALUES (464,66,'hide_on_screen','a:1:{i:0;s:11:\"the_content\";}');
INSERT INTO `wp_postmeta` VALUES (465,66,'_edit_lock','1367164005:1');
INSERT INTO `wp_postmeta` VALUES (466,66,'field_517c38848f821','a:10:{s:3:\"key\";s:19:\"field_517c38848f821\";s:5:\"label\";s:7:\"Mission\";s:4:\"name\";s:7:\"mission\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:2:\"br\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:0;}');
INSERT INTO `wp_postmeta` VALUES (467,66,'field_517c38928f822','a:13:{s:3:\"key\";s:19:\"field_517c38928f822\";s:5:\"label\";s:13:\"Board Members\";s:4:\"name\";s:13:\"board_members\";s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:10:\"sub_fields\";a:2:{i:0;a:9:{s:3:\"key\";s:19:\"field_517c38a08f823\";s:5:\"label\";s:17:\"Board Member Name\";s:4:\"name\";s:17:\"board_member_name\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:12:\"column_width\";s:0:\"\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:4:\"none\";s:8:\"order_no\";i:0;}i:1;a:9:{s:3:\"key\";s:19:\"field_517c38bc8f824\";s:5:\"label\";s:14:\"Board Position\";s:4:\"name\";s:14:\"board_position\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:12:\"column_width\";s:0:\"\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:4:\"none\";s:8:\"order_no\";i:1;}}s:7:\"row_min\";s:1:\"0\";s:9:\"row_limit\";s:0:\"\";s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:7:\"Add Row\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:1;}');
INSERT INTO `wp_postmeta` VALUES (468,66,'field_517c38d28f825','a:10:{s:3:\"key\";s:19:\"field_517c38d28f825\";s:5:\"label\";s:7:\"History\";s:4:\"name\";s:7:\"history\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:2:\"br\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:2;}');
INSERT INTO `wp_postmeta` VALUES (470,66,'field_517c39028f827','a:13:{s:3:\"key\";s:19:\"field_517c39028f827\";s:5:\"label\";s:8:\"Pictures\";s:4:\"name\";s:8:\"pictures\";s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:10:\"sub_fields\";a:1:{i:0;a:9:{s:3:\"key\";s:19:\"field_517c39148f828\";s:5:\"label\";s:7:\"Picture\";s:4:\"name\";s:7:\"picture\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:12:\"column_width\";s:0:\"\";s:11:\"save_format\";s:2:\"id\";s:12:\"preview_size\";s:9:\"thumbnail\";s:8:\"order_no\";i:0;}}s:7:\"row_min\";s:1:\"6\";s:9:\"row_limit\";s:1:\"6\";s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:7:\"Add Row\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:4;}');
INSERT INTO `wp_postmeta` VALUES (544,68,'_wp_attached_file','2013/04/space-1-Screaming-Females.jpg');
INSERT INTO `wp_postmeta` VALUES (545,68,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1008;s:6:\"height\";i:671;s:4:\"file\";s:37:\"2013/04/space-1-Screaming-Females.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"space-1-Screaming-Females-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"space-1-Screaming-Females-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-large\";a:4:{s:4:\"file\";s:37:\"space-1-Screaming-Females-750x420.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"widescreen-medium\";a:4:{s:4:\"file\";s:37:\"space-1-Screaming-Females-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-small\";a:4:{s:4:\"file\";s:37:\"space-1-Screaming-Females-250x140.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cinema-medium\";a:4:{s:4:\"file\";s:37:\"space-1-Screaming-Females-500x200.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portrait-small\";a:4:{s:4:\"file\";s:37:\"space-1-Screaming-Females-250x166.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"square-small\";a:4:{s:4:\"file\";s:37:\"space-1-Screaming-Females-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:4.5;s:6:\"credit\";s:13:\"Jake Reinhart\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1334010187;s:9:\"copyright\";s:16:\"(C)Jake Reinhart\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:3:\"0.4\";s:5:\"title\";s:0:\"\";}}');
INSERT INTO `wp_postmeta` VALUES (546,69,'_wp_attached_file','2013/04/space-2-White-Wives-Jake-Reinhart.jpg');
INSERT INTO `wp_postmeta` VALUES (547,69,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1008;s:6:\"height\";i:665;s:4:\"file\";s:45:\"2013/04/space-2-White-Wives-Jake-Reinhart.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"space-2-White-Wives-Jake-Reinhart-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"space-2-White-Wives-Jake-Reinhart-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-large\";a:4:{s:4:\"file\";s:45:\"space-2-White-Wives-Jake-Reinhart-750x420.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"widescreen-medium\";a:4:{s:4:\"file\";s:45:\"space-2-White-Wives-Jake-Reinhart-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-small\";a:4:{s:4:\"file\";s:45:\"space-2-White-Wives-Jake-Reinhart-250x140.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cinema-medium\";a:4:{s:4:\"file\";s:45:\"space-2-White-Wives-Jake-Reinhart-500x200.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portrait-small\";a:4:{s:4:\"file\";s:45:\"space-2-White-Wives-Jake-Reinhart-250x164.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"square-small\";a:4:{s:4:\"file\";s:45:\"space-2-White-Wives-Jake-Reinhart-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"CanoScan 9000F\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1324940259;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}');
INSERT INTO `wp_postmeta` VALUES (548,70,'_wp_attached_file','2013/04/space-3-Beauregards-Sarah-Wilson.jpg');
INSERT INTO `wp_postmeta` VALUES (549,70,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:44:\"2013/04/space-3-Beauregards-Sarah-Wilson.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"space-3-Beauregards-Sarah-Wilson-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"space-3-Beauregards-Sarah-Wilson-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-large\";a:4:{s:4:\"file\";s:44:\"space-3-Beauregards-Sarah-Wilson-750x420.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"widescreen-medium\";a:4:{s:4:\"file\";s:44:\"space-3-Beauregards-Sarah-Wilson-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-small\";a:4:{s:4:\"file\";s:44:\"space-3-Beauregards-Sarah-Wilson-250x140.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cinema-medium\";a:4:{s:4:\"file\";s:44:\"space-3-Beauregards-Sarah-Wilson-500x200.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portrait-small\";a:4:{s:4:\"file\";s:44:\"space-3-Beauregards-Sarah-Wilson-250x166.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"square-small\";a:4:{s:4:\"file\";s:44:\"space-3-Beauregards-Sarah-Wilson-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:1.8000000000000000444089209850062616169452667236328125;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D5100\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1333939842;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";}}');
INSERT INTO `wp_postmeta` VALUES (550,71,'_wp_attached_file','2013/04/space-4-Frantic-Heart-of-It-Jake-Reinhart-.jpg');
INSERT INTO `wp_postmeta` VALUES (551,71,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1008;s:6:\"height\";i:671;s:4:\"file\";s:54:\"2013/04/space-4-Frantic-Heart-of-It-Jake-Reinhart-.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"space-4-Frantic-Heart-of-It-Jake-Reinhart--150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"space-4-Frantic-Heart-of-It-Jake-Reinhart--300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-large\";a:4:{s:4:\"file\";s:54:\"space-4-Frantic-Heart-of-It-Jake-Reinhart--750x420.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"widescreen-medium\";a:4:{s:4:\"file\";s:54:\"space-4-Frantic-Heart-of-It-Jake-Reinhart--500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-small\";a:4:{s:4:\"file\";s:54:\"space-4-Frantic-Heart-of-It-Jake-Reinhart--250x140.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cinema-medium\";a:4:{s:4:\"file\";s:54:\"space-4-Frantic-Heart-of-It-Jake-Reinhart--500x200.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portrait-small\";a:4:{s:4:\"file\";s:54:\"space-4-Frantic-Heart-of-It-Jake-Reinhart--250x166.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"square-small\";a:4:{s:4:\"file\";s:54:\"space-4-Frantic-Heart-of-It-Jake-Reinhart--300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.79999999999999982236431605997495353221893310546875;s:6:\"credit\";s:13:\"Jake Reinhart\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1359846410;s:9:\"copyright\";s:16:\"(C)Jake Reinhart\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:15:\"0.0333333333333\";s:5:\"title\";s:0:\"\";}}');
INSERT INTO `wp_postmeta` VALUES (552,72,'_wp_attached_file','2013/04/space-5-Heartless-Tanner-Douglass.jpg');
INSERT INTO `wp_postmeta` VALUES (553,72,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1650;s:6:\"height\";i:1096;s:4:\"file\";s:45:\"2013/04/space-5-Heartless-Tanner-Douglass.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"space-5-Heartless-Tanner-Douglass-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"space-5-Heartless-Tanner-Douglass-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"space-5-Heartless-Tanner-Douglass-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-large\";a:4:{s:4:\"file\";s:45:\"space-5-Heartless-Tanner-Douglass-750x420.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"widescreen-medium\";a:4:{s:4:\"file\";s:45:\"space-5-Heartless-Tanner-Douglass-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-small\";a:4:{s:4:\"file\";s:45:\"space-5-Heartless-Tanner-Douglass-250x140.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cinema-medium\";a:4:{s:4:\"file\";s:45:\"space-5-Heartless-Tanner-Douglass-500x200.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portrait-small\";a:4:{s:4:\"file\";s:45:\"space-5-Heartless-Tanner-Douglass-250x166.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"square-small\";a:4:{s:4:\"file\";s:45:\"space-5-Heartless-Tanner-Douglass-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}');
INSERT INTO `wp_postmeta` VALUES (554,73,'_wp_attached_file','2013/04/space-6-Dolfish-Sarah-Wilson.jpg');
INSERT INTO `wp_postmeta` VALUES (555,73,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4928;s:6:\"height\";i:3264;s:4:\"file\";s:40:\"2013/04/space-6-Dolfish-Sarah-Wilson.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"space-6-Dolfish-Sarah-Wilson-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"space-6-Dolfish-Sarah-Wilson-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"space-6-Dolfish-Sarah-Wilson-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-large\";a:4:{s:4:\"file\";s:40:\"space-6-Dolfish-Sarah-Wilson-750x420.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"widescreen-medium\";a:4:{s:4:\"file\";s:40:\"space-6-Dolfish-Sarah-Wilson-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widescreen-small\";a:4:{s:4:\"file\";s:40:\"space-6-Dolfish-Sarah-Wilson-250x140.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"cinema-medium\";a:4:{s:4:\"file\";s:40:\"space-6-Dolfish-Sarah-Wilson-500x200.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portrait-small\";a:4:{s:4:\"file\";s:40:\"space-6-Dolfish-Sarah-Wilson-250x165.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:165;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"square-small\";a:4:{s:4:\"file\";s:40:\"space-6-Dolfish-Sarah-Wilson-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:1.8000000000000000444089209850062616169452667236328125;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D5100\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1333938279;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";}}');
INSERT INTO `wp_postmeta` VALUES (593,35,'field_517c3b8f46857','a:11:{s:3:\"key\";s:19:\"field_517c3b8f46857\";s:5:\"label\";s:19:\"Picture Attribution\";s:4:\"name\";s:19:\"picture_attribution\";s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:13:\"default_value\";s:0:\"\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";s:2:\"no\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:2:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:3;}');
INSERT INTO `wp_postmeta` VALUES (598,66,'field_517c3bb201cb3','a:11:{s:3:\"key\";s:19:\"field_517c3bb201cb3\";s:5:\"label\";s:19:\"Picture Attribution\";s:4:\"name\";s:19:\"picture_attribution\";s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:13:\"default_value\";s:0:\"\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";s:2:\"no\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:5;}');
INSERT INTO `wp_postmeta` VALUES (643,77,'_form','Aside from \"website\" all fields are required.\n\n<p>Select One\n [select* menu-922 \"Band\" \"Promoter\"] </p>\n\n<p>Band Name<br />\n [text* band-name] </p>\n\n<p>Email Address (required)<br />\n [email* email] </p>\n\n<p>Website (required)<br />\n [url* website] </p>\n\n<p>Genre (required)<br />\n [text* genre] </p>\n\n<p>Dates needed<br />\n [text* dates-needed] </p>\n\n<p>Description/Message<br />\n [textarea description-message] </p>\n\n<p>[submit \"Send\"]</p>');
INSERT INTO `wp_postmeta` VALUES (644,77,'_mail','a:7:{s:7:\"subject\";s:44:\"Band Request: <[band-name]> <[dates-needed]>\";s:6:\"sender\";s:21:\"[band-name] <[email]>\";s:4:\"body\";s:229:\"BAND REQUEST\n\nFrom: [band-name] \nEmail: <[email]>\nWebsite: <[website]>\n\nGenre: <[genre]>\nDates Needed: <[dates-needed]>\n\nDescription/Message:\n\n[description-message]\n\n--\nThis mail is sent via contact form on The Mr. Roboto Project\";s:9:\"recipient\";s:28:\"[email protected]\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;}');
INSERT INTO `wp_postmeta` VALUES (645,77,'_mail_2','a:8:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:26:\"[your-name] <[your-email]>\";s:4:\"body\";s:122:\"Message body:\n[your-message]\n\n--\nThis mail is sent via contact form on The Mr. Roboto Project http://localhost:8888/roboto\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;}');
INSERT INTO `wp_postmeta` VALUES (646,77,'_messages','a:21:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:31:\"Please fill the required field.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";}');
INSERT INTO `wp_postmeta` VALUES (647,77,'_additional_settings','');
INSERT INTO `wp_postmeta` VALUES (648,78,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (649,78,'field_517c4319de786','a:11:{s:3:\"key\";s:19:\"field_517c4319de786\";s:5:\"label\";s:9:\"Band Form\";s:4:\"name\";s:9:\"band_form\";s:4:\"type\";s:7:\"acf_cf7\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:10:\"allow_null\";s:1:\"0\";s:8:\"multiple\";s:1:\"0\";s:7:\"disable\";a:1:{i:0;s:1:\"0\";}s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:2:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:0;}');
INSERT INTO `wp_postmeta` VALUES (650,78,'field_517c4340de787','a:11:{s:3:\"key\";s:19:\"field_517c4340de787\";s:5:\"label\";s:13:\"Promoter Form\";s:4:\"name\";s:13:\"promoter_form\";s:4:\"type\";s:7:\"acf_cf7\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:10:\"allow_null\";s:1:\"0\";s:8:\"multiple\";s:1:\"0\";s:7:\"disable\";a:1:{i:0;s:1:\"0\";}s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:2:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:1;}');
INSERT INTO `wp_postmeta` VALUES (651,78,'rule','a:5:{s:5:\"param\";s:4:\"page\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"10\";s:8:\"order_no\";i:0;s:8:\"group_no\";i:0;}');
INSERT INTO `wp_postmeta` VALUES (652,78,'position','normal');
INSERT INTO `wp_postmeta` VALUES (653,78,'layout','no_box');
INSERT INTO `wp_postmeta` VALUES (654,78,'hide_on_screen','');
INSERT INTO `wp_postmeta` VALUES (655,78,'_edit_lock','1367098206:1');
INSERT INTO `wp_postmeta` VALUES (656,80,'band_form','77');
INSERT INTO `wp_postmeta` VALUES (657,80,'_band_form','field_517c4319de786');
INSERT INTO `wp_postmeta` VALUES (658,80,'promoter_form','77');
INSERT INTO `wp_postmeta` VALUES (659,80,'_promoter_form','field_517c4340de787');
INSERT INTO `wp_postmeta` VALUES (660,10,'band_form','77');
INSERT INTO `wp_postmeta` VALUES (661,10,'_band_form','field_517d4109b91d8');
INSERT INTO `wp_postmeta` VALUES (662,10,'promoter_form','77');
INSERT INTO `wp_postmeta` VALUES (663,10,'_promoter_form','field_517d411db91d9');
INSERT INTO `wp_postmeta` VALUES (664,81,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (665,81,'field_517c444d96cca','a:11:{s:3:\"key\";s:19:\"field_517c444d96cca\";s:5:\"label\";s:11:\"Memberships\";s:4:\"name\";s:11:\"memberships\";s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"0\";s:13:\"default_value\";s:0:\"\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";s:2:\"no\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:0;}');
INSERT INTO `wp_postmeta` VALUES (666,81,'field_517c446096ccb','a:10:{s:3:\"key\";s:19:\"field_517c446096ccb\";s:5:\"label\";s:24:\"Roboto Affiliate Program\";s:4:\"name\";s:24:\"roboto_affiliate_program\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"0\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:2:\"br\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:1;}');
INSERT INTO `wp_postmeta` VALUES (667,81,'field_517c447c96ccc','a:13:{s:3:\"key\";s:19:\"field_517c447c96ccc\";s:5:\"label\";s:10:\"Affiliates\";s:4:\"name\";s:10:\"affiliates\";s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"0\";s:10:\"sub_fields\";a:3:{i:0;a:9:{s:3:\"key\";s:19:\"field_517c44b696ccd\";s:5:\"label\";s:14:\"Affiliate Name\";s:4:\"name\";s:14:\"affiliate_name\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:12:\"column_width\";s:0:\"\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:4:\"none\";s:8:\"order_no\";i:0;}i:1;a:9:{s:3:\"key\";s:19:\"field_517c44c296cce\";s:5:\"label\";s:17:\"Affiliate Website\";s:4:\"name\";s:17:\"affiliate_website\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:12:\"column_width\";s:0:\"\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:4:\"html\";s:8:\"order_no\";i:1;}i:2;a:9:{s:3:\"key\";s:19:\"field_517c45ea277d0\";s:5:\"label\";s:15:\"Affiliate Image\";s:4:\"name\";s:15:\"affiliate_image\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:12:\"column_width\";s:0:\"\";s:11:\"save_format\";s:2:\"id\";s:12:\"preview_size\";s:9:\"thumbnail\";s:8:\"order_no\";i:2;}}s:7:\"row_min\";s:1:\"0\";s:9:\"row_limit\";s:0:\"\";s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:7:\"Add Row\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:2:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:3;}');
INSERT INTO `wp_postmeta` VALUES (669,81,'position','normal');
INSERT INTO `wp_postmeta` VALUES (670,81,'layout','no_box');
INSERT INTO `wp_postmeta` VALUES (671,81,'hide_on_screen','a:1:{i:0;s:11:\"the_content\";}');
INSERT INTO `wp_postmeta` VALUES (672,81,'_edit_lock','1367162386:1');
INSERT INTO `wp_postmeta` VALUES (674,82,'memberships','<p dir=\"ltr\">Roboto Members receive the following benefits:</p>\r\n\r\n<ul>\r\n <li><span style=\"font-size: 13px; line-height: 19px;\">The ability to rent Roboto for events</span></li>\r\n <li>A $1 discount at the door on all Roboto events</li>\r\n <li>Discounts around town at affiliate businesses (see below)</li>\r\n <li>A vote in Board of Director elections and other issues voted upon</li>\r\n <li>The ability to run for the Board of Directors</li>\r\n</ul>\r\n<p dir=\"ltr\">A Standard One-Year Roboto Membership is $25. Once purchased, an official membership card will be delivered to your mailing address. A $10 renewal fee is due every 12 months to maintain membership.</p>\r\n<p dir=\"ltr\">A Lifetime Membership is also available at a one-time cost of $100.</p>\r\nFor more information, please consult the Official Membership Packet');
INSERT INTO `wp_postmeta` VALUES (675,82,'_memberships','field_517c444d96cca');
INSERT INTO `wp_postmeta` VALUES (676,82,'roboto_affiliate_program','As a Roboto Member, you are also eligible for discounts at participating local businesses.\r\nThe participating businesses are as follows:');
INSERT INTO `wp_postmeta` VALUES (677,82,'_roboto_affiliate_program','field_517c446096ccb');
INSERT INTO `wp_postmeta` VALUES (678,82,'roboto_affiliates_0_affiliate_name','Spak Brothers');
INSERT INTO `wp_postmeta` VALUES (679,82,'_roboto_affiliates_0_affiliate_name','field_517c44b696ccd');
INSERT INTO `wp_postmeta` VALUES (680,82,'roboto_affiliates_0_affiliate_website','http://www.spakbrothers.com/');
INSERT INTO `wp_postmeta` VALUES (681,82,'_roboto_affiliates_0_affiliate_website','field_517c44c296cce');
INSERT INTO `wp_postmeta` VALUES (682,82,'roboto_affiliates','1');
INSERT INTO `wp_postmeta` VALUES (683,82,'_roboto_affiliates','field_517c447c96ccc');
INSERT INTO `wp_postmeta` VALUES (684,9,'memberships','<p dir=\"ltr\">Roboto Members receive the following benefits:</p>\r\n\r\n<ul>\r\n <li>The ability to rent Roboto for events</li>\r\n <li>A $1 discount at the door on all Roboto events</li>\r\n <li>Discounts around town at affiliate businesses (see below)</li>\r\n <li>A vote in Board of Director elections and other issues voted upon</li>\r\n <li>The ability to run for the Board of Directors</li>\r\n</ul>\r\n<p dir=\"ltr\">A Standard One-Year Roboto Membership is $25. Once purchased, an official membership card will be delivered to your mailing address. A $10 renewal fee is due every 12 months to maintain membership.</p>\r\n<p dir=\"ltr\">A Lifetime Membership is also available at a one-time cost of $100.</p>\r\nFor more information, please consult the Official Membership Packet');
INSERT INTO `wp_postmeta` VALUES (685,9,'_memberships','field_517c444d96cca');
INSERT INTO `wp_postmeta` VALUES (686,9,'roboto_affiliate_program','As a Roboto Member, you are also eligible for discounts at participating local businesses.\r\n\r\nThe participating businesses are as follows:');
INSERT INTO `wp_postmeta` VALUES (687,9,'_roboto_affiliate_program','field_517c446096ccb');
INSERT INTO `wp_postmeta` VALUES (688,9,'roboto_affiliates_0_affiliate_name','Spak Brothers');
INSERT INTO `wp_postmeta` VALUES (689,9,'_roboto_affiliates_0_affiliate_name','field_517c44b696ccd');
INSERT INTO `wp_postmeta` VALUES (690,9,'roboto_affiliates_0_affiliate_website','http://www.spakbrothers.com/');
INSERT INTO `wp_postmeta` VALUES (691,9,'_roboto_affiliates_0_affiliate_website','field_517c44c296cce');
INSERT INTO `wp_postmeta` VALUES (692,9,'roboto_affiliates','1');
INSERT INTO `wp_postmeta` VALUES (693,9,'_roboto_affiliates','field_517c447c96ccc');
INSERT INTO `wp_postmeta` VALUES (694,81,'field_517c45a3863fb','a:8:{s:3:\"key\";s:19:\"field_517c45a3863fb\";s:5:\"label\";s:10:\"Affiliates\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"0\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:2;}');
INSERT INTO `wp_postmeta` VALUES (697,81,'rule','a:5:{s:5:\"param\";s:4:\"page\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"9\";s:8:\"order_no\";i:0;s:8:\"group_no\";i:0;}');
INSERT INTO `wp_postmeta` VALUES (698,83,'_wp_attached_file','2013/04/Screen-Shot-2013-04-27-at-5.40.40-PM.png');
INSERT INTO `wp_postmeta` VALUES (699,83,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:114;s:6:\"height\";i:93;s:4:\"file\";s:48:\"2013/04/Screen-Shot-2013-04-27-at-5.40.40-PM.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}');
INSERT INTO `wp_postmeta` VALUES (700,84,'memberships','<p dir=\"ltr\">Roboto Members receive the following benefits:</p>\r\n\r\n<ul>\r\n <li><span style=\"font-size: 13px; line-height: 19px;\">The ability to rent Roboto for events</span></li>\r\n <li>A $1 discount at the door on all Roboto events</li>\r\n <li>Discounts around town at affiliate businesses (see below)</li>\r\n <li>A vote in Board of Director elections and other issues voted upon</li>\r\n <li>The ability to run for the Board of Directors</li>\r\n</ul>\r\n<p dir=\"ltr\">A Standard One-Year Roboto Membership is $25. Once purchased, an official membership card will be delivered to your mailing address. A $10 renewal fee is due every 12 months to maintain membership.</p>\r\n<p dir=\"ltr\">A Lifetime Membership is also available at a one-time cost of $100.</p>\r\nFor more information, please consult the Official Membership Packet');
INSERT INTO `wp_postmeta` VALUES (701,84,'_memberships','field_517c444d96cca');
INSERT INTO `wp_postmeta` VALUES (702,84,'roboto_affiliate_program','As a Roboto Member, you are also eligible for discounts at participating local businesses.\r\nThe participating businesses are as follows:');
INSERT INTO `wp_postmeta` VALUES (703,84,'_roboto_affiliate_program','field_517c446096ccb');
INSERT INTO `wp_postmeta` VALUES (704,84,'affiliates_0_affiliate_name','Spak Brother');
INSERT INTO `wp_postmeta` VALUES (705,84,'_affiliates_0_affiliate_name','field_517c44b696ccd');
INSERT INTO `wp_postmeta` VALUES (706,84,'affiliates_0_affiliate_website','http://www.spakbrothers.com/');
INSERT INTO `wp_postmeta` VALUES (707,84,'_affiliates_0_affiliate_website','field_517c44c296cce');
INSERT INTO `wp_postmeta` VALUES (708,84,'affiliates_0_affiliate_image','83');
INSERT INTO `wp_postmeta` VALUES (709,84,'_affiliates_0_affiliate_image','field_517c45ea277d0');
INSERT INTO `wp_postmeta` VALUES (710,84,'affiliates','1');
INSERT INTO `wp_postmeta` VALUES (711,84,'_affiliates','field_517c447c96ccc');
INSERT INTO `wp_postmeta` VALUES (712,9,'affiliates_0_affiliate_name','Spak Brother');
INSERT INTO `wp_postmeta` VALUES (713,9,'_affiliates_0_affiliate_name','field_517c44b696ccd');
INSERT INTO `wp_postmeta` VALUES (714,9,'affiliates_0_affiliate_website','http://www.spakbrothers.com/');
INSERT INTO `wp_postmeta` VALUES (715,9,'_affiliates_0_affiliate_website','field_517c44c296cce');
INSERT INTO `wp_postmeta` VALUES (716,9,'affiliates_0_affiliate_image','83');
INSERT INTO `wp_postmeta` VALUES (717,9,'_affiliates_0_affiliate_image','field_517c45ea277d0');
INSERT INTO `wp_postmeta` VALUES (718,9,'affiliates','1');
INSERT INTO `wp_postmeta` VALUES (719,9,'_affiliates','field_517c447c96ccc');
INSERT INTO `wp_postmeta` VALUES (720,78,'_wp_trash_meta_status','publish');
INSERT INTO `wp_postmeta` VALUES (721,78,'_wp_trash_meta_time','1367099434');
INSERT INTO `wp_postmeta` VALUES (722,85,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (723,85,'field_517c4873d3737','a:10:{s:3:\"key\";s:19:\"field_517c4873d3737\";s:5:\"label\";s:5:\"Blurb\";s:4:\"name\";s:5:\"blurb\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:4:\"none\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:0;}');
INSERT INTO `wp_postmeta` VALUES (724,85,'field_517c488ad3738','a:10:{s:3:\"key\";s:19:\"field_517c488ad3738\";s:5:\"label\";s:12:\"Mailing List\";s:4:\"name\";s:12:\"mailing_list\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:4:\"none\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:1;}');
INSERT INTO `wp_postmeta` VALUES (726,85,'position','normal');
INSERT INTO `wp_postmeta` VALUES (727,85,'layout','no_box');
INSERT INTO `wp_postmeta` VALUES (728,85,'hide_on_screen','a:1:{i:0;s:11:\"the_content\";}');
INSERT INTO `wp_postmeta` VALUES (729,85,'_edit_lock','1367374662:1');
INSERT INTO `wp_postmeta` VALUES (730,85,'field_517c48c74c837','a:10:{s:3:\"key\";s:19:\"field_517c48c74c837\";s:5:\"label\";s:4:\"Book\";s:4:\"name\";s:4:\"book\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:4:\"html\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:2;}');
INSERT INTO `wp_postmeta` VALUES (732,86,'blurb','Pittsburgh\'s premier DIY arts venue since 1999');
INSERT INTO `wp_postmeta` VALUES (733,86,'_blurb','field_517c4873d3737');
INSERT INTO `wp_postmeta` VALUES (734,86,'_','field_517c488ad3738');
INSERT INTO `wp_postmeta` VALUES (735,86,'book','Checkout our book <a href=\"http://www.therobotoproject.org/book/\">Building a Better Robot</a>, a retrospective of the first ten years of our project');
INSERT INTO `wp_postmeta` VALUES (736,86,'_book','field_517c48c74c837');
INSERT INTO `wp_postmeta` VALUES (737,5,'blurb','Pittsburgh\'s premier DIY arts venue since 1999');
INSERT INTO `wp_postmeta` VALUES (738,5,'_blurb','field_517c4873d3737');
INSERT INTO `wp_postmeta` VALUES (739,5,'_','field_517c488ad3738');
INSERT INTO `wp_postmeta` VALUES (740,5,'book','Checkout our book <em>Building a Better Robot</em>, a retrospective of the first ten years of our project');
INSERT INTO `wp_postmeta` VALUES (741,5,'_book','field_517c48c74c837');
INSERT INTO `wp_postmeta` VALUES (743,87,'blurb','Pittsburgh\'s premier DIY arts venue since 1999');
INSERT INTO `wp_postmeta` VALUES (744,87,'_blurb','field_517c4873d3737');
INSERT INTO `wp_postmeta` VALUES (745,87,'mailing_list','Sign up for our mailing list!');
INSERT INTO `wp_postmeta` VALUES (746,87,'_mailing_list','field_517c488ad3738');
INSERT INTO `wp_postmeta` VALUES (747,87,'book','Checkout our book <a href=\"http://www.therobotoproject.org/book/\">Building a Better Robot</a>, a retrospective of the first ten years of our project');
INSERT INTO `wp_postmeta` VALUES (748,87,'_book','field_517c48c74c837');
INSERT INTO `wp_postmeta` VALUES (749,5,'mailing_list','Sign up for our mailing list!');
INSERT INTO `wp_postmeta` VALUES (750,5,'_mailing_list','field_517c488ad3738');
INSERT INTO `wp_postmeta` VALUES (755,89,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (756,89,'_edit_lock','1367698612:1');
INSERT INTO `wp_postmeta` VALUES (757,89,'_wp_page_template','gallery.php');
INSERT INTO `wp_postmeta` VALUES (759,91,'about','asdfasdf');
INSERT INTO `wp_postmeta` VALUES (760,91,'_about','field_517c1ccf9d8f8');
INSERT INTO `wp_postmeta` VALUES (761,91,'upcoming_0_image','49');
INSERT INTO `wp_postmeta` VALUES (762,91,'_upcoming_0_image','field_517c1d309d8fa');
INSERT INTO `wp_postmeta` VALUES (763,91,'upcoming_0_start_date','20130401');
INSERT INTO `wp_postmeta` VALUES (764,91,'_upcoming_0_start_date','field_517c1d589d8fb');
INSERT INTO `wp_postmeta` VALUES (765,91,'upcoming_0_end_date','20130430');
INSERT INTO `wp_postmeta` VALUES (766,91,'_upcoming_0_end_date','field_517c2d0b267cc');
INSERT INTO `wp_postmeta` VALUES (767,91,'upcoming_0_artist_name','Artist');
INSERT INTO `wp_postmeta` VALUES (768,91,'_upcoming_0_artist_name','field_517c1d8e9d8fc');
INSERT INTO `wp_postmeta` VALUES (769,91,'upcoming_0_artist_website','http://art.com');
INSERT INTO `wp_postmeta` VALUES (770,91,'_upcoming_0_artist_website','field_517c1ddd9d8ff');
INSERT INTO `wp_postmeta` VALUES (771,91,'upcoming_0_exhibit_title','Art Show!');
INSERT INTO `wp_postmeta` VALUES (772,91,'_upcoming_0_exhibit_title','field_517c1daa9d8fd');
INSERT INTO `wp_postmeta` VALUES (773,91,'upcoming_0_exhibit_description','asdf;lkjwae l;kjsdf;lkjawf');
INSERT INTO `wp_postmeta` VALUES (774,91,'_upcoming_0_exhibit_description','field_517c1dc09d8fe');
INSERT INTO `wp_postmeta` VALUES (775,91,'upcoming','1');
INSERT INTO `wp_postmeta` VALUES (776,91,'_upcoming','field_517c1d1a9d8f9');
INSERT INTO `wp_postmeta` VALUES (777,91,'pictures_0_picture','47');
INSERT INTO `wp_postmeta` VALUES (778,91,'_pictures_0_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (779,91,'pictures_1_picture','48');
INSERT INTO `wp_postmeta` VALUES (780,91,'_pictures_1_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (781,91,'pictures_2_picture','46');
INSERT INTO `wp_postmeta` VALUES (782,91,'_pictures_2_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (783,91,'pictures_3_picture','45');
INSERT INTO `wp_postmeta` VALUES (784,91,'_pictures_3_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (785,91,'pictures_4_picture','44');
INSERT INTO `wp_postmeta` VALUES (786,91,'_pictures_4_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (787,91,'pictures_5_picture','43');
INSERT INTO `wp_postmeta` VALUES (788,91,'_pictures_5_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (789,91,'pictures','6');
INSERT INTO `wp_postmeta` VALUES (790,91,'_pictures','field_517c1df09d900');
INSERT INTO `wp_postmeta` VALUES (791,91,'_','field_517c3b8f46857');
INSERT INTO `wp_postmeta` VALUES (792,89,'about','<p dir=\"ltr\">Each month Roboto hosts a new exhibit in the gallery space with the openings held during the Penn Avenue Unblurred gallery crawl and usually runs through the end of the month. The focus is on Pittsburgh artists, artists with connections to Pittsburgh, and artists with connections to punk/hardcore/DIY.</p>\r\nIndividuals interested in showing their artwork or curating an exhibit in our space should email a letter of interest to <a href=\"mailto:[email protected]\">[email protected]</a>.');
INSERT INTO `wp_postmeta` VALUES (793,89,'_about','field_517c1ccf9d8f8');
INSERT INTO `wp_postmeta` VALUES (794,89,'upcoming_0_image','49');
INSERT INTO `wp_postmeta` VALUES (795,89,'_upcoming_0_image','field_517c1d309d8fa');
INSERT INTO `wp_postmeta` VALUES (796,89,'upcoming_0_start_date','20130401');
INSERT INTO `wp_postmeta` VALUES (797,89,'_upcoming_0_start_date','field_517c1d589d8fb');
INSERT INTO `wp_postmeta` VALUES (798,89,'upcoming_0_end_date','20130430');
INSERT INTO `wp_postmeta` VALUES (799,89,'_upcoming_0_end_date','field_517c2d0b267cc');
INSERT INTO `wp_postmeta` VALUES (800,89,'upcoming_0_artist_name','Artist');
INSERT INTO `wp_postmeta` VALUES (801,89,'_upcoming_0_artist_name','field_517c1d8e9d8fc');
INSERT INTO `wp_postmeta` VALUES (802,89,'upcoming_0_artist_website','http://art.com');
INSERT INTO `wp_postmeta` VALUES (803,89,'_upcoming_0_artist_website','field_517c1ddd9d8ff');
INSERT INTO `wp_postmeta` VALUES (804,89,'upcoming_0_exhibit_title','Art Show!');
INSERT INTO `wp_postmeta` VALUES (805,89,'_upcoming_0_exhibit_title','field_517c1daa9d8fd');
INSERT INTO `wp_postmeta` VALUES (806,89,'upcoming_0_exhibit_description','Veggies sunt bona vobis, proinde vos postulo esse magis gram epazote gumbo bok choy cress bamboo shoot endive celery quandong tigernut courgette bush tomato kohlrabi soybean.');
INSERT INTO `wp_postmeta` VALUES (807,89,'_upcoming_0_exhibit_description','field_517c1dc09d8fe');
INSERT INTO `wp_postmeta` VALUES (808,89,'upcoming','2');
INSERT INTO `wp_postmeta` VALUES (809,89,'_upcoming','field_517c1d1a9d8f9');
INSERT INTO `wp_postmeta` VALUES (810,89,'pictures_0_picture','47');
INSERT INTO `wp_postmeta` VALUES (811,89,'_pictures_0_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (812,89,'pictures_1_picture','48');
INSERT INTO `wp_postmeta` VALUES (813,89,'_pictures_1_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (814,89,'pictures_2_picture','46');
INSERT INTO `wp_postmeta` VALUES (815,89,'_pictures_2_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (816,89,'pictures_3_picture','45');
INSERT INTO `wp_postmeta` VALUES (817,89,'_pictures_3_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (818,89,'pictures_4_picture','44');
INSERT INTO `wp_postmeta` VALUES (819,89,'_pictures_4_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (820,89,'pictures_5_picture','43');
INSERT INTO `wp_postmeta` VALUES (821,89,'_pictures_5_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (822,89,'pictures','6');
INSERT INTO `wp_postmeta` VALUES (823,89,'_pictures','field_517c1df09d900');
INSERT INTO `wp_postmeta` VALUES (824,89,'_','field_517c3b8f46857');
INSERT INTO `wp_postmeta` VALUES (825,35,'rule','a:5:{s:5:\"param\";s:4:\"page\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"89\";s:8:\"order_no\";i:0;s:8:\"group_no\";i:0;}');
INSERT INTO `wp_postmeta` VALUES (826,92,'about','asdfasdf');
INSERT INTO `wp_postmeta` VALUES (827,92,'_about','field_517c1ccf9d8f8');
INSERT INTO `wp_postmeta` VALUES (828,92,'upcoming_0_image','49');
INSERT INTO `wp_postmeta` VALUES (829,92,'_upcoming_0_image','field_517c1d309d8fa');
INSERT INTO `wp_postmeta` VALUES (830,92,'upcoming_0_start_date','20130401');
INSERT INTO `wp_postmeta` VALUES (831,92,'_upcoming_0_start_date','field_517c1d589d8fb');
INSERT INTO `wp_postmeta` VALUES (832,92,'upcoming_0_end_date','20130430');
INSERT INTO `wp_postmeta` VALUES (833,92,'_upcoming_0_end_date','field_517c2d0b267cc');
INSERT INTO `wp_postmeta` VALUES (834,92,'upcoming_0_artist_name','Artist');
INSERT INTO `wp_postmeta` VALUES (835,92,'_upcoming_0_artist_name','field_517c1d8e9d8fc');
INSERT INTO `wp_postmeta` VALUES (836,92,'upcoming_0_artist_website','http://art.com');
INSERT INTO `wp_postmeta` VALUES (837,92,'_upcoming_0_artist_website','field_517c1ddd9d8ff');
INSERT INTO `wp_postmeta` VALUES (838,92,'upcoming_0_exhibit_title','Art Show!');
INSERT INTO `wp_postmeta` VALUES (839,92,'_upcoming_0_exhibit_title','field_517c1daa9d8fd');
INSERT INTO `wp_postmeta` VALUES (840,92,'upcoming_0_exhibit_description','asdf;lkjwae l;kjsdf;lkjawf');
INSERT INTO `wp_postmeta` VALUES (841,92,'_upcoming_0_exhibit_description','field_517c1dc09d8fe');
INSERT INTO `wp_postmeta` VALUES (842,92,'upcoming','1');
INSERT INTO `wp_postmeta` VALUES (843,92,'_upcoming','field_517c1d1a9d8f9');
INSERT INTO `wp_postmeta` VALUES (844,92,'pictures_0_picture','47');
INSERT INTO `wp_postmeta` VALUES (845,92,'_pictures_0_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (846,92,'pictures_1_picture','48');
INSERT INTO `wp_postmeta` VALUES (847,92,'_pictures_1_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (848,92,'pictures_2_picture','46');
INSERT INTO `wp_postmeta` VALUES (849,92,'_pictures_2_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (850,92,'pictures_3_picture','45');
INSERT INTO `wp_postmeta` VALUES (851,92,'_pictures_3_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (852,92,'pictures_4_picture','44');
INSERT INTO `wp_postmeta` VALUES (853,92,'_pictures_4_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (854,92,'pictures_5_picture','43');
INSERT INTO `wp_postmeta` VALUES (855,92,'_pictures_5_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (856,92,'pictures','6');
INSERT INTO `wp_postmeta` VALUES (857,92,'_pictures','field_517c1df09d900');
INSERT INTO `wp_postmeta` VALUES (858,92,'picture_attribution','(1) some photographer (2) some other photographer');
INSERT INTO `wp_postmeta` VALUES (859,92,'_picture_attribution','field_517c3b8f46857');
INSERT INTO `wp_postmeta` VALUES (860,89,'picture_attribution','(1) some photographer (2) some other photographer');
INSERT INTO `wp_postmeta` VALUES (861,89,'_picture_attribution','field_517c3b8f46857');
INSERT INTO `wp_postmeta` VALUES (862,93,'about','<p dir=\"ltr\">Each month Roboto hosts a new exhibit in the gallery space with the openings held during the Penn Avenue Unblurred gallery crawl and usually runs through the end of the month. The focus is on Pittsburgh artists, artists with connections to Pittsburgh, and artists with connections to punk/hardcore/DIY.</p>\r\n\r\nIndividuals interested in showing their artwork or curating an exhibit in our space should email a letter of interest to <a href=\"mailto:[email protected]\">[email protected]</a>.');
INSERT INTO `wp_postmeta` VALUES (863,93,'_about','field_517c1ccf9d8f8');
INSERT INTO `wp_postmeta` VALUES (864,93,'upcoming_0_image','49');
INSERT INTO `wp_postmeta` VALUES (865,93,'_upcoming_0_image','field_517c1d309d8fa');
INSERT INTO `wp_postmeta` VALUES (866,93,'upcoming_0_start_date','20130401');
INSERT INTO `wp_postmeta` VALUES (867,93,'_upcoming_0_start_date','field_517c1d589d8fb');
INSERT INTO `wp_postmeta` VALUES (868,93,'upcoming_0_end_date','20130430');
INSERT INTO `wp_postmeta` VALUES (869,93,'_upcoming_0_end_date','field_517c2d0b267cc');
INSERT INTO `wp_postmeta` VALUES (870,93,'upcoming_0_artist_name','Artist');
INSERT INTO `wp_postmeta` VALUES (871,93,'_upcoming_0_artist_name','field_517c1d8e9d8fc');
INSERT INTO `wp_postmeta` VALUES (872,93,'upcoming_0_artist_website','http://art.com');
INSERT INTO `wp_postmeta` VALUES (873,93,'_upcoming_0_artist_website','field_517c1ddd9d8ff');
INSERT INTO `wp_postmeta` VALUES (874,93,'upcoming_0_exhibit_title','Art Show!');
INSERT INTO `wp_postmeta` VALUES (875,93,'_upcoming_0_exhibit_title','field_517c1daa9d8fd');
INSERT INTO `wp_postmeta` VALUES (876,93,'upcoming_0_exhibit_description','asdf;lkjwae l;kjsdf;lkjawf');
INSERT INTO `wp_postmeta` VALUES (877,93,'_upcoming_0_exhibit_description','field_517c1dc09d8fe');
INSERT INTO `wp_postmeta` VALUES (878,93,'upcoming','1');
INSERT INTO `wp_postmeta` VALUES (879,93,'_upcoming','field_517c1d1a9d8f9');
INSERT INTO `wp_postmeta` VALUES (880,93,'pictures_0_picture','47');
INSERT INTO `wp_postmeta` VALUES (881,93,'_pictures_0_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (882,93,'pictures_1_picture','48');
INSERT INTO `wp_postmeta` VALUES (883,93,'_pictures_1_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (884,93,'pictures_2_picture','46');
INSERT INTO `wp_postmeta` VALUES (885,93,'_pictures_2_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (886,93,'pictures_3_picture','45');
INSERT INTO `wp_postmeta` VALUES (887,93,'_pictures_3_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (888,93,'pictures_4_picture','44');
INSERT INTO `wp_postmeta` VALUES (889,93,'_pictures_4_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (890,93,'pictures_5_picture','43');
INSERT INTO `wp_postmeta` VALUES (891,93,'_pictures_5_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (892,93,'pictures','6');
INSERT INTO `wp_postmeta` VALUES (893,93,'_pictures','field_517c1df09d900');
INSERT INTO `wp_postmeta` VALUES (894,93,'picture_attribution','(1) some photographer (2) some other photographer');
INSERT INTO `wp_postmeta` VALUES (895,93,'_picture_attribution','field_517c3b8f46857');
INSERT INTO `wp_postmeta` VALUES (896,94,'about','<p dir=\"ltr\">Each month Roboto hosts a new exhibit in the gallery space with the openings held during the Penn Avenue Unblurred gallery crawl and usually runs through the end of the month. The focus is on Pittsburgh artists, artists with connections to Pittsburgh, and artists with connections to punk/hardcore/DIY.</p>\r\nIndividuals interested in showing their artwork or curating an exhibit in our space should email a letter of interest to <a href=\"mailto:[email protected]\">[email protected]</a>.');
INSERT INTO `wp_postmeta` VALUES (897,94,'_about','field_517c1ccf9d8f8');
INSERT INTO `wp_postmeta` VALUES (898,94,'upcoming_0_image','49');
INSERT INTO `wp_postmeta` VALUES (899,94,'_upcoming_0_image','field_517c1d309d8fa');
INSERT INTO `wp_postmeta` VALUES (900,94,'upcoming_0_start_date','20130401');
INSERT INTO `wp_postmeta` VALUES (901,94,'_upcoming_0_start_date','field_517c1d589d8fb');
INSERT INTO `wp_postmeta` VALUES (902,94,'upcoming_0_end_date','20130430');
INSERT INTO `wp_postmeta` VALUES (903,94,'_upcoming_0_end_date','field_517c2d0b267cc');
INSERT INTO `wp_postmeta` VALUES (904,94,'upcoming_0_artist_name','Artist');
INSERT INTO `wp_postmeta` VALUES (905,94,'_upcoming_0_artist_name','field_517c1d8e9d8fc');
INSERT INTO `wp_postmeta` VALUES (906,94,'upcoming_0_artist_website','http://art.com');
INSERT INTO `wp_postmeta` VALUES (907,94,'_upcoming_0_artist_website','field_517c1ddd9d8ff');
INSERT INTO `wp_postmeta` VALUES (908,94,'upcoming_0_exhibit_title','Art Show!');
INSERT INTO `wp_postmeta` VALUES (909,94,'_upcoming_0_exhibit_title','field_517c1daa9d8fd');
INSERT INTO `wp_postmeta` VALUES (910,94,'upcoming_0_exhibit_description','asdf;lkjwae l;kjsdf;lkjawf');
INSERT INTO `wp_postmeta` VALUES (911,94,'_upcoming_0_exhibit_description','field_517c1dc09d8fe');
INSERT INTO `wp_postmeta` VALUES (912,94,'upcoming_1_image','50');
INSERT INTO `wp_postmeta` VALUES (913,94,'_upcoming_1_image','field_517c1d309d8fa');
INSERT INTO `wp_postmeta` VALUES (914,94,'upcoming_1_start_date','20130501');
INSERT INTO `wp_postmeta` VALUES (915,94,'_upcoming_1_start_date','field_517c1d589d8fb');
INSERT INTO `wp_postmeta` VALUES (916,94,'upcoming_1_end_date','20130531');
INSERT INTO `wp_postmeta` VALUES (917,94,'_upcoming_1_end_date','field_517c2d0b267cc');
INSERT INTO `wp_postmeta` VALUES (918,94,'upcoming_1_artist_name','Curated by Mike Q. Roth');
INSERT INTO `wp_postmeta` VALUES (919,94,'_upcoming_1_artist_name','field_517c1d8e9d8fc');
INSERT INTO `wp_postmeta` VALUES (920,94,'upcoming_1_artist_website','');
INSERT INTO `wp_postmeta` VALUES (921,94,'_upcoming_1_artist_website','field_517c1ddd9d8ff');
INSERT INTO `wp_postmeta` VALUES (922,94,'upcoming_1_exhibit_title','Button Art');
INSERT INTO `wp_postmeta` VALUES (923,94,'_upcoming_1_exhibit_title','field_517c1daa9d8fd');
INSERT INTO `wp_postmeta` VALUES (924,94,'upcoming_1_exhibit_description','An art show full of buttons.');
INSERT INTO `wp_postmeta` VALUES (925,94,'_upcoming_1_exhibit_description','field_517c1dc09d8fe');
INSERT INTO `wp_postmeta` VALUES (926,94,'upcoming','2');
INSERT INTO `wp_postmeta` VALUES (927,94,'_upcoming','field_517c1d1a9d8f9');
INSERT INTO `wp_postmeta` VALUES (928,94,'pictures_0_picture','47');
INSERT INTO `wp_postmeta` VALUES (929,94,'_pictures_0_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (930,94,'pictures_1_picture','48');
INSERT INTO `wp_postmeta` VALUES (931,94,'_pictures_1_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (932,94,'pictures_2_picture','46');
INSERT INTO `wp_postmeta` VALUES (933,94,'_pictures_2_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (934,94,'pictures_3_picture','45');
INSERT INTO `wp_postmeta` VALUES (935,94,'_pictures_3_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (936,94,'pictures_4_picture','44');
INSERT INTO `wp_postmeta` VALUES (937,94,'_pictures_4_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (938,94,'pictures_5_picture','43');
INSERT INTO `wp_postmeta` VALUES (939,94,'_pictures_5_picture','field_517c1e119d901');
INSERT INTO `wp_postmeta` VALUES (940,94,'pictures','6');
INSERT INTO `wp_postmeta` VALUES (941,94,'_pictures','field_517c1df09d900');
INSERT INTO `wp_postmeta` VALUES (942,94,'picture_attribution','(1) some photographer (2) some other photographer');
INSERT INTO `wp_postmeta` VALUES (943,94,'_picture_attribution','field_517c3b8f46857');
INSERT INTO `wp_postmeta` VALUES (944,89,'upcoming_1_image','50');
INSERT INTO `wp_postmeta` VALUES (945,89,'_upcoming_1_image','field_517c1d309d8fa');
INSERT INTO `wp_postmeta` VALUES (946,89,'upcoming_1_start_date','20130501');
INSERT INTO `wp_postmeta` VALUES (947,89,'_upcoming_1_start_date','field_517c1d589d8fb');
INSERT INTO `wp_postmeta` VALUES (948,89,'upcoming_1_end_date','20130531');
INSERT INTO `wp_postmeta` VALUES (949,89,'_upcoming_1_end_date','field_517c2d0b267cc');
INSERT INTO `wp_postmeta` VALUES (950,89,'upcoming_1_artist_name','Curated by Mike Q. Roth');
INSERT INTO `wp_postmeta` VALUES (951,89,'_upcoming_1_artist_name','field_517c1d8e9d8fc');
INSERT INTO `wp_postmeta` VALUES (952,89,'upcoming_1_artist_website','');
INSERT INTO `wp_postmeta` VALUES (953,89,'_upcoming_1_artist_website','field_517c1ddd9d8ff');
INSERT INTO `wp_postmeta` VALUES (954,89,'upcoming_1_exhibit_title','Button Art');
INSERT INTO `wp_postmeta` VALUES (955,89,'_upcoming_1_exhibit_title','field_517c1daa9d8fd');
INSERT INTO `wp_postmeta` VALUES (956,89,'upcoming_1_exhibit_description','An art show full of buttons.');
INSERT INTO `wp_postmeta` VALUES (957,89,'_upcoming_1_exhibit_description','field_517c1dc09d8fe');
INSERT INTO `wp_postmeta` VALUES (958,98,'memberships','<p dir=\"ltr\">Roboto Members receive the following benefits:</p>\r\n\r\n<ul>\r\n <li>The ability to rent Roboto for events</li>\r\n <li>A $1 discount at the door on all Roboto events</li>\r\n <li>Discounts around town at affiliate businesses (see below)</li>\r\n <li>A vote in Board of Director elections and other issues voted upon</li>\r\n <li>The ability to run for the Board of Directors</li>\r\n</ul>\r\n<p dir=\"ltr\">A Standard One-Year Roboto Membership is $25. Once purchased, an official membership card will be delivered to your mailing address. A $10 renewal fee is due every 12 months to maintain membership.</p>\r\n<p dir=\"ltr\">A Lifetime Membership is also available at a one-time cost of $100.</p>\r\nFor more information, please consult the Official Membership Packet');
INSERT INTO `wp_postmeta` VALUES (959,98,'_memberships','field_517c444d96cca');
INSERT INTO `wp_postmeta` VALUES (960,98,'roboto_affiliate_program','As a Roboto Member, you are also eligible for discounts at participating local businesses.\r\nThe participating businesses are as follows:');
INSERT INTO `wp_postmeta` VALUES (961,98,'_roboto_affiliate_program','field_517c446096ccb');
INSERT INTO `wp_postmeta` VALUES (962,98,'affiliates_0_affiliate_name','Spak Brother');
INSERT INTO `wp_postmeta` VALUES (963,98,'_affiliates_0_affiliate_name','field_517c44b696ccd');
INSERT INTO `wp_postmeta` VALUES (964,98,'affiliates_0_affiliate_website','http://www.spakbrothers.com/');
INSERT INTO `wp_postmeta` VALUES (965,98,'_affiliates_0_affiliate_website','field_517c44c296cce');
INSERT INTO `wp_postmeta` VALUES (966,98,'affiliates_0_affiliate_image','83');
INSERT INTO `wp_postmeta` VALUES (967,98,'_affiliates_0_affiliate_image','field_517c45ea277d0');
INSERT INTO `wp_postmeta` VALUES (968,98,'affiliates','1');
INSERT INTO `wp_postmeta` VALUES (969,98,'_affiliates','field_517c447c96ccc');
INSERT INTO `wp_postmeta` VALUES (970,99,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (971,99,'field_517d4109b91d8','a:11:{s:3:\"key\";s:19:\"field_517d4109b91d8\";s:5:\"label\";s:16:\"Show Application\";s:4:\"name\";s:16:\"show_application\";s:4:\"type\";s:7:\"acf_cf7\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:10:\"allow_null\";s:1:\"0\";s:8:\"multiple\";s:1:\"0\";s:7:\"disable\";a:1:{i:0;s:1:\"0\";}s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:2:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:0;}');
INSERT INTO `wp_postmeta` VALUES (974,99,'position','normal');
INSERT INTO `wp_postmeta` VALUES (975,99,'layout','no_box');
INSERT INTO `wp_postmeta` VALUES (976,99,'hide_on_screen','');
INSERT INTO `wp_postmeta` VALUES (977,99,'_edit_lock','1367776787:1');
INSERT INTO `wp_postmeta` VALUES (979,100,'band_form','77');
INSERT INTO `wp_postmeta` VALUES (980,100,'_band_form','field_517d4109b91d8');
INSERT INTO `wp_postmeta` VALUES (981,100,'promoter_form','77');
INSERT INTO `wp_postmeta` VALUES (982,100,'_promoter_form','field_517d411db91d9');
INSERT INTO `wp_postmeta` VALUES (1094,66,'field_517d441587a8d','a:10:{s:3:\"key\";s:19:\"field_517d441587a8d\";s:5:\"label\";s:5:\"Space\";s:4:\"name\";s:5:\"space\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:2:\"br\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:2:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:3;}');
INSERT INTO `wp_postmeta` VALUES (1095,66,'rule','a:5:{s:5:\"param\";s:4:\"page\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"8\";s:8:\"order_no\";i:0;s:8:\"group_no\";i:0;}');
INSERT INTO `wp_postmeta` VALUES (1204,66,'_wp_trash_meta_status','publish');
INSERT INTO `wp_postmeta` VALUES (1205,66,'_wp_trash_meta_time','1367164011');
INSERT INTO `wp_postmeta` VALUES (1208,109,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (1209,109,'_edit_lock','1367164794:1');
INSERT INTO `wp_postmeta` VALUES (1210,109,'_wp_page_template','about.php');
INSERT INTO `wp_postmeta` VALUES (1211,113,'_edit_last','1');
INSERT INTO `wp_postmeta` VALUES (1212,113,'field_517d44cae9fde','a:10:{s:3:\"key\";s:19:\"field_517d44cae9fde\";s:5:\"label\";s:7:\"Mission\";s:4:\"name\";s:7:\"mission\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:2:\"br\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:0;}');
INSERT INTO `wp_postmeta` VALUES (1213,113,'field_517d44d5e9fdf','a:13:{s:3:\"key\";s:19:\"field_517d44d5e9fdf\";s:5:\"label\";s:13:\"Board Members\";s:4:\"name\";s:13:\"board_members\";s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:10:\"sub_fields\";a:2:{i:0;a:9:{s:3:\"key\";s:19:\"field_517d44f7e9fe0\";s:5:\"label\";s:4:\"Name\";s:4:\"name\";s:4:\"name\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:12:\"column_width\";s:0:\"\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:4:\"none\";s:8:\"order_no\";i:0;}i:1;a:9:{s:3:\"key\";s:19:\"field_517d44fee9fe1\";s:5:\"label\";s:8:\"Position\";s:4:\"name\";s:8:\"position\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:12:\"column_width\";s:0:\"\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:4:\"none\";s:8:\"order_no\";i:1;}}s:7:\"row_min\";s:1:\"0\";s:9:\"row_limit\";s:0:\"\";s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:7:\"Add Row\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:1;}');
INSERT INTO `wp_postmeta` VALUES (1214,113,'field_517d4514e9fe2','a:11:{s:3:\"key\";s:19:\"field_517d4514e9fe2\";s:5:\"label\";s:7:\"History\";s:4:\"name\";s:7:\"history\";s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:13:\"default_value\";s:0:\"\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";s:2:\"no\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:2;}');
INSERT INTO `wp_postmeta` VALUES (1215,113,'field_517d454ae9fe3','a:10:{s:3:\"key\";s:19:\"field_517d454ae9fe3\";s:5:\"label\";s:5:\"Space\";s:4:\"name\";s:5:\"space\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:13:\"default_value\";s:0:\"\";s:10:\"formatting\";s:2:\"br\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:3;}');
INSERT INTO `wp_postmeta` VALUES (1216,113,'field_517d4556e9fe4','a:13:{s:3:\"key\";s:19:\"field_517d4556e9fe4\";s:5:\"label\";s:8:\"Pictures\";s:4:\"name\";s:8:\"pictures\";s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:10:\"sub_fields\";a:1:{i:0;a:9:{s:3:\"key\";s:19:\"field_517d456fe9fe5\";s:5:\"label\";s:7:\"Picture\";s:4:\"name\";s:7:\"picture\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:12:\"column_width\";s:0:\"\";s:11:\"save_format\";s:2:\"id\";s:12:\"preview_size\";s:9:\"thumbnail\";s:8:\"order_no\";i:0;}}s:7:\"row_min\";s:1:\"6\";s:9:\"row_limit\";s:1:\"6\";s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:7:\"Add Row\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:4;}');
INSERT INTO `wp_postmeta` VALUES (1217,113,'field_517d459ae9fe6','a:11:{s:3:\"key\";s:19:\"field_517d459ae9fe6\";s:5:\"label\";s:19:\"Picture Attribution\";s:4:\"name\";s:19:\"picture_attribution\";s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:13:\"default_value\";s:0:\"\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";s:2:\"no\";s:17:\"conditional_logic\";a:3:{s:6:\"status\";s:1:\"0\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"field\";s:4:\"null\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";}}s:8:\"allorany\";s:3:\"all\";}s:8:\"order_no\";i:5;}');
INSERT INTO `wp_postmeta` VALUES (1219,113,'position','normal');
INSERT INTO `wp_postmeta` VALUES (1220,113,'layout','no_box');
INSERT INTO `wp_postmeta` VALUES (1221,113,'hide_on_screen','a:1:{i:0;s:11:\"the_content\";}');
INSERT INTO `wp_postmeta` VALUES (1222,113,'_edit_lock','1367164483:1');
INSERT INTO `wp_postmeta` VALUES (1224,113,'rule','a:5:{s:5:\"param\";s:4:\"page\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"109\";s:8:\"order_no\";i:0;s:8:\"group_no\";i:0;}');
INSERT INTO `wp_postmeta` VALUES (1225,114,'mission','The Mr. Roboto Project is a cooperatively-run performance space, art gallery, and zine library located at 5106 Penn Avenue in Pittsburgh, PA. Since 1999 The Mr. Roboto Project has endeavored to create a comfortable and open space for people of all-ages to participate in a true DIY (do-it-yourself) community.\r\n\r\nAs a cooperative, the direction that the project takes is up to its members. Monthly meetings are held where members can get together to discuss the future of the project. Members elect a five person Board of Directors who handle the day-to-day decision making for the Project.');
INSERT INTO `wp_postmeta` VALUES (1226,114,'_mission','field_517d44cae9fde');
INSERT INTO `wp_postmeta` VALUES (1227,114,'board_members_0_name','Mike \"Q\" Roth');
INSERT INTO `wp_postmeta` VALUES (1228,114,'_board_members_0_name','field_517d44f7e9fe0');
INSERT INTO `wp_postmeta` VALUES (1229,114,'board_members_0_position','Facilities and Exhibition Coordinator');
INSERT INTO `wp_postmeta` VALUES (1230,114,'_board_members_0_position','field_517d44fee9fe1');
INSERT INTO `wp_postmeta` VALUES (1231,114,'board_members_1_name','Kieth Bryner');
INSERT INTO `wp_postmeta` VALUES (1232,114,'_board_members_1_name','field_517d44f7e9fe0');
INSERT INTO `wp_postmeta` VALUES (1233,114,'board_members_1_position','Treasurer and Fundraising');
INSERT INTO `wp_postmeta` VALUES (1234,114,'_board_members_1_position','field_517d44fee9fe1');
INSERT INTO `wp_postmeta` VALUES (1235,114,'board_members_2_name','Ricky Moslen');
INSERT INTO `wp_postmeta` VALUES (1236,114,'_board_members_2_name','field_517d44f7e9fe0');
INSERT INTO `wp_postmeta` VALUES (1237,114,'board_members_2_position','Booking and Show Promotion');
INSERT INTO `wp_postmeta` VALUES (1238,114,'_board_members_2_position','field_517d44fee9fe1');
INSERT INTO `wp_postmeta` VALUES (1239,114,'board_members','3');
INSERT INTO `wp_postmeta` VALUES (1240,114,'_board_members','field_517d44d5e9fdf');
INSERT INTO `wp_postmeta` VALUES (1241,114,'history','The Mr. Roboto Project first opened in November 1999. The idea was hatched a year earlier and the first organizational meeting was held in January 1999 at the former punk house/venue The Peach Pitt. The initial group included promoters and band members who held DIY punk and hardcore shows in a variety of spaces -- basements, universities, bars, dance studios, wherever they could. These spaces would come and go, so the idea was to open a space “by the kids, for the kids” that could reliably do shows on a regular basis run cooperatively by the people involved and open to people of all ages. In Fall of 1999, a storefront on Wood Street in Wilkinsburg was found and Roboto was born.\r\n\r\nAt the end of February 2010, after a decade of operating in the original storefront, Roboto’s Board of Directors decided to close the original location. Thirteen months later the Roboto Transition Team announced an agreement with the <a href=\"http://bloomfield-garfield.org/\">Bloomfield-Garfield Corporation</a> to move into our new location. After 6+ months of reconstruction, the new Roboto officially opened in November 2011.\r\n\r\nOf course there is much much more to our history and for that we recommend you pick up the book “Building a Better Robot: 10 Years of the Mr. Roboto Project”. This book is a 192 page collection of photos and stories, including a thorough history, of Roboto’s first ten years at the original space. This book was published with financial assistance from <a href=\"http://www.sproutfund.org/\">The Sprout Fund</a>. You can purchase the book <a href=\"http://www.therobotoproject.org/book/\">here</a>.');
INSERT INTO `wp_postmeta` VALUES (1242,114,'_history','field_517d4514e9fe2');
INSERT INTO `wp_postmeta` VALUES (1243,114,'space','The Mr. Roboto Project is an approximately 1500 square foot former bar located at 5106 Penn Avenue along the border of the Bloomfield and Garfield neighborhoods. The venue is split into two primary rooms -- a gallery space and the performance area. Roboto has a capacity of approx. 150 people. \r\n\r\nRoboto’s performance area is approximately 23’x31’ and includes a small 12” high stage riser in one corner. Roboto supplies a basic sound system including vocal microphones and monitors. Roboto’s staff of volunteers will run sound during events. Please get in touch if you have questions about whether or not Roboto would be appropriate for a performance you are planning.\r\n');
INSERT INTO `wp_postmeta` VALUES (1244,114,'_space','field_517d454ae9fe3');
INSERT INTO `wp_postmeta` VALUES (1245,114,'pictures_0_picture','47');
INSERT INTO `wp_postmeta` VALUES (1246,114,'_pictures_0_picture','field_517d456fe9fe5');
INSERT INTO `wp_postmeta` VALUES (1247,114,'pictures_1_picture','48');
INSERT INTO `wp_postmeta` VALUES (1248,114,'_pictures_1_picture','field_517d456fe9fe5');
INSERT INTO `wp_postmeta` VALUES (1249,114,'pictures_2_picture','46');
INSERT INTO `wp_postmeta` VALUES (1250,114,'_pictures_2_picture','field_517d456fe9fe5');
INSERT INTO `wp_postmeta` VALUES (1251,114,'pictures_3_picture','45');
INSERT INTO `wp_postmeta` VALUES (1252,114,'_pictures_3_picture','field_517d456fe9fe5');
INSERT INTO `wp_postmeta` VALUES (1253,114,'pictures_4_picture','44');
INSERT INTO `wp_postmeta` VALUES (1254,114,'_pictures_4_picture','field_517d456fe9fe5');
INSERT INTO `wp_postmeta` VALUES (1255,114,'pictures_5_picture','43');
INSERT INTO `wp_postmeta` VALUES (1256,114,'_pictures_5_picture','field_517d456fe9fe5');
INSERT INTO `wp_postmeta` VALUES (1257,114,'pictures','6');
INSERT INTO `wp_postmeta` VALUES (1258,114,'_pictures','field_517d4556e9fe4');
INSERT INTO `wp_postmeta` VALUES (1259,114,'picture_attribution','(1) some photographer, (2-6) some other photographer');
INSERT INTO `wp_postmeta` VALUES (1260,114,'_picture_attribution','field_517d459ae9fe6');
INSERT INTO `wp_postmeta` VALUES (1261,109,'mission','The Mr. Roboto Project is a cooperatively-run performance space, art gallery, and zine library located at 5106 Penn Avenue in Pittsburgh, PA. Since 1999 The Mr. Roboto Project has endeavored to create a comfortable and open space for people of all-ages to participate in a true DIY (do-it-yourself) community.\r\n\r\nAs a cooperative, the direction that the project takes is up to its members. Monthly meetings are held where members can get together to discuss the future of the project. Members elect a five person Board of Directors who handle the day-to-day decision making for the Project.');
INSERT INTO `wp_postmeta` VALUES (1262,109,'_mission','field_517d44cae9fde');
INSERT INTO `wp_postmeta` VALUES (1263,109,'board_members_0_name','Mike \"Q\" Roth');
INSERT INTO `wp_postmeta` VALUES (1264,109,'_board_members_0_name','field_517d44f7e9fe0');
INSERT INTO `wp_postmeta` VALUES (1265,109,'board_members_0_position','Facilities and Exhibition Coordinator');
INSERT INTO `wp_postmeta` VALUES (1266,109,'_board_members_0_position','field_517d44fee9fe1');