-
Notifications
You must be signed in to change notification settings - Fork 1
/
vd (1).sql
575 lines (521 loc) · 182 KB
/
vd (1).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
-- phpMyAdmin SQL Dump
-- version 3.5.1
-- http://www.phpmyadmin.net
--
-- Client: localhost
-- Généré le: Mer 30 Janvier 2013 à 16:30
-- Version du serveur: 5.5.20-log
-- Version de PHP: 5.3.10
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!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 */;
--
-- Base de données: `vd`
--
-- --------------------------------------------------------
--
-- Structure de la table `wp_commentmeta`
--
CREATE TABLE IF NOT EXISTS `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 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Structure de la table `wp_comments`
--
CREATE TABLE IF NOT EXISTS `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 DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
-- --------------------------------------------------------
--
-- Structure de la table `wp_links`
--
CREATE TABLE IF NOT EXISTS `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 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Structure de la table `wp_options`
--
CREATE TABLE IF NOT EXISTS `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 DEFAULT CHARSET=utf8 AUTO_INCREMENT=214 ;
--
-- Contenu de la table `wp_options`
--
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://127.0.0.1/VD2', 'yes'),
(2, 'blogname', 'Vincent Durand', 'yes'),
(3, 'blogdescription', 'Un site utilisant WordPress', 'yes'),
(4, 'users_can_register', '0', 'yes'),
(5, 'admin_email', '[email protected]', 'yes'),
(6, 'start_of_week', '1', 'yes'),
(7, 'use_balanceTags', '0', 'yes'),
(8, 'use_smilies', '1', 'yes'),
(9, 'require_name_email', '1', 'yes'),
(10, 'comments_notify', '1', 'yes'),
(11, 'posts_per_rss', '10', 'yes'),
(12, 'rss_use_excerpt', '0', 'yes'),
(13, 'mailserver_url', 'mail.example.com', 'yes'),
(14, 'mailserver_login', '[email protected]', 'yes'),
(15, 'mailserver_pass', 'password', 'yes'),
(16, 'mailserver_port', '110', 'yes'),
(17, 'default_category', '1', 'yes'),
(18, 'default_comment_status', 'open', 'yes'),
(19, 'default_ping_status', 'open', 'yes'),
(20, 'default_pingback_flag', '1', 'yes'),
(21, 'posts_per_page', '10', 'yes'),
(22, 'date_format', 'j F Y', 'yes'),
(23, 'time_format', 'G \\h i \\m\\i\\n', 'yes'),
(24, 'links_updated_date_format', 'j F Y, G \\h i \\m\\i\\n', 'yes'),
(25, 'links_recently_updated_prepend', '<em>', 'yes'),
(26, 'links_recently_updated_append', '</em>', 'yes'),
(27, 'links_recently_updated_time', '120', 'yes'),
(28, 'comment_moderation', '0', 'yes'),
(29, 'moderation_notify', '1', 'yes'),
(30, 'permalink_structure', '', 'yes'),
(31, 'gzipcompression', '0', 'yes'),
(32, 'hack_file', '0', 'yes'),
(33, 'blog_charset', 'UTF-8', 'yes'),
(34, 'moderation_keys', '', 'no'),
(35, 'active_plugins', 'a:2:{i:0;s:43:"multi-image-metabox/multi-image-metabox.php";i:1;s:47:"regenerate-thumbnails/regenerate-thumbnails.php";}', 'yes'),
(36, 'home', 'http://127.0.0.1/VD2', 'yes'),
(37, 'category_base', '', 'yes'),
(38, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(39, 'advanced_edit', '0', 'yes'),
(40, 'comment_max_links', '2', 'yes'),
(41, 'gmt_offset', '1', 'yes'),
(42, 'default_email_category', '1', 'yes'),
(43, 'recently_edited', '', 'no'),
(44, 'template', 'vd', 'yes'),
(45, 'stylesheet', 'vd', 'yes'),
(46, 'comment_whitelist', '1', 'yes'),
(47, 'blacklist_keys', '', 'no'),
(48, 'comment_registration', '0', 'yes'),
(49, 'html_type', 'text/html', 'yes'),
(50, 'use_trackback', '0', 'yes'),
(51, 'default_role', 'subscriber', 'yes'),
(52, 'db_version', '22441', 'yes'),
(53, 'uploads_use_yearmonth_folders', '1', 'yes'),
(54, 'upload_path', '', 'yes'),
(55, 'blog_public', '1', 'yes'),
(56, 'default_link_category', '2', 'yes'),
(57, 'show_on_front', 'posts', 'yes'),
(58, 'tag_base', '', 'yes'),
(59, 'show_avatars', '1', 'yes'),
(60, 'avatar_rating', 'G', 'yes'),
(61, 'upload_url_path', '', 'yes'),
(62, 'thumbnail_size_w', '150', 'yes'),
(63, 'thumbnail_size_h', '150', 'yes'),
(64, 'thumbnail_crop', '1', 'yes'),
(65, 'medium_size_w', '300', 'yes'),
(66, 'medium_size_h', '300', 'yes'),
(67, 'avatar_default', 'mystery', 'yes'),
(68, 'large_size_w', '1024', 'yes'),
(69, 'large_size_h', '1024', 'yes'),
(70, 'image_default_link_type', 'file', 'yes'),
(71, 'image_default_size', '', 'yes'),
(72, 'image_default_align', '', 'yes'),
(73, 'close_comments_for_old_posts', '0', 'yes'),
(74, 'close_comments_days_old', '14', 'yes'),
(75, 'thread_comments', '1', 'yes'),
(76, 'thread_comments_depth', '5', 'yes'),
(77, 'page_comments', '0', 'yes'),
(78, 'comments_per_page', '50', 'yes'),
(79, 'default_comments_page', 'newest', 'yes'),
(80, 'comment_order', 'asc', 'yes'),
(81, 'sticky_posts', 'a:0:{}', 'yes'),
(82, 'widget_categories', 'a:2:{i:2;a:4:{s:5:"title";s:0:"";s:5:"count";i:0;s:12:"hierarchical";i:0;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(83, 'widget_text', 'a:0:{}', 'yes'),
(84, 'widget_rss', 'a:0:{}', 'yes'),
(85, 'uninstall_plugins', 'a:0:{}', 'no'),
(86, 'timezone_string', '', 'yes'),
(87, 'page_for_posts', '0', 'yes'),
(88, 'page_on_front', '0', 'yes'),
(89, 'default_post_format', '0', 'yes'),
(90, 'link_manager_enabled', '0', 'yes'),
(91, 'initial_db_version', '22441', 'yes'),
(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'),
(93, 'widget_search', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(94, 'widget_recent-posts', 'a:2:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}s:12:"_multiwidget";i:1;}', 'yes'),
(95, 'widget_recent-comments', 'a:2:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}s:12:"_multiwidget";i:1;}', 'yes'),
(96, 'widget_archives', 'a:2:{i:2;a:3:{s:5:"title";s:0:"";s:5:"count";i:0;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(97, 'widget_meta', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(98, 'sidebars_widgets', 'a:3:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:6:{i:0;s:8:"search-2";i:1;s:14:"recent-posts-2";i:2;s:17:"recent-comments-2";i:3;s:10:"archives-2";i:4;s:12:"categories-2";i:5;s:6:"meta-2";}s:13:"array_version";i:3;}', 'yes'),
(99, 'cron', 'a:4:{i:1359585980;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:1359631302;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:1359640310;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'),
(101, '_site_transient_update_core', 'O:8:"stdClass":3:{s:7:"updates";a:2:{i:0;O:8:"stdClass":9:{s:8:"response";s:6:"latest";s:8:"download";s:49:"http://fr.wordpress.org/wordpress-3.5.1-fr_FR.zip";s:6:"locale";s:5:"fr_FR";s:8:"packages";O:8:"stdClass":4:{s:4:"full";s:49:"http://fr.wordpress.org/wordpress-3.5.1-fr_FR.zip";s:10:"no_content";b:0;s:11:"new_bundled";b:0;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:"";}i:1;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:1359557725;s:15:"version_checked";s:5:"3.5.1";}', 'yes'),
(102, '_site_transient_update_plugins', 'O:8:"stdClass":3:{s:12:"last_checked";i:1359562454;s:7:"checked";a:5:{s:19:"akismet/akismet.php";s:5:"2.5.6";s:9:"hello.php";s:3:"1.6";s:43:"multi-image-metabox/multi-image-metabox.php";s:3:"1.3";s:47:"regenerate-thumbnails/regenerate-thumbnails.php";s:5:"2.2.4";s:44:"root-relative-urls/sb_root_relative_urls.php";s:3:"1.8";}s:8:"response";a:1:{s:19:"akismet/akismet.php";O:8:"stdClass":5:{s:2:"id";s:2:"15";s:4:"slug";s:7:"akismet";s:11:"new_version";s:5:"2.5.7";s:3:"url";s:44:"http://wordpress.org/extend/plugins/akismet/";s:7:"package";s:55:"http://downloads.wordpress.org/plugin/akismet.2.5.7.zip";}}}', 'yes'),
(105, '_site_transient_update_themes', 'O:8:"stdClass":3:{s:12:"last_checked";i:1359538826;s:7:"checked";a:5:{s:7:"one-div";s:0:"";s:12:"twentyeleven";s:3:"1.5";s:9:"twentyten";s:3:"1.5";s:12:"twentytwelve";s:3:"1.1";s:2:"vd";s:0:"";}s:8:"response";a:0:{}}', 'yes'),
(106, '_site_transient_timeout_browser_f06ec280e9bf7a75da17008ecb37f3aa', '1356950786', 'yes'),
(107, '_site_transient_browser_f06ec280e9bf7a75da17008ecb37f3aa', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:12:"23.0.1271.97";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'),
(108, '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:20:"http://127.0.0.1/VD2";s:4:"link";s:96:"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://127.0.0.1/VD2/";s:3:"url";s:129:"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://127.0.0.1/VD2/";s:5:"items";i:10;s:9:"show_date";b:0;}s:17:"dashboard_primary";a:7:{s:4:"link";s:35:"http://www.wordpress-fr.net/planet/";s:3:"url";s:55:"http://feeds2.feedburner.com/WordpressFrancophonePlanet";s:5:"title";s:14:"Blog WordPress";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:35:"http://www.wordpress-fr.net/planet/";s:3:"url";s:55:"http://feeds2.feedburner.com/WordpressFrancophonePlanet";s:5:"title";s:46:"Autres actualités de WordPress (en français)";s:5:"items";i:5;s:12:"show_summary";i:0;s:11:"show_author";i:0;s:9:"show_date";i:0;}}', 'yes'),
(121, 'can_compress_scripts', '1', 'yes'),
(139, '_site_transient_timeout_wporg_theme_feature_list', '1356367062', 'yes'),
(140, '_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'),
(141, 'theme_mods_twentytwelve', 'a:1:{s:16:"sidebars_widgets";a:2:{s:4:"time";i:1356356261;s:4:"data";a:4:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:6:{i:0;s:8:"search-2";i:1;s:14:"recent-posts-2";i:2;s:17:"recent-comments-2";i:3;s:10:"archives-2";i:4;s:12:"categories-2";i:5;s:6:"meta-2";}s:9:"sidebar-2";a:0:{}s:9:"sidebar-3";a:0:{}}}}', 'yes'),
(142, 'current_theme', '', 'yes'),
(143, 'theme_mods_vd', 'a:1:{i:0;b:0;}', 'yes'),
(144, 'theme_switched', '', 'yes'),
(152, '_site_transient_timeout_browser_3760ceb90b70f0e9a370ea1ce190c471', '1359994674', 'yes'),
(153, '_site_transient_browser_3760ceb90b70f0e9a370ea1ce190c471', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:12:"24.0.1312.56";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'),
(178, '_site_transient_timeout_theme_roots', '1359559526', 'yes'),
(179, '_site_transient_theme_roots', 'a:5:{s:7:"one-div";s:7:"/themes";s:12:"twentyeleven";s:7:"/themes";s:9:"twentyten";s:7:"/themes";s:12:"twentytwelve";s:7:"/themes";s:2:"vd";s:7:"/themes";}', 'yes'),
(180, '_transient_timeout_feed_0f1ce5004e60c18e022b47a0d8c7c82d', '1359601058', 'no'),
(181, '_transient_feed_0f1ce5004e60c18e022b47a0d8c7c82d', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:4:"\n \n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:33:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:47:"link:http://127.0.0.1/VD2/ - 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:84:"http://www.google.com/search?ie=utf-8&q=link:http://127.0.0.1/VD2/&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:78:"Your search - <b>link:http://127.0.0.1/VD2/</b> - did not match any documents.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://a9.com/-/spec/opensearch/1.1/";a:3:{s:12:"totalResults";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:10:"startIndex";a:1:{i:0;a:5:{s:4:"data";s:1:"1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:12:"itemsPerPage";a:1:{i:0;a:5:{s:4:"data";s:2:"10";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:9:{s:12:"content-type";s:28:"text/xml; charset=ISO-8859-1";s:4:"date";s:29:"Wed, 30 Jan 2013 14:57:41 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=1fc303ba771ab32e:FF=0:TM=1359557861:LM=1359557861:S=6TD6ZgqqmBGfYW83; expires=Fri, 30-Jan-2015 14:57:41 GMT; path=/; domain=.google.com";i:1;s:212:"NID=67=CFxH6MsvvMGFApbSQivz7-DWXT1v2dmXzLp9rKb5Kqmr8w1mXG7V2c0CaAZX9i6-4yZ3ROkhRCzik3qPySWRJEigQNUMY5ZNGxdCHSnFVjVMAUTteayzlBF7zZi4iEOD; expires=Thu, 01-Aug-2013 14:57:41 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:"20121202154312";}', 'no'),
(182, '_transient_timeout_feed_mod_0f1ce5004e60c18e022b47a0d8c7c82d', '1359601058', 'no'),
(183, '_transient_feed_mod_0f1ce5004e60c18e022b47a0d8c7c82d', '1359557858', 'no'),
(184, '_transient_timeout_dash_20494a3d90a6669585674ed0eb8dcd8f', '1359601058', 'no'),
(185, '_transient_timeout_feed_2fb9572e3d6a42f680e36370936a57ae', '1359601058', 'no'),
(187, '_transient_dash_20494a3d90a6669585674ed0eb8dcd8f', '<p>Ce widget envoie une requête vers <a href="http://blogsearch.google.com/">le moteur de recherche des blogs de Google</a>, de sorte que quand un autre blog fera un lien vers le vôtre, son nom s’affichera ici. Ce moteur n’a pas encore trouvé de lien entrant… Ce n’est pas grave, on n’est pas pressé.</p>\n', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(188, '_transient_feed_2fb9572e3d6a42f680e36370936a57ae', 'a:4:{s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"feed";a:1:{i:0;a:6:{s:4:"data";s:255:"\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:27:"http://www.w3.org/2005/Atom";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:30:"WordPress Francophone : 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:8:"subtitle";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:2:"id";a:1:{i:0;a:5:{s:4:"data";s:35:"http://www.wordpress-fr.net/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:3:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:3:"rel";s:9:"alternate";s:4:"type";s:9:"text/html";s:4:"href";s:35:"http://www.wordpress-fr.net/planet/";}}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:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:3:"rel";s:4:"self";s:4:"type";s:20:"application/atom+xml";s:4:"href";s:54:"http://feeds.feedburner.com/WordpressFrancophonePlanet";}}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:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:3:"hub";s:4:"href";s:32:"http://pubsubhubbub.appspot.com/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"updated";a:1:{i:0;a:5:{s:4:"data";s:20:"2013-01-30T15:32:58Z";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:6:"Author";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:5:"entry";a:16:{i:0;a:6:{s:4:"data";s:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:57:"WP Formation : BuddyPress – Tutorial en mode pas-à-pas";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:52:"http://wpformation.com/buddypress-en-mode-pas-a-pas/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:52:"http://wpformation.com/buddypress-en-mode-pas-a-pas/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2013-01-30T08:00:07+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:1374:"<div>\n<img width="300" height="300" src="http://wpformation.com/wp-content/uploads/2013/01/buddyPress-Logo-300x300.png" class="attachment-medium wp-post-image" alt="buddyPress-Tutorial" style="float:right;margin:0 0 10px 10px;"><p>Il y a quelques jours, le WordCamp me donnait l’opportunité de parler de mon plugin WordPress préféré : BuddyPress. Lors de ma conférence, je vous ai présenté globalement ce puissant moteur de communautés. Or le WordCamp, c’est aussi une rencontre communautaire, et je suis heureux d’avoir fait la connaissance de Fabrice avec qui j’ai beaucoup ...</p>\n<p></p>\n<hr>\n<a rel="nofollow" target="_blank" href="http://wpformation.com/buddypress-en-mode-pas-a-pas/">BuddyPress – Tutorial en mode pas-à-pas</a> est un article de <a rel="nofollow" title="Formation Internet WordPress Ecommerce" target="_blank" href="http://wpformation.com/">WP Formation</a><br>\nN''hésitez pas à nous suivre sur : <a rel="nofollow" title="Ajouter sur Facebook" target="_blank" href="http://www.facebook.com/Wibeweb">Facebook</a> - <a rel="nofollow" title="Suivre sur Twitter" target="_blank" href="http://twitter.com/#!/Web_Design_Web">Twitter</a> - <a rel="nofollow" target="_blank" href="https://plus.google.com/107614015687669785725/">Google+</a>\n<hr>\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:80:"WordPress Francophone : L’Hebdo WordPress : 10 ans – WordPress 3.6 – Codex";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:67:"http://feedproxy.google.com/~r/WordpressFrancophone/~3/v9A_30la4bM/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:67:"http://feedproxy.google.com/~r/WordpressFrancophone/~3/v9A_30la4bM/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2013-01-29T07:26:14+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:6174:"<div>\n<h3>10 ans déjà !</h3>\n<p><a rel="nofollow" target="_blank" href="https://twitter.com/photomatt/statuses/294852866575826944">Le 25 janvier</a> le projet WordPress fêtait son 10e anniversaire. <a rel="nofollow" target="_blank" href="http://zed1.com/journalized/archives/2013/01/25/wordpress-a-10-year-journey/">Le 25 janvier 2003, les premières discussions étaient lancées </a>!</p>\n<h3>Point sur WordPress 3.6</h3>\n<ul>\n<li>Tous les jours de nouvelles discussions démarrent ou se poursuivre concernant le développement de WordPress 3.6 sur le blog de l’équipe de développement, plutôt que de vous faire le résumé point par point, <a rel="nofollow" target="_blank" href="http://make.wordpress.org/core/">je vous invite à suivre les progressions ici.</a>\n</li>\n<li>WordPress VIP <a rel="nofollow" target="_blank" href="http://vip.wordpress.com/2013/01/25/whats-coming-up-with-wordpress-3-6/">présente WordPress 3.6</a>.</li>\n</ul>\n<h3>La traduction du Codex</h3>\n<p>Lors du WordCamp Paris 2013, Manuel S. a lancé un effort de traduction du Codex en français. L’<a rel="nofollow" target="_blank" href="https://www.dropbox.com/sh/g9jhq5etacqitqq/5hl4f0eQJd">avancée des travaux est mise à disposition</a>.</p>\n<h3>WordPress pour Android 2.2.6</h3>\n<p><a rel="nofollow" target="_blank" href="http://android.wordpress.org/2013/01/24/2-2-6-update/">La version Android passe en 2.2.6</a>, mettez à jour !</p>\n<h3>BuddyPress 1.6.4</h3>\n<p><a rel="nofollow" target="_blank" href="http://buddypress.org/2013/01/buddypress-1-6-4-maintenance-and-security-release/">BuddyPress débarque en version 1.6.4 </a>pour une version de sécurité et de maintenance.</p>\n<h3>bbPress 2.2.4</h3>\n<p><a rel="nofollow" target="_blank" href="http://bbpress.org/blog/2013/01/bbpress-2-2-4-maintenance-and-security-release/">bbPress 2.2.4 est sortie</a>, pensez à mettre à jour vos installations.</p>\n<h3>Activer/Désactiver les modules Jetpack</h3>\n<p><a rel="nofollow" target="_blank" href="http://wpchannel.com/desactiver-modules-jetpack-wordpress/">Quelques explications pour apprivoiser Jetpack</a> et ses nombreux modules.</p>\n<h3>Afficher la météo sur son blog</h3>\n<p>Fabrice propose <a rel="nofollow" target="_blank" href="http://wpformation.com/afficher-meteo-blog/">d’intégrer la météo </a>sur son site grâce à une extension.</p>\n<h3>Automattic rachète Simperium</h3>\n<p>Simperium, <a rel="nofollow" target="_blank" href="http://allthingsd.com/20130124/automattic-buys-simpermium-maker-of-simplenote/?mod=tweet">start-up spécialisée dans la synchronisation de données </a>a été <a rel="nofollow" target="_blank" href="http://pro.clubic.com/actualite-e-business/investissement/actualite-537538-automattic-maison-mere-wordpress-simperium.html">acquise par Automattic</a>.</p>\n<h3>WordPress : un CMS pour les gouverner tous !</h3>\n<p><a rel="nofollow" target="_blank" href="http://www.guerillaweb.ca/cms-wordpress-infographie/">Une infographie sympathique</a> sur le thème du Seigneur des Anneaux expliquant l’évolution de WordPress.</p>\n<h3>Retirer les menus du tableau de bord</h3>\n<p>Si vous avez besoin pour votre projet de <a rel="nofollow" target="_blank" href="http://wpmu.org/how-to-remove-menus-from-the-wordpress-dashboard/">retirer les menus du tableau de bord de WordPress</a>, suivi cette procédure.</p>\n<h3>Un intranet avec WordPress</h3>\n<p><a rel="nofollow" target="_blank" href="http://blog.teamtreehouse.com/a-new-way-to-use-wordpress-to-kill-your-competition">Un petit tutoriel rapide pour créer un intranet</a> avec WordPress.</p>\n<h3>Conseils pour développer sa communauté</h3>\n<p><a rel="nofollow" target="_blank" href="http://blog.pingomatic.com/2013/01/24/engagement/">Ping-O-Matic présente quelques points </a>de bon sens pour développer sa propre communauté.</p>\n<h3>Intégrer des panoramas Photo-Sphere</h3>\n<p>Avec Android 4.0 il est possible de réaliser des panoramas, mais leurs utilisations en dehors du téléphone est délicate, <a rel="nofollow" target="_blank" href="http://www.fredzone.org/integrer-panoramas-photo-sphere-wordpress-119">voici une astuce pour contourner le problème.</a></p>\n<h3>Supprimer la balise p pour category_description.</h3>\n<p>WPChannel propose de <a rel="nofollow" target="_blank" href="http://wpchannel.com/supprimer-balise-p-category_description-wordpress/">vous aider à supprimer un paragraphe gênant</a> dans certaines parties de WordPress.</p>\n<h3>Trier des articles selon une période</h3>\n<p>GeekPress va vous permettre de <a rel="nofollow" target="_blank" href="http://www.geekpress.fr/wordpress/extension/posts-date-ranges-1591/">trier des articles selon une période grâce à cette extension</a>.</p>\n<div class="feedflare">\n<a rel="nofollow" target="_blank" href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=v9A_30la4bM:8UJVdUdT0BY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=v9A_30la4bM:8UJVdUdT0BY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=v9A_30la4bM:8UJVdUdT0BY:V_sGLiPBpWU" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=v9A_30la4bM:8UJVdUdT0BY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=v9A_30la4bM:8UJVdUdT0BY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=v9A_30la4bM:8UJVdUdT0BY:gIN9vFwOqvQ" border="0"></a>\n</div>\n<img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/v9A_30la4bM" height="1" width="1">\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:57:"L''écho des plugins WordPress : Responsive Column Widgets";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:65:"http://www.echodesplugins.fr/plugins/responsive-column-widgets-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:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:65:"http://www.echodesplugins.fr/plugins/responsive-column-widgets-2/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2013-01-28T12:29:50+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:45:"<div>Des widgets en colonnes facilement</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:82:"WordPress Channel : Supprimer la balise p pour category_description sous WordPress";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:71:"http://wpchannel.com/supprimer-balise-p-category_description-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:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:71:"http://wpchannel.com/supprimer-balise-p-category_description-wordpress/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2013-01-28T11:30:29+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:897:"<div>\n<p>Si vous utilisez la fonction category_description ou tag_description pour afficher les descriptions de vos catégories et autres mots-clés, vous aurez remarqué que WordPress ajoute invariablement une balise paragraphe vous empêchant de personnaliser facilement ces informations. Une petite astuce va nous permettre de supprimer ce tag HTML pour repartir sur de bonnes bases. Dernièrement, je cherchais ...</p>\n<p><a rel="nofollow" target="_blank" href="http://wpchannel.com/author/aurelien-denis/">Aurélien Denis</a> - <a rel="nofollow" target="_blank" href="http://wpchannel.com/">WordPress Channel - Tutoriels, thèmes & plugins WordPress</a> - <a rel="nofollow" target="_blank" href="http://wpchannel.com/supprimer-balise-p-category_description-wordpress/">Supprimer la balise p pour category_description sous WordPress</a> </p>\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:61:"Lumière de Lune : Adrotate prend ses utilisateurs en otage !";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:75:"http://www.lumieredelune.com/encrelune/adrotate-hijack-utilisateurs,2013,01";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:75:"http://www.lumieredelune.com/encrelune/adrotate-hijack-utilisateurs,2013,01";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2013-01-25T17:19:11+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:475:"<div>J’utilisais jusqu’à maintenant le plugin AdRotate pour afficher la liste de mes partenaires. Version gratuite, j’avais fait une donation paypal. Et j’avais décoché dans l’admin la case « Credits » tout simplement parce que je ne voulais pas afficher sur toutes les pages de la sidebar que j’utilise ce plugin (et je trouvais déjà assez désagréable que [...]</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:60:"SEOMix : Le WordCamp Paris 2013 : ce que vous avez manqué !";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:49:"http://www.seomix.fr/amazing-wordcamp-paris-2013/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:49:"http://www.seomix.fr/amazing-wordcamp-paris-2013/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2013-01-23T08:00:07+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:1480:"<div>\n<div><img width="139" height="180" src="http://www.seomix.fr/wp-content/uploads/2013/01/wordcamp-paris-20131-139x180.jpg" class="attachment-thumbnail wp-post-image" alt="WordCamp Paris 2013"></div>Retour sur les deux jours de conférences et d''ateliers du WordCamp Paris 2013 : vous saurez tout ce que vous avez raté et sur le référencement de WordPress\n <p><strong>Article original :</strong> <a rel="nofollow" target="_blank" href="http://www.seomix.fr/amazing-wordcamp-paris-2013/">Le WordCamp Paris 2013 : ce que vous avez manqué !</a>.</p>\n <p><strong>Debut du contenu :</strong> Passionnant, drôle et enrichissant : 3 qualificatifs qui décrivent parfaitement le WordCamp Paris 2013. Retour sur 2 jours exceptionnels de conférence ! NB : l''article est rempli de private joke, donc si vous ne comprenez pas tout, c''est normal... C''est quoi le WordCamp ? Pour ceux qui ont raté l''évènement, le WordCamp Paris était deux jours consacrés entièrement au CMS Joomla/Drupal/WordPress. Le vendredi était rempli de conférences et de blagues de Julio Potier, tandis que le lendemain était plus informel avec des ateliers et des échanges vraiment passionnants. D''ailleurs, c''est le seul endroit au monde qui regroupe les fans de [...]</p>\n<hr>\n<img src="http://feeds.feedburner.com/~r/seomix-wordpress/~4/ryv9yzAFruE" height="1" width="1">\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:79:"GeekPress : Posts Date Ranges : Trier les articles en fonction d’une période";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:67:"http://www.geekpress.fr/wordpress/extension/posts-date-ranges-1591/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:67:"http://www.geekpress.fr/wordpress/extension/posts-date-ranges-1591/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2013-01-21T09:35:54+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:711:"<div>\n<p>Par défaut, dans l’administration listant les articles de notre site, il est possible de faire un tri en fonction du mois de publication et/ou par catégorie. En cas de recherche plus avancée, il n’existe pas vraiment de solution à part de mettre les mains dans le code… Le plugin Posts Date Ranges permet d’améliorer le [...]</p>\n<p>The post <a rel="nofollow" target="_blank" href="http://www.geekpress.fr/wordpress/extension/posts-date-ranges-1591/">Posts Date Ranges : Trier les articles en fonction d’une période</a> appeared first on <a rel="nofollow" target="_blank" href="http://www.geekpress.fr/">GeekPress</a>.</p>\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:44:"4h18 : WordPress, c’est vraiment gratuit ?";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:115:"http://4h18.com/cout-site-internet-2013/?utm_source=rss&utm_medium=rss&utm_campaign=cout-site-internet-2013";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:115:"http://4h18.com/cout-site-internet-2013/?utm_source=rss&utm_medium=rss&utm_campaign=cout-site-internet-2013";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2013-01-11T15:45:56+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:748:"<div>\n<img width="300" height="199" src="http://images.4h18.com/photodune-763876-money-isolated-on-white-xs-300x199.jpg" class="attachment-medium wp-post-image" alt="cout site internet" title="cout site internet" style="border:4px solid #ccc;float:right;margin:0 0 10px 10px;"><p>Combien vous coûte votre site ? Etes vous certains que c''est vraiment gratuit ? Et en cas de galère, combien allez vous perdre ?</p>\n<p></p>\n<p> <a rel="nofollow" target="_blank" href="http://4h18.com/cout-site-internet-2013/">WordPress, c’est vraiment gratuit ?</a> est un article original de <a rel="nofollow" target="_blank" href="http://4h18.com/">4h18</a>.</p>\n<p><a rel="nofollow" target="_blank" href="http://4h18.com/">4h18 - </a></p>\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:57:"Here With Me : Premières orientations pour WordPress 3.6";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:78:"http://www.herewithme.fr/2013/01/08/premieres-orientations-pour-wordpress-3-6/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:78:"http://www.herewithme.fr/2013/01/08/premieres-orientations-pour-wordpress-3-6/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2013-01-08T08:02:37+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:2057:"<div>\n<p>Je trouve que la plateforme <a rel="nofollow" target="_blank" href="http://make.wordpress.org/">Make WordPress</a> commence vraiment à bien fonctionner !</p>\n<p>Cette plateforme de blogs, utilisant le thème collaboratif <a rel="nofollow" target="_blank" href="http://p2theme.com/">P2</a>, donne une vraie visibilité pour les évolutions de chaque thématique du projet dont le core, l’UI, les plugins, les thèmes, l’internationalisation, l’accessibilité, etc.</p>\n<p>Et c’est grâce à cette plateforme, que je peux vous énoncer la liste des chantiers envisagés pour cette prochaine version :</p>\n<ol>\n<li><a rel="nofollow" target="_blank" href="http://make.wordpress.org/core/2013/01/07/wordpress-3-6-the-post-formats-ui-feature/">Refonte de l’interface des formats d’articles</a></li>\n<li><a rel="nofollow" target="_blank" href="http://make.wordpress.org/core/2013/01/07/wordpress-3-6-autosave-and-post-locking/">Refonte des fonctionnalités de sauvegarde automatique et verrouillage lors de l’édition des contenus</a></li>\n<li><a rel="nofollow" target="_blank" href="http://make.wordpress.org/core/2013/01/07/wordpress-3-6-edit-flow/">Refonte du workflow de publication</a></li>\n<li><a rel="nofollow" target="_blank" href="http://make.wordpress.org/core/2013/01/07/wordpress-3-6-revisions/">Refonte de l’interface des révisions</a></li>\n<li><a rel="nofollow" target="_blank" href="http://make.wordpress.org/core/2013/01/08/wordpress-3-6-menus/">Refonte de l’interface des menus</a></li>\n</ol>\n<p>Autrement dit, pas de nouveauté majeure, mais simplement la modernisation des fonctionnalités existantes du CMS. Cela est une très bonne chose concernant le workflow de publication dont l’API existante n’est pas forcément très fonctionnelle.</p>\n<p>Si vous voulez contribuer à WordPress, n’attendez plus ;)</p>\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:76:"Insidedaweb : 404, Friends not Found (ou Comment Augmenter ses Fans de 354%)";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:238:"http://www.insidedaweb.com/wordpress-seo/referencement-wordpress-seo/404-friends-not-found-ou-comment-augmenter-ses-fans-de-454/?utm_source=rss&utm_medium=rss&utm_campaign=404-friends-not-found-ou-comment-augmenter-ses-fans-de-454";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:238:"http://www.insidedaweb.com/wordpress-seo/referencement-wordpress-seo/404-friends-not-found-ou-comment-augmenter-ses-fans-de-454/?utm_source=rss&utm_medium=rss&utm_campaign=404-friends-not-found-ou-comment-augmenter-ses-fans-de-454";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-12-08T11:38:02+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:571:"<div>\n<p>Vous aussi vous voulez connaitre notre recette "magique" ? Il suffit de venir lire article ;)</p>\n<p>Cet article <a rel="nofollow" target="_blank" href="http://www.insidedaweb.com/wordpress-seo/referencement-wordpress-seo/404-friends-not-found-ou-comment-augmenter-ses-fans-de-454/">404, Friends not Found (ou Comment Augmenter ses Fans de 354%)</a> est apparu en premier sur <a rel="nofollow" target="_blank" href="http://www.insidedaweb.com/">Blog WordPress, Blog eCommerce, Blog Référencement, Emailing & FOSS. Le site 5 en 1</a>.</p>\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:67:"2803.fr : WordPress améliore son Jetpack et c’est vraiment bien!";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:99:"http://www.vingthuitzerotrois.fr/wordpress/wordpress-ameliore-son-jetpack-cest-vraiment-bien-14906/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:99:"http://www.vingthuitzerotrois.fr/wordpress/wordpress-ameliore-son-jetpack-cest-vraiment-bien-14906/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-11-09T12:58:05+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:3022:"<div>\n<p>Automatic, la société derrière WordPress, vient d’annoncer la disponibilité de la mise à jour de son extension intitulée Jetpack. Cette extension apporte à tous les blogs hébergés par eux-même des fonctionnalités que l’on a habituellement uniquement sur la plateforme wordpress.com. </p>\n<p><img src="http://images.2803.fr/uploads/2012/11/jetpack-550x347.png" alt="" title="jetpack" width="550" height="347" class="aligncenter size-medium wp-image-14907"></p>\n<p>Avec Jetpack 2.0, l’utilisateur va pouvoir actionner 23 nouvelles extensions dont certaines vraiment intéressantes pour les blogs wordpress. Je l’ai installé hier sur 2803.fr, voici ma sélection de modules Jetpack qui valent le détour, parmi les 23 :</p>\n<blockquote>\n<p><strong>Photon</strong> : est une extension qui permet d’héberger chez wordpress.com toutes les images de vos articles et ainsi de bénéficier du CDN de wordpress, un sacré plus pour augmenter la rapidité de votre site. Reste à savoir où ce situent les CDN de wordpress parce que servir une image en provenance des US ne servira pas à grand chose pour un blog français…</p>\n<p><strong>Publicize</strong> : est un module qui va diffuser instantanément vos nouveaux articles sur votre profil facebook ou la page fan du site, sur Linkedin, Twitter, tumblr ou Yahoo. Un module qui vient donc en remplacement de beaucoup de plugins qui fonctionnaient de manière aléatoire. </p>\n<p><strong>Orthographe et Grammaire</strong> : un moyen de ne plus faire de fautes d’orthographe ou de grammaire!</p>\n<p><strong>Publier par email</strong> : un moyen intéressant pour mettre à jour son blog directement par email avec plus d’options de mise en forme présentées ici</p>\n<p><strong>Infinite scroll</strong> : une option simple pour remplacer la pagination classique par un scroll infini (il faut rendre compatible le thème en revanche), plus d’information ici\n</p>\n</blockquote>\n<p>Plus d’informations sur la page dédiée à cette extension : http://jetpack.me/</p>\n<hr>\n<strong>Vous venez de lire la version freemium de l''article, la version premium (avec les liens) est ici : </strong><a rel="nofollow" target="_blank" href="http://www.vingthuitzerotrois.fr/wordpress/wordpress-ameliore-son-jetpack-cest-vraiment-bien-14906/">WordPress améliore son Jetpack et c’est vraiment bien!</a><br>N''hésitez pas à suivre le compte <a rel="nofollow" target="_blank" href="http://twitter.com/henrilabarre">Twitter</a> et la page <a rel="nofollow" target="_blank" href="http://www.facebook.com/vingt.huit.zero.trois">Facebook</a><br>\n\nCopyright © 2005-2010 <strong><a rel="nofollow" target="_blank" href="http://www.2803media.fr/">2803 MEDIA</a></strong><br><hr>\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:30:"The Loop : WordCamp Paris 2013";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:110:"http://the-loop.fr/wordcamp-paris-2013/?utm_source=rss&utm_medium=rss&utm_campaign=wordcamp-paris-2013";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:110:"http://the-loop.fr/wordcamp-paris-2013/?utm_source=rss&utm_medium=rss&utm_campaign=wordcamp-paris-2013";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-11-02T16:38:02+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:3387:"<div>\n<p><img class="alignleft size-thumbnail wp-image-484" title="WordCamp Paris 2013" src="http://media.the-loop.fr/2012/11/logo-wordcamp-150x150.png" alt="WordCamp Paris 2013" width="150" height="150">Après avoir été initialement prévue pour novembre 2012, puis reportée à une date inconnue, la tenue du <strong>WordCamp Paris</strong> a enfin été confirmée en début de semaine ! Pas en 2012, mais en <strong>2013</strong>, plus précisément le <strong>vendredi 18 janvier</strong>.</p>\n<p><span id="more-482"></span></p>\n<p>Je ne vais pas vous refaire toute la présentation, celle-ci est déjà complète sur cet article du site officiel WordPress francophone : <a rel="nofollow" target="_blank" href="http://www.wordpress-fr.net/2012/10/29/wordcamp-paris-2013-date-appel-a-orateurs/">WordCamp Paris 2013 : date et appel à orateurs</a>. Rappelons seulement que l’équipe organisatrice est à la recherche d’orateurs pour proposer des conférences, bien entendu autour de WordPress, et accessibles à tous. Si vous avez des idées et de la motivation, lancez-vous !</p>\n<p>Julio de Boiteaweb a d’ailleurs mis en ligne <a rel="nofollow" target="_blank" href="https://docs.google.com/spreadsheet/viewform?formkey=dE9IVmw3WXdfNDNhSzZHLThnV2pqbmc6MQ">un petit sondage</a> afin de recueillir les sujets que les personnes aimeraient voir traités, allez donc faire vos propositions, ça peut toujours aider !</p>\n<p>D’un point de vu personnel, je ne me vois pas faire de conférence, (déjà car je n’ai pas vraiment d’idée de sujet, et ensuite car je ne m’en sens pas capable pour une première fois à cet évènement), mais j’ai hâte d’y être et de pouvoir rencontrer les personnes que je côtoie régulièrement sur Twitter principalement, et avec qui j’ai pas mal échangé (voir même travaillé avec) depuis un peu plus d’un an : Julio, Greg, Daniel, Willy…Mais également les autres, ceux que je ne connais pas encore, car en plus du savoir que l’ont peut acquérir grâce aux différentes interventions de la journée, je trouve que les les rencontres que l’on peut y faire tout aussi enrichissantes, à la fois à titre professionnel que personnel.</p>\n<p>Alors les amis (si vous me permettez), je vous donne rendez-vous (sauf accident) dans environ 2 mois, pour cette journée qui je l’espère sera riche en tout point !</p>\n<p>Article original <a rel="nofollow" target="_blank" href="http://the-loop.fr/wordcamp-paris-2013/">WordCamp Paris 2013</a> publié sur <a rel="nofollow" target="_blank" href="http://the-loop.fr/">The Loop</a> par <a rel="nofollow" target="_blank" href="http://the-loop.fr/author/remy/">Rémy</a></p>\n<div class="yarpp-related-rss">\n<p>Ces articles peuvent également vous intéresser : :</p>\n<ol>\n<li><a rel="nofollow" target="_blank" href="http://the-loop.fr/wordcamp-paris-2011-le-25-novembre/" title="WordCamp Paris 2011 le 25 novembre">WordCamp Paris 2011 le 25 novembre</a></li>\n</ol>\n</div>\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:65:"Fran6art : Ma veille en détails: historique et outils utilisés.";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:61:"http://feedproxy.google.com/~r/Fran6artLeBlog/~3/SqxjR5rCujU/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:61:"http://feedproxy.google.com/~r/Fran6artLeBlog/~3/SqxjR5rCujU/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-10-16T14:35:34+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:14574:"<div>\n<p>Hier, mon ami Aurélien d’All For Design a publié <a rel="nofollow" target="_blank" href="http://all-for-design.com/web-design/les-outils-de-ma-veille/">un article intéressant</a> expliquant comment il fait sa veille. Je trouve la démarche très intéressante parce qu’elle permet à tous de découvrir de nouveaux sites et de nouveaux services. On faisait pas mal ça il y a quelques années, quand le blogging était à son apogée et on a un peu perdu cette habitude. Donc j’ai voulu, d’une certaine manière, répondre à Aurélien en détaillant ici comment je fais ma veille en ligne, comment je me tiens au courant des news du web.</p>\n<p><strong>Une question de temps</strong></p>\n<p>Je crois qu’avant de détailler comment je fais ma veille, il est important de parler du facteur temps. Quand j’ai commencé ce métier en 2005, je blogais beaucoup, je faisais énormément de veille. Je “veillais” jusqu’à 4/5 heures par jour à ce moment-là. Puis ma fille est arrivée en 2007, et tout à changé. La charge de travail a aussi considérablement augmenté, me laissant peu de temps pour me tenir au courant chaque jour.</p>\n<p>Jusqu’à il y a peu, ma veille était très simple. Elle se limitait à Google Reader et à <a rel="nofollow" target="_blank" href="https://twitter.com/Fran6/">Twitter</a>. Un grand classique. J’ai fait le tri dans mes flux RSS mais sans parvenir à tout lire régulièrement. Je me retrouvais donc avec plus de 1000 éléments à lire par moment et au final des articles datant de trop longtemps, sans oublier parfois le fait que je les avais déjà vu passer sur Twitter.</p>\n<p>J’ai donc laissé de côté les flux RSS et ai décidé de concentrer ma veille <a rel="nofollow" target="_blank" href="https://twitter.com/Fran6/">sur Twitter</a>. Je suis 500 personnes environ et j’ai déjà l’impression que c’est trop. Aurélien, dans son article, parle de veille passive et active. La veille sur Twitter est un mélange des deux pour moi. Elle est active parce que je suis là pour ça mais aussi passive parce que je lis globalement ce qui se dit sans pour autant faire vraiment de la veille. J’espère que je me fais bien comprendre ! <img src="http://www.fran6art.com/wp-includes/images/smilies/icon_biggrin.gif" alt=":D" class="wp-smiley"></p>\n<p>Mais là encore, je ne suis pas toujours dispo, donc je loupe pas mal de choses intéressantes aussi sur Twitter. L’info y file à une vitesse grand V.</p>\n<p><strong>L’iPad, compagnon idéal pour la veille</strong></p>\n<p>Tout a commencé à changer quand je me suis acheté un iPad. Je lis énormément de livres mais très peu sur ordinateur. Du coup, la tablette était le bon compromis pour faire de la veille sans pour autant être bloqué derrière mon bureau. J’avais Twitter en poche, puis j’ai adopté <a rel="nofollow" target="_blank" href="http://www.instapaper.com/">Instapaper</a>. Super outil pour bookmarker des articles et les lire plus tard. <strong>A condition de les lire plus tard</strong>. J’ai accumulé, tout comme je faisais auparavant avec mes flux RSS et je n’arrivais pas à m’en sortir. J’ai donc “ressorti” aussi mes flux RSS en nettoyant bien la liste des sites que je suivais pour me concentrer sur le principal: A list Apart, Smashing Magazine, quelques sites d’UX, beaucoup de typo et puis basta. J’ai donc utilisé <a rel="nofollow" target="_blank" href="http://reederapp.com/">Reeder</a>, comme pas mal de monde sur OSX ou iOS, mais l’expérience utilisateur pour moi s’est avérée pas terrible. Je trouve que Reeder est très chouette au niveau style mais n’apporte pas vraiment grand chose de plus que Google Reader comme expérience. Ca reste un lecteur plutôt classique de flux RSS.</p>\n<p>J’ai donc testé <a rel="nofollow" target="_blank" href="http://flipboard.com/">Flipboard</a>. Super interface, on peut y ajouter nos flux RSS. Présentation magazine, c’était génial. J’en ai profité pour utiliser l’application pour d’autres sites que mes flux RSS. J’y ai même installé Twitter pour tout faire au même endroit. Super expérience mais un souci. Flipboard ne marque pas très bien les articles lus sur Google Reader. C’est un peu pénible à gérer. Si on trouve des articles qui nous intéressent pas, il faut quand même les ouvrir pour les “marquer comme lu”.</p>\n<p>Puis sont apparus trois outils qui ont considérablement changé ma manière de faire de la veille.</p>\n<p><strong>1. Zite</strong></p>\n<p><img class="aligncenter size-medium wp-image-1920" title="ipad" src="http://www.fran6art.com/wp-content/uploads/2012/10/ipad-470x396.png" alt="" width="470" height="396"></p>\n<p><a rel="nofollow" target="_blank" href="http://zite.com/">Zite</a> est une application qui vous propose toutes une séries d’articles, selon ce qui vous intéresse. En gros et pour faire simple, vous commencez avec une série d’articles, proposés un peu à la manière de Flipboard et à chaque fois vous avez la possibilité de dire si vous avez aimé l’article ou pas, et l’application vous proposera plus d’articles que vous aimez. Plus vous allez lire, plus les articles proposés seront proches de ce que vous voulez lire. Et pas besoin de compte Google Reader ici, les sources sont proposées par l’application. Donc pas de stress inutile à devoir lire “500 éléments non lus”. Les articles sont globalement de très bonne qualité et correspondent aux nouveautés du jour. Très intéressant quand vous avez un moment tranquille sur votre sofa, on a un peu l’impression de lire son journal sans trop savoir sur quoi on va tomber.</p>\n<p><strong>2. Feedly</strong></p>\n<p> \n</p>\n<p><a rel="nofollow" target="_blank" href="http://vimeo.com/49048256">The New Feedly Mobile</a> from <a rel="nofollow" target="_blank" href="http://vimeo.com/feedly">Feedly</a> on <a rel="nofollow" target="_blank" href="http://vimeo.com/">Vimeo</a>.</p>\n<p>J’avais testé l’application à ses débuts mais c’était trop buggé pour moi et pas assez original par rapport à un Flipboard. Sauf que les dernières versions se sont fortement améliorés et qu’elles apportent quelques nouveautés qui ont changé pas mal de choses pour moi.</p>\n<p>Pour ceux qui ne connaissent pas, Feedly est un lecteur de flux RSS, mais pas seulement, il propose maintenant des flux un peu comme Flipboard.</p>\n<p>Le souci de Feedly au départ était le même, justement, que pour Flipboard. Que faire quand on tombe sur une page avec des articles qu’on n’a pas trop envie de lire ? Il faut les ouvrir un par un pour les marquer comme lu. Relou. Avec la dernière version de Feedly, un swipe vers le bas sur la page marque les articles comme lus. Tip top et super simple. Je lis quelques blogs Apple ou encore The Verge et chez certains la quantité d’articles rédigés par jour est énorme et seulement une partie m’intéresse. Avec Reeder, j’aurais viré le flux parce que ça aurait rapidement été impossible à gérer ou j’aurais tout marqué comme lu. Avec Feedly, je parcoure les pages rapidement sur mon iPad, je swipe vers le bas pour marquer comme lu chaque page et je lis ce qui m’intéresse. Ca peut paraître con mais j’ai retrouvé le plaisir de lire mes flux RSS de manière simple et intuitive grâce à une très belle mise en page magazine. J’en profite aussi pour bookmarker certains articles sur <a rel="nofollow" target="_blank" href="http://http://getpocket.com">Pocket</a> ( qui a remplacé Instapaper chez moi…) même si comme expliqué plus haut, je bookmarke plus que je lis.</p>\n<p>En fait, le souci de ces outils comme Pocket, Instapaper ou même Google Reader, c’est que la plupart du temps, il est publié plus d’articles qu’on ne peut en lire. Donc c’est voué à l’échec d’une certaine manière, sauf si on a du temps…</p>\n<p><strong>3. Pinterest</strong></p>\n<p><img class="aligncenter size-medium wp-image-1921" title="Pinterest-application-ipad-android" src="http://www.fran6art.com/wp-content/uploads/2012/10/Pinterest-application-ipad-android-470x310.jpg" alt="" width="470" height="310"></p>\n<p>Pendant un moment j’ai utilisé <a rel="nofollow" target="_blank" href="https://gimmebar.com/">Gimme Bar</a> comme Aurélien pour toute une veille graphique: sites web, UX, illustration, photo et typo. Mais j’ai quelques soucis avec l’interface et pour bookmarker des sites web, j’utilise Little Snapper, malgré que ce soit loin d’être parfait. Gimme Bar a pourtant sorti une application iPhone mais elle n’est même pas finalisé, certaines fonctions affichent même un message “Coming soon”. Super.</p>\n<p>Et il y a quelques semaines, je décide de rouvrir <a rel="nofollow" target="_blank" href="http://pinterest.com/fran6/">mon compte Pinterest</a> et d’aller à la pêche aux idées. Et là, je suis surpris par la qualité des éléments partagés. C’est clair que si vous y recherchez des exemples de sites web, vous allez être déçus. Il y en a mais pas des masses. Par contre, pour toute autre inspiration, je trouve le site génial.</p>\n<p>Déjà il y a une communauté impressionnante. Difficile même parfois de suivre plus de 100 personnes tellement certaines proposent de nouvelles choses constamment. Les éléments que je préfère sont bien entendu <a rel="nofollow" target="_blank" href="http://pinterest.com/fran6/typography/">la typographie</a>. Je n’ai encore trouvé nulle part ailleurs autant de choses de qualité et aussi diversifiées. Vraiment sympa. Pas mal d’inspiration au niveau déco d’intérieur, print, illustration également. Personnellement, j’aime aussi aller chercher parfois mon inspiration dans des domaines qui sont plus annexes à mon activité. Et là j’y trouve mon compte.</p>\n<p>Un gros plus de Pinterest c’est aussi ses applications iPhone et iPad. Où que je sois, je peux accéder à ce que j’ai bookmarké. Et tout comme Zite par exemple, ici pas de chiffre d’éléments non lus. On surfe sur une page, on peut naviguer aussi selon des catégories. Encore une super veille à faire sur son sofa en soirée ! <img src="http://www.fran6art.com/wp-includes/images/smilies/icon_wink.gif" alt=";-)" class="wp-smiley"></p>\n<p>Enfin, c’est aussi un réseau social donc vous pouvez suivre vos amis ou vos designers préférés.</p>\n<p>Donc, vous l’aurez sûrement compris, je fais maintenant principalement ma veille sur tablette et quasiment plus sur mon ordinateur. Je suis aussi plus disponible pour faire cette veille via la tablette. Sur l’ordi, je ne consulte que Twitter au final, sur lequel je retweete pas mal de choses que je découvre. Le reste se fait le matin après le petit dej ou le soir après le travail. Je consulte rapidement Zite, puis Pinterest et déroule mes flux RSS. Et si j’ai le temps je lis quelques articles bookmarkés sur Pocket. C’est tout, mais c’est déjà pas mal, vu le temps qui m’est donné. Je dois avouer que l’iPad joue un rôle important ici. Sans lui je ne ferai probablement plus beaucoup de veille. A noter aussi que toujours grâce à ma tablette, je suis plus productif dans la journée car je ne fais pas vraiment de veille, hormis un peu Twitter.</p>\n<p>Voici donc ma méthode pour suivre l’actu web. Largement moins d’outils et de services qu’Aurélien mais plutôt un retour d’expérience comme j’aime les faire. Je ne dis pas non plus que c’est la manière idéale de faire de la veille mais c’est celle qui me correspond le mieux, avec le temps qui m’est donné <img src="http://www.fran6art.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley"></p>\n<p>N’hésitez pas à partager vos méthodes pour faire de la veille, que ce soit en commentaire ou, comme j’ai pu le faire après la lecture de l’article d’Aurélien, sur votre blog, si vous en avez un ! <img src="http://www.fran6art.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley"></p>\n<img src="http://www.fran6art.com/?ak_action=api_record_view&id=1917&type=feed" alt=""><div class="feedflare">\n<a rel="nofollow" target="_blank" href="http://feeds.feedburner.com/~ff/Fran6artLeBlog?a=SqxjR5rCujU:k3kXTXqFDpU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Fran6artLeBlog?i=SqxjR5rCujU:k3kXTXqFDpU:D7DqB2pKExk" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.feedburner.com/~ff/Fran6artLeBlog?a=SqxjR5rCujU:k3kXTXqFDpU:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/Fran6artLeBlog?i=SqxjR5rCujU:k3kXTXqFDpU:guobEISWfyQ" border="0"></a>\n</div>\n<img src="http://feeds.feedburner.com/~r/Fran6artLeBlog/~4/SqxjR5rCujU" height="1" width="1">\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:46:"Blog Tool Box : Sortie de WordPress 3.5 Beta 2";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:43:"http://blogtoolbox.fr/wordpress-3-5-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:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:43:"http://blogtoolbox.fr/wordpress-3-5-beta-2/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-10-13T13:06:53+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:2549:"<div>\n<p>Une petite brève pour signaler la sortie de <a rel="nofollow" target="_blank" href="http://wordpress.org/news/2012/10/wordpress-3-5-beta-2/">WordPress 3.5 Beta 2 annoncée aujourd’hui</a>.</p>\n<p>Comme d’habitude, les bêtas ne doivent pas être utilisées sur des blogs en production mais simplement pour des tests ou pour y jeter un œil. Cette version peut être testée de deux différentes manières : via le <a rel="nofollow" target="_blank" href="http://wordpress.org/extend/plugins/wordpress-beta-tester/">plugin WordPress Beta Tester</a> ou directement en téléchargeant le <a rel="nofollow" target="_blank" href="http://wordpress.org/wordpress-3.5-beta2.zip">fichier zip de la bêta</a> (zip).</p>\n<p>Les évolutions en résumé :</p>\n<ul>\n<li>Apparence : un écran d’accueil simplifié, un nouveau “color picker” et un tableau de bord adapté aux écrans Retina</li>\n<li>Accessibilité : amélioration de la navigation au clavier et de la lecture à l’écran</li>\n<li>Plugins : il est désormais possible de rechercher et d’installer des plugins que vous avez notés comme favoris sur WordPress.org</li>\n<li>Mobile : le protocole XML-RPC sera activé par défaut, il sera donc plus simple de relier votre blog avec vos applications mobiles WordPress</li>\n<li>Liens : la gestion des liens sera désactivée sur les nouvelles installations. Le plugin <a rel="nofollow" target="_blank" href="http://wordpress.org/extend/plugins/link-manager/">Link Manager</a> la remplacera.</li>\n<li>Médias : la gestion de ceux-ci est retravaillée en profondeur pour une toute nouvelle expérience (upload, galleries, insertion d’images dans les articles, etc)\n</li>\n</ul>\n<p>La version finale (WordPress 3.5) avait été annoncée pour le 5 décembre lors de la sortie de WordPress 3.5 Beta 1 mais la <a rel="nofollow" target="_blank" href="http://core.trac.wordpress.org/roadmap">roadmap WordPress</a> n’affiche pas encore de date figée.</p>\n<p>Par ailleurs, la nouvelle version du thème par défaut qui viendra avec cette version 3.5 de WordPress est déjà disponible au téléchargement et s’appelle <a rel="nofollow" target="_blank" href="http://wordpress.org/extend/themes/twentytwelve">Twenty Twelve</a>.</p>\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:70:"Lashon : Kimsufi nom de domaine en .FR – domaine sur serveur dédié";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:54:"http://lashon.fr/kimsufi-nom-de-domaine-serveur-dedie/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:54:"http://lashon.fr/kimsufi-nom-de-domaine-serveur-dedie/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-09-27T15:40:17+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:1290:"<div>\n<p>Kimsufi nom de domaine : comment ajouter un domaine .fr sur un serveur dédié. Tutoriel simple et sans console de lignes de commande pour ajouter un nom de domaine dans n''importe quelle extension, et notamment le cas particulier d''un ajout de domaine en .FR. L''extension en .FR a ses propres règles, imposées par l''Afnic, si bien que son ajout sur un serveur dédié peut s''avérer une prise de tête. Pourtant, il suffit de respecter scrupuleusement quelques étapes pour arriver à installer votre nom de domaine sur un serveur dédié, Kimsufi. Cet article est valable pour les autres serveurs dédiés. <a rel="nofollow" target="_blank" href="http://lashon.fr/kimsufi-nom-de-domaine-serveur-dedie/">Lire la suite <span class="meta-nav">→</span></a></p>\n<p>Exigez l''original ! ;-) \nL''original de cet article est là <a rel="nofollow" target="_blank" href="http://lashon.fr/kimsufi-nom-de-domaine-serveur-dedie/">Kimsufi nom de domaine en .FR – domaine sur serveur dédié</a> - écrit par <a rel="nofollow" target="_blank" href="http://lashon.fr/">WordPress Création Sites Internet - un blog de Tikoun, créateur Web (lashon)</a>\n\n</p>\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}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:68:"\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:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:57:"Webinventif : [Wordpress] iTypo: thème WordPress gratuit";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:32:"http://www.webinventif.fr/itypo/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:32:"http://www.webinventif.fr/itypo/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2011-01-01T15:36:24+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:9:"anonymous";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:5687:"<div>\n<p>Après 1 an sans rien avoir écrit sur ce blog (bouhhhh), je fais mon retour en vous proposant un joli <strong>thème WordPress</strong>, le 1er que je distribue publiquement et <em>gratuitement</em> évidement. D''ailleurs si les retours sont bons, ça sera peut-être le début d''une série plus ou moins longue.</p>\n<p><strong>iTypo</strong> est donc un thème WordPress simple et léger. A la base, je cherchais un thème pour un petit projet personnel qui soit assez épuré et léger pour mettre le contenu du blog en avant. Après de nombreuses recherches dans la jungle des thèmes WordPress, rien ne me convenait, et comme j''avais une idée très précise de ce que je voulais, j''ai fini par le faire moi-même ... l''histoire classique de la naissance d''un thème en somme <img src="http://www.webinventif.fr/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" title="Icon Wink"></p>\n<p>Il est évidement "Widgets ready", compatible WordPress 3.0+, disponible en 4 coloris et 6 langues, convient parfaitement pour un blog perso ou un mini blog "à la Tumblr" et est absolument gratuit. <img src="http://www.webinventif.fr/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" title="Icon Wink"></p>\n<p><img src="http://www.webinventif.fr/wp-content/uploads/2011/01/pres1.png" alt="pres1" title="pres" class="aligncenter wp-image-621"></p>\n<h3>Telecharger le thème gratuitement</h3>\n<p> iTypo est sous license GPL , vous pouvez l''utiliser gratuitement pour vos projets sans restrictions</p>\n<p><a rel="nofollow" target="_blank" href="http://www.webinventif.fr/wp-content/uploads/2011/01/capture-complete.png"><img src="http://www.webinventif.fr/wp-content/uploads/2011/01/capture-complete-300x740.png" alt="capture-complete-300x740" title="capture-complete" class="alignnone size-medium wp-image-610"></a></p>\n<ul>\n<li><a rel="nofollow" target="_blank" href="http://themes.webinventif.fr/">Live demo</a></li>\n<li><a rel="nofollow" target="_blank" href="http://www.webinventif.fr/wp-content/uploads/2011/01/capture-complete.png">Large preview (.png, 310 Kb)</a></li>\n<li><a rel="nofollow" target="_blank" href="http://www.webinventif.fr/itypo/2/">Guide d''installation et documentation</a></li>\n<li><a rel="nofollow" target="_blank" href="http://goo.gl/H7i2c">Telecharger le .zip, v1.0.2 (zip, 353 kb)</a></li>\n</ul>\n<h3>Features</h3>\n<ul>\n<li>Widget ready (footer et sidebar)</li>\n<li>Disponible par défaut en 6 langues (et plus si nécessaire)</li>\n<li>4 coloris différents</li>\n<li>Facile à personnaliser avec sa page d''options</li>\n<li>Choix de miniatures carré ou large sur la page d''accueil</li>\n<li>Choix d''afficher un extrait ou le post complet sur la home</li>\n<li>WordPress Post Thumbnail activé</li>\n<li>Shortcode pour miniature</li>\n<li>JQuery Colorbox Lightbox (désactivable via la page d''options)</li>\n<li>"Sticky post" skinné</li>\n<li>Commentaires en "thread" (discussion)</li>\n<li>Mise en avant de l''auteur</li>\n<li>Logo personnalisable (upload d''image)</li>\n<li>Compatible Feedburner</li>\n<li> WP -pagenavi ready</li>\n<li>Et encore plein de petites choses ...</li>\n</ul>\n<h3>Captures</h3>\n<p><a rel="nofollow" target="_blank" href="http://www.webinventif.fr/wp-content/uploads/2011/01/commentaires.png"><img src="http://www.webinventif.fr/wp-content/uploads/2011/01/commentaires-300x894.png" alt="commentaires-300x894" title="commentaires" class="alignnone size-medium wp-image-615"></a><br>\n(Commentaires)</p>\n<p><a rel="nofollow" target="_blank" href="http://www.webinventif.fr/wp-content/uploads/2011/01/avec-thumb-wide.png"><img src="http://www.webinventif.fr/wp-content/uploads/2011/01/avec-thumb-wide-300x823.png" alt="avec-thumb-wide-300x823" title="avec-thumb-wide" class="alignnone size-medium wp-image-609"></a><br>\n(Avec miniatures larges)</p>\n<p><a rel="nofollow" target="_blank" href="http://www.webinventif.fr/wp-content/uploads/2011/01/capture-complet-fullpost.png"><img src="http://www.webinventif.fr/wp-content/uploads/2011/01/capture-complet-fullpost-300x1932.png" alt="capture-complet-fullpost-300x1932" title="capture-complet-fullpost" class="alignnone size-medium wp-image-614"></a><br>\n(Accueil avec les billets complets)</p>\n<p><a rel="nofollow" target="_blank" href="http://www.webinventif.fr/wp-content/uploads/2011/01/options-page.png"><img src="http://www.webinventif.fr/wp-content/uploads/2011/01/options-page-300x192.png" alt="options-page-300x192" title="options-page" class="alignnone size-medium wp-image-618"></a><br>\n(Page d''options)</p>\n<p><a rel="nofollow" target="_blank" href="http://www.webinventif.fr/wp-content/uploads/2011/01/upload-logo.png"><img src="http://www.webinventif.fr/wp-content/uploads/2011/01/upload-logo-300x202.png" alt="upload-logo-300x202" title="upload-logo" class="alignnone size-medium wp-image-619"></a><br>\n(Page d''upload de logo)</p>\n<p>A noter que même si il fonctionne sous IE6 et supérieur, certains effets CSS3 ne seront pas pris en charge (typographie personnalisée, ombres, inclinaisons, ...)</p>\n<p>Voilà, en espérant qu''il plaira à certains d''entre vous ! Comme je le distribue gratuitement, il serait fairplay de laisser les crédits du footer <img src="http://www.webinventif.fr/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" title="Icon Wink"></p>\n<img src="http://www.webinventif.fr/wp-content/plugins/mycompteur/compte.php?idpage=608" width="0" height="0" alt="" title="">\n</div>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:4:"info";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:1:{s:3:"uri";s:26:"wordpressfrancophoneplanet";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}s:4:"type";i:512;s:7:"headers";a:9:{s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:4:"etag";s:27:"1LiCJ+lQMN2CcSZvVGzWuE6d2rk";s:13:"last-modified";s:29:"Wed, 30 Jan 2013 14:32:58 GMT";s:4:"date";s:29:"Wed, 30 Jan 2013 14:57:41 GMT";s:7:"expires";s:29:"Wed, 30 Jan 2013 14:57:41 GMT";s:13:"cache-control";s:18:"private, max-age=0";s:22:"x-content-type-options";s:7:"nosniff";s:16:"x-xss-protection";s:13:"1; mode=block";s:6:"server";s:3:"GSE";}s:5:"build";s:14:"20121202154312";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(190, '_transient_timeout_feed_mod_2fb9572e3d6a42f680e36370936a57ae', '1359601059', 'no'),
(191, '_transient_feed_mod_2fb9572e3d6a42f680e36370936a57ae', '1359557859', 'no'),
(193, '_transient_timeout_dash_aa95765b5cc111c56d5993d476b1c2f0', '1359601059', 'no'),
(194, '_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51', '1359601059', 'no'),
(195, '_transient_dash_aa95765b5cc111c56d5993d476b1c2f0', '<div class="rss-widget"><ul><li><a class=''rsswidget'' href=''http://wpformation.com/buddypress-en-mode-pas-a-pas/'' title=''Il y a quelques jours, le WordCamp me donnait l’opportunité de parler de mon plugin WordPress préféré : BuddyPress. Lors de ma conférence, je vous ai présenté globalement ce puissant moteur de communautés. Or le WordCamp, c’est aussi une rencontre communautaire, et je suis heureux d’avoir fait la connaissance de Fabrice avec qui j’ai beaucoup ... BuddyPress […]''>WP Formation : BuddyPress – Tutorial en mode pas-à-pas</a></li><li><a class=''rsswidget'' href=''http://feedproxy.google.com/~r/WordpressFrancophone/~3/v9A_30la4bM/'' title=''10 ans déjà ! Le 25 janvier le projet WordPress fêtait son 10e anniversaire. Le 25 janvier 2003, les premières discussions étaient lancées ! Point sur WordPress 3.6 Tous les jours de nouvelles discussions démarrent ou se poursuivre concernant le développement de WordPress 3.6 sur le blog de l’équipe de développement, plutôt que de vous faire le résumé point […]''>WordPress Francophone : L’Hebdo WordPress : 10 ans – WordPress 3.6 – Codex</a></li><li><a class=''rsswidget'' href=''http://www.echodesplugins.fr/plugins/responsive-column-widgets-2/'' title=''Des widgets en colonnes facilement […]''>L'écho des plugins WordPress : Responsive Column Widgets</a></li><li><a class=''rsswidget'' href=''http://wpchannel.com/supprimer-balise-p-category_description-wordpress/'' title=''Si vous utilisez la fonction category_description ou tag_description pour afficher les descriptions de vos catégories et autres mots-clés, vous aurez remarqué que WordPress ajoute invariablement une balise paragraphe vous empêchant de personnaliser facilement ces informations. Une petite astuce va nous permettre de supprimer ce tag HTML pour repartir sur de […]''>WordPress Channel : Supprimer la balise p pour category_description sous WordPress</a></li><li><a class=''rsswidget'' href=''http://www.lumieredelune.com/encrelune/adrotate-hijack-utilisateurs,2013,01'' title=''J’utilisais jusqu’à maintenant le plugin AdRotate pour afficher la liste de mes partenaires. Version gratuite, j’avais fait une donation paypal. Et j’avais décoché dans l’admin la case « Credits » tout simplement parce que je ne voulais pas afficher sur toutes les pages de la sidebar que j’utilise ce plugin (et je trouvais déjà assez désagréable que […]''>Lumière de Lune : Adrotate prend ses utilisateurs en otage !</a></li></ul></div>', 'no'),
(196, '_transient_dash_4077549d03da2e451c8b5f002294ff51', '<div class="rss-widget"><ul><li><a class=''rsswidget'' href=''http://wpformation.com/buddypress-en-mode-pas-a-pas/'' title=''Il y a quelques jours, le WordCamp me donnait l’opportunité de parler de mon plugin WordPress préféré : BuddyPress. Lors de ma conférence, je vous ai présenté globalement ce puissant moteur de communautés. Or le WordCamp, c’est aussi une rencontre communautaire, et je suis heureux d’avoir fait la connaissance de Fabrice avec qui j’ai beaucoup ... BuddyPress […]''>WP Formation : BuddyPress – Tutorial en mode pas-à-pas</a> <span class="rss-date">30 janvier 2013</span><div class=''rssSummary''>Il y a quelques jours, le WordCamp me donnait l’opportunité de parler de mon plugin WordPress préféré : BuddyPress. Lors de ma conférence, je vous ai présenté globalement ce puissant moteur de communautés. Or le WordCamp, c’est aussi une rencontre communautaire, et je suis heureux d’avoir fait la connaissance de Fabrice avec qui j’ai beaucoup ... BuddyPress […]</div></li><li><a class=''rsswidget'' href=''http://feedproxy.google.com/~r/WordpressFrancophone/~3/v9A_30la4bM/'' title=''10 ans déjà ! Le 25 janvier le projet WordPress fêtait son 10e anniversaire. Le 25 janvier 2003, les premières discussions étaient lancées ! Point sur WordPress 3.6 Tous les jours de nouvelles discussions démarrent ou se poursuivre concernant le développement de WordPress 3.6 sur le blog de l’équipe de développement, plutôt que de vous faire le résumé point […]''>WordPress Francophone : L’Hebdo WordPress : 10 ans – WordPress 3.6 – Codex</a> <span class="rss-date">29 janvier 2013</span><div class=''rssSummary''>10 ans déjà ! Le 25 janvier le projet WordPress fêtait son 10e anniversaire. Le 25 janvier 2003, les premières discussions étaient lancées ! Point sur WordPress 3.6 Tous les jours de nouvelles discussions démarrent ou se poursuivre concernant le développement de WordPress 3.6 sur le blog de l’équipe de développement, plutôt que de vous faire le résumé point […]</div></li></ul></div>', 'no'),
(197, '_transient_timeout_feed_a5420c83891a9c88ad2a4f04584a5efc', '1359601059', 'no'),
(198, '_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:"Wed, 30 Jan 2013 14:51: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: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: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: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: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: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: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:4:"Arne";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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: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:5;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:19:"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: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:24:"Fast Secure Contact Form";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:63:"http://wordpress.org/extend/plugins/si-contact-form/#post-12636";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 27 Aug 2009 01:20:04 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"12636@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:131:"A super customizable contact form that lets your visitors send you email. Blocks all automated spammers. No templates to mess with.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Mike Challis";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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: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: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: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:93:"The most popular WordPress gallery plugin with tons of features and 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:"";}}}}}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:19:"Social Media Widget";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"http://wordpress.org/extend/plugins/social-media-widget/#post-18183";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 25 May 2010 02:22:34 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"18183@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:129:"Adds links to all of your social media and sharing site profiles. Tons of icons come in 3 sizes, 4 icon styles, and 4 animations.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Blink Web Effects";s: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:19:"Broken Link Checker";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/broken-link-checker/#post-2441";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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 Oct 2007 21:35: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:"2441@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:"This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Janis Elsts";s: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:16:"Ultimate TinyMCE";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:64:"http://wordpress.org/extend/plugins/ultimate-tinymce/#post-32088";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 14 Nov 2011 09:06:40 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"32088@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:84:"Description: Beef up your visual tinymce editor with a plethora of advanced 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:4:"Josh";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}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: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:135:"Improve site performance and user experience via caching: browser, page, object, database, minify and content delivery network support.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Frederick Townes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:16:"Google Analytics";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:63:"http://wordpress.org/extend/plugins/googleanalytics/#post-11199";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 09 Jun 2009 22:09:25 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"11199@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:38:"Enables google analytics on all 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:15:"Kevin Sylvestre";s: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: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:"";}}}}}}}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:"Wed, 30 Jan 2013 14:57:42 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:"Wed, 30 Jan 2013 15:26:41 GMT";s:13:"cache-control";s:0:"";s:6:"pragma";s:0:"";s:13:"last-modified";s:31:"Wed, 30 Jan 2013 14:51:41 +0000";s:4:"x-nc";s:11:"HIT luv 139";}s:5:"build";s:14:"20121202154312";}', 'no'),
(199, '_transient_timeout_feed_mod_a5420c83891a9c88ad2a4f04584a5efc', '1359601059', 'no'),
(200, '_transient_feed_mod_a5420c83891a9c88ad2a4f04584a5efc', '1359557859', 'no'),
(201, '_transient_timeout_feed_57bc725ad6568758915363af670fd8bc', '1359601060', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(202, '_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:"Wed, 30 Jan 2013 14:51: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: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:25:"BuddyPress Security Check";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:65:"http://wordpress.org/extend/plugins/bp-security-check/#post-48805";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 29 Jan 2013 04:19:43 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"48805@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:129:"Help combat spam registrations by forcing the user to answer a simple math sum while registering for your BuddyPress-powered 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:10:"Shea Bunge";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:30:"Nextclick Page Recommendations";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wordpress.org/extend/plugins/nextclick-page-recommendations/#post-48811";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 29 Jan 2013 11:15:14 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"48811@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:"Comfortable way of serving page recommendations using Nextclick widget at any of your WP sites.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"leadbullet";s: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:21:"bbPress Pencil Unread";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/bbpress-pencil-unread/#post-48816";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 29 Jan 2013 14:37:49 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"48816@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:93:"bbPress Pencil Unread display which bbPress forums/topics have already been read by the user.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"grosbouff";s: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:11:"SlideWizard";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/slidewizard/#post-48765";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 28 Jan 2013 08:24: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"48765@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:69:"SlideWizard helps you to create beautiful slider from various source.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"ColorLabs";s: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:10:"ninjatools";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/ninjatools/#post-48766";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 28 Jan 2013 09:23:29 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"48766@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:117:"This plugin inserts HTML code of "Ninja Tools" for analyzing visitors in your blog without complex procedure.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"ninjatools";s: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:21:"picBox Image Uploader";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/picbox-image-uploader/#post-48762";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 28 Jan 2013 04:45:15 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"48762@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:34:"Upload images to picBox in a 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:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"NegaCommando";s: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:3:"KIP";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/kip/#post-48636";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 25 Jan 2013 02:39: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:"48636@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:52:"A Provider plugin for Public Information Management.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"pentatonicfunk";s: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:9:"SBD Aside";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:57:"http://wordpress.org/extend/plugins/sbd-aside/#post-48812";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 29 Jan 2013 11:43: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:"48812@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:130:"The SBD Aside plugin is a WordPress plugin that allows bloggers to easily create small side-bars for there entries, called asides.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"seanbdurkin";s: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:18:"Narnoo Distributor";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/narnoo-distributor/#post-48826";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 29 Jan 2013 22:56:22 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"48826@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:149:"The Narnoo distributor plugin gives a tourism organisation and tourism wholesalers the ability to connect to their products, promotional media hosted";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Narnoo";s: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:12:"WP Video SEO";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wordpress.org/extend/plugins/wp-video-seo/#post-48806";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 29 Jan 2013 06:25:32 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"48806@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:137:"WordPress Video SEO plugin allows you to generate a sitemap for your videos. It helps search engine index your videos for better ranking.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"wpecommerce";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:10;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:24:"Amazon S3 and Cloudfront";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:72:"http://wordpress.org/extend/plugins/amazon-s3-and-cloudfront/#post-48822";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 29 Jan 2013 19:09: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:"48822@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:138:"Automatically copies media uploads to Amazon S3 for storage and delivery. Optionally configure Amazon CloudFront for even faster delivery.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Brad Touesnard";s: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:20:"awe.sm 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:53:"http://wordpress.org/extend/plugins/awesm/#post-48800";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 29 Jan 2013 00:43: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"48800@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:"awe.sm provides sharing analytics for Facebook, Twitter, Tumblr, LinkedIn, Google+, Pinterest, and email.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"awe.sm";s: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:11:"My 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:4:"link";a:1:{i:0;a:5:{s:4:"data";s:63:"http://wordpress.org/extend/plugins/comments-for-me/#post-48683";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 25 Jan 2013 21:27: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:"48683@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:59:"Enables Authors to see only comments made to their articles";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"mwayi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:13;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:26:"Facebook Comments Notifier";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:74:"http://wordpress.org/extend/plugins/facebook-comments-notifier/#post-48770";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 28 Jan 2013 14:55:29 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"48770@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:84:"Get email notifications when Facebook Comments are posted on your WordPress 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:5:"LTnow";s: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:17:"iG:Syntax Hiliter";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:64:"http://wordpress.org/extend/plugins/igsyntax-hiliter/#post-48801";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 29 Jan 2013 01:07:35 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"48801@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:"A plugin to easily present source code on your site with syntax highlighting and formatting (as seen in code editors, IDEs).";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"amit";s: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:10:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Wed, 30 Jan 2013 14:57:43 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:"Wed, 30 Jan 2013 15:26:36 GMT";s:13:"cache-control";s:0:"";s:6:"pragma";s:0:"";s:13:"last-modified";s:31:"Wed, 30 Jan 2013 14:51:36 +0000";s:4:"x-nc";s:11:"HIT luv 139";}s:5:"build";s:14:"20121202154312";}', 'no'),
(203, '_transient_timeout_feed_mod_57bc725ad6568758915363af670fd8bc', '1359601060', 'no'),
(204, '_transient_feed_mod_57bc725ad6568758915363af670fd8bc', '1359557860', 'no'),
(205, '_transient_timeout_plugin_slugs', '1359648856', 'no'),
(206, '_transient_plugin_slugs', 'a:5:{i:0;s:19:"akismet/akismet.php";i:1;s:9:"hello.php";i:2;s:43:"multi-image-metabox/multi-image-metabox.php";i:3;s:47:"regenerate-thumbnails/regenerate-thumbnails.php";i:4;s:44:"root-relative-urls/sb_root_relative_urls.php";}', 'no'),
(207, '_transient_timeout_dash_de3249c4736ad3bd2cd29147c4a0d43e', '1359601061', 'no'),
(208, '_transient_dash_de3249c4736ad3bd2cd29147c4a0d43e', '<h4>Plus populaire</h4>\n<h5><a href=''http://wordpress.org/extend/plugins/jetpack/''>Jetpack by WordPress.com</a></h5> <span>(<a href=''plugin-install.php?tab=plugin-information&plugin=jetpack&_wpnonce=352592e5b1&TB_iframe=true&width=600&height=800'' class=''thickbox'' title=''Jetpack by WordPress.com''>Installer</a>)</span>\n<p>Supercharge your WordPress site with powerful features previously only available to WordPress.com users.</p>\n<h4>Nouvelles extensions</h4>\n<h5><a href=''http://wordpress.org/extend/plugins/sbd-aside/''>SBD Aside</a></h5> <span>(<a href=''plugin-install.php?tab=plugin-information&plugin=sbd-aside&_wpnonce=0233b7d785&TB_iframe=true&width=600&height=800'' class=''thickbox'' title=''SBD Aside''>Installer</a>)</span>\n<p>The SBD Aside plugin is a WordPress plugin that allows bloggers to easily create small side-bars for there entries, called asides.</p>\n', 'no'),
(209, 'recently_activated', 'a:0:{}', 'yes'),
(212, 'realisations_cat_children', 'a:0:{}', 'yes'),
(213, 'category_children', 'a:0:{}', 'yes');
-- --------------------------------------------------------
--
-- Structure de la table `wp_postmeta`
--
CREATE TABLE IF NOT EXISTS `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 DEFAULT CHARSET=utf8 AUTO_INCREMENT=76 ;
--
-- Contenu de la table `wp_postmeta`
--
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5, 5, '_edit_last', '1'),
(6, 5, '_edit_lock', '1356361540:1'),
(9, 7, '_edit_last', '1'),
(10, 7, '_edit_lock', '1356359522:1'),
(15, 12, '_edit_last', '1'),
(16, 12, '_edit_lock', '1356361283:1'),
(19, 16, '_edit_last', '1'),
(20, 16, '_edit_lock', '1356361634:1'),
(21, 25, '_wp_attached_file', '2013/01/character.jpg'),
(22, 25, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:284;s:6:"height";i:284;s:4:"file";s:21:"2013/01/character.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"character-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:3:"mid";a:4:{s:4:"file";s:21:"character-200x200.jpg";s:5:"width";i:200;s:6:"height";i:200;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:"";}}'),
(23, 24, '_edit_last', '1'),
(24, 24, '_image1', '25'),
(25, 24, '_edit_lock', '1359559186:1'),
(26, 26, '_edit_last', '1'),
(27, 26, '_edit_lock', '1359559128:1'),
(28, 27, '_wp_attached_file', '2013/01/droid.jpg'),
(29, 27, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:284;s:6:"height";i:284;s:4:"file";s:17:"2013/01/droid.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"droid-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:3:"mid";a:4:{s:4:"file";s:17:"droid-200x200.jpg";s:5:"width";i:200;s:6:"height";i:200;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:"";}}'),
(30, 26, '_image1', '27'),
(31, 29, '_wp_attached_file', '2013/01/luigi.jpg'),
(32, 29, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:284;s:6:"height";i:284;s:4:"file";s:17:"2013/01/luigi.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"luigi-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:3:"mid";a:4:{s:4:"file";s:17:"luigi-200x200.jpg";s:5:"width";i:200;s:6:"height";i:200;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:"";}}'),
(33, 28, '_edit_last', '1'),
(34, 28, '_image1', '29'),
(35, 28, '_edit_lock', '1359559082:1'),
(36, 30, '_edit_last', '1'),
(37, 30, '_image1', '31'),
(38, 30, '_edit_lock', '1359559040:1'),
(39, 31, '_wp_attached_file', '2013/01/rayban.jpg'),
(40, 31, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:284;s:6:"height";i:284;s:4:"file";s:18:"2013/01/rayban.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"rayban-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:3:"mid";a:4:{s:4:"file";s:18:"rayban-200x200.jpg";s:5:"width";i:200;s:6:"height";i:200;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:"";}}'),
(41, 33, '_wp_attached_file', '2013/01/select.jpg'),
(42, 33, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:400;s:6:"height";i:400;s:4:"file";s:18:"2013/01/select.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"select-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:"select-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:3:"mid";a:4:{s:4:"file";s:18:"select-200x200.jpg";s:5:"width";i:200;s:6:"height";i:200;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:"";}}'),
(43, 32, '_edit_last', '1'),
(44, 32, '_image1', '33'),
(45, 32, '_edit_lock', '1359559003:1'),
(46, 32, '_laburl', 'http://codepen.io/onediv/pen/ngude'),
(47, 30, '_laburl', 'http://one-div.com/pictos/rayban/'),
(48, 28, '_laburl', 'http://codepen.io/wyllen/details/Chalm'),
(49, 26, '_laburl', 'http://codepen.io/onediv/pen/kLCeE'),
(50, 24, '_laburl', 'http://codepen.io/wyllen/details/IkaBr'),
(51, 34, '_edit_last', '1'),
(52, 34, '_edit_lock', '1359560589:1'),
(53, 35, '_wp_attached_file', '2013/01/one-div.jpg'),
(54, 35, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:500;s:6:"height";i:486;s:4:"file";s:19:"2013/01/one-div.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"one-div-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:19:"one-div-300x291.jpg";s:5:"width";i:300;s:6:"height";i:291;s:9:"mime-type";s:10:"image/jpeg";}s:3:"mid";a:4:{s:4:"file";s:19:"one-div-200x194.jpg";s:5:"width";i:200;s:6:"height";i:194;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:"";}}'),
(55, 34, '_image1', '35'),
(56, 36, '_edit_last', '1'),
(57, 36, '_edit_lock', '1359560690:1'),
(58, 37, '_wp_attached_file', '2013/01/afro_vintage_by_wyllen-d439mc2.jpg'),
(59, 37, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:1080;s:4:"file";s:42:"2013/01/afro_vintage_by_wyllen-d439mc2.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:42:"afro_vintage_by_wyllen-d439mc2-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:42:"afro_vintage_by_wyllen-d439mc2-300x168.jpg";s:5:"width";i:300;s:6:"height";i:168;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:43:"afro_vintage_by_wyllen-d439mc2-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:3:"mid";a:4:{s:4:"file";s:42:"afro_vintage_by_wyllen-d439mc2-200x112.jpg";s:5:"width";i:200;s:6:"height";i:112;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:"";}}'),
(60, 36, '_image1', '37'),
(61, 38, '_edit_last', '1'),
(62, 38, '_edit_lock', '1359560759:1'),
(63, 39, '_wp_attached_file', '2013/01/sh4re.jpg'),
(64, 39, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:1300;s:4:"file";s:17:"2013/01/sh4re.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"sh4re-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:17:"sh4re-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:18:"sh4re-1024x693.jpg";s:5:"width";i:1024;s:6:"height";i:693;s:9:"mime-type";s:10:"image/jpeg";}s:3:"mid";a:4:{s:4:"file";s:17:"sh4re-200x135.jpg";s:5:"width";i:200;s:6:"height";i:135;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:"";}}'),
(65, 38, '_image1', '39'),
(66, 40, '_edit_last', '1'),
(67, 40, '_edit_lock', '1359560836:1'),
(68, 41, '_wp_attached_file', '2013/01/vd.jpg'),
(69, 41, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1503;s:6:"height";i:993;s:4:"file";s:14:"2013/01/vd.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"vd-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:14:"vd-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:15:"vd-1024x676.jpg";s:5:"width";i:1024;s:6:"height";i:676;s:9:"mime-type";s:10:"image/jpeg";}s:3:"mid";a:4:{s:4:"file";s:14:"vd-200x132.jpg";s:5:"width";i:200;s:6:"height";i:132;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:"";}}'),
(70, 40, '_image1', '41'),
(71, 42, '_edit_last', '1'),
(72, 42, '_edit_lock', '1359560987:1'),
(73, 43, '_wp_attached_file', '2013/01/Music-Vintage.jpg'),
(74, 43, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1440;s:6:"height";i:900;s:4:"file";s:25:"2013/01/Music-Vintage.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"Music-Vintage-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:25:"Music-Vintage-300x187.jpg";s:5:"width";i:300;s:6:"height";i:187;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"Music-Vintage-1024x640.jpg";s:5:"width";i:1024;s:6:"height";i:640;s:9:"mime-type";s:10:"image/jpeg";}s:3:"mid";a:4:{s:4:"file";s:25:"Music-Vintage-200x125.jpg";s:5:"width";i:200;s:6:"height";i:125;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:"";}}'),
(75, 42, '_image1', '43');
-- --------------------------------------------------------
--
-- Structure de la table `wp_posts`
--
CREATE TABLE IF NOT EXISTS `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext NOT NULL,
`post_title` text NOT NULL,
`post_excerpt` text NOT NULL,
`post_status` varchar(20) NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) NOT NULL DEFAULT 'open',
`ping_status` varchar(20) NOT NULL DEFAULT 'open',
`post_password` varchar(20) NOT NULL DEFAULT '',
`post_name` varchar(200) NOT NULL DEFAULT '',
`to_ping` text NOT NULL,
`pinged` text NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=44 ;
--
-- Contenu de la table `wp_posts`
--
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(5, 1, '2012-12-24 14:52:38', '2012-12-24 13:52:38', 'Sprite sheet animation with steps(). There is an over a year old jsFiddle but I never got around to post it.. until today! ;-)\r\nIf you don’t wanna use gifs on your site and rather PNGs for better colors, but still be able to animate them, here an option:\r\nCSS keyframe animations have a property called animation-timing-function and one of the options is to use the steps() feature like in this example:\r\n\r\ndiv {\r\nanimation: play 1s steps(10) infinite;\r\n}\r\n@keyframes play {\r\n0% { background-position: 0px 0; }\r\n100% { background-position: -500px 0; }\r\n}\r\n\r\nThe difference to the other easing options is that instead of continuously moving from 0px to -500px, it jumps in steps with pauses in between. This is perfect for animations using a sprite sheet. In the above example it’s steps of 50px with a pause of 100ms (10 steps in total).\r\nHere a little demo.\r\nAs you saw, you can change the speed how fast the animation should play, which is pretty cool, the only problem is that it always starts from the beginning and makes it look jumpy. I also tried to animate the animation-duration by using inherit from a parent element, but unfortunately that is not supported. So I guess if you wanna have a more dynamic speed (animating the animation), you still need to use JS for that.', 'Single elements: how to use them?', '', 'publish', 'open', 'open', '', 'single-elements-how-to-use-them', '', '', '2012-12-24 14:52:39', '2012-12-24 13:52:39', '', 0, 'http://127.0.0.1/VD2/?p=5', 0, 'post', '', 0),
(6, 1, '2012-12-24 14:52:05', '2012-12-24 13:52:05', '', 'Single elements: how to use them?', '', 'inherit', 'open', 'open', '', '5-revision', '', '', '2012-12-24 14:52:05', '2012-12-24 13:52:05', '', 5, 'http://127.0.0.1/VD2/?p=6', 0, 'revision', '', 0),
(7, 1, '2012-12-24 14:52:59', '2012-12-24 13:52:59', 'Sprite sheet animation with steps(). There is an over a year old jsFiddle but I never got around to post it.. until today! ;-)\r\nIf you don’t wanna use gifs on your site and rather PNGs for better colors, but still be able to animate them, here an option:\r\nCSS keyframe animations have a property called animation-timing-function and one of the options is to use the steps() feature like in this example:\r\n\r\ndiv {\r\nanimation: play 1s steps(10) infinite;\r\n}\r\n@keyframes play {\r\n0% { background-position: 0px 0; }\r\n100% { background-position: -500px 0; }\r\n}\r\n\r\nThe difference to the other easing options is that instead of continuously moving from 0px to -500px, it jumps in steps with pauses in between. This is perfect for animations using a sprite sheet. In the above example it’s steps of 50px with a pause of 100ms (10 steps in total).\r\nHere a little demo.\r\nAs you saw, you can change the speed how fast the animation should play, which is pretty cool, the only problem is that it always starts from the beginning and makes it look jumpy. I also tried to animate the animation-duration by using inherit from a parent element, but unfortunately that is not supported. So I guess if you wanna have a more dynamic speed (animating the animation), you still need to use JS for that.', 'Single elements: how to use them?2', '', 'publish', 'open', 'open', '', 'single-elements-how-to-use-them2', '', '', '2012-12-24 14:52:59', '2012-12-24 13:52:59', '', 0, 'http://127.0.0.1/VD2/?p=7', 0, 'post', '', 0),
(8, 1, '2012-12-24 14:52:57', '2012-12-24 13:52:57', '', 'Single elements: how to use them?2', '', 'inherit', 'open', 'open', '', '7-revision', '', '', '2012-12-24 14:52:57', '2012-12-24 13:52:57', '', 7, 'http://127.0.0.1/VD2/?p=8', 0, 'revision', '', 0),
(9, 1, '2012-12-24 14:53:50', '2012-12-24 13:53:50', 'Sprite sheet animation with steps(). There is an over a year old jsFiddle but I never got around to post it.. until today! ;-)\nIf you don’t wanna use gifs on your site and rather PNGs for better colors, but still be able to animate them, here an option:\nCSS keyframe animations have a property called animation-timing-function and one of the options is to use the steps() feature like in this example:\n\ndiv {\nanimation: play 1s steps(10) infinite;\n}\n@keyframes play {\n0% { background-position: 0px 0; }\n100% { background-position: -500px 0; }\n}\n\nThe difference to the other easing options is that instead of continuously moving from 0px to -500px, it jumps in steps with pauses in between. This is perfect for animations using a sprite sheet. In the above example it’s steps of 50px with a pause of 100ms (10 steps in total).\nHere a little demo.\nAs you saw, you can change the speed how fast the animation should play, which is pretty cool, the only problem is that it always starts from the beginning and makes it look jumpy. I also tried to animate the animation-duration by using inherit from a parent element, but unfortunately that is not supported. So I guess if you wanna have a more dynamic speed (animating the animation), you still need to use JS for that.', 'Single elements: how to use them?', '', 'inherit', 'open', 'open', '', '5-autosave', '', '', '2012-12-24 14:53:50', '2012-12-24 13:53:50', '', 5, 'http://127.0.0.1/VD2/?p=9', 0, 'revision', '', 0),
(10, 1, '2012-12-24 14:54:01', '2012-12-24 13:54:01', 'Sprite sheet animation with steps(). There is an over a year old jsFiddle but I never got around to post it.. until today! ;-)\nIf you don’t wanna use gifs on your site and rather PNGs for better colors, but still be able to animate them, here an option:\nCSS keyframe animations have a property called animation-timing-function and one of the options is to use the steps() feature like in this example:\n\ndiv {\nanimation: play 1s steps(10) infinite;\n}\n@keyframes play {\n0% { background-position: 0px 0; }\n100% { background-position: -500px 0; }\n}\n\nThe difference to the other easing options is that instead of continuously moving from 0px to -500px, it jumps in steps with pauses in between. This is perfect for animations using a sprite sheet. In the above example it’s steps of 50px with a pause of 100ms (10 steps in total).\nHere a little demo.\nAs you saw, you can change the speed how fast the animation should play, which is pretty cool, the only problem is that it always starts from the beginning and makes it look jumpy. I also tried to animate the animation-duration by using inherit from a parent element, but unfortunately that is not supported. So I guess if you wanna have a more dynamic speed (animating the animation), you still need to use JS for that.', 'Single elements: how to use them?2', '', 'inherit', 'open', 'open', '', '7-autosave', '', '', '2012-12-24 14:54:01', '2012-12-24 13:54:01', '', 7, 'http://127.0.0.1/VD2/?p=10', 0, 'revision', '', 0),
(12, 1, '2012-12-24 15:44:17', '2012-12-24 14:44:17', 'Sprite sheet animation with steps(). There is an over a year old jsFiddle but I never got around to post it.. until today! ;-) If you don’t wanna use gifs.', 'A propos', '', 'publish', 'open', 'open', '', 'a-propos', '', '', '2012-12-24 15:44:17', '2012-12-24 14:44:17', '', 0, 'http://127.0.0.1/VD2/?page_id=12', 0, 'page', '', 0),
(14, 1, '2012-12-24 15:42:49', '2012-12-24 14:42:49', 'Sprite sheet animation with steps(). There is an over a year old jsFiddle but I never got around to post it.. until today! ;-) If you don’t wanna use gifs.', 'A propos', '', 'inherit', 'open', 'open', '', '12-revision', '', '', '2012-12-24 15:42:49', '2012-12-24 14:42:49', '', 12, 'http://127.0.0.1/VD2/?p=14', 0, 'revision', '', 0),
(15, 1, '2012-12-24 15:45:18', '2012-12-24 14:45:18', 'Sprite sheet animation with steps(). There is an over a year old jsFiddle but I never got around to post it.. until today! ;-) If you don’t wanna use gifs.', 'A propos', '', 'inherit', 'open', 'open', '', '12-autosave', '', '', '2012-12-24 15:45:18', '2012-12-24 14:45:18', '', 12, 'http://127.0.0.1/VD2/?p=15', 0, 'revision', '', 0),
(16, 1, '2012-12-24 16:03:24', '2012-12-24 15:03:24', 'Sprite sheet animation with steps(). There is an over a year old jsFiddle but I never got around to post it.. until today! ;-) If you don’t wanna use gifs on your site and rather PNGs for better colors.', 'Contact', '', 'publish', 'open', 'open', '', 'contact', '', '', '2012-12-24 16:03:33', '2012-12-24 15:03:33', '', 0, 'http://127.0.0.1/VD2/?page_id=16', 0, 'page', '', 0),
(17, 1, '2012-12-24 16:03:22', '2012-12-24 15:03:22', '', 'Contact', '', 'inherit', 'open', 'open', '', '16-revision', '', '', '2012-12-24 16:03:22', '2012-12-24 15:03:22', '', 16, 'http://127.0.0.1/VD2/?p=17', 0, 'revision', '', 0),
(18, 1, '2012-12-24 16:03:24', '2012-12-24 15:03:24', 'Sprite sheet animation with steps(). There is an over a year old jsFiddle but I never got around to post it.. until today! ;-) If you don’t wanna use gifs on your site and rather PNGs for better colors.', 'Contact', '', 'inherit', 'open', 'open', '', '16-revision-2', '', '', '2012-12-24 16:03:24', '2012-12-24 15:03:24', '', 16, 'http://127.0.0.1/VD2/?p=18', 0, 'revision', '', 0),
(19, 1, '2012-12-24 16:04:35', '2012-12-24 15:04:35', 'Sprite sheet animation with steps(). There is an over a year old jsFiddle but I never got around to post it.. until today! ;-) If you don’t wanna use gifs on your site and rather PNGs for better colors.', 'Contact', '', 'inherit', 'open', 'open', '', '16-autosave', '', '', '2012-12-24 16:04:35', '2012-12-24 15:04:35', '', 16, 'http://127.0.0.1/VD2/?p=19', 0, 'revision', '', 0),
(21, 1, '2013-01-28 17:17:55', '0000-00-00 00:00:00', '', 'Brouillon auto', '', 'auto-draft', 'open', 'open', '', '', '', '', '2013-01-28 17:17:55', '0000-00-00 00:00:00', '', 0, 'http://127.0.0.1/VD2/?p=21', 0, 'post', '', 0),
(22, 1, '2013-01-30 15:57:49', '0000-00-00 00:00:00', '', 'Brouillon auto', '', 'auto-draft', 'open', 'open', '', '', '', '', '2013-01-30 15:57:49', '0000-00-00 00:00:00', '', 0, 'http://127.0.0.1/VD2/?post_type=labs&p=22', 0, 'labs', '', 0),
(23, 1, '2013-01-30 15:59:52', '0000-00-00 00:00:00', '', 'Brouillon auto', '', 'auto-draft', 'open', 'open', '', '', '', '', '2013-01-30 15:59:52', '0000-00-00 00:00:00', '', 0, 'http://127.0.0.1/VD2/?post_type=labs&p=23', 0, 'labs', '', 0),
(24, 1, '2013-01-30 16:03:34', '2013-01-30 15:03:34', '', 'character generator', '', 'publish', 'closed', 'closed', '', 'character-generator', '', '', '2013-01-30 16:21:36', '2013-01-30 15:21:36', '', 0, 'http://127.0.0.1/VD2/?post_type=labs&p=24', 0, 'labs', '', 0),
(25, 1, '2013-01-30 16:03:15', '2013-01-30 15:03:15', '', 'character', '', 'inherit', 'open', 'open', '', 'character', '', '', '2013-01-30 16:03:15', '2013-01-30 15:03:15', '', 24, 'http://127.0.0.1/VD2/wp-content/uploads/2013/01/character.jpg', 0, 'attachment', 'image/jpeg', 0),
(26, 1, '2013-01-30 16:03:56', '2013-01-30 15:03:56', '', 'Droid', '', 'publish', 'closed', 'closed', '', 'droid', '', '', '2013-01-30 16:20:36', '2013-01-30 15:20:36', '', 0, 'http://127.0.0.1/VD2/?post_type=labs&p=26', 0, 'labs', '', 0),
(27, 1, '2013-01-30 16:03:50', '2013-01-30 15:03:50', '', 'droid', '', 'inherit', 'open', 'open', '', 'droid', '', '', '2013-01-30 16:03:50', '2013-01-30 15:03:50', '', 26, 'http://127.0.0.1/VD2/wp-content/uploads/2013/01/droid.jpg', 0, 'attachment', 'image/jpeg', 0),
(28, 1, '2013-01-30 16:04:11', '2013-01-30 15:04:11', '', 'Luigi', '', 'publish', 'closed', 'closed', '', 'luigi', '', '', '2013-01-30 16:19:53', '2013-01-30 15:19:53', '', 0, 'http://127.0.0.1/VD2/?post_type=labs&p=28', 0, 'labs', '', 0),
(29, 1, '2013-01-30 16:04:06', '2013-01-30 15:04:06', '', 'luigi', '', 'inherit', 'open', 'open', '', 'luigi', '', '', '2013-01-30 16:04:06', '2013-01-30 15:04:06', '', 28, 'http://127.0.0.1/VD2/wp-content/uploads/2013/01/luigi.jpg', 0, 'attachment', 'image/jpeg', 0),
(30, 1, '2013-01-30 16:04:32', '2013-01-30 15:04:32', '', 'Rayban', '', 'publish', 'closed', 'closed', '', 'rayban', '', '', '2013-01-30 16:19:12', '2013-01-30 15:19:12', '', 0, 'http://127.0.0.1/VD2/?post_type=labs&p=30', 0, 'labs', '', 0),
(31, 1, '2013-01-30 16:04:37', '2013-01-30 15:04:37', '', 'rayban', '', 'inherit', 'open', 'open', '', 'rayban-2', '', '', '2013-01-30 16:04:37', '2013-01-30 15:04:37', '', 30, 'http://127.0.0.1/VD2/wp-content/uploads/2013/01/rayban.jpg', 0, 'attachment', 'image/jpeg', 0),
(32, 1, '2013-01-30 16:08:20', '2013-01-30 15:08:20', '', 'Select', '', 'publish', 'closed', 'closed', '', 'select', '', '', '2013-01-30 16:18:34', '2013-01-30 15:18:34', '', 0, 'http://127.0.0.1/VD2/?post_type=labs&p=32', 0, 'labs', '', 0),
(33, 1, '2013-01-30 16:08:13', '2013-01-30 15:08:13', '', 'select', '', 'inherit', 'open', 'open', '', 'select', '', '', '2013-01-30 16:08:13', '2013-01-30 15:08:13', '', 32, 'http://127.0.0.1/VD2/wp-content/uploads/2013/01/select.jpg', 0, 'attachment', 'image/jpeg', 0),
(34, 1, '2013-01-30 16:43:25', '2013-01-30 15:43:25', '<strong>One div</strong> aims to highlight the <strong>potential of CSS3</strong> through a library of single element logos.All icons displayed on the website are realised in pure css with only one html div. The challenge is also to provide an alternative to SVG. Indeed icons allow precise borders preserved even resized (As vector format). Then we can see a clear interest in <strong>responsive design</strong>.\r\n\r\nThese symbols also enjoyed the advantage of <strong>animation effects</strong> (hover for example),that wouldn’t be possible with a different format.\r\n\r\nOne div also emphasizes <strong>the community aspect</strong> by providing members to submit their own creations, whether they are validated later appear on the website. Subsequently we can imagine a system allowing the visitors to proposed an alternative optimized on each logo, in aim to improved the overall quality of the library.\r\n\r\nIt is obvious that some problem arises, especially <strong>the browser compatibility</strong>, however, as far as possible, we try to make our creations compatible in Chrome Firefox and Safari.', 'One-div', '', 'publish', 'closed', 'closed', '', 'one-div', '', '', '2013-01-30 16:44:58', '2013-01-30 15:44:58', '', 0, 'http://127.0.0.1/VD2/?post_type=realisations&p=34', 0, 'realisations', '', 0),
(35, 1, '2013-01-30 16:43:19', '2013-01-30 15:43:19', '', 'one-div', '', 'inherit', 'open', 'open', '', 'one-div', '', '', '2013-01-30 16:43:19', '2013-01-30 15:43:19', '', 34, 'http://127.0.0.1/VD2/wp-content/uploads/2013/01/one-div.jpg', 0, 'attachment', 'image/jpeg', 0),
(36, 1, '2013-01-30 16:45:48', '2013-01-30 15:45:48', '', 'Afro Vintage', '', 'publish', 'closed', 'closed', '', 'afro-vintage', '', '', '2013-01-30 16:45:48', '2013-01-30 15:45:48', '', 0, 'http://127.0.0.1/VD2/?post_type=realisations&p=36', 0, 'realisations', '', 0),
(37, 1, '2013-01-30 16:45:21', '2013-01-30 15:45:21', '', 'afro_vintage_by_wyllen-d439mc2', '', 'inherit', 'open', 'open', '', 'afro_vintage_by_wyllen-d439mc2', '', '', '2013-01-30 16:45:21', '2013-01-30 15:45:21', '', 36, 'http://127.0.0.1/VD2/wp-content/uploads/2013/01/afro_vintage_by_wyllen-d439mc2.jpg', 0, 'attachment', 'image/jpeg', 0),
(38, 1, '2013-01-30 16:47:35', '2013-01-30 15:47:35', '', 'Sh4re', '', 'publish', 'closed', 'closed', '', 'sh4re', '', '', '2013-01-30 16:47:35', '2013-01-30 15:47:35', '', 0, 'http://127.0.0.1/VD2/?post_type=realisations&p=38', 0, 'realisations', '', 0),
(39, 1, '2013-01-30 16:47:05', '2013-01-30 15:47:05', '', 'sh4re', '', 'inherit', 'open', 'open', '', 'sh4re', '', '', '2013-01-30 16:47:05', '2013-01-30 15:47:05', '', 38, 'http://127.0.0.1/VD2/wp-content/uploads/2013/01/sh4re.jpg', 0, 'attachment', 'image/jpeg', 0),
(40, 1, '2013-01-30 16:49:08', '2013-01-30 15:49:08', '', 'VD', '', 'publish', 'closed', 'closed', '', 'vd', '', '', '2013-01-30 16:49:08', '2013-01-30 15:49:08', '', 0, 'http://127.0.0.1/VD2/?post_type=realisations&p=40', 0, 'realisations', '', 0),
(41, 1, '2013-01-30 16:49:01', '2013-01-30 15:49:01', '', 'vd', '', 'inherit', 'open', 'open', '', 'vd', '', '', '2013-01-30 16:49:01', '2013-01-30 15:49:01', '', 40, 'http://127.0.0.1/VD2/wp-content/uploads/2013/01/vd.jpg', 0, 'attachment', 'image/jpeg', 0),
(42, 1, '2013-01-30 16:51:20', '2013-01-30 15:51:20', '', 'Music Vintage', '', 'publish', 'closed', 'closed', '', 'music-vintage', '', '', '2013-01-30 16:51:20', '2013-01-30 15:51:20', '', 0, 'http://127.0.0.1/VD2/?post_type=realisations&p=42', 0, 'realisations', '', 0),
(43, 1, '2013-01-30 16:51:00', '2013-01-30 15:51:00', '', 'Music-Vintage', '', 'inherit', 'open', 'open', '', 'music-vintage', '', '', '2013-01-30 16:51:00', '2013-01-30 15:51:00', '', 42, 'http://127.0.0.1/VD2/wp-content/uploads/2013/01/Music-Vintage.jpg', 0, 'attachment', 'image/jpeg', 0);
-- --------------------------------------------------------
--
-- Structure de la table `wp_terms`
--
CREATE TABLE IF NOT EXISTS `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL DEFAULT '',
`slug` varchar(200) NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
UNIQUE KEY `slug` (`slug`),
KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;
--
-- Contenu de la table `wp_terms`
--
INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Non classé', 'non-classe', 0),
(2, 'Site perso', 'site-perso', 0),
(3, 'Fond d''écran', 'fond-decran', 0),
(4, 'Réalisation en cours', 'realisation-en-cours', 0);
-- --------------------------------------------------------
--
-- Structure de la table `wp_term_relationships`
--
CREATE TABLE IF NOT EXISTS `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Contenu de la table `wp_term_relationships`
--
INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(5, 1, 0),
(7, 1, 0),
(34, 2, 0),
(36, 3, 0),
(38, 4, 0),
(40, 2, 0),
(42, 3, 0);
-- --------------------------------------------------------
--
-- Structure de la table `wp_term_taxonomy`
--
CREATE TABLE IF NOT EXISTS `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) NOT NULL DEFAULT '',
`description` longtext NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;
--
-- Contenu de la table `wp_term_taxonomy`
--
INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 2),
(2, 2, 'realisations_cat', '', 0, 2),
(3, 3, 'realisations_cat', '', 0, 2),
(4, 4, 'realisations_cat', '', 0, 1);
-- --------------------------------------------------------
--
-- Structure de la table `wp_usermeta`
--
CREATE TABLE IF NOT EXISTS `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=17 ;
--
-- Contenu de la table `wp_usermeta`
--
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'first_name', ''),
(2, 1, 'last_name', ''),
(3, 1, 'nickname', 'admin'),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'comment_shortcuts', 'false'),
(7, 1, 'admin_color', 'fresh'),
(8, 1, 'use_ssl', '0'),
(9, 1, 'show_admin_bar_front', 'true'),
(10, 1, 'wp_capabilities', 'a:1:{s:13:"administrator";b:1;}'),
(11, 1, 'wp_user_level', '10'),
(12, 1, 'dismissed_wp_pointers', 'wp330_toolbar,wp330_saving_widgets,wp340_choose_image_from_library,wp340_customize_current_theme_link,wp350_media'),
(13, 1, 'show_welcome_panel', '1'),
(14, 1, 'wp_dashboard_quick_press_last_post_id', '21'),
(15, 1, 'wp_user-settings', 'libraryContent=browse&align=none&imgsize=full&urlbutton=post&editor=tinymce'),
(16, 1, 'wp_user-settings-time', '1356360253');
-- --------------------------------------------------------
--
-- Structure de la table `wp_users`
--
CREATE TABLE IF NOT EXISTS `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) NOT NULL DEFAULT '',
`user_pass` varchar(64) NOT NULL DEFAULT '',
`user_nicename` varchar(50) NOT NULL DEFAULT '',
`user_email` varchar(100) NOT NULL DEFAULT '',
`user_url` varchar(100) NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(60) NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Contenu de la table `wp_users`
--
INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'admin', '$P$B6zuFUEJDv4Rt8DTlyuUdLCEdKVyb01', 'admin', '[email protected]', '', '2012-12-24 10:40:03', '', 0, 'admin');
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;