From 84cb5662eaf06cdeabe863e44e29c6d52ee3135b Mon Sep 17 00:00:00 2001 From: Brian Kelleher Date: Tue, 26 Apr 2016 13:59:33 -0400 Subject: [PATCH] more build tools --- appspec.yml | 41 +- beforeinstall.sh | 1 + data/ation.sql | 2473 +++++++++++++++++++++++++++++++++++++++ docker-compose-prod.yml | 13 +- env/production.env | 3 +- env/sql-prod.env | 4 + 6 files changed, 2509 insertions(+), 26 deletions(-) create mode 100644 beforeinstall.sh create mode 100644 data/ation.sql create mode 100644 env/sql-prod.env diff --git a/appspec.yml b/appspec.yml index d14c217..b7cb4da 100644 --- a/appspec.yml +++ b/appspec.yml @@ -5,7 +5,7 @@ # For help completing this file, see the "AppSpec File Reference" in the # "AWS CodeDeploy User Guide" at # http://docs.aws.amazon.com/codedeploy/latest/userguide/app-spec-ref.html -version: 1.0 +version: 0.0 # Specify "os: linux" if this revision targets Amazon Linux, # Red Hat Enterprise Linux (RHEL), or Ubuntu Server # instances. @@ -35,21 +35,21 @@ files: # then remove the # "permissions" section altogether. A blank or incomplete "permissions" # section may cause associated deployments to fail. -permissions: - - object: - pattern: - except: - owner: - group: - mode: - acls: - - - context: - user: - type: - range: - type: - - +# permissions: +# - object: +# pattern: +# except: +# owner: +# group: +# mode: +# acls: +# - +# context: +# user: +# type: +# range: +# type: +# - # If you are not running any commands on the Amazon EC2 instance, then remove # the "hooks" section altogether. A blank or incomplete "hooks" section # may cause associated deployments to fail. @@ -86,13 +86,8 @@ permissions: # runas: # During the BeforeInstall deployment lifecycle event, run the commands # in the script specified in "location". - # BeforeInstall: - # - location: - # timeout: - # runas: - # - location: - # timeout: - # runas: +BeforeInstall: + - location: beforeinstall.sh # During the AfterInstall deployment lifecycle event, run the commands # in the script specified in "location". # AfterInstall: diff --git a/beforeinstall.sh b/beforeinstall.sh new file mode 100644 index 0000000..52f2cd8 --- /dev/null +++ b/beforeinstall.sh @@ -0,0 +1 @@ +sudo rm -rf /var/www/ation/* \ No newline at end of file diff --git a/data/ation.sql b/data/ation.sql new file mode 100644 index 0000000..e2db965 --- /dev/null +++ b/data/ation.sql @@ -0,0 +1,2473 @@ +-- phpMyAdmin SQL Dump +-- version 4.0.10deb1 +-- http://www.phpmyadmin.net +-- +-- Host: localhost +-- Generation Time: Apr 26, 2016 at 12:18 PM +-- Server version: 5.6.28-0ubuntu0.14.04.1 +-- PHP Version: 5.6.19-1+deb.sury.org~trusty+1 + +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 */; + +-- +-- Database: `ation` +-- + +-- -------------------------------------------------------- + +-- +-- Table structure for 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) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `meta_value` longtext COLLATE utf8mb4_unicode_ci, + PRIMARY KEY (`meta_id`), + KEY `comment_id` (`comment_id`), + KEY `meta_key` (`meta_key`(191)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; + +-- -------------------------------------------------------- + +-- +-- Table structure for 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 COLLATE utf8mb4_unicode_ci NOT NULL, + `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci 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 COLLATE utf8mb4_unicode_ci NOT NULL, + `comment_karma` int(11) NOT NULL DEFAULT '0', + `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', + `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci 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`), + KEY `comment_author_email` (`comment_author_email`(10)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=2 ; + +-- +-- Dumping data for table `wp_comments` +-- + +INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES +(1, 1, 'Mr WordPress', '', 'https://wordpress.org/', '', '2016-02-13 22:20:57', '2016-02-13 22:20:57', 'Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.', 0, '1', '', '', 0, 0); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `wp_links` +-- + +CREATE TABLE IF NOT EXISTS `wp_links` ( + `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci 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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, + `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`link_id`), + KEY `link_visible` (`link_visible`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `wp_options` +-- + +CREATE TABLE IF NOT EXISTS `wp_options` ( + `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `option_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', + PRIMARY KEY (`option_id`), + UNIQUE KEY `option_name` (`option_name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1341 ; + +-- +-- Dumping data for table `wp_options` +-- + +INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES +(1, 'siteurl', 'http://ation.develop.digitalmediauconn.org/www', 'yes'), +(2, 'home', 'http://ation.develop.digitalmediauconn.org/www', 'yes'), +(3, 'blogname', 'ATION Digital Media', 'yes'), +(4, 'blogdescription', 'UConn's Student Agency', 'yes'), +(5, 'users_can_register', '0', 'yes'), +(6, 'admin_email', 'brian.kelleher@uconn.edu', 'yes'), +(7, 'start_of_week', '1', 'yes'), +(8, 'use_balanceTags', '0', 'yes'), +(9, 'use_smilies', '1', 'yes'), +(10, 'require_name_email', '1', 'yes'), +(11, 'comments_notify', '1', 'yes'), +(12, 'posts_per_rss', '10', 'yes'), +(13, 'rss_use_excerpt', '0', 'yes'), +(14, 'mailserver_url', 'mail.example.com', 'yes'), +(15, 'mailserver_login', 'login@example.com', 'yes'), +(16, 'mailserver_pass', 'password', 'yes'), +(17, 'mailserver_port', '110', 'yes'), +(18, 'default_category', '1', 'yes'), +(19, 'default_comment_status', 'closed', 'yes'), +(20, 'default_ping_status', 'closed', 'yes'), +(21, 'default_pingback_flag', '', 'yes'), +(22, 'posts_per_page', '10', 'yes'), +(23, 'date_format', 'F j, Y', 'yes'), +(24, 'time_format', 'g:i a', 'yes'), +(25, 'links_updated_date_format', 'F j, Y g:i a', 'yes'), +(26, 'comment_moderation', '1', 'yes'), +(27, 'moderation_notify', '1', 'yes'), +(28, 'permalink_structure', '/%year%/%monthnum%/%day%/%postname%/', 'yes'), +(29, 'hack_file', '0', 'yes'), +(30, 'blog_charset', 'UTF-8', 'yes'), +(31, 'moderation_keys', '', 'no'), +(32, 'active_plugins', 'a:10:{i:0;s:30:"advanced-custom-fields/acf.php";i:1;s:47:"better-search-replace/better-search-replace.php";i:2;s:27:"cas-maestro/cas-maestro.php";i:3;s:95:"clean-and-simple-contact-form-by-meg-nicholas/clean-and-simple-contact-form-by-meg-nicholas.php";i:4;s:43:"custom-post-type-ui/custom-post-type-ui.php";i:5;s:33:"github-updater/github-updater.php";i:6;s:17:"timber/timber.php";i:7;s:34:"video-background/candide-vidbg.php";i:8;s:49:"wp-sync-db-media-files/wp-sync-db-media-files.php";i:9;s:25:"wp-sync-db/wp-sync-db.php";}', 'yes'), +(33, 'category_base', '', 'yes'), +(34, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'), +(35, 'comment_max_links', '2', 'yes'), +(36, 'gmt_offset', '', 'yes'), +(37, 'default_email_category', '1', 'yes'), +(38, 'recently_edited', '', 'no'), +(39, 'template', 'ation2016', 'yes'), +(40, 'stylesheet', 'ation2016', 'yes'), +(41, 'comment_whitelist', '1', 'yes'), +(42, 'blacklist_keys', '', 'no'), +(43, 'comment_registration', '1', 'yes'), +(44, 'html_type', 'text/html', 'yes'), +(45, 'use_trackback', '0', 'yes'), +(46, 'default_role', 'subscriber', 'yes'), +(47, 'db_version', '35700', 'yes'), +(48, 'uploads_use_yearmonth_folders', '1', 'yes'), +(49, 'upload_path', '', 'yes'), +(50, 'blog_public', '0', 'yes'), +(51, 'default_link_category', '2', 'yes'), +(52, 'show_on_front', 'page', 'yes'), +(53, 'tag_base', '', 'yes'), +(54, 'show_avatars', '1', 'yes'), +(55, 'avatar_rating', 'G', 'yes'), +(56, 'upload_url_path', '', 'yes'), +(57, 'thumbnail_size_w', '150', 'yes'), +(58, 'thumbnail_size_h', '150', 'yes'), +(59, 'thumbnail_crop', '1', 'yes'), +(60, 'medium_size_w', '300', 'yes'), +(61, 'medium_size_h', '300', 'yes'), +(62, 'avatar_default', 'mystery', 'yes'), +(63, 'large_size_w', '1024', 'yes'), +(64, 'large_size_h', '1024', 'yes'), +(65, 'image_default_link_type', 'none', 'yes'), +(66, 'image_default_size', '', 'yes'), +(67, 'image_default_align', '', 'yes'), +(68, 'close_comments_for_old_posts', '', 'yes'), +(69, 'close_comments_days_old', '14', 'yes'), +(70, 'thread_comments', '1', 'yes'), +(71, 'thread_comments_depth', '5', 'yes'), +(72, 'page_comments', '', 'yes'), +(73, 'comments_per_page', '50', 'yes'), +(74, 'default_comments_page', 'newest', 'yes'), +(75, 'comment_order', 'asc', 'yes'), +(76, 'sticky_posts', 'a:0:{}', 'yes'), +(77, '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'), +(78, 'widget_text', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'), +(79, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'), +(80, 'uninstall_plugins', 'a:0:{}', 'no'), +(81, 'timezone_string', 'America/New_York', 'yes'), +(82, 'page_for_posts', '0', 'yes'), +(83, 'page_on_front', '48', 'yes'), +(84, 'default_post_format', '0', 'yes'), +(85, 'link_manager_enabled', '0', 'yes'), +(86, 'finished_splitting_shared_terms', '1', 'yes'), +(87, 'site_icon', '0', 'yes'), +(88, 'medium_large_size_w', '768', 'yes'), +(89, 'medium_large_size_h', '0', 'yes'), +(90, 'initial_db_version', '35700', 'yes'), +(91, 'wp_user_roles', 'a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:61:{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: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'), +(92, 'widget_search', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'), +(93, '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'), +(94, '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'), +(95, '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'), +(96, 'widget_meta', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'), +(97, 'sidebars_widgets', 'a:3:{s:19:"wp_inactive_widgets";a:0:{}s:18:"orphaned_widgets_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'), +(100, 'widget_pages', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'), +(101, 'widget_calendar', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'), +(102, 'widget_tag_cloud', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'), +(103, 'widget_nav_menu', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'), +(104, 'cron', 'a:4:{i:1461696216;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;}}}i:1461709260;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:1461718207;a:1:{s:19:"wp_scheduled_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}s:7:"version";i:2;}', 'yes'), +(106, '_site_transient_update_core', 'O:8:"stdClass":4:{s:7:"updates";a:2:{i:0;O:8:"stdClass":10:{s:8:"response";s:7:"upgrade";s:8:"download";s:57:"https://downloads.wordpress.org/release/wordpress-4.5.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:57:"https://downloads.wordpress.org/release/wordpress-4.5.zip";s:10:"no_content";s:68:"https://downloads.wordpress.org/release/wordpress-4.5-no-content.zip";s:11:"new_bundled";s:69:"https://downloads.wordpress.org/release/wordpress-4.5-new-bundled.zip";s:7:"partial";b:0;s:8:"rollback";b:0;}s:7:"current";s:3:"4.5";s:7:"version";s:3:"4.5";s:11:"php_version";s:5:"5.2.4";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"4.4";s:15:"partial_version";s:0:"";}i:1;O:8:"stdClass":12:{s:8:"response";s:10:"autoupdate";s:8:"download";s:57:"https://downloads.wordpress.org/release/wordpress-4.5.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:57:"https://downloads.wordpress.org/release/wordpress-4.5.zip";s:10:"no_content";s:68:"https://downloads.wordpress.org/release/wordpress-4.5-no-content.zip";s:11:"new_bundled";s:69:"https://downloads.wordpress.org/release/wordpress-4.5-new-bundled.zip";s:7:"partial";b:0;s:8:"rollback";b:0;}s:7:"current";s:3:"4.5";s:7:"version";s:3:"4.5";s:11:"php_version";s:5:"5.2.4";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"4.4";s:15:"partial_version";s:0:"";s:13:"support_email";s:26:"updatehelp42@wordpress.org";s:9:"new_files";s:1:"1";}}s:12:"last_checked";i:1461673605;s:15:"version_checked";s:5:"4.4.2";s:12:"translations";a:0:{}}', 'yes'), +(111, '_site_transient_update_themes', 'O:8:"stdClass":4:{s:12:"last_checked";i:1461673606;s:7:"checked";a:4:{s:9:"ation2016";s:0:"";s:13:"twentyfifteen";s:3:"1.4";s:14:"twentyfourteen";s:3:"1.6";s:13:"twentysixteen";s:3:"1.1";}s:8:"response";a:3:{s:13:"twentyfifteen";a:4:{s:5:"theme";s:13:"twentyfifteen";s:11:"new_version";s:3:"1.5";s:3:"url";s:43:"https://wordpress.org/themes/twentyfifteen/";s:7:"package";s:59:"https://downloads.wordpress.org/theme/twentyfifteen.1.5.zip";}s:14:"twentyfourteen";a:4:{s:5:"theme";s:14:"twentyfourteen";s:11:"new_version";s:3:"1.7";s:3:"url";s:44:"https://wordpress.org/themes/twentyfourteen/";s:7:"package";s:60:"https://downloads.wordpress.org/theme/twentyfourteen.1.7.zip";}s:13:"twentysixteen";a:4:{s:5:"theme";s:13:"twentysixteen";s:11:"new_version";s:3:"1.2";s:3:"url";s:43:"https://wordpress.org/themes/twentysixteen/";s:7:"package";s:59:"https://downloads.wordpress.org/theme/twentysixteen.1.2.zip";}}s:12:"translations";a:0:{}}', 'yes'), +(112, '_site_transient_timeout_browser_3169968522b03df3dec0fab2e1f8e09e', '1456006862', 'yes'), +(113, '_site_transient_browser_3169968522b03df3dec0fab2e1f8e09e', 'a:9:{s:8:"platform";s:9:"Macintosh";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"48.0.2564.103";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'), +(114, 'can_compress_scripts', '1', 'yes'), +(134, 'recently_activated', 'a:0:{}', 'yes'), +(135, 'wpCAS_settings', 'a:18:{s:17:"cas_menu_location";s:7:"sidebar";s:8:"new_user";N;s:12:"email_suffix";s:0:"";s:11:"cas_version";s:3:"2.0";s:15:"server_hostname";s:15:"login.uconn.edu";s:11:"server_port";s:3:"443";s:11:"server_path";s:3:"cas";s:19:"e-mail_registration";s:1:"1";s:13:"global_sender";s:24:"brian.kelleher@uconn.edu";s:9:"full_name";s:0:"";s:12:"welcome_mail";a:5:{s:9:"send_user";b:1;s:11:"send_global";b:0;s:7:"subject";s:0:"";s:9:"user_body";s:0:"";s:11:"global_body";s:0:"";}s:9:"wait_mail";a:5:{s:9:"send_user";b:1;s:11:"send_global";b:0;s:7:"subject";s:0:"";s:9:"user_body";s:0:"";s:11:"global_body";s:0:"";}s:13:"ldap_protocol";s:1:"3";s:11:"ldap_server";s:0:"";s:17:"ldap_username_rdn";s:0:"";s:13:"ldap_password";s:0:"";s:11:"ldap_basedn";s:0:"";s:9:"ldap_port";N;}', 'yes'), +(136, 'wpCAS_allowed_users', 'a:0:{}', 'yes'), +(138, '_transient_twentysixteen_categories', '1', 'yes'), +(139, 'category_children', 'a:0:{}', 'yes'), +(143, 'current_theme', 'ATION 2016', 'yes'), +(144, 'theme_mods_ation2016', 'a:2:{i:0;b:0;s:18:"nav_menu_locations";a:1:{s:7:"primary";i:2;}}', 'yes'), +(145, 'theme_switched', '', 'yes'), +(149, 'acf_version', '4.4.6', 'yes'), +(151, 'theme_mods_twentysixteen', 'a:1:{s:16:"sidebars_widgets";a:2:{s:4:"time";i:1455435459;s:4:"data";a:2:{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";}}}}', 'yes'), +(176, '_site_transient_timeout_browser_4b9324364ae8511a1cac826ea4c88969', '1456167500', 'yes'), +(177, '_site_transient_browser_4b9324364ae8511a1cac826ea4c88969', 'a:9:{s:8:"platform";s:9:"Macintosh";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"48.0.2564.109";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'), +(196, 'WPLANG', '', 'yes'), +(287, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:"auto_add";a:0:{}}', 'yes'), +(297, '_site_transient_timeout_browser_263b65700d130def37ff64d32c69aa6d', '1457620550', 'yes'), +(298, '_site_transient_browser_263b65700d130def37ff64d32c69aa6d', 'a:9:{s:8:"platform";s:9:"Macintosh";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"48.0.2564.116";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'), +(350, 'cptui_post_types', 'a:2:{s:7:"project";a:27:{s:4:"name";s:7:"project";s:5:"label";s:8:"Projects";s:14:"singular_label";s:7:"Project";s:11:"description";s:20:"All -ATION projects.";s:6:"public";s:4:"true";s:7:"show_ui";s:4:"true";s:17:"show_in_nav_menus";s:4:"true";s:12:"show_in_rest";s:4:"true";s:9:"rest_base";s:0:"";s:11:"has_archive";s:5:"false";s:18:"has_archive_string";s:0:"";s:19:"exclude_from_search";s:5:"false";s:15:"capability_type";s:4:"post";s:12:"hierarchical";s:5:"false";s:7:"rewrite";s:4:"true";s:12:"rewrite_slug";s:0:"";s:17:"rewrite_withfront";s:4:"true";s:9:"query_var";s:4:"true";s:14:"query_var_slug";s:0:"";s:13:"menu_position";s:0:"";s:12:"show_in_menu";s:4:"true";s:19:"show_in_menu_string";s:0:"";s:9:"menu_icon";s:0:"";s:8:"supports";a:9:{i:0;s:5:"title";i:1;s:6:"editor";i:2;s:7:"excerpt";i:3;s:13:"custom-fields";i:4;s:9:"revisions";i:5;s:9:"thumbnail";i:6;s:6:"author";i:7;s:15:"page-attributes";i:8;s:12:"post-formats";}s:10:"taxonomies";a:0:{}s:6:"labels";a:13:{s:9:"menu_name";s:8:"Projects";s:9:"all_items";s:12:"All Projects";s:7:"add_new";s:7:"Add New";s:12:"add_new_item";s:15:"Add New Project";s:4:"edit";s:4:"Edit";s:9:"edit_item";s:12:"Edit Project";s:8:"new_item";s:11:"New Project";s:4:"view";s:4:"View";s:9:"view_item";s:12:"View Project";s:12:"search_items";s:14:"Search Project";s:9:"not_found";s:17:"No Projects found";s:18:"not_found_in_trash";s:26:"No Projects found in Trash";s:6:"parent";s:14:"Parent Project";}s:15:"custom_supports";s:0:"";}s:6:"member";a:27:{s:4:"name";s:6:"member";s:5:"label";s:7:"Members";s:14:"singular_label";s:6:"Member";s:11:"description";s:37:"Current members and alumni of -ATION.";s:6:"public";s:4:"true";s:7:"show_ui";s:4:"true";s:17:"show_in_nav_menus";s:4:"true";s:12:"show_in_rest";s:4:"true";s:9:"rest_base";s:0:"";s:11:"has_archive";s:5:"false";s:18:"has_archive_string";s:0:"";s:19:"exclude_from_search";s:5:"false";s:15:"capability_type";s:4:"post";s:12:"hierarchical";s:5:"false";s:7:"rewrite";s:4:"true";s:12:"rewrite_slug";s:0:"";s:17:"rewrite_withfront";s:4:"true";s:9:"query_var";s:4:"true";s:14:"query_var_slug";s:0:"";s:13:"menu_position";s:0:"";s:12:"show_in_menu";s:4:"true";s:19:"show_in_menu_string";s:0:"";s:9:"menu_icon";s:0:"";s:8:"supports";a:6:{i:0;s:5:"title";i:1;s:6:"editor";i:2;s:13:"custom-fields";i:3;s:9:"revisions";i:4;s:9:"thumbnail";i:5;s:6:"author";}s:10:"taxonomies";a:0:{}s:6:"labels";a:13:{s:9:"menu_name";s:7:"Members";s:9:"all_items";s:11:"All Members";s:7:"add_new";s:7:"Add New";s:12:"add_new_item";s:14:"Add New Member";s:4:"edit";s:4:"Edit";s:9:"edit_item";s:11:"Edit Member";s:8:"new_item";s:10:"New Member";s:4:"view";s:4:"View";s:9:"view_item";s:11:"View Member";s:12:"search_items";s:13:"Search Member";s:9:"not_found";s:16:"No Members found";s:18:"not_found_in_trash";s:25:"No Members found in Trash";s:6:"parent";s:13:"Parent Member";}s:15:"custom_supports";s:0:"";}}', 'yes'), +(352, 'cptui_taxonomies', 'a:2:{s:7:"service";a:17:{s:4:"name";s:7:"service";s:5:"label";s:8:"Services";s:14:"singular_label";s:7:"Service";s:11:"description";s:52:"Type of service provided, particularly in a project.";s:12:"hierarchical";s:4:"true";s:7:"show_ui";s:4:"true";s:9:"query_var";s:4:"true";s:14:"query_var_slug";s:0:"";s:7:"rewrite";s:4:"true";s:12:"rewrite_slug";s:0:"";s:17:"rewrite_withfront";s:1:"1";s:20:"rewrite_hierarchical";s:1:"0";s:17:"show_admin_column";s:5:"false";s:12:"show_in_rest";s:4:"true";s:9:"rest_base";s:0:"";s:6:"labels";a:15:{s:9:"menu_name";s:8:"Services";s:9:"all_items";s:12:"All Services";s:9:"edit_item";s:12:"Edit Service";s:9:"view_item";s:12:"View Service";s:11:"update_item";s:19:"Update Service Name";s:12:"add_new_item";s:15:"Add New Service";s:13:"new_item_name";s:16:"New Service Name";s:11:"parent_item";s:14:"Parent Service";s:17:"parent_item_colon";s:15:"Parent Service:";s:12:"search_items";s:15:"Search Services";s:13:"popular_items";s:16:"Popular Services";s:26:"separate_items_with_commas";s:29:"Separate Services with commas";s:19:"add_or_remove_items";s:22:"Add or remove Services";s:21:"choose_from_most_used";s:34:"Choose from the most used Services";s:9:"not_found";s:17:"No Services found";}s:12:"object_types";a:1:{i:0;s:7:"project";}}s:8:"semester";a:17:{s:4:"name";s:8:"semester";s:5:"label";s:9:"Semesters";s:14:"singular_label";s:8:"Semester";s:11:"description";s:30:"A member''s active semester(s).";s:12:"hierarchical";s:5:"false";s:7:"show_ui";s:4:"true";s:9:"query_var";s:4:"true";s:14:"query_var_slug";s:0:"";s:7:"rewrite";s:4:"true";s:12:"rewrite_slug";s:0:"";s:17:"rewrite_withfront";s:1:"1";s:20:"rewrite_hierarchical";s:1:"0";s:17:"show_admin_column";s:5:"false";s:12:"show_in_rest";s:4:"true";s:9:"rest_base";s:0:"";s:6:"labels";a:15:{s:9:"menu_name";s:9:"Semesters";s:9:"all_items";s:13:"All Semesters";s:9:"edit_item";s:13:"Edit Semester";s:9:"view_item";s:13:"View Semester";s:11:"update_item";s:20:"Update Semester Name";s:12:"add_new_item";s:16:"Add New Semester";s:13:"new_item_name";s:17:"New Semester Name";s:11:"parent_item";s:15:"Parent Semester";s:17:"parent_item_colon";s:16:"Parent Semester:";s:12:"search_items";s:16:"Search Semesters";s:13:"popular_items";s:17:"Popular Semesters";s:26:"separate_items_with_commas";s:30:"Separate Semesters with commas";s:19:"add_or_remove_items";s:23:"Add or remove Semesters";s:21:"choose_from_most_used";s:35:"Choose from the most used Semesters";s:9:"not_found";s:18:"No Semesters found";}s:12:"object_types";a:1:{i:0;s:6:"member";}}}', 'yes'), +(425, '_site_transient_timeout_browser_8c2b739426805781ac625317b79998e1', '1459271713', 'yes'), +(426, '_site_transient_browser_8c2b739426805781ac625317b79998e1', 'a:9:{s:8:"platform";s:9:"Macintosh";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"48.0.2564.116";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'), +(449, '_site_transient_timeout_browser_d10dd24a345c5e69eb2a6f75a3edc72e', '1459469017', 'yes'), +(450, '_site_transient_browser_d10dd24a345c5e69eb2a6f75a3edc72e', 'a:9:{s:8:"platform";s:9:"Macintosh";s:4:"name";s:6:"Chrome";s:7:"version";s:12:"49.0.2623.87";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'), +(472, 'github_updater', 'a:2:{s:13:"branch_switch";N;s:14:"github-updater";N;}', 'yes'), +(487, 'wpsdb_settings', 'a:7:{s:11:"max_request";i:1048576;s:3:"key";s:32:"WHCGL8e7J8qI/OxuqsB+Z7EamA/lAqik";s:10:"allow_pull";b:0;s:10:"allow_push";b:0;s:8:"profiles";a:0:{}s:10:"verify_ssl";b:0;s:17:"blacklist_plugins";a:0:{}}', 'yes'), +(511, '_site_transient_timeout_browser_67bffb4457c7c00ae77275828881cb94', '1459523377', 'yes'), +(512, '_site_transient_browser_67bffb4457c7c00ae77275828881cb94', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:12:"49.0.2623.87";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'), +(595, '_site_transient_timeout_browser_756703616e460aad58592f863596c56e', '1459882745', 'yes'), +(596, '_site_transient_browser_756703616e460aad58592f863596c56e', 'a:9:{s:8:"platform";s:6:"iPhone";s:4:"name";s:6:"iPhone";s:7:"version";s:8:"601.1.46";s:10:"update_url";s:0:"";s:7:"img_src";s:0:"";s:11:"img_src_ssl";s:0:"";s:15:"current_version";s:0:"";s:7:"upgrade";b:0;s:8:"insecure";b:0;}', 'yes'), +(597, '_site_transient_timeout_browser_8d182f49196bd71746a494fe525a8017', '1459883015', 'yes'), +(598, '_site_transient_browser_8d182f49196bd71746a494fe525a8017', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:12:"49.0.2623.87";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'), +(599, '_site_transient_timeout_browser_4de28e643bce5af517bf8db5a7e60769', '1459883118', 'yes'), +(600, '_site_transient_browser_4de28e643bce5af517bf8db5a7e60769', 'a:9:{s:8:"platform";s:9:"Macintosh";s:4:"name";s:6:"Chrome";s:7:"version";s:12:"49.0.2623.87";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'), +(619, '_site_transient_timeout_ghu-6e757ae9cde5d2f94e9b99909a037a9b', '1459352866', 'yes'), +(620, '_site_transient_ghu-6e757ae9cde5d2f94e9b99909a037a9b', 'a:5:{s:7:"headers";a:5:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Wed, 30 Mar 2016 03:47:47 GMT";s:12:"content-type";s:24:"text/plain;charset=UTF-8";s:10:"connection";s:5:"close";s:15:"x-frame-options";s:10:"SAMEORIGIN";}s:4:"body";s:15632:"O:8:"stdClass":21:{s:4:"name";s:19:"Custom Post Type UI";s:4:"slug";s:19:"custom-post-type-ui";s:7:"version";s:5:"1.3.1";s:6:"author";s:54:"WebDevStudios";s:14:"author_profile";s:42:"https://profiles.wordpress.org/williamsba1";s:12:"contributors";a:3:{s:6:"tw2113";s:37:"https://profiles.wordpress.org/tw2113";s:11:"williamsba1";s:42:"https://profiles.wordpress.org/williamsba1";s:13:"webdevstudios";s:44:"https://profiles.wordpress.org/webdevstudios";}s:8:"requires";s:3:"4.2";s:6:"tested";s:3:"4.5";s:13:"compatibility";a:0:{}s:6:"rating";d:92;s:11:"num_ratings";s:3:"116";s:7:"ratings";a:5:{i:5;s:2:"98";i:4;s:1:"5";i:3;s:1:"4";i:2;s:1:"2";i:1;s:1:"7";}s:10:"downloaded";i:1469354;s:12:"last_updated";s:21:"2016-03-25 6:57pm GMT";s:5:"added";s:10:"2010-02-26";s:8:"homepage";s:53:"https://github.com/WebDevStudios/custom-post-type-ui/";s:8:"sections";a:5:{s:11:"description";s:677:"

This plugin provides an easy to use interface to create and administer custom post types and taxonomies in WordPress. This plugin is created for WordPress 3.x.

\n\n

Please note that this plugin will NOT handle display of registered post types or taxonomies in your current theme. It will simply register them for you.

\n\n

All official development on this plugin is on GitHub. Version bumps will still be published here on WordPress.org. You can find the repo at https://github.com/WebDevStudios/custom-post-type-ui. Please file confirmed issues, bugs, and enhancement ideas there, when possible.

";s:11:"screenshots";s:2094:"
    \n
  1. \n \n

    Add new post type screen and tab.

    \n
  2. \n
  3. \n \n

    Add new taxonomy screen and tab.

    \n
  4. \n
  5. \n \n

    Edit taxonomy screen and tab.

    \n
  6. \n
  7. \n \n

    Registered post types and taxonomies from CPTUI

    \n
  8. \n
  9. \n \n

    Import/Export screen.

    \n
  10. \n
  11. \n \n

    Help/support screen.

    \n
  12. \n
  13. \n \n

    Update Information/Donate screen.

    \n
  14. \n
";s:9:"changelog";s:10309:"

1.3.1 - 2016-3-25

\n\n\n\n

1.3.0 - 2016-3-24

\n\n\n\n

1.2.4

\n\n\n\n

1.2.3 - 2016-01-31

\n\n\n\n

1.2.2 - 2016-01-30

\n\n\n\n

1.2.1 - 2016-01-17

\n\n\n\n

1.2.0 - 2016-01-15

\n\n\n\n

1.1.3 - 2015-12-23

\n\n\n\n

1.1.2 - 2015-08-11

\n\n\n\n

1.1.1 - 2015-06-15

\n\n\n\n

1.1.0 - 2015-06-12

\n\n\n\n

1.0.8 - 2015-05-01

\n\n\n\n

1.0.7 - 2015-04-20

\n\n\n\n

1.0.6 - 2015-04-14

\n\n\n\n

1.0.5 - 2015-03-20

\n\n\n\n

1.0.4 - 2015-03-05

\n\n\n\n

1.0.3 - Unknown

\n\n\n\n

1.0.2 - 2015-02-12

\n\n\n\n

1.0.1 - 2015-02-11

\n\n\n\n

1.0.0 - 2015-02-09

\n\n";s:3:"faq";s:159:"

Please see the Help/Support section for FAQs and start a new thread on the support forums for Custom Post Type UI if none of those answer your question.

";s:11:"other_notes";s:766:"

= Manual

\n

=\n1. Upload the Custom Post Type UI folder to the plugins directory in your WordPress installation\n2. Activate the plugin.\n3. Navigate to the "CPTUI" Menu.

\n

= Admin Installer

\n

=\n1. Visit the Add New plugin screen and search for "custom post type ui"\n2. Click the "Install Now" button.\n3. Activate the plugin.\n4. Navigate to the "CPTUI" Menu.

\n\n

That''s it! Now you can easily start creating custom post types and taxonomies in WordPress

\n

Other Notes

\n

Import/Export functionality amended from original contribution by Ben Allfree.

\n\n

Outside contributors that we wish to thank

\n\n

brandondove

";}s:17:"short_description";s:74:"Admin UI for creating custom post types and custom taxonomies in WordPress";s:13:"download_link";s:68:"https://downloads.wordpress.org/plugin/custom-post-type-ui.1.3.1.zip";s:4:"tags";a:10:{s:3:"cck";s:3:"cck";s:3:"cms";s:3:"cms";s:3:"cpt";s:3:"CPT";s:6:"custom";s:6:"custom";s:17:"custom-post-types";s:17:"custom post types";s:4:"post";s:4:"Post";s:9:"post-type";s:9:"post type";s:3:"tax";s:3:"tax";s:8:"taxonomy";s:8:"Taxonomy";s:5:"types";s:5:"types";}s:11:"donate_link";s:81:"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3084056";}";s:8:"response";a:2:{s:4:"code";i:200;s:7:"message";s:2:"OK";}s:7:"cookies";a:0:{}s:8:"filename";N;}', 'yes'), +(689, '_site_transient_timeout_browser_a03822759b9f89c6b315fdcb839d03f3', '1460054050', 'yes'), +(690, '_site_transient_browser_a03822759b9f89c6b315fdcb839d03f3', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"49.0.2623.110";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'), +(706, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1459460088', 'yes'); +INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES +(707, '_site_transient_poptags_40cd750bba9870f18aada2478b24840a', 'a:100:{s:6:"widget";a:3:{s:4:"name";s:6:"widget";s:4:"slug";s:6:"widget";s:5:"count";s:4:"5800";}s:4:"post";a:3:{s:4:"name";s:4:"Post";s:4:"slug";s:4:"post";s:5:"count";s:4:"3598";}s:6:"plugin";a:3:{s:4:"name";s:6:"plugin";s:4:"slug";s:6:"plugin";s:5:"count";s:4:"3560";}s:5:"admin";a:3:{s:4:"name";s:5:"admin";s:4:"slug";s:5:"admin";s:5:"count";s:4:"3071";}s:5:"posts";a:3:{s:4:"name";s:5:"posts";s:4:"slug";s:5:"posts";s:5:"count";s:4:"2756";}s:9:"shortcode";a:3:{s:4:"name";s:9:"shortcode";s:4:"slug";s:9:"shortcode";s:5:"count";s:4:"2287";}s:7:"sidebar";a:3:{s:4:"name";s:7:"sidebar";s:4:"slug";s:7:"sidebar";s:5:"count";s:4:"2191";}s:6:"google";a:3:{s:4:"name";s:6:"google";s:4:"slug";s:6:"google";s:5:"count";s:4:"2062";}s:7:"twitter";a:3:{s:4:"name";s:7:"twitter";s:4:"slug";s:7:"twitter";s:5:"count";s:4:"2009";}s:4:"page";a:3:{s:4:"name";s:4:"page";s:4:"slug";s:4:"page";s:5:"count";s:4:"1981";}s:6:"images";a:3:{s:4:"name";s:6:"images";s:4:"slug";s:6:"images";s:5:"count";s:4:"1967";}s:8:"comments";a:3:{s:4:"name";s:8:"comments";s:4:"slug";s:8:"comments";s:5:"count";s:4:"1922";}s:5:"image";a:3:{s:4:"name";s:5:"image";s:4:"slug";s:5:"image";s:5:"count";s:4:"1843";}s:8:"facebook";a:3:{s:4:"name";s:8:"Facebook";s:4:"slug";s:8:"facebook";s:5:"count";s:4:"1654";}s:11:"woocommerce";a:3:{s:4:"name";s:11:"woocommerce";s:4:"slug";s:11:"woocommerce";s:5:"count";s:4:"1572";}s:3:"seo";a:3:{s:4:"name";s:3:"seo";s:4:"slug";s:3:"seo";s:5:"count";s:4:"1549";}s:9:"wordpress";a:3:{s:4:"name";s:9:"wordpress";s:4:"slug";s:9:"wordpress";s:5:"count";s:4:"1523";}s:6:"social";a:3:{s:4:"name";s:6:"social";s:4:"slug";s:6:"social";s:5:"count";s:4:"1351";}s:7:"gallery";a:3:{s:4:"name";s:7:"gallery";s:4:"slug";s:7:"gallery";s:5:"count";s:4:"1292";}s:5:"links";a:3:{s:4:"name";s:5:"links";s:4:"slug";s:5:"links";s:5:"count";s:4:"1276";}s:5:"email";a:3:{s:4:"name";s:5:"email";s:4:"slug";s:5:"email";s:5:"count";s:4:"1194";}s:7:"widgets";a:3:{s:4:"name";s:7:"widgets";s:4:"slug";s:7:"widgets";s:5:"count";s:4:"1091";}s:5:"pages";a:3:{s:4:"name";s:5:"pages";s:4:"slug";s:5:"pages";s:5:"count";s:4:"1056";}s:6:"jquery";a:3:{s:4:"name";s:6:"jquery";s:4:"slug";s:6:"jquery";s:5:"count";s:4:"1002";}s:5:"media";a:3:{s:4:"name";s:5:"media";s:4:"slug";s:5:"media";s:5:"count";s:3:"965";}s:9:"ecommerce";a:3:{s:4:"name";s:9:"ecommerce";s:4:"slug";s:9:"ecommerce";s:5:"count";s:3:"949";}s:3:"rss";a:3:{s:4:"name";s:3:"rss";s:4:"slug";s:3:"rss";s:5:"count";s:3:"909";}s:5:"video";a:3:{s:4:"name";s:5:"video";s:4:"slug";s:5:"video";s:5:"count";s:3:"901";}s:4:"ajax";a:3:{s:4:"name";s:4:"AJAX";s:4:"slug";s:4:"ajax";s:5:"count";s:3:"900";}s:7:"content";a:3:{s:4:"name";s:7:"content";s:4:"slug";s:7:"content";s:5:"count";s:3:"887";}s:5:"login";a:3:{s:4:"name";s:5:"login";s:4:"slug";s:5:"login";s:5:"count";s:3:"882";}s:10:"javascript";a:3:{s:4:"name";s:10:"javascript";s:4:"slug";s:10:"javascript";s:5:"count";s:3:"828";}s:10:"responsive";a:3:{s:4:"name";s:10:"responsive";s:4:"slug";s:10:"responsive";s:5:"count";s:3:"806";}s:10:"buddypress";a:3:{s:4:"name";s:10:"buddypress";s:4:"slug";s:10:"buddypress";s:5:"count";s:3:"786";}s:8:"security";a:3:{s:4:"name";s:8:"security";s:4:"slug";s:8:"security";s:5:"count";s:3:"758";}s:5:"photo";a:3:{s:4:"name";s:5:"photo";s:4:"slug";s:5:"photo";s:5:"count";s:3:"753";}s:10:"e-commerce";a:3:{s:4:"name";s:10:"e-commerce";s:4:"slug";s:10:"e-commerce";s:5:"count";s:3:"748";}s:4:"feed";a:3:{s:4:"name";s:4:"feed";s:4:"slug";s:4:"feed";s:5:"count";s:3:"741";}s:7:"youtube";a:3:{s:4:"name";s:7:"youtube";s:4:"slug";s:7:"youtube";s:5:"count";s:3:"741";}s:4:"spam";a:3:{s:4:"name";s:4:"spam";s:4:"slug";s:4:"spam";s:5:"count";s:3:"740";}s:5:"share";a:3:{s:4:"name";s:5:"Share";s:4:"slug";s:5:"share";s:5:"count";s:3:"733";}s:4:"link";a:3:{s:4:"name";s:4:"link";s:4:"slug";s:4:"link";s:5:"count";s:3:"731";}s:8:"category";a:3:{s:4:"name";s:8:"category";s:4:"slug";s:8:"category";s:5:"count";s:3:"693";}s:6:"photos";a:3:{s:4:"name";s:6:"photos";s:4:"slug";s:6:"photos";s:5:"count";s:3:"686";}s:9:"analytics";a:3:{s:4:"name";s:9:"analytics";s:4:"slug";s:9:"analytics";s:5:"count";s:3:"678";}s:5:"embed";a:3:{s:4:"name";s:5:"embed";s:4:"slug";s:5:"embed";s:5:"count";s:3:"675";}s:3:"css";a:3:{s:4:"name";s:3:"CSS";s:4:"slug";s:3:"css";s:5:"count";s:3:"670";}s:4:"form";a:3:{s:4:"name";s:4:"form";s:4:"slug";s:4:"form";s:5:"count";s:3:"666";}s:6:"search";a:3:{s:4:"name";s:6:"search";s:4:"slug";s:6:"search";s:5:"count";s:3:"649";}s:6:"slider";a:3:{s:4:"name";s:6:"slider";s:4:"slug";s:6:"slider";s:5:"count";s:3:"640";}s:9:"slideshow";a:3:{s:4:"name";s:9:"slideshow";s:4:"slug";s:9:"slideshow";s:5:"count";s:3:"638";}s:6:"custom";a:3:{s:4:"name";s:6:"custom";s:4:"slug";s:6:"custom";s:5:"count";s:3:"632";}s:5:"stats";a:3:{s:4:"name";s:5:"stats";s:4:"slug";s:5:"stats";s:5:"count";s:3:"610";}s:6:"button";a:3:{s:4:"name";s:6:"button";s:4:"slug";s:6:"button";s:5:"count";s:3:"602";}s:7:"comment";a:3:{s:4:"name";s:7:"comment";s:4:"slug";s:7:"comment";s:5:"count";s:3:"594";}s:5:"theme";a:3:{s:4:"name";s:5:"theme";s:4:"slug";s:5:"theme";s:5:"count";s:3:"589";}s:4:"menu";a:3:{s:4:"name";s:4:"menu";s:4:"slug";s:4:"menu";s:5:"count";s:3:"588";}s:4:"tags";a:3:{s:4:"name";s:4:"tags";s:4:"slug";s:4:"tags";s:5:"count";s:3:"585";}s:9:"dashboard";a:3:{s:4:"name";s:9:"dashboard";s:4:"slug";s:9:"dashboard";s:5:"count";s:3:"585";}s:10:"categories";a:3:{s:4:"name";s:10:"categories";s:4:"slug";s:10:"categories";s:5:"count";s:3:"574";}s:6:"mobile";a:3:{s:4:"name";s:6:"mobile";s:4:"slug";s:6:"mobile";s:5:"count";s:3:"566";}s:10:"statistics";a:3:{s:4:"name";s:10:"statistics";s:4:"slug";s:10:"statistics";s:5:"count";s:3:"558";}s:3:"ads";a:3:{s:4:"name";s:3:"ads";s:4:"slug";s:3:"ads";s:5:"count";s:3:"553";}s:4:"user";a:3:{s:4:"name";s:4:"user";s:4:"slug";s:4:"user";s:5:"count";s:3:"544";}s:6:"editor";a:3:{s:4:"name";s:6:"editor";s:4:"slug";s:6:"editor";s:5:"count";s:3:"540";}s:5:"users";a:3:{s:4:"name";s:5:"users";s:4:"slug";s:5:"users";s:5:"count";s:3:"528";}s:4:"list";a:3:{s:4:"name";s:4:"list";s:4:"slug";s:4:"list";s:5:"count";s:3:"524";}s:7:"picture";a:3:{s:4:"name";s:7:"picture";s:4:"slug";s:7:"picture";s:5:"count";s:3:"513";}s:7:"plugins";a:3:{s:4:"name";s:7:"plugins";s:4:"slug";s:7:"plugins";s:5:"count";s:3:"510";}s:9:"affiliate";a:3:{s:4:"name";s:9:"affiliate";s:4:"slug";s:9:"affiliate";s:5:"count";s:3:"509";}s:6:"simple";a:3:{s:4:"name";s:6:"simple";s:4:"slug";s:6:"simple";s:5:"count";s:3:"496";}s:9:"multisite";a:3:{s:4:"name";s:9:"multisite";s:4:"slug";s:9:"multisite";s:5:"count";s:3:"496";}s:12:"social-media";a:3:{s:4:"name";s:12:"social media";s:4:"slug";s:12:"social-media";s:5:"count";s:3:"494";}s:12:"contact-form";a:3:{s:4:"name";s:12:"contact form";s:4:"slug";s:12:"contact-form";s:5:"count";s:3:"486";}s:7:"contact";a:3:{s:4:"name";s:7:"contact";s:4:"slug";s:7:"contact";s:5:"count";s:3:"469";}s:8:"pictures";a:3:{s:4:"name";s:8:"pictures";s:4:"slug";s:8:"pictures";s:5:"count";s:3:"457";}s:4:"shop";a:3:{s:4:"name";s:4:"shop";s:4:"slug";s:4:"shop";s:5:"count";s:3:"453";}s:3:"api";a:3:{s:4:"name";s:3:"api";s:4:"slug";s:3:"api";s:5:"count";s:3:"439";}s:3:"url";a:3:{s:4:"name";s:3:"url";s:4:"slug";s:3:"url";s:5:"count";s:3:"439";}s:10:"navigation";a:3:{s:4:"name";s:10:"navigation";s:4:"slug";s:10:"navigation";s:5:"count";s:3:"437";}s:9:"marketing";a:3:{s:4:"name";s:9:"marketing";s:4:"slug";s:9:"marketing";s:5:"count";s:3:"437";}s:4:"html";a:3:{s:4:"name";s:4:"html";s:4:"slug";s:4:"html";s:5:"count";s:3:"436";}s:5:"flash";a:3:{s:4:"name";s:5:"flash";s:4:"slug";s:5:"flash";s:5:"count";s:3:"423";}s:4:"meta";a:3:{s:4:"name";s:4:"meta";s:4:"slug";s:4:"meta";s:5:"count";s:3:"418";}s:10:"newsletter";a:3:{s:4:"name";s:10:"newsletter";s:4:"slug";s:10:"newsletter";s:5:"count";s:3:"415";}s:6:"events";a:3:{s:4:"name";s:6:"events";s:4:"slug";s:6:"events";s:5:"count";s:3:"414";}s:8:"calendar";a:3:{s:4:"name";s:8:"calendar";s:4:"slug";s:8:"calendar";s:5:"count";s:3:"410";}s:8:"tracking";a:3:{s:4:"name";s:8:"tracking";s:4:"slug";s:8:"tracking";s:5:"count";s:3:"407";}s:4:"news";a:3:{s:4:"name";s:4:"News";s:4:"slug";s:4:"news";s:5:"count";s:3:"405";}s:3:"tag";a:3:{s:4:"name";s:3:"tag";s:4:"slug";s:3:"tag";s:5:"count";s:3:"405";}s:11:"advertising";a:3:{s:4:"name";s:11:"advertising";s:4:"slug";s:11:"advertising";s:5:"count";s:3:"399";}s:10:"shortcodes";a:3:{s:4:"name";s:10:"shortcodes";s:4:"slug";s:10:"shortcodes";s:5:"count";s:3:"396";}s:9:"thumbnail";a:3:{s:4:"name";s:9:"thumbnail";s:4:"slug";s:9:"thumbnail";s:5:"count";s:3:"392";}s:7:"sharing";a:3:{s:4:"name";s:7:"sharing";s:4:"slug";s:7:"sharing";s:5:"count";s:3:"388";}s:6:"upload";a:3:{s:4:"name";s:6:"upload";s:4:"slug";s:6:"upload";s:5:"count";s:3:"388";}s:6:"paypal";a:3:{s:4:"name";s:6:"paypal";s:4:"slug";s:6:"paypal";s:5:"count";s:3:"388";}s:12:"notification";a:3:{s:4:"name";s:12:"notification";s:4:"slug";s:12:"notification";s:5:"count";s:3:"388";}s:4:"text";a:3:{s:4:"name";s:4:"text";s:4:"slug";s:4:"text";s:5:"count";s:3:"388";}s:4:"code";a:3:{s:4:"name";s:4:"code";s:4:"slug";s:4:"code";s:5:"count";s:3:"386";}s:8:"lightbox";a:3:{s:4:"name";s:8:"lightbox";s:4:"slug";s:8:"lightbox";s:5:"count";s:3:"384";}}', 'yes'), +(708, '_site_transient_timeout_ghu-87b2b2dd1b72dfefa66c8ef3e9dd83ab', '1459492502', 'yes'), +(709, '_site_transient_ghu-87b2b2dd1b72dfefa66c8ef3e9dd83ab', 'a:5:{s:7:"headers";a:5:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Thu, 31 Mar 2016 18:35:01 GMT";s:12:"content-type";s:24:"text/plain;charset=UTF-8";s:10:"connection";s:5:"close";s:15:"x-frame-options";s:10:"SAMEORIGIN";}s:4:"body";s:27187:"O:8:"stdClass":21:{s:4:"name";s:29:"Contact Form Clean and Simple";s:4:"slug";s:45:"clean-and-simple-contact-form-by-meg-nicholas";s:7:"version";s:5:"4.6.1";s:6:"author";s:58:"Meghan Nicholas";s:14:"author_profile";s:42:"https://profiles.wordpress.org/megnicholas";s:12:"contributors";a:1:{s:11:"megnicholas";s:42:"https://profiles.wordpress.org/megnicholas";}s:8:"requires";s:3:"3.3";s:6:"tested";s:5:"4.4.2";s:13:"compatibility";a:0:{}s:6:"rating";d:92;s:11:"num_ratings";s:3:"137";s:7:"ratings";a:5:{i:5;s:3:"113";i:4;s:2:"11";i:3;s:1:"5";i:2;s:1:"1";i:1;s:1:"7";}s:10:"downloaded";i:325375;s:12:"last_updated";s:22:"2016-01-21 11:33am GMT";s:5:"added";s:10:"2013-04-23";s:8:"homepage";s:76:"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form";s:8:"sections";a:6:{s:11:"description";s:4034:"

A clean and simple AJAX contact form with Google reCAPTCHA, Twitter Bootstrap markup and Akismet spam filtering.

\n\n\n\n

This is a straightforward contact form for your WordPress site. There is very minimal set-up \nrequired. Simply install, activate, and then place the short code [cscf-contact-form] on your web page.

\n\n

A standard set of input boxes are provided, these include Email Address, Name, Message and a nice big ‘Send Message’ button.

\n\n

When your user has completed the form an email will be sent to you containing your user’s message. \nTo reply simply click the ‘reply’ button on your email client. \nThe email address used is the one you have set up in WordPress under ‘Settings’ -> ‘General’, so do check this is correct.

\n\n

To help prevent spam all data is scanned via Akismet. \nFor this to work you must have the Akismet Plugin installed and activated.\nAll spam will be placed in your ''comments'' list which you can then review if you want to \nlearn more.

\n\n

For added piece of mind this plugin also allows you to add a ‘reCAPTCHA’. \nThis adds a picture of a couple of words to the bottom of the contact form. \nYour user must correctly type the words before the form can be submitted, and in so doing, prove that they are human.

\n\n

Why Choose This Plugin?

\n\n

Granted there are many plugins of this type in existence already. Why use this one in-particular?

\n\n

Here’s why:

\n\n\n\n

Hopefully this plugin will fulfil all your needs, if not get in-touch and I will customise to your exact requirements.

";s:12:"installation";s:867:"

There are two ways to install:

\n\n
    \n
  1. Click the ‘Install Now’ link from the plugin library listing to automatically download and install.

  2. \n
  3. Download the plugin as a zip file. To install the zip file simply double click to extract it and place the whole folder in your wordpress plugins folder, e.g. [wordpress]/wp-content/plugins where [wordpress] is the directory that you installed WordPress in.

  4. \n
\n\n

Then visit the plugin page on your wordpress site and click ‘Activate’ against the ‘Clean and Simple Contact Form’ plugin listing.

\n\n

To place the contact form on your page use the shortcode [cscf-contact-form]

\n\n

More information on how to use the plugin.

";s:11:"screenshots";s:1927:"
    \n
  1. \n \n

    Contact Form With reCAPTCHA

    \n
  2. \n
  3. \n \n

    Contact Form Without reCAPTCHA

    \n
  4. \n
  5. \n \n

    Message Sent

    \n
  6. \n
  7. \n \n

    Contact Form Options Screen

    \n
  8. \n
  9. \n \n

    Place this shortcode on your post or page to deploy

    \n
  10. \n
";s:9:"changelog";s:10406:"

4.6.1

\n\n\n\n

4.6.0

\n\n\n\n

4.5.1

\n\n\n\n

4.5.0

\n\n\n\n

4.4.4

\n\n\n\n

4.4.3

\n\n\n\n

4.4.2

\n\n\n\n

4.4.0

\n\n\n\n

4.4.1

\n\n\n\n

4.3.4

\n\n\n\n

4.3.3

\n\n\n\n

4.3.2

\n\n\n\n

4.3.1

\n\n\n\n

4.3.0

\n\n\n\n

4.2.5

\n\n\n\n

4.2.4

\n\n\n\n

4.2.3

\n\n\n\n

4.2.2

\n\n\n\n

4.2.1

\n\n\n\n

4.2.0

\n\n\n\n

4.1.9

\n\n\n\n

4.1.8

\n\n\n\n

4.1.7

\n\n\n\n

4.1.6

\n\n\n\n

4.1.5

\n\n\n\n

4.1.4

\n\n\n\n

4.1.3

\n\n\n\n

4.1.2

\n\n\n\n

4.1.1

\n\n\n\n

4.1.0

\n\n\n\n

4.0.9

\n\n\n\n

4.0.8

\n\n\n\n

4.0.7

\n\n";s:3:"faq";s:3110:"

I get a message to say that the message could not be sent

\n\n

If you get this message then you have a general problem with email on your server. This plugin uses Wordpress''s send mail function.\nSo a problem sending mail from this plugin indicates that Wordpress as a whole cannot send email.\nContact your web host provider for help, or use an SMTP plugin to use a third party email service.

\n\n

I don''t receive the email

\n\n\n\n

Why is a different contact form displayed?

\n\n

You may have a conflict with another plugin. Either deactivate the other contact form plugin, if you don''t need it, or use\nthis alternative short code on your webpage - [cscf-contact-form].\nThis problem often occurs when Jetpack plugin is installed.

\n\n

How do I display the contact form on my page/post?

\n\n

To put the contact form on your page, add the text:

\n\n
[cscf-contact-form]
\n\n

The contact form will appear when you view the page.

\n\n

When I use the style sheet that comes with the plugin my theme is affected

\n\n

It is impossible to test this plugin with all themes. Styling incompatibilities can occur. In this case, switch off the default stylesheet on the settings\nscreen so you can add your own styles to your theme''s stylesheet.

\n\n

Can I have this plugin in my own language?

\n\n

Yes, I am currently building up translation files for this plugin. If your language is not yet available you are very welcome to translate it.\nIf you are not sure how to go about doing this get in touch.

\n\n

How do I change the text box sizes?

\n\n

The plugin now uses Bootstrap 3. The text box widths now use up 100% of the available width. \nThis makes the form responsive to all types of media. If you want to have a fixed width for the form you can put some styling around the shortcode:

\n\n
<div style="width:600px;">[cscf-contact-form]</div>
\n\n

Can I have multiple forms?

\n\n

Currently you may only have one contact form per page. You CAN however put the contact form on more than one page using the same shortcode.\nNote that making changes to the settings will affect all implementations of the plugin across your site.

\n\n

Will this work with other plugins that use Google reCAPTCHA?

\n\n

Yes it will. HOWEVER, you cannot have more than one reCAPTCHA on a page. This is a constraint created by Google.\nSo for example, if your ''Contact Me'' page has comments below it, \nthe reCAPTCHA for the contact form will be displayed correctly but not in the comments form below.\nThe comments form will never validate due to no supplied reCAPTCHA code.

";s:11:"other_notes";s:4869:"

How to Use

\n

Unless you want to change messages or add reCAPTCHA to your contact form then this plugin will work out of the box without any additional setup.

\n\n

Important: Check that you have an email address set-up in your WordPress ‘Settings’->’General’ page. This is the address that the plugin will use to send the contents of the contact form.

\n\n

To add the contact form to your WordPress website simply place the shortcode [cscf-contact-form] on the post or page that you wish the form to appear on.

\n\n

If you have Jetpack plugin installed disable the contact form otherwise the wrong form might display.

\n\n

More information on how to use the plugin.

\n

Additional Settings

\n

This plugin will work out of the box without any additional setup. You have the option to change the default messages that are displayed to your user and to add reCAPTCHA capabilities.

\n\n

Go to the settings screen for the contact form plugin.

\n\n

You will find a link to the setting screen against the entry of this plugin on the ‘Installed Plugins’ page.

\n\n

Here is a list of things that you can change

\n\n\n

Demo

\n

This is a demonstration of this plugin working on the default Twenty Twelve theme ->\nClean and Simple Contact Form Demonstration

\n

About Meg Nicholas

\n

I am a freelance WordPress Developer. \nHire me for all your Wordpress needs.

";}s:17:"short_description";s:112:"A clean and simple AJAX contact form with Google reCAPTCHA, Twitter Bootstrap markup and Akismet spam filtering.";s:13:"download_link";s:94:"https://downloads.wordpress.org/plugin/clean-and-simple-contact-form-by-meg-nicholas.4.6.1.zip";s:4:"tags";a:17:{s:4:"ajax";s:4:"AJAX";s:7:"akismet";s:7:"Akismet";s:9:"bootstrap";s:9:"Bootstrap";s:7:"contact";s:7:"contact";s:14:"contact-button";s:14:"contact button";s:12:"contact-form";s:12:"contact form";s:19:"contact-form-plugin";s:19:"contact form plugin";s:10:"contact-me";s:10:"contact me";s:8:"contacts";s:8:"contacts";s:20:"contacts-form-plugin";s:20:"contacts form plugin";s:13:"feedback-form";s:13:"feedback form";s:4:"form";s:4:"form";s:6:"google";s:6:"google";s:9:"recaptcha";s:9:"recaptcha";s:6:"secure";s:6:"secure";s:6:"simple";s:6:"simple";s:7:"twitter";s:7:"twitter";}s:11:"donate_link";s:87:"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=AKQM4KSBQ4H66";}";s:8:"response";a:2:{s:4:"code";i:200;s:7:"message";s:2:"OK";}s:7:"cookies";a:0:{}s:8:"filename";N;}', 'yes'), +(712, 'cscf_version', '4.6.1', 'yes'), +(713, 'cscf_options', 'a:10:{s:20:"recaptcha_public_key";s:40:"6Ld6PhwTAAAAAMRo9GRbfagClCpqVMdhv2Plmzh2";s:21:"recaptcha_private_key";s:40:"6Ld6PhwTAAAAAOJHA40Y1EYltXCvf_NtRCVqSIii";s:16:"recipient_emails";a:2:{i:0;s:27:"ationdigitalmedia@gmail.com";i:1;s:24:"brian.kelleher@uconn.edu";}s:13:"confirm-email";s:2:"on";s:10:"from-email";s:27:"ationdigitalmedia@gmail.com";s:7:"subject";s:34:"ATION Digital Media - Web Enquiry";s:7:"message";s:110:"Please enter your contact details and a short message below and our team will contact you as soon as possible!";s:20:"sent_message_heading";s:12:"Message Sent";s:17:"sent_message_body";s:61:"Thank you for your message, we will be in touch very shortly.";s:21:"use_client_validation";s:2:"on";}', 'yes'); +INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES +(750, 'rewrite_rules', 'a:121:{s:11:"^wp-json/?$";s:22:"index.php?rest_route=/";s:14:"^wp-json/(.*)?";s:33:"index.php?rest_route=/$matches[1]";s:47:"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:42:"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:35:"category/(.+?)/page/?([0-9]{1,})/?$";s:53:"index.php?category_name=$matches[1]&paged=$matches[2]";s:17:"category/(.+?)/?$";s:35:"index.php?category_name=$matches[1]";s:44:"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?tag=$matches[1]&feed=$matches[2]";s:39:"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?tag=$matches[1]&feed=$matches[2]";s:32:"tag/([^/]+)/page/?([0-9]{1,})/?$";s:43:"index.php?tag=$matches[1]&paged=$matches[2]";s:14:"tag/([^/]+)/?$";s:25:"index.php?tag=$matches[1]";s:45:"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?post_format=$matches[1]&feed=$matches[2]";s:40:"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?post_format=$matches[1]&feed=$matches[2]";s:33:"type/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?post_format=$matches[1]&paged=$matches[2]";s:15:"type/([^/]+)/?$";s:33:"index.php?post_format=$matches[1]";s:48:"service/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:46:"index.php?service=$matches[1]&feed=$matches[2]";s:43:"service/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:46:"index.php?service=$matches[1]&feed=$matches[2]";s:36:"service/([^/]+)/page/?([0-9]{1,})/?$";s:47:"index.php?service=$matches[1]&paged=$matches[2]";s:18:"service/([^/]+)/?$";s:29:"index.php?service=$matches[1]";s:49:"semester/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?semester=$matches[1]&feed=$matches[2]";s:44:"semester/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?semester=$matches[1]&feed=$matches[2]";s:37:"semester/([^/]+)/page/?([0-9]{1,})/?$";s:48:"index.php?semester=$matches[1]&paged=$matches[2]";s:19:"semester/([^/]+)/?$";s:30:"index.php?semester=$matches[1]";s:35:"project/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:45:"project/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:65:"project/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:60:"project/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:60:"project/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:41:"project/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:24:"project/([^/]+)/embed/?$";s:40:"index.php?project=$matches[1]&embed=true";s:28:"project/([^/]+)/trackback/?$";s:34:"index.php?project=$matches[1]&tb=1";s:36:"project/([^/]+)/page/?([0-9]{1,})/?$";s:47:"index.php?project=$matches[1]&paged=$matches[2]";s:43:"project/([^/]+)/comment-page-([0-9]{1,})/?$";s:47:"index.php?project=$matches[1]&cpage=$matches[2]";s:32:"project/([^/]+)(?:/([0-9]+))?/?$";s:46:"index.php?project=$matches[1]&page=$matches[2]";s:24:"project/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:34:"project/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:54:"project/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:49:"project/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:49:"project/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:30:"project/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:34:"member/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:44:"member/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:64:"member/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:59:"member/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:59:"member/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:40:"member/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:23:"member/([^/]+)/embed/?$";s:39:"index.php?member=$matches[1]&embed=true";s:27:"member/([^/]+)/trackback/?$";s:33:"index.php?member=$matches[1]&tb=1";s:35:"member/([^/]+)/page/?([0-9]{1,})/?$";s:46:"index.php?member=$matches[1]&paged=$matches[2]";s:42:"member/([^/]+)/comment-page-([0-9]{1,})/?$";s:46:"index.php?member=$matches[1]&cpage=$matches[2]";s:31:"member/([^/]+)(?:/([0-9]+))?/?$";s:45:"index.php?member=$matches[1]&page=$matches[2]";s:23:"member/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:33:"member/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:53:"member/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:48:"member/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:48:"member/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:29:"member/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:12:"robots\\.txt$";s:18:"index.php?robots=1";s:48:".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$";s:18:"index.php?feed=old";s:20:".*wp-app\\.php(/.*)?$";s:19:"index.php?error=403";s:18:".*wp-register.php$";s:23:"index.php?register=true";s:32:"feed/(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:27:"(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:20:"page/?([0-9]{1,})/?$";s:28:"index.php?&paged=$matches[1]";s:27:"comment-page-([0-9]{1,})/?$";s:39:"index.php?&page_id=48&cpage=$matches[1]";s:41:"comments/feed/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?&feed=$matches[1]&withcomments=1";s:36:"comments/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?&feed=$matches[1]&withcomments=1";s:44:"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:40:"index.php?s=$matches[1]&feed=$matches[2]";s:39:"search/(.+)/(feed|rdf|rss|rss2|atom)/?$";s:40:"index.php?s=$matches[1]&feed=$matches[2]";s:32:"search/(.+)/page/?([0-9]{1,})/?$";s:41:"index.php?s=$matches[1]&paged=$matches[2]";s:14:"search/(.+)/?$";s:23:"index.php?s=$matches[1]";s:47:"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:42:"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:35:"author/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?author_name=$matches[1]&paged=$matches[2]";s:17:"author/([^/]+)/?$";s:33:"index.php?author_name=$matches[1]";s:69:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:64:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:57:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:81:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]";s:39:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$";s:63:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]";s:56:"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:51:"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:44:"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:65:"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]";s:26:"([0-9]{4})/([0-9]{1,2})/?$";s:47:"index.php?year=$matches[1]&monthnum=$matches[2]";s:43:"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:38:"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:31:"([0-9]{4})/page/?([0-9]{1,})/?$";s:44:"index.php?year=$matches[1]&paged=$matches[2]";s:13:"([0-9]{4})/?$";s:26:"index.php?year=$matches[1]";s:58:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:68:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:88:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:83:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:83:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:64:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:53:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$";s:91:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true";s:57:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$";s:85:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1";s:77:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:97:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]";s:72:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:97:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]";s:65:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$";s:98:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]";s:72:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$";s:98:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]";s:61:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$";s:97:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]";s:47:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:57:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:77:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:72:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:72:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:53:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:64:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$";s:81:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]";s:51:"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$";s:65:"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]";s:38:"([0-9]{4})/comment-page-([0-9]{1,})/?$";s:44:"index.php?year=$matches[1]&cpage=$matches[2]";s:27:".?.+?/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:37:".?.+?/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:57:".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:33:".?.+?/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:16:"(.?.+?)/embed/?$";s:41:"index.php?pagename=$matches[1]&embed=true";s:20:"(.?.+?)/trackback/?$";s:35:"index.php?pagename=$matches[1]&tb=1";s:40:"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?pagename=$matches[1]&feed=$matches[2]";s:35:"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?pagename=$matches[1]&feed=$matches[2]";s:28:"(.?.+?)/page/?([0-9]{1,})/?$";s:48:"index.php?pagename=$matches[1]&paged=$matches[2]";s:35:"(.?.+?)/comment-page-([0-9]{1,})/?$";s:48:"index.php?pagename=$matches[1]&cpage=$matches[2]";s:24:"(.?.+?)(?:/([0-9]+))?/?$";s:47:"index.php?pagename=$matches[1]&page=$matches[2]";}', 'yes'), +(766, '_site_transient_timeout_browser_12c8f24c089c50edea6f829feafc00a1', '1460310607', 'yes'), +(767, '_site_transient_browser_12c8f24c089c50edea6f829feafc00a1', 'a:9:{s:8:"platform";s:9:"Macintosh";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"49.0.2623.110";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'), +(885, '_site_transient_timeout_ghu_plugin', '1461717097', 'yes'); +INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES +(886, '_site_transient_ghu_plugin', 'O:28:"Fragen\\GitHub_Updater\\Plugin":4:{s:6:"\0*\0tag";b:0;s:9:"\0*\0config";a:3:{s:14:"github-updater";O:8:"stdClass":40:{s:4:"type";s:13:"github_plugin";s:3:"uri";s:41:"https://github.com/afragen/github-updater";s:10:"enterprise";N;s:14:"enterprise_api";N;s:5:"owner";s:7:"afragen";s:4:"repo";s:14:"github-updater";s:13:"extended_repo";s:29:"github-afragen-github-updater";s:6:"branch";s:6:"master";s:4:"slug";s:33:"github-updater/github-updater.php";s:10:"local_path";s:48:"/var/www/html/wp-content/plugins/github-updater/";s:19:"local_path_extended";s:63:"/var/www/html/wp-content/plugins/github-afragen-github-updater/";s:6:"author";s:11:"Andy Fragen";s:4:"name";s:14:"GitHub Updater";s:13:"local_version";s:5:"5.4.0";s:8:"sections";a:3:{s:11:"description";s:1681:"

This plugin was designed to simply update any GitHub hosted WordPress plugin or theme. Currently, plugins or themes hosted on GitHub, Bitbucket, or GitLab are also supported. Additionally, self-hosted installations of GitHub or GitLab are supported. It also allows for remote installation of plugins or themes into WordPress.

\n

Your plugin or theme must contain a header in the style.css header or in the plugin''s header denoting the location on GitHub. The format is as follows.

\n
GitHub Plugin URI: afragen/github-updater
GitHub Plugin URI: https://github.com/afragen/github-updater
\n

or

\n
GitHub Theme URI: afragen/test-child
GitHub Theme URI: https://github.com/afragen/test-child
\n

...where the above URI leads to the owner/repository of your theme or plugin. The URI may be in the format https://github.com/<owner>/<repo> or the short format <owner>/<repo>. You do not need both. Only one Plugin or Theme URI is required. You must not include any extensions like .git.

\n

The following headers are available for use depending upon your hosting source.

\n

GitHub

\n\n

Bitbucket

\n\n

GitLab

\n";s:9:"changelog";s:32447:"

5.4.1

\n\n

5.4.0

\n\n

5.3.4

\n\n

5.3.3

\n\n

5.3.2

\n\n

5.3.1

\n\n

5.3.0

\n\n

5.2.0

\n\n

5.1.2

\n\n

5.1.1

\n\n

5.1.0

\n\n

5.0.1

\n\n

5.0.0

\n\n

4.6.2

\n\n

4.6.1

\n\n

4.6.0

\n\n

4.5.7

\n\n

4.5.6

\n\n

4.5.5

\n\n

4.5.4

\n\n

4.5.3

\n\n

4.5.2

\n\n

4.5.1

\n\n

4.5.0

\n\n

4.4.0

\n\n

4.3.1

\n\n

4.3.0

\n\n

4.2.2

\n\n

4.2.1

\n\n

4.2.0

\n\n

4.1.4

\n\n

4.1.3

\n\n

4.1.2

\n\n

4.1.1

\n\n

4.1.0

\n\n

4.0.1

\n\n

4.0.0

\n\n

3.2.3 - 3.2.6

\n\n

3.2.2

\n\n

3.2.1

\n\n

3.2.0

\n\n

3.1.1

\n\n

3.1.0

\n\n

3.0.7

\n\n

3.0.6

\n\n

3.0.5

\n\n

3.0.4

\n\n

3.0.3

\n\n

3.0.2

\n\n

3.0.1

\n\n

3.0.0

\n\n

2.9.0

\n\n

2.8.1

\n\n

2.8.0

\n\n

2.7.1

\n\n

2.7.0

\n\n

2.6.3

\n\n

2.6.1

\n\n

2.6.0

\n\n

2.5.0

\n\n

2.4.5

\n\n

2.4.4

\n\n

2.4.2

\n\n

2.4.1

\n\n

2.4.0

\n\n

2.3.3

\n\n

2.3.2

\n\n

2.3.1

\n\n

2.3.0

\n\n

2.2.2

\n\n

2.2.1

\n\n

2.2.0

\n\n

2.1.1

\n\n

2.1.0

\n\n

2.0.1

\n\n

2.0.0

\n\n

1.8.1

\n\n

1.8.0

\n\n

1.7.4

\n\n

1.7.3

\n\n

1.7.2

\n\n

1.7.1

\n\n

1.7.0

\n\n

1.6.1

\n\n

1.6.0

\n\n

1.5.0

\n\n

1.4.3

\n\n

1.4.2

\n\n

1.4.1

\n\n

1.4

\n\n

1.3

\n\n

1.2

\n\n

1.1

\n\n

1.0

\n\n

0.2

\n\n

0.1

\n";s:11:"other_notes";s:2136:"

WordPress and PHP Requirements

\n

There are two optional headers for setting minimum requirements for both WordPress and PHP.

\n

Use Requires WP: to set the minimum required version of WordPress needed for your plugin or theme. eg. Requires WP: 3.8

\n

Use Requires PHP: to set the minimum required version of PHP needed for your plugin or theme. eg. Requires PHP: 5.3.0

\n

At the moment the default values are WordPress 3.8.0 and PHP 5.3.0

\n

Release Assets

\n

An optional header is available for use if your plugin or theme requires updating via a release asset.

\n

Use Release Asset:. eg., Release Asset: true.

\n

Your release asset filename is generated automatically and must have the following format or there will be an update error.

\n

Example, $repo-$tag.zip where $repo is the repository slug and `$tag is the newest release tag, example test-plugin-0.7.3.zip.

\n

You must tag your releases to use this feature.

\n

Developer Hooks

\n

There are 2 added filter hooks specifically for developers wanting to distribute private themes/plugins to clients without the client having to interact with the Settings page.

\n

The first allows the developer to set the GitHub Access Token for a specific plugin or theme. The anonymous function must return a single key/value pair where the key is the plugin/theme repo slug and the value is the token.

\n
add_filter( 'github_updater_token_distribution',\n    function () {\n        return array( 'my-private-theme' => 'kjasdp984298asdvhaljsg984aljhgosrpfiu' );\n    } );
\n

The second hook will simply make the Settings page unavailable.

\n
add_filter( 'github_updater_hide_settings', '__return_true' );
";}s:7:"private";b:0;s:7:"dot_org";b:0;s:14:"remote_version";s:5:"5.4.1";s:10:"newest_tag";s:5:"5.4.1";s:13:"download_link";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.4.1";s:4:"tags";a:30:{i:0;s:5:"4.1.2";i:1;s:5:"4.1.3";i:2;s:5:"4.1.4";i:3;s:5:"4.2.0";i:4;s:5:"4.3.0";i:5;s:5:"4.3.1";i:6;s:5:"4.4.0";i:7;s:5:"4.5.0";i:8;s:5:"4.5.1";i:9;s:5:"4.5.3";i:10;s:5:"4.5.4";i:11;s:5:"4.5.5";i:12;s:5:"4.5.6";i:13;s:5:"4.5.7";i:14;s:5:"4.6.0";i:15;s:5:"4.6.1";i:16;s:5:"4.6.2";i:17;s:5:"5.0.0";i:18;s:5:"5.0.1";i:19;s:5:"5.1.0";i:20;s:5:"5.1.1";i:21;s:5:"5.1.2";i:22;s:5:"5.2.0";i:23;s:5:"5.3.0";i:24;s:5:"5.3.1";i:25;s:5:"5.3.2";i:26;s:5:"5.3.3";i:27;s:5:"5.3.4";i:28;s:5:"5.4.0";i:29;s:5:"5.4.1";}s:8:"rollback";a:30:{s:5:"5.4.1";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.4.1";s:5:"5.4.0";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.4.0";s:5:"5.3.4";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.3.4";s:5:"5.3.3";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.3.3";s:5:"5.3.2";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.3.2";s:5:"5.3.1";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.3.1";s:5:"5.3.0";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.3.0";s:5:"5.2.0";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.2.0";s:5:"5.1.2";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.1.2";s:5:"5.1.1";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.1.1";s:5:"5.1.0";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.1.0";s:5:"5.0.1";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.0.1";s:5:"5.0.0";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.0.0";s:5:"4.6.2";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.6.2";s:5:"4.6.1";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.6.1";s:5:"4.6.0";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.6.0";s:5:"4.5.7";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.5.7";s:5:"4.5.6";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.5.6";s:5:"4.5.5";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.5.5";s:5:"4.5.4";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.5.4";s:5:"4.5.3";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.5.3";s:5:"4.5.1";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.5.1";s:5:"4.5.0";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.5.0";s:5:"4.4.0";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.4.0";s:5:"4.3.1";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.3.1";s:5:"4.3.0";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.3.0";s:5:"4.2.0";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.2.0";s:5:"4.1.4";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.1.4";s:5:"4.1.3";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.1.3";s:5:"4.1.2";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.1.2";}s:8:"branches";a:0:{}s:8:"requires";s:3:"3.8";s:6:"tested";s:3:"4.5";s:11:"donate_link";s:43:"http://thefragens.com/github-updater-donate";s:12:"contributors";a:3:{i:0;s:7:"afragen";i:1;s:5:"garyj";i:2;s:10:"sethmatics";}s:10:"downloaded";i:0;s:12:"last_updated";s:20:"2016-04-23T01:15:33Z";s:6:"rating";i:100;s:11:"num_ratings";i:1111;s:9:"transient";a:27:{s:11:"Requires WP";s:3:"3.8";s:12:"Requires PHP";s:3:"5.3";s:13:"Release Asset";s:0:"";s:16:"GitHub Theme URI";s:0:"";s:13:"GitHub Branch";s:6:"master";s:17:"GitHub Enterprise";s:0:"";s:9:"GitHub CE";s:0:"";s:19:"Bitbucket Theme URI";s:0:"";s:16:"Bitbucket Branch";s:0:"";s:20:"Bitbucket Enterprise";s:0:"";s:12:"Bitbucket CE";s:0:"";s:16:"GitLab Theme URI";s:0:"";s:13:"GitLab Branch";s:0:"";s:17:"GitLab Enterprise";s:0:"";s:9:"GitLab CE";s:0:"";s:17:"GitHub Plugin URI";s:41:"https://github.com/afragen/github-updater";s:20:"Bitbucket Plugin URI";s:0:"";s:17:"GitLab Plugin URI";s:0:"";s:4:"Name";s:14:"GitHub Updater";s:9:"PluginURI";s:41:"https://github.com/afragen/github-updater";s:7:"Version";s:5:"5.4.1";s:11:"Description";s:164:"A plugin to automatically update GitHub, Bitbucket, or GitLab hosted plugins and themes. It also allows for remote installation of plugins or themes into WordPress.";s:6:"Author";s:11:"Andy Fragen";s:9:"AuthorURI";s:0:"";s:10:"TextDomain";s:14:"github-updater";s:10:"DomainPath";s:10:"/languages";s:7:"Network";s:4:"true";}s:9:"repo_meta";O:8:"stdClass":69:{s:2:"id";i:11239863;s:4:"name";s:14:"github-updater";s:9:"full_name";s:22:"afragen/github-updater";s:5:"owner";O:8:"stdClass":17:{s:5:"login";s:7:"afragen";s:2:"id";i:1296790;s:10:"avatar_url";s:51:"https://avatars.githubusercontent.com/u/1296790?v=3";s:11:"gravatar_id";s:0:"";s:3:"url";s:36:"https://api.github.com/users/afragen";s:8:"html_url";s:26:"https://github.com/afragen";s:13:"followers_url";s:46:"https://api.github.com/users/afragen/followers";s:13:"following_url";s:59:"https://api.github.com/users/afragen/following{/other_user}";s:9:"gists_url";s:52:"https://api.github.com/users/afragen/gists{/gist_id}";s:11:"starred_url";s:59:"https://api.github.com/users/afragen/starred{/owner}{/repo}";s:17:"subscriptions_url";s:50:"https://api.github.com/users/afragen/subscriptions";s:17:"organizations_url";s:41:"https://api.github.com/users/afragen/orgs";s:9:"repos_url";s:42:"https://api.github.com/users/afragen/repos";s:10:"events_url";s:53:"https://api.github.com/users/afragen/events{/privacy}";s:19:"received_events_url";s:52:"https://api.github.com/users/afragen/received_events";s:4:"type";s:4:"User";s:10:"site_admin";b:0;}s:7:"private";b:0;s:8:"html_url";s:41:"https://github.com/afragen/github-updater";s:11:"description";s:82:"This WP plugin will update GitHub, Bitbucket, and GitLab hosted plugins and themes";s:4:"fork";b:0;s:3:"url";s:51:"https://api.github.com/repos/afragen/github-updater";s:9:"forks_url";s:57:"https://api.github.com/repos/afragen/github-updater/forks";s:8:"keys_url";s:65:"https://api.github.com/repos/afragen/github-updater/keys{/key_id}";s:17:"collaborators_url";s:80:"https://api.github.com/repos/afragen/github-updater/collaborators{/collaborator}";s:9:"teams_url";s:57:"https://api.github.com/repos/afragen/github-updater/teams";s:9:"hooks_url";s:57:"https://api.github.com/repos/afragen/github-updater/hooks";s:16:"issue_events_url";s:74:"https://api.github.com/repos/afragen/github-updater/issues/events{/number}";s:10:"events_url";s:58:"https://api.github.com/repos/afragen/github-updater/events";s:13:"assignees_url";s:68:"https://api.github.com/repos/afragen/github-updater/assignees{/user}";s:12:"branches_url";s:69:"https://api.github.com/repos/afragen/github-updater/branches{/branch}";s:8:"tags_url";s:56:"https://api.github.com/repos/afragen/github-updater/tags";s:9:"blobs_url";s:67:"https://api.github.com/repos/afragen/github-updater/git/blobs{/sha}";s:12:"git_tags_url";s:66:"https://api.github.com/repos/afragen/github-updater/git/tags{/sha}";s:12:"git_refs_url";s:66:"https://api.github.com/repos/afragen/github-updater/git/refs{/sha}";s:9:"trees_url";s:67:"https://api.github.com/repos/afragen/github-updater/git/trees{/sha}";s:12:"statuses_url";s:66:"https://api.github.com/repos/afragen/github-updater/statuses/{sha}";s:13:"languages_url";s:61:"https://api.github.com/repos/afragen/github-updater/languages";s:14:"stargazers_url";s:62:"https://api.github.com/repos/afragen/github-updater/stargazers";s:16:"contributors_url";s:64:"https://api.github.com/repos/afragen/github-updater/contributors";s:15:"subscribers_url";s:63:"https://api.github.com/repos/afragen/github-updater/subscribers";s:16:"subscription_url";s:64:"https://api.github.com/repos/afragen/github-updater/subscription";s:11:"commits_url";s:65:"https://api.github.com/repos/afragen/github-updater/commits{/sha}";s:15:"git_commits_url";s:69:"https://api.github.com/repos/afragen/github-updater/git/commits{/sha}";s:12:"comments_url";s:69:"https://api.github.com/repos/afragen/github-updater/comments{/number}";s:17:"issue_comment_url";s:76:"https://api.github.com/repos/afragen/github-updater/issues/comments{/number}";s:12:"contents_url";s:68:"https://api.github.com/repos/afragen/github-updater/contents/{+path}";s:11:"compare_url";s:75:"https://api.github.com/repos/afragen/github-updater/compare/{base}...{head}";s:10:"merges_url";s:58:"https://api.github.com/repos/afragen/github-updater/merges";s:11:"archive_url";s:74:"https://api.github.com/repos/afragen/github-updater/{archive_format}{/ref}";s:13:"downloads_url";s:61:"https://api.github.com/repos/afragen/github-updater/downloads";s:10:"issues_url";s:67:"https://api.github.com/repos/afragen/github-updater/issues{/number}";s:9:"pulls_url";s:66:"https://api.github.com/repos/afragen/github-updater/pulls{/number}";s:14:"milestones_url";s:71:"https://api.github.com/repos/afragen/github-updater/milestones{/number}";s:17:"notifications_url";s:91:"https://api.github.com/repos/afragen/github-updater/notifications{?since,all,participating}";s:10:"labels_url";s:65:"https://api.github.com/repos/afragen/github-updater/labels{/name}";s:12:"releases_url";s:65:"https://api.github.com/repos/afragen/github-updater/releases{/id}";s:15:"deployments_url";s:63:"https://api.github.com/repos/afragen/github-updater/deployments";s:10:"created_at";s:20:"2013-07-07T20:44:47Z";s:10:"updated_at";s:20:"2016-04-25T08:29:01Z";s:9:"pushed_at";s:20:"2016-04-23T01:15:33Z";s:7:"git_url";s:43:"git://github.com/afragen/github-updater.git";s:7:"ssh_url";s:41:"git@github.com:afragen/github-updater.git";s:9:"clone_url";s:45:"https://github.com/afragen/github-updater.git";s:7:"svn_url";s:41:"https://github.com/afragen/github-updater";s:8:"homepage";s:0:"";s:4:"size";i:3984;s:16:"stargazers_count";i:1111;s:14:"watchers_count";i:1111;s:8:"language";s:3:"PHP";s:10:"has_issues";b:1;s:13:"has_downloads";b:1;s:8:"has_wiki";b:1;s:9:"has_pages";b:0;s:11:"forks_count";i:183;s:10:"mirror_url";N;s:17:"open_issues_count";i:16;s:5:"forks";i:183;s:11:"open_issues";i:16;s:8:"watchers";i:1111;s:14:"default_branch";s:7:"develop";s:5:"score";d:106.918915;}s:8:"watchers";i:0;s:5:"forks";i:0;s:11:"open_issues";i:0;s:5:"score";i:0;s:19:"requires_wp_version";s:3:"3.8";s:20:"requires_php_version";s:3:"5.3";s:13:"release_asset";b:0;}s:10:"wp-sync-db";O:8:"stdClass":40:{s:4:"type";s:13:"github_plugin";s:3:"uri";s:40:"https://github.com/wp-sync-db/wp-sync-db";s:10:"enterprise";N;s:14:"enterprise_api";N;s:5:"owner";s:10:"wp-sync-db";s:4:"repo";s:10:"wp-sync-db";s:13:"extended_repo";s:28:"github-wp-sync-db-wp-sync-db";s:6:"branch";s:6:"master";s:4:"slug";s:25:"wp-sync-db/wp-sync-db.php";s:10:"local_path";s:44:"/var/www/html/wp-content/plugins/wp-sync-db/";s:19:"local_path_extended";s:62:"/var/www/html/wp-content/plugins/github-wp-sync-db-wp-sync-db/";s:6:"author";s:9:"Sean Lang";s:4:"name";s:10:"WP Sync DB";s:13:"local_version";s:3:"1.5";s:8:"sections";a:1:{s:11:"description";s:116:"Export, push, and pull to migrate your WordPress databases. By Sean Lang.";}s:7:"private";b:1;s:7:"dot_org";b:0;s:14:"remote_version";s:3:"1.5";s:10:"newest_tag";s:5:"0.0.0";s:13:"download_link";s:65:"https://api.github.com/repos/wp-sync-db/wp-sync-db/zipball/master";s:4:"tags";a:0:{}s:8:"rollback";a:0:{}s:8:"branches";a:0:{}s:8:"requires";N;s:6:"tested";N;s:11:"donate_link";N;s:12:"contributors";a:0:{}s:10:"downloaded";i:0;s:12:"last_updated";N;s:6:"rating";i:0;s:11:"num_ratings";i:0;s:9:"transient";a:27:{s:11:"Requires WP";s:0:"";s:12:"Requires PHP";s:0:"";s:13:"Release Asset";s:0:"";s:16:"GitHub Theme URI";s:0:"";s:13:"GitHub Branch";s:0:"";s:17:"GitHub Enterprise";s:0:"";s:9:"GitHub CE";s:0:"";s:19:"Bitbucket Theme URI";s:0:"";s:16:"Bitbucket Branch";s:0:"";s:20:"Bitbucket Enterprise";s:0:"";s:12:"Bitbucket CE";s:0:"";s:16:"GitLab Theme URI";s:0:"";s:13:"GitLab Branch";s:0:"";s:17:"GitLab Enterprise";s:0:"";s:9:"GitLab CE";s:0:"";s:17:"GitHub Plugin URI";s:21:"wp-sync-db/wp-sync-db";s:20:"Bitbucket Plugin URI";s:0:"";s:17:"GitLab Plugin URI";s:0:"";s:4:"Name";s:10:"WP Sync DB";s:9:"PluginURI";s:0:"";s:7:"Version";s:3:"1.5";s:11:"Description";s:59:"Export, push, and pull to migrate your WordPress databases.";s:6:"Author";s:9:"Sean Lang";s:9:"AuthorURI";s:15:"http://slang.cx";s:10:"TextDomain";s:0:"";s:10:"DomainPath";s:0:"";s:7:"Network";s:4:"True";}s:9:"repo_meta";a:0:{}s:8:"watchers";i:0;s:5:"forks";i:0;s:11:"open_issues";i:0;s:5:"score";i:0;s:19:"requires_wp_version";s:5:"3.8.0";s:20:"requires_php_version";s:3:"5.3";s:13:"release_asset";b:0;}s:22:"wp-sync-db-media-files";O:8:"stdClass":40:{s:4:"type";s:13:"github_plugin";s:3:"uri";s:52:"https://github.com/wp-sync-db/wp-sync-db-media-files";s:10:"enterprise";N;s:14:"enterprise_api";N;s:5:"owner";s:10:"wp-sync-db";s:4:"repo";s:22:"wp-sync-db-media-files";s:13:"extended_repo";s:40:"github-wp-sync-db-wp-sync-db-media-files";s:6:"branch";s:6:"master";s:4:"slug";s:49:"wp-sync-db-media-files/wp-sync-db-media-files.php";s:10:"local_path";s:56:"/var/www/html/wp-content/plugins/wp-sync-db-media-files/";s:19:"local_path_extended";s:74:"/var/www/html/wp-content/plugins/github-wp-sync-db-wp-sync-db-media-files/";s:6:"author";s:9:"Sean Lang";s:4:"name";s:22:"WP Sync DB Media Files";s:13:"local_version";s:7:"1.1.4b1";s:8:"sections";a:1:{s:11:"description";s:125:"An extension of WP Sync DB that allows the migration of media files. By Sean Lang.";}s:7:"private";b:1;s:7:"dot_org";b:0;s:14:"remote_version";s:7:"1.1.4b1";s:10:"newest_tag";s:5:"0.0.0";s:13:"download_link";s:77:"https://api.github.com/repos/wp-sync-db/wp-sync-db-media-files/zipball/master";s:4:"tags";a:0:{}s:8:"rollback";a:0:{}s:8:"branches";a:0:{}s:8:"requires";N;s:6:"tested";N;s:11:"donate_link";N;s:12:"contributors";a:0:{}s:10:"downloaded";i:0;s:12:"last_updated";N;s:6:"rating";i:0;s:11:"num_ratings";i:0;s:9:"transient";a:27:{s:11:"Requires WP";s:0:"";s:12:"Requires PHP";s:0:"";s:13:"Release Asset";s:0:"";s:16:"GitHub Theme URI";s:0:"";s:13:"GitHub Branch";s:0:"";s:17:"GitHub Enterprise";s:0:"";s:9:"GitHub CE";s:0:"";s:19:"Bitbucket Theme URI";s:0:"";s:16:"Bitbucket Branch";s:0:"";s:20:"Bitbucket Enterprise";s:0:"";s:12:"Bitbucket CE";s:0:"";s:16:"GitLab Theme URI";s:0:"";s:13:"GitLab Branch";s:0:"";s:17:"GitLab Enterprise";s:0:"";s:9:"GitLab CE";s:0:"";s:17:"GitHub Plugin URI";s:33:"wp-sync-db/wp-sync-db-media-files";s:20:"Bitbucket Plugin URI";s:0:"";s:17:"GitLab Plugin URI";s:0:"";s:4:"Name";s:22:"WP Sync DB Media Files";s:9:"PluginURI";s:0:"";s:7:"Version";s:7:"1.1.4b1";s:11:"Description";s:68:"An extension of WP Sync DB that allows the migration of media files.";s:6:"Author";s:9:"Sean Lang";s:9:"AuthorURI";s:15:"http://slang.cx";s:10:"TextDomain";s:0:"";s:10:"DomainPath";s:0:"";s:7:"Network";s:4:"True";}s:9:"repo_meta";a:0:{}s:8:"watchers";i:0;s:5:"forks";i:0;s:11:"open_issues";i:0;s:5:"score";i:0;s:19:"requires_wp_version";s:5:"3.8.0";s:20:"requires_php_version";s:3:"5.3";s:13:"release_asset";b:0;}}s:11:"\0*\0repo_api";O:32:"Fragen\\GitHub_Updater\\GitHub_API":4:{s:11:"\0*\0response";a:1:{s:26:"wp-sync-db-media-files.php";a:27:{s:11:"Requires WP";s:0:"";s:12:"Requires PHP";s:0:"";s:13:"Release Asset";s:0:"";s:16:"GitHub Theme URI";s:0:"";s:13:"GitHub Branch";s:0:"";s:17:"GitHub Enterprise";s:0:"";s:9:"GitHub CE";s:0:"";s:19:"Bitbucket Theme URI";s:0:"";s:16:"Bitbucket Branch";s:0:"";s:20:"Bitbucket Enterprise";s:0:"";s:12:"Bitbucket CE";s:0:"";s:16:"GitLab Theme URI";s:0:"";s:13:"GitLab Branch";s:0:"";s:17:"GitLab Enterprise";s:0:"";s:9:"GitLab CE";s:0:"";s:17:"GitHub Plugin URI";s:33:"wp-sync-db/wp-sync-db-media-files";s:20:"Bitbucket Plugin URI";s:0:"";s:17:"GitLab Plugin URI";s:0:"";s:4:"Name";s:22:"WP Sync DB Media Files";s:9:"PluginURI";s:0:"";s:7:"Version";s:7:"1.1.4b1";s:11:"Description";s:68:"An extension of WP Sync DB that allows the migration of media files.";s:6:"Author";s:9:"Sean Lang";s:9:"AuthorURI";s:15:"http://slang.cx";s:10:"TextDomain";s:0:"";s:10:"DomainPath";s:0:"";s:7:"Network";s:4:"True";}}s:9:"\0*\0config";N;s:11:"\0*\0repo_api";N;s:4:"type";r:293;}s:13:"github_plugin";r:293;}', 'yes'); +INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES +(891, '_site_transient_timeout_ghu_theme', '1461717097', 'yes'), +(892, '_site_transient_ghu_theme', 'O:27:"Fragen\\GitHub_Updater\\Theme":3:{s:6:"\0*\0tag";b:0;s:9:"\0*\0config";a:0:{}s:11:"\0*\0repo_api";N;}', 'yes'), +(914, '_site_transient_timeout_browser_4ae5bfe618977ccc6bbcfbe9e32b8228', '1460660147', 'yes'), +(915, '_site_transient_browser_4ae5bfe618977ccc6bbcfbe9e32b8228', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"49.0.2623.110";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'), +(916, '_site_transient_timeout_browser_3e236b20ec78fe3b7960c0638e68fd55', '1460660566', 'yes'), +(917, '_site_transient_browser_3e236b20ec78fe3b7960c0638e68fd55', 'a:9:{s:8:"platform";s:9:"Macintosh";s:4:"name";s:6:"Safari";s:7:"version";s:3:"9.0";s:10:"update_url";s:28:"http://www.apple.com/safari/";s:7:"img_src";s:49:"http://s.wordpress.org/images/browsers/safari.png";s:11:"img_src_ssl";s:48:"https://wordpress.org/images/browsers/safari.png";s:15:"current_version";s:1:"5";s:7:"upgrade";b:0;s:8:"insecure";b:0;}', 'yes'), +(924, '_site_transient_update_plugins', 'O:8:"stdClass":4:{s:12:"last_checked";i:1461673605;s:8:"response";a:3:{s:30:"advanced-custom-fields/acf.php";O:8:"stdClass":8:{s:2:"id";s:5:"21367";s:4:"slug";s:22:"advanced-custom-fields";s:6:"plugin";s:30:"advanced-custom-fields/acf.php";s:11:"new_version";s:5:"4.4.7";s:3:"url";s:53:"https://wordpress.org/plugins/advanced-custom-fields/";s:7:"package";s:71:"https://downloads.wordpress.org/plugin/advanced-custom-fields.4.4.7.zip";s:6:"tested";s:5:"4.5.0";s:13:"compatibility";b:0;}s:19:"akismet/akismet.php";O:8:"stdClass":8:{s:2:"id";s:2:"15";s:4:"slug";s:7:"akismet";s:6:"plugin";s:19:"akismet/akismet.php";s:11:"new_version";s:6:"3.1.10";s:3:"url";s:38:"https://wordpress.org/plugins/akismet/";s:7:"package";s:57:"https://downloads.wordpress.org/plugin/akismet.3.1.10.zip";s:6:"tested";s:3:"4.5";s:13:"compatibility";b:0;}s:34:"video-background/candide-vidbg.php";O:8:"stdClass":8:{s:2:"id";s:5:"64257";s:4:"slug";s:16:"video-background";s:6:"plugin";s:34:"video-background/candide-vidbg.php";s:11:"new_version";s:5:"2.5.0";s:3:"url";s:47:"https://wordpress.org/plugins/video-background/";s:7:"package";s:65:"https://downloads.wordpress.org/plugin/video-background.2.5.0.zip";s:6:"tested";s:3:"4.5";s:13:"compatibility";b:0;}}s:12:"translations";a:0:{}s:9:"no_update";a:5:{s:47:"better-search-replace/better-search-replace.php";O:8:"stdClass":6:{s:2:"id";s:5:"56596";s:4:"slug";s:21:"better-search-replace";s:6:"plugin";s:47:"better-search-replace/better-search-replace.php";s:11:"new_version";s:5:"1.2.9";s:3:"url";s:52:"https://wordpress.org/plugins/better-search-replace/";s:7:"package";s:64:"https://downloads.wordpress.org/plugin/better-search-replace.zip";}s:27:"cas-maestro/cas-maestro.php";O:8:"stdClass":6:{s:2:"id";s:5:"49404";s:4:"slug";s:11:"cas-maestro";s:6:"plugin";s:27:"cas-maestro/cas-maestro.php";s:11:"new_version";s:5:"1.1.3";s:3:"url";s:42:"https://wordpress.org/plugins/cas-maestro/";s:7:"package";s:60:"https://downloads.wordpress.org/plugin/cas-maestro.1.1.3.zip";}s:95:"clean-and-simple-contact-form-by-meg-nicholas/clean-and-simple-contact-form-by-meg-nicholas.php";O:8:"stdClass":6:{s:2:"id";s:5:"40316";s:4:"slug";s:45:"clean-and-simple-contact-form-by-meg-nicholas";s:6:"plugin";s:95:"clean-and-simple-contact-form-by-meg-nicholas/clean-and-simple-contact-form-by-meg-nicholas.php";s:11:"new_version";s:5:"4.6.1";s:3:"url";s:76:"https://wordpress.org/plugins/clean-and-simple-contact-form-by-meg-nicholas/";s:7:"package";s:94:"https://downloads.wordpress.org/plugin/clean-and-simple-contact-form-by-meg-nicholas.4.6.1.zip";}s:43:"custom-post-type-ui/custom-post-type-ui.php";O:8:"stdClass":6:{s:2:"id";s:5:"13183";s:4:"slug";s:19:"custom-post-type-ui";s:6:"plugin";s:43:"custom-post-type-ui/custom-post-type-ui.php";s:11:"new_version";s:5:"1.3.3";s:3:"url";s:50:"https://wordpress.org/plugins/custom-post-type-ui/";s:7:"package";s:68:"https://downloads.wordpress.org/plugin/custom-post-type-ui.1.3.3.zip";}s:17:"timber/timber.php";O:8:"stdClass":6:{s:2:"id";s:4:"7500";s:4:"slug";s:6:"timber";s:6:"plugin";s:17:"timber/timber.php";s:11:"new_version";s:8:"0.8 beta";s:3:"url";s:37:"https://wordpress.org/plugins/timber/";s:7:"package";s:53:"https://downloads.wordpress.org/plugin/timber.0.8.zip";}}}', 'yes'), +(995, '_site_transient_timeout_available_translations', '1460303171', 'yes'), +(996, '_site_transient_available_translations', 'a:78:{s:2:"ar";a:8:{s:8:"language";s:2:"ar";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-07 13:09:53";s:12:"english_name";s:6:"Arabic";s:11:"native_name";s:14:"العربية";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/ar.zip";s:3:"iso";a:2:{i:1;s:2:"ar";i:2;s:3:"ara";}s:7:"strings";a:1:{s:8:"continue";s:16:"المتابعة";}}s:3:"ary";a:8:{s:8:"language";s:3:"ary";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-12 10:15:45";s:12:"english_name";s:15:"Moroccan Arabic";s:11:"native_name";s:31:"العربية المغربية";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.4.2/ary.zip";s:3:"iso";a:2:{i:1;s:2:"ar";i:3;s:3:"ary";}s:7:"strings";a:1:{s:8:"continue";s:16:"المتابعة";}}s:2:"az";a:8:{s:8:"language";s:2:"az";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-07 20:53:51";s:12:"english_name";s:11:"Azerbaijani";s:11:"native_name";s:16:"Azərbaycan dili";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/az.zip";s:3:"iso";a:2:{i:1;s:2:"az";i:2;s:3:"aze";}s:7:"strings";a:1:{s:8:"continue";s:5:"Davam";}}s:3:"azb";a:8:{s:8:"language";s:3:"azb";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-11 22:42:10";s:12:"english_name";s:17:"South Azerbaijani";s:11:"native_name";s:29:"گؤنئی آذربایجان";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.4.2/azb.zip";s:3:"iso";a:2:{i:1;s:2:"az";i:3;s:3:"azb";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"bg_BG";a:8:{s:8:"language";s:5:"bg_BG";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-08 08:50:29";s:12:"english_name";s:9:"Bulgarian";s:11:"native_name";s:18:"Български";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/bg_BG.zip";s:3:"iso";a:2:{i:1;s:2:"bg";i:2;s:3:"bul";}s:7:"strings";a:1:{s:8:"continue";s:22:"Продължение";}}s:5:"bn_BD";a:8:{s:8:"language";s:5:"bn_BD";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-08 13:17:04";s:12:"english_name";s:7:"Bengali";s:11:"native_name";s:15:"বাংলা";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/bn_BD.zip";s:3:"iso";a:1:{i:1;s:2:"bn";}s:7:"strings";a:1:{s:8:"continue";s:23:"এগিয়ে চল.";}}s:5:"bs_BA";a:8:{s:8:"language";s:5:"bs_BA";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-04 09:40:25";s:12:"english_name";s:7:"Bosnian";s:11:"native_name";s:8:"Bosanski";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/bs_BA.zip";s:3:"iso";a:2:{i:1;s:2:"bs";i:2;s:3:"bos";}s:7:"strings";a:1:{s:8:"continue";s:7:"Nastavi";}}s:2:"ca";a:8:{s:8:"language";s:2:"ca";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-04-08 07:49:01";s:12:"english_name";s:7:"Catalan";s:11:"native_name";s:7:"Català";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/ca.zip";s:3:"iso";a:2:{i:1;s:2:"ca";i:2;s:3:"cat";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continua";}}s:3:"ceb";a:8:{s:8:"language";s:3:"ceb";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-16 15:34:57";s:12:"english_name";s:7:"Cebuano";s:11:"native_name";s:7:"Cebuano";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.4.2/ceb.zip";s:3:"iso";a:2:{i:2;s:3:"ceb";i:3;s:3:"ceb";}s:7:"strings";a:1:{s:8:"continue";s:7:"Padayun";}}s:5:"cs_CZ";a:8:{s:8:"language";s:5:"cs_CZ";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-11 18:32:36";s:12:"english_name";s:5:"Czech";s:11:"native_name";s:12:"Čeština‎";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/cs_CZ.zip";s:3:"iso";a:2:{i:1;s:2:"cs";i:2;s:3:"ces";}s:7:"strings";a:1:{s:8:"continue";s:11:"Pokračovat";}}s:2:"cy";a:8:{s:8:"language";s:2:"cy";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-01-26 16:01:40";s:12:"english_name";s:5:"Welsh";s:11:"native_name";s:7:"Cymraeg";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/cy.zip";s:3:"iso";a:2:{i:1;s:2:"cy";i:2;s:3:"cym";}s:7:"strings";a:1:{s:8:"continue";s:6:"Parhau";}}s:5:"da_DK";a:8:{s:8:"language";s:5:"da_DK";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-08 22:48:20";s:12:"english_name";s:6:"Danish";s:11:"native_name";s:5:"Dansk";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/da_DK.zip";s:3:"iso";a:2:{i:1;s:2:"da";i:2;s:3:"dan";}s:7:"strings";a:1:{s:8:"continue";s:12:"Fortsæt";}}s:5:"de_CH";a:8:{s:8:"language";s:5:"de_CH";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-08 14:19:21";s:12:"english_name";s:20:"German (Switzerland)";s:11:"native_name";s:17:"Deutsch (Schweiz)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/de_CH.zip";s:3:"iso";a:1:{i:1;s:2:"de";}s:7:"strings";a:1:{s:8:"continue";s:10:"Fortfahren";}}s:12:"de_DE_formal";a:8:{s:8:"language";s:12:"de_DE_formal";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-26 16:11:56";s:12:"english_name";s:15:"German (Formal)";s:11:"native_name";s:13:"Deutsch (Sie)";s:7:"package";s:71:"https://downloads.wordpress.org/translation/core/4.4.2/de_DE_formal.zip";s:3:"iso";a:1:{i:1;s:2:"de";}s:7:"strings";a:1:{s:8:"continue";s:10:"Fortfahren";}}s:5:"de_DE";a:8:{s:8:"language";s:5:"de_DE";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-29 10:47:54";s:12:"english_name";s:6:"German";s:11:"native_name";s:7:"Deutsch";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/de_DE.zip";s:3:"iso";a:1:{i:1;s:2:"de";}s:7:"strings";a:1:{s:8:"continue";s:10:"Fortfahren";}}s:2:"el";a:8:{s:8:"language";s:2:"el";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-04-07 16:18:59";s:12:"english_name";s:5:"Greek";s:11:"native_name";s:16:"Ελληνικά";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/el.zip";s:3:"iso";a:2:{i:1;s:2:"el";i:2;s:3:"ell";}s:7:"strings";a:1:{s:8:"continue";s:16:"Συνέχεια";}}s:5:"en_AU";a:8:{s:8:"language";s:5:"en_AU";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-07 04:39:48";s:12:"english_name";s:19:"English (Australia)";s:11:"native_name";s:19:"English (Australia)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/en_AU.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_GB";a:8:{s:8:"language";s:5:"en_GB";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-01-14 21:14:29";s:12:"english_name";s:12:"English (UK)";s:11:"native_name";s:12:"English (UK)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/en_GB.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_CA";a:8:{s:8:"language";s:5:"en_CA";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-06 23:10:59";s:12:"english_name";s:16:"English (Canada)";s:11:"native_name";s:16:"English (Canada)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/en_CA.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_NZ";a:8:{s:8:"language";s:5:"en_NZ";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-08 13:34:17";s:12:"english_name";s:21:"English (New Zealand)";s:11:"native_name";s:21:"English (New Zealand)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/en_NZ.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_ZA";a:8:{s:8:"language";s:5:"en_ZA";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-15 11:52:35";s:12:"english_name";s:22:"English (South Africa)";s:11:"native_name";s:22:"English (South Africa)";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/en_ZA.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:2:"eo";a:8:{s:8:"language";s:2:"eo";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-01-25 13:07:29";s:12:"english_name";s:9:"Esperanto";s:11:"native_name";s:9:"Esperanto";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/eo.zip";s:3:"iso";a:2:{i:1;s:2:"eo";i:2;s:3:"epo";}s:7:"strings";a:1:{s:8:"continue";s:8:"Daŭrigi";}}s:5:"es_AR";a:8:{s:8:"language";s:5:"es_AR";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-23 00:46:01";s:12:"english_name";s:19:"Spanish (Argentina)";s:11:"native_name";s:21:"Español de Argentina";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/es_AR.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_ES";a:8:{s:8:"language";s:5:"es_ES";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-13 12:28:49";s:12:"english_name";s:15:"Spanish (Spain)";s:11:"native_name";s:8:"Español";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/es_ES.zip";s:3:"iso";a:1:{i:1;s:2:"es";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_GT";a:8:{s:8:"language";s:5:"es_GT";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-09 18:08:52";s:12:"english_name";s:19:"Spanish (Guatemala)";s:11:"native_name";s:21:"Español de Guatemala";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/es_GT.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_VE";a:8:{s:8:"language";s:5:"es_VE";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-01-13 06:14:13";s:12:"english_name";s:19:"Spanish (Venezuela)";s:11:"native_name";s:21:"Español de Venezuela";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/es_VE.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_CO";a:8:{s:8:"language";s:5:"es_CO";s:7:"version";s:6:"4.3-RC";s:7:"updated";s:19:"2015-08-04 06:10:33";s:12:"english_name";s:18:"Spanish (Colombia)";s:11:"native_name";s:20:"Español de Colombia";s:7:"package";s:65:"https://downloads.wordpress.org/translation/core/4.3-RC/es_CO.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_MX";a:8:{s:8:"language";s:5:"es_MX";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-07 17:35:10";s:12:"english_name";s:16:"Spanish (Mexico)";s:11:"native_name";s:19:"Español de México";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/es_MX.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_PE";a:8:{s:8:"language";s:5:"es_PE";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-01-24 15:17:36";s:12:"english_name";s:14:"Spanish (Peru)";s:11:"native_name";s:17:"Español de Perú";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/es_PE.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"es_CL";a:8:{s:8:"language";s:5:"es_CL";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-03-02 20:27:44";s:12:"english_name";s:15:"Spanish (Chile)";s:11:"native_name";s:17:"Español de Chile";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/es_CL.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;s:3:"spa";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:2:"et";a:8:{s:8:"language";s:2:"et";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-18 06:44:22";s:12:"english_name";s:8:"Estonian";s:11:"native_name";s:5:"Eesti";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/et.zip";s:3:"iso";a:2:{i:1;s:2:"et";i:2;s:3:"est";}s:7:"strings";a:1:{s:8:"continue";s:6:"Jätka";}}s:2:"eu";a:8:{s:8:"language";s:2:"eu";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-03-03 10:31:09";s:12:"english_name";s:6:"Basque";s:11:"native_name";s:7:"Euskara";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/eu.zip";s:3:"iso";a:2:{i:1;s:2:"eu";i:2;s:3:"eus";}s:7:"strings";a:1:{s:8:"continue";s:8:"Jarraitu";}}s:5:"fa_IR";a:8:{s:8:"language";s:5:"fa_IR";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-01-31 19:24:20";s:12:"english_name";s:7:"Persian";s:11:"native_name";s:10:"فارسی";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/fa_IR.zip";s:3:"iso";a:2:{i:1;s:2:"fa";i:2;s:3:"fas";}s:7:"strings";a:1:{s:8:"continue";s:10:"ادامه";}}s:2:"fi";a:8:{s:8:"language";s:2:"fi";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-23 06:49:15";s:12:"english_name";s:7:"Finnish";s:11:"native_name";s:5:"Suomi";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/fi.zip";s:3:"iso";a:2:{i:1;s:2:"fi";i:2;s:3:"fin";}s:7:"strings";a:1:{s:8:"continue";s:5:"Jatka";}}s:5:"fr_BE";a:8:{s:8:"language";s:5:"fr_BE";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-08 13:47:35";s:12:"english_name";s:16:"French (Belgium)";s:11:"native_name";s:21:"Français de Belgique";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/fr_BE.zip";s:3:"iso";a:2:{i:1;s:2:"fr";i:2;s:3:"fra";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuer";}}s:5:"fr_FR";a:8:{s:8:"language";s:5:"fr_FR";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-03-08 17:19:17";s:12:"english_name";s:15:"French (France)";s:11:"native_name";s:9:"Français";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/fr_FR.zip";s:3:"iso";a:1:{i:1;s:2:"fr";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuer";}}s:5:"fr_CA";a:8:{s:8:"language";s:5:"fr_CA";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-09 02:16:19";s:12:"english_name";s:15:"French (Canada)";s:11:"native_name";s:19:"Français du Canada";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/fr_CA.zip";s:3:"iso";a:2:{i:1;s:2:"fr";i:2;s:3:"fra";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuer";}}s:2:"gd";a:8:{s:8:"language";s:2:"gd";s:7:"version";s:5:"4.3.3";s:7:"updated";s:19:"2015-09-24 15:25:30";s:12:"english_name";s:15:"Scottish Gaelic";s:11:"native_name";s:9:"Gàidhlig";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.3.3/gd.zip";s:3:"iso";a:3:{i:1;s:2:"gd";i:2;s:3:"gla";i:3;s:3:"gla";}s:7:"strings";a:1:{s:8:"continue";s:15:"Lean air adhart";}}s:5:"gl_ES";a:8:{s:8:"language";s:5:"gl_ES";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-01-13 16:48:03";s:12:"english_name";s:8:"Galician";s:11:"native_name";s:6:"Galego";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/gl_ES.zip";s:3:"iso";a:2:{i:1;s:2:"gl";i:2;s:3:"glg";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:3:"haz";a:8:{s:8:"language";s:3:"haz";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-05 00:59:09";s:12:"english_name";s:8:"Hazaragi";s:11:"native_name";s:15:"هزاره گی";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.4.2/haz.zip";s:3:"iso";a:1:{i:3;s:3:"haz";}s:7:"strings";a:1:{s:8:"continue";s:10:"ادامه";}}s:5:"he_IL";a:8:{s:8:"language";s:5:"he_IL";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-03-16 18:59:27";s:12:"english_name";s:6:"Hebrew";s:11:"native_name";s:16:"עִבְרִית";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/he_IL.zip";s:3:"iso";a:1:{i:1;s:2:"he";}s:7:"strings";a:1:{s:8:"continue";s:12:"להמשיך";}}s:5:"hi_IN";a:8:{s:8:"language";s:5:"hi_IN";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-03-31 09:54:46";s:12:"english_name";s:5:"Hindi";s:11:"native_name";s:18:"हिन्दी";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/hi_IN.zip";s:3:"iso";a:2:{i:1;s:2:"hi";i:2;s:3:"hin";}s:7:"strings";a:1:{s:8:"continue";s:12:"जारी";}}s:2:"hr";a:8:{s:8:"language";s:2:"hr";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-03-04 08:39:26";s:12:"english_name";s:8:"Croatian";s:11:"native_name";s:8:"Hrvatski";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/hr.zip";s:3:"iso";a:2:{i:1;s:2:"hr";i:2;s:3:"hrv";}s:7:"strings";a:1:{s:8:"continue";s:7:"Nastavi";}}s:5:"hu_HU";a:8:{s:8:"language";s:5:"hu_HU";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-03 14:37:42";s:12:"english_name";s:9:"Hungarian";s:11:"native_name";s:6:"Magyar";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/hu_HU.zip";s:3:"iso";a:2:{i:1;s:2:"hu";i:2;s:3:"hun";}s:7:"strings";a:1:{s:8:"continue";s:7:"Tovább";}}s:2:"hy";a:8:{s:8:"language";s:2:"hy";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-04 07:13:54";s:12:"english_name";s:8:"Armenian";s:11:"native_name";s:14:"Հայերեն";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/hy.zip";s:3:"iso";a:2:{i:1;s:2:"hy";i:2;s:3:"hye";}s:7:"strings";a:1:{s:8:"continue";s:20:"Շարունակել";}}s:5:"id_ID";a:8:{s:8:"language";s:5:"id_ID";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-21 16:17:50";s:12:"english_name";s:10:"Indonesian";s:11:"native_name";s:16:"Bahasa Indonesia";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/id_ID.zip";s:3:"iso";a:2:{i:1;s:2:"id";i:2;s:3:"ind";}s:7:"strings";a:1:{s:8:"continue";s:9:"Lanjutkan";}}s:5:"is_IS";a:8:{s:8:"language";s:5:"is_IS";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-08 00:20:24";s:12:"english_name";s:9:"Icelandic";s:11:"native_name";s:9:"Íslenska";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/is_IS.zip";s:3:"iso";a:2:{i:1;s:2:"is";i:2;s:3:"isl";}s:7:"strings";a:1:{s:8:"continue";s:6:"Áfram";}}s:5:"it_IT";a:8:{s:8:"language";s:5:"it_IT";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-04-05 08:30:38";s:12:"english_name";s:7:"Italian";s:11:"native_name";s:8:"Italiano";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/it_IT.zip";s:3:"iso";a:2:{i:1;s:2:"it";i:2;s:3:"ita";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continua";}}s:2:"ja";a:8:{s:8:"language";s:2:"ja";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-25 13:08:14";s:12:"english_name";s:8:"Japanese";s:11:"native_name";s:9:"日本語";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/ja.zip";s:3:"iso";a:1:{i:1;s:2:"ja";}s:7:"strings";a:1:{s:8:"continue";s:9:"続ける";}}s:5:"ka_GE";a:8:{s:8:"language";s:5:"ka_GE";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-09 08:53:31";s:12:"english_name";s:8:"Georgian";s:11:"native_name";s:21:"ქართული";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/ka_GE.zip";s:3:"iso";a:2:{i:1;s:2:"ka";i:2;s:3:"kat";}s:7:"strings";a:1:{s:8:"continue";s:30:"გაგრძელება";}}s:5:"ko_KR";a:8:{s:8:"language";s:5:"ko_KR";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-24 00:12:01";s:12:"english_name";s:6:"Korean";s:11:"native_name";s:9:"한국어";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/ko_KR.zip";s:3:"iso";a:2:{i:1;s:2:"ko";i:2;s:3:"kor";}s:7:"strings";a:1:{s:8:"continue";s:6:"계속";}}s:5:"lt_LT";a:8:{s:8:"language";s:5:"lt_LT";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-08 20:07:24";s:12:"english_name";s:10:"Lithuanian";s:11:"native_name";s:15:"Lietuvių kalba";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/lt_LT.zip";s:3:"iso";a:2:{i:1;s:2:"lt";i:2;s:3:"lit";}s:7:"strings";a:1:{s:8:"continue";s:6:"Tęsti";}}s:5:"ms_MY";a:8:{s:8:"language";s:5:"ms_MY";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-01-28 05:41:39";s:12:"english_name";s:5:"Malay";s:11:"native_name";s:13:"Bahasa Melayu";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/ms_MY.zip";s:3:"iso";a:2:{i:1;s:2:"ms";i:2;s:3:"msa";}s:7:"strings";a:1:{s:8:"continue";s:8:"Teruskan";}}s:5:"my_MM";a:8:{s:8:"language";s:5:"my_MM";s:7:"version";s:6:"4.1.10";s:7:"updated";s:19:"2015-03-26 15:57:42";s:12:"english_name";s:17:"Myanmar (Burmese)";s:11:"native_name";s:15:"ဗမာစာ";s:7:"package";s:65:"https://downloads.wordpress.org/translation/core/4.1.10/my_MM.zip";s:3:"iso";a:2:{i:1;s:2:"my";i:2;s:3:"mya";}s:7:"strings";a:1:{s:8:"continue";s:54:"ဆက်လက်လုပ်ေဆာင်ပါ။";}}s:5:"nb_NO";a:8:{s:8:"language";s:5:"nb_NO";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-07 10:01:09";s:12:"english_name";s:19:"Norwegian (Bokmål)";s:11:"native_name";s:13:"Norsk bokmål";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/nb_NO.zip";s:3:"iso";a:2:{i:1;s:2:"nb";i:2;s:3:"nob";}s:7:"strings";a:1:{s:8:"continue";s:8:"Fortsett";}}s:12:"nl_NL_formal";a:8:{s:8:"language";s:12:"nl_NL_formal";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-01-20 13:35:50";s:12:"english_name";s:14:"Dutch (Formal)";s:11:"native_name";s:20:"Nederlands (Formeel)";s:7:"package";s:71:"https://downloads.wordpress.org/translation/core/4.4.2/nl_NL_formal.zip";s:3:"iso";a:2:{i:1;s:2:"nl";i:2;s:3:"nld";}s:7:"strings";a:1:{s:8:"continue";s:8:"Doorgaan";}}s:5:"nl_NL";a:8:{s:8:"language";s:5:"nl_NL";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-23 18:59:13";s:12:"english_name";s:5:"Dutch";s:11:"native_name";s:10:"Nederlands";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/nl_NL.zip";s:3:"iso";a:2:{i:1;s:2:"nl";i:2;s:3:"nld";}s:7:"strings";a:1:{s:8:"continue";s:8:"Doorgaan";}}s:5:"nn_NO";a:8:{s:8:"language";s:5:"nn_NO";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-14 12:19:44";s:12:"english_name";s:19:"Norwegian (Nynorsk)";s:11:"native_name";s:13:"Norsk nynorsk";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/nn_NO.zip";s:3:"iso";a:2:{i:1;s:2:"nn";i:2;s:3:"nno";}s:7:"strings";a:1:{s:8:"continue";s:9:"Hald fram";}}s:3:"oci";a:8:{s:8:"language";s:3:"oci";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-08 16:21:37";s:12:"english_name";s:7:"Occitan";s:11:"native_name";s:7:"Occitan";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.4.2/oci.zip";s:3:"iso";a:2:{i:1;s:2:"oc";i:2;s:3:"oci";}s:7:"strings";a:1:{s:8:"continue";s:9:"Contunhar";}}s:5:"pl_PL";a:8:{s:8:"language";s:5:"pl_PL";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-03-24 15:31:29";s:12:"english_name";s:6:"Polish";s:11:"native_name";s:6:"Polski";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/pl_PL.zip";s:3:"iso";a:2:{i:1;s:2:"pl";i:2;s:3:"pol";}s:7:"strings";a:1:{s:8:"continue";s:9:"Kontynuuj";}}s:2:"ps";a:8:{s:8:"language";s:2:"ps";s:7:"version";s:6:"4.1.10";s:7:"updated";s:19:"2015-03-29 22:19:48";s:12:"english_name";s:6:"Pashto";s:11:"native_name";s:8:"پښتو";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1.10/ps.zip";s:3:"iso";a:2:{i:1;s:2:"ps";i:2;s:3:"pus";}s:7:"strings";a:1:{s:8:"continue";s:8:"دوام";}}s:5:"pt_BR";a:8:{s:8:"language";s:5:"pt_BR";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-03-03 17:32:29";s:12:"english_name";s:19:"Portuguese (Brazil)";s:11:"native_name";s:20:"Português do Brasil";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/pt_BR.zip";s:3:"iso";a:2:{i:1;s:2:"pt";i:2;s:3:"por";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"pt_PT";a:8:{s:8:"language";s:5:"pt_PT";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-04-07 13:40:53";s:12:"english_name";s:21:"Portuguese (Portugal)";s:11:"native_name";s:10:"Português";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/pt_PT.zip";s:3:"iso";a:1:{i:1;s:2:"pt";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"ro_RO";a:8:{s:8:"language";s:5:"ro_RO";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-03-31 14:58:13";s:12:"english_name";s:8:"Romanian";s:11:"native_name";s:8:"Română";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/ro_RO.zip";s:3:"iso";a:2:{i:1;s:2:"ro";i:2;s:3:"ron";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuă";}}s:5:"ru_RU";a:8:{s:8:"language";s:5:"ru_RU";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-03-21 18:23:26";s:12:"english_name";s:7:"Russian";s:11:"native_name";s:14:"Русский";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/ru_RU.zip";s:3:"iso";a:2:{i:1;s:2:"ru";i:2;s:3:"rus";}s:7:"strings";a:1:{s:8:"continue";s:20:"Продолжить";}}s:5:"sk_SK";a:8:{s:8:"language";s:5:"sk_SK";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-26 11:29:13";s:12:"english_name";s:6:"Slovak";s:11:"native_name";s:11:"Slovenčina";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/sk_SK.zip";s:3:"iso";a:2:{i:1;s:2:"sk";i:2;s:3:"slk";}s:7:"strings";a:1:{s:8:"continue";s:12:"Pokračovať";}}s:5:"sl_SI";a:8:{s:8:"language";s:5:"sl_SI";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-11-26 00:00:18";s:12:"english_name";s:9:"Slovenian";s:11:"native_name";s:13:"Slovenščina";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/sl_SI.zip";s:3:"iso";a:2:{i:1;s:2:"sl";i:2;s:3:"slv";}s:7:"strings";a:1:{s:8:"continue";s:10:"Nadaljujte";}}s:2:"sq";a:8:{s:8:"language";s:2:"sq";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-02-23 10:30:30";s:12:"english_name";s:8:"Albanian";s:11:"native_name";s:5:"Shqip";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/sq.zip";s:3:"iso";a:2:{i:1;s:2:"sq";i:2;s:3:"sqi";}s:7:"strings";a:1:{s:8:"continue";s:6:"Vazhdo";}}s:5:"sr_RS";a:8:{s:8:"language";s:5:"sr_RS";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-09 09:09:51";s:12:"english_name";s:7:"Serbian";s:11:"native_name";s:23:"Српски језик";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/sr_RS.zip";s:3:"iso";a:2:{i:1;s:2:"sr";i:2;s:3:"srp";}s:7:"strings";a:1:{s:8:"continue";s:14:"Настави";}}s:5:"sv_SE";a:8:{s:8:"language";s:5:"sv_SE";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-08 23:28:56";s:12:"english_name";s:7:"Swedish";s:11:"native_name";s:7:"Svenska";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/sv_SE.zip";s:3:"iso";a:2:{i:1;s:2:"sv";i:2;s:3:"swe";}s:7:"strings";a:1:{s:8:"continue";s:9:"Fortsätt";}}s:2:"th";a:8:{s:8:"language";s:2:"th";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-08 03:22:55";s:12:"english_name";s:4:"Thai";s:11:"native_name";s:9:"ไทย";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/th.zip";s:3:"iso";a:2:{i:1;s:2:"th";i:2;s:3:"tha";}s:7:"strings";a:1:{s:8:"continue";s:15:"ต่อไป";}}s:2:"tl";a:8:{s:8:"language";s:2:"tl";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-11-27 15:51:36";s:12:"english_name";s:7:"Tagalog";s:11:"native_name";s:7:"Tagalog";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/tl.zip";s:3:"iso";a:2:{i:1;s:2:"tl";i:2;s:3:"tgl";}s:7:"strings";a:1:{s:8:"continue";s:10:"Magpatuloy";}}s:5:"tr_TR";a:8:{s:8:"language";s:5:"tr_TR";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-17 23:12:27";s:12:"english_name";s:7:"Turkish";s:11:"native_name";s:8:"Türkçe";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/tr_TR.zip";s:3:"iso";a:2:{i:1;s:2:"tr";i:2;s:3:"tur";}s:7:"strings";a:1:{s:8:"continue";s:5:"Devam";}}s:5:"ug_CN";a:8:{s:8:"language";s:5:"ug_CN";s:7:"version";s:6:"4.1.10";s:7:"updated";s:19:"2015-03-26 16:45:38";s:12:"english_name";s:6:"Uighur";s:11:"native_name";s:9:"Uyƣurqə";s:7:"package";s:65:"https://downloads.wordpress.org/translation/core/4.1.10/ug_CN.zip";s:3:"iso";a:2:{i:1;s:2:"ug";i:2;s:3:"uig";}s:7:"strings";a:1:{s:8:"continue";s:26:"داۋاملاشتۇرۇش";}}s:2:"uk";a:8:{s:8:"language";s:2:"uk";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2016-01-03 22:04:41";s:12:"english_name";s:9:"Ukrainian";s:11:"native_name";s:20:"Українська";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/uk.zip";s:3:"iso";a:2:{i:1;s:2:"uk";i:2;s:3:"ukr";}s:7:"strings";a:1:{s:8:"continue";s:20:"Продовжити";}}s:2:"vi";a:8:{s:8:"language";s:2:"vi";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-09 01:01:25";s:12:"english_name";s:10:"Vietnamese";s:11:"native_name";s:14:"Tiếng Việt";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.4.2/vi.zip";s:3:"iso";a:2:{i:1;s:2:"vi";i:2;s:3:"vie";}s:7:"strings";a:1:{s:8:"continue";s:12:"Tiếp tục";}}s:5:"zh_TW";a:8:{s:8:"language";s:5:"zh_TW";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-11 18:51:41";s:12:"english_name";s:16:"Chinese (Taiwan)";s:11:"native_name";s:12:"繁體中文";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/zh_TW.zip";s:3:"iso";a:2:{i:1;s:2:"zh";i:2;s:3:"zho";}s:7:"strings";a:1:{s:8:"continue";s:6:"繼續";}}s:5:"zh_CN";a:8:{s:8:"language";s:5:"zh_CN";s:7:"version";s:5:"4.4.2";s:7:"updated";s:19:"2015-12-12 22:55:08";s:12:"english_name";s:15:"Chinese (China)";s:11:"native_name";s:12:"简体中文";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.4.2/zh_CN.zip";s:3:"iso";a:2:{i:1;s:2:"zh";i:2;s:3:"zho";}s:7:"strings";a:1:{s:8:"continue";s:6:"继续";}}}', 'yes'), +(997, 'semester_6_start_date', '20140825', 'no'), +(998, '_semester_6_start_date', 'field_570a4acb61a7e', 'no'), +(999, 'semester_4_start_date', '20150831', 'no'), +(1000, '_semester_4_start_date', 'field_570a4acb61a7e', 'no'), +(1001, 'semester_12_start_date', '20160829', 'no'), +(1002, '_semester_12_start_date', 'field_570a4acb61a7e', 'no'), +(1003, 'semester_7_start_date', '20140121', 'no'), +(1004, '_semester_7_start_date', 'field_570a4acb61a7e', 'no'), +(1005, 'semester_5_start_date', '20150120', 'no'), +(1006, '_semester_5_start_date', 'field_570a4acb61a7e', 'no'), +(1007, 'semester_3_start_date', '20160119', 'no'), +(1008, '_semester_3_start_date', 'field_570a4acb61a7e', 'no'), +(1059, '_site_transient_timeout_ghu-b48c4d80b38c914d7d06c0eb6d7b83ca', '1460537815', 'yes'); +INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES +(1060, '_site_transient_ghu-b48c4d80b38c914d7d06c0eb6d7b83ca', 'a:5:{s:7:"headers";a:5:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Tue, 12 Apr 2016 20:56:55 GMT";s:12:"content-type";s:24:"text/plain;charset=UTF-8";s:10:"connection";s:5:"close";s:15:"x-frame-options";s:10:"SAMEORIGIN";}s:4:"body";s:17203:"O:8:"stdClass":21:{s:4:"name";s:7:"Akismet";s:4:"slug";s:7:"akismet";s:7:"version";s:6:"3.1.10";s:6:"author";s:65:"Automattic";s:14:"author_profile";s:35:"https://profiles.wordpress.org/matt";s:12:"contributors";a:11:{s:4:"matt";s:35:"https://profiles.wordpress.org/matt";s:4:"ryan";s:35:"https://profiles.wordpress.org/ryan";s:4:"andy";s:35:"https://profiles.wordpress.org/andy";s:8:"mdawaffe";s:39:"https://profiles.wordpress.org/mdawaffe";s:10:"tellyworth";s:41:"https://profiles.wordpress.org/tellyworth";s:11:"josephscott";s:42:"https://profiles.wordpress.org/josephscott";s:9:"lessbloat";s:40:"https://profiles.wordpress.org/lessbloat";s:6:"eoigal";s:37:"https://profiles.wordpress.org/eoigal";s:6:"cfinke";s:37:"https://profiles.wordpress.org/cfinke";s:10:"automattic";s:41:"https://profiles.wordpress.org/automattic";s:3:"jgs";s:34:"https://profiles.wordpress.org/jgs";}s:8:"requires";s:3:"3.2";s:6:"tested";s:3:"4.5";s:13:"compatibility";a:1:{s:5:"4.4.2";a:3:{i:0;i:100;i:1;i:6;i:2;i:6;}}s:6:"rating";d:96;s:11:"num_ratings";s:3:"497";s:7:"ratings";a:5:{i:5;s:3:"454";i:4;s:2:"15";i:3;s:1:"6";i:2;s:1:"3";i:1;s:2:"19";}s:10:"downloaded";i:47085697;s:12:"last_updated";s:21:"2016-04-01 4:30pm GMT";s:5:"added";s:10:"2005-10-20";s:8:"homepage";s:19:"http://akismet.com/";s:8:"sections";a:3:{s:11:"description";s:969:"

Akismet checks your comments against the Akismet Web service to see if they look like spam or not and lets you review the spam it catches under your blog''s "Comments" admin screen.

\n\n

Major features in Akismet include:

\n\n\n\n

PS: You''ll need an Akismet.com API key to use it. Keys are free for personal blogs; paid subscriptions are available for businesses and commercial sites.

";s:12:"installation";s:164:"

Upload the Akismet plugin to your blog, Activate it, then enter your Akismet.com API key.

\n\n

1, 2, 3: You''re done!

";s:9:"changelog";s:14045:"

3.1.10

\n\n

Release Date - 1 April 2016

\n\n\n\n

3.1.9

\n\n

Release Date - 28 March 2016

\n\n\n\n

3.1.8

\n\n

Release Date - 4 March 2016

\n\n\n\n

3.1.7

\n\n

Release Date - 4 January 2016

\n\n\n\n

3.1.6

\n\n

Release Date - 14 December 2015

\n\n\n\n

3.1.5

\n\n

Release Date - 13 October 2015

\n\n\n\n

3.1.4

\n\n

Release Date - 24 September 2015

\n\n\n\n

3.1.3

\n\n

Release Date - 6 July 2015

\n\n\n\n

3.1.2

\n\n

Release Date - 7 June 2015

\n\n\n\n

3.1.1

\n\n

Release Date - 17th March, 2015

\n\n\n\n

3.1

\n\n

Release Date - 11th March, 2015

\n\n\n\n

3.0.4

\n\n

Release Date - 11th December, 2014

\n\n\n\n

3.0.3

\n\n

Release Date - 3rd November, 2014

\n\n\n\n

3.0.2

\n\n

Release Date - 18th August, 2014

\n\n\n\n

3.0.1

\n\n

Release Date - 9th July, 2014

\n\n\n\n

3.0.0

\n\n

Release Date - 15th April, 2014

\n\n\n\n

2.6.0

\n\n

Release Date - 18th March, 2014

\n\n\n\n

2.5.9

\n\n

Release Date - 1st August, 2013

\n\n\n\n

2.5.8

\n\n

Release Date - 20th January, 2013

\n\n\n\n

2.5.7

\n\n

Release Date - 13th December, 2012

\n\n\n\n

2.5.6

\n\n

Release Date - 26th April, 2012

\n\n\n\n

2.5.5

\n\n

Release Date - 11th January, 2012

\n\n\n\n

2.5.4

\n\n

Release Date - 5th January, 2012

\n\n\n\n

2.5.3

\n\n

Release Date - 8th Febuary, 2011

\n\n\n\n

2.5.2

\n\n

Release Date - 14th January, 2011

\n\n\n\n

2.5.1

\n\n

Release Date - 17th December, 2010

\n\n\n\n

2.5.0

\n\n

Release Date - 7th December, 2010

\n\n\n\n

2.4.0

\n\n

Release Date - 23rd August, 2010

\n\n\n\n

2.3.0

\n\n

Release Date - 5th June, 2010

\n\n\n\n

2.2.9

\n\n

Release Date - 2nd June, 2010

\n\n\n\n

2.2.8

\n\n

Release Date - 27th May, 2010

\n\n\n\n

2.2.7

\n\n

Release Date - 17th December, 2009

\n\n\n\n

2.2.6

\n\n

Release Date - 20th July, 2009

\n\n\n\n

2.2.5

\n\n

Release Date - 13th July, 2009

\n\n\n\n

2.2.4

\n\n

Release Date - 3rd June, 2009

\n\n";}s:17:"short_description";s:98:"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.";s:13:"download_link";s:57:"https://downloads.wordpress.org/plugin/akismet.3.1.10.zip";s:4:"tags";a:9:{s:7:"akismet";s:7:"Akismet";s:9:"anti-spam";s:9:"anti-spam";s:8:"antispam";s:8:"antispam";s:18:"comment-moderation";s:18:"comment moderation";s:12:"comment-spam";s:12:"comment spam";s:8:"comments";s:8:"comments";s:17:"contact-form-spam";s:17:"contact form spam";s:4:"spam";s:4:"spam";s:13:"spam-comments";s:13:"spam comments";}s:11:"donate_link";s:0:"";}";s:8:"response";a:2:{s:4:"code";i:200;s:7:"message";s:2:"OK";}s:7:"cookies";a:0:{}s:8:"filename";N;}', 'yes'), +(1101, 'service_children', 'a:0:{}', 'yes'), +(1179, '_site_transient_timeout_browser_bbaafeb76230ce4c29dc3a3aa0ce798d', '1461777755', 'yes'), +(1180, '_site_transient_browser_bbaafeb76230ce4c29dc3a3aa0ce798d', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"49.0.2623.112";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'), +(1213, '_site_transient_timeout_browser_781f28764725b80e6d143a985ebb2806', '1461864652', 'yes'), +(1214, '_site_transient_browser_781f28764725b80e6d143a985ebb2806', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"49.0.2623.112";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'), +(1302, '_site_transient_timeout_ghu-ad78493953948f77a685116f7e9e605f', '1461696069', 'yes'); +INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES +(1303, '_site_transient_ghu-ad78493953948f77a685116f7e9e605f', 'a:6:{s:18:"github-updater.php";a:27:{s:11:"Requires WP";s:3:"3.8";s:12:"Requires PHP";s:3:"5.3";s:13:"Release Asset";s:0:"";s:16:"GitHub Theme URI";s:0:"";s:13:"GitHub Branch";s:6:"master";s:17:"GitHub Enterprise";s:0:"";s:9:"GitHub CE";s:0:"";s:19:"Bitbucket Theme URI";s:0:"";s:16:"Bitbucket Branch";s:0:"";s:20:"Bitbucket Enterprise";s:0:"";s:12:"Bitbucket CE";s:0:"";s:16:"GitLab Theme URI";s:0:"";s:13:"GitLab Branch";s:0:"";s:17:"GitLab Enterprise";s:0:"";s:9:"GitLab CE";s:0:"";s:17:"GitHub Plugin URI";s:41:"https://github.com/afragen/github-updater";s:20:"Bitbucket Plugin URI";s:0:"";s:17:"GitLab Plugin URI";s:0:"";s:4:"Name";s:14:"GitHub Updater";s:9:"PluginURI";s:41:"https://github.com/afragen/github-updater";s:7:"Version";s:5:"5.4.1";s:11:"Description";s:164:"A plugin to automatically update GitHub, Bitbucket, or GitLab hosted plugins and themes. It also allows for remote installation of plugins or themes into WordPress.";s:6:"Author";s:11:"Andy Fragen";s:9:"AuthorURI";s:0:"";s:10:"TextDomain";s:14:"github-updater";s:10:"DomainPath";s:10:"/languages";s:7:"Network";s:4:"true";}s:4:"meta";O:8:"stdClass":3:{s:11:"total_count";i:5;s:18:"incomplete_results";b:0;s:5:"items";a:5:{i:0;O:8:"stdClass":69:{s:2:"id";i:11239863;s:4:"name";s:14:"github-updater";s:9:"full_name";s:22:"afragen/github-updater";s:5:"owner";O:8:"stdClass":17:{s:5:"login";s:7:"afragen";s:2:"id";i:1296790;s:10:"avatar_url";s:51:"https://avatars.githubusercontent.com/u/1296790?v=3";s:11:"gravatar_id";s:0:"";s:3:"url";s:36:"https://api.github.com/users/afragen";s:8:"html_url";s:26:"https://github.com/afragen";s:13:"followers_url";s:46:"https://api.github.com/users/afragen/followers";s:13:"following_url";s:59:"https://api.github.com/users/afragen/following{/other_user}";s:9:"gists_url";s:52:"https://api.github.com/users/afragen/gists{/gist_id}";s:11:"starred_url";s:59:"https://api.github.com/users/afragen/starred{/owner}{/repo}";s:17:"subscriptions_url";s:50:"https://api.github.com/users/afragen/subscriptions";s:17:"organizations_url";s:41:"https://api.github.com/users/afragen/orgs";s:9:"repos_url";s:42:"https://api.github.com/users/afragen/repos";s:10:"events_url";s:53:"https://api.github.com/users/afragen/events{/privacy}";s:19:"received_events_url";s:52:"https://api.github.com/users/afragen/received_events";s:4:"type";s:4:"User";s:10:"site_admin";b:0;}s:7:"private";b:0;s:8:"html_url";s:41:"https://github.com/afragen/github-updater";s:11:"description";s:82:"This WP plugin will update GitHub, Bitbucket, and GitLab hosted plugins and themes";s:4:"fork";b:0;s:3:"url";s:51:"https://api.github.com/repos/afragen/github-updater";s:9:"forks_url";s:57:"https://api.github.com/repos/afragen/github-updater/forks";s:8:"keys_url";s:65:"https://api.github.com/repos/afragen/github-updater/keys{/key_id}";s:17:"collaborators_url";s:80:"https://api.github.com/repos/afragen/github-updater/collaborators{/collaborator}";s:9:"teams_url";s:57:"https://api.github.com/repos/afragen/github-updater/teams";s:9:"hooks_url";s:57:"https://api.github.com/repos/afragen/github-updater/hooks";s:16:"issue_events_url";s:74:"https://api.github.com/repos/afragen/github-updater/issues/events{/number}";s:10:"events_url";s:58:"https://api.github.com/repos/afragen/github-updater/events";s:13:"assignees_url";s:68:"https://api.github.com/repos/afragen/github-updater/assignees{/user}";s:12:"branches_url";s:69:"https://api.github.com/repos/afragen/github-updater/branches{/branch}";s:8:"tags_url";s:56:"https://api.github.com/repos/afragen/github-updater/tags";s:9:"blobs_url";s:67:"https://api.github.com/repos/afragen/github-updater/git/blobs{/sha}";s:12:"git_tags_url";s:66:"https://api.github.com/repos/afragen/github-updater/git/tags{/sha}";s:12:"git_refs_url";s:66:"https://api.github.com/repos/afragen/github-updater/git/refs{/sha}";s:9:"trees_url";s:67:"https://api.github.com/repos/afragen/github-updater/git/trees{/sha}";s:12:"statuses_url";s:66:"https://api.github.com/repos/afragen/github-updater/statuses/{sha}";s:13:"languages_url";s:61:"https://api.github.com/repos/afragen/github-updater/languages";s:14:"stargazers_url";s:62:"https://api.github.com/repos/afragen/github-updater/stargazers";s:16:"contributors_url";s:64:"https://api.github.com/repos/afragen/github-updater/contributors";s:15:"subscribers_url";s:63:"https://api.github.com/repos/afragen/github-updater/subscribers";s:16:"subscription_url";s:64:"https://api.github.com/repos/afragen/github-updater/subscription";s:11:"commits_url";s:65:"https://api.github.com/repos/afragen/github-updater/commits{/sha}";s:15:"git_commits_url";s:69:"https://api.github.com/repos/afragen/github-updater/git/commits{/sha}";s:12:"comments_url";s:69:"https://api.github.com/repos/afragen/github-updater/comments{/number}";s:17:"issue_comment_url";s:76:"https://api.github.com/repos/afragen/github-updater/issues/comments{/number}";s:12:"contents_url";s:68:"https://api.github.com/repos/afragen/github-updater/contents/{+path}";s:11:"compare_url";s:75:"https://api.github.com/repos/afragen/github-updater/compare/{base}...{head}";s:10:"merges_url";s:58:"https://api.github.com/repos/afragen/github-updater/merges";s:11:"archive_url";s:74:"https://api.github.com/repos/afragen/github-updater/{archive_format}{/ref}";s:13:"downloads_url";s:61:"https://api.github.com/repos/afragen/github-updater/downloads";s:10:"issues_url";s:67:"https://api.github.com/repos/afragen/github-updater/issues{/number}";s:9:"pulls_url";s:66:"https://api.github.com/repos/afragen/github-updater/pulls{/number}";s:14:"milestones_url";s:71:"https://api.github.com/repos/afragen/github-updater/milestones{/number}";s:17:"notifications_url";s:91:"https://api.github.com/repos/afragen/github-updater/notifications{?since,all,participating}";s:10:"labels_url";s:65:"https://api.github.com/repos/afragen/github-updater/labels{/name}";s:12:"releases_url";s:65:"https://api.github.com/repos/afragen/github-updater/releases{/id}";s:15:"deployments_url";s:63:"https://api.github.com/repos/afragen/github-updater/deployments";s:10:"created_at";s:20:"2013-07-07T20:44:47Z";s:10:"updated_at";s:20:"2016-04-25T08:29:01Z";s:9:"pushed_at";s:20:"2016-04-23T01:15:33Z";s:7:"git_url";s:43:"git://github.com/afragen/github-updater.git";s:7:"ssh_url";s:41:"git@github.com:afragen/github-updater.git";s:9:"clone_url";s:45:"https://github.com/afragen/github-updater.git";s:7:"svn_url";s:41:"https://github.com/afragen/github-updater";s:8:"homepage";s:0:"";s:4:"size";i:3984;s:16:"stargazers_count";i:1111;s:14:"watchers_count";i:1111;s:8:"language";s:3:"PHP";s:10:"has_issues";b:1;s:13:"has_downloads";b:1;s:8:"has_wiki";b:1;s:9:"has_pages";b:0;s:11:"forks_count";i:183;s:10:"mirror_url";N;s:17:"open_issues_count";i:16;s:5:"forks";i:183;s:11:"open_issues";i:16;s:8:"watchers";i:1111;s:14:"default_branch";s:7:"develop";s:5:"score";d:106.918915;}i:1;O:8:"stdClass":69:{s:2:"id";i:10985470;s:4:"name";s:20:"github-theme-updater";s:9:"full_name";s:28:"afragen/github-theme-updater";s:5:"owner";O:8:"stdClass":17:{s:5:"login";s:7:"afragen";s:2:"id";i:1296790;s:10:"avatar_url";s:51:"https://avatars.githubusercontent.com/u/1296790?v=3";s:11:"gravatar_id";s:0:"";s:3:"url";s:36:"https://api.github.com/users/afragen";s:8:"html_url";s:26:"https://github.com/afragen";s:13:"followers_url";s:46:"https://api.github.com/users/afragen/followers";s:13:"following_url";s:59:"https://api.github.com/users/afragen/following{/other_user}";s:9:"gists_url";s:52:"https://api.github.com/users/afragen/gists{/gist_id}";s:11:"starred_url";s:59:"https://api.github.com/users/afragen/starred{/owner}{/repo}";s:17:"subscriptions_url";s:50:"https://api.github.com/users/afragen/subscriptions";s:17:"organizations_url";s:41:"https://api.github.com/users/afragen/orgs";s:9:"repos_url";s:42:"https://api.github.com/users/afragen/repos";s:10:"events_url";s:53:"https://api.github.com/users/afragen/events{/privacy}";s:19:"received_events_url";s:52:"https://api.github.com/users/afragen/received_events";s:4:"type";s:4:"User";s:10:"site_admin";b:0;}s:7:"private";b:0;s:8:"html_url";s:47:"https://github.com/afragen/github-theme-updater";s:11:"description";s:102:"Simple updater for GitHub based WordPress themes. This is now legacy. Refer to afragen/github-updater.";s:4:"fork";b:0;s:3:"url";s:57:"https://api.github.com/repos/afragen/github-theme-updater";s:9:"forks_url";s:63:"https://api.github.com/repos/afragen/github-theme-updater/forks";s:8:"keys_url";s:71:"https://api.github.com/repos/afragen/github-theme-updater/keys{/key_id}";s:17:"collaborators_url";s:86:"https://api.github.com/repos/afragen/github-theme-updater/collaborators{/collaborator}";s:9:"teams_url";s:63:"https://api.github.com/repos/afragen/github-theme-updater/teams";s:9:"hooks_url";s:63:"https://api.github.com/repos/afragen/github-theme-updater/hooks";s:16:"issue_events_url";s:80:"https://api.github.com/repos/afragen/github-theme-updater/issues/events{/number}";s:10:"events_url";s:64:"https://api.github.com/repos/afragen/github-theme-updater/events";s:13:"assignees_url";s:74:"https://api.github.com/repos/afragen/github-theme-updater/assignees{/user}";s:12:"branches_url";s:75:"https://api.github.com/repos/afragen/github-theme-updater/branches{/branch}";s:8:"tags_url";s:62:"https://api.github.com/repos/afragen/github-theme-updater/tags";s:9:"blobs_url";s:73:"https://api.github.com/repos/afragen/github-theme-updater/git/blobs{/sha}";s:12:"git_tags_url";s:72:"https://api.github.com/repos/afragen/github-theme-updater/git/tags{/sha}";s:12:"git_refs_url";s:72:"https://api.github.com/repos/afragen/github-theme-updater/git/refs{/sha}";s:9:"trees_url";s:73:"https://api.github.com/repos/afragen/github-theme-updater/git/trees{/sha}";s:12:"statuses_url";s:72:"https://api.github.com/repos/afragen/github-theme-updater/statuses/{sha}";s:13:"languages_url";s:67:"https://api.github.com/repos/afragen/github-theme-updater/languages";s:14:"stargazers_url";s:68:"https://api.github.com/repos/afragen/github-theme-updater/stargazers";s:16:"contributors_url";s:70:"https://api.github.com/repos/afragen/github-theme-updater/contributors";s:15:"subscribers_url";s:69:"https://api.github.com/repos/afragen/github-theme-updater/subscribers";s:16:"subscription_url";s:70:"https://api.github.com/repos/afragen/github-theme-updater/subscription";s:11:"commits_url";s:71:"https://api.github.com/repos/afragen/github-theme-updater/commits{/sha}";s:15:"git_commits_url";s:75:"https://api.github.com/repos/afragen/github-theme-updater/git/commits{/sha}";s:12:"comments_url";s:75:"https://api.github.com/repos/afragen/github-theme-updater/comments{/number}";s:17:"issue_comment_url";s:82:"https://api.github.com/repos/afragen/github-theme-updater/issues/comments{/number}";s:12:"contents_url";s:74:"https://api.github.com/repos/afragen/github-theme-updater/contents/{+path}";s:11:"compare_url";s:81:"https://api.github.com/repos/afragen/github-theme-updater/compare/{base}...{head}";s:10:"merges_url";s:64:"https://api.github.com/repos/afragen/github-theme-updater/merges";s:11:"archive_url";s:80:"https://api.github.com/repos/afragen/github-theme-updater/{archive_format}{/ref}";s:13:"downloads_url";s:67:"https://api.github.com/repos/afragen/github-theme-updater/downloads";s:10:"issues_url";s:73:"https://api.github.com/repos/afragen/github-theme-updater/issues{/number}";s:9:"pulls_url";s:72:"https://api.github.com/repos/afragen/github-theme-updater/pulls{/number}";s:14:"milestones_url";s:77:"https://api.github.com/repos/afragen/github-theme-updater/milestones{/number}";s:17:"notifications_url";s:97:"https://api.github.com/repos/afragen/github-theme-updater/notifications{?since,all,participating}";s:10:"labels_url";s:71:"https://api.github.com/repos/afragen/github-theme-updater/labels{/name}";s:12:"releases_url";s:71:"https://api.github.com/repos/afragen/github-theme-updater/releases{/id}";s:15:"deployments_url";s:69:"https://api.github.com/repos/afragen/github-theme-updater/deployments";s:10:"created_at";s:20:"2013-06-27T02:47:21Z";s:10:"updated_at";s:20:"2016-03-21T17:41:52Z";s:9:"pushed_at";s:20:"2013-07-14T16:24:54Z";s:7:"git_url";s:49:"git://github.com/afragen/github-theme-updater.git";s:7:"ssh_url";s:47:"git@github.com:afragen/github-theme-updater.git";s:9:"clone_url";s:51:"https://github.com/afragen/github-theme-updater.git";s:7:"svn_url";s:47:"https://github.com/afragen/github-theme-updater";s:8:"homepage";s:0:"";s:4:"size";i:172;s:16:"stargazers_count";i:8;s:14:"watchers_count";i:8;s:8:"language";s:3:"PHP";s:10:"has_issues";b:1;s:13:"has_downloads";b:1;s:8:"has_wiki";b:1;s:9:"has_pages";b:0;s:11:"forks_count";i:2;s:10:"mirror_url";N;s:17:"open_issues_count";i:0;s:5:"forks";i:2;s:11:"open_issues";i:0;s:8:"watchers";i:8;s:14:"default_branch";s:6:"master";s:5:"score";d:9.8216029999999996;}i:2;O:8:"stdClass":69:{s:2:"id";i:47467796;s:4:"name";s:27:"github-updater-translations";s:9:"full_name";s:35:"afragen/github-updater-translations";s:5:"owner";O:8:"stdClass":17:{s:5:"login";s:7:"afragen";s:2:"id";i:1296790;s:10:"avatar_url";s:51:"https://avatars.githubusercontent.com/u/1296790?v=3";s:11:"gravatar_id";s:0:"";s:3:"url";s:36:"https://api.github.com/users/afragen";s:8:"html_url";s:26:"https://github.com/afragen";s:13:"followers_url";s:46:"https://api.github.com/users/afragen/followers";s:13:"following_url";s:59:"https://api.github.com/users/afragen/following{/other_user}";s:9:"gists_url";s:52:"https://api.github.com/users/afragen/gists{/gist_id}";s:11:"starred_url";s:59:"https://api.github.com/users/afragen/starred{/owner}{/repo}";s:17:"subscriptions_url";s:50:"https://api.github.com/users/afragen/subscriptions";s:17:"organizations_url";s:41:"https://api.github.com/users/afragen/orgs";s:9:"repos_url";s:42:"https://api.github.com/users/afragen/repos";s:10:"events_url";s:53:"https://api.github.com/users/afragen/events{/privacy}";s:19:"received_events_url";s:52:"https://api.github.com/users/afragen/received_events";s:4:"type";s:4:"User";s:10:"site_admin";b:0;}s:7:"private";b:0;s:8:"html_url";s:54:"https://github.com/afragen/github-updater-translations";s:11:"description";s:42:"Translations for the GitHub Updater plugin";s:4:"fork";b:0;s:3:"url";s:64:"https://api.github.com/repos/afragen/github-updater-translations";s:9:"forks_url";s:70:"https://api.github.com/repos/afragen/github-updater-translations/forks";s:8:"keys_url";s:78:"https://api.github.com/repos/afragen/github-updater-translations/keys{/key_id}";s:17:"collaborators_url";s:93:"https://api.github.com/repos/afragen/github-updater-translations/collaborators{/collaborator}";s:9:"teams_url";s:70:"https://api.github.com/repos/afragen/github-updater-translations/teams";s:9:"hooks_url";s:70:"https://api.github.com/repos/afragen/github-updater-translations/hooks";s:16:"issue_events_url";s:87:"https://api.github.com/repos/afragen/github-updater-translations/issues/events{/number}";s:10:"events_url";s:71:"https://api.github.com/repos/afragen/github-updater-translations/events";s:13:"assignees_url";s:81:"https://api.github.com/repos/afragen/github-updater-translations/assignees{/user}";s:12:"branches_url";s:82:"https://api.github.com/repos/afragen/github-updater-translations/branches{/branch}";s:8:"tags_url";s:69:"https://api.github.com/repos/afragen/github-updater-translations/tags";s:9:"blobs_url";s:80:"https://api.github.com/repos/afragen/github-updater-translations/git/blobs{/sha}";s:12:"git_tags_url";s:79:"https://api.github.com/repos/afragen/github-updater-translations/git/tags{/sha}";s:12:"git_refs_url";s:79:"https://api.github.com/repos/afragen/github-updater-translations/git/refs{/sha}";s:9:"trees_url";s:80:"https://api.github.com/repos/afragen/github-updater-translations/git/trees{/sha}";s:12:"statuses_url";s:79:"https://api.github.com/repos/afragen/github-updater-translations/statuses/{sha}";s:13:"languages_url";s:74:"https://api.github.com/repos/afragen/github-updater-translations/languages";s:14:"stargazers_url";s:75:"https://api.github.com/repos/afragen/github-updater-translations/stargazers";s:16:"contributors_url";s:77:"https://api.github.com/repos/afragen/github-updater-translations/contributors";s:15:"subscribers_url";s:76:"https://api.github.com/repos/afragen/github-updater-translations/subscribers";s:16:"subscription_url";s:77:"https://api.github.com/repos/afragen/github-updater-translations/subscription";s:11:"commits_url";s:78:"https://api.github.com/repos/afragen/github-updater-translations/commits{/sha}";s:15:"git_commits_url";s:82:"https://api.github.com/repos/afragen/github-updater-translations/git/commits{/sha}";s:12:"comments_url";s:82:"https://api.github.com/repos/afragen/github-updater-translations/comments{/number}";s:17:"issue_comment_url";s:89:"https://api.github.com/repos/afragen/github-updater-translations/issues/comments{/number}";s:12:"contents_url";s:81:"https://api.github.com/repos/afragen/github-updater-translations/contents/{+path}";s:11:"compare_url";s:88:"https://api.github.com/repos/afragen/github-updater-translations/compare/{base}...{head}";s:10:"merges_url";s:71:"https://api.github.com/repos/afragen/github-updater-translations/merges";s:11:"archive_url";s:87:"https://api.github.com/repos/afragen/github-updater-translations/{archive_format}{/ref}";s:13:"downloads_url";s:74:"https://api.github.com/repos/afragen/github-updater-translations/downloads";s:10:"issues_url";s:80:"https://api.github.com/repos/afragen/github-updater-translations/issues{/number}";s:9:"pulls_url";s:79:"https://api.github.com/repos/afragen/github-updater-translations/pulls{/number}";s:14:"milestones_url";s:84:"https://api.github.com/repos/afragen/github-updater-translations/milestones{/number}";s:17:"notifications_url";s:104:"https://api.github.com/repos/afragen/github-updater-translations/notifications{?since,all,participating}";s:10:"labels_url";s:78:"https://api.github.com/repos/afragen/github-updater-translations/labels{/name}";s:12:"releases_url";s:78:"https://api.github.com/repos/afragen/github-updater-translations/releases{/id}";s:15:"deployments_url";s:76:"https://api.github.com/repos/afragen/github-updater-translations/deployments";s:10:"created_at";s:20:"2015-12-05T18:34:38Z";s:10:"updated_at";s:20:"2015-12-05T19:30:36Z";s:9:"pushed_at";s:20:"2015-12-06T15:37:15Z";s:7:"git_url";s:56:"git://github.com/afragen/github-updater-translations.git";s:7:"ssh_url";s:54:"git@github.com:afragen/github-updater-translations.git";s:9:"clone_url";s:58:"https://github.com/afragen/github-updater-translations.git";s:7:"svn_url";s:54:"https://github.com/afragen/github-updater-translations";s:8:"homepage";N;s:4:"size";i:52;s:16:"stargazers_count";i:0;s:14:"watchers_count";i:0;s:8:"language";s:3:"PHP";s:10:"has_issues";b:1;s:13:"has_downloads";b:1;s:8:"has_wiki";b:1;s:9:"has_pages";b:0;s:11:"forks_count";i:0;s:10:"mirror_url";N;s:17:"open_issues_count";i:0;s:5:"forks";i:0;s:11:"open_issues";i:0;s:8:"watchers";i:0;s:14:"default_branch";s:6:"master";s:5:"score";d:4.1669530000000004;}i:3;O:8:"stdClass":69:{s:2:"id";i:51263909;s:4:"name";s:15:"plugin-noheader";s:9:"full_name";s:23:"afragen/plugin-noheader";s:5:"owner";O:8:"stdClass":17:{s:5:"login";s:7:"afragen";s:2:"id";i:1296790;s:10:"avatar_url";s:51:"https://avatars.githubusercontent.com/u/1296790?v=3";s:11:"gravatar_id";s:0:"";s:3:"url";s:36:"https://api.github.com/users/afragen";s:8:"html_url";s:26:"https://github.com/afragen";s:13:"followers_url";s:46:"https://api.github.com/users/afragen/followers";s:13:"following_url";s:59:"https://api.github.com/users/afragen/following{/other_user}";s:9:"gists_url";s:52:"https://api.github.com/users/afragen/gists{/gist_id}";s:11:"starred_url";s:59:"https://api.github.com/users/afragen/starred{/owner}{/repo}";s:17:"subscriptions_url";s:50:"https://api.github.com/users/afragen/subscriptions";s:17:"organizations_url";s:41:"https://api.github.com/users/afragen/orgs";s:9:"repos_url";s:42:"https://api.github.com/users/afragen/repos";s:10:"events_url";s:53:"https://api.github.com/users/afragen/events{/privacy}";s:19:"received_events_url";s:52:"https://api.github.com/users/afragen/received_events";s:4:"type";s:4:"User";s:10:"site_admin";b:0;}s:7:"private";b:0;s:8:"html_url";s:42:"https://github.com/afragen/plugin-noheader";s:11:"description";s:77:"A test plugin for GitHub Updater that doesn''t have the GitHub Updater header.";s:4:"fork";b:0;s:3:"url";s:52:"https://api.github.com/repos/afragen/plugin-noheader";s:9:"forks_url";s:58:"https://api.github.com/repos/afragen/plugin-noheader/forks";s:8:"keys_url";s:66:"https://api.github.com/repos/afragen/plugin-noheader/keys{/key_id}";s:17:"collaborators_url";s:81:"https://api.github.com/repos/afragen/plugin-noheader/collaborators{/collaborator}";s:9:"teams_url";s:58:"https://api.github.com/repos/afragen/plugin-noheader/teams";s:9:"hooks_url";s:58:"https://api.github.com/repos/afragen/plugin-noheader/hooks";s:16:"issue_events_url";s:75:"https://api.github.com/repos/afragen/plugin-noheader/issues/events{/number}";s:10:"events_url";s:59:"https://api.github.com/repos/afragen/plugin-noheader/events";s:13:"assignees_url";s:69:"https://api.github.com/repos/afragen/plugin-noheader/assignees{/user}";s:12:"branches_url";s:70:"https://api.github.com/repos/afragen/plugin-noheader/branches{/branch}";s:8:"tags_url";s:57:"https://api.github.com/repos/afragen/plugin-noheader/tags";s:9:"blobs_url";s:68:"https://api.github.com/repos/afragen/plugin-noheader/git/blobs{/sha}";s:12:"git_tags_url";s:67:"https://api.github.com/repos/afragen/plugin-noheader/git/tags{/sha}";s:12:"git_refs_url";s:67:"https://api.github.com/repos/afragen/plugin-noheader/git/refs{/sha}";s:9:"trees_url";s:68:"https://api.github.com/repos/afragen/plugin-noheader/git/trees{/sha}";s:12:"statuses_url";s:67:"https://api.github.com/repos/afragen/plugin-noheader/statuses/{sha}";s:13:"languages_url";s:62:"https://api.github.com/repos/afragen/plugin-noheader/languages";s:14:"stargazers_url";s:63:"https://api.github.com/repos/afragen/plugin-noheader/stargazers";s:16:"contributors_url";s:65:"https://api.github.com/repos/afragen/plugin-noheader/contributors";s:15:"subscribers_url";s:64:"https://api.github.com/repos/afragen/plugin-noheader/subscribers";s:16:"subscription_url";s:65:"https://api.github.com/repos/afragen/plugin-noheader/subscription";s:11:"commits_url";s:66:"https://api.github.com/repos/afragen/plugin-noheader/commits{/sha}";s:15:"git_commits_url";s:70:"https://api.github.com/repos/afragen/plugin-noheader/git/commits{/sha}";s:12:"comments_url";s:70:"https://api.github.com/repos/afragen/plugin-noheader/comments{/number}";s:17:"issue_comment_url";s:77:"https://api.github.com/repos/afragen/plugin-noheader/issues/comments{/number}";s:12:"contents_url";s:69:"https://api.github.com/repos/afragen/plugin-noheader/contents/{+path}";s:11:"compare_url";s:76:"https://api.github.com/repos/afragen/plugin-noheader/compare/{base}...{head}";s:10:"merges_url";s:59:"https://api.github.com/repos/afragen/plugin-noheader/merges";s:11:"archive_url";s:75:"https://api.github.com/repos/afragen/plugin-noheader/{archive_format}{/ref}";s:13:"downloads_url";s:62:"https://api.github.com/repos/afragen/plugin-noheader/downloads";s:10:"issues_url";s:68:"https://api.github.com/repos/afragen/plugin-noheader/issues{/number}";s:9:"pulls_url";s:67:"https://api.github.com/repos/afragen/plugin-noheader/pulls{/number}";s:14:"milestones_url";s:72:"https://api.github.com/repos/afragen/plugin-noheader/milestones{/number}";s:17:"notifications_url";s:92:"https://api.github.com/repos/afragen/plugin-noheader/notifications{?since,all,participating}";s:10:"labels_url";s:66:"https://api.github.com/repos/afragen/plugin-noheader/labels{/name}";s:12:"releases_url";s:66:"https://api.github.com/repos/afragen/plugin-noheader/releases{/id}";s:15:"deployments_url";s:64:"https://api.github.com/repos/afragen/plugin-noheader/deployments";s:10:"created_at";s:20:"2016-02-07T20:07:58Z";s:10:"updated_at";s:20:"2016-02-07T20:16:12Z";s:9:"pushed_at";s:20:"2016-02-25T16:48:26Z";s:7:"git_url";s:44:"git://github.com/afragen/plugin-noheader.git";s:7:"ssh_url";s:42:"git@github.com:afragen/plugin-noheader.git";s:9:"clone_url";s:46:"https://github.com/afragen/plugin-noheader.git";s:7:"svn_url";s:42:"https://github.com/afragen/plugin-noheader";s:8:"homepage";N;s:4:"size";i:0;s:16:"stargazers_count";i:0;s:14:"watchers_count";i:0;s:8:"language";s:3:"PHP";s:10:"has_issues";b:1;s:13:"has_downloads";b:1;s:8:"has_wiki";b:1;s:9:"has_pages";b:0;s:11:"forks_count";i:0;s:10:"mirror_url";N;s:17:"open_issues_count";i:0;s:5:"forks";i:0;s:11:"open_issues";i:0;s:8:"watchers";i:0;s:14:"default_branch";s:6:"master";s:5:"score";d:3.9805845999999998;}i:4;O:8:"stdClass":69:{s:2:"id";i:9460456;s:4:"name";s:11:"test-plugin";s:9:"full_name";s:19:"afragen/test-plugin";s:5:"owner";O:8:"stdClass":17:{s:5:"login";s:7:"afragen";s:2:"id";i:1296790;s:10:"avatar_url";s:51:"https://avatars.githubusercontent.com/u/1296790?v=3";s:11:"gravatar_id";s:0:"";s:3:"url";s:36:"https://api.github.com/users/afragen";s:8:"html_url";s:26:"https://github.com/afragen";s:13:"followers_url";s:46:"https://api.github.com/users/afragen/followers";s:13:"following_url";s:59:"https://api.github.com/users/afragen/following{/other_user}";s:9:"gists_url";s:52:"https://api.github.com/users/afragen/gists{/gist_id}";s:11:"starred_url";s:59:"https://api.github.com/users/afragen/starred{/owner}{/repo}";s:17:"subscriptions_url";s:50:"https://api.github.com/users/afragen/subscriptions";s:17:"organizations_url";s:41:"https://api.github.com/users/afragen/orgs";s:9:"repos_url";s:42:"https://api.github.com/users/afragen/repos";s:10:"events_url";s:53:"https://api.github.com/users/afragen/events{/privacy}";s:19:"received_events_url";s:52:"https://api.github.com/users/afragen/received_events";s:4:"type";s:4:"User";s:10:"site_admin";b:0;}s:7:"private";b:0;s:8:"html_url";s:38:"https://github.com/afragen/test-plugin";s:11:"description";s:44:"Just an empty plugin to test Github updating";s:4:"fork";b:0;s:3:"url";s:48:"https://api.github.com/repos/afragen/test-plugin";s:9:"forks_url";s:54:"https://api.github.com/repos/afragen/test-plugin/forks";s:8:"keys_url";s:62:"https://api.github.com/repos/afragen/test-plugin/keys{/key_id}";s:17:"collaborators_url";s:77:"https://api.github.com/repos/afragen/test-plugin/collaborators{/collaborator}";s:9:"teams_url";s:54:"https://api.github.com/repos/afragen/test-plugin/teams";s:9:"hooks_url";s:54:"https://api.github.com/repos/afragen/test-plugin/hooks";s:16:"issue_events_url";s:71:"https://api.github.com/repos/afragen/test-plugin/issues/events{/number}";s:10:"events_url";s:55:"https://api.github.com/repos/afragen/test-plugin/events";s:13:"assignees_url";s:65:"https://api.github.com/repos/afragen/test-plugin/assignees{/user}";s:12:"branches_url";s:66:"https://api.github.com/repos/afragen/test-plugin/branches{/branch}";s:8:"tags_url";s:53:"https://api.github.com/repos/afragen/test-plugin/tags";s:9:"blobs_url";s:64:"https://api.github.com/repos/afragen/test-plugin/git/blobs{/sha}";s:12:"git_tags_url";s:63:"https://api.github.com/repos/afragen/test-plugin/git/tags{/sha}";s:12:"git_refs_url";s:63:"https://api.github.com/repos/afragen/test-plugin/git/refs{/sha}";s:9:"trees_url";s:64:"https://api.github.com/repos/afragen/test-plugin/git/trees{/sha}";s:12:"statuses_url";s:63:"https://api.github.com/repos/afragen/test-plugin/statuses/{sha}";s:13:"languages_url";s:58:"https://api.github.com/repos/afragen/test-plugin/languages";s:14:"stargazers_url";s:59:"https://api.github.com/repos/afragen/test-plugin/stargazers";s:16:"contributors_url";s:61:"https://api.github.com/repos/afragen/test-plugin/contributors";s:15:"subscribers_url";s:60:"https://api.github.com/repos/afragen/test-plugin/subscribers";s:16:"subscription_url";s:61:"https://api.github.com/repos/afragen/test-plugin/subscription";s:11:"commits_url";s:62:"https://api.github.com/repos/afragen/test-plugin/commits{/sha}";s:15:"git_commits_url";s:66:"https://api.github.com/repos/afragen/test-plugin/git/commits{/sha}";s:12:"comments_url";s:66:"https://api.github.com/repos/afragen/test-plugin/comments{/number}";s:17:"issue_comment_url";s:73:"https://api.github.com/repos/afragen/test-plugin/issues/comments{/number}";s:12:"contents_url";s:65:"https://api.github.com/repos/afragen/test-plugin/contents/{+path}";s:11:"compare_url";s:72:"https://api.github.com/repos/afragen/test-plugin/compare/{base}...{head}";s:10:"merges_url";s:55:"https://api.github.com/repos/afragen/test-plugin/merges";s:11:"archive_url";s:71:"https://api.github.com/repos/afragen/test-plugin/{archive_format}{/ref}";s:13:"downloads_url";s:58:"https://api.github.com/repos/afragen/test-plugin/downloads";s:10:"issues_url";s:64:"https://api.github.com/repos/afragen/test-plugin/issues{/number}";s:9:"pulls_url";s:63:"https://api.github.com/repos/afragen/test-plugin/pulls{/number}";s:14:"milestones_url";s:68:"https://api.github.com/repos/afragen/test-plugin/milestones{/number}";s:17:"notifications_url";s:88:"https://api.github.com/repos/afragen/test-plugin/notifications{?since,all,participating}";s:10:"labels_url";s:62:"https://api.github.com/repos/afragen/test-plugin/labels{/name}";s:12:"releases_url";s:62:"https://api.github.com/repos/afragen/test-plugin/releases{/id}";s:15:"deployments_url";s:60:"https://api.github.com/repos/afragen/test-plugin/deployments";s:10:"created_at";s:20:"2013-04-15T23:38:27Z";s:10:"updated_at";s:20:"2016-01-23T08:24:45Z";s:9:"pushed_at";s:20:"2015-04-08T21:53:36Z";s:7:"git_url";s:40:"git://github.com/afragen/test-plugin.git";s:7:"ssh_url";s:38:"git@github.com:afragen/test-plugin.git";s:9:"clone_url";s:42:"https://github.com/afragen/test-plugin.git";s:7:"svn_url";s:38:"https://github.com/afragen/test-plugin";s:8:"homepage";N;s:4:"size";i:182;s:16:"stargazers_count";i:1;s:14:"watchers_count";i:1;s:8:"language";s:3:"PHP";s:10:"has_issues";b:0;s:13:"has_downloads";b:1;s:8:"has_wiki";b:0;s:9:"has_pages";b:0;s:11:"forks_count";i:1;s:10:"mirror_url";N;s:17:"open_issues_count";i:0;s:5:"forks";i:1;s:11:"open_issues";i:0;s:8:"watchers";i:1;s:14:"default_branch";s:6:"master";s:5:"score";d:1.4731364;}}}s:4:"tags";a:30:{i:0;O:8:"stdClass":4:{s:4:"name";s:5:"5.4.1";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.4.1";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/5.4.1";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"646b93d1113c8321eaa4e4e1c5bfa0a15cd8b3a4";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/646b93d1113c8321eaa4e4e1c5bfa0a15cd8b3a4";}}i:1;O:8:"stdClass":4:{s:4:"name";s:5:"5.4.0";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.4.0";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/5.4.0";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"24254e9431b6800a0046034439d09d27cff26c8b";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/24254e9431b6800a0046034439d09d27cff26c8b";}}i:2;O:8:"stdClass":4:{s:4:"name";s:5:"5.3.4";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.3.4";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/5.3.4";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"22486a33161b7d808fc043492886e15db67147aa";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/22486a33161b7d808fc043492886e15db67147aa";}}i:3;O:8:"stdClass":4:{s:4:"name";s:5:"5.3.3";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.3.3";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/5.3.3";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"84103115621afe5dc398f0bb02336919a9e3408c";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/84103115621afe5dc398f0bb02336919a9e3408c";}}i:4;O:8:"stdClass":4:{s:4:"name";s:5:"5.3.2";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.3.2";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/5.3.2";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"3785f3508ed8fef50d112a134291a2435dce8064";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/3785f3508ed8fef50d112a134291a2435dce8064";}}i:5;O:8:"stdClass":4:{s:4:"name";s:5:"5.3.1";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.3.1";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/5.3.1";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"8f3259b196d6d731ed34069b18740dcfcafa677f";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/8f3259b196d6d731ed34069b18740dcfcafa677f";}}i:6;O:8:"stdClass":4:{s:4:"name";s:5:"5.3.0";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.3.0";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/5.3.0";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"469ce782771ae0edd8b296ea8ef7088d7b350365";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/469ce782771ae0edd8b296ea8ef7088d7b350365";}}i:7;O:8:"stdClass":4:{s:4:"name";s:5:"5.2.0";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.2.0";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/5.2.0";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"065f5525827e4a01d2aa39cdbb217dc15f411ce2";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/065f5525827e4a01d2aa39cdbb217dc15f411ce2";}}i:8;O:8:"stdClass":4:{s:4:"name";s:5:"5.1.2";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.1.2";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/5.1.2";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"7335635cb2c33523993326f8e62872798283ba69";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/7335635cb2c33523993326f8e62872798283ba69";}}i:9;O:8:"stdClass":4:{s:4:"name";s:5:"5.1.1";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.1.1";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/5.1.1";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"83e3ae64229f5af60a05bc49fb7ef15f0c1e08e8";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/83e3ae64229f5af60a05bc49fb7ef15f0c1e08e8";}}i:10;O:8:"stdClass":4:{s:4:"name";s:5:"5.1.0";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.1.0";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/5.1.0";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"1fdb1a2cc769da533140cadd12dac2fd82a2274e";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/1fdb1a2cc769da533140cadd12dac2fd82a2274e";}}i:11;O:8:"stdClass":4:{s:4:"name";s:5:"5.0.1";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.0.1";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/5.0.1";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"24bc058f98abf08a093e6f7523d1e83f3cc1b184";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/24bc058f98abf08a093e6f7523d1e83f3cc1b184";}}i:12;O:8:"stdClass":4:{s:4:"name";s:5:"5.0.0";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/5.0.0";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/5.0.0";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"505741ad7cced3399fcf0d5ffb22c38ed2e9d51b";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/505741ad7cced3399fcf0d5ffb22c38ed2e9d51b";}}i:13;O:8:"stdClass":4:{s:4:"name";s:5:"4.6.2";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.6.2";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/4.6.2";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"5a39bf3a9066b1f40736e51de01d3c6d8a35702c";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/5a39bf3a9066b1f40736e51de01d3c6d8a35702c";}}i:14;O:8:"stdClass":4:{s:4:"name";s:5:"4.6.1";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.6.1";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/4.6.1";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"7d2ff783d79414bf84c8414853b0f03af5796bd4";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/7d2ff783d79414bf84c8414853b0f03af5796bd4";}}i:15;O:8:"stdClass":4:{s:4:"name";s:5:"4.6.0";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.6.0";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/4.6.0";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"3109033ec3385054a41041de8e630f8bf769385d";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/3109033ec3385054a41041de8e630f8bf769385d";}}i:16;O:8:"stdClass":4:{s:4:"name";s:5:"4.5.7";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.5.7";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/4.5.7";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"ca43ebac158c0461326ab4ccee6bf32f316cde3a";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/ca43ebac158c0461326ab4ccee6bf32f316cde3a";}}i:17;O:8:"stdClass":4:{s:4:"name";s:5:"4.5.6";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.5.6";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/4.5.6";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"358ad2f65bdb709a01c9e7ddf781527d9ff39875";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/358ad2f65bdb709a01c9e7ddf781527d9ff39875";}}i:18;O:8:"stdClass":4:{s:4:"name";s:5:"4.5.5";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.5.5";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/4.5.5";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"832cbd00e2941652af655bec3ad15bf613778577";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/832cbd00e2941652af655bec3ad15bf613778577";}}i:19;O:8:"stdClass":4:{s:4:"name";s:5:"4.5.4";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.5.4";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/4.5.4";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"351dbb8f8a65a9a5ebe23cf8edaa4efc9528bcfe";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/351dbb8f8a65a9a5ebe23cf8edaa4efc9528bcfe";}}i:20;O:8:"stdClass":4:{s:4:"name";s:5:"4.5.3";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.5.3";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/4.5.3";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"034d9091415af8e891ec03495743d312126a0dcb";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/034d9091415af8e891ec03495743d312126a0dcb";}}i:21;O:8:"stdClass":4:{s:4:"name";s:5:"4.5.1";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.5.1";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/4.5.1";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"17b6d14a2bf282103caf5ea7058d5ec73eb3a6cb";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/17b6d14a2bf282103caf5ea7058d5ec73eb3a6cb";}}i:22;O:8:"stdClass":4:{s:4:"name";s:5:"4.5.0";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.5.0";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/4.5.0";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"93131db021b1fc20ec95860b033564d3e1c073cd";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/93131db021b1fc20ec95860b033564d3e1c073cd";}}i:23;O:8:"stdClass":4:{s:4:"name";s:5:"4.4.0";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.4.0";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/4.4.0";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"2e6bd497e5f2fdc2e5be48ea44585f41d39fd420";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/2e6bd497e5f2fdc2e5be48ea44585f41d39fd420";}}i:24;O:8:"stdClass":4:{s:4:"name";s:5:"4.3.1";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.3.1";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/4.3.1";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"46a870b84aebba08bd152b966dc898f0f1bbdd8e";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/46a870b84aebba08bd152b966dc898f0f1bbdd8e";}}i:25;O:8:"stdClass":4:{s:4:"name";s:5:"4.3.0";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.3.0";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/4.3.0";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"da1d1760e8a64b1032e46b98be3017f68b8dabd4";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/da1d1760e8a64b1032e46b98be3017f68b8dabd4";}}i:26;O:8:"stdClass":4:{s:4:"name";s:5:"4.2.0";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.2.0";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/4.2.0";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"2dc5292b178a41b3af66b65f62ce92d6be1cee25";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/2dc5292b178a41b3af66b65f62ce92d6be1cee25";}}i:27;O:8:"stdClass":4:{s:4:"name";s:5:"4.1.4";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.1.4";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/4.1.4";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"c1ee7fd15afa76490159d8a0a09fffb88b0f7ed4";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/c1ee7fd15afa76490159d8a0a09fffb88b0f7ed4";}}i:28;O:8:"stdClass":4:{s:4:"name";s:5:"4.1.3";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.1.3";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/4.1.3";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"0e0897b883d2083c748e656ad9111194de623e39";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/0e0897b883d2083c748e656ad9111194de623e39";}}i:29;O:8:"stdClass":4:{s:4:"name";s:5:"4.1.2";s:11:"zipball_url";s:65:"https://api.github.com/repos/afragen/github-updater/zipball/4.1.2";s:11:"tarball_url";s:65:"https://api.github.com/repos/afragen/github-updater/tarball/4.1.2";s:6:"commit";O:8:"stdClass":2:{s:3:"sha";s:40:"f825ef1e4b4eea71b33bc0fe8db9c3ccf80bd3d7";s:3:"url";s:100:"https://api.github.com/repos/afragen/github-updater/commits/f825ef1e4b4eea71b33bc0fe8db9c3ccf80bd3d7";}}}s:7:"changes";O:8:"stdClass":12:{s:4:"name";s:10:"CHANGES.md";s:4:"path";s:10:"CHANGES.md";s:3:"sha";s:40:"0cca100504c70c2d1e89250680b2cb496a300b39";s:4:"size";i:26442;s:3:"url";s:82:"https://api.github.com/repos/afragen/github-updater/contents/CHANGES.md?ref=master";s:8:"html_url";s:64:"https://github.com/afragen/github-updater/blob/master/CHANGES.md";s:7:"git_url";s:102:"https://api.github.com/repos/afragen/github-updater/git/blobs/0cca100504c70c2d1e89250680b2cb496a300b39";s:12:"download_url";s:74:"https://raw.githubusercontent.com/afragen/github-updater/master/CHANGES.md";s:4:"type";s:4:"file";s:7:"content";s:35844:"IyMjIyA1LjQuMQoqIGdldCB0YWdzIGZvciB0aGVtZXMgdG8gcm9sbGJhY2sg\nZXZlbiBpZiBubyB1cGRhdGVzIGFyZSBhdmFpbGFibGUuIEkgd2FzIG92ZXJ6\nZWFsb3VzIGluIGN1dHRpbmcgcmVtb3RlIEFQSSBjYWxscy4KKiBNYW5hZ2VX\nUCBub3cgd29ya3MgZm9yIFJlbW90ZSBNYW5hZ2VtZW50LgoqIGZpeCBidWcg\naW4gYEdpdExhYl9BUElgIHRvIHVzZSBgcGF0aGAgYW5kIG5vdCBgbmFtZWAu\nIFRoYW5rcyBAbWFyYmV0c2NoYXIKKiBhZGQgZmlsdGVyIGZvciBiYWNrZ3Jv\ndW5kIHVwZGF0ZXMgaWYgc2V0IGdsb2JhbGx5LiBUaGFua3MgQGphbmNiZWNr\nCiogZml4IFBIUCBub3RpY2Ugd2hlbiBhZGRpbmcgbmV3IFJlbW90ZSBNYW5h\nZ2VtZW50IG9wdGlvbgoqIGRlbGV0ZSBhbGwgdHJhbnNpZW50cyBvbiB1bmlu\nc3RhbGwKKiBmaXggbG9naWMgZm9yIGRpc3BsYXkgb2YgR2l0TGFiIHRva2Vu\nIGZpZWxkcyBhbmQgZXJyb3Igbm90aWNlCiogZGlzcGxheSBXUF9FcnJvciBt\nZXNzYWdlIGZvciBgd3BfcmVtb3RlX2dldCgpYCBlcnJvcgoqIGNvcnJlY3Rs\neSBnZXQgdXNlIEdpdExhYiBuYW1lc3BhY2UvcHJvamVjdCBpbnN0ZWFkIG9m\nIHByb2plY3QgaWQgd2hlbiBuZWVkZWQKKiBhZGRlZCBgZGF0YS1zbHVnYCB0\nbyB0aGVtZSB1cGRhdGUgcm93cyBzbyBDU1MgbWF5IGJlIGFwcGxpZWQKKiBu\nb3cgc3VwcG9ydHMgTWFpbldQIGZvciByZW1vdGUgbWFuYWdlbWVudCwgdGhh\nbmtzIEBydWJlbi0KKiB0eXBlY2FzdCBgcmVhZG1lLnR4dGAgcmVzcG9uc2Ug\ndG8gYXJyYXksIGZpeCBmb3Igb2NjYXNpb25hbCBtYWxmb3JtZWQgYHJlYWRt\nZS50eHRgIGZpbGUKCiMjIyMgNS40LjAKKiBmaXggZGVwcmVjYXRlZCBQSFA0\nIGNvbnN0cnVjdG9yIGluIHZlbmRvciBjbGFzcy4KKiBhZGQgYGNsYXNzIEFk\nZGl0aW9uc2AgdG8gcHJvY2VzcyBKU09OIGNvbmZpZyBmcm9tIGhvb2sgdG8g\nYWRkIHJlcG9zaXRvcmllcyB0byBHaXRIdWIgVXBkYXRlciwgdXNlcyBbR2l0\nSHViIFVwZGF0ZXIgQWRkaXRpb25zXShodHRwczovL2dpdGh1Yi5jb20vYWZy\nYWdlbi9naXRodWItdXBkYXRlci1hZGRpdGlvbnMpIHRvIGFkZAoqIGFkZCBu\nZWNlc3NhcnkgY29kZSBpbiBgY2xhc3MgUGx1Z2luYCBhbmQgYGNsYXNzIFRo\nZW1lYCBmb3IgYWJvdmUKKiBza2lwIG1hbnkgcmVtb3RlIEFQSSBjYWxscyBp\nZiBubyB1cGRhdGUgYXZhaWxhYmxlIGFuZCB1c2UgbG9jYWwgZmlsZXMsIGh1\nZ2UgcGVyZm9ybWFuY2UgYm9vc3QgOi0pCiogcmVtb3ZlIGNoZWNrIGZvciBH\naXRIdWIgYXNzZXQsIHRoaXMgZWxpbWluYXRlcyBhbiBBUEkgY2FsbCBmb3Ig\nYSByYXJlbHkgdXNlZCBmZWF0dXJlCiogYWRkZWQgYWRkaXRpb25hbCBoZWFk\nZXIgYFJlbGVhc2UgQXNzZXQ6IHRydWVgIHRvIGFkZCBiYWNrIGFiaWxpdHkg\ndG8gc2V0IGRvd25sb2FkIGxpbmsgdG8gcmVsZWFzZSBhc3NldC4KKiBhZGRl\nZCBmdW5jdGlvbiB0byByZW1vdmUgX0Jhc2ljIEF1dGhlbnRpY2F0aW9uXyBo\nZWFkZXIgd2hlbiBkb3dubG9hZGluZyBwcml2YXRlIEJpdGJ1Y2tldCByZWxl\nYXNlIGFzc2V0cyBhcyB0aGV5IGFyZSBzdG9yZWQgb24gQW1hem9uUzMgYW5k\nIHVzZSBbUXVlcnkgU3RyaW5nIFJlcXVlc3QgQXV0aGVudGljYXRpb24gQWx0\nZXJuYXRpdmVdKGh0dHA6Ly9kb2NzLmF3cy5hbWF6b24uY29tL0FtYXpvblMz\nL2xhdGVzdC9kZXYvUkVTVEF1dGhlbnRpY2F0aW9uLmh0bWwjUkVTVEF1dGhl\nbnRpY2F0aW9uUXVlcnlTdHJpbmdBdXRoKQoqIGNvbnNvbGlkYXRlIGVycm9y\nIG1lc3NhZ2VzIHRvIHNob3cgb25seSBvbmNlIHBlciBlcnJvcgoqIGFkZCBf\nT3RoZXIgTm90ZXNfIHNlY3Rpb24gdG8gVmlldyBkZXRhaWxzCiogdXBkYXRl\nIHJlYWRtZS50eHQgd2l0aCBfT3RoZXIgTm90ZXNfIGluZm9ybWF0aW9uCgoj\nIyMjIDUuMy40CiogcmVzZXQgJ25ld192ZXJzaW9uJyBpbiB1cGRhdGUgdHJh\nbnNpZW50IHRvIGF2b2lkIF91cCB0byBkYXRlXyBmYWlsdXJlIHdpdGggYnJh\nbmNoIHN3aXRjaGluZy4KKiBmaXggZGlzcGxheSBvZiBicmFuY2ggc3dpdGNo\naW5nIHRoZW1lcyBvbiBzaW5nbGUgaW5zdGFsbC4KKiBmaXggYnVnIGluIGdl\ndHRpbmcgQml0YnVja2V0IGJyYW5jaCBuYW1lcy4KKiBmaXggdG8gaGlkZSBj\naGVja2JveCB3aGVuIGFjdGl2ZSBhcyBtdS1wbHVnaW4uCiogd29yayBiZXR0\nZXIgd2l0aCBzaGlueSB1cGRhdGVzLgoKIyMjIyA1LjMuMwoqIHJlbW92ZSBh\nZGRlZCBmaWx0ZXJzLCBiZWxvdyBhcyB0aGV5IGRpZG4ndCBhZGQgZnVuY3Rp\nb25hbGl0eSB0byB0aGlzIHBsdWdpbi4KKiB0cnkgdG8gdXNlIHJlZmVyZW5j\nZXMgdG8gYCYkdGhpc2AKKiBhZGRlZCBQSFBVbml0IHRlc3Rpbmcgc2V0dXAs\nIEkgY291bGQgdXNlIGhlbHAgd3JpdGluZyB0ZXN0cy4gQSBncmVhdCB3YXkg\ndG8gY29udHJpYnV0ZS4gOi0pCgojIyMjIDUuMy4yCiogY29kZSBzaW1wbGlm\naWNhdGlvbiBmb3IgYHVwZ3JhZGVyX3NvdXJjZV9zZWxlY3Rpb25gCiogZml4\nIGZvciBwbHVnaW4gYnJhbmNoIHN3aXRjaGluZyB0byBvdmVycmlkZSBfdXAt\ndG8tZGF0ZV8gbWVzc2FnZSAobW9zdCBvZiB0aGUgdGltZSkKKiBhZGRlZCBm\naWx0ZXJzIGZvciBkZXZlbG9wZXJzLCB3ZWxsIEkgd2FudGVkIHRoZW0gYW55\nd2F5IDstKQoJKiBgZ2l0aHViX3VwZGF0ZXJfcGx1Z2luX3RyYW5zaWVudF91\ncGRhdGVgCgkqIGBnaXRodWJfdXBkYXRlcl90aGVtZV90cmFuc2llbnRfdXBk\nYXRlYAoJKiBgZ2l0aHViX3VwZGF0ZXJfcGx1Z2luX3Jvd19tZXRhYAoJKiBg\nZ2l0aHViX3VwZGF0ZXJfdGhlbWVfcm93X21ldGFgCgkqIGBnaXRodWJfdXBk\nYXRlcl9hcHBlbmRfdGhlbWVfYWN0aW9uYAoqIGZpeCBmb3IgcmVuYW1pbmcg\nb2YgdXBkYXRpbmcgcGx1Z2lucyB0aGF0IHdlcmUgbmV2ZXIgaW5pdGlhbGx5\nIHJlbmFtZWQgd2hlbiBmaXJzdCBpbnN0YWxsZWQuIFN0cmFuZ2UgYnVnLgoK\nIyMjIyA1LjMuMQoqIGZpeCBQSFAgbm90aWNlIGR1cmluZyByZW1vdGUgaW5z\ndGFsbGF0aW9uCiogZml4IHJlbW90ZSBpbnN0YWxsIFsjMzI1XShodHRwczov\nL2dpdGh1Yi5jb20vYWZyYWdlbi9naXRodWItdXBkYXRlci9pc3N1ZXMvMzI1\nKQoKIyMjIyA1LjMuMAoqIGZpeCBwYXJzaW5nIG9mIGByZWFkbWUudHh0YCBm\nb3IgZG9uYXRlIGxpbmsKKiByZWZhY3RvciB0cmFuc2llbnQgc3RvcmFnZSBy\nZXN1bHRpbmcgaW4gc2lnbmlmaWNhbnRseSBmZXcgZGF0YWJhc2UgY2FsbHMs\nIG1vcmUgcGVyZm9ybWFudC4KKiBtb3ZlIGB7Z2V0fHNldH1fdHJhbnNpZW50\nYCBmdW5jdGlvbnMgdG8gYGFic3RyYWN0IGNsYXNzIEFQSWAKKiBmaXggc2V0\ndGluZ3MgcGFnZSBzYXZpbmcgZXJyb3JzLgoqIGZpeCBmb3Igc2hpbnkgdXBk\nYXRlcyBbIzMyMV0oaHR0cHM6Ly9naXRodWIuY29tL2FmcmFnZW4vZ2l0aHVi\nLXVwZGF0ZXIvaXNzdWVzLzMyMSkKKiBvdmVyaGF1bCBvZiByZW5hbWluZyBj\nb2RlIGJhY2sgdG8gdXNpbmcgYHVwZ3JhZGVyX3NvdXJjZV9zZWxlY3Rpb25g\nIGFuZCBmb3IgV29yZFByZXNzIDQuNCBhZGRpbmcgYCRhcmdzWydob29rX2V4\ndHJhJ10gdG8gYHVwZ3JhZGVyX3NvdXJjZV9zZWxlY3Rpb25gIGZpbHRlci4g\nVGhhbmtzIEBkZDMyIQoKIyMjIyA1LjIuMAoqIGZpeCBbIzMwOV0oaHR0cHM6\nLy9naXRodWIuY29tL2FmcmFnZW4vZ2l0aHViLXVwZGF0ZXIvaXNzdWVzLzMw\nOSkgZm9yIHByb3BlciBHaXRIdWIgRW50ZXJwcmlzZSBlbmRwb2ludHMKKiBh\nZGQgc2V0dGluZyBmb3IgR2l0SHViIEVudGVycHJpc2UgcGVyc29uYWwgYWNj\nZXNzIHRva2VuCiogbmV3IGBmdW5jdGlvbiBfYWRkX2FjY2Vzc190b2tlbigp\nYCBmb3IgYGNsYXNzIEdpdEh1Yl9BUElgCiogdXBkYXRlIGBlcnVzZXYvcGFy\nc2Vkb3duYCB0byBjdXJyZW50IHJlbGVhc2UKCiMjIyMgNS4xLjIKKiBhZGQg\nYHVwZ3JhZGVyX3NvdXJjZV9zZWxlY3Rpb25gIGZpbHRlciBiYWNrIGZvciBj\nb3JyZWN0IHVwZGF0aW5nIG9mIGN1cnJlbnQsIGFjdGl2ZSB0aGVtZS4KKiBm\naXggWyMyOTNdKGh0dHBzOi8vZ2l0aHViLmNvbS9hZnJhZ2VuL2dpdGh1Yi11\ncGRhdGVyL2lzc3Vlcy8yOTMpIGFuZCBbIzI5N10oaHR0cHM6Ly9naXRodWIu\nY29tL2FmcmFnZW4vZ2l0aHViLXVwZGF0ZXIvaXNzdWVzLzI5NykKKiByZW1v\ndmUgYHByZV9odHRwX3JlcXVlc3RgIGZpbHRlciBibG9ja2luZwoqIGZpeCBq\nYXZhc2NyaXB0IGZvciB0aGVtZSByb2xsYmFjayAtIEBzY2Fyc3RlbnMKKiBw\nbGF5IG5pY2Ugd2l0aCBjdXJyZW50IG1hc3RlciBicmFuY2ggb2Ygd3AtdXBk\nYXRlLXBocAoKIyMjIyA1LjEuMQoqIGhvdGZpeCB0byBjb21tZW50IG91dCBg\ncHJlX2h0dHBfcmVxdWVzdGAgZmlsdGVyLiBVcGRhdGluZyBvZiBwbHVnaW4g\nZG9lc24ndCB3b3JrLiBJIG5lZWQgdG8gcmUtdGhpbmsgdGhpcyBvbmUuCgoj\nIyMjIDUuMS4wCiogcmVmYWN0b3Igb2YgUGx1Z2luIGFuZCBUaGVtZSBjb25z\ndHJ1Y3RvcnMgbW92aW5nIGNvZGUgY2FsbGluZyBBUElzIGdldHRpbmcgcmVt\nb3RlIGRhdGEgdG8gc2VwYXJhdGUgZnVuY3Rpb25zCiogZml4IFsjMjgxXSho\ndHRwczovL2dpdGh1Yi5jb20vYWZyYWdlbi9naXRodWItdXBkYXRlci9pc3N1\nZXMvMjgxKSwgcmVtb3ZlZCAnQWN0aXZhdGUgUGx1Z2luL1RoZW1lJyBidXR0\nb25zIHBvc3QtaW5zdGFsbAoqIGZpeCBbIzI4NF0oaHR0cHM6Ly9naXRodWIu\nY29tL2FmcmFnZW4vZ2l0aHViLXVwZGF0ZXIvaXNzdWVzLzI4NCkgZm9yIEdp\ndExhYiBDRS9FbnRlcnByaXNlIGluc3RhbGwgYW5kIHVwZGF0ZQoqIGZpeCB0\nbyByZS1hY3RpdmF0ZSBwbHVnaW5zIGFmdGVyIHVwZGF0ZSwgZG9lc24ndCB3\nb3JrIHdpdGggYnJhbmNoIHN3aXRjaGluZyA6cGVyc29uX2Zyb3duaW5nOgoq\nIGZpeCB0byBjb3JyZWN0bHkgcmVuYW1lIHBsdWdpbi90aGVtZSBvbiB1cGRh\ndGUgaWYgaW5zdGFsbGVkIGZyb20gdXBsb2FkLgoqIGFkZCBmaWx0ZXIgdG8g\nYHByZV9odHRwX3Jlc3BvbnNlYCB0byBieXBhc3MgY2VydGFpbiBwbHVnaW5z\nIGNoZWNrIHVzaW5nIGB3cF9yZW1vdGVfZ2V0YCB3aXRoIGVhY2ggcGFnZSBs\nb2FkIGluIEdpdEh1YiBVcGRhdGVyLiBCeXBhc3MgaXMgb25seSBmb3IgMTIg\naG91cnMuCiogY29zbWV0aWMgZml4IHRvIGRpc3BsYXkgR2l0SHViIFVwZGF0\nZXIgYXMgYWN0aXZlIHdoZW4gYWN0aXZhdGVkIGFzIG11LXBsdWdpbgoqIGZp\neCB0byBgdGhlbWVfYXBpYCAnVmlldyB2ZXJzaW9uIGRldGFpbHMnIENTUzsg\nYmV0dGVyIHNjcm9sbGluZyBmb3IgY2hhbmdlbG9nIGluZm8KKiBmaXggYW5u\nb3lpbmcgUEhQIG5vdGljZSBpbiBgdmVuZG9yL3BhcnNlLXJlYWRtZS5waHBg\nIHdoZW4gX1VwZ3JhZGUgTm90aWNlXyBtYWxmb3JtZWQKKiBmaXggYEFQSTo6\ncmV0dXJuX3JlcG9fdHlwZWAgdG8gYWRkICd0eXBlJyB0byBhcnJheTsgYWxs\nb3dzIGVhc2llciBpbnN0YW5jZSBjcmVhdGlvbiBvZiBBUEkgY2xhc3Nlcwoq\nIHVwZGF0ZSBQT1QgZmlsZQoKIyMjIyA1LjAuMQoqIHVwZGF0ZWQgdG8gY3Vy\ncmVudCBgZXJ1c2V2L3BhcnNlZG93bmAgcmVsZWFzZSwgZml4ZXMgUEhQNyBp\nc3N1ZQoqIHVwZGF0ZWQgdG8gY3VycmVudCBgV1B1cGRhdGVQSFAvd3AtdXBk\nYXRlLXBocC9yZWxlYXNlLTEtMS0wYCBicmFuY2gKCiMjIyMgNS4wLjAKKiBm\naXggcm9sbGJhY2sgZm9yIEdpdExhYiB0aGVtZXMKKiBhZGQgYnJhbmNoIHN3\naXRjaGVyIGZvciB0aGVtZXMKKiBlc2NhcGUgYWxsIHByaW50ZWQgc3RyaW5n\ncwoqIGNoYW5nZWQgZnJvbSB1c2luZyBgdXBncmFkZXJfc291cmNlX3NlbGVj\ndGlvbmAgaG9vayB0byBgdXBncmFkZXJfcG9zdF9pbnN0YWxsYCwgdGhpcyBn\ncmVhdGx5IHNpbXBsaWZpZXMgcmVuYW1pbmcKKiByZW1vdmVkIGBjbGFzcyBS\nZW1vdGVfVXBkYXRlYCBhcyBpdCdzIG5vIGxvbmdlciBuZWVkZWQgd2hlbiB1\nc2luZyBgdXBncmFkZXJfcG9zdF9pbnN0YWxsYCBob29rCiogYWRkZWQgKipS\nZW1vdGUgTWFuYWdlbWVudCoqIHNldHRpbmdzIHRhYiBtb3JlIGNsZWFubHkg\nc3VwcG9ydCB0aG9zZSBzZXJ2aWNlcyB0aGF0IGN1cnJlbnRseSBpbnRlZ3Jh\ndGUgd2l0aCBHaXRIdWIgVXBkYXRlcgoqIG1vZGlmaWVkIHRoZSBwcm9jZXNz\nIGxvYWRpbmcgc28gZmFzdGVyIGZvciBhZG1pbiBsZXZlbCB1c2Vycy4gTXVj\naCB0aGFua3MgQGtocm9tb3YKKiBhZGRlZCBob29rcyBmb3IgZGV2cyB0byBz\nZXQgR2l0SHViIEFjY2VzcyBUb2tlbnMgYW5kIGhpZGUgdGhlIFNldHRpbmdz\nIHBhZ2UuIFBsZWFzZSBiZSBzdXJlIHlvdXIgY2xpZW50IHdpbGwgbmV2ZXIg\nbmVlZCBhY2Nlc3MgdG8gdGhlIFNldHRpbmdzIHBhZ2UuIFRoYW5rcyBAb25j\nZWNvdXBsZWQKKiBmaXhlZCBbIzI2N10oaHR0cHM6Ly9naXRodWIuY29tL2Fm\ncmFnZW4vZ2l0aHViLXVwZGF0ZXIvaXNzdWVzLzI2NykgdGhhbmtzIEBzdGV2\nZWhlbnR5IGFuZCBAcm9ja2V0Z2VuaXVzCgojIyMjIDQuNi4yCiogcmVmYWN0\nb3IgcmVtb3RlIHVwZGF0ZSBzZXJ2aWNlcyB0byBuZXcgYGNsYXNzIFJlbW90\nZV9VcGRhdGVgCiogZ2VuZXJhbCBzZWN1cml0eSBmaXhlcywgZG9uJ3QgY2Fs\nbCBmaWxlcyBkaXJlY3RseS4uLgoqIGZpeC90ZXN0IGZvciByZW1vdGUgdXBk\nYXRpbmcgdmlhIEluZmluaXRlV1AuIENoaWxkIHRoZW1lcyBhcmUgbm90IGlk\nZW50aWZpZWQgYnkgSVdQIGFzIG5lZWRpbmcgdXBkYXRlcywgb3RoZXJ3aXNl\nIGl0IHNlZW1zIHRvIHdvcmsgYXMgZXhwZWN0ZWQuCgojIyMjIDQuNi4xCiog\nZml4IGZvciByZW1vdGUgdXBkYXRpbmcgdmlhIGlUaGVtZXMgU3luYwoqIGZp\neCBmb3IgcmVuYW1pbmcgd2hlbiBBSkFYIHVwZGF0aW5nIG9mIHBsdWdpbnMK\nCiMjIyMgNC42LjAKKiBuZXdlciwgbXVjaCBtb3JlIHByZWNpc2UgbWV0aG9k\nIGZvciByZW5hbWluZyBiYXNlZCB1cG9uIHNlbGVjdGVkIHJlcG9zIGZyb20g\ndGhlIGRhc2hib2FyZC4gWWVzLCBJIHRlc3RlZCBvbiBzdGFnaW5nIHNlcnZl\nci4gOi0pCiogYWRkZWQgZmVhdHVyZSB0byB1c2UgZXh0ZW5kZWQgbmFtaW5n\nIG9mIHBsdWdpbiBkaXJlY3RvcmllcyB0byBhdm9pZCBwb3RlbnRpYWwgY29u\nZmxpY3Qgd2l0aCBXUC5vcmcgc2x1Z3MuIFByb3BzIEByZWluaW5rIGZvciB0\naGUgaWRlYS4KKiBzdHJpcCBgLmdpdGAgZnJvbSB0aGUgZW5kIG9mIHRoZSBw\nbHVnaW4gb3IgdGhlbWUgVVJJIGZvciB0aG9zZSB3aG8gaGF2ZW4ndCBnb3R0\nZW4gdG8gdGhlIFJFQURNRSB5ZXQuCiogYWRkZWQgamF2YXNjcmlwdCBzaG93\nL2hpZGUgb3B0aW9ucyBvbiB0aGUgSW5zdGFsbCBwYWdlLgoqIGZpeGVkIGJv\nb2xlYW4gbG9naWMgdG8gX25vdF8gZGlzcGxheSBHaXRMYWIgUHJpdmF0ZSBU\nb2tlbiBpbnB1dCBvbiBJbnN0YWxsIGlmIGl0J3MgYWxyZWFkeSBzZXQuCiog\ndXBkYXRlZCBzY3JlZW5zaG90cyBpbiBSRUFETUUKKiBzd2l0Y2hlZCBhIG51\nbWJlciBvZiBtZXRob2RzIHRvIGJlIG5vbi1zdGF0aWMsIGFudGljaXBhdGlv\nbiBvZiB0ZXN0aW5nLgoqIFticm9rZW46IHJlbmFtaW5nIGR1cmluZyB1cGRh\ndGVzIGZyb20gdXBncmFkZSBzZXJ2aWNlc10oaHR0cHM6Ly9naXRodWIuY29t\nL2FmcmFnZW4vZ2l0aHViLXVwZGF0ZXIvaXNzdWVzLzI2MikKCiMjIyMgNC41\nLjcKKiBob3RmaXggR2l0TGFiIHByaXZhdGUgdXBkYXRpbmcvaW5zdGFsbGlu\nZwoqIGZpeCBzb21lIFBIUCBub3RpY2VzCgojIyMjIDQuNS42CiogYnVnZml4\nIGZvciByZW5hbWluZyBjb2RlIHRvIHByb3Blcmx5IHN0cmlwIGA8b3duZXI+\nLWAKKiBtb3N0IG9mIFJ1c3NpYW4gdHJhbnNsYXRpb24gYnkgW0FuYXRvbHkg\nWXVtYXNoZXZdKGh0dHBzOi8vZ2l0aHViLmNvbS95dW1hc2hldikKCiMjIyMg\nNC41LjUKKiBiYWNrIHRvIHNpbXBsaWZ5aW5nIHRoZSByZW5hbWluZyBjb2Rl\nLCBhbHdheXMgcmVtZW1iZXIgdG8gdGVzdCByZW5hbWluZyBvbiBsaXZlIHNl\ncnZlci4KKiBzdHJpcCBgPG93bmVyPi1gIGFuZCBgLTxoYXNoPmAgZnJvbSBi\nZWdpbm5pbmcgYW5kIGVuZCBvZiB1cGRhdGUgZm9yIG1vcmUgcHJlY2lzZSBy\nZW5hbWluZwoqIEkgdGhpbmsgdGhpcyBpcyB0aGUgZW5kIG9mIHJlbmFtaW5n\nIGZvciBhIHdoaWxlLiA6UAoKIyMjIyA0LjUuNAoqIGhvdGZpeCBmb3IgcmVu\nYW1pbmcsIEkgcmV2ZXJ0ZWQgYmFjayBhIGJ1bmNoIHdpdGggbW9yZSBleHRl\nbnNpdmUgdGVzdGluZyBvbiBzZXJ2ZXIuIEl0J3MgYW1hemluZyBob3cgZGlm\nZmVyZW50IHJlbmFtaW5nIGlzIGxvY2FsbHkgdnMgb24gc2VydmVyLgoKIyMj\nIyA0LjUuMwoqIHVwZGF0ZWQgbGFuZ3VhZ2UgZmlsZXMgLS0gb29wcwoKIyMj\nIyA0LjUuMgoqIGNsZWFudXAgYW5kIHJlZmFjdG9yIG9mIHJlbmFtaW5nIGNv\nZGUuCiogYWRkZWQgUm9tYW5pYW4gdHJhbnNsYXRpb24gYnkgW0Nvcm5lbGl1\nIENpcmxhbl0oaHR0cHM6Ly9naXRodWIuY29tL2Nvcm5lbGl1Y2lybGFuKQoq\nIGFkZGVkIEphcGFuZXNlIHRyYW5zbGF0aW9uIGJ5IFtpc2hpaGFyYV0oaHR0\ncHM6Ly9naXRodWIuY29tLzFzaGloYXJhdCkKCiMjIyMgNC41LjEKKiBmaXgg\nYnVnIHNvIHVwZGF0ZXMgZGlzcGxheSB3aXRob3V0IGhhdmluZyB0byByYW5k\nb21seSByZWZyZXNoLgoKIyMjIyA0LjUuMAoqIGZpeCBzb21lIFBIUCBub3Rp\nY2VzCiogYWRkIHVwZGF0ZSBieSBHaXRIdWIgcmVsZWFzZSBhc3NldCBpbiBs\naWV1IG9mIHVwZGF0ZSBieSB0YWcgd2hlbiBhc3NldCBpcyBwcmVzZW50Ciog\naW5zdGFsbCBhc3NldCB2aWEgcmVtb3RlIGluc3RhbGwgaWYgYXNzZXQgVVJJ\nIHVzZWQKKiByZWZhY3RvciB0byBzaW1wbGlmeSBjbGFzcyBzdHJ1Y3R1cmUs\nIGNyZWF0ZWQgYGFic3RyYWN0IGNsYXNzIEFQSWAgYW5kIGBjbGFzcyBNZXNz\nYWdlc2AKKiBhZGQgR2l0TGFiIHN1cHBvcnQhIQoqIHJlZmFjdG9yIHRvIHNl\ndCBhbGwgZ2l0IHNlcnZlcnMgYW5kIGV4dHJhIGhlYWRlcnMgdG8gc3RhdGlj\nIGFycmF5cyBpbiBgQmFzZWAKKiByZW1vdmUgY2hlY2tib3ggd2hlbiBsb2Fk\nZWQgYXMgbXUtcGx1Z2luLCBwcm9wcyBAcGJlYXJuZQoKIyMjIyA0LjQuMAoq\nIG9ubHkgYWRkIGN1c3RvbSB1c2VyIGFnZW50IG9uY2UgOlAKKiBhZGQgc3Vw\ncG9ydCBvZiBHaXRIdWIgRW50ZXJwcmlzZSB2aWEgbmV3IGBHaXRIdWIgRW50\nZXJwcmlzZWAgaGVhZGVyCiogc2FuaXRpemUgZmlsdGVyIGlucHV0CiogYWRk\nIHN1cHBvcnQgZm9yIHBhcnNpbmcgYHJlYWRtZS50eHRgIGZvciBfVmlldyBk\nZXRhaWxzXyBpbmZvcm1hdGlvbiB1c2luZyBgV29yZFByZXNzX1BsdWdpbl9S\nZWFkbWVfUGFyc2VyYCBieSBAbWFya2phcXVpdGgKKiBmaXhlZCBfVmlldyBk\nZXRhaWxzXyBsaW5rIHRvIHNob3cgZm9yIGFsbCBjYXNlcyB3aGVuIHBsdWdp\nbiB1c2luZyBHaXRIdWIgVXBkYXRlcgoqIHJlZmFjdG9yIGNyZWF0aW9uIG9m\nIGhlYWRlciBwYXJ0cyBhbmQgVVJJcwoKIyMjIyA0LjMuMQoqIFNwYW5pc2gg\ndHJhbnNsYXRpb24gYnkgW0pvc2UgTWlndWVsIEJlamFyYW5vXShodHRwczov\nL2dpdGh1Yi5jb20veERhZSkKKiBHZXJtYW4gdHJhbnNsYXRpb24gYnkgW0xp\nbnVzIE1ldHpsZXJdKGh0dHBzOi8vZ2l0aHViLmNvbS9saW1lbmV0KQoqIHNx\ndWlzaCBQSFAgbm90aWNlcwoqIGFkZCBjdXN0b20gdXNlciBhZ2VudCB0byBg\nd3BfcmVtb3RlX2dldGAgYW5kIHR3ZWFrIGVycm9yIG1lc3NhZ2UgYXQgcmVx\ndWVzdCBvZiBHaXRIdWIgOy0pCiogZml4ZWQgZWRnZSBjYXNlIHJlbmFtaW5n\nIGJ1ZwoKIyMjIyA0LjMuMAoqIHVzZSBAV1BVcGRhdGVQaHAgYGNsYXNzIFdQ\nVXBkYXRlUGhwYCBmb3IgUEhQIHZlcnNpb24gY2hlY2tpbmcKKiB1c2UgaHR0\ncHM6Ly9hcGkud29yZHByZXNzLm9yZyBub3QgaHR0cAoqIEFyYWJpYyB0cmFu\nc2xhdGlvbiBieSBbSHl5YW4gQWJvIEZBa2hlcl0oaHR0cHM6Ly9naXRodWIu\nY29tL2h5eWFuKQoqIG1ha2Ugc3RyaW5ncyBiZXR0ZXIgZm9yIHRyYW5zbGF0\naW9uIC0gdGhhbmtzIEBwZWRyby1tZW5kb25jYSBhbmQgQGZ4YmVuYXJkCiog\nYWRkaXRpb25hbCBQb3J0dWd1ZXNlIHRyYW5zbGF0aW9uIGJ5IFtQZWRybyBN\nZW5kb27Dp2FdKGh0dHBzOi8vZ2l0aHViLmNvbS9wZWRyby1tZW5kb25jYSkK\nKiByZWZhY3RvciBmb3IgZ2V0dGluZyBsb2NhbCBwbHVnaW4gYW5kIHRoZW1l\nIG1ldGEsIG5vdyBzaW1wbGVyIGZvciBhZGRpdGlvbmFsIEFQSXMgKEknbSB0\naGlua2luZyBhYm91dCB5b3UgR2l0TGFiKQoqIGZpeCBsaW5rIGluIFJFQURN\nRSB0byBHaXRIdWIgTGluawoqIGNvcnJlY3RseSBwYXNzIGFycmF5IGFzIGxh\nc3QgYXJndW1lbnQgaW4gYGFkZF9zZXR0aW5nc19maWVsZGAKKiBhZGQgZm9j\ndXMgdG8gVVJJIGlucHV0IGZpZWxkCiogYWRkIFNldHRpbmcgZm9yIHBlcnNv\nbmFsIEdpdEh1YiBBY2Nlc3MgVG9rZW4gdG8gYXZvaWQgQVBJIHJhdGUgbGlt\naXQgLSB0aGFua3MgQG1sdGVhbAoqIGFkZCBTZXR0aW5nIGZvciBicmFuY2gg\nc3dpdGNoaW5nIGZyb20gdGhlIFBsdWdpbnMgcGFnZQoqIGFkZCAnVmlldyBk\nZXRhaWxzJyBsaW5rIGluIFBsdWdpbnMgcGFnZQoKIyMjIyA0LjIuMgoqIGZp\neCBQT1QgYW5kIHNvbWUgdXBkYXRlZCBsYW5ndWFnZXMsIHRoYW5rcyBAZnhi\nZW5hcmQKKiBmaXggUEhQIG5vdGljZSBmb3IgYCRvcHRpb25zYCBzZXR0aW5n\ncyBvbiBpbml0aWFsIGluc3RhbGwgLSB0aGFua3MgQGJlbm9zbWFuCgojIyMj\nIDQuMi4xCiogYWRkIFBIUCB2ZXJzaW9uIGNoZWNrIGZvciBncmFjZWZ1bCBl\neGl0CiogYWRkIHRvIGVycm9yIG1lc3NhZ2UgZm9yIDQwMSBlcnJvci4KKiBz\nYXZlIHNldHRpbmdzIHdoZW4gcmVtb3RlIGluc3RhbGxpbmcgYSBwcml2YXRl\nIHJlcG8KCiMjIyMgNC4yLjAKKiBhZGRlZCBtaW51dGVzIHVudGlsIHJlc2V0\nIG9mIEdpdEh1YiBBUEkncyByYXRlIGxpbWl0IHRvIGVycm9yIG1lc3NhZ2UK\nKiBhZGRlZCBgcGxhY2Vob2xkZXIgPSAibWFzdGVyImAgdG8gcmVtb3RlIGlu\nc3RhbGwgYnJhbmNoIHRleHQgaW5wdXQKKiBJIHNob3VsZCBoYXZlIG1hZGUg\ndGhlIGxhc3QgdmVyc2lvbiA0LjIuMCBhcyBJIGFkZGVkIGEgbmV3IGZlYXR1\ncmUuIEknbGwgdHJ5IHRvIGJlIGJldHRlciB3aXRoIHNlbWFudGljIHZlcnNp\nb25pbmcgaW4gdGhlIGZ1dHVyZS4gOy0pCgojIyMjIDQuMS40CiogYWRkIG1l\nc3NhZ2UgdG8gY2VydGFpbiBhZG1pbiBwYWdlcyB3aGVuIEFQSSByZXR1cm5z\nIEhUVFAgZXJyb3IgY29kZQoqIHVwZGF0ZSBQT1QgdG8gcmVtb3ZlIEhUTUwg\nZW50aXR5IGNvZGVzIGZyb20gc3RyaW5ncyBhbmQgZ2VuZXJhbGx5IHRyeSB0\nbyBtYWtlIGkxOG4gYmV0dGVyCiogU3dlZGlzaCB0cmFuc2xhdGlvbiBieSBb\nQW5kcsOpYXMgTHVuZGdyZW5dKGh0dHBzOi8vZ2l0aHViLmNvbS9BZGV2YWRl\nKQoqIGFkZGVkIGxvZ28gdG8gUkVBRE1FIGFuZCBTZXR0aW5ncyBwYWdlCgoj\nIyMjIDQuMS4zCiogdXNlIGBzdHJ0b2xvd2VyYCBjb21wYXJpc29uIG9mIHBs\ndWdpbiBkaXJlY3RvcnkgYW5kIHJlcG8gbmFtZS4gVGhpcyBtaWdodCBpcyBh\nbiBpc3N1ZSByZWxhdGVkIHRvIHRoZSBtYW51YWwgaW5zdGFsbGF0aW9uIG9m\nIGEgcGx1Z2luIGJlZm9yZSBhbnkgdXBkYXRlIG1pZ2h0IG9jY3VyLiBUaGlz\nIGFsbG93cyB0aGUgKipWaWV3IGRldGFpbHMqKiBzY3JlZW4gdG8gZGlzcGxh\neSBpbiB0aGVzZSBpbnN0YW5jZXMgd2hlcmUgdGhlIGNhc2Ugb2YgdGhlIGRp\ncmVjdG9yeSBhbmQgcmVwbyBhcmVuJ3QgaWRlbnRpY2FsLiBUaGlzIGRvZXNu\nJ3Qgd29yayBmb3IgdGhlbWVzLgoKIyMjIyA0LjEuMgoqIGhpZGUgc3RhciBy\nYXRpbmdzIGZyb20gKipWaWV3IGRldGFpbHMqKiBzY3JlZW4gZm9yIHByaXZh\ndGUgcmVwb3MKCiMjIyMgNC4xLjEKKiBhZGQgYHBsdWdpbmAgdG8gYCRyZXNw\nb25zZWAgaW4gYFBsdWdpbjo6cHJlX3NldF9zaXRlX3RyYW5zaWVudF91cGRh\ndGVfcGx1Z2luc2AgdG8gZml4IFBIUCBOb3RpY2UKKiByZW5hbWUgYGNsYXNz\nZXNgIHRvIGBzcmNgIHRvIGZvbGxvdyBtb3JlIGNvbnZlbnRpb25hbCBuYW1p\nbmcKKiByZWZhY3RvciByZW5hbWluZyBjb2RlIHRvIGZ1bmN0aW9uIHVuZGVy\nIGFsbCBjaXJjdW1zdGFuY2VzLCBJIGhvcGUgOy0pCgojIyMjIDQuMS4wCiog\nYWRkZWQgcmVtb3RlIGluc3RhbGxhdGlvbiBvZiBwbHVnaW5zIG9yIHRoZW1l\ncywgYm90aCBwdWJsaWMgYW5kIHByaXZhdGUKKiByZW1vdGUgaW5zdGFsbGF0\naW9uIHVzaW5nIGVpdGhlciBmdWxsIFVSSSBvciBzaG9ydCBgPG93bmVyPjxy\nZXBvPmAgZm9ybWF0CiogY3JlYXRlZCBuZXcgdGFiYmVkIGludGVyZmFjZSBm\nb3Igc2V0dGluZ3MKKiBhZGRlZCBhbm90aGVyIHNjcmVlbnNob3QgdG8gcmVh\nZG1lCiogSSdkIGxpa2UgdG8gYXBvbG9naXplIHRvIGFsbCBteSB0cmFuc2xh\ndG9ycyBmb3IgYWRkaW5nIG5ldyBzdHJpbmdzIG9mdGVuLCB5b3UgZ3V5cyBh\ncmUgZ3JlYXQsIHRoYW5rcyEKCiMjIyMgNC4wLjEKKiBob3RmaXggdG8gZm9y\nY2UgYW4gYXJyYXkgdHlwZSB3aGVuIHNhbml0aXppbmcgc2V0dGluZ3MsIGl0\nIGdhdmUgbWUgYSBmYXRhbCBJIHdhc24ndCBleHBlY3RpbmcuCgojIyMjIDQu\nMC4wCiogY2hhbmdlZCBgaXNfYSgpYCB0byBgaW5zdGFuY2VvZmAgcGVyIGh0\ndHBzOi8vY29yZS50cmFjLndvcmRwcmVzcy5vcmcvY2hhbmdlc2V0LzMxMTg4\nCiogcmVxdWlyZXMgUEhQIDUuMyBvciBncmVhdGVyIGFzIGF1dG9sb2FkZXIg\nY2xhc3MgcmVxdWlyZXMgbmFtZXNwYWNpbmfigKgKKiB1cGRhdGVkIGFsbCBj\nbGFzc2VzIGZvciBuYW1lc3BhY2luZwoqIHJlbmFtZWQgZGlyZWN0b3J5IGFu\nZCBjbGFzcyBuYW1lcyB0byBhbGxvdyBmb3IgUFNSIDQgc3R5bGUgbG9hZGlu\nZ+KAqAoqIGNsZWFuIHVwIGEgbnVtYmVyIG9mIGZvcmVhY2ggbG9vcHMgd2hl\ncmUgSSB3YXMgb25seSB1c2luZyBlaXRoZXIga2V5IG9yIHZhbHVlLCBub3Qg\nYm90aAoqIFNwZWNpYWwgdGhhbmtzIGZvciBhbGwgbXkgdHJhbnNsYXRvcnMs\nIGVzcGVjaWFsbHkgQGdyYXBwbGVyIGZvciBhZGRpbmcgdHJhbnNsYXRpb24g\na2V5IGZvciBkZXNjcmlwdGlvbgoqIGJ1Z2ZpeCB0byBjb3JyZWN0bHkgcGlj\nayBDSEFOR0VTLk1EIG9yIENIQU5HRUxPRy5NRCByZWdhcmRsZXNzIG9mIGNh\nc2UKKiByZW1vdmVkIHJlYWRpbmcvc2F2aW5nIGBHaXRIdWIgQWNjZXNzIFRv\na2VuYCBoZWFkZXIgaW50byBzZXR0aW5ncy4gTXVzdCB1c2UgU2V0dGluZ3Mg\nUGFnZS4KCiMjIyMgMy4yLjMgLSAzLjIuNgoqIGFkZGVkIEZyZW5jaCB0cmFu\nc2xhdGlvbiBieSBAZGFuaWVsLW1lbmFyZAoqIGFkZGVkIEl0YWxpYW4gdHJh\nbnNsYXRpb24gYnkgQG92ZXJjbG9rawoqIGFkZGVkIFBvcnR1Z3Vlc2UgdHJh\nbnNsYXRpb24gYnkgQHZhbGVyaW9zb3V6YQoqIGFkZGVkIFVrcmFpbmlhbiB0\ncmFuc2xhdGlvbiBieSBAYW5kcmlpcnl6aGtvdiAob3VyIGZpcnN0IHRyYW5z\nbGF0aW9uISEpCgojIyMjIDMuMi4yCiogcmVtb3ZlIHNjcmFwaW5nIG9mIHVz\nZXIvcGFzcyBmcm9tIEJpdGJ1Y2tldCBVUkkgYXMgaXQncyBubyBsb25nZXIg\nbmVlZGVkCiogdXNlIGBSZXF1aXJlcyBXUGAgaGVhZGVyIHRvIGZpbGwgdmll\ndyBvcHRpb25zIGRldGFpbAoqIHJlbmFtZSBwcml2YXRlIG1ldGhvZHMgdG8g\nYmVnaW4gd2l0aCB1bmRlcnNjb3JlCiogYWRkIHNjcmVlbnNob3QgdG8gUkVB\nRE1FIGZvciBTZXR0aW5ncyBQYWdlIChvbmx5IDcwIGtCKQoqIHN0b3AgcmUt\nY3JlYXRpbmcgdHJhbnNpZW50IG9mIHRyYW5zaWVudHMgaWYgaXQgYWxyZWFk\neSBleGlzdHMKCiMjIyMgMy4yLjEKKiByZWZhY3RvcmVkIGFkZGluZyBleHRy\nYSBoZWFkZXJzIHRvIGBjbGFzcyBHaXRIdWJfVXBkYXRlcmAgdG8gZW5zdXJl\nIHRoZXkncmUgYWRkZWQgYmVmb3JlIHRoZXkncmUgbmVlZGVkLCByZXNvbHZl\ncyBpc3N1ZSB3aXRoIFdvb1RoZW1lcyBVcGRhdGVyIHBsdWdpbgoqIHVwZGF0\nZSAucG90IGZpbGUKCiMjIyMgMy4yLjAKKiBjaGFuZ2VkIHNldHRpbmdzIHBh\nZ2UgYW5kIGhvdyBCaXRidWNrZXQgUHJpdmF0ZSByZXBvcyBhdXRoZW50aWNh\ndGUgd2l0aCB5b3VyIHVzZXJuYW1lL3Bhc3N3b3JkCiogdXBkYXRlIC5wb3QK\nCiMjIyMgMy4xLjEKKiBtaW5vciB0cmFuc2llbnQgY2xlYW51cAoqIHVwZGF0\nZSAucG90IGZpbGUKKiBmaXggdG8gZ2V0IGFsbCB0aGVtZXMgdW5kZXIgYm90\naCBzaW5nbGUgYW5kIG11bHRpc2l0ZSBpbnN0YWxscwoKIyMjIyAzLjEuMAoq\nIHdvb3QhISAtIHVwZGF0aW5nIGZyb20gQml0YnVja2V0IHByaXZhdGUgcmVw\nb3Mgbm93IHdvcmtzISEKKiBmaXggdG8gb25seSBhZGQgSFRUUCBBdXRoZW50\naWNhdGlvbiBoZWFkZXIgdW5kZXIgY29ycmVjdCBjaXJjdW1zdGFuY2VzLiBU\naGlzIG9idmlhdGVzIG5lZWQgdG8gZml4IGZvciBvdGhlciBBUElzIHRoYXQg\nbWlnaHQgYWxzbyB1c2UgSFRUUCBBdXRoZW50aWNhdGlvbi4KKiBmaXggdG8g\nY29ycmVjdGx5IGFkZCBHaXRIdWIgQWNjZXNzIFRva2VuIGZyb20gYCRvcHRp\nb25zYCB0byBgJGRvd25sb2FkX2xpbmtgIC0gb29wcwoqIGNoYW5nZXMgYCRv\ncHRpb25zYCB0byBgcHJpdmF0ZSBzdGF0aWMgJG9wdGlvbnNgIHRvIHNhdmUg\nYSBmZXcgZGF0YWJhc2UgY2FsbHMKKiBTZXR0aW5ncyBwYWdlICoqb25seSoq\nIHNob3dzIHByaXZhdGUgcmVwb3MsIGV4Y2VwdCBmb3IgaW5pdGlhbCBzZXR1\ncAoqIHNpbXBsZXIgdGVzdCBmb3IgY2hlY2tpbmcgYnJhbmNoIGFzIGRvd25s\nb2FkIGVuZHBvaW50CiogY29ycmVjdGx5IHVzZSBgcGFyZW50OjpgIGluc3Rl\nYWQgb2YgYHNlbGY6OmAKKiBtYW55IHVwZGF0ZXMgZm9yIHRyYW5zbGF0aW9u\nCiogZml4IHRvIGVuc3VyZSB0aGVtZSByb2xsYmFjayBhbmQgdXBkYXRpbmcg\nd29ya3MgaW4gYm90aCBzaW5nbGUgaW5zdGFsbCBhbmQgbXVsdGlzaXRlCiog\nZml4IHRvIHNhdmUgc2V0dGluZ3MgZnJvbSBzaW5nbGUgc2l0ZSBpbnN0YWxs\nYXRpb25zCgojIyMjIDMuMC43CiogbW9yZSBlZmZpY2llbnQgc29sdXRpb24g\ndG8gSFRUUCBBdXRoZW50aWNhdGlvbiBpc3N1ZXMKKiBtb3JlIGVmZmljaWVu\ndCBvcHRpb25zIGNsZWFudXAKKiByZW1vdmUgc29tZSB1bm5lY2Vzc2FyeSBj\nb2RlIHJlc3VsdGluZyBpbiBmZXcgZGF0YWJhc2UgY2FsbHMKKiBjaGFuZ2Ug\nZGVmYXVsdCBvcHRpb24gc2V0dGluZyB0byB1c2UgYGFkZF9zaXRlX29wdGlv\nbmAgc28gbm90IGF1dG9sb2FkaW5nIG9wdGlvbnMKCiMjIyMgMy4wLjYKKiBm\naXggZm9yIG90aGVyIEFQSXMgdGhhdCB1c2UgSFRUUCBBdXRoZW50aWNhdGlv\nbiwgbGlrZSBKZXRQYWNrIC0gdGhhbmtzIEB0c3F1ZXoKCiMjIyMgMy4wLjUK\nKiBmaXggbW9yZSBQSFAgTm90aWNlcwoqIGNvcnJlY3RseSBzZXQgZGVmYXVs\ndHMgZm9yIFNldHRpbmdzIHBhZ2UgOlAKKiByZW1vdmUgb3B0aW9ucyBmb3Ig\ncGx1Z2lucy90aGVtZXMgdGhhdCBhcmUgbm8gbG9uZ2VyIHByZXNlbnQKCiMj\nIyMgMy4wLjQKKiBXaG8gd291bGQndmUgdGhvdWdodCBgZmlsZV9leGlzdHNg\nIHdhcyBjYXNlLXNlbnNpdGl2ZQoqIHdoZW4gY2hlY2tpbmcgbWV0YSwgdXNl\nIGBlbXB0eSgpYCBpbnN0ZWFkIG9mIGAhIGlzc2V0KClgIGZvciBgbnVsbCBh\ncnJheWAKKiBzZXQgZGVmYXVsdHMgZm9yIFNldHRpbmdzIHBhZ2UKKiBmaXgg\nYSBudW1iZXIgb2YgUEhQIE5vdGljZXMKCiMjIyMgMy4wLjMKKiBCdWdmaXgg\ndG8gcHJvcGVybHkgYXV0aGVudGljYXRlIG9uIEpldFBhY2sgU3RhdHMgcGFn\nZQoKIyMjIyAzLjAuMgoqIHNpbXBsaWZ5IGNoZWNrIGFuZCBleGl0IG9uIFNl\ndHRpbmdzIGlmIG5vIEJpdGJ1Y2tldCBwbHVnaW5zL3RoZW1lcwoKIyMjIyAz\nLjAuMQoqIFJlbW92ZSBCaXRidWNrZXQgc2V0dGluZ3MgZnJvbSBwYWdlIGlm\nIG5vIGFwcHJvcHJpYXRlIHBsdWdpbnMgb3IgdGhlbWVzIGV4aXN0LgoKIyMj\nIyAzLjAuMAoqIFNldHRpbmdzIFBhZ2UgZm9yIHlvdXIgR2l0SHViIEFjY2Vz\ncyBUb2tlbnMKKiBhZGRlZCBQT1QgZmlsZSBhbmQgc29tZSBtb3JlIGkxOG4g\nZml4ZXMgLSB0aGFua3MgQGdyYXBwbGVyCiogYWRkZWQgYFJlcXVpcmVzIFdQ\nYCBhbmQgYFJlcXVpcmVzIFBIUGAgaGVhZGVycyB0byBzZXQgbWluaW11bSB2\nZXJzaW9uIHJlcXVpcmVtZW50cyAtIGZvciBAR2FyeUoKKiBtb3ZlIHVwZGF0\nZSBjaGVjayB0byBmdW5jdGlvbiB0byBhbHNvIGNoZWNrIFdQIGFuZCBQSFAg\ndmVyc2lvbiByZXF1aXJlbWVudHMuCiogdW5zZXQgYW55IEhUVFAgQXV0aG9y\naXphdGlvbiBoZWFkZXJzIGZvciBHaXRIdWIgQVBJIGNhbGxzIGFzIHRoaXMg\nZ2l2ZXMgYSA0MDEgZXJyb3IuIFJhcmUgcG90ZW50aWFsIGJ1ZyBpZiB5b3Ug\naGF2ZSBwcml2YXRlIEJpdGJ1Y2tldCByZXBvcy4KCiMjIyMgMi45LjAKKiBt\nb3ZlIGluc3RhbnRpYXRpb24gb2YgYGNsYXNzIEdpdEh1Yl9QbHVnaW5fVXBk\nYXRlcmAgYW5kIGBjbGFzcyBHaXRIdWJfVGhlbWVfVXBkYXRlcmAgaW50byBg\nR2l0SHViX1VwZGF0ZXI6OmluaXQoKWAgYW5kIHJlc3RyaWN0IHRvIGBjdXJy\nZW50X3VzZXJfY2FuKCAndXBkYXRlX3BsdWdpbnMnIClgIGFuZCBgY3VycmVu\ndF91c2VyX2NhbiggJ3VwZGF0ZV90aGVtZXMnIClgIHNvIHRoYXQgbm9uLXBy\naXZpbGVnZWQgdXNlcnMgZG9uJ3QgaW5jdXIgbG9hZCB0aW1lLgoqIG5vdyBs\nb2FkaW5nIGNsYXNzZXMgdmlhIGBzcGxfYXV0b2xvYWRfcmVnaXN0ZXJgCiog\nc3dpdGNoZWQgdG8gYGVydXNldi9wYXJzZWRvd25gIGZvciByZW5kZXJpbmcg\nY2hhbmdlbG9ncywgZmFzdGVyIGFuZCBtb3JlIGxpZ2h0LXdlaWdodC4KKiBu\nb3cgcGFyc2VzIHJlbW90ZSBmaWxlIGluZm8gdG8gc2F2ZSBvbmx5IGZpbGUg\naGVhZGVycyB0byB0cmFuc2llbnQuIEhvcGVmdWxseSBzcGVlZHMgdXAgZGF0\nYWJhc2UgcmV0cmlldmFsIG9mIHRyYW5zaWVudC4KKiBhZGRlZCBSRUFETUUg\nbGluayB0byBHaXRIdWIgTGluayBwbHVnaW4gYnkgQHN6ZXBldmlrdG9yCiog\nYWRkZWQgbXUtcGx1Z2luIG9wdGlvbiBhbmQgaW5zdHJ1Y3Rpb25zLgoqIGFi\nb3ZlIHJldmlzaW9ucyBtb3N0bHkgZHVlIHRvIEBzemVwZXZpa3RvciBwcm9k\nZGluZyBtZS4gOy0pCiogYWNjZXB0IGBDSEFOR0VTLm1kYCBvciBgQ0hBTkdF\nTE9HLm1kYCBmb3IgcHJvY2Vzc2luZywgZm9yIEBHYXJ5SgoqIGNvbXBvc2Vy\nIHN1cHBvcnQgYWRkZWQsIHRoYW5rcyBAaHl5YW4KCiMjIyMgMi44LjEKKiBm\naXggZm9yIFdQIENvZGluZyBHdWlkZWxpbmVzCiogYWRkZWQgY2hlY2sgZm9y\nIHVwZ3JhZGUgcHJvY2VzcyBpbnN0ZWFkIG9mIGAkX0dFVFsnYWN0aW9uJ11g\nIChwcm9wcyBAU0x2OTkpCiogbGF1bmNoIGNsYXNzZXMgZnJvbSBgR2l0SHVi\nX1VwZGF0ZXI6OmluaXQoKWAgc28gY2FuIGxvYWQgaW4gYGFkZF9hY3Rpb24o\nICdpbml0JywgLi4uYCBmcm9tIGBfX2NvbnN0cnVjdCgpYC4gSG9wZWZ1bGx5\nIHRoaXMgd2lsbCBzb2x2ZSBpc3N1ZXMgd2l0aCByZW1vdGUgdXBncmFkZXJz\nIGxpa2UgaVRoZW1lcyBTeW5jLCBNYW5hZ2VXUCwgSW5maW5pdGVXUCwgYW5k\nIE1haW5XUC4gVGhhbmtzIEBqYXp6c2VxdWVuY2UgZm9yIHRlc3RpbmcuIFRo\nYW5rcyBAU0x2OTkgZm9yIGJyaW5naW5nIHRoaXMgdG8gbXkgYXR0ZW50aW9u\nLgoKIyMjIyAyLjguMAoqIHJlZmFjdG9yIEFQSSBjbGFzc2VzIGFuZCBgY2xh\nc3MgR2l0SHViX1VwZGF0ZXJgIHRvIGFkZCBleHRyYSBoZWFkZXJzIGZyb20g\nQVBJIGNsYXNzLiBUaGlzIHNob3VsZCBhbGxvdyBmb3IgYmV0dGVyIGFic3Ry\nYWN0aW9uLiBKdXN0IG5lZWQgdG8gY2FsbCBgR2l0SHViX1VwZGF0ZXJfe3Jl\ncG99X0FQSTo6YWRkX2hlYWRlcnMoKWAgaW4gYGNsYXNzIEdpdEh1Yl9QbHVn\naW5fVXBkYXRlcmAgYW5kIGBjbGFzcyBHaXRIdWJfIFRoZW1lX1VwZGF0ZXJg\nLgoqIHJlbW92ZSBAc2luY2UgdGFncwoqIG1vdmUgYG1heWJlX2F1dGhlbnRp\nY2F0ZV9odHRwYCB0byBgY2xhc3MgR2l0SHViX1VwZGF0ZXJfQml0YnVja2V0\nX0FQSWAgYXMgaXQncyBub3QgdXNlZCBlbHNld2hlcmUKKiB1c2Ugbm9uLXN0\ncmljdCBjaGVjayBmb3IgaHR0cCByZXNwb25zZSBjb2RlICh0aGFua3MgQGVj\naGF2KQoKIyMjIyAyLjcuMQoqIGFkZGVkIGVhcmx5IGV4aXQgaWYgbm8gbG9j\nYWwgYENIQU5HRVMubWRgIGZpbGUgZXhpc3RzLiBUaGlzIHNob3VsZCBzYXZl\nIGFuIEFQSSBjYWxsLgoqIHB1bGwgdXBkYXRlIGZyb20gV1Aub3JnIGlmIHBs\ndWdpbiBob3N0ZWQgaW4gV1Aub3JnIGFuZCBicmFuY2ggaXMgYG1hc3RlcmAu\nCgojIyMjIDIuNy4wCiogY3JlYXRlZCBmdW5jdGlvbnMgZm9yIGdldHRpbmcg\nYW5kIHNldHRpbmcgdHJhbnNpZW50cwoqIGFkZGVkIGRlbGV0aW9uIG9mIGFs\nbCB0cmFuc2llbnRzIGlmIF9mb3JjZS1jaGVja18gaXMgdXNlZAoqIHJlbW92\nZWQgYEdpdEh1YiBUaW1lb3V0YCBhbmQgYEJpdGJ1Y2tldCBUaW1lb3V0YCBo\nZWFkZXJzCiogZml4IGZvciBgd3BfcmVtb3RlX3JldHJpZXZlX3Jlc3BvbnNl\nX2NvZGVgIGNoZWNrCiogZ2l2ZSBTZXRoIENhcnN0ZW5zIHByb3BlciBjcmVk\naXQgaW4gUkVBRE1FLm1kCiogbW92ZSBgZnVuY3Rpb24gbWFrZV9yYXRpbmdg\nIHRvIGBjbGFzcyBHaXRIdWJfVXBkYXRlcmAKKiBmaXggZm9yIHBsdWdpbiBu\nYW1lIGluIHVwZGF0ZSBkZXRhaWwgdmlldwoqIGZpeCBmb3IgQml0YnVja2V0\nIHJlcG8gd2l0aCBubyBicmFuY2ggdGFnCiogc2V0IGRlZmF1bHQgdGltZW91\ndCB0byAxMiBob3Vycywgc2FtZSBhcyBXUC5vcmcKKiBmaXggZm9yIDMuOSBz\nZXR0aW5nIHRoZW1lIHVwZGF0ZSBkZXRhaWxzIHRvIGBkaXNwbGF5Om5vbmU7\nYAoqIGZpeCBmb3IgZXJyb3Igd2hlbiBpbnN0YWxsaW5nIHRoZW1lcyBmcm9t\nIFdQLm9yZyByZXBvCiogZml4IGZvciBpbmNvcnJlY3QgcGx1Z2luIHVwZ3Jh\nZGUgbGluayBpbiBkZXRhaWwgcG9wdXAKCiMjIyMgMi42LjMKKiBxdWljayBl\ncnJvciBjaGVja2luZyBmaXggZm9yIGB3cF9yZW1vdGVfZ2V0YCBlcnJvciB0\nbyB3b3JkcHJlc3Mub3JnIEFQSSAtIHRoYW5rcyBAZGVja2Vyd2ViCgojIyMj\nIDIuNi4xCiogZml4ZWQgQ0hBTkdFUy5tZCBmb3IgR0ZNIHN0cmlrZS10aHJv\ndWdoCgojIyMjIDIuNi4wCiogYWRkZWQgdHJhbnNpZW50IHRvIGBwbHVnaW5z\nX2FwaWAgY2FsbAoqIGJldHRlciB6ZXJvaW5nIG9mIHZhcmlhYmxlcyBpbiBn\nZXR0aW5nIGxvY2FsIHRoZW1lIGRhdGEKKiBhZGQgZXJyb3IgY2hlY2tpbmcg\ndG8gbG9hZGluZyBvZiBjbGFzc2VzCiogc2V0IGRlZmF1bHQgdHJhbnNpZW50\nIHRpbWVvdXQgdG8gNCBob3VycwoqIGFkZGVkIG5ldyBoZWFkZXIgYEdpdEh1\nYiBUaW1lb3V0YCBvciBgQml0YnVja2V0IFRpbWVvdXRgIHRvIHNldCBpbmRp\ndmlkdWFsIHBsdWdpbi90aGVtZSB0cmFuc2llbnQgdGltZW91dAoqIH5+Zml4\nZWQgZm9yIEJpdGJ1Y2tldCBwcml2YXRlIHJlcG9zfn4KKiBhYmlkZSBieSBX\nUCBDb2RpbmcgR3VpZGVsaW5lcywgZXNwLiBmb3IgYnJhY2VzCiogbW9yZSBl\ncnJvciBjaGVja2luZyBmb3IgY29ycmVjdCB2YXJpYWJsZSBmZXRjaAoqIGFk\nZGVkIGdyYWNlZnVsIGV4aXQgaWYgcmVwbyBkb2VzIG5vdCBleGlzdAoKIyMj\nIyAyLjUuMAoqIGFkZGVkIGBjbGFzcyBHaXRIdWJfVXBkYXRlcl9CaXRidWNr\nZXRfQVBJYCBmb3IgQml0YnVja2V0IGhvc3RlZCBwbHVnaW5zIGFuZCB0aGVt\nZXMuCiogaW1wcm92ZW1lbnRzIHRvIGVmZmljaWVuY3kgYnkgbm90IGxvYWRp\nbmcgd2hlbiBgRE9JTkdfQUpBWGAKKiBpbXByb3ZlbWVudHMgdG8gZWZmaWNp\nZW5jeSBpbiB1c2Ugb2YgdHJhbnNpZW50cwoKIyMjIyAyLjQuNQoqIHNldCBQ\nSFAgTWFya2Rvd25FeHRyYSBwb3N0cyBhbmQgY29tbWVudHMgbWFya3VwIHRv\nIGZhbHNlIHByb3BzIEBNaWtlSGFuc29uTWUKKiByZW1vdmUgV1AgcGx1Z2lu\nIGhlYWRlciBmcm9tIGBtYXJrZG93bi5waHBgCgojIyMjIDIuNC40CiogZm9y\nZ290IHRvIGluY2x1ZGUgbWFya2Rvd24ucGhwIC0gZGFtbgoKIyMjIyAyLjQu\nMgoqIHJlbW92ZWQgUEhQIE1hcmtkb3duIExpYiBhcyBpdCByZXF1aXJlZCBQ\nSFAgPj0gNS4zIGFuZCB0aGF0J3MgaGlnaGVyIHRoYW4gcmVxdWlyZWQgYnkg\nV29yZFByZXNzIGNvcmUuCgojIyMjIDIuNC4xCiogc3dpdGNoZWQgZnJvbSBQ\nSFAgTWFya2Rvd24gQ2xhc3NpYyB0byB0aGUgbmV3IFBIUCBNYXJrZG93biBM\naWIgdG8gcHJldmVudCBjb2xsaXNpb25zIHdpdGggb3RoZXIgcGx1Z2lucywg\nbGlrZSBNYXJrZG93biBPbiBTYXZlL0ltcHJvdmVkIHRoYXQgYWxzbyBsb2Fk\nIFBIUCBNYXJrZG93biBvciBQSFAgTWFya2Rvd25FeHRyYS4KCiMjIyMgMi40\nLjAKKiBmaXhlZCB0cmFuc2llbnQgYXNzaWdubWVudCBmb3IgdGFncyByZXR1\ncm5pbmcgZW1wdHkgYXJyYXkuCiogYWRkZWQgdHJhbnNpZW50IGZvciBgQ0hB\nTkdFUy5tZGAgdG8gdGhlbWVzLCBzaG91bGQgZnVydGhlciBjdXQgZG93biBv\nbiBBUEkgNDAzIGVycm9ycy4KKiBuZXcgZmVhdHVyZTogdGhlbWUgcm9sbGJh\nY2sgdG8gcHJldmlvdXMgdmVyc2lvbiB0aGFua3MgQHNjYXJzdGVucwoqIGNo\nYW5nZWQgdXBkYXRlIG1ldGhvZG9sb2d5IHRvIHVzZSBtb3N0IHJlY2VudCB0\nYWcgZmlyc3QuIElmIG5vdCB0YWdnZWQgdXBkYXRlIGZyb20gZGVmYXVsdCBi\ncmFuY2guCgojIyMjIDIuMy4zCiogZml4ZWQgZG93bmxvYWQgbGluayB0byBo\nYXZlIGNvcnJlY3QgYmFzZSBVUkkgZm9yIFJlcG9zaXRvcnkgQ29udGVudHMg\nQVBJLiBPb3BzLgoKIyMjIyAyLjMuMgoqIHJld3JpdGUgb2YgYEdpdEh1Yl9V\ncGRhdGVfR2l0SHViX0FQSTo6Y29uc3RydWN0X2Rvd25sb2FkX2xpbmtgIHRv\nIGRvd25sb2FkIHppcGJhbGwgYW5kIHByb3ZpZGUgYXBwcm9wcmlhdGUgZW5k\ncG9pbnQuCgojIyMjIDIuMy4xCiogbm93IHNhdmluZyB0cmFuc2llbnQgYW5k\nIGFkZGluZyBlYXJseSByZXR1cm4gaWYgQVBJIHJldHVybnMgNDA0LCB0aGlz\nIHNob3VsZCBzcGVlZCB1cCBwbHVnaW4gd2hlbiByZXBvIGRvZXNuJ3QgaGF2\nZSBgQ0hBTkdFUy5tZGAgZmlsZSBhbmQgcHJvdmlkZSBmb3IgZWFybHkgcmV0\ndXJuIGluIG5vIHRhZ3MgaGF2ZSBiZWVuIGNyZWF0ZWQuIElmIG5vIHRhZ3Mg\naGF2ZSBiZWVuIGNyZWF0ZWQgdGhlIEFQSSBpcyBzdGlsbCBoaXQuCgojIyMj\nIDIuMy4wCiogbW92ZWQgYWN0aW9uIGhvb2sgdG8gcmVtb3ZlIGBhZnRlcl90\naGVtZV9yb3dfJHN0eWxlc2hlZXRgIHRvIGBjbGFzcyBHaXRIdWJfVGhlbWVf\nVXBkYXRlcmAKKiBhZGRlZCBmZWF0dXJlOiBpZiBicmFuY2ggb3RoZXIgdGhh\nbiBgbWFzdGVyYCBpcyBzcGVjaWZpZWQgdGhlbiB0YWdnZWQgdmVyc2lvbiB3\naWxsIGJlIGlnbm9yZWQuIFRoaXMgc2hvdWxkIG1ha2UgaXQgbXVjaCBlYXNp\nZXIgZm9yIGJldGEgdGVzdGluZyB0byBncm91cHMuIFNlZSBbUkVBRE1FLm1k\nXShodHRwczovL2dpdGh1Yi5jb20vYWZyYWdlbi9naXRodWItdXBkYXRlci9i\nbG9iL2RldmVsb3AvUkVBRE1FLm1kKQoqIGNvbnZlcnRlZCBgY2xhc3MgR2l0\nSHViX1VwZGF0ZV9HaXRIdWJfQVBJYCB0byBleHRlbnNpb24gb2YgYGNsYXNz\nIEdpdEh1Yl9VcGRhdGVyYAoqIGNvbWJpbmVkIGBkZXNjcmlwdGlvbmAgYW5k\nIGBjaGFuZ2Vsb2dgIHRvIHNob3cgaW4gdGhlbWUgZGV0YWlsIHZpZXcuIFJv\ndWdoIGZvcm1hdHRpbmcuIE11bHRpc2l0ZSBvbmx5LgoqIGdyZWF0bHkgc2lt\ncGxpZmllZCBidWcgZml4IGZyb20gMi4yLjIsIG5vdyB1c2luZyBUaGVtZXMg\nQVBJLgoKIyMjIyAyLjIuMgoqIGJ1ZyBmaXggZm9yIHJlbW92aW5nIHVwZGF0\nZSBub3RpY2UgZm9yIFdQLm9yZyByZXBvIHRoZW1lcy4gT29wcy4KCiMjIyMg\nMi4yLjEKKiBtaW5vciBjb2RlIHNpbXBsaWZpY2F0aW9ucwoqIG1hbnkgdGhh\nbmtzIHRvIEBncmFwcGxlciBmb3Igc29sdmluZyBob3cgdG8gcmVtb3ZlIGRl\nZmF1bHQgYGFmdGVyX3RoZW1lX3Jvd18kc3R5bGVzaGVldGAKCiMjIyMgMi4y\nLjAKKiBtb3ZlZCBjaGVjayBhbmQgbG9hZCBmb3IgYG1hcmtkb3duLnBocGAg\naW50byBvbmx5IGZ1bmN0aW9uIHRoYXQgdXNlcyBpdC4KKiBtaW5vciBSRUFE\nTUUgdXBkYXRlcwoqIGFkZGVkIGFib3J0IGlmIHRoaXMgcGx1Z2luIGNhbGxl\nZCBkaXJlY3RseQoqIGFkZGVkIGFkZGl0aW9uYWwgZGF0YSB0byB1cGRhdGUg\nYXZhaWxhYmxlIHNjcmVlbiBpbiBib3RoIHBsdWdpbnMgYW5kIHRoZW1lcyAt\nIGlzc3VlICM4CiogcmVtb3ZlZCByZXF1aXJlbWVudCBmb3IgdGFncyBpbiB0\naGVtZSB1cGRhdGluZwoqIHJlbW92ZWQgZXh0cmEgbGluZSBlbmRpbmdzIGZy\nb20gYHJlbW90ZV92ZXJzaW9uYAoqIGFkZGVkIHJhdGluZ3MgZnVuY3Rpb24g\nZm9yIGNyZWF0aW5nIHN0YXIgcmF0aW5ncyBiYXNlZCB1cG9uIEdpdEh1YiBy\nZXBvIGRhdGEuCiogYnJpbmcgcGFydHMgb2YgYGNsYXNzIEdpdEh1Yl9UaGVt\nZV9VcGRhdGVyYCBjb2RlIG9uIHBhciB3aXRoIGBjbGFzcyBHaXRIdWJfUGx1\nZ2luX1VwZGF0ZXJgCiogYWRkZWQgJ2dodS0nIHByZWZpeCB0byB0cmFuc2ll\nbnRzCiogcmlwcGVkIG91dCB0aGVtZSByb2xsYmFjayBjb2RlLiBNb3ZlZCB0\nbyBpdCdzIG93biBicmFuY2ggb24gR2l0SHViLgoqIGFkZCBjdXN0b20gYGFm\ndGVyX3RoZW1lX3VwZGF0ZV97JHN0eWxlc2hlZXR9YCBkZXRhaWwuCgojIyMj\nIDIuMS4xCiogYnVnIGZpeCB0byByZXR1cm4gZWFybHkgZnJvbSBjYWxsIHRv\nIGBwbHVnaW5zX2FwaWAgaWYgbm90IGdldHRpbmcgcGx1Z2luIGluZm9ybWF0\naW9uLiBGaXhlcyBpc3N1ZSB3aXRoIFBsdWdpbiBTZWFyY2guCgojIyMjIDIu\nMS4wCiogc2ltcGxpZnkgY2hlY2sgZm9yIGBjbGFzcyBNYXJrZG93bl9QYXJz\nZXJgCiogcmVmYWN0b3IgdG8gcGFzcyBgY2xhc3MgR2l0SHViX1VwZGF0ZV9H\naXRIdWJfQVBJYCBhcyBjbGFzcyBvYmplY3QuIFRoaXMgc2hvdWxkIGVuYWJs\nZSB0aGUgY3JlYXRpb24gb2Ygb3RoZXIgY2xhc3Mgb2JqZWN0cyBmb3IgQml0\nYnVja2V0LCBldGMuCiogZml4IGZvciBzZXR0aW5nIGJyYW5jaCB3aGVuIEFQ\nSSBub3QgcmVzcG9uZGluZwoqIGZpeCBmb3Igc2V0dGluZyBkb3dubG9hZCBs\naW5rIHdoZW4gQVBJIG5vdCByZXNwb25kaW5nCiogcmVkZXNpZ25lZCBmaWx0\nZXIgZm9yIHNldHRpbmcgdHJhbnNpZW50IHRpbWVvdXQsIGJ1dCBzdGlsbCBu\nb3Qgd29ya2luZyAocHVsbCByZXF1ZXN0cyB3ZWxjb21lKQoKIyMjIyAyLjAu\nMQoqIGJ1ZyBmaXggdG8gbm90IGxvYWQgYG1hcmtkb3duLnBocGAgdHdpY2Uu\nIEp1c3QgaW4gY2FzZSBpdCdzIGxvYWRlZCBieSBzb21lIG90aGVyIHBsdWdp\nbi4KCiMjIyMgMi4wLjAKKiByZWFycmFuZ2VkIHdoZXJlIEkgcHV0IGBHaXRI\ndWIgUGx1Z2luIFVSSWAgaGVhZGVyLCBldGMuIGluIFJFQURNRSBhbmQgaW4g\ndGhpcyBwbHVnaW4uCiogbWlub3Igc3BlbGxpbmcgZml4ZXMKKiByZW5hbWVk\nIHNvbWUgZnVuY3Rpb25zIGZvciB0aGVpciBob29rcwoqIHJlZmFjdG9yZWQg\nYGNsYXNzIEdpdEh1Yl9QbHVnaW5fVXBkYXRlcmAgYW5kIGBjbGFzcyBHaXRI\ndWJfVGhlbWVfVXBkYXRlcmAgdG8gdXNlIHN0ZENsYXNzIG9iamVjdHMKKiBm\ndXJ0aGVyIHJlZmFjdG9yZWQgYmFzZSBjbGFzcyBgR2l0SHViX1VwZGF0ZXJg\nIHRvIGNvbnRhaW4gcmVuYW1pbmcgY29kZSBhbmQgY3JlYXRlIHN0ZENsYXNz\nIG9iamVjdHMgZm9yIGRhdGEuCiogYWRkZWQgc29tZSBhYmlsaXR5IHRvIHNl\nZSBjaGFuZ2Vsb2cgZm9yIEdpdEh1YiBob3N0ZWQgcGx1Z2lucy4KKiB0cnlp\nbmcgdG8gZm9sbG93IDxhIGhyZWY9Imh0dHBzOi8vZ2l0aHViLmNvbS90b21t\nY2Zhcmxpbi9Xb3JkUHJlc3MtUGx1Z2luLUJvaWxlcnBsYXRlIj5Xb3JkUHJl\nc3MgUGx1Z2luIEJvaWxlcnBsYXRlPC9hPiwgc28gcmVuYW1lZCBgY2xhc3Nl\nc2AgdG8gYGluY2x1ZGVzYAoqIHJlZmFjdG9yZWQgcHV0dGluZyBhbGwgcmVt\nb3RlIGFwaSBjYWxscyBpbiBuZXcgYGNsYXNzIEdpdEh1Yl9QbHVnaW5fVXBk\nYXRlcl9BUElgLgoqIFRoZW1lIHVwZGF0aW5nIHNob3VsZCBub3cgYmUgYWJs\nZSB0byBoYXZlIGEgc3BlY2lmaWVkIGJyYW5jaC4KKiB3b3JrcyBvbiBXb3Jk\nUHJlc3MgMy44CiogaW5jbHVkZWQgTWljaGVsIEZvcnRpbidzIFtQSFAtTWFy\na2Rvd25dKGh0dHA6Ly9taWNoZWxmLmNhL3Byb2plY3RzL3BocC1tYXJrZG93\nbi8pIGZvciByZW5kZXJpbmcgYENIQU5HRVMubWRgCgojIyMjIDEuOC4xCiog\nYWRkZWQgc29tZSB2YXJpYWJsZSBkZWNsYXJhdGlvbnMKKiBhZGRlZCBlYXJs\neSByZXR1cm4gaW4gbm8gR2l0SHViIHNvdXJjZWQgcGx1Z2lucyBvciB0aGVt\nZXMgYXJlIGlkZW50aWZpZWQKCiMjIyMgMS44LjAKKiByZWZhY3RvcmVkIHRv\nIHVzZSBiYXNlIGNsYXNzIGBHaXRIdWJfVXBkYXRlcmAgYW5kIGV4dGVuZGlu\nZyBjbGFzc2VzIGBHaXRIdWJfUGx1Z2luX1VwZGF0ZXJgIGFuZCBgR2l0SHVi\nX1RoZW1lX1VwZGF0ZXJgLgoKIyMjIyAxLjcuNAoqIGNoYW5nZWQgbWV0aG9k\nIG9mIG5vdCBvdmVyd3JpdGluZyBleHRyYSBoZWFkZXJzIHRvIHBhc3MgYXJy\nYXkuCgojIyMjIDEuNy4zCiogY2hhbmdlIGAnLi4uJ2AgdG8gYCYjODIzMGAg\naW4gcmVuYW1pbmcgbm90aWZpY2F0aW9uCiogZml4IHRvIG5vdCBvdmVyd3Jp\ndGUgZXh0cmEgaGVhZGVycyBvZiBvdGhlciBwbHVnaW5zLgoKIyMjIyAxLjcu\nMgoqIHJlbW92ZWQgc29ydGluZyBvcHRpb24gZnJvbSBgc2NhbmRpcmAuIERv\nZXNuJ3Qgd29yayB3aXRoIG9sZGVyIHZlcnNpb25zIG9mIFBIUCA8IDUuNC4w\nCiogcmVtb3ZlZCBleHRyYW5lb3VzIGRhdGEgZnJvbSBhcnJheSBpbiBgbXVs\ndGlzaXRlX2dldF90aGVtZXNgCgojIyMjIDEuNy4xCiogdXBkYXRlZCB0aGUg\ndHJhbnNpZW50IGZvciB0aGVtZXMKKiByZXBsYWNlZCBgcmVhZGRpcmAgd2l0\naCBgc2NhbmRpcmAgZm9yIGNyZWF0aW5nIFdQXF9UaGVtZSBvYmplY3QgaW4g\nbXVsdGlzaXRlCgojIyMjIDEuNy4wCiogdXBkYXRlZCBjbGFzcy10aGVtZS11\ncGRhdGVyLnBocCB0byB1dGlsaXplIFdQXF9UaGVtZSBjbGFzcwoqIGFkZGVk\nIG1ldGhvZCBgZ2V0X3JlbW90ZV90YWdgIHRvIHVwZGF0ZSBwbHVnaW5zIHVz\naW5nIHRhZ3Mgb3IgYnJhbmNoLCBkZXBlbmRpbmcgdXBvbiB3aGljaCBoYXMg\nZ3JlYXRlciB2ZXJzaW9uIG51bWJlci4KKiBgZ2V0X3JlbW90ZV90YWdgIHVz\nZXMgdHJhbnNpZW50IHRvIGxpbWl0IGNhbGxzIHRvIEFQSQoqIGZpeCBmb3Ig\nYHdwX2dldF90aGVtZXNgIG5vdCB3b3JraW5nIHVuZGVyIHBsdWdpbiBuZXR3\nb3JrIGFjdGl2YXRpb24gb24gbXVsdGlzaXRlIGluc3RhbGxhdGlvbi4gSSBy\nZWNyZWF0ZWQgYHdwX2dldF90aGVtZXNgIGJ5IHJlYWRpbmcgaW4gdGhlIHRo\nZW1lIGRpcmVjdG9yeSBhbmQgYWRkaW5nIHRoZSBXUFxfVGhlbWUgb2JqZWN0\nIG9mIGB3cF9nZXRfdGhlbWUoICdkaXJfaW5fdGhlbWVzX2RpcicgKWAgdG8g\nYW4gYXJyYXkuCgojIyMjIDEuNi4xCiogYnVnIGZpeCBmb3IgdW5kZWNsYXJl\nZCB2YXJpYWJsZSAkZ2l0aHViX3BsdWdpbnMKCiMjIyMgMS42LjAKKiBBZGRl\nZCBzZXBhcmF0ZSBtZXRob2QgdG8gcGFyc2UgcGx1Z2luIHJlcG8gaW5mbyBm\ncm9tIGhlYWRlcgoqIFNob3J0ZW5lZCBHaXRIdWIgUGx1Z2luIFVSSSB0byBv\nbmx5IHVzZSBvd25lci9yZXBvCiogU2hvcnRlbmVkIEdpdEh1YiBUaGVtZSBV\nUkkgdG8gb25seSB1c2Ugb3duZXIvcmVwbwoKIyMjIyAxLjUuMAoqIExvdHMg\nb2YgZG9jdW1lbnRhdGlvbiBhbmQgc29tZSBidWcgZml4ZXMuIFRoYW5rcyBA\nR2FyeUpvbmVzCiogTWFkZSB2ZXJzaW9uIGNoZWNraW5nIHJlZ2V4IG1vcmUg\nY29tcGF0aWJsZS4gVGhhbmtzIEBHYXJ5Sm9uZXMKKiBBZGRlZCBhYmlsaXR5\nIHRvIGRlZmluZSBicmFuY2ggdG8gdXBkYXRlLgoqIFJlZmFjdG9yZWQgcGx1\nZ2luL3RoZW1lIHJlbmFtaW5nIGNvZGUuCiogQWRkZWQgYEdpdEh1YiBCcmFu\nY2hgIGZlYXR1cmUgLSBUaGFua3MgQEdhcnlKb25lcwoqIFRyeWluZyB0byBj\nb21wbHkgd2l0aCBXUCBDb2RpbmcgU3RhbmRhcmRzLgoqIE1ham9yIHRoYW5r\ncyB0byBAR2FyeUpvbmVzIGZvciBhbGwgdGhlIHB1bGwgcmVxdWVzdHMgYW5k\nIGdlbmVyYWxseSBpbXByb3ZpbmcgdGhpcyBwcm9qZWN0LgoKIyMjIyAxLjQu\nMwoqIEZpeGVkIGEgY291cGxlIG9mIG5vbi1mYXRhbCBQSFAgZXJyb3JzLiBU\naGFua3MgQGphenpzZXF1ZW5jZQoKIyMjIyAxLjQuMgoqIENsZWFuZWQgdXAg\ncmVhZG1lJ3MgbWFya2Rvd24uCgojIyMjIDEuNC4xCiogRml4ZWQgdGhlIFJF\nQURNRSB0byBtb3JlIGFjY3VyYXRlbHkgcmVmbGVjdCBzdXBwb3J0IGZvciBi\nb3RoIHBsdWdpbnMgYW5kIHRoZW1lcy4KCiMjIyMgMS40CiogRml4IGZvciBy\nZW5hbWUgZnVuY3Rpb25zIHRvIGJlIG1vcmUgcHJlY2lzZSwgb3RoZXJ3aXNl\nIG1pZ2h0IHJlbmFtZSB3cC5vcmcgcmVwbyB0aGVtZXMuCgojIyMjIDEuMwoq\nIFNpbXBsaWZ5IGEgY291cGxlIG9mIGlmIHN0YXRlbWVudHMuCgojIyMjIDEu\nMgoqIEZpeCB0byBpZ25vcmUgcmVuYW1pbmcgZm9yIHdwLm9yZyBwbHVnaW5z\nCgojIyMjIDEuMQoqIFNhbml0eSBjaGVjayBmb3IgdGhlbWUgYXBpIHVyaQoK\nIyMjIyAxLjAKKiBTZXJpYWxpemVkIFdQXF9UaGVtZSBvYmplY3QgdG8gc2Vh\ncmNoIGZvciBhZGRlZCBHaXRIdWIgaGVhZGVyLCBsb3RzIG9mIGhlbHAgZnJv\nbSBTZXRoLiBObyBtb3JlIGBmaWxlX2dldF9jb250ZW50c2AuCiogQ29udmVy\ndGVkIHBsdWdpbiBjbGFzcyBhbmQgYWRkZWQgaXQgdG8gbWFrZSBqb2ludCBw\nbHVnaW4vdGhlbWUgdXBkYXRlci4KCiMjIyMgMC4yCiogQ29kZSBjbGVhbnVw\nLgoqIExpbWl0IGBmaWxlX2dldF9jb250ZW50c2AgdG8gMjAwMCBieXRlcy4K\nCiMjIyMgMC4xCiogSW5pdGlhbCBjb21taXQK\n";s:8:"encoding";s:6:"base64";s:6:"_links";O:8:"stdClass":3:{s:4:"self";s:82:"https://api.github.com/repos/afragen/github-updater/contents/CHANGES.md?ref=master";s:3:"git";s:102:"https://api.github.com/repos/afragen/github-updater/git/blobs/0cca100504c70c2d1e89250680b2cb496a300b39";s:4:"html";s:64:"https://github.com/afragen/github-updater/blob/master/CHANGES.md";}}s:9:"changelog";s:32447:"

5.4.1

\n\n

5.4.0

\n\n

5.3.4

\n\n

5.3.3

\n\n

5.3.2

\n\n

5.3.1

\n\n

5.3.0

\n\n

5.2.0

\n\n

5.1.2

\n\n

5.1.1

\n\n

5.1.0

\n\n

5.0.1

\n\n

5.0.0

\n\n

4.6.2

\n\n

4.6.1

\n\n

4.6.0

\n\n

4.5.7

\n\n

4.5.6

\n\n

4.5.5

\n\n

4.5.4

\n\n

4.5.3

\n\n

4.5.2

\n\n

4.5.1

\n\n

4.5.0

\n\n

4.4.0

\n\n

4.3.1

\n\n

4.3.0

\n\n

4.2.2

\n\n

4.2.1

\n\n

4.2.0

\n\n

4.1.4

\n\n

4.1.3

\n\n

4.1.2

\n\n

4.1.1

\n\n

4.1.0

\n\n

4.0.1

\n\n

4.0.0

\n\n

3.2.3 - 3.2.6

\n\n

3.2.2

\n\n

3.2.1

\n\n

3.2.0

\n\n

3.1.1

\n\n

3.1.0

\n\n

3.0.7

\n\n

3.0.6

\n\n

3.0.5

\n\n

3.0.4

\n\n

3.0.3

\n\n

3.0.2

\n\n

3.0.1

\n\n

3.0.0

\n\n

2.9.0

\n\n

2.8.1

\n\n

2.8.0

\n\n

2.7.1

\n\n

2.7.0

\n\n

2.6.3

\n\n

2.6.1

\n\n

2.6.0

\n\n

2.5.0

\n\n

2.4.5

\n\n

2.4.4

\n\n

2.4.2

\n\n

2.4.1

\n\n

2.4.0

\n\n

2.3.3

\n\n

2.3.2

\n\n

2.3.1

\n\n

2.3.0

\n\n

2.2.2

\n\n

2.2.1

\n\n

2.2.0

\n\n

2.1.1

\n\n

2.1.0

\n\n

2.0.1

\n\n

2.0.0

\n\n

1.8.1

\n\n

1.8.0

\n\n

1.7.4

\n\n

1.7.3

\n\n

1.7.2

\n\n

1.7.1

\n\n

1.7.0

\n\n

1.6.1

\n\n

1.6.0

\n\n

1.5.0

\n\n

1.4.3

\n\n

1.4.2

\n\n

1.4.1

\n\n

1.4

\n\n

1.3

\n\n

1.2

\n\n

1.1

\n\n

1.0

\n\n

0.2

\n\n

0.1

\n";s:6:"readme";a:16:{s:4:"name";s:14:"GitHub Updater";s:4:"tags";a:8:{i:0;s:6:"plugin";i:1;s:5:"theme";i:2;s:6:"update";i:3;s:7:"updater";i:4;s:6:"github";i:5;s:9:"bitbucket";i:6;s:6:"gitlab";i:7;s:14:"remote install";}s:17:"requires_at_least";s:3:"3.8";s:12:"tested_up_to";s:3:"4.5";s:10:"stable_tag";s:6:"master";s:12:"contributors";a:3:{i:0;s:7:"afragen";i:1;s:5:"garyj";i:2;s:10:"sethmatics";}s:11:"donate_link";s:43:"http://thefragens.com/github-updater-donate";s:7:"license";s:14:"GPLv2 or later";s:11:"license_uri";s:40:"http://www.gnu.org/licenses/gpl-2.0.html";s:17:"short_description";b:0;s:11:"screenshots";a:0:{}s:10:"is_excerpt";b:0;s:12:"is_truncated";b:0;s:8:"sections";a:1:{s:11:"description";s:1681:"

This plugin was designed to simply update any GitHub hosted WordPress plugin or theme. Currently, plugins or themes hosted on GitHub, Bitbucket, or GitLab are also supported. Additionally, self-hosted installations of GitHub or GitLab are supported. It also allows for remote installation of plugins or themes into WordPress.

\n

Your plugin or theme must contain a header in the style.css header or in the plugin''s header denoting the location on GitHub. The format is as follows.

\n
GitHub Plugin URI: afragen/github-updater
GitHub Plugin URI: https://github.com/afragen/github-updater
\n

or

\n
GitHub Theme URI: afragen/test-child
GitHub Theme URI: https://github.com/afragen/test-child
\n

...where the above URI leads to the owner/repository of your theme or plugin. The URI may be in the format https://github.com/<owner>/<repo> or the short format <owner>/<repo>. You do not need both. Only one Plugin or Theme URI is required. You must not include any extensions like .git.

\n

The following headers are available for use depending upon your hosting source.

\n

GitHub

\n\n

Bitbucket

\n\n

GitLab

\n";}s:17:"remaining_content";s:2136:"

WordPress and PHP Requirements

\n

There are two optional headers for setting minimum requirements for both WordPress and PHP.

\n

Use Requires WP: to set the minimum required version of WordPress needed for your plugin or theme. eg. Requires WP: 3.8

\n

Use Requires PHP: to set the minimum required version of PHP needed for your plugin or theme. eg. Requires PHP: 5.3.0

\n

At the moment the default values are WordPress 3.8.0 and PHP 5.3.0

\n

Release Assets

\n

An optional header is available for use if your plugin or theme requires updating via a release asset.

\n

Use Release Asset:. eg., Release Asset: true.

\n

Your release asset filename is generated automatically and must have the following format or there will be an update error.

\n

Example, $repo-$tag.zip where $repo is the repository slug and `$tag is the newest release tag, example test-plugin-0.7.3.zip.

\n

You must tag your releases to use this feature.

\n

Developer Hooks

\n

There are 2 added filter hooks specifically for developers wanting to distribute private themes/plugins to clients without the client having to interact with the Settings page.

\n

The first allows the developer to set the GitHub Access Token for a specific plugin or theme. The anonymous function must return a single key/value pair where the key is the plugin/theme repo slug and the value is the token.

\n
add_filter( 'github_updater_token_distribution',\n    function () {\n        return array( 'my-private-theme' => 'kjasdp984298asdvhaljsg984aljhgosrpfiu' );\n    } );
\n

The second hook will simply make the Settings page unavailable.

\n
add_filter( 'github_updater_hide_settings', '__return_true' );
";s:14:"upgrade_notice";a:0:{}}}', 'yes'); +INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES +(1304, '_site_transient_timeout_ghu-ddd73ceff862443c5a6999920fb8c2a4', '1461696070', 'yes'), +(1305, '_site_transient_ghu-ddd73ceff862443c5a6999920fb8c2a4', 'a:1:{s:14:"wp-sync-db.php";a:27:{s:11:"Requires WP";s:0:"";s:12:"Requires PHP";s:0:"";s:13:"Release Asset";s:0:"";s:16:"GitHub Theme URI";s:0:"";s:13:"GitHub Branch";s:0:"";s:17:"GitHub Enterprise";s:0:"";s:9:"GitHub CE";s:0:"";s:19:"Bitbucket Theme URI";s:0:"";s:16:"Bitbucket Branch";s:0:"";s:20:"Bitbucket Enterprise";s:0:"";s:12:"Bitbucket CE";s:0:"";s:16:"GitLab Theme URI";s:0:"";s:13:"GitLab Branch";s:0:"";s:17:"GitLab Enterprise";s:0:"";s:9:"GitLab CE";s:0:"";s:17:"GitHub Plugin URI";s:21:"wp-sync-db/wp-sync-db";s:20:"Bitbucket Plugin URI";s:0:"";s:17:"GitLab Plugin URI";s:0:"";s:4:"Name";s:10:"WP Sync DB";s:9:"PluginURI";s:0:"";s:7:"Version";s:3:"1.5";s:11:"Description";s:59:"Export, push, and pull to migrate your WordPress databases.";s:6:"Author";s:9:"Sean Lang";s:9:"AuthorURI";s:15:"http://slang.cx";s:10:"TextDomain";s:0:"";s:10:"DomainPath";s:0:"";s:7:"Network";s:4:"True";}}', 'yes'), +(1306, '_site_transient_timeout_ghu-df57db92a71ca0146a93dc866565b0ec', '1461696070', 'yes'), +(1307, '_site_transient_ghu-df57db92a71ca0146a93dc866565b0ec', 'a:1:{s:26:"wp-sync-db-media-files.php";a:27:{s:11:"Requires WP";s:0:"";s:12:"Requires PHP";s:0:"";s:13:"Release Asset";s:0:"";s:16:"GitHub Theme URI";s:0:"";s:13:"GitHub Branch";s:0:"";s:17:"GitHub Enterprise";s:0:"";s:9:"GitHub CE";s:0:"";s:19:"Bitbucket Theme URI";s:0:"";s:16:"Bitbucket Branch";s:0:"";s:20:"Bitbucket Enterprise";s:0:"";s:12:"Bitbucket CE";s:0:"";s:16:"GitLab Theme URI";s:0:"";s:13:"GitLab Branch";s:0:"";s:17:"GitLab Enterprise";s:0:"";s:9:"GitLab CE";s:0:"";s:17:"GitHub Plugin URI";s:33:"wp-sync-db/wp-sync-db-media-files";s:20:"Bitbucket Plugin URI";s:0:"";s:17:"GitLab Plugin URI";s:0:"";s:4:"Name";s:22:"WP Sync DB Media Files";s:9:"PluginURI";s:0:"";s:7:"Version";s:7:"1.1.4b1";s:11:"Description";s:68:"An extension of WP Sync DB that allows the migration of media files.";s:6:"Author";s:9:"Sean Lang";s:9:"AuthorURI";s:15:"http://slang.cx";s:10:"TextDomain";s:0:"";s:10:"DomainPath";s:0:"";s:7:"Network";s:4:"True";}}', 'yes'), +(1308, '_site_transient_timeout_ghu-plugins', '1461696070', 'yes'), +(1309, '_site_transient_ghu-plugins', 'a:4:{i:0;s:36:"ghu-ad78493953948f77a685116f7e9e605f";i:1;s:36:"ghu-94615ed13c0e5d4f4ef5a56bcd13a8dd";i:2;s:36:"ghu-ddd73ceff862443c5a6999920fb8c2a4";i:3;s:36:"ghu-df57db92a71ca0146a93dc866565b0ec";}', 'yes'), +(1312, '_site_transient_timeout_ghu-themes', '1461716806', 'yes'), +(1313, '_site_transient_ghu-themes', 'a:3:{i:0;s:36:"ghu-ad78493953948f77a685116f7e9e605f";i:1;s:36:"ghu-ddd73ceff862443c5a6999920fb8c2a4";i:2;s:36:"ghu-df57db92a71ca0146a93dc866565b0ec";}', 'yes'), +(1317, '_site_transient_timeout_browser_da161d2f6663007f6e0670901a322b2c', '1462278572', 'yes'), +(1318, '_site_transient_browser_da161d2f6663007f6e0670901a322b2c', 'a:9:{s:8:"platform";s:9:"Macintosh";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"49.0.2623.112";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'), +(1319, '_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1461716973', 'no'); +INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES +(1320, '_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n\n\n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:49:"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:26:"https://wordpress.org/news";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:13:"lastBuildDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 13 Apr 2016 11:26: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:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:40:"https://wordpress.org/?v=4.6-alpha-37307";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:10:{i:0;a:6:{s:4:"data";s:36:"\n \n \n \n \n \n \n\n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:27:"WordPress 4.5 “Coleman”";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:43:"https://wordpress.org/news/2016/04/coleman/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 12 Apr 2016 19:15:32 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:3:"4.5";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=4203";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:383:"Version 4.5 of WordPress, named “Coleman” in honor of jazz saxophonist Coleman Hawkins, is available for download or update in your WordPress dashboard. New features in 4.5 help streamline your workflow, whether you’re writing or building your site. Editing Improvements Inline Linking Stay focused on your writing with a less distracting interface that keeps you in […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Mike Schroder";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:26690:"

Version 4.5 of WordPress, named “Coleman” in honor of jazz saxophonist Coleman Hawkins, is available for download or update in your WordPress dashboard. New features in 4.5 help streamline your workflow, whether you’re writing or building your site.

\n

\n
\n

Editing Improvements

\n

illustration-short-inlinelinks

\n

Inline Linking

\n

Stay focused on your writing with a less distracting interface that keeps you in place and allows you to easily link to your content.

\n

editing-shortcuts-big

\n

Formatting Shortcuts

\n

Do you enjoy using formatting shortcuts for lists and headings? Now they’re even more useful, with horizontal lines and <code>.

\n
\n

Customization Improvements

\n

illustration-short-responsive-preview

\n

Live Responsive Previews

\n

Make sure your site looks great on all screens! Preview mobile, tablet, and desktop views directly in the customizer.

\n

\n

Custom Logos

\n

Themes can now support logos for your business or brand. Try it out with Twenty Sixteen and Twenty Fifteen in the Site Identity section of the customizer.

\n
\n

Under the Hood

\n
\n
\n

Smart Image Resizing

\n

Generated images now load up to 50% faster with no noticeable quality loss. It’s really cool.

\n
\n
\n

Selective Refresh

\n

The customizer now supports a comprehensive framework for rendering parts of the preview without rewriting your PHP code in JavaScript.

\n
\n
\n

Script Loader Improvements

\n

Better support has been added for script header/footer dependencies. New wp_add_inline_script() enables adding extra code to registered scripts.

\n

Better Embed Templates

\n

Embed templates have been split into parts and can be directly overridden by themes via the template hierarchy.

\n

JavaScript Library Updates

\n

jQuery 1.12.3, jQuery Migrate 1.4.0, Backbone 1.2.3, and Underscore 1.8.3 are bundled.

\n
\n
\n
\n
\n

The Crew

\n

Mike SchroderThis release was led by Mike Schroder, backed up by Adam Silverstein as Release Deputy, Mel Choyce as Release Design Lead, and the help of these fine individuals. There are 298 contributors with props in this release. Pull up some Coleman Hawkins on your music service of choice, and check out some of their profiles:

\n@mercime, Aaron D. Campbell, Aaron Edwards, Aaron Hockley, Aaron Jorbin, Abiral Neupane, Ahmad Awais, aidanlane, Alice Brosey, Amanda Rush, Andrea Fercia, Andrea Gandino, Andrew Nacin, Andrew Ozz, Andrew Rockwell, Andy, Ankit K Gupta, Anton Timmermans, apaliku, Aram Zucker-Scharff, ash.matadeen, Ashok Kumar Nath, BandonRandon, Barry Ceelen, Ben Dunkle, berengerzyla, Bernhard Riedl, Bhushan S. Jawle, Birgir Erlendsson (birgire), Boone B. Gorges, Brad Williams, Brady Vercher, Brandon Allen, Brandon Hubbard, Brandon Kraft, Brian Krogsgard, Bruno Borges, Callum Macdonald, Cami Kaos, Chandra Patel, Charles Fulton, Chetan Chauhan, Chouby, ChriCo, Chris Christoff, Chris Mok, christophherr, ckoerner, Claudio Sanches, Compute, coreymcollins, d4z_c0nf, Daisuke Takahashi, danhgilmore, Daniel Bachhuber, Daniel Bailey, Daniel Jalkut (Red Sweater), Daniel Llewellyn, Daniele Scasciafratte, danielpataki, Danny van Kooten, Dave Clements, David A. Kennedy, David Brumbaugh, David Herrera, David Newton, David Shanske, Davide ''Folletto'' Casali, Denis de Bernardy, Dennis Ploetner, Derek Herman, Dion Hulse, dmsnell, Dominik Schilling, Dossy Shiobara, Dotan Cohen, Dreb Bits, Drew Jaynes, duaneblake, Dzikri Aziz, Elio Rivero, Ella Iseulde Van Dorpe, Emerson Maningo, enej, Eric Andrew Lewis, Eric Binnion, Eric Daams, Erick Hitter, Evan Herman, Fabien Quatravaux, faishal, fantasyworld, Felix Arntz, finnj, firebird75, Fredrik Forsmo, fusillicode, Gary Jones, Gary Pendergast, gblsm, George Stephanis, Giuseppe Mamone, Giustino Borzacchiello, Grant Palin, groovecoder, Guido Scialfa, Gustavo Bordoni, hakre, Helen Hou-Sandí, Henry Wright, Hinaloe, Hugh Lashbrooke, Hugo Baeta, Iain Poulson, Ignacio Cruz Moreno, imath, Ionut Staicu, Ivan Kristianto, J.D. Grimes, jadpm, James DiGioia, Jason, Jasper de Groot, Jeffrey de Wit, Jeffrey Schutzman, Jennifer M. Dodd, Jeremy Felt, Jeremy Herve, Jeremy Pry, Jesin A, Jess G., Joan Boluda, Joe Hoyle, Joe McGill, joelerr, John Blackbourn, John James Jacoby, JohnnyPea, Jonathan Brinley, Jonny Harris, Jory Hogeveen, Joseph Fusco, Josh Levinson, Josh Pollock, jrchamp, jrf, Juanfra Aldasoro, Juhi Saxena, Julio Potier, katieburch, Kelly Dwan, Kevin Hagerty, Kiran Potphode, Kirk Wight, Kite, kjbenk, Konstantin Kovshenin, Konstantin Obenland, Konstantinos Kouratoras, KrissieV, Lance Willett, leemon, Lew Ayotte, Liam Dempsey, Luan Ramos, luciole135, Lukas Pawlik, Lutz Schröer, madvic, Marco Chiesi, Marin Atanasov, Mario Peshev, Mark Barnes, Mark Jaquith, Mark Uraine, Marko Heijnen, Martin Burke, Matt Felten, Matt Mullenweg, Matt Wiebe, MattGeri, maweder, Mayo Moriyama, mcapybara, Mehul Kaklotar, Meitar, mensmaximus, Michael Arestad, michalzuber, micropat, Mika Epstein, Mike Glendinning, Mike Hansen, Mike Jolley, Milan Dinić, Morgan Estes, moto hachi ( mt8.biz ), Mr Papa, mwidmann, nexurium, Niall Kennedy, Nic Ford, Nick Halsey , Nilambar Sharma, Ninos, oaron, overclokk, Pascal Birchler, Pat O''Brien, Paul Bearne, Paul de Wouters, Payton Swick, Perez Labs, Pete Nelson, Peter Wilson, petermolnar, Petter Walbø Johnsgård, Pieter, Pippin Williamson, Pirate Dunbar, prettyboymp, Profforg, programmin, Rachel Baker, rahal.aboulfeth, Rami Yushuvaev, Rastislav Lamos, Ricky Lee Whittemore, Ritesh Patel, rob, Roger Chen, RomSocial, Ruud Laan, Ryan Boren, Ryan Kienstra, Ryan McCue, Ryan Welcher, Sagar Jadhav, Sal Ferrarello, salvoaranzulla, Sam Hotchkiss, Sara Rosso, Scott Arciszewski, Scott Kingsley Clark, Scott Reilly, Scott Taylor, scottbrownconsulting, scribu, Sebastian Pisula, Sergej Müller, Sergey Biryukov, Shane, Shinichi Nishikawa, sidati, Siobhan, sky, slushman, smerriman, stephanethomas, Stephen Edgar, Stephen Harris, Steve Grunwell, Steven Word, Store Locator Plus, Subharanjan, Sudar Muthu, Sumit Singh, Taco Verdonschot, tahteche, Takashi Irie, Takayuki Miyoshi, Tammie Lister, tharsheblows, theMikeD, thomaswm, Timothy Jacobs, timplunkett, tmuikku, Toni Viemerö, Toro_Unit (Hiroshi Urabe), Tracy Levesque, Tran Ngoc Tuan Anh, Travis Smith, Ty Carlson, Ulrich, Utkarsh, vhomenko, virgodesign, vlad.olaru, voldemortensen, vtieu, webaware, Wesley Elfring, Weston Ruter, WisdmLabs, WP Delighter, wp-architect, xavortm, yetAnotherDaniel, and zinigor.\n

 

\n

Special thanks go to Siobhan McKeown for producing the release video and Jack Lenox for the voice-over.

\n

Finally, thanks to all of the contributors who provided translations for the release. WordPress 4.5 comes fully translated into 44 languages and the release video has been translated into 32 languages!

\n

If you want to follow along or help out, check out Make WordPress and our core development blog. Thanks for choosing WordPress. See you soon for version 4.6!

\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:39:"\n \n \n \n \n \n \n \n\n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:17:"WordPress 4.5 RC2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"https://wordpress.org/news/2016/04/wordpress-4-5-rc2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 10 Apr 2016 05:14:28 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:3:"4.5";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=4186";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:350:"The second release candidate for WordPress 4.5 is now available. We’ve made 91 changes since the first release candidate. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.5 on Tuesday, April 12, but we need your help […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Mike Schroder";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:3044:"

The second release candidate for WordPress 4.5 is now available.

\n

We’ve made 91 changes since the first release candidate. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.5 on Tuesday, April 12, but we need your help to get there.

\n

If you haven’t tested 4.5 yet, now is the time!

\n

Think you’ve found a bug? Please post to the Alpha/Beta support forum. If any known issues come up, you’ll be able to find them here.

\n

To test WordPress 4.5, you can use the WordPress Beta Tester plugin or you can download the release candidate here (zip).

\n

For more information about what’s new in version 4.5, check out the Beta 1Beta 2, Beta 3, and Beta 4 blog posts.

\n

Developers, please test your plugins and themes against WordPress 4.5 and update your plugin’s Tested up to version in the readme to 4.5. If you find compatibility problems, we never want to break things, so please be sure to post to the support forums so we can figure those out before the final release.

\n

Polyglots, strings are now hard frozen, including the About Page, so you are clear to translate!

\n

A few changes of note since the first release candidate:

\n\n

Be sure to follow along the core development blog, where you can find the Field Guide for 4.5.

\n

It’s great fun to test
\nEnjoyment in another
\nRelease Candidate

\n";s: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:33:"\n \n \n \n \n \n\n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:53:"Contributor Weekend: Global WordPress Translation Day";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:88:"https://wordpress.org/news/2016/04/contributor-weekend-global-wordpress-translation-day/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 07 Apr 2016 21:04:39 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:9:"Community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=4191";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:378:"Global WordPress Translation Day is a one-day contributor initiative organised by the WordPress project’s Polyglots team that is dedicated to helping new contributors who would like to translate WordPress in one of the 160 languages WordPress is available in. Global WordPress Translation Day will be on Sunday, April 24th, starting at 0:00 UTC and will go on for […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"Josepha";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:3069:"

Global WordPress Translation Day is a one-day contributor initiative organised by the WordPress project’s Polyglots team that is dedicated to helping new contributors who would like to translate WordPress in one of the 160 languages WordPress is available in.

\n

Global WordPress Translation Day will be on Sunday, April 24th, starting at 0:00 UTC and will go on for 24 hours covering all time zones.

\n

What are we doing?

\n\n

If you organise a local meetup, why not organise a contributor day for translating in your language?

\n

Join us! Read about the initiative and sign up as an organiser.

\n

Can I get involved if I only speak English?

\n

Yes! Even if you only speak English, it would be great to get involved and check out some of the English locale variants – English as spoken in the United Kingdom, Canada, New Zealand, Australia, South Africa. English has many variants across the globe and you can learn about the differences and why it’s important that users have the option to choose a variant during some of our sessions. And if you’re in a funky mood, you can give translating the interface into Emoji a try! Yes, we have a WordPress in Emoji locale!

\n

Questions?

\n

The polyglots team and the event organisers hang out in #Polyglots in Slack. They will gladly help you out.

\n";s: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:39:"\n \n \n \n \n \n \n \n\n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:31:"WordPress 4.5 Release Candidate";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"https://wordpress.org/news/2016/03/wordpress-4-5-release-candidate/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 24 Mar 2016 03:50:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:3:"4.5";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=4165";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:344:"The release candidate for WordPress 4.5 is now available. We’ve made 49 changes since releasing Beta 4 a week ago. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.5 on Tuesday, April 12, but we need your help […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Mike Schroder";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2251:"

The release candidate for WordPress 4.5 is now available.

\n

We’ve made 49 changes since releasing Beta 4 a week ago. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.5 on Tuesday, April 12, but we need your help to get there.

\n

If you haven’t tested 4.5 yet, now is the time!

\n

Think you’ve found a bug? Please post to the Alpha/Beta support forum. If any known issues come up, you’ll be able to find them here.

\n

To test WordPress 4.5, you can use the WordPress Beta Tester plugin or you can download the release candidate here (zip).

\n

For more information about what’s new in version 4.5, check out the Beta 1Beta 2, Beta 3, and Beta 4 blog posts.

\n

Developers, please test your plugins and themes against WordPress 4.5 and update your plugin’s Tested up to version in the readme to 4.5 before next week. If you find compatibility problems, we never want to break things, so please be sure to post to the support forums so we can figure those out before the final release.

\n

Be sure to follow along the core development blog, where we’ll continue to post notes for developers for 4.5.

\n

Free as in Freedom
\nIt is WordPress 4.5
\nAlso free as in beer

\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:42:"\n \n \n \n \n \n \n \n \n\n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 4.5 Beta 4";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2016/03/wordpress-4-5-beta-4/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 17 Mar 2016 04:30: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:8:"category";a:4:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:3:"4.5";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:3;a:5:{s:4:"data";s:4:"beta";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=4155";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:329:"WordPress 4.5 Beta 4 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Mike Schroder";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:3392:"

WordPress 4.5 Beta 4 is now available!

\n

This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip).

\n

For more information on what’s new in 4.5, check out the Beta 1Beta 2, and Beta 3 blog posts, along with in-depth field guides on make/core. This is the final planned beta of WordPress 4.5, with a release candidate scheduled for next week.

\n

Some of the changes in Beta 4 include:

\n\n

If you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, file one on the WordPress Trac. There, you can also find a list of known bugs.

\n

Happy testing!

\n

Llegamos al fin
\ndel tiempo pa’ beta
\n¡Pruébalo Ahora!

\n";s: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:42:"\n \n \n \n \n \n \n \n \n\n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 4.5 Beta 3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2016/03/wordpress-4-5-beta-3/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 10 Mar 2016 06:59:26 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:4:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:3:"4.5";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:3;a:5:{s:4:"data";s:4:"beta";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=4128";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:329:"WordPress 4.5 Beta 3 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Mike Schroder";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:3631:"

WordPress 4.5 Beta 3 is now available!

\n

This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip).

\n

For more information on what’s new in 4.5, check out the Beta 1 and Beta 2 blog posts, along with in-depth field guides on make/core. Some of the fixes in Beta 3 include:

\n\n

If you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, file one on the WordPress Trac. There, you can also find a list of known bugs.

\n

Happy testing!

\n

Beta one, two, three
\n
so many bugs have been fixed
\n
Closer now; four, five.

\n";s: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:39:"\n \n \n \n \n \n \n \n\n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 4.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:56:"https://wordpress.org/news/2016/03/wordpress-4-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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 03 Mar 2016 04:55: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:8:"category";a:3:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:3:"4.5";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=4116";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:329:"WordPress 4.5 Beta 2 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Mike Schroder";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2370:"

WordPress 4.5 Beta 2 is now available!

\n

This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip).

\n

For more information on what’s new in 4.5, check out the Beta 1 blog post. Some of the fixes in Beta 2 include:

\n\n

If you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, file one on the WordPress Trac. There, you can also find a list of known bugs.

\n

Happy testing!

\n

It’s peer pressure time
\nTesting: all cool kids do it
\nHelp find ALL the bugs!

\n";s: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:33:"\n \n \n \n \n \n\n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:35:"Contributor Weekend: One-Hour Video";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:70:"https://wordpress.org/news/2016/02/contributor-weekend-one-hour-video/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 26 Feb 2016 19:36: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:8:"category";a:1:{i:0;a:5:{s:4:"data";s:9:"Community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=4112";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:349:"It’s time for our second global contributor weekend, and this time we’re focusing on the video team. For this month’s challenge, in honor of it being our second month, you have two options for how you can participate! The challenge for this month overall is to work with at least one hour worth of WordCamp video, which […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:3:"Jen";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2590:"

It’s time for our second global contributor weekend, and this time we’re focusing on the video team. For this month’s challenge, in honor of it being our second month, you have two options for how you can participate! The challenge for this month overall is to work with at least one hour worth of WordCamp video, which you can do by either creating subtitles or editing the video file in preparation for upload to WordPress.tv.

\n

One of the great things about contributing to the video team is that you get to learn so much, since all the work basically involves watching WordCamp presentation videos. Subtitling is a doubly important need, as it is needed to make all those WordCamp videos accessible to people who are deaf or hard of hearing and can’t listen to the audio track, as well as making it possible for the videos to be consumed (in some cases after subtitle translation) by people who speak different languages.

\n

The challenge will last from Saturday, February 27, 2016 through Sunday, February 28, 2016, and the results will be reviewed afterward by members of the video team. If you enjoy the challenge, the video team would be very excited to welcome you into their ranks! Interested? Here’s how to participate.

\n

What About Last Month?

\n

In January, the inaugural contributor weekend was focused on the support forums. That challenge had 73 participants, including 10 people who provided 20 or more correct answers to open support threads, thereby winning the challenge. Congratulations to Harris Anastasiadis, Ahmad Awais, Takis Bouyouris, Phil Erb, Eric Gunawan, Jackie McBride, Diana Nichols, Kostas Nicolacopoulos, Juhi Saxena, and Sarah Semark! To them and to everyone else who participated, thank you so much for your efforts. Every answer helps, and over the course of this contributor weekend, these amazing volunteers responded to 800 support threads. The support forums queue of requests with no replies went from 28 pages to 7 pages — that was an incredible success, of which every participant was a part!

\n

So head on over to see how to get involved with the one-hour video challenge this weekend, and help us make next month’s post just as impressive! ?

\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:41:"\n \n \n \n \n \n \n \n\n \n \n \n \n\n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 4.5 Beta 1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2016/02/wordpress-4-5-beta-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 25 Feb 2016 03:27:13 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:3:"4.5";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=4080";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:329:"WordPress 4.5 Beta 1 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]";s: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:"enclosure";a:2:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:3:"url";s:62:"https://wordpress.org/news/files/2016/02/wp-inline-linking.mp4";s:6:"length";s:6:"409018";s:4:"type";s:9:"video/mp4";}}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:"url";s:62:"https://wordpress.org/news/files/2016/02/wp-editor-updates.mp4";s:6:"length";s:6:"231953";s:4:"type";s:9:"video/mp4";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Mike Schroder";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:5453:"

WordPress 4.5 Beta 1 is now available!

\n

This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip).

\n

WordPress 4.5 is slated for release on April 12, but to get there, we need your help testing what we have been working on, including:

\n\n

 

\n

There have been changes for developers to explore as well:

\n\n

If you want a more in-depth view of what major changes have made it into 4.5, check out all 4.5-tagged posts on the main development blog, or check out a list of everything that’s changed.

\n

If you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, file one on the WordPress Trac. There, you can also find a list of known bugs.

\n

Happy testing!

\n

A wonderful day
\nis one that brings new WordPress
\nFour Five Beta One

\n";s: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:39:"\n \n \n \n \n \n \n \n\n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:30:"Experiment: WordCamp Incubator";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"https://wordpress.org/news/2016/02/experiment-wordcamp-incubator/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 18 Feb 2016 19:28:32 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:9:"Community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:6:"Events";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:8:"WordCamp";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"https://wordpress.org/news/?p=4076";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:399:"WordCamps are locally-organized WordPress conferences that happen all over the world (and are so fun). Sometimes people don’t realize that WordCamps are organized by local volunteers rather than a central organization, and they contact us asking, “Can you bring WordCamp to my city?” When this happens, we always suggest they start with a meetup group, and think about […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:3:"Jen";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2989:"

WordCamps are locally-organized WordPress conferences that happen all over the world (and are so fun). Sometimes people don’t realize that WordCamps are organized by local volunteers rather than a central organization, and they contact us asking, “Can you bring WordCamp to my city?” When this happens, we always suggest they start with a meetup group, and think about organizing a WordCamp themselves after their group has been active for a few months. We emphasize that WordCamps are locally-organized events, not something that the central community team plans from afar.

\n

This has been successful in many areas — there are currently 241 meetup groups on our meetup.com chapter program! In some regions, though, enthusiastic volunteers have had more of a challenge getting things started. Because of this, we’re going to try an experiment this year called the WordCamp Incubator.

\n

The intention of the incubator program is to help spread WordPress to underserved areas through providing more significant organizing support for a first event. In practical terms, this experiment means we’ll be choosing three cities in 2016 where there is not an active WordPress community — but where it seems like there is a lot of potential and where there are some people excited to become organizers — and will help to organize their first WordCamp. These WordCamps will be small, one-day, one-track events geared toward the goal of generating interest and getting people involved in creating an ongoing local community.*

\n

So, where should we do these three events?  If you have always wanted a WordCamp in your city but haven’t been able to get a meetup group going, this is a great opportunity. We will be taking applications for the next week, then will get in touch with everyone who applied to discuss the possibilities. We will announce the  cities chosen by the end of March.

\n

To apply, fill in the application by February 26, 2016. You don’t need to have any specific information handy, it’s just a form to let us know you’re interested. You can apply to nominate your city even if you don’t want to be the main organizer, but for this experiment  we will need local liaisons and volunteers, so please only nominate cities where you live or work so that we have at least one local connection to begin.

\n

Thanks, and good luck!

\n

For the record, that describes the ideal first WordCamp even if you have an active meetup — there’s no need to wait until your group is big enough to support a large multi-day event, and small events are a lot of fun because everyone has a chance to be involved and get to know most of the other attendees.

\n

 

\n";s: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:32:"https://wordpress.org/news/feed/";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:44:"http://purl.org/rss/1.0/modules/syndication/";a:2:{s:12:"updatePeriod";a:1:{i:0;a:5:{s:4:"data";s:6:"hourly";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:15:"updateFrequency";a:1:{i:0;a:5:{s:4:"data";s:1:"1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:10:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Tue, 26 Apr 2016 12:29:33 GMT";s:12:"content-type";s:34:"application/rss+xml; charset=UTF-8";s:10:"connection";s:5:"close";s:25:"strict-transport-security";s:11:"max-age=360";s:6:"x-olaf";s:3:"⛄";s:13:"last-modified";s:29:"Wed, 13 Apr 2016 11:26:18 GMT";s:4:"link";s:63:"; rel="https://api.w.org/"";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 250";}s:5:"build";s:14:"20160303124311";}', 'no'); +INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES +(1321, '_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1461716973', 'no'), +(1322, '_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1461673773', 'no'), +(1323, '_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1461716974', 'no'); +INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES +(1324, '_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n\n\n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:61:"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"WordPress Planet";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:28:"http://planet.wordpress.org/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:2:"en";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:47:"WordPress Planet - http://planet.wordpress.org/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:50:{i:0;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:62:"WPTavern: I’m Attending WordCamp Chicago, 2016, This Weekend";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=54065";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/im-attending-wordcamp-chicago-2016-this-weekend";s: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:1877:"

WordCamp Chicago, 2016, takes place this weekend and I’ll be among the many attendees. I haven’t visited the city since 2009 and I’m excited to satisfy my craving for deep dish pizza at Lou Malnati’s.

\n

WordCamp Chicago, 2009, is a special memory because it’s where I saw a demo of Gravity Forms before it launched to the public. At the time, Contact Form 7 was a household name and the go-to plugin for creating forms. I knew it was going to be successful when I saw its user interface and how it worked. Seven years later, the plugin is still going strong.

\n

The GPL license was also hot topic at the time. During Matt Mullenweg’s State of the Word presentation, he announced that the WordPress Theme directory would have a section dedicated to theme shops that were 100% GPL. I remember hearing the room gasp during his announcement.

\n

100_2303

\n

In 2009, the WordPress commercial theme market was young and the GPL was a license many theme companies didn’t embrace. Having your company listed on a page that gets a ton of traffic motivated at least a couple of theme shops to embrace the GPL.

\n

I’m looking forward to meeting new people this weekend and creating new memories. If you happen to see me, please stop and say hi. I’d love to talk to you about your experiences with WordPress.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 26 Apr 2016 06:12:10 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:76:"WPTavern: WordPress for iOS Adds Geotag Support, Comment Moderation Gestures";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=54024";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:85:"http://wptavern.com/wordpress-for-ios-adds-geotag-support-comment-moderation-gestures";s: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:2967:"

WordPress for iOS 6.1 is available from the App Store and includes a number of improvements. Those who use Jetpack can now manage Publicize connections from within the app.

\n

Publicize ConnectionsComments can quickly be moderated thanks to gestures added to the notifications screen. Swiping left on a notification displays options to approve, unapprove, spam, or trash a comment.

\nComment Moderation GesturesComment Moderation Gestures\n

If you’ve connected multiple sites to the app, it can be cumbersome to navigate to the one you access most often. This version includes the ability to set up a primary site from within the Account Settings panel. During testing however, I noticed my version of the app doesn’t have this setting. I’m going through the support process to determine the cause.

\nConfigure a Primary SiteMy Account Settings Page\n

A new UI element at the bottom of the post creation screen allows users to geotag a post. Simply type in an address or location into the search field and a map displays with the location data. The location is stored in the WordPress backend but can be displayed on the frontend if a theme supports it.

\nGeotag SupportGeotag Support\n

A full list of changes and bug fixes is available on GitHub where you can also follow the progress of 6.2. If you have any issues or think you’ve discovered a bug, please report it on the WordPress for iOS support forums.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 26 Apr 2016 04:03:58 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:64:"WPTavern: WordPress 4.6 to Update Theme Filter Tags in the Admin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53952";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/wordpress-4-6-to-update-theme-filter-tags-in-the-admin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2093:"

The admin themes browser has been updated and modernized in recent years to make it easier to search through the 3,800+ themes available on WordPress.org. One aspect of the interface that has lagged behind, however, is the list of tags for filtering themes. The tags have gone untouched since back in the day when users would search themes by color.

\n

theme-tags

\n

The WordPress Theme Review Team’s proposal to overhaul the outdated tags/filters is making it into WordPress 4.6. All of the color tags will be removed, which makes sense since many modern themes are customizable when it comes to accent colors. The update will also remove fixed, fluid, and responsive layouts and will add ‘Grid Layout’ to the list. In the list of miscellaneous features, Blavatar will be removed and Footer Widgets will be added.

\n

The Subject section will be completely revamped by removing the all the previous tags and replacing them with a new list of general theme categories:

\n\n

The tags will also be updated on the WordPress Theme Directory in cooperation with the meta team.

\n

The WordPress theme landscape has changed so much over the years, especially with the introduction of the customizer, and this update will make it easier for users to narrow down themes they want to use. WordPress.org theme authors will want to be ready to update their themes as soon as the new tags are available so that they can be more easily found via search.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 25 Apr 2016 18:51:42 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:25:"Matt: 538 on Basic Income";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:22:"https://ma.tt/?p=46513";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:42:"https://ma.tt/2016/04/538-on-basic-income/";s: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:746:"

The economic uncertainty surrounding basic income is huge, and the politics of bringing such a program about on a large scale are daunting. But something makes this radical proposal so exciting that people and governments are increasingly willing to try it. Basic income challenges our notions of the social safety net, the relationship between work and income, and how to adapt to technological change. That makes it one of the most audacious social policy experiments in modern history. It could fail disastrously, or it could change everything for the better.

\n

From FiveThirtyEight, What Would Happen If We Just Gave People Money?

";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 25 Apr 2016 15:12:59 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:46:"WP Mobile Apps: WordPress for iOS: Version 6.1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://apps.wordpress.com/?p=3375";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:68:"https://apps.wordpress.com/2016/04/25/wordpress-for-ios-version-6-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:3668:"

Hi there, WordPress users! Version 6.1 of the WordPress for iOS app is now available in the App Store.

\n

What’s New:

\n

Get social on the go! WordPress.com and Jetpack-enabled bloggers can manage Publicize and third-party sharing from within the app.

\n

More gestures! Swipe notifications to approve, unapprove, and trash comments at the speed of your thumbs.

\n\nSwipe left to unveil the new moderation options.\n\n

Mobile friendly. Select your primary blog right from within the app.

\n\nYou can select your primary site in \nPick it with a simple tap!\n\n

Where’s Waldo? Search locations to tag GPS on posts.

\n\nGPS tag your posts!\nTap on \nUse the search field to select the right location.\n\n

Enhancements. Because “good” is not enough! Here’s the full list of enhancements.

\n

Bug fixes. Tons of bug fixes!

\n

Thank You

\n

Thanks to all of the contributors who worked on this release:
\n@aerych, @alexcurylo, @astralbodies, @diegoreymendez, @frosty, @jleandroperez, @koke, @kurzee, @kwonye, @sendhil and @SergioEstevao.

\n

You can track the development progress for the next update by visiting our 6.2 milestone on GitHub. Until next time!

";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 25 Apr 2016 13:30:37 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"diegoreymendez";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:58:"Post Status: WordPress Development Tools — Draft Podcast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"https://poststatus.com/?p=24094";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"https://poststatus.com/wordpress-development-tools-draft-podcast/";s: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:5423:"

Welcome to the Post Status Draft podcast, which you can find on iTunesStitcher, and via RSS for your favorite podcatcher. Post Status Draft is hosted by Joe Hoyle — the CTO of Human Made — and Brian Krogsgard.

\n

Everybody creates workflows to accomplish their development work. And sometimes you come upon a new tool that completely changes how you do things, and helps you improve your productivity.

\n

In this episode, Joe and Brian aim to share their tools in the hopes that it will help others review and refine their own processes. And Joe and Brian approach things quite differently themselves, so they compare and contrast their own workflows. Have something to add to the conversation, be sure to comment!

\n\nhttps://audio.simplecast.com/36197.mp3\n

Direct Download

\n

Tools

\n\n

Coding Tools & Debugging

\n\n

Build Tools

\n\n

Version Control / Review Tools / Deployment

\n\n

Frontend Tools / Extensions

\n\n

Sponsor

\n

This podcast is sponsored by Yoast. Yoast SEO is the best WordPress SEO plugin available, with a premium version to provide expert support and additional features. Thank you to Yoast for being a Post Status partner.

\n

Related Podcasts

\n

Understanding WP-CLI

\n

Local WordPress Development Strategies

\n

 

";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 23 Apr 2016 14:06:22 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Katie Richards";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:43:"WPTavern: In Case You Missed It – Issue 8";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:44:"http://wptavern.com?p=53989&preview_id=53989";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:49:"http://wptavern.com/in-case-you-missed-it-issue-8";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5006:"In Case You Missed It Featured Imagephoto credit: Night Moves(license)\n

There’s a lot of great WordPress content published in the community but not all of it is featured on the Tavern. This post is an assortment of items related to WordPress that caught my eye but didn’t make it into a full post.

\n

Matt Mullenweg’s Father Passes Away

\n

Losing a loved one is tough, especially when it’s a parent. Matt Mullenweg’s father, Chuck Mullenweg, recently passed away. Matt published a touching tribute on his site that describes the kind of man his father was.

\n

We were in a father / son bowling league. I remember admiring his work ethic so much: he’d get up before dawn every morning and put on a suit, grab his briefcase, and go to work. He often went in on weekends and I loved to go with him because they had ‘fast’ internet at the office and I could read Dilbert and about Babylon 5. He was a voracious reader and learner, and loved tinkering whether it was cars or networking. In the other room I can hear a bitcoin mining rig he set up a few years ago. He was independent minded and unafraid to question the status quo.

\n

My deepest sympathies and condolences go out to the Mullenweg family. You can read Chuck’s obituary here.

\n

My First Plugin

\n

Thanks to Binarygary, my first plugin is in the directory. It’s called Hello Admin and with each page load, a lyric from Hello Dolly displays as an admin notice.

\nHello Admin in ActionHello Admin in Action\n

In all seriousness, the plugin is a joke and a humorous way to bring attention to developers abusing admin notices in WordPress.

\n

Pressware Partners with Evermore

\n

Tom McFarlin announced that his company Pressware, is partnering with Evermore. The partnership allows Pressware to provide its expertise in custom WordPress development and project management to Evermore’s customers.

\n

Four Years of EDD

\n

Pippin Williamson shared the hardships and successes he’s experienced in the last four years managing Easy Digital Downloads.

\n

Today, Easy Digital Downloads is installed on over 50,000 websites, has reached nearly one million downloads, and has grown to a sustainable business that supports the livelihood of an ever-growing team comprised of full time employees and active contractors. I don’t think I ever thought we would be where we are today four years ago.

\n

His post is an honest look at the amount of effort and circumstances beyond revenue that’s involved with running a successful business.

\n

Translation Day Wapuu Posters!

\n

In what is a traditional part of this series, I end each issue by featuring a Wapuu design. For those who don’t know, Wapuu is the unofficial mascot of the WordPress project. The first global translation day takes place on April 24th and to celebrate the occasion, the WordPress Polyglots team has created a series of Wapuu posters.

\n\n

\n

That’s it for issue eight. If you recently discovered a cool resource or post related to WordPress, please share it with us in the comments.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 23 Apr 2016 02:04:37 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:87:"WPTavern: Facebook News Feed Now Favors Articles That Users Spend a Longer Time Reading";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53919";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:97:"http://wptavern.com/facebook-news-feed-now-favors-articles-that-users-spend-a-longer-time-reading";s: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:3187:"RC CiprianoRC Cipriano\n

Facebook announced yesterday that its news feed algorithm will now favor articles that users spend a long time reading. While likes, clicks, comments, and sharing counts are all valuable metrics, they are not always reliable determinants for what users want to see. Facebook discovered this by gathering feedback via its Feed Quality Program.

\n

As a result, the social network updated its algorithm last June to factor in how much time users spent reading posts within the news feed, regardless of whether users even opened the article. Two years ago, Facebook also began factoring in instances where a user clicks on an article but then comes straight back to the news feed. This could be because a site loaded too slowly or the article was click-bait and not what the user was expecting based on the preview.

\n

“Building on this work, we’re learning that the time people choose to spend reading or watching content they clicked on from News Feed is an important signal that the story was interesting to them,” Facebook representatives said. “We are adding another factor to News Feed ranking so that we will now predict how long you spend looking at an article in the Facebook mobile browser or an Instant Article after you have clicked through from News Feed.”

\n

Facebook will not be counting loading time towards this new ranking signal but will calculate the actual time spent reading/watching once the content has loaded. But before you think you can game this algorithm by simply publishing longer articles, Facebook will be measuring this time as a threshold so that longer articles are not preferred by default.

\n

The social network also announced that it will be diversifying its display of posts from different pages so as not to bombard users with too much content from the same source.

\n

“We’ve also heard from people that they enjoy reading articles from a wide range of publishers, and it can be repetitive if too many articles from the same source are back to back in their News Feed,” representatives said. “We’ll also be making an update to reduce how often people see several posts in a row from the same source in their News Feed.”

\n

Publishers who depend on Facebook for a significant amount of their referrals will want to take note of these changes to the news feed algorithm. The social network has already started rolling them out and will continue over the next few weeks.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 22 Apr 2016 22:21:20 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:76:"WPTavern: What WordPress.org Does with the Data it Collects from Users Sites";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53940";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:86:"http://wptavern.com/what-wordpress-org-does-with-the-data-it-collects-from-users-sites";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5110:"Freemius Featured Imagephoto credit: data slide(license)\n

Since I started covering WordPress in 2009, one of the things I’ve noticed is that certain topics have a cyclical nature to them. One of these is the contention in the WordPress community on what data is sent, stored, and shared on WordPress.org. In a post published on Torquemag.io, Josh Pollock, Founder of CalderaWP, argues that WordPress is a community-driven project and as such, data collected by WordPress.org should be shared with the community.

\n

If installing and updating themes via the WordPress dashboard wasn’t so easy, WordPress wouldn’t be what it is today. I understand and appreciate this.

\n

Here’s the part that doesn’t sit well with me: WordPress.org is collecting data on all of its users (as it should), but this information isn’t available in aggregate form to the community.

\n

Pollock says that as an entrepreneur, the information would help him make informed business decisions.

\n

Data is Stored for Two Days

\n

I spoke to Samuel ‘Otto’ Wood, who helps maintain WordPress.org, and discovered that some of the assumptions people have are not true.

\n

“The data collection systems on w.org have been inconsistent at best, and re-written several times,” Wood said.

\n

“But the general idea that there is some kind of treasure trove of information we’re storing is misguided, at best. The data is collected, aggregated for the things we display, then tossed. We don’t store it for any serious length of time. Just the results of the data like the counts.”

\n

Gathering, sorting, and displaying the large amount of data associated with WordPress is a CPU intensive job. The most recent example of WordPress.org sharing aggregate data is for active installs of plugins and themes. Displaying the Active Install count is the result of significant performance improvements from WordPress lead developer Dion Hulse. Without the improvements, the data collection would have overloaded CPUs and MySQL databases.

\n

“Gathering that data is frickin’ difficult to start with, “Wood said. “For the longest time, we didn’t even have the actual system resources to pull off the ‘Active Installs’ count. We didn’t display that count because we couldn’t do it. The idea that we’re hiding things is ludicrous.”

\n

Raw data is stored for two days and is then overwritten, “basically, there’s too much data to store,” Wood said. “All of the data that w.org gathers is used to display the stats on w.org itself. Nothing special is hidden.”

\n

Data Accuracy is Hard

\n

If developers are going to make business decisions using public data, the data has to be accurate. Accuracy is a complex problem but the team has slowly made progress over the years as legacy systems on W.org are phased out.

\n

“A lot of the w.org systems are poorly made,” Wood said. “They’re old, have been modified dozens of times over the years, and badly in need of updating. For a long time, the data we gathered could not be processed fast enough so we simply threw over half of it away.

\n

“Mostly, we phase out old useless systems and replace them with something better and newer which gives us things to display. Active Install counts was an entirely new system that replaced an older one which didn’t give any useful information.”

\n

Wood confirms what I’ve believed to be true for a long time. WordPress.org is not storing data for an extended period of time and the information that is collected is likely on public display somewhere on the site. What types of data would you like to see on WordPress.org?

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 22 Apr 2016 20:38:26 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:70:"WPTavern: Guggenheim.org Relaunches on WordPress Using the WP REST API";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53954";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:80:"http://wptavern.com/guggenheim-org-relaunches-on-wordpress-using-the-wp-rest-api";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2726:"

guggenheim

\n

The Guggenheim relaunched its website on WordPress this week. The site, which represents the collection of Guggenheim museums, was in need of an overhaul that would modernize its underlying architecture and design.

\n

Laura Kleger, who oversees the foundation’s online projects, explained why the Guggenheim chose WordPress for its new website. She said that the team began with a CMS analysis phase, which included Drupal and WordPress.

\n

“The ideal process for improving websites is incremental and rapid change, but the old Guggenheim.org had accumulated too much technical and structural debt to produce further results, and a big leap forward was required,” Kleger said.

\n

Prior to embarking on the project, the Guggenheim was running on Joomla, but the team had a difficult time implementing small changes.

\n

“We wanted to use a widely adopted, open-source CMS with enough muscle to meet advanced needs,” Kleger said. They needed a user-friendly way for museum staff to create and update content without requesting the help of of designers and developers for simple updates.

\n

“We chose WordPress for a few reasons – among them, the broad pool of developer resources, the excellence of the content administration interface, the rapid update release cycle, the ease of extending functionality, and the CMS’s deep taxonomy,” Kleger said.

\n

The Guggenheim partnered with New York-based development agency Alley Interactive for the website’s overhaul, who recommended implementing a headless version of WordPress with content served via the WP REST API. This allowed the team to build out the frontend of the site using AngularJS.

\n

“As noted by others, this approach is superior to the standard WordPress templating approach for achieving some of the more exciting possibilities in user experience today,” Kleger said.

\n

The new website is a beautiful example of the WP REST API in the wild. For a deeper look at the design and development process, check out Kleger’s post announcing the new Guggenheim.org.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 22 Apr 2016 13:34:51 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:10;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:50:"WPTavern: WordPress 4.5.1 Expected Early Next Week";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53935";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/wordpress-4-5-1-expected-early-next-week";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1567:"

WordPress 4.5 “Coleman” was released last week without too many issues. However, the WordPress development team recently identified two bugs that are prompting an immediate point release scheduled for next week.

\n

The first is that TinyMCE toolbars and tabs are unresponsive in Chrome Version 50.0.2661.75 beta-m (64-bit). The second is that page templates with widgets are styled incorrectly. WordPress 4.5 added a singular class that many themes use, including Twenty Eleven, that breaks a site’s layout. After a lengthy discussion and testing, the decision was to revert the change.

\n

WordPress 4.5.1 RC 1 is available and the core team wants as many people as possible to test the TinyMCE update and other bug fixes included in the release. If you think you’ve discovered a bug, you’re encouraged to report it in the Alpha/Beta section of the support forums.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 22 Apr 2016 02:17:11 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:11;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:86:"WPTavern: Jetpack 4.0 Released with UI Improvements and New Editor View for VideoPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53910";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:96:"http://wptavern.com/jetpack-4-0-released-with-ui-improvements-and-new-editor-view-for-videopress";s: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:2915:"

Shortly after Jetpack 4.0 was released yesterday many users reported a fatal error and/or white screen when updating. Developers started warning each other in the Advanced WordPress Facebook group to avoid updating to 4.0, after having received emails from clients with sites that went down. A followup 4.0.2 release was pushed out today for users with the specific configuration that caused the fatal error.

\n

This is the third time in under two months that the Jetpack team has had to send out a followup update on the heels of a release to correct significant problems. Fortunately, the team worked quickly to get a fix out to sites with fatal errors.

\n

jetpack-ui-improvementsThe 4.0 milestone brings major UI improvements for on-boarding new users. In previous versions of the plugin, visiting the Jetpack settings page showed a big green button prompting users to connect to WordPress.com.

\n

This release introduces a full page explaining the benefits of Jetpack to encourage users to hook it up. It also displays a picture of the development and support team, an explanation of Photon, and the benefits of the Protect module.

\n

Version 4.0 also adds a new editor view for VideoPress that lets users edit the shortcode in the editor with a new modal options window. This makes it easy to wrangle VideoPress settings directly in the editor

\n

A few other notable enhancements in this release include:

\n\n

Jetpack 4.0 also adds performance enhancements for the Protect module and Contact Forms. The method it uses to clean the database of spam form submission records is now more efficient. Check out the changelog to see a full list of all the enhancements and fixes in this release. It should be safe to update your sites and clients’ sites to 4.0.2 without any ill effects.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 21 Apr 2016 21:46:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:12;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:96:"WPTavern: WPWeekly Episode 231 – An Inside Look at the Plugin Review Process with Mika Epstein";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:44:"http://wptavern.com?p=53924&preview_id=53924";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:102:"http://wptavern.com/wpweekly-episode-231-an-inside-look-at-the-plugin-review-process-with-mika-epstein";s: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:2951:"

In this episode of WordPress Weekly, Marcus Couch and I are joined by Mika Epstein. Epstein reviews plugins before they’re added to the WordPress plugin directory and volunteers on the WordPress support forums. We learn what the plugin review process is like and common security issues she discovers. I was shocked to learn that Epstein has experienced some of the worst in people from denying plugins into the directory.

\n

We discuss the idea of a WordPress notifications center and how it could help keep users aware of issues on their sites. Last but not least, she gives us a heads up on common issues that have been reported on the support forums since the release of WordPress 4.5.

\n

Plugins Picked By Marcus:

\n

Ask Me Anything (Anonymously), by Arun Basil Lal from India, enables users to easily add a page or widget using a shortcode where visitors can ask you questions anonymously and you can list them along with your answers.

\n

Admin Cleanup, by Matt Gibbs from Charlottesville, VA, lets you hide menu items (e.g. Tools) entirely, or move them into the WordPress Admin Bar.

\n

Logic Shortcodes, by Samuel Diethelm from Marbella, Spain, enables the use of [if] shortcodes to work with conditional logic based on post meta or taxonomy terms on posts and pages. With conditional logic for taxonomy terms, you can use names, slugs or term_ids. For example: [if taxonomy=”category” slug=”cars”]Content to show[/if]

\n

Dispensary Coupons, by Robert DeVore from Michigan, allows you to prominently display discounts on flower, tinctures, edibles and more with a simple shortcode or widget.

\n

WPWeekly Meta:

\n

Next Episode: Wednesday, April 27th 9:30 P.M. Eastern

\n

Subscribe To WPWeekly Via Itunes: Click here to subscribe

\n

Subscribe To WPWeekly Via RSS: Click here to subscribe

\n

Subscribe To WPWeekly Via Stitcher Radio: Click here to subscribe

\n

Listen To Episode #231:
\n

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 21 Apr 2016 19:15:32 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:13;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:79:"WPTavern: Beaver Builder Passes $1 Million in Revenue After 2 Years in Business";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53893";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:88:"http://wptavern.com/beaver-builder-passes-1-million-in-revenue-after-2-years-in-business";s: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:2778:"

beaver-builder

\n

Beaver Builder, the drag-and-drop page builder plugin, celebrated two years in business this week. Fastline Media, the parent company, started as a web design agency, but due to the success of their product the team closed down its client services department at the beginning of 2016 to focus 100% on Beaver Builder. After just two years in business, the plugin has passed $1 million in revenue.

\n

Beaver Builder hired its first employee in April, 2015, a year after launching. It now employees four people full-time and a few part-time contractors in addition to its three founders. The plugin recently passed 100,000 active installations between the WordPress.org and commercial versions.

\n

As part of their two year milestone post, the team also announced that it acquired the beaverbuilder.com domain name, which set them back $2,300, according to co-founder Robby McCullough.

\n

“There was a really good salesman for the holding company that we bought it through,” McCullough said. “He convinced me it was a steal. Considering it probably cost ~$10 originally, though, it was a bit of a sting.”

\n

McCullough said that he and his co-founders see Beaver Builder, and other WordPress website builders, as being a bridge between WordPress and its mainstream market competitors like Wix and Weebly.

\n

“This idea came up during Jeff King’s presentation at Pressnomics, as more and more traditional ‘jobs’ become automated and obsolete (think driverless cars/trucks on the horizon),” McCullough said. “More and more people will be forced to start small businesses and create their own opportunities. Along with democratizing publishing, we think WordPress (and the web in general) — hopefully with the help of Beaver Builder — has the opportunity to ‘democratize the workforce.''”

\n

With the $1 million milestone under their belts, McCullough said the Beaver Builder co-founders plan to keep putting food on the table and taking care of customers.

\n

“We’ve made it this far by providing great support and embracing customer feedback,” McCullough said. “We might be in the driver seat, but our customers are the ones laying the track.”

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 21 Apr 2016 18:03:37 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:14;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:56:"WP Mobile Apps: WordPress for iOS: Call for beta testers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://apps.wordpress.com/?p=3397";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"https://apps.wordpress.com/2016/04/21/wordpress-for-ios-call-for-beta-testers/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:769:"

Hello, WordPress users! We are launching a shiny, new TestFlight beta testing program for WordPress for iOS. If you yearn for the latest features, enjoy breaking things, and don’t mind uncovering a bug or two in the process, we need you!

\n

Please fill out our signup form to request to join as a beta tester. If there are available spaces in the beta program, you will receive an email from TestFlight with instructions to download the latest beta release. We can’t wait to hear your feedback!

\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 21 Apr 2016 12:35:17 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Rachel";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:15;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:34:"Matt: In Memoriam: Chuck Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:22:"https://ma.tt/?p=46426";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:50:"https://ma.tt/2016/04/in-memoriam-chuck-mullenweg/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5678:"

MCM_5265 (1).JPG

\n

My father, Chuck Mullenweg, passed one week ago today. After over a month in ICU he had just been transferred to long-term acute care in a different hospital and we were looking forward to a tough but steady road to being back home when he took an unexpected and sudden turn. I’ve started and stopped writing this dozens of times since then and words continue to fail me.

\n

Here’s the rememberance that ran in the paper a few days ago:

\n

\n

IMG_6024.JPGIt is impossible to overstate the influence my father has had on every part of my life: Why did I play saxophone? Dad did. Computers and programming? Dad did. Travel? He was frequently stationed overseas and even when we didn’t visit he would always bring back a cool gift for myself and my sister. He drove me to the HAL-PC office (local non-profit) every weekend where I’d learn so much fixing people’s broken computers and being exposed to open source for the first time. His O’Reilly “camel book” on Perl was the first scripting I learned, and he pointed me toward Mastering Regular Expressions which became the basis of my first contribution to b2, texturize.

\n

We were in a father / son bowling league. I remember admiring his work ethic so much: he’d get up before dawn every morning and put on a suit, grab his briefcase, and go to work. He often went in on weekends and I loved to go with him because they had “fast” internet at the office and I could read Dilbert and about Babylon 5. He was a voracious reader and learner, and loved tinkering whether it was cars or networking. In the other room I can hear a bitcoin mining rig he set up a few years ago. He was independent minded and unafraid to question the status quo.

\n

IMG_4385.JPG

\n

There’s a photo somewhere of my dad mowing the lawn and me following behind him with a toy lawnmower, which is a perfect metaphor for how I’ve always followed in his footsteps.

\n

MCM_5113.jpg

\n

I’m at a loss.

\n

Parents are there literally the day you’re born, and it’s hard to imagine a life without them. Most people reading this will outlive their parents, and deal with their mortality and often difficult and painful final days as those who brought us into this world exit it. I’ve been reading and reading all the writing I can find on this topic, but nothing really prepares you for it, and nothing makes it better to go through. It’s terrible.

\n

MCM_7807.jpg

\n

He wasn’t someone to tell you what the right way to live was, in fact he was incredibly open minded. He didn’t tell you, he showed you how he lived his life from a place of integrity and trust, how he was in his relationship with my mom, how he was in business. He wasn’t flashy and seldom talked about his accomplishments or all the people he had helped out along the way. Many of the stories of appreciation coming in I’m hearing for the first time. In getting his books and taxes together this past week I was humbled by how simply he lived this season of his life, not into material things but cherishing relationships and his quiet life in the suburbs with my mother.

\n

IMG_20151225_160835 (1).jpg

\n

My biggest blessing has been my family. Every one is the most supportive you can imagine. So inspiring… much of what I’ve done in the world was in the context of making my parents proud, and their relationship to each other and the amazing man my dad was has set a bar I hope to approach in my lifetime. The last few years he got much better about showing his pride in my sister and I, and even more importantly saying “I love you,” the three words that are among the best gift we can give each other. Don’t forget to use them, even if it feels cheesy or embarrassing, and for those of you with parents still around please give them some extra time and a hug for me. This was unexpected, we really believed he was on an upward trajectory. You never know when the words you share with someone might be the last.

\n

MCM_5139.JPG

\n

I made a page you can see his official obituary, information about his memorial service in Katy, and leave any memories you have of him at ma.tt/chuck.

\n

 

";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 21 Apr 2016 06:58:35 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:16;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:62:"WPTavern: A Tip for Convincing Customers to Renew License Keys";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53881";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/a-tip-for-convincing-customers-to-renew-license-keys";s: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:3583:"

Mika Epstein, who helps review plugins before they’re added to the directory and is a dedicated support forum volunteer, has a great post on the difficulties associated with plugins that require license keys for updates. She addresses topics like keeping users informed, ownership, and bundling plugins with themes. She also suggests the following solution to get users with an expired license key to renew.

\n

What if the updater kept checking, license expired or not, and when you clicked to upgrade it alerted you?

\n

Your license for Foobar has expired. Please renew it in order to upgrade.

\n

What if you got this email?

\n

Hey, you bought Foobar back in 2014 and that license lapsed. Normally I’d never bother you, but today I’ve pushed a major security fix. Since this is a security release, I’m offering you a discount. It’s already applied to your account, just log in and you can buy the upgrade at 50% off. If you’re not using Foobar anymore, click here and I’ll have your account flagged so we don’t bother you about this again.

\n

How happy would you be to find out someone saved your soy bacon?

\n

Based on the comments of her article and from what Epstein has experienced from years of providing WordPress support, it’s a complex problem without a solution. The perils of updating commercial plugins bundled with themes that require a license key were apparent two years ago when a critical security vulnerability was discovered in Revolution Slider.

\n

Had the news not been published across media outlets, many users may not have known about the update. In some cases, users couldn’t update because they didn’t have the required license key, as was the case with Brenda.

\n

The slider plugin was bundled in a theme that a PREVIOUS web developer installed for one of my clients. As such, I do not have the theme license key. There is NO WAY that I would ever have known about this extreme vulnerability had Sucuri not released it.

\n

Some companies make security updates available to all customers regardless if their license is expired. For example, earlier this year, a critical security vulnerability was discovered in Elegant Themes products. Due to the severity of the issue, the company made the updates available for free to expired accounts. The updates contained only the security fix without any of the new features developed in recent versions.

\n

There’s a delicate balance between pushing customers to upgrade, renew license keys, and making it easy to do so. As Epstein says in the conclusion of her post, “If you make it easy to pay, people will renew and pay. If you inform them of security issues, they will pay and upgrade.”

\n

If you’re a commercial plugin developer, how do you inform and convince customers to renew their license keys? Also, how do you handle security updates for customers with expired licenses?

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 20 Apr 2016 22:49:41 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:17;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:79:"WPTavern: WP Dispensary Offers a Complete Marijuana Menu Solution 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:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53859";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:89:"http://wptavern.com/wp-dispensary-offers-a-complete-marijuana-menu-solution-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4972:"photo credit: Blueberry Kush, Indica-3 - (license)photo credit: Blueberry Kush, Indica-3(license)\n

With 24 states having enacted laws to legalize medical marijuana, the industry is booming and dispensaries need websites. WP Dispensary, released five months ago, is the first WordPress plugin to target this underserved market.

\n

After creating Leafly Reviews, a plugin that displays dispensary reviews from Leafly using a widget or shortcode, Robert DeVore decided he wanted to make more solutions to help dispensary owners build professional websites. WP Dispensary and Dispensary Coupons soon followed on WordPress.org.

\n

Many marijuana dispensaries post their product menus on a board, printed on paper, or displayed on a tablet. The WP Dispensary plugin makes it easy to enter products, with all their relevant details, into a menu for display on a WordPress-powered website. This makes it easy for the dispensary owner to create, edit, and maintain a master list of products, which can also be displayed in the store.

\n

wpd-menu-update-1.4The plugin creates custom post types for flowers, edibles, concentrates, pre-rolls, and topicals. It also includes custom taxonomies for aromas, flavors, effects, symptoms, and conditions. This allows visitors to easily sort available products.

\n

Entering a new menu item is as easy as writing a post, so dispensary owners will have no problem keeping their menus updated:

\n

add-flower

\n

Dispensary owners can also enter product prices for flowers and concentrates based on weight, from 1/2 gram to an ounce. Edibles and pre-rolls allow you to enter the THC and CBD percentages.

\n

Today’s version 1.4 release, in honor of the 4/20 holiday, adds topicals to the existing custom post types, with extra product information options for unit price, unit size, and THC mg and CBD mg.

\n

When used in combination with DeVore’s free Dispensary Display theme, products are displayed beautifully on the frontend with images for each menu item. After updating it to be compatible with the 1.4 release, DeVore plans to get the theme ready for submission to the official WordPress theme directory.

\n

dispensary-items

\n

WP Dispensary is also fully integrated with the WP REST API so developers can pull data from the custom post types and display it with JavaScript in a website or app. This currently requires the REST API plugin version 2 until the API is officially merged into core.

\n

WP Dispensary is 100% open source and available for anyone to download for free from WordPress.org. Full documentation is available for the plugin on the WP Dispensary project website, which includes instructions for setting it up, information on add-ons, and additional plugin suggestions. The plugin is also available on GitHub if you want to contribute bug fixes or improvements.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 20 Apr 2016 20:09:33 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:18;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:68:"WPTavern: The Quest For a Centralized WordPress Notifications Center";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53785";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/the-quest-for-a-centralized-wordpress-notifications-center";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:9813:"

Based on the number of comments we received on WordPress admin notices being abused, it’s clear that a number of you feel the same way I do. Thanks to the healthy discussion that took place, I learned several new things about admin notices I’d like to share with you.

\n

Themes Do it Too

\n

While the crux of the article focuses on plugins being the largest offender, the issue also applies to themes hosted in and outside of the WordPress theme directory. In one of the more extreme examples I discovered, earlier this year, Redux Framework added an admin notice that informed users of a new commercial extension.

\n

When users questioned how to remove the notices, Redux Framework developers responded by creating a commercial extension.

\nRedux Framework Admin NoticeRedux Framework Admin Notice\n

For $59 a year, the extension removes admin notices, ads from the options panel, and the dashboard news widget. Even though the notices and ads are only displayed when the framework’s dev mode is enabled, it seems like a ridiculous way to generate revenue.

\n

While researching for this article, I discovered that Dovy Paukstys, Co-Founder and lead developer of Redux Framework, is in the process of removing advertising from current and future admin notices. Paukstys provided the Tavern with the following statement:

\n

As a fellow developer, I can see how frustrating an admin notice can be when used as an ad. To support the requests of the community, we will no longer use admin notices to advertise premium features. We will use admin notices for their intended purpose, to inform and educate our users.

\n

We hope that other frameworks, plugins, and products will follow suit.

\n

WP Notification Center

\n

Inspired by our article, WPBeginner looks into whether or not WordPress needs a notification center. As it turns out, there are a couple of different plugins and projects in the works aiming to solve this problem.

\n

The WP Notification Center plugin, developed by Barry Kooij and Never5, adds a notification center to WordPress. This plugin moves admin notices to a central location freeing up valuable screen real-estate.

\nWP Notification CenterWP Notification Center\n

When activated, a notifications area is added to the admin bar. This tells you the number of notices available and provides quick viewing access. The messages are also color coded to easily tell the difference between update and error messages.

\n

Links within the notice take you to the corresponding admin page to view more details. Unfortunately, you can’t dismiss notices from the admin toolbar without navigating to the links within them. According to Kooij, dismissing notices is a difficult problem to fix.

\n

The admin notices are added in code so I can’t stop them from being added. That means I would need to store what notices are dismissed and check all added notices on every admin page load to filter out the ones that are dismissed.

\n

It’s the other way around from an ideal situation, where a notice would be added to the database and I can simply remove it when it’s dismissed.

\n

As for the possibility of getting WP Notification Center into core, “I would love to write a patch for core that would set this up the right way,” Kooij said. “That would eventually involve deprecating and stop displaying notifications that are being added the old way.”

\n

If you’re interested in tackling this problem or would like to contribute to other facets of the project, you can find it on GitHub where issues and pull requests are welcomed.

\n

WordPress Notifications API

\n

During the WordPress Core developer chat back in January, John Blackbourn proposed a Notifications API that would replace wp_mail() with an extensible API. The API could be hooked into by developers to send notifications via webhooks that would enable Slack and IM notifications. There would also be UI added so users and admins can choose which individual notifications and types to opt-in/out of.

\n

The API is not directly relevant to admin notices but it’s possible they could be connected in the future. Blackbourn plans to publish a detailed blog post outlining the idea in-depth within the next week or two.

\n

Jetpack Notifications

\n

Jetpack handles notifications via a module that adds an icon to the toolbar. Notifications include, Likes, Comments, Follows, and the ability to moderate and reply to comments.

\nJetpack NotificationsJetpack Notifications\n

I use this notifications area all the time to moderate and respond to comments. It’s convenient and usually loads items quickly. However, I’m not sure how well the interface would work if admin notices from themes and plugins were added.

\n

Subscribers Can Possibly See Admin Notices

\n

One of the most surprising things I’ve learned is that users who are subscribers can possibly see admin notices. On the surface, this doesn’t make sense as subscribers don’t have the capabilities necessary to act on notices. I tested this theory on the WP Tavern test site by activating both Yoast SEO and the All in One SEO plugin.

\n

This is what I see while logged in as an admin.

\nAdmin Notices While Logged in as AdminAdmin Notices While Logged in as Admin\n

This is the same dashboard while logged in as a subscriber.

\nAdmin Notices While Logged in as A SubscriberAdmin Notices While Logged in as A Subscriber\n

As you can see, the notices disappear when logged in as a subscriber. While I initially thought this was an issue in core, it appears to be more of a developer issue. JS Morisset, who commented on the original article has a possible explanation:

\n

The word ‘admin’ (for notices) could be interpreted in two ways — either they’re admin / back-end notices, or they’re administrator notices.

\n

I’ve always understood that they are the former (notices displayed on the admin back-end), and can be seen by any / all back-end users, so I use ‘current_user_can()’ in my own code to display different kinds of messages. Maybe this is more of a developer awareness issue than a core WP issue.

\n

While I have not analyzed the code in the plugins I tested, the current_user_can() capability check would explain why admins see notices while subscribers do not.

\n

What I’d Like to See in a Centralized WordPress Notifications Center

\n

Admin notices are a great way for developers to inform users of important information. But with all the notices bombarding site administrators these days, there’s a need for an organizational user interface to manage them all. When considering the types of notifications to allow and display, a notification center in WordPress can easily turn into a deep rabbit hole.

\n

What I’d like to see is a notification center that notifies me of core, plugin, and theme updates in addition to whatever notices those items generate. I also want it to tell me about errors on the site. These notifications should be in an easy-to-use interface that’s quick to access. Notifications should be dismissable or have a status where they can be marked as read.

\n

As seen above, there are plenty of people and projects working on solutions to this problem. What would be your ideal WordPress notifications center?

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 20 Apr 2016 02:11:41 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:19;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:107:"WPTavern: Developers Urge White House to Consider “Open by Default” for New Open Source Software Policy";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53787";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:111:"http://wptavern.com/developers-urge-white-house-to-consider-open-by-default-for-new-open-source-software-policy";s: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:7190:"photo credit: The White House Washington DC - (license)photo credit: The White House Washington DC(license)\n

Last month the White House called for developers to comment on its proposed draft for a Government-wide Open Source Software policy. The new policy would require code paid for by the government to be made available for reuse across other federal agencies and a portion (20%) of the custom code would be released as open source.

\n

The period for public comment officially ended yesterday and now the White House Office of Management and Budget (OMB) will analyze the feedback on GitHub to refine the final policy.

\n

CIO of the Department of Homeland Security Affirms Benefits of Open Source for Cybersecurity

\n

Yesterday, Luke McCormack, the Chief Information Officer of the Department of Homeland Security, offered formal comments on GitHub, affirming the benefits of open source, especially in regard to cybersecurity:

\n

When managed appropriately, releasing code as OSS and engaging with the community can have extensive cybersecurity benefits. Security through obscurity is not true security: we cannot depend on vulnerabilities not being exploited just because they have not been discovered yet. There are many examples of widely-used pieces of software that benefit greatly from constant and vigorous community reviews and contributions to find bugs, and thus making them more secure. We look forward to government systems joining them.

\n

McCormack’s clarification of the department’s official position combats the common misconception that open source code is inherently insecure. The comment also affirms the department’s support for working with the open source community.

\n

“Participation in the open source community will further strengthen our systems and help fulfill the mission of the Department,” McCormack said. “Likewise, we believe in the potential of this policy to incentivize innovation and enable a new generation of companies to do business with the Government.”

\n

Developers Push for an “Open by Default” Policy

\n

The proposed policy encourages federal agencies to work together to make reusable modules and to build active communities around the open source code they release. It is a better use of American tax dollars, but there is also a significant contingency of developers who believe the policy doesn’t go far enough with its arbitrary 20% requirement.

\n

In an issue titled “Software should be “Open by default” not 20%,” the Presidential Innovation Fellows Foundation (PIFF) shared the following statement summarizing the general consensus of its 120 members:

\n

The PIF Foundation membership strongly believes that it is in the best interest of increased government efficiency and taxpayer savings for the OMB to set a policy of ‘open by default’ for custom software developed by the Federal Government rather than setting a goal of at least 20% OSS as originally proposed in the source code policy.

\n

Ben Balter, open source advocate and product manager at GitHub, expanded on why the PIFF believes that taxpayer-funded government code should be open by default. Balter penned an op-ed for FCW about how the proposed open source policy, with its 20% requirement, is a missed opportunity to modernize government. He contends that the proposed three-year pilot program will not likely produce results beyond what is already known, as open source has already undergone a two-decade pilot. By 2019, the push for ‘open by default’ will be long overdue:

\n

It’s no secret that government agencies lag behind the private sector with regard to technology, and the proposed source code policy hesitantly testing the waters of open source is no exception. Open source software isn’t a potential fad to be cautiously evaluated as part of a three-year pilot program, nor are the benefits unknown or unproven in large enterprises. Open source is simply how industry builds software today. You’d be hard-pressed to find a startup worth its venture capital funding that isn’t based, at least in part, on open source software. The same holds true of most industry leaders, already embracing open source as a core part of their business strategy, including Microsoft, Apple, Google, IBM, SAP and Adobe to name a few.

\n

Mozilla representatives also commented on the issue to affirm its support for “open by default” and clear international licensing. The company identified four key reasons for shooting for 100% rather than mandating a minimum requirement:

\n\n

Mozilla and many others commenting on the issue are urging the White House to reject the notion of an arbitrary 20% target and instead aim for open source from the outset, removing sensitive parts of the code base as necessary.

\n

It’s unclear how much weight this particular issue will hold in the creation of the final policy, but the opportunity for industry experts to comment on and contribute to the process is already a major step forward. The policy is still in draft status and we will publish an update once the OMB has finalized its decision.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 19 Apr 2016 22:35:41 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:20;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:77:"WPTavern: Linus Torvalds Explains How Open Source Led to the Success of Linux";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53795";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:87:"http://wptavern.com/linus-torvalds-explains-how-open-source-led-to-the-success-of-linux";s: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:4722:"

TED-linus-torvalds-interview

\n

In a rare and deeply personal interview with TED Curator Chris Anderson, Linus Torvalds spoke about how open source made his projects what they are today. Torvalds, creator of the Linux kernel and the Git version control system, revealed that he prefers to work alone, in his bathrobe, in total silence. Although he heads up one of the largest open source projects in the world, with 1,000 contributors involved in every bimonthly release, Torvalds claims he is not a people person.

\n

“I did not start Linux as a collaborative project,” Torvalds said. “I started it as one in a series of many projects I had done at the time for myself, partly because I needed the end result, but even more because I just enjoyed programming.”

\n

Torvalds said that open source wasn’t really on his radar at all. As Linux grew, it became something he wanted to show off to people and he made it publicly available. It wasn’t even open source at that point, which was mainly called “free software” back then. He had no intention of using open source to improve his project. He simply invited comments on his project and, to his amazement, people took interest in the code and started contributing ideas.

\n

“Every project before that had been completely personal, and it was a revelation when people just started commenting, started giving feedback on your code,” Torvalds said.

\n

As the Linux project grew, thousands of people wanted to contribute. Torvalds said that it reached a breaking point where he knew he couldn’t scale it to work with that many people without having some kind of version control system in place.

\n

“So git is my second project, which was only created for me to maintain my first project,” he said. “And this is literally how I work. I do code for fun, but I want to code for something meaningful. Every single project that I’ve ever done has been for something I needed.”

\n

Ironically, for someone who professes not to be a people person, Torvalds revolutionized collaborative development for teams and projects with Git. He said that he has often been in conflict with other people and can be “myopic when it comes to other people’s feelings.” Open source gave him a way to work effectively with other people:

\n

One of the things I really like about open source is it allows different people to work together. We don’t have to like each other, and sometimes we really don’t like each other. There are very, very heated arguments. You don’t even agree to disagree – it’s just that you’re interested in different things.

\n

Coming back to the point that I said earlier, that I was afraid of commercial people taking advantage of your work – It very quickly turned out that those commercial people were lovely people. And they did all the things that I was not at all interested in doing and they had completely different goals. And they used open source in ways that I just did not want to go. But because it was open source they could do it and it actually works really beautifully together.

\n

One of the most interesting things about his story is that he first embraced open source out of practicality, not because of ideological convictions.

\n

“Without doing the whole open-source-and-really-letting-go thing, Linux would never have been what it is,” Torvalds said. Even so, he said he doesn’t necessarily think the principle can be applied to other aspects of life beyond code without a lot of grey areas.

\n

Despite having changed the future by creating technology that powers the internet, Torvalds does not consider himself a visionary.

\n

“I am not a visionary,” he said. “I do not have a five year plan. I’m an engineer. I’m perfectly happy with all the people who are walking around staring at the clouds and looking at the stars and saying, ‘I want to go there.’ But I’m looking at the ground and I want to fix the pothole that’s right in front of me before I fall in.”

\n

Check out the 21-minute interview in the video below:

\n

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 19 Apr 2016 05:05:16 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:21;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:90:"WPTavern: WordPress 4.6 Development Kicks Off This Week, Dominik Schilling to Lead Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53759";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:99:"http://wptavern.com/wordpress-4-6-development-kicks-off-this-week-dominik-schilling-to-lead-release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4254:"photo credit: Angelina Litvinphoto credit: Angelina Litvin\n

As soon as WordPress 4.5 was out the door, WordPress 4.6 release lead Dominik Schilling opened up the floor for discussion on wish list items ahead of the kickoff chat on Wednesday. The development community chimed in with feedback on their users’ biggest pain points, important UX issues to be solved, and existing features they would like to see polished.

\n

If the 200+ comments on the post are any indication, WordPress users and contributors are buzzing with ideas for improving the software in the upcoming release. The Make/WordPress core blog doesn’t have a voting system, but a few of the wish list items with the most +1’s include:

\n\n

Ella Van Dorpe also posted a summary of the most recent meeting for contributors on the core editor component. The team discussed a wish list for the editor in 4.6 and beyond, including the possibility of creating a feature plugin that uses ICE to allow suggestions and comments on content. A revamp of the Publish meta box, more experimentation with inline toolbars, more formatting shortcodes, and other improvements are also on the list.

\n

Weston Ruter and contributors plan to continue chipping away at the customizer roadmap and component page with a focus on customizer transactions. Ruter would also like to introduce basic content authorship in the customizer in 4.6, along with improvements to existing features.

\n

The 4.6 wish list offers a small preview of what might be coming in this release, and there’s still time to contribute new items and feedback. If you want to advocate for your ticket or wish list item, join the WordPress 4.6 kickoff chat in the #core Slack channel on Wednesday at 3:00PM CDT.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 18 Apr 2016 18:25:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:22;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:94:"WPTavern: Sucuri Partners with Let’s Encrypt to Offer Free SSL Certificates to All Customers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53721";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:101:"http://wptavern.com/sucuri-partners-with-lets-encrypt-to-offer-free-ssl-certificates-to-all-customers";s: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:3363:"

ssl

\n

Sucuri, a website security company that specializes in securing WordPress (and other CMS) sites, announced that SSL certificates are now available at no cost to all customers who make use of the company’s firewall. As a sponsor of the Let’s Encrypt initiative, Sucuri joins Automattic as one of the first companies to fully automate free SSL Certificates for all customers. The company has also enabled the new HTTP/2 protocol by default, which offers significant performance advantages compared to raw HTTPS.

\n

Unlike WordPress.com, which does not allow users to disable encryption, Sucuri offers a “No HTTPS” option which will force all traffic to be redirected to HTTP. Customers can also select from partial SSL, full SSL, and Custom SSL (where they can use their own certificates).

\n

Despite their sponsorship of the Let’s Encrypt initiative, Sucuri’s founders emphasized that SSL support is not a magic wand that instantly makes your website secure, since it only protects information transferred between the browser and web server.

\n

“Even though we are providing SSL certificates to all our clients, we don’t subscribe to the idea that every website needs HTTPS enabled,” Sucuri CTO Daniel Cid said. “The idea that this makes for a more secure web is inaccurate.”

\n

Cid and co-founder Tony Perez share a perspective tempered by years of experience fixing hacked websites. The majority of compromises come through brute force attacks, software vulnerabilities, and DDOS attacks.

\n

In a post titled HTTPS Does Not Secure Your Website, Sucuri CEO Tony Perez identified three general instances where SSL is essential: when transferring personal identifiable information, transaction data in e-commerce, and other sensitive data. Outside of these scenarios, HTTPS is not as critical.

\n

“I have no doubt that HTTPS will continue to grow in popularity,” Perez said. “What I take exception to is when technology professionals say that one of the driving factors for HTTPS is it’ll secure your website, because it won’t.”

\n

Sucuri only recommends HTTPS for customers who are already taking security seriously and want to add protection for data in transit. The company suggests putting more basic security measures in place first – keeping your software updated, implementing intrusion detection, getting code reviews, and storing passwords securely.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 18 Apr 2016 04:21:35 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:23;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:44:"Post Status: WordPress 4.5 — Draft Podcast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"https://poststatus.com/?p=23435";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"https://poststatus.com/wordpress-4-5-draft-podcast/";s: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:2142:"

Welcome to the Post Status Draft podcast, which you can find on iTunesStitcher, and via RSS for your favorite podcatcher. Post Status Draft is hosted by Joe Hoyle — the CTO of Human Made — and Brian Krogsgard.

\n

WordPress 4.5 was just released, and comes backed with a lot of great new features. Some of our favorites have to do with the editing experience, but we go over all the new user facing features as well as under the hood bits of WordPress 4.5. We also dig into the earliest stages of WordPress 4.6, which is already underway.

\n

If you’ve been enjoying Post Status Draft, would you considering rating us in iTunes? We’ve never asked for it, but it would help tremendously! You can do so by going to iTunes, click “Ratings and Reviews” and leave a quick review. Thanks!

\nhttps://audio.simplecast.com/35565.mp3\n

Direct Download

\n

Links

\n\n

Sponsor

\n

This podcast is sponsored by WP101. The WP101 Plugin delivers a set of WordPress video tutorials right in your clients’ dashboard, freeing your time to do what you do best! They also just released a great 22 part course on WooCommerce that you should definitely check out. Thank you to WP101 for being a Post Status partner.

";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 16 Apr 2016 12:58:57 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Katie Richards";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:24;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:68:"WPTavern: Help Test the New WordPress Importer Plugin in Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53477";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/help-test-the-new-wordpress-importer-plugin-in-development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4379:"photo credit: Ryan McGuirephoto credit: Ryan McGuire\n

The official WordPress Importer plugin is in shambles and has frustrated users with inconsistent performance for years. The plugin has more than a million active installations and is critical for migrations, unless you are familiar with using more advanced tools. With years of unresolved support threads identifying the plugin’s many bugs, the importer is in need of some help.

\n

In a volunteer-driven open source community, important projects like the WordPress importer can go neglected for a long time until someone gets inspired to take on the responsibility. The good news, however, is that the importer is in the process of being completely rewritten thanks to Ryan McCue, who is also a leader on the WP REST API project.

\n

The WordPress Importer Redux project is available on GitHub with fixes for some of the previous plugin’s most troublesome issues. McCue is rewriting the importer with the goals of making it “fast, lightweight, and consistent.” He summarized the major improvements that are part of version 2 in a post on Make/WordPress core blog:

\n\n

Until recently, the new importer had no UI, so the only way to test it was to run it via WP-CLI. A new Admin UI branch of the project is now available so you can download the plugin as a zip and activate it inside WordPress. McCue tweeted a sneak peak at the progress bar for the import summary:

\n\n

\n

He is also working on a better user mapping UI for the importer. This image shows the UI in progress with the old one at the bottom for reference.

\n

importer-v2

\n

If you want to test the new importer, McCue encourages users to compare the experience to the old importer and take note of what works and what breaks. Feedback is welcome in the project’s GitHub issues queue on the designated general feedback thread.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 15 Apr 2016 21:50:24 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:25;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:73:"WPTavern: MonsterInsights Addresses User Criticism With Immediate Changes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53706";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:83:"http://wptavern.com/monsterinsights-addresses-user-criticism-with-immediate-changes";s: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:3623:"

When Google Analytics by Yoast suddenly turned into MonsterInsights yesterday, many users were taken by surprise. Users voiced their frustration and concerns on the plugin’s support forum. Some users thought their sites were hacked after noticing the menu label changed and seeing a bright green menu icon.

\n

Syed Balkhi, founder of WPBeginner.com, along with Chris Christoff, lead developer of the MonsterInsights plugin, immediately responded to criticism in the forums. One of the biggest complaints from users was the lack of communication that the plugin changed hands.

\n

Christoff admits that the plugin’s changelog should have included information about the switch.

\n

I thought I had included information about the acquisition in the changelog, but I apparently didn’t. That’s totally on me, and I can certainly understand why people might be a bit upset over that.

\n

Complaints about the bright menu icon were addressed with a recent update that lowers its opacity to be more in line with other icons. Even though the bright green is gone, the icon is still noticeable. Here’s what it looks like.

\nNew MonsterInsights Menu IconNew MonsterInsights Menu Icon\n

The menu label was also renamed from MonsterInsights to Insights. Not only is it shorter, it’s more in line with the plugin’s functionality. Its placement within the admin menu was also fixed as it no longer shows up near the top of the list.

\n

Another concern brought up by users are the four display ads on the plugin’s dashboard page. While some users thought these were new, they’ve always existed in the free plugin. Instead of advertising Joost de Valk’s products, they now advertise four complimentary products affiliated with Balkhi.

\nDisplay Advertising in MonsterInsightsDisplay Advertising in MonsterInsights\n

Within the last 24 hours, the plugin has received a number of enhancements based on user feedback. Although the lack of communication put some people off, the company’s quick response has satisfied at least a few users. Balkhi says the team continues to listen to feedback and that if you have a feature request or bug report, to file it on the project’s GitHub page.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 15 Apr 2016 17:17:56 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:26;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:53:"WPTavern: Please Stop Abusing WordPress Admin Notices";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53651";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/please-stop-abusing-wordpress-admin-notices";s: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:1728:"

We’ve recently installed some new plugins on the Tavern and one of them generates an admin notice that can not be dismissed without disabling it. Not only is this frustrating, but it makes it less likely that I’ll give the developer money to purchase the pro version.

\n

Here’s what the admin notice looks like. I’ve hidden the name of the advertised plugin as the goal is to inform people, not shame plugin authors.

\nAdmin Notice With No Dismissal ButtonAdmin Notice With No Dismissal Button\n

While I expect admin notices when activating a plugin or after a major update, I don’t appreciate the inability to dismiss them. I also don’t appreciate admin notices that reappear no matter how many times I click the dismiss button. The worst part about the notice above is that it shows up on every page hijacking important screen real-estate in the WordPress backend resulting in a terrible user experience.

\n

WordPress plugin authors, I respectfully request that you use the admin notice feature in WordPress for providing crucial information about your plugins and not as a billboard. Give users the opportunity to dismiss them and make sure that when dismissed, they don’t reappear unless the user clears their browser’s cookies.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 15 Apr 2016 16:11:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:27;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:72:"WPTavern: 3 Signs Your WordPress Development Team Is Not Actually a Team";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53693";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:82:"http://wptavern.com/3-signs-your-wordpress-development-team-is-not-actually-a-team";s: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:5649:"

petersuhmThis post was contributed by guest author Peter Suhm. Peter is a web developer from the Land of the Danes. He is the creator of WP Pusher and a huge travel addict, bringing his work along with him as he goes.
\n 

\n
\n

If you run a typical WordPress agency, I will be bold enough to say this: Your WordPress team is probably not working as a team. Ouch!

\n

Developer productivity and workflow strategies are my passions. I try to talk to every WordPress developer I meet about how they work and what problems they face. If you ever used WP Pusher, signed up for one of my crash courses on Git, or if for any other reason I have your email address, there is a good chance that I have talked to you about this as well. I have spoken with hundreds of WordPress freelancers and agencies in order to get insights about how they work. You will be surprised to hear how many WordPress agencies are working as small one-person teams, instead of actually working together. The reason for this is a lack of some of the most basic enablers of teamwork.

\n

Here are 3 things that will make it very obvious to me that your WordPress team is probably not as much of a team as you would like to think:

\n

1. Lack of version control

\n

Did you read this headline thinking “Great, we’re committing everything to Bitbucket already, so we’re fine”? To be honest: Having an account on Bitbucket and pushing all your code there is not enough.

\n

Git is not just about backing up your code on Bitbucket or GitHub. It is one of the most basic collaboration tools for your developers. Git gives them the freedom to collaborate on the projects they work on, but only if used in a certain way. If the commit log is a big mess of huge commits with meaningless commit messages, it won’t be very helpful to the rest of the team.

\n

However, if a commit represents a small, isolated change and a commit message is well-written and concise, suddenly Git becomes a tool that your team can use to stay on top of what everyone else is working on. In teamwork, communication is key and Git is a great way for your team to communicate what is going on within the different code bases they are working on.

\n

2. Lack of a code collaboration platform

\n

The main reason to use a code collaboration platform like GitHub or Bitbucket is not to have a backup of your code. Dropbox would probably be easier to use in that case.

\n

GitHub in particular is a great place for code collaboration. The way pull requests are implemented on GitHub makes reviewing code very enjoyable. Pull requests are a way for your developers to act as a team, by helping each other out with knowledge sharing and feedback. By opening a pull request early in the process of building a new feature, you can invite your co workers to follow your progress and chip in with their knowledge. I have written in detail about pull requests on the WP Pusher blog if you want to learn more.

\n

Of course, GitHub is also a great place to see the current status of your team spirit. Are people sharing their work and asking for feedback? What are they getting it in return? Are people helping each other out? Are they working as a team?

\n

The culture is important as well. Giving each other feedback needs to be the norm. Using pull requests and having a list of well-written commit messages on GitHub is the first step, but the culture needs to be embraced as well. Asking for help should be rewarded and not frowned upon.

\n

3. Lack of a deployment strategy

\n

How are you going to review something that was edited live on a production site? The truth is, you are not.

\n

When your team is up and running with Git, a proper deployment strategy is a no brainer. It is the natural next step. If you do not have a proper strategy for your deployments, it tells me two things: 1. You are probably not using version control properly. 2. Your developers are manually uploading files over FTP – files that were never reviewed by any teammate.

\n

If you are using version control, having a deployment process that kicks in when code has been reviewed and is ready for production is easy. The lack of a deployment strategy is a very clear sign that something is missing in your processes.

\n

If you read this far and are realizing that your WordPress team is not really working as a team, here is my number one recommendation: Get every single technical person on your team on board with Git. Build a culture where communication and collaboration are the norm. In practice that means at least two things: First, when you look over the commit log on GitHub, you can actually see what happened and when. Second, when you go through the pull requests, the team spirit should be obvious from the way feedback is given and code reviews are done.

\n

My hope is that this post has convinced you that Git is more than just a backup tool. In fact it is one of the most important enablers for teamwork among developers. Without the foundation provided by Git, working effectively as a development team is almost impossible.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 15 Apr 2016 04:45:41 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:28;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:66:"WPTavern: Font Awesome 4.6.0 Adds New Accessibility Icons Category";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53488";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:76:"http://wptavern.com/font-awesome-4-6-0-adds-new-accessibility-icons-category";s: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:3432:"

font-awesome-accessibility

\n

Font Awesome creator Dave Gandy announced the release of version 4.6.0 this week. The open source vector icon collection is used on approximately 60 million websites, including high profile sites like whitehouse.gov, thebeatles.com, and washingtonpost.com. Additionally, more than 300 plugins on WordPress.org and dozens of themes use Font Awesome in some way.

\n

The 4.6.0 release is a major update that improves accessibility for the millions of users who have vision and/or hearing impairments requiring accessible websites. Font Awesome introduced a new accessibility icon category with 15 icons and more on the way.

\n

font-awesome-accessibility-icons

\n

“We initially started with a set of common US disability access symbols, then expanded to others the FA community asked for,” Gandy said. “We’ll definitely keep adding to this category as more requests come in.”

\n

The Font Awesome documentation has also been updated with a new accessibility section, showing users how to mark up icons so they work well for those using assistive technology to navigate websites and applications. Each icon page also has an updated example code block that users can copy and paste to ensure their icons are accessibility-ready.

\n

font-awesome-code-examples

\n

WordPress plugin and theme authors who include Font Awesome icons in their work should update the CDN link to reference the latest version so website owners can use the new accessibility icons. Developers are also advised to review the new accessibility documentation and update their icon markup as necessary.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 14 Apr 2016 22:27:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:29;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:76:"WPTavern: Simple Cache: A New One-Click Install Caching Plugin 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:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53370";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:85:"http://wptavern.com/simple-cache-a-new-one-click-install-caching-plugin-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5422:"

simple-cache

\n

WordPress caching plugins are notorious for being packed full of confusing options, spammy with upsells, and difficult to uninstall. Users who are looking for a caching solution that simply works and has nothing to configure should check out Simple Cache, a new plugin on WordPress.org that offers a one-click install. The plugin promises lightning fast speed with a simple on/off switch.

\n

After investigating some of the popular caching solutions for WordPress, Taylor Lovett found most of them to have cluttered interfaces that make them unnecessarily complex to configure. Lovett, who has worked with many different caching solutions as Director of Web Engineering at 10up, decided to create his own implementation that would be easy for users to work with, hence the name Simple Cache.

\n

“I wrote my comparison blog post with no plans of creating my own caching plugin,” Lovett said. “After doing the research, I had a few ideas on how to create a plugin that would really have a positive impact on websites.”

\n

Once installed, Simple Cache can be turned on with the click of a button. It also has a few optional settings for expiring the cache and enabling compression. The simple mode offers file-based page caching (similar to WP Super Cache), which is sufficient to speed up the vast majority of simple sites.

\n

simple-cache-settings

\n

Lovett also built an advanced mode that implements object caching and will automatically setup Batcache and Memcached/Redis for you.

\n

After a quick test in simple mode on a blog with a handful of plugins like Akismet, Jetpack, Google Analytics, and a few others, I saw a roughly 38% decrease in loading time. Before installing Simple Cache, the site loaded in 3.9 seconds.

\nBefore installing Simple CacheBefore installing Simple Cache\n

Simple Cache shaved 1.5 seconds off the loading time:

\nAfter installing Simple CacheAfter installing Simple Cache\n

These results came without touching the advanced mode, which would offer an even bigger performance boost.

\n

“The Redis functionality is forked from Pantheon’s WP Redis plugin,” Lovett said. “The Memcached functionality is forked from Automattic’s drop-in. If you use page caching with object caching, a forked version of Batcache by Automattic is used.”

\n

If there is no object cache set up, page caching defaults to using the file system (simple mode). This is most likely what you would use if your site is on shared hosting.

\n

“So really Simple Cache gives you the best of both worlds,” Lovett said. “A very simple setup, or an advanced setup with the most battle-tested page cache and object cache drop-ins.”

\n

Users can easily purge the cache from the button on the plugin’s setting screen. If you try Simple Cache and don’t want to keep using it, it’s easy to uninstall, cleans up after itself, and, most importantly, doesn’t break your website. Lovett also worked to ensure that the UX, notices, warnings, and error messages are user friendly and understandable.

\n

The whole concept of caching is difficult for non-developers to grasp. It might as well be powered by Merlin’s wand, as far as most users’ understanding goes. They need it to work without a ton of complicated settings. Simple Cache fits the bill and is hands-down the easiest caching plugin I’ve ever tested.

\n

Lovett plans to add more features and improve upon his implementation based on feedback from the community. If you’re looking for a new caching solution, you can find Simple Cache on WordPress.org. Feedback and contributions are welcome on the plugin’s support forums and via its GitHub repository.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 14 Apr 2016 20:35:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:30;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:84:"WPTavern: Syed Balkhi Acquires Google Analytics by Yoast, Renames to MonsterInsights";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53636";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:93:"http://wptavern.com/syed-balkhi-acquires-google-analytics-by-yoast-renames-to-monsterinsights";s: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:2622:"

Google Analytics Monster Insights Featured ImageUsers who are updating Google Analytics for WordPress by Yoast are discovering a new menu item with a green monster icon in their WordPress backend. That’s because Syed Balkhi, founder of WPBeginner.com, has acquired it for an undisclosed amount and has renamed it to MonsterInsights.

\n

Joost de Valk, founder of Yoast.com, says the company is focusing on its core offerings surrounding SEO and that the plugin no longer fits into its roadmap.

\n

One of the ‘problems’ of a quickly growing business is that you have to choose what to focus on. We’ve made that choice: we’ll focus on building best in class SEO products, from plugins to reviews, eBooks and training programs.

\n

Apart from the changes to its name and the new menu icon, the plugin remains the same and should function normally for existing users. According to Balkhi, additional features are on the way.

\n

Over the next 8 months, we will be adding some amazing new features that I know you will love. Since it’s a plugin that we will be using across our suite of products and websites, you can expect it to be the best.

\n

Since Google Analytics for WordPress was the first major plugin created by de Valk, handing it over to a new owner is bittersweet.

\n

While I’m very happy about the decision to give this plugin a new home, I’m also feeling nostalgic. It’s been ‘with me’ for a very long time, but I trust Syed and team will take it to even greater heights.

\n

The acquisition seems like a perfect complement to Balkhi’s other products like OptinMonster and WPForms where analytical data helps make crucial decisions. Let us know what you think of the acquisition in the comments.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 14 Apr 2016 15:53:58 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:31;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:90:"WPTavern: WPWeekly Episode 230 – Interview With Mike Schroder WordPress 4.5 Release Lead";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:44:"http://wptavern.com?p=53638&preview_id=53638";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:96:"http://wptavern.com/wpweekly-episode-230-interview-with-mike-schroder-wordpress-4-5-release-lead";s: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:2324:"

In this episode of WordPress Weekly, Marcus Couch and I are joined by Mike Schroder who led the WordPress 4.5 release cycle. Schroder tells us what it’s like to release software to millions of websites across the world. We learn about the checklists and processes he went through on launch day.

\n

We discuss the emotional and physical toll on release leads and Schroder tells us if he’s going to take a break from contributing to WordPress. Last but not least are Marcus’ plugin picks of the week. If you’ve ever wanted to know what it’s like to lead a WordPress release cycle, this is the episode for you.

\n

Plugins Picked By Marcus:

\n

Gravity Pre-submission Confirmation provides an easy way to add a pre-submission confirmation page to forms created with GravityForms. This enables users to preview data before it’s submitted.

\n

Widget Labels is a simple plugin that lets you control what label is displayed next to each Widget on the Widgets administration screen.

\n

Add-custom-page-template lets you add template files and view a listing for all custom template files in a theme with linked pages via the WordPress backend.

\n

WPWeekly Meta:

\n

Next Episode: Wednesday, April 20th 9:30 P.M. Eastern

\n

Subscribe To WPWeekly Via Itunes: Click here to subscribe

\n

Subscribe To WPWeekly Via RSS: Click here to subscribe

\n

Subscribe To WPWeekly Via Stitcher Radio: Click here to subscribe

\n

Listen To Episode #230:
\n

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 14 Apr 2016 13:50:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:32;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:44:"WPTavern: Let’s Encrypt Is Now Out of Beta";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53552";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/lets-encrypt-is-now-out-of-beta";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3343:"

lets-encrypt

\n

Let’s Encrypt announced that the project is exiting beta this week. The initiative, which aims to encrypt 100% of the web by making trusted certificates available to everyone at no cost, launched its beta seven months ago.

\n

Since our beta began in September 2015 we’ve issued more than 1.7 million certificates for more than 3.8 million websites. We’ve gained tremendous operational experience and confidence in our systems. The beta label is simply not necessary any more.\n

\n

According to Let’s Encrypt sponsor Mozilla, more than 90% of the certificates are protecting websites that never had encryption before. Automattic is one of the early sponsors of the initiative and has partnered with Let’s Encrypt to add full SSL support for all sites hosted on WordPress.com. With the success of the beta period, Let’s Encrypt continues to renew and add sponsors to its roster, including Cisco, Akamai, Gemalto, HP Enterprise, Fastly, and other organizations.

\n

“A mix of people and organizations use Let’s Encrypt,” Mozilla representatives told TechCrunch. “Many individuals and smaller entities use it, but quite a few larger organizations such as WordPress.com, OVH, Akamai and Dreamhost use it as well. It’s especially nice to see services like Dreamhost and Automattic opting to secure all their customers at once, which is something that Let’s Encrypt really enables.”

\n

How to Set Up a Let’s Encrypt Certificate for Self-Hosted WordPress

\n

If you want to install a free Let’s Encrypt certificate for your self-hosted WordPress site, WPBeginner has a tutorial with instructions for commonly used hosts, including SiteGround, DreamHost, and Bluehost. It also includes tips on updating WordPress URLs after setting up SSL and updating Google Analytics.

\n

If your host doesn’t have a fancy UI for setting up Let’s Encrypt, Brad Touesnard wrote a tutorial for manually requesting a certificate via Let’s Encrypt’s command line client and setting up automatic renewals. Touesnard also encouraged readers to support the development of the Let’s Encrypt Plugin for WordPress, a project that Zack Tollman and John Blackbourn are working on to make it a less painful process for users. We’ll be following the plugin’s progress as it develops.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 13 Apr 2016 23:46:42 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:33;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:73:"WPTavern: Edit Flow Lives, New Update Fixes Bugs and Improves Performance";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53610";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:82:"http://wptavern.com/edit-flow-lives-new-update-fixes-bugs-and-improves-performance";s: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:2652:"

Twenty-four hours ago, the future of Edit Flow was unclear due to a lack of communication from the project’s maintainer, Automattic. Today however, the company pushed Edit Flow 0.8.1 to the WordPress plugin directory which is the same version that’s on GitHub. According to the plugin’s changelog, 0.8.1 includes the following:

\n\n

So why the sudden surge in activity? Philip John, VIP Wrangler for Automattic, stopped by and provided the following statement to the Tavern.

\n

Folks, we’re sorry that it looks as though we’ve abandoned Edit Flow. We certainly haven’t, and we should have at least updated the tested tag for the plugin as you rightly point out.

\n

We’ve done that today, as well as make sure GitHub and WordPress.org are in sync.

\n

Internally I’m working on an effort to make Automattic better at maintaining our own plugins. We want to avoid this situation as much as we can, and I promise we’re trying.

\n

Thank you for calling us out on this. Let’s see what we can all do about getting some attention for Edit Flow.

\n

This is welcome news to anyone who depends on the editorial workflow options provided by the plugin. While Edit Flow is a WordPress.com VIP project, the team is open to contributions from the community.

\n

“We need to give folks a better structure for contributing and build confidence that their contributions will go somewhere,” Paul Maiorana, VP at Automattic who helps run WordPress.com VIP said.

\n

Now that the team is rectifying the situation, those who showed interest in continuing its development are highly encouraged to submit pull requests or open new issues on the project’s GitHub page.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 13 Apr 2016 21:11:23 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:34;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:78:"WPTavern: WordPress.com Adds Sharing Buttons for WhatsApp, Telegram, and Skype";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53592";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:86:"http://wptavern.com/wordpress-com-adds-sharing-buttons-for-whatsapp-telegram-and-skype";s: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:4431:"

messaging-buttons

\n

WordPress.com is finally adding sharing buttons for some of the world’s most widely used messaging apps. Users can now add WhatsApp, Telegram, and Skype to the lineup by editing the sharing buttons for their sites.

\n

Private groups and messaging are rapidly overtaking social networking. This was the driving factor behind Facebook’s purchase of WhatsApp in 2014 for $19 billion, an acquisition that lodged the company even deeper into its users’ pocket communications. The app now has more than a billion users, which you would be foolish to ignore when presenting options for sharing your posts.

\n

As of February 2016, Telegram reported 100 million monthly active users, with 350,000 new users signing up every day. The app delivers 15 billion messages daily. Skype has an estimated 300 million users.

\n

These “Dark Social” streams of traffic, which cannot be tracked by traditional analytics, are now dominating social sharing. This includes sources like emails, instant messages, and forum posts. According to a research poll of 9,000+ consumers conducted by RadiumOne, dark social sharing accounts for 69% of all sharing worldwide. That percentage is even higher in Europe and Australia.

\ncredit: RadiumOnecredit: RadiumOne\n

The survey also found that 32% of people who share content online will only share via dark social channels. This type of direct sharing to friends, family, and colleagues often carries more weight than tweets or Facebook posts broadcasted to the masses.

\n

Most messaging apps are not limited to one-to-one sharing; users often share to large groups curated for a specific purpose or interest, such as poker buddies, mom friends, extended family, or work friends. The ability for users to easily share blog posts or even e-commerce products to dark social channels is crucial for exposure to these networks that are not diluted by algorithms and advertising.

\n

With user bases in the hundreds of millions to billions, messaging applications are channels that publishers can no longer afford to ignore. Hopefully the team at Automattic will prioritize making these buttons available to Jetpack users on self-hosted sites in the near future. Until then, you can add WhatsApp and Telegram sharing buttons to Jetpack using a couple of existing plugins created by Brazilian WordPress developer Valerio Souza.

\n

If everyone were to agree on a universal messaging app we could reduce the number of sharing buttons that clutter the ends of posts. Since that is unlikely to happen anytime soon, now might be a good time to find out what apps your readers are using so you can reevaluate your lineup of sharing buttons for additions and/or removals.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 13 Apr 2016 20:37:36 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:35;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:80:"WPTavern: Mendel Kurland Interviews Konstantin Obenland at WordCamp London, 2016";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53604";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:89:"http://wptavern.com/mendel-kurland-interviews-konstantin-obenland-at-wordcamp-london-2016";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:650:"

Mendel Kurland, GoDaddy’s evangelist who participates in a number of open source communities published a great interview with Automattic employee, Konstantin Obenland.

\n

In the interview, Obenland describes how he got involved with WordPress, what motivated him to learn PHP, and what it’s like living the dream. The video is 14 minutes in length and while it contains background noise from the crowd, it doesn’t detract from the interview.

\n
\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 13 Apr 2016 18:40:45 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:36;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:23:"Matt: Dangerous Driving";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:22:"https://ma.tt/?p=46418";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:40:"https://ma.tt/2016/04/dangerous-driving/";s: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:667:"

If U.S. roads were a war zone, they would be the most dangerous battlefield the American military has ever encountered. Seriously: Annual U.S. highway fatalities outnumber the yearly war dead during each Vietnam, Korea, Iraq, Afghanistan, the War of 1812, and the American Revolution. When all of the injuries from car wrecks are also taken into account, one year of American driving is more dangerous than all those wars put together.

\n

From The Absurd Primacy of the Automobile in American Life in The Atlantic.

";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 13 Apr 2016 15:58:20 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:37;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:63:"WPTavern: A Day of REST is Coming to Boston on October 28, 2016";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53515";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/a-day-of-rest-is-coming-to-boston-on-october-28-2016";s: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:2916:"

a-day-of-rest-boston

\n

The “A Day of REST” conference, an event devoted to the WordPress REST API, is expanding to the US. The first edition, held in London in January, was a success, with the majority of participants indicating they would attend again. Last month, Human Made announced that the organization team is planning an expanded “Week of REST” developer bootcamp to be held in London later in 2016.

\n

Today the team announced its third planned event for this year – A Day of REST in Boston, MA, on October 28. Human Made will be hosting the event in partnership with Post Status and the team at Bocoup. This edition of the conference will include workshops on the 27th and the 29th to educate attendees on how to use some of the most popular frontend technologies for building applications with the WP REST API.

\n

Human Made representative Petya Raykovska said that Bocoup being located in Boston was one of the main reasons for hosting the event there, since they wanted to partner together for the workshops. Prospective attendees were also eager for a US-based event where they could go in-depth with the WP REST API.

\n

“We never planned to do the event only in Europe,” Raykovska said. “We had a lot of people asking for live streaming or if we’re planning to organize an event in the US while we were planning A Day of REST London. It was always the plan to pilot the idea in the UK and then bring it to the US and other places.”

\n

Organizers are planning for 300+ attendees in Boston. In addition to a lineup of speakers that includes WP REST API team members and experts, the event will put out a call for papers to give developers who are using the API an opportunity to share their work and tips.

\n

If you want to attend one of the frontend workshops, make sure to fill out the event’s survey to indicate the topics you’re interested in. Tickets will go on sale in the next few weeks.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 13 Apr 2016 00:55:23 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:38;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:59:"WPTavern: Hey Automattic, What’s Going on With Edit Flow?";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53303";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/hey-automattic-whats-going-on-with-edit-flow";s: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:4281:"

Edit Flow is an editorial workflow plugin for WordPress created in 2009 that is actively installed on more than 10K sites. Although the author listing on the plugin’s page shows Mohammad Jangda, Daniel Bachhuber, and Scott Bressler as authors, it’s currently maintained by Automattic.

\n

Bachhuber announced in 2013 that Automattic claimed ownership of all the plugins he worked on during his employment, including Edit Flow. The WordPress.com VIP team took over development and in some cases, uses it on client sites.

\n

If you visit the plugin’s page today, you’ll see the following notice:

\n

This plugin hasn’t been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

\n

According to the changelog and the Edit Flow news blog, the plugin hasn’t been updated since January 2014, when 0.8 was released. For more than a year, concerned users have created threads in the support forum questioning if the project has been abandoned.

\n\n

A user who goes by the name drtarnaizoltan who has used Edit Flow for more than two years even suggested a crowdfunding campaign to continue development.

\n

We have an online magazine, and started to use this plugin almost 2 years ago. We don’t want to switch another, cause everyone in the editorial likes this one. I think we are not alone in this situation. I suggest to make a fundraising for continuation the develop of this plugin. We are able make a kickstarter page or something like that to reach our goal. What is your opinion about?

\n

The most recent commit to the project’s GitHub page is from Bachhuber six months ago. All of the communication channels used by Edit Flow developers to inform users are dormant. It’s ironic that a company that relies on so many tools to communicate internally has failed to communicate with users of its plugin. This is a classic example where a little communication about the project’s status would go a long way.

\n

Edit Flow is an important plugin that we use on the Tavern and as a user, I understand the frustration of not knowing what’s going on. The lack of updates, and inability to fix a critical bug I reported a year ago that conflicts with WordPress mobile apps is forcing us to consider alternatives.

\n

I reached out to Automattic to find out whether or not Edit Flow is still an active project. Mark Armstrong, who represents Automattic provided the Tavern with the following statement:

\n

Edit Flow is a plugin we maintain, and a number of WordPress.com VIP clients use it. We have no other updates in the works at this time.

\n

While his statement verifies that it’s an active project, all signs point to it being an abandoned plugin for those not part of the WordPress.com VIP program.

\n

Have you ditched Edit Flow? Let us know what alternatives you’ve discovered and or use.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 12 Apr 2016 20:26:01 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:39;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:51:"Post Status: WordPress 4.5, “Coleman”, released";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"https://poststatus.com/?p=23379";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:54:"https://poststatus.com/wordpress-4-5-coleman-released/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:8760:"

WordPress 4.5, “Coleman”, has just been released. It’s named, as always, after a famous jazz musician, and this release is named after Coleman Hawkins, a saxophonist.

\n

The Release Lead for WordPress 4.5 was Mike Schroder, the Deputy Release Lead was Adam Silverstein, and the Release Design lead was Mel Choyce, with 277 total contributors.

\n

Here’s a video overview of WordPress 4.5:

\n


\n

\n

You can view all closed tickets for WordPress 4.5, and view an evolving overview of changes on the 4.5 Codex page as well. I thought I would also highlight some of the most notable features (in my view) as well.

\n

Custom logo

\n

logo-core

\n

The site icon feature was released in WordPress 4.3, and for some folks, the introduction of a custom logo component was confusing. However, eventually, the user experience issues were ironed out and WordPress 4.5 boasts the ability to add logos with core support, and themes can support the feature with add_theme_support( ''custom-logo'' ).

\n

Custom logo support is a nice addition that was pretty well tested in Jetpack already. There were way too many custom implementations of this out in the wild before, and now changing themes and keeping your logo will be much more straightforward.

\n

Editing shortcuts

\n\n

 

\n

Editing shortcuts is my personal favorite change in WordPress 4.5 because it adds the ability to use inline text patterns for quickly writing lists, horizontal rules, and code. These are some of the most annoying TinyMCE buttons to use or HTML markdown bits to write, so this is definitely be a nice enhancement to the WordPress editor.

\n

The editing shortcuts from this release and the past few releases are some of my favorite updates for everyday WordPress writers.

\n

Inline link editor

\n

Screen Shot 2016-04-12 at 2.11.43 PM

\n

The inline link editor is the second of two significant editor changes in WordPress 4.5, to utilize a tooltip-style overlay for adding links, versus a modal dialogue.

\n

It’s a relatively minor UX change, and I personally prefer just highlighting the text to add a link to and using a keyboard paste command, but for folks using the traditional link button, this offers a less obtrusive experience.

\n

\n

Selective Refresh

\n

The selective refresh feature plugin for the customizer aimed to create a better customizer experience. Weston Ruter summarized the feature on Make Core, and describes its functionality in depth. He also hints at what it makes possible.

\n

Currently, postMessage enables live changes, but saving those changes requires a full page reload. postMessage doesn’t do any server side communication. Selective refresh enables server side communication (aka allows for actual saving of changes) and the ability to view changes without a full page reload.

\n

The code that is now a framework for selective refreshing started with the move of nav menus and widgets to the customizer:

\n

With the shipped example of selective refresh of nav menus in the Customizer, and an initial implementation of selective refresh for widgets, work progressed to generalize a selective framework that would support the complicated examples of nav menus and widgets, but also to support simpler use cases such as letting the server render the updated site title so that wptexturize and other filters can apply. The generalized framework has been implemented in the Customize Partial Refresh feature plugin, which also re-implements selective refresh of nav menus and introduces selective refresh of sidebars and widgets.

\n

However, Weston buried the lede for what makes Selective Refresh awesome.

\n

As he notes toward the end of the post on Make WordPress Core, the selective refresh component doesn’t just allow for site changes within the customizer, but for customizer controls to be called from the site.

\n

It’s worth describing what partials are in this context, for those (like me) that aren’t into the nitty gritty of the customizer:

\n

This plugin introduces a selective refresh framework which centers around the concept of the partial. A partial is conceptually very similar to a Customizer control. Both controls and partials are associated with one or more settings. Whereas a control appears in the pane, the partial lives in the preview. The fields in a control update automatically to reflect the values of its associated settings, and a partial refreshes in the preview when one of its settings is changed.

\n

And…

\n

In addition to a partial being associated with one or more settings, a partial is also registered with a jQuery selector which identifies the partial’s locations or “placements” on the page, where the rendered content appears.

\n

With selective refresh, an interface could be created within placements themselves to give focus on the associated control; but the whole customizer isn’t required, and just the control that’s needed can pop out. As Weston put it, “That is to say, selective refresh makes the Customizer a much better framework for implementing frontend editing.”

\n

And that, in addition to selective refresh itself, is awesome.

\n

Better image compression

\n

By default, WordPress has always compressed images upon upload. By making a small change in the compression percentage, from 90% to 82%, WordPress can enable, “reduced image sizes by an average of ~25%.”

\n

Additionally, unnecessary meta data in photos is removed automatically by WordPress, while still maintaining the meta data photographers actually use. So all in all, images in WordPress can be cut in size by half without losing detail, and that’s amazing.

\n

Log in by email

\n

This has long been a desire for WordPress installs, and there have been plugins to help accomplish it, but now it’s in core as it should be.

\n

Quite simply, users can now log in via their username, or their active email address. Thank goodness — this is a nice UX enhancement.

\n

Of course there are more

\n

These are the features I wanted to note, but there are many others, as always, that took a lot of effort and greatly improve WordPress core. Others to consider are responsive customizer views; core library updates for Backbone, jQuery, and others; and oEmbed template management (which is really slickly done).

\n

For more information, be sure to see the developer field guide for WordPress 4.5, as well as a 4.5 support guide, and the official release 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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 12 Apr 2016 19:27:33 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Brian Krogsgard";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:40;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:121:"WPTavern: WordPress 4.5 “Coleman” Released, Introduces Custom Logos, Responsive Previews, Improved Editing Experience";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53467";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:122:"http://wptavern.com/wordpress-4-5-coleman-released-introduces-custom-logos-responsive-previews-improved-editing-experience";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:7256:"photo credit: BBC Radiophoto credit: BBC Radio\n

WordPress 4.5 was released today, named in honor of Coleman Hawkins, an American jazz tenor saxophonist. Hawkins was one of the first musicians to establish the tenor saxophone as a jazz horn. Compared to other major releases, this one is short on show-stopping features but keeps WordPress on the path of steady, incremental improvements.

\n

Most of the updates for users focus on making WordPress content easier to format, edit, and customize. Here are a few of the highlights.

\n

Custom Logos: Native Support for a Theme Logo

\n

WordPress 4.5 introduces native support for a theme logo with code borrowed from Jetpack’s implementation. When a theme declares support for a custom logo, an upload form is added under the Site Identity panel of the customizer.

\nImage credit: Ryan BorenImage credit: Ryan Boren\n

This feature is a big win for theme developers, as they now have a standard way of including support for a logo. When they opt to follow core’s implementation, users will always know where to find the logo upload.

\n

“Given the hundreds of themes with their own implementation, it makes sense that core would standardize this,” said WordPress Theme Review Team admin Justin Tadlock. “The concept has been well tested for years in themes (and Jetpack). It’s a natural progression that core would get it, just like core standardized post classes, body classes, featured images, and other features that started out in the theme space. There’s an obvious need for it.”

\n

Customizer Improvements: Live Responsive Previews and Selective Refresh

\n

Selective refresh is one of the under-the-hood updates to the customizer that makes a big difference for users. It makes previews more instant, instead of reloading the entire preview for each setting change. This is a much needed improvement that gives the customizer the true live preview experience that it was previously lacking.

\n
\n

“Selective refresh is a hybrid preview mechanism that has the performance benefit of not having to refresh the entire preview window,” Customizer component maintainer Weston Ruter said. “This was previously available with JS-applied postMessage previews, but selective refresh also improves the accuracy of the previewed change while reducing the amount of code you have to write; it also makes it possible to do performant previews that would previously been practically impossible.”

\n

After updating your site to 4.5, you can see a live example of selective refresh when editing menus. All core themes and core widgets now support selective refresh and users should see major performance improvements.

\n

This release also makes it easier for users to customize their sites with mobile devices in mind. It adds buttons to the customizer controls footer that enable desktop, tablet, and phone-sized device previews. Instead of having to test the site on different devices, users can see a live preview of how the design will respond while making changes.

\n

customize-device-preview

\n

Improvements to Formatting and Editing Content

\n

WordPress 4.5 adds a more intuitive interface for editing inline links in the visual editor. The interface detects if a user is entering a URL or attempting to search for one. The updated search uses jQuery UI Autocomplete to populate existing content as the user is typing.

\n

links-modal

\n

This release also adds more formatting shortcuts to the existing ones for lists and headings. You can now use shortcuts for horizontal lines and code tags.

\n

formatting-shortcuts

\n

Developers who utilize the REST API infrastructure will want to take note of a breaking change in this release that could potentially cause issues with plugins that depend on the API. The changes break backwards compatibility for the sake of fixing a bug regarding slashed data.

\n

Other noteworthy updates include:

\n\n

The 4.5 release was led by Mike Schroder and deputies Mel Choyce and Adam Silverstein. Schroder coordinated the efforts of 286 volunteers who contributed to WordPress 4.5. Check out the video for a quick overview of the highlights of this release:

\n

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 12 Apr 2016 19:16:01 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:41;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:60:"WPTavern: JSON API Now Available for WordPress Wapuu Archive";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53465";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/json-api-now-available-for-wordpress-wapuu-archive";s: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:3646:"

Yesterday, prolific WordPress plugin developer Takayuki Miyauchi launched a JSON API for the Wapuu archive via GitHub Pages. The new API allows developers to easily build applications that fetch the wapuus with their images and details:

\n
\n[\n  {\n    "name": "original-wapuupng",\n    "wapuu": {\n      "name": "Wapuu",\n      "url": "https://ja.wordpress.org/",\n      "repository": "https://github.com/jawordpressorg/wapuu",\n      "src": "https://jawordpressorg.github.io/wapuu/wapuu-archive/original-wapuu.png",\n      "mime_type": "image/png"\n    },\n    "author": {\n      "name": "Kazuko Kaneuchi",\n      "url": "https://twitter.com/mutsuking"\n    },\n    "description": "Original Wapuu"\n  },\n  ...\n
\n

Miyauchi said he is looking forward to seeing applications, well-designed galleries, and games that the community will build with it. The official Wapuu archive is already using the new Wapuu API.

\n

Miyauchi also built a space Wapuu gallery with it based on THREE.js, a library that makes WebGL (3D in the browser) easy to use. The gallery works well in Google Cardboard to deliver a fun VR-type experience of the flying wapuus.

\n

space-wapuu

\n

Miyauchi is part of the vibrant WordPress community in Japan, has three dozen plugins to his credit on WordPress.org, and enjoys building projects with the WordPress REST API. He said that the REST API hasn’t yet caught on in Japan, but he has been working on tools to make it easier for developers to create applications. Miyauchi built a WP API client for AngularJS and is also creating an Ionic starter template for WordPress + the WP API version 2.

\n

After learning about how much work it is to maintain the official Wapuu archive page, Miyauchi was inspired to use his skills to create a JSON API for cataloguing the 80+ wapuus from around the world.

\n

“If we can update the wapuu’s data via a CSV file, maintaining the archive is much easier,” he said. “The API is converted from a CSV of wapuus.”

\n

Miyauchi worked with Taisuke Jotaki, maintainer of the archive, and Shinichi Nishikawa to create the Wapuu API. If you want to add your wapuu to the archive, you can fork the Wapuu API repository, add your wapuu information to the CSV, and send a pull request to the team.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 12 Apr 2016 17:18:39 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:42;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:45:"Post Status: A Day of REST is going to Boston";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"https://poststatus.com/?p=22279";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:42:"https://poststatus.com/day-of-rest-boston/";s: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:3963:"

I’m happy to announce that Post Status is teaming up with Human Made to put on A Day of REST Boston, following the successful event in London in January. This iteration of A Day of REST will include both a day long conference and workshops catered to developers interested in using the WordPress REST API.

\n

Like in London, A Day of REST Boston will have speakers from the team that is actually building the API and using it in production environments. The main event will take place October 28th, 2016 at Calderwood Pavilion. Workshops will be October 27th and October 29th.

\n

Organizers: A Day of REST Boston is put together by experienced industry event organizers from Human Made who have organized events like WordCamp London 2013 and 2015, WordCamp Europe 2013, 2014, 2015, 2016, and A Day of REST London. The primary folks from the Human Made team are Siobhan McKeown, Petya Raykovska, and Zoe Beardmore. And Post Status will be co-organizing!

\n

Speakers: Like in London, members of the WordPress REST API team itself will be speaking and participating in the event. Also, industry experts and developers who are actually using the REST API in production will be there. We’ll have a call for speakers available soon as well, as we’re seeking new and exciting examples of the REST API out in the wild, and the stories of the folks that made it happen.

\n

Workshops

\n

One of the things I’m most excited about for the Boston-based version of this event is that there will be two days of workshops in addition to the event, rather than a hack day. It was clear in London that there was demand for more hands-on activities to allow people (new and experienced with the API) to dig deeper.

\n

Attendees will have the opportunity to attend front end workshops tailored to WordPress developers, covering everything from JavaScript basics to in-depth explorations of specific technologies. A Day of REST is partnering with Bocoup (an incredible Boston based agency that loves open source technology), and perhaps a few other folks, to put on outstanding workshops.

\n

If you’re interested in the event and the workshops, please help us choose the most relevant and valuable workshop topics for you. Fill out the workshop survey to have your say on what should be included. One workshop day is before the main event, and the other is the day after.

\n

There will be a special limited batch of Early Bird tickets for the conference, but you have to be subscribe for A Day of REST Boston email notifications.

\n

Post Status involvement

\n

At A Day of REST London, I was a general media partner, covering the event and I’m hosting the videos as we release them. This time around, I’m a co-organizer. I’ll be working with sponsors, throwing the after party, and covering the event to a greater degree.

\n

If you want to sponsor A Day of REST, please contact me and check out our sponsorship information package!

\n

There will also be an opportunity for people to buy a ticket for A Day of REST that includes a Post Status Club membership! I hope you’ll consider this event and sign up for updates. It’s going to be a lot of fun.

";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 12 Apr 2016 14:02:36 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Brian Krogsgard";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:43;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:65:"WPTavern: Giant Wapuu Among the Attendees at WordCamp London 2016";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53480";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:75:"http://wptavern.com/giant-wapuu-among-the-attendees-at-wordcamp-london-2016";s: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:2578:"

This past weekend, hundreds of people gathered at WordCamp London 2016 to learn about WordPress. One of the attendees who made its presence known the day of the event was a giant Wapuu. From left to right is WordPress co-creator Mike Little, Wapuu, and Jenny Wong. Notice how Wapuu has its own name badge!

\nGiant Wapuu at WordCamp LondonGiant Wapuu at WordCamp London\n

Tim Nash, Platform Lead for 34SP, a managed WordPress hosting company and sponsor of the event, says that the company wanted to do something unique to bring smiles to attendee’s faces.

\n

“It turns out that a Wapuu is not easy to find, but once we told it how awesome an event it was going to be and how much effort the WordCamp London organizing team was putting in, it agreed to make an appearance,” Nash said.

\n

According to reports on Twitter from attendees, Wapuu is great at giving hugs, posing for selfies, and spreading cheer.

\n\n

\n

Although it looks like a stuffed animal, it’s actually a suit with someone inside. When asked who the person was inside, Nash replied that it was a secret. So where is Wapuu headed next?

\n

“Sadly with WordCamp London over, Wapuu has returned to roam the land near Manchester in the North of England until the next time it wants a holiday. Rumor has it, that it might be at WordCamp Brighton in July,” Nash said.

\n

Considering the size of airline seats, don’t expect to see giant Wapuu at WordPress events in the US anytime soon.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 12 Apr 2016 11:34:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:44;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:43:"WPTavern: In Case You Missed It – Issue 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:"guid";a:1:{i:0;a:5:{s:4:"data";s:44:"http://wptavern.com?p=53287&preview_id=53287";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:49:"http://wptavern.com/in-case-you-missed-it-issue-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:8967:"In Case You Missed It Featured Imagephoto credit: Night Moves(license)\n

There’s a lot of great WordPress content published in the community but not all of it is featured on the Tavern. This post is an assortment of items related to WordPress that caught my eye but didn’t make it into a full post.

\n

Revolution Slider Possible Cause of Data Breach

\n

Wordfence analyzed the Mossack Fonseca website and discovered that it was running a vulnerable version of Revolution Slider, a popular image slider plugin for WordPress. The vulnerability allows a remote attacker to place a shell on the web server. Whether this is the point of entry for the data leak remains to be seen. While I enjoyed the article, some people on Hacker News ripped it apart.

\n

State of the Woo

\n

The second annual WooConf took place this week where Matt Mullenweg gave the State of The Woo address. Marie Dodson of Torque has a great post with highlights from his session. The biggest take away is that Automattic plans on releasing a Jetpack like plugin for WooCommerce to handle complicated tasks like payments, shipments, taxes, and more.

\n

It’s incredible how many WooCommerce plugins are submitted to us for review. It seems like there’s a plugin that handles any nuance of WooCommerce you can think of. It’s turned into quite a cottage industry and one every product developer should consider getting into.

\n

WordPress Importer Progress Bars

\n

In addition to his work on the WordPress REST API, Ryan McCue is also leading the efforts to improve the WordPress Importer. A few days ago, he published an image on Twitter showing off status indicators. Click the play button to see the progress bars in action.

\n

This is a huge improvement considering it’s currently impossible to know the status of an import. What’s nice about this is that each item in the import file has its own progress bar. Also read the discussion on Twitter as the possibility of using this UI for other plugins like BuddyPress comes up.

\n\n

\n

WordPress 4.5 OMG WTF BBQ Post

\n

Before every major WordPress release, the support team publishes a post on the support forums that contains important information users and developers need to be aware of. The WordPress 4.5 edition is available and is considered a work in progress. Once 4.5 is released, common issues reported by users are added to the thread like plugin and theme incompatibilities.

\n

WP Lift is For Sale

\n

WPLift.com LogoWPLift, a site dedicated to WordPress created by Oli Dale is up for sale. According to the listing on Flippa, the bidding price has reached $55K. The auction has 13 bids with 19 days left. Dale explains why he’s selling the site:

\n

Quite simply, I have been writing about WordPress now on WPLift since 2010 – I have posted just about every week day in that period and the site now contains over 990 posts, I have been finding it more of a struggle to keep up with running the site alongside ThemeFurnace and the addition of 2 children to my family! I would like someone fresh to takeover WPLift who can dedicate more time and fresh ideas to the site.

\n

Over the years, I’ve linked to quite a few articles and discussions on the WPLift site. Whoever purchases the site, I hope they continue the great reputation that WPLift has established.

\n

What Do Video Games and WordPress Development Have in Common?

\n

John James Jacoby published a great series of Tweets using video game images to relate to software development. Here are a few of my favorites.

\n\n

\n\n

\n\n

\n

Admin Theme Review

\n

Jose Castaneda who is a volunteer on the Theme Review Team published a YouTube video that highlights what he looks for when reviewing themes. The video should help developers consider things they may have missed before submitting it to the directory.

\n
\n

A Small Woorld

\n

WooCommerce is a powerful force in the eCommerce industry and it’s reached a point where entire sites and magazines are devoted to the platform. One such digital magazine is A Small Woorld, a publication by the folks over at ProsPress. Small Woorld features in-depth interviews with entrepreneurs using WooCommerce.
\n

\nA Small Woorld Front PageA Small Woorld Front Page\n

One of my favorite interviews from their latest issue involves Honest Brew, a company that utilizes WooCommerce to deliver craft beer to people all over the world. I highly recommend subscribing to A Small Woorld if you want to know how every day people are using WooCommerce to run their businesses.

\n

8-Bit Wapuu

\n

In what is a traditional part of this series, I end each issue by featuring a Wapuu design. For those who don’t know, Wapuu is the unofficial mascot of the WordPress project. This week, it’s 8-bit Wapuu by Melissa Sartor representing WordCamp Sunshine Coast in Australia.

\nEight Bit WapuuEight Bit Wapuu\n

That’s it for issue seven. If you recently discovered a cool resource or post related to WordPress, please share it with us in the comments.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 08 Apr 2016 21:23:46 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:45;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:96:"WPTavern: Automattic Partners with Let’s Encrypt to Enable HTTPS on All WordPress.com Websites";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53433";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:103:"http://wptavern.com/automattic-partners-with-lets-encrypt-to-enable-https-on-all-wordpress-com-websites";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2615:"photo credit: Padlock - (license)photo credit: Padlock(license)\n

WordPress.com announced today that it has turned on encryption for custom domains. The network’s subdomains have been HTTPS-enabled since 2014 as part of the Reset the Net campaign against mass surveillance. Today Automattic expanded HTTPS coverage to more than one million custom domains hosted on the network.

\n

Last April the company joined Mozilla, Cisco, EFF and several other organizations to sponsor Let’s Encrypt, a new free certificate authority for the public. The project gave WordPress.com an automated way to roll out an SSL certificate to each custom domain it hosts. Users do not need to adjust any setting – encryption has been turned on automatically, which is indicated by a green lock in the browser’s address bar.

\n

According to the Electronic Frontier Foundation, encryption offered via the new initiative will help users defend against surveillance of their content and communications, cookie theft, account hijacking, cookie and ad injection, and other forms of internet censorship.

\n

WordPress.com representatives said sites may see a performance boost and better Google rankings as a result of the switch to HTTPS. Two years ago Google announced it would begin using HTTPS as a lightweight ranking signal as an incentive for website owners to switch to HTTPS. With the help of the Let’s Encrypt initiative, many of the technical barriers to adding encryption have been removed. WordPress.com’s move to provide free HTTPS for all customers helps make the web more secure as the network powers a large chunk of the world’s websites.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 08 Apr 2016 20:23:46 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:46;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:73:"WPTavern: Silk Lite: A Free WordPress Magazine Theme for Fashion Bloggers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53393";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:82:"http://wptavern.com/silk-lite-a-free-wordpress-magazine-theme-for-fashion-bloggers";s: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:3807:"

After six months in the theme review queue, Silk Lite was approved for the WordPress.org directory and also passed the extra requirements to be counted among the accessibility-ready themes. This magazine theme was designed with fashion bloggers in mind and features a masonry style grid of posts on the homepage.

\n

silk-lite

\n

The basic color scheme for the design is black, peach and marsala (the Pantone color of the year in 2015). Marsala, according to Pantone’s color experts, “translates easily to fashion, beauty, industrial design, home furnishings and interiors.”

\n

Silk’s typography selections combine Google Fonts “Playfair Display” for headings and Merriweather for paragraph to create elegant, readable posts. The theme also has built-in styles for intro text, highlighted text, drop caps, and a two-column text layout.

\n

You will need to install Jetpack to take advantage of the theme’s custom logo feature, although this will need to be updated when site logos are introduced in WordPress 4.5. The theme also has support for Jetpack’s Infinite scroll module to load more posts on the homepage and archive pages via the “View More Articles” button. The unique sharing button design on single posts are powered by Jetpack’s sharing module.

\n

silk-single-post

\n

Silk offers a menu location at the top of the header for adding links to your social network profiles. It also includes a custom sidebar widget for adding an “About Me” section with an image background. With Jetpack’s Subscription module active, the widget that allows visitors to subscribe to your newsletter will have a custom design to match the theme.

\n

Silk includes support for four post formats: Standard, Quote, Image, Gallery, Image. It also supports Jetpack’s tiled and slideshow galleries.

\n

The customizer offers a limited number of controls, with checkboxes to enable/disable the following:

\n\n

The theme is translation-ready and is also compatible with WPML. Translations for the following languages are already available: German, Spanish, French, Portuguese, Norwegian, Turkish, Hebrew, Persian and Japanese.

\n

Silk Lite was created by PixelGrade, a Romania-based theme shop. The team specializes in magazine themes – in fact, the PixelGrade product portfolio has more magazine themes than any other type. Full documentation for all the theme’s features is available on the PixelGrade website. You can download Silk Lite from WordPress.org or via your admin themes browser.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 08 Apr 2016 17:25:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:47;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:22:"Matt: Culinary Houston";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:22:"https://ma.tt/?p=46412";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:39:"https://ma.tt/2016/04/culinary-houston/";s: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:351:"

The New York Times food section has decided to “proclaim Houston one of the great eating capitals of America” and highlighted four great restaurants in town. Houston is really such a great city, it’s good to see it getting some love.

";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 08 Apr 2016 16:40:26 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:48;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:62:"WPTavern: My Apple News Publisher Experience Three Weeks Later";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53285";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/my-apple-news-publisher-experience-three-weeks-later";s: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:6879:"

Back in March, I explained how to connect WordPress powers sites to Apple News. After three weeks of being in the system, here is what I experienced.

\n

Stuck in Limbo

\n

After configuring the plugin and successfully getting WP Tavern approved on Apple News, I thought that articles published on the site would automatically publish to Apple News. It didn’t work out that way, at least, not at first.

\n

When checking the status of those articles in the WordPress backend, the Publish to Apple News plugin listed articles as Pending. Apple’s News publisher also didn’t show any drafts from WordPress or published articles.

\n

Based on some Google searches, I created and published a new article within the Apple News Publisher app. Unfortunately, it didn’t show up as a published article and because it was the first one, it had to be approved by Apple News.

\nApple News Publisher First SubmissionApple News Publisher First Submission\n

The first article published in Apple News was on March 21st. Between March 21st and March 31st, I was stuck in limbo. I had no idea when the article would be approved or at what point in the process I was in.

\n

With the lack of communication, I started troubleshooting the Publish to Apple News plugin thinking that something was wrong. In the plugin’s settings, there’s an option to turn debugging on which sends emails to a specified email address each time an article is published, updated, or deleted with a detailed API response.

\nApple News Publisher Debug OptionsApple News Publisher Debug Options\n

I didn’t receive any emails when articles were published leading me to believe there was a potential communication issue between the Tavern and Apple News. A few days passed by when all of a sudden, I received two emails with debug information.

\n

I checked the Tavern’s Apple News channel and discovered that the first article I published using Apple’s publishing tool was approved. Had I not checked the channel, I wouldn’t have known that it was approved. I disabled debug mode in the Publish to Apple News plugin and noticed articles published on the Tavern after the approval appeared as expected.

\nPublished Articles In Apples News PublisherPublished Articles In Apples News Publisher\n

Apple should send an email notification when the first article is approved along with details that future articles will be published automatically.

\n

What Articles Look Like in the Apple News App

\n

I kept the default style settings provided by the Publish to Apple News plugin. As you can see, the articles don’t look that bad with the exception of the WordCamp Central article. For some reason, the image splits up the first sentence of the post. I’m looking into why this happens but I’ve seen it on other posts as well.

\n\nimg_8464\nimg_8466\nimg_8468\nimg_8467\nimg_8465\n\n

One thing I don’t like is that if an image is used at the beginning of an article, the Apple News App displays the HTML code of the image on the article listing page instead of article text. It would be more beneficial to readers if the listing page displayed text from the article and not HTML related to images.

\n

Apple News Publisher Analytics

\n

According to the analytics dashboard in Apple News Publisher, some of you have subscribed to our channel. The dashboard includes stats like, unique viewers, total views, article shares, and more.

\nApple News AnalyticsApple News Analytics\n

You can even dive into analytics on a per post level to determine why some articles do better than others. To view stats in a different program or to back them up, Apple News publisher allows you to download up to 30 days worth of data at once in CSV format.

\n

The Experiment Continues

\n

There’s not enough data to determine if publishing articles to Apple News is worth the effort. Three months from now, I’ll look at the data and publish a follow-up post with our findings. It will also include reviews from readers who are subscribed to our channel to find out what they like and dislike about consuming WP Tavern’s content through Apple News.

\n

Although the process could use some improvement, especially around communication, once the approval process is complete, the system runs automatically. Let us know in the comments what your experience has been like connecting your site to Apple News Publisher.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 08 Apr 2016 03:51:40 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:49;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:77:"WPTavern: AffiliateWP Passes 30K in Monthly Revenue After 2 Years in Business";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=53352";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:87:"http://wptavern.com/affiliatewp-passes-30k-in-monthly-revenue-after-2-years-in-business";s: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:4968:"

affiliatewp

\n

The team behind AffiliateWP is celebrating its second anniversary today. The plugin and its suite of add-ons has rapidly become one of the most successful products in the WordPress ecosystem under the leadership of Pippin Williamson and his team.

\n

Williamson, who is known for his yearly transparency reports, shared that AffiliateWP was the fastest of his products to reach $100,000 in annual revenue. It took just nine months for the plugin to reach that goal and in 2015 it passed $30,000 in monthly revenue.

\n

“Our first month to break $30,000 was April, 2015, when we brought in $32,904.90,” Williamson said. “Since then, we have had only 3 months that were below 30, and they were only just barely below the 30 mark.”

\n

They say that necessity is the mother of invention, and this was certainly the case with the creation of AffiliateWP. Williamson said that his customers were always asking for recommendations on affiliate plugins but at the time his team could not confidently recommend any of the existing solutions. They found most to be “unreliable, unpleasant to use, and generally not a good fit.”

\n

“After a particularly painful support ticket where it was discovered that one of our customers had paid (or not paid) thousands of dollars to the wrong people due to a bug in their affiliate tracking plugin, we decided to do something about it,” Williamson said.

\n

He worked in his spare time and late at night to develop AffiliateWP while supporting EDD and Restrict Content Pro during business hours. The product’s revenue now supports a full-time team of six people.

\n

“It humbles me to think that my little side project could go from an after-hours project to providing for the full time jobs of an entire team,” Williamson said.

\n

AffiliateWP’s Business Model Helped it Grow Faster than EDD

\n

Easy Digital Downloads, Williamson’s first venture, is touted as having pioneered one of the most wildly successful business models in the WordPress ecosystem, but AffiliateWP was not built on the same model. EDD offers a free base plugin with commercial add-ons available a la carte. AffiliateWP does not have an official free product and is not directly supported by commercial extensions.

\n

Pricing for the product starts at $49 and ranges up to $449, with different packages that include varying levels of support and Professional add-ons.

\n

“Utilizing this business model is without any doubt one of reasons AffiliateWP accelerated at the rate it did,” Williamson said. “This model has not only been lucrative for us, I personally think it’s superior in many ways to other models common throughout the WordPress ecosystem.

\n

“I like it enough that we recently chose to migrate Restrict Content Pro to the same model,” he said. “If I had the opportunity to start over with Easy Digital Downloads, I would almost certainly opt to use the same model there as well instead of selling each add-on individually.”

\n

AffiliateWP’s total revenue for 2015 was $379,078 and Williamson projects that figure to be in the neighborhood of $420,000-$450,000 for 2016.

\n

The fact that AffiliateWP is also available for free on GitHub has not compromised the product’s success. In fact, Williamson believes it has only enhanced it. The open source plugin has received contributions from 49 different developers.

\n

“This is a stat I’m particularly proud of considering AffiliateWP is a commercial product, a category of WordPress plugins that tends to get very little development from anyone outside of the core development team of the product,” Williamson said. “We chose to make AffiliateWP 100% open on GitHub with a public repository specifically to help facilitate contributions from other developers. I believe firmly that this was a good decision that has worked out quite well for us.”

\n

Williamson’s transparency about his plugin revenue serves as an inspiration to other entrepreneurs in the commercial plugin space. AffiliateWP’s success is an example of what’s possible in the WordPress product space with hard work, high quality code, and the right team.

\n
";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 07 Apr 2016 20:34:21 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"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:10:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Tue, 26 Apr 2016 12:29:34 GMT";s:12:"content-type";s:8:"text/xml";s:14:"content-length";s:6:"239079";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:29:"Tue, 26 Apr 2016 12:15:14 GMT";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 250";s:13:"accept-ranges";s:5:"bytes";}s:5:"build";s:14:"20160303124311";}', 'no'); +INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES +(1325, '_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1461716974', 'no'), +(1326, '_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1461673774', 'no'), +(1327, '_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109', '1461716974', 'no'), +(1328, '_transient_feed_b9388c83948825c1edaef0d856b7b109', '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:117:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:34:"WordPress Plugins » View: 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:45:"https://wordpress.org/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:34:"WordPress Plugins » View: Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 26 Apr 2016 12:18:51 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s: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:30:{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:46:"https://wordpress.org/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:33:"15@https://wordpress.org/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:"WP Super Cache";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"https://wordpress.org/plugins/wp-super-cache/#post-2572";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 05 Nov 2007 11:40:04 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"2572@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:73:"A very fast caching engine for WordPress that produces static html files.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Donncha O Caoimh";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:11:"WP-PageNavi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"https://wordpress.org/plugins/wp-pagenavi/#post-363";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Mar 2007 23:17:57 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"363@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:49:"Adds a more advanced paging navigation interface.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:11:"Lester Chan";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:35:"Google Analytics by MonsterInsights";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:71:"https://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 14 Sep 2007 12:15:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"2316@https://wordpress.org/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:113:"Connect Google Analytics with WordPress by adding your Google Analytics tracking code. Get the stats that matter.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Syed Balkhi";s: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:49:"https://wordpress.org/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:36:"23862@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:107:"Increase your traffic, view your stats, speed up your site, and protect yourself from hackers with Jetpack.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Tim Moore";s: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:"Regenerate Thumbnails";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"https://wordpress.org/plugins/regenerate-thumbnails/#post-6743";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 23 Aug 2008 14:38:58 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"6743@https://wordpress.org/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:76:"Allows you to regenerate your thumbnails after changing the thumbnail sizes.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:25:"Alex Mills (Viper007Bond)";s: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:16:"TinyMCE Advanced";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:57:"https://wordpress.org/plugins/tinymce-advanced/#post-2082";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 27 Jun 2007 15:00:26 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"2082@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:71:"Enables the advanced features of TinyMCE, the WordPress WYSIWYG editor.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Andrew Ozz";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:21:"Really Simple CAPTCHA";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:62:"https://wordpress.org/plugins/really-simple-captcha/#post-9542";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 09 Mar 2009 02:17:35 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"9542@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:138:"Really Simple CAPTCHA is a CAPTCHA module intended to be called from other plugins. It is originally created for my Contact Form 7 plugin.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Takayuki Miyoshi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:11:"Hello Dolly";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"https://wordpress.org/plugins/hello-dolly/#post-5790";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 29 May 2008 22:11: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:35:"5790@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:150:"This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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: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:"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:59:"https://wordpress.org/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:34:"753@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:150:"The most downloaded plugin for WordPress (almost 30 million downloads). Use All in One SEO Pack to automatically optimize your site 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: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:"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:64:"https://wordpress.org/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:34:"132@https://wordpress.org/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:14:"Arne Brachhold";s: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: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:64:"https://wordpress.org/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:36:"25254@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:68:"Customise WordPress with powerful, professional and intuitive 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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"elliotcondon";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:12;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:18:"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:60:"https://wordpress.org/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:36:"18101@https://wordpress.org/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: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:11:"WooCommerce";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"https://wordpress.org/plugins/woocommerce/#post-29860";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 05 Sep 2011 08:13:36 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"29860@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:97:"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"WooThemes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:14:"Duplicate 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:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"https://wordpress.org/plugins/duplicate-post/#post-2646";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 05 Dec 2007 17:40: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:35:"2646@https://wordpress.org/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:22:"Clone posts and pages.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Lopo";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:15;a:6:{s:4:"data";s: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:56:"https://wordpress.org/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:35:"1169@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:121:"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 14 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:16;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:"Wordfence Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"https://wordpress.org/plugins/wordfence/#post-29832";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 04 Sep 2011 03:13:51 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"29832@https://wordpress.org/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:"The Wordfence WordPress security plugin provides free enterprise-class WordPress security, protecting your website from hacks and malware.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Wordfence";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:17;a:6:{s:4:"data";s: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:55:"https://wordpress.org/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:35:"2141@https://wordpress.org/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:18;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:"Yoast 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:54:"https://wordpress.org/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:35:"8321@https://wordpress.org/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:114:"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using Yoast SEO plugin.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:19;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:56:"https://wordpress.org/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:36:"12073@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:132:"Easy Web Performance Optimization (WPO) using caching: browser, page, object, database, minify and content delivery network support.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Frederick Townes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:20;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:"Page Builder by SiteOrigin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"https://wordpress.org/plugins/siteorigin-panels/#post-51888";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 11 Apr 2013 10:36:42 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"51888@https://wordpress.org/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:111:"Build responsive page layouts using the widgets you know and love using this simple drag and drop page builder.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Greg Priday";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:21;a:6:{s:4:"data";s: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:"Disable 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:58:"https://wordpress.org/plugins/disable-comments/#post-26907";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 27 May 2011 04:42:58 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"26907@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:134:"Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. Multisite friendly.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Samir Shah";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:22;a:6:{s:4:"data";s: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:"WP Multibyte Patch";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"https://wordpress.org/plugins/wp-multibyte-patch/#post-28395";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 14 Jul 2011 12:22: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:36:"28395@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:71:"Multibyte functionality enhancement for the WordPress Japanese package.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"plugin-master";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:23;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:27:"Black Studio TinyMCE 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:69:"https://wordpress.org/plugins/black-studio-tinymce-widget/#post-31973";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 10 Nov 2011 15:06: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:36:"31973@https://wordpress.org/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:39:"The visual editor widget 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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Marco Chiesi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:24;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"Google Analytics Dashboard for WP";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:75:"https://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 10 Mar 2013 17:07:11 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"50539@https://wordpress.org/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:127:"Displays Google Analytics reports in your WordPress Dashboard. Inserts the latest Google Analytics tracking code in your 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:10:"Alin Marcu";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:25;a:6:{s:4:"data";s: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:46:"iThemes Security (formerly Better WP Security)";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"https://wordpress.org/plugins/better-wp-security/#post-21738";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 22 Oct 2010 22:06:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"21738@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:146:"Take the guesswork out of WordPress security. iThemes Security offers 30+ ways to lock down WordPress in an easy-to-use WordPress security plugin.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"iThemes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:26;a:6:{s:4:"data";s: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:"Clef Two-Factor Authentication";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:48:"https://wordpress.org/plugins/wpclef/#post-47509";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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 Dec 2012 01:25:57 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"47509@https://wordpress.org/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:"Modern two-factor that people love to use: strong authentication without passwords or tokens; single sign on/off; magical user experience.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"Dave Ross";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:27;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:34:"UpdraftPlus Backup and Restoration";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"https://wordpress.org/plugins/updraftplus/#post-38058";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 21 May 2012 15:14:11 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"38058@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:148:"Backup and restoration made easy. Complete backups; manual or scheduled (backup to S3, Dropbox, Google Drive, Rackspace, FTP, SFTP, email + others).";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"David Anderson";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:28;a:6:{s:4:"data";s: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:"Duplicator";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"https://wordpress.org/plugins/duplicator/#post-26607";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 16 May 2011 12:15: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"26607@https://wordpress.org/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:88:"Duplicate, clone, backup, move and transfer an entire site from one location to another.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Cory Lamle";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:29;a:6:{s:4:"data";s: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:"Meta Slider";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"https://wordpress.org/plugins/ml-slider/#post-49521";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 14 Feb 2013 16:56: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:36:"49521@https://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:145:"Easy to use WordPress slider plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Matcha Labs";s: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:46:"https://wordpress.org/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:12:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Tue, 26 Apr 2016 12:29:34 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:25:"strict-transport-security";s:11:"max-age=360";s:7:"expires";s:29:"Tue, 26 Apr 2016 12:53:51 GMT";s:13:"cache-control";s:0:"";s:6:"pragma";s:0:"";s:13:"last-modified";s:31:"Tue, 26 Apr 2016 12:18:51 +0000";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 250";}s:5:"build";s:14:"20160303124311";}', 'no'), +(1329, '_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109', '1461716975', 'no'), +(1330, '_transient_feed_mod_b9388c83948825c1edaef0d856b7b109', '1461673775', 'no'), +(1331, '_transient_timeout_plugin_slugs', '1461760175', 'no'), +(1332, '_transient_plugin_slugs', 'a:11:{i:0;s:30:"advanced-custom-fields/acf.php";i:1;s:19:"akismet/akismet.php";i:2;s:47:"better-search-replace/better-search-replace.php";i:3;s:27:"cas-maestro/cas-maestro.php";i:4;s:95:"clean-and-simple-contact-form-by-meg-nicholas/clean-and-simple-contact-form-by-meg-nicholas.php";i:5;s:43:"custom-post-type-ui/custom-post-type-ui.php";i:6;s:33:"github-updater/github-updater.php";i:7;s:17:"timber/timber.php";i:8;s:34:"video-background/candide-vidbg.php";i:9;s:25:"wp-sync-db/wp-sync-db.php";i:10;s:49:"wp-sync-db-media-files/wp-sync-db-media-files.php";}', 'no'), +(1333, '_transient_timeout_dash_88ae138922fe95674369b1cb3d215a2b', '1461716975', 'no'), +(1334, '_transient_dash_88ae138922fe95674369b1cb3d215a2b', '
  • WordPress 4.5 “Coleman” April 12, 2016
    Version 4.5 of WordPress, named “Coleman” in honor of jazz saxophonist Coleman Hawkins, is available for download or update in your WordPress dashboard. New features in 4.5 help streamline your workflow, whether you’re writing or building your site. Editing Improvements Inline Linking Stay focused on your writing with a less distracting interface that keeps you in […]
', 'no'), +(1335, 'semester_15_start_date', '20170117', 'no'), +(1336, '_semester_15_start_date', 'field_570a4acb61a7e', 'no'), +(1339, '_site_transient_timeout_theme_roots', '1461678749', 'yes'), +(1340, '_site_transient_theme_roots', 'a:4:{s:9:"ation2016";s:7:"/themes";s:13:"twentyfifteen";s:7:"/themes";s:14:"twentyfourteen";s:7:"/themes";s:13:"twentysixteen";s:7:"/themes";}', 'yes'); + +-- -------------------------------------------------------- + +-- +-- Table structure for 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) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `meta_value` longtext COLLATE utf8mb4_unicode_ci, + PRIMARY KEY (`meta_id`), + KEY `post_id` (`post_id`), + KEY `meta_key` (`meta_key`(191)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1509 ; + +-- +-- Dumping data for table `wp_postmeta` +-- + +INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES +(1, 2, '_wp_page_template', 'default'), +(2, 1, '_edit_last', '2'), +(4, 1, '_edit_lock', '1457040663:2'), +(5, 6, '_edit_last', '2'), +(6, 6, '_edit_lock', '1460055326:4'), +(7, 8, '_edit_last', '2'), +(8, 8, '_edit_lock', '1457015639:2'), +(9, 10, '_edit_last', '2'), +(10, 10, '_edit_lock', '1459449447:2'), +(11, 12, '_edit_lock', '1458919630:2'), +(12, 12, '_edit_last', '2'), +(13, 14, '_menu_item_type', 'post_type'), +(14, 14, '_menu_item_menu_item_parent', '0'), +(15, 14, '_menu_item_object_id', '6'), +(16, 14, '_menu_item_object', 'page'), +(17, 14, '_menu_item_target', ''), +(18, 14, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'), +(19, 14, '_menu_item_xfn', ''), +(20, 14, '_menu_item_url', ''), +(22, 15, '_menu_item_type', 'post_type'), +(23, 15, '_menu_item_menu_item_parent', '0'), +(24, 15, '_menu_item_object_id', '8'), +(25, 15, '_menu_item_object', 'page'), +(26, 15, '_menu_item_target', ''), +(27, 15, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'), +(28, 15, '_menu_item_xfn', ''), +(29, 15, '_menu_item_url', ''), +(31, 16, '_menu_item_type', 'post_type'), +(32, 16, '_menu_item_menu_item_parent', '0'), +(33, 16, '_menu_item_object_id', '10'), +(34, 16, '_menu_item_object', 'page'), +(35, 16, '_menu_item_target', ''), +(36, 16, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'), +(37, 16, '_menu_item_xfn', ''), +(38, 16, '_menu_item_url', ''), +(40, 17, '_menu_item_type', 'post_type'), +(41, 17, '_menu_item_menu_item_parent', '0'), +(42, 17, '_menu_item_object_id', '12'), +(43, 17, '_menu_item_object', 'page'), +(44, 17, '_menu_item_target', ''), +(45, 17, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'), +(46, 17, '_menu_item_xfn', ''), +(47, 17, '_menu_item_url', ''), +(48, 25, '_edit_lock', '1460659690:2'), +(49, 25, '_edit_last', '2'), +(50, 26, '_wp_attached_file', '2016/03/skybox2.jpg'), +(51, 26, '_wp_attachment_metadata', 'a:4:{s:5:"width";i:600;s:6:"height";i:336;s:4:"file";s:19:"2016/03/skybox2.jpg";s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(52, 26, '_wp_attachment_image_alt', 'Skybox'), +(53, 25, '_thumbnail_id', '26'), +(54, 25, '_oembed_89a2646adb861f63d8701cece6ea1f48', ''), +(55, 25, '_oembed_time_89a2646adb861f63d8701cece6ea1f48', '1458865453'), +(56, 28, '_edit_lock', '1460494935:4'), +(57, 28, '_edit_last', '2'), +(58, 28, '_oembed_3ef8b2b82eac113db8c54ebb7e3c479b', ''), +(59, 28, '_oembed_time_3ef8b2b82eac113db8c54ebb7e3c479b', '1458866510'), +(60, 31, '_wp_attached_file', '2016/03/huskyHuntLogo_3.png'), +(61, 31, '_wp_attachment_metadata', 'a:4:{s:5:"width";i:313;s:6:"height";i:177;s:4:"file";s:27:"2016/03/huskyHuntLogo_3.png";s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(62, 31, '_wp_attachment_image_alt', 'Husky Hunt Logo'), +(63, 28, '_thumbnail_id', '31'), +(64, 12, '_oembed_9cefe066982219210015327dabf1b5f8', ''), +(65, 12, '_oembed_time_9cefe066982219210015327dabf1b5f8', '1458866956'), +(66, 36, '_edit_lock', '1460292097:2'), +(67, 36, '_edit_last', '2'), +(68, 36, 'field_56f4983c031b3', 'a:12:{s:3:"key";s:19:"field_56f4983c031b3";s:5:"label";s:5:"Email";s:4:"name";s:5:"email";s:4:"type";s:5:"email";s:12:"instructions";s:26:"Your public contact email.";s:8:"required";s:1:"1";s:13:"default_value";s:0:"";s:11:"placeholder";s:20:"first.last@uconn.edu";s:7:"prepend";s:0:"";s:6:"append";s:0:"";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:0;}'), +(69, 36, 'field_56f4986c031b4', 'a:12:{s:3:"key";s:19:"field_56f4986c031b4";s:5:"label";s:21:"Major & Concentration";s:4:"name";s:19:"major_concentration";s:4:"type";s:6:"select";s:12:"instructions";s:32:"Your major(s) and concentration.";s:8:"required";s:1:"1";s:7:"choices";a:7:{s:10:"Undeclared";s:10:"Undeclared";s:32:"2D Animation and Motion Graphics";s:32:"2D Animation and Motion Graphics";s:28:"3D Animation & Visualization";s:28:"3D Animation & Visualization";s:24:"Web Design & Development";s:24:"Web Design & Development";s:37:"Digital Media Strategies for Business";s:37:"Digital Media Strategies for Business";s:18:"Digital Humanities";s:18:"Digital Humanities";s:33:"Digital Game Design & Development";s:33:"Digital Game Design & Development";}s:13:"default_value";s:10:"Undeclared";s:10:"allow_null";s:1:"0";s:8:"multiple";s:1:"1";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:1;}'), +(70, 36, 'field_56f498da031b5', 'a:14:{s:3:"key";s:19:"field_56f498da031b5";s:5:"label";s:8:"Hometown";s:4:"name";s:8:"hometown";s:4:"type";s:4:"text";s:12:"instructions";s:41:"Your hometown, to showcase our diversity!";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:11:"placeholder";s:12:"Hartford, CT";s:7:"prepend";s:0:"";s:6:"append";s:0:"";s:10:"formatting";s:4:"html";s:9:"maxlength";s:0:"";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:2;}'), +(71, 36, 'field_56f49930031b6', 'a:14:{s:3:"key";s:19:"field_56f49930031b6";s:5:"label";s:5:"Quote";s:4:"name";s:5:"quote";s:4:"type";s:4:"text";s:12:"instructions";s:49:"A quote from yourself, a classmate, an idol, etc.";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:11:"placeholder";s:114:""Almost overnight, the Internet''s gone from a technical wonder to a business must." – Bill Schrader, businessman";s:7:"prepend";s:0:"";s:6:"append";s:0:"";s:10:"formatting";s:4:"html";s:9:"maxlength";s:0:"";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:3;}'), +(72, 36, 'field_56f499ee031b7', 'a:14:{s:3:"key";s:19:"field_56f499ee031b7";s:5:"label";s:24:"Website / Portfolio Link";s:4:"name";s:22:"website_portfolio_link";s:4:"type";s:4:"text";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:11:"placeholder";s:22:"http://yourwebsite.com";s:7:"prepend";s:0:"";s:6:"append";s:0:"";s:10:"formatting";s:4:"html";s:9:"maxlength";s:0:"";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:19:"field_56f4986c031b4";s:8:"operator";s:2:"==";s:5:"value";s:10:"Undeclared";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:4;}'), +(74, 36, 'position', 'acf_after_title'), +(75, 36, 'layout', 'default'), +(76, 36, 'hide_on_screen', 'a:4:{i:0;s:7:"excerpt";i:1;s:13:"custom_fields";i:2;s:10:"discussion";i:3;s:8:"comments";}'), +(77, 37, '_edit_lock', '1461276902:4'), +(78, 37, '_edit_last', '4'), +(79, 38, 'email', 'bk@uconn.edu'), +(80, 38, '_email', 'field_56f4983c031b3'), +(81, 38, 'major_concentration', 'Digital Media & Design - Web Design & Development'), +(82, 38, '_major_concentration', 'field_56f4986c031b4'), +(83, 38, 'hometown', 'Newington, CT'), +(84, 38, '_hometown', 'field_56f498da031b5'), +(85, 38, 'quote', '"If it isn''t on Google, it doesn''t exist." - Jimmy Wales'), +(86, 38, '_quote', 'field_56f49930031b6'), +(87, 38, 'website_portfolio_link', 'http://bkelleher.com/'), +(88, 38, '_website_portfolio_link', 'field_56f499ee031b7'), +(89, 37, 'email', 'bk@uconn.edu'), +(90, 37, '_email', 'field_56f4983c031b3'), +(91, 37, 'major_concentration', 'a:1:{i:0;s:24:"Web Design & Development";}'), +(92, 37, '_major_concentration', 'field_56f4986c031b4'), +(93, 37, 'hometown', 'Newington, CT'), +(94, 37, '_hometown', 'field_56f498da031b5'), +(95, 37, 'quote', '"If it isn''t on Google, it doesn''t exist." - Jimmy Wales'), +(96, 37, '_quote', 'field_56f49930031b6'), +(97, 37, 'website_portfolio_link', 'http://bkelleher.com/'), +(98, 37, '_website_portfolio_link', 'field_56f499ee031b7'), +(99, 39, '_edit_lock', '1459713805:2'), +(100, 39, '_edit_last', '2'), +(101, 39, 'field_56f49bee624cd', 'a:14:{s:3:"key";s:19:"field_56f49bee624cd";s:5:"label";s:7:"Members";s:4:"name";s:7:"members";s:4:"type";s:12:"relationship";s:12:"instructions";s:56:"Select the students who directly worked on this project.";s:8:"required";s:1:"0";s:13:"return_format";s:6:"object";s:9:"post_type";a:1:{i:0;s:6:"member";}s:8:"taxonomy";a:1:{i:0;s:3:"all";}s:7:"filters";a:1:{i:0;s:6:"search";}s:15:"result_elements";a:1:{i:0;s:9:"post_type";}s:3:"max";s:0:"";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";s:5:"value";s:0:"";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:0;}'), +(103, 39, 'position', 'normal'), +(104, 39, 'layout', 'default'), +(105, 39, 'hide_on_screen', 'a:4:{i:0;s:13:"custom_fields";i:1;s:10:"discussion";i:2;s:8:"comments";i:3;s:6:"format";}'), +(106, 40, 'members', 'a:1:{i:0;s:2:"37";}'), +(107, 40, '_members', 'field_56f49bee624cd'), +(108, 25, 'members', 'a:1:{i:0;s:2:"37";}'), +(109, 25, '_members', 'field_56f49bee624cd'), +(110, 41, 'members', 'a:1:{i:0;s:2:"37";}'), +(111, 41, '_members', 'field_56f49bee624cd'), +(113, 46, 'members', ''), +(114, 46, '_members', 'field_56f49bee624cd'), +(115, 28, 'members', ''), +(116, 28, '_members', 'field_56f49bee624cd'), +(117, 48, '_edit_lock', '1460657838:2'), +(118, 48, '_edit_last', '2'), +(119, 48, 'vidbg_metabox_field_container', ''), +(120, 48, 'vidbg_metabox_field_mp4', ''), +(121, 48, 'vidbg_metabox_field_webm', ''), +(122, 48, 'vidbg_metabox_field_poster', ''), +(123, 48, 'vidbg_metabox_field_overlay', 'off'), +(124, 48, 'vidbg_metabox_field_no_loop', 'off'), +(125, 48, 'vidbg_metabox_field_unmute', 'off'), +(126, 50, '_edit_lock', '1459708686:2'), +(127, 50, '_edit_last', '2'), +(128, 50, 'field_57015e953b830', 'a:14:{s:3:"key";s:19:"field_57015e953b830";s:5:"label";s:9:"Vimeo URL";s:4:"name";s:9:"vimeo_url";s:4:"type";s:4:"text";s:12:"instructions";s:93:"The url to the vimeo background video. For now, in the format of https://vimeo.com/148449065";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:11:"placeholder";s:0:"";s:7:"prepend";s:0:"";s:6:"append";s:0:"";s:10:"formatting";s:4:"html";s:9:"maxlength";s:0:"";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:2:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:0;}'), +(130, 50, 'position', 'acf_after_title'), +(131, 50, 'layout', 'default'), +(132, 50, 'hide_on_screen', ''), +(135, 48, 'vimeo_url', 'https://vimeo.com/148449065'), +(136, 48, '_vimeo_url', 'field_57015e953b830'), +(137, 50, 'rule', 'a:5:{s:5:"param";s:4:"page";s:8:"operator";s:2:"==";s:5:"value";s:2:"48";s:8:"order_no";i:0;s:8:"group_no";i:0;}'), +(138, 52, 'vimeo_url', 'https://vimeo.com/160780488'), +(139, 52, '_vimeo_url', 'field_57015e953b830'), +(140, 53, 'vimeo_url', 'https://vimeo.com/148449065'), +(141, 53, '_vimeo_url', 'field_57015e953b830'), +(142, 54, 'vimeo_url', 'https://vimeo.com/148449065'), +(143, 54, '_vimeo_url', 'field_57015e953b830'), +(144, 55, '_wp_attached_file', '2016/04/themission.png'), +(145, 55, '_wp_attachment_metadata', 'a:4:{s:5:"width";i:288;s:6:"height";i:217;s:4:"file";s:22:"2016/04/themission.png";s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(146, 56, '_wp_attached_file', '2016/04/whoweare.png'), +(147, 56, '_wp_attachment_metadata', 'a:4:{s:5:"width";i:288;s:6:"height";i:217;s:4:"file";s:20:"2016/04/whoweare.png";s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(148, 57, '_wp_attached_file', '2016/04/whychooseus.png'), +(149, 57, '_wp_attachment_metadata', 'a:4:{s:5:"width";i:288;s:6:"height";i:217;s:4:"file";s:23:"2016/04/whychooseus.png";s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(150, 58, 'vimeo_url', 'https://vimeo.com/148449065'), +(151, 58, '_vimeo_url', 'field_57015e953b830'), +(152, 59, 'vimeo_url', 'https://vimeo.com/148449065'), +(153, 59, '_vimeo_url', 'field_57015e953b830'), +(154, 60, 'vimeo_url', 'https://vimeo.com/148449065'), +(155, 60, '_vimeo_url', 'field_57015e953b830'), +(156, 61, 'vimeo_url', 'https://vimeo.com/148449065'), +(157, 61, '_vimeo_url', 'field_57015e953b830'), +(158, 62, 'vimeo_url', 'https://vimeo.com/148449065'), +(159, 62, '_vimeo_url', 'field_57015e953b830'), +(160, 63, 'vimeo_url', 'https://vimeo.com/148449065'), +(161, 63, '_vimeo_url', 'field_57015e953b830'), +(162, 64, 'vimeo_url', 'https://vimeo.com/148449065'), +(163, 64, '_vimeo_url', 'field_57015e953b830'), +(164, 65, 'vimeo_url', 'https://vimeo.com/148449065'), +(165, 65, '_vimeo_url', 'field_57015e953b830'), +(166, 66, 'vimeo_url', 'https://vimeo.com/148449065'), +(167, 66, '_vimeo_url', 'field_57015e953b830'), +(168, 67, 'vimeo_url', 'https://vimeo.com/148449065'), +(169, 67, '_vimeo_url', 'field_57015e953b830'), +(170, 68, 'vimeo_url', 'https://vimeo.com/148449065'), +(171, 68, '_vimeo_url', 'field_57015e953b830'), +(172, 69, 'vimeo_url', 'https://vimeo.com/148449065'), +(173, 69, '_vimeo_url', 'field_57015e953b830'), +(174, 39, 'field_570176f547aea', 'a:11:{s:3:"key";s:19:"field_570176f547aea";s:5:"label";s:12:"Project Icon";s:4:"name";s:12:"project_icon";s:4:"type";s:5:"image";s:12:"instructions";s:97:"The icon that is used on the services page to display this project (in the small circle bubbles).";s:8:"required";s:1:"0";s:11:"save_format";s:6:"object";s:12:"preview_size";s:6:"medium";s:7:"library";s:3:"all";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:2:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:1;}'), +(177, 70, '_wp_attached_file', '2016/03/skybox.png'), +(178, 70, '_wp_attachment_metadata', 'a:4:{s:5:"width";i:1000;s:6:"height";i:800;s:4:"file";s:18:"2016/03/skybox.png";s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(179, 71, 'members', 'a:1:{i:0;s:2:"37";}'), +(180, 71, '_members', 'field_56f49bee624cd'), +(181, 71, 'project_icon', '70'), +(182, 71, '_project_icon', 'field_570176f547aea'), +(183, 25, 'project_icon', '70'), +(184, 25, '_project_icon', 'field_570176f547aea'), +(185, 39, 'rule', 'a:5:{s:5:"param";s:9:"post_type";s:8:"operator";s:2:"==";s:5:"value";s:7:"project";s:8:"order_no";i:0;s:8:"group_no";i:0;}'), +(186, 72, '_wp_attached_file', '2016/03/huskyhunt.png'), +(187, 72, '_wp_attachment_metadata', 'a:4:{s:5:"width";i:1000;s:6:"height";i:800;s:4:"file";s:21:"2016/03/huskyhunt.png";s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(188, 73, 'members', ''), +(189, 73, '_members', 'field_56f49bee624cd'), +(190, 73, 'project_icon', '72'), +(191, 73, '_project_icon', 'field_570176f547aea'), +(192, 28, 'project_icon', '72'), +(193, 28, '_project_icon', 'field_570176f547aea'), +(198, 81, '_edit_lock', '1461270459:4'), +(199, 81, '_edit_last', '4'), +(201, 82, 'email', ''), +(202, 82, '_email', 'field_56f4983c031b3'), +(203, 82, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(204, 82, '_major_concentration', 'field_56f4986c031b4'), +(205, 82, 'hometown', 'Pacific Palisades, CA'), +(206, 82, '_hometown', 'field_56f498da031b5'), +(207, 82, 'quote', '"Work Hard, Play Hard"'), +(208, 82, '_quote', 'field_56f49930031b6'), +(209, 82, 'website_portfolio_link', 'laurenpfahler.com'), +(210, 82, '_website_portfolio_link', 'field_56f499ee031b7'), +(211, 81, 'email', 'lauren.pfahler@uconn.edu'), +(212, 81, '_email', 'field_56f4983c031b3'), +(213, 81, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(214, 81, '_major_concentration', 'field_56f4986c031b4'), +(215, 81, 'hometown', 'Pacific Palisades, CA'), +(216, 81, '_hometown', 'field_56f498da031b5'), +(217, 81, 'quote', '"Work Hard, Play Hard"'), +(218, 81, '_quote', 'field_56f49930031b6'), +(219, 81, 'website_portfolio_link', 'http://laurenpfahler.com'), +(220, 81, '_website_portfolio_link', 'field_56f499ee031b7'), +(221, 83, 'email', ''), +(222, 83, '_email', 'field_56f4983c031b3'), +(223, 83, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(224, 83, '_major_concentration', 'field_56f4986c031b4'), +(225, 83, 'hometown', 'Pacific Palisades, CA'), +(226, 83, '_hometown', 'field_56f498da031b5'), +(227, 83, 'quote', '"Work Hard, Play Hard"'), +(228, 83, '_quote', 'field_56f49930031b6'), +(229, 83, 'website_portfolio_link', ''), +(230, 83, '_website_portfolio_link', 'field_56f499ee031b7'), +(231, 36, 'field_570713ed7aa91', 'a:14:{s:3:"key";s:19:"field_570713ed7aa91";s:5:"label";s:8:"LinkedIn";s:4:"name";s:8:"linkedin";s:4:"type";s:4:"text";s:12:"instructions";s:0:"";s:8:"required";s:1:"0";s:13:"default_value";s:0:"";s:11:"placeholder";s:0:"";s:7:"prepend";s:0:"";s:6:"append";s:0:"";s:10:"formatting";s:4:"html";s:9:"maxlength";s:0:"";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:3:{s:5:"field";s:19:"field_56f4986c031b4";s:8:"operator";s:2:"==";s:5:"value";s:10:"Undeclared";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:5;}'), +(232, 36, 'rule', 'a:5:{s:5:"param";s:9:"post_type";s:8:"operator";s:2:"==";s:5:"value";s:6:"member";s:8:"order_no";i:0;s:8:"group_no";i:0;}'), +(233, 84, '_wp_attached_file', '2016/04/lauren.jpg'), +(234, 84, '_wp_attachment_metadata', 'a:4:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:18:"2016/04/lauren.jpg";s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(235, 84, '_wp_attachment_image_alt', 'Lauren Pfahler'), +(237, 85, 'email', 'lauren.pfahler@uconn.edu'), +(238, 85, '_email', 'field_56f4983c031b3'), +(239, 85, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(240, 85, '_major_concentration', 'field_56f4986c031b4'), +(241, 85, 'hometown', 'Pacific Palisades, CA'), +(242, 85, '_hometown', 'field_56f498da031b5'), +(243, 85, 'quote', '"Work Hard, Play Hard"'), +(244, 85, '_quote', 'field_56f49930031b6'), +(245, 85, 'website_portfolio_link', 'http://laurenpfahler.com'), +(246, 85, '_website_portfolio_link', 'field_56f499ee031b7'), +(247, 85, 'linkedin', 'https://www.linkedin.com/in/laurenpfahler'), +(248, 85, '_linkedin', 'field_570713ed7aa91'), +(249, 81, 'linkedin', 'https://www.linkedin.com/in/laurenpfahler'), +(250, 81, '_linkedin', 'field_570713ed7aa91'), +(251, 86, '_edit_lock', '1461270535:4'), +(252, 86, '_edit_last', '4'), +(253, 87, 'email', 'benjamin.piascik@uconn.edu'), +(254, 87, '_email', 'field_56f4983c031b3'), +(255, 87, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(256, 87, '_major_concentration', 'field_56f4986c031b4'), +(257, 87, 'hometown', 'Waterford, CT'), +(258, 87, '_hometown', 'field_56f498da031b5'), +(259, 87, 'quote', '“Love what you do. Get good at it. Competence is a rare commodity in this day and age. And let the chips fall where they may.” - Jon Stewart'), +(260, 87, '_quote', 'field_56f49930031b6'), +(261, 87, 'website_portfolio_link', 'http://www.localfriendsonline.net'), +(262, 87, '_website_portfolio_link', 'field_56f499ee031b7'), +(263, 87, 'linkedin', ''), +(264, 87, '_linkedin', 'field_570713ed7aa91'), +(265, 86, 'email', 'benjamin.piascik@uconn.edu'), +(266, 86, '_email', 'field_56f4983c031b3'), +(267, 86, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(268, 86, '_major_concentration', 'field_56f4986c031b4'), +(269, 86, 'hometown', 'Waterford, CT'), +(270, 86, '_hometown', 'field_56f498da031b5'), +(271, 86, 'quote', '“Love what you do. Get good at it. Competence is a rare commodity in this day and age. And let the chips fall where they may.” - Jon Stewart'), +(272, 86, '_quote', 'field_56f49930031b6'), +(273, 86, 'website_portfolio_link', 'http://www.localfriendsonline.net'), +(274, 86, '_website_portfolio_link', 'field_56f499ee031b7'), +(275, 86, 'linkedin', ''), +(276, 86, '_linkedin', 'field_570713ed7aa91'), +(277, 88, '_edit_lock', '1461270558:4'), +(278, 88, '_edit_last', '4'), +(279, 89, 'email', 'alexandra.butera@uconn.edu'), +(280, 89, '_email', 'field_56f4983c031b3'), +(281, 89, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(282, 89, '_major_concentration', 'field_56f4986c031b4'), +(283, 89, 'hometown', 'Havertown, PA'), +(284, 89, '_hometown', 'field_56f498da031b5'), +(285, 89, 'quote', '“The only thing standing between you and your goal is the bullsh*t story you keep telling yourself as to why you can’t achieve it.” -The Wolf of Wall Street'), +(286, 89, '_quote', 'field_56f49930031b6'), +(287, 89, 'website_portfolio_link', ''), +(288, 89, '_website_portfolio_link', 'field_56f499ee031b7'), +(289, 89, 'linkedin', 'https://www.linkedin.com/in/alexandrabutera'), +(290, 89, '_linkedin', 'field_570713ed7aa91'), +(291, 88, 'email', 'alexandra.butera@uconn.edu'), +(292, 88, '_email', 'field_56f4983c031b3'), +(293, 88, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(294, 88, '_major_concentration', 'field_56f4986c031b4'), +(295, 88, 'hometown', 'Havertown, PA'), +(296, 88, '_hometown', 'field_56f498da031b5'), +(297, 88, 'quote', '“The only thing standing between you and your goal is the bullsh*t story you keep telling yourself as to why you can’t achieve it.” -The Wolf of Wall Street'), +(298, 88, '_quote', 'field_56f49930031b6'), +(299, 88, 'website_portfolio_link', ''), +(300, 88, '_website_portfolio_link', 'field_56f499ee031b7'), +(301, 88, 'linkedin', 'https://www.linkedin.com/in/alexandrabutera'), +(302, 88, '_linkedin', 'field_570713ed7aa91'), +(303, 90, '_wp_attached_file', '2016/04/Butes.jpg'), +(304, 90, '_wp_attachment_metadata', 'a:4:{s:5:"width";i:2290;s:6:"height";i:2290;s:4:"file";s:17:"2016/04/Butes.jpg";s:10:"image_meta";a:12:{s:8:"aperture";s:1:"8";s:6:"credit";s:0:"";s:6:"camera";s:21:"Canon EOS 5D Mark III";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1443522042";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"35";s:3:"iso";s:4:"1600";s:13:"shutter_speed";s:4:"0.02";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'), +(305, 90, '_wp_attachment_image_alt', 'Alli Butera'), +(307, 91, '_wp_attached_file', '2016/04/Lauren-1.jpg'), +(308, 91, '_wp_attachment_metadata', 'a:4:{s:5:"width";i:2414;s:6:"height";i:2414;s:4:"file";s:20:"2016/04/Lauren-1.jpg";s:10:"image_meta";a:12:{s:8:"aperture";s:1:"8";s:6:"credit";s:0:"";s:6:"camera";s:21:"Canon EOS 5D Mark III";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1443522974";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"35";s:3:"iso";s:4:"1600";s:13:"shutter_speed";s:4:"0.02";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'), +(309, 91, '_wp_attachment_image_alt', 'Lauren Pfahler'), +(310, 81, '_thumbnail_id', '158'), +(311, 92, '_edit_lock', '1461271429:4'), +(312, 92, '_edit_last', '4'), +(313, 93, '_wp_attached_file', '2016/04/Justin.jpg'), +(314, 93, '_wp_attachment_metadata', 'a:4:{s:5:"width";i:2437;s:6:"height";i:2436;s:4:"file";s:18:"2016/04/Justin.jpg";s:10:"image_meta";a:12:{s:8:"aperture";s:1:"8";s:6:"credit";s:0:"";s:6:"camera";s:21:"Canon EOS 5D Mark III";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1443529627";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"35";s:3:"iso";s:4:"1600";s:13:"shutter_speed";s:4:"0.02";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'), +(315, 93, '_wp_attachment_image_alt', 'Justin Nicoletti'), +(316, 92, '_thumbnail_id', '154'), +(317, 94, 'email', 'justin.nicoletti@gmail.com'), +(318, 94, '_email', 'field_56f4983c031b3'), +(319, 94, 'major_concentration', 'a:2:{i:0;s:32:"2D Animation and Motion Graphics";i:1;s:28:"3D Animation & Visualization";}'), +(320, 94, '_major_concentration', 'field_56f4986c031b4'), +(321, 94, 'hometown', 'Ellington, CT'), +(322, 94, '_hometown', 'field_56f498da031b5'), +(323, 94, 'quote', ''), +(324, 94, '_quote', 'field_56f49930031b6'), +(325, 94, 'website_portfolio_link', ''), +(326, 94, '_website_portfolio_link', 'field_56f499ee031b7'), +(327, 94, 'linkedin', ''), +(328, 94, '_linkedin', 'field_570713ed7aa91'), +(329, 92, 'email', 'justin.nicoletti@gmail.com'), +(330, 92, '_email', 'field_56f4983c031b3'), +(331, 92, 'major_concentration', 'a:2:{i:0;s:32:"2D Animation and Motion Graphics";i:1;s:28:"3D Animation & Visualization";}'), +(332, 92, '_major_concentration', 'field_56f4986c031b4'), +(333, 92, 'hometown', 'Ellington, CT'), +(334, 92, '_hometown', 'field_56f498da031b5'), +(335, 92, 'quote', ''), +(336, 92, '_quote', 'field_56f49930031b6'), +(337, 92, 'website_portfolio_link', ''), +(338, 92, '_website_portfolio_link', 'field_56f499ee031b7'), +(339, 92, 'linkedin', ''), +(340, 92, '_linkedin', 'field_570713ed7aa91'), +(341, 95, '_edit_lock', '1460292319:2'), +(342, 95, '_edit_last', '2'), +(343, 95, 'field_570a4acb61a7e', 'a:11:{s:3:"key";s:19:"field_570a4acb61a7e";s:5:"label";s:10:"Start Date";s:4:"name";s:10:"start_date";s:4:"type";s:11:"date_picker";s:12:"instructions";s:33:"The date that the semester began.";s:8:"required";s:1:"1";s:11:"date_format";s:6:"yymmdd";s:14:"display_format";s:8:"mm/dd/yy";s:9:"first_day";s:1:"1";s:17:"conditional_logic";a:3:{s:6:"status";s:1:"0";s:5:"rules";a:1:{i:0;a:2:{s:5:"field";s:4:"null";s:8:"operator";s:2:"==";}}s:8:"allorany";s:3:"all";}s:8:"order_no";i:0;}'), +(345, 95, 'position', 'acf_after_title'), +(346, 95, 'layout', 'no_box'), +(347, 95, 'hide_on_screen', ''), +(348, 95, 'rule', 'a:5:{s:5:"param";s:11:"ef_taxonomy";s:8:"operator";s:2:"==";s:5:"value";s:8:"semester";s:8:"order_no";i:0;s:8:"group_no";i:0;}'), +(349, 97, '_edit_lock', '1460494819:4'), +(350, 97, '_edit_last', '4'), +(351, 97, '_wp_trash_meta_status', 'draft'), +(352, 97, '_wp_trash_meta_time', '1460494968'), +(353, 99, '_edit_lock', '1460655438:4'), +(354, 99, '_edit_last', '4'), +(355, 100, 'members', ''), +(356, 100, '_members', 'field_56f49bee624cd'), +(357, 100, 'project_icon', ''), +(358, 100, '_project_icon', 'field_570176f547aea'), +(359, 99, 'members', ''), +(360, 99, '_members', 'field_56f49bee624cd'), +(361, 99, 'project_icon', ''), +(362, 99, '_project_icon', 'field_570176f547aea'), +(363, 101, '_edit_lock', '1460655639:4'), +(364, 101, '_edit_last', '4'), +(365, 102, 'members', ''), +(366, 102, '_members', 'field_56f49bee624cd'), +(367, 102, 'project_icon', ''), +(368, 102, '_project_icon', 'field_570176f547aea'), +(369, 101, 'members', ''), +(370, 101, '_members', 'field_56f49bee624cd'), +(371, 101, 'project_icon', ''), +(372, 101, '_project_icon', 'field_570176f547aea'), +(375, 105, '_wp_attached_file', '2016/04/What_is_a_persona.jpg'), +(376, 105, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1000;s:6:"height";i:600;s:4:"file";s:29:"2016/04/What_is_a_persona.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"What_is_a_persona-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:29:"What_is_a_persona-300x180.jpg";s:5:"width";i:300;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"What_is_a_persona-768x461.jpg";s:5:"width";i:768;s:6:"height";i:461;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(377, 99, '_thumbnail_id', '105'), +(378, 106, '_wp_attached_file', '2016/04/PCC.png'), +(379, 106, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:3827;s:6:"height";i:2140;s:4:"file";s:15:"2016/04/PCC.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:15:"PCC-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:15:"PCC-300x168.png";s:5:"width";i:300;s:6:"height";i:168;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:15:"PCC-768x429.png";s:5:"width";i:768;s:6:"height";i:429;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:16:"PCC-1024x573.png";s:5:"width";i:1024;s:6:"height";i:573;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(380, 101, '_thumbnail_id', '106'), +(381, 107, '_edit_lock', '1460656979:2'), +(382, 107, '_edit_last', '4'), +(383, 108, '_wp_attached_file', '2016/04/Isoplexis_logo-0.00.02.10.jpg'), +(384, 108, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1500;s:6:"height";i:844;s:4:"file";s:37:"2016/04/Isoplexis_logo-0.00.02.10.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:37:"Isoplexis_logo-0.00.02.10-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:37:"Isoplexis_logo-0.00.02.10-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:37:"Isoplexis_logo-0.00.02.10-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:38:"Isoplexis_logo-0.00.02.10-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(385, 107, '_thumbnail_id', '108'), +(386, 109, 'members', ''), +(387, 109, '_members', 'field_56f49bee624cd'), +(388, 109, 'project_icon', ''), +(389, 109, '_project_icon', 'field_570176f547aea'), +(390, 107, 'members', ''), +(391, 107, '_members', 'field_56f49bee624cd'), +(392, 107, 'project_icon', ''), +(393, 107, '_project_icon', 'field_570176f547aea'), +(394, 110, '_edit_lock', '1460657143:2'), +(395, 110, '_edit_last', '2'), +(396, 111, 'members', ''), +(397, 111, '_members', 'field_56f49bee624cd'), +(398, 111, 'project_icon', ''), +(399, 111, '_project_icon', 'field_570176f547aea'), +(400, 110, 'members', ''), +(401, 110, '_members', 'field_56f49bee624cd'), +(402, 110, 'project_icon', ''), +(403, 110, '_project_icon', 'field_570176f547aea'), +(404, 112, '_wp_attached_file', '2016/04/UmbieLogo.png'), +(405, 112, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1103;s:6:"height";i:583;s:4:"file";s:21:"2016/04/UmbieLogo.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"UmbieLogo-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:21:"UmbieLogo-300x159.png";s:5:"width";i:300;s:6:"height";i:159;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:21:"UmbieLogo-768x406.png";s:5:"width";i:768;s:6:"height";i:406;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:22:"UmbieLogo-1024x541.png";s:5:"width";i:1024;s:6:"height";i:541;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(406, 110, '_thumbnail_id', '112'), +(407, 113, 'members', ''), +(408, 113, '_members', 'field_56f49bee624cd'), +(409, 113, 'project_icon', ''), +(410, 113, '_project_icon', 'field_570176f547aea'), +(411, 114, '_edit_lock', '1460657159:4'), +(412, 114, '_edit_last', '4'), +(413, 115, 'members', ''), +(414, 115, '_members', 'field_56f49bee624cd'), +(415, 115, 'project_icon', ''), +(416, 115, '_project_icon', 'field_570176f547aea'), +(417, 114, 'members', ''), +(418, 114, '_members', 'field_56f49bee624cd'), +(419, 114, 'project_icon', ''), +(420, 114, '_project_icon', 'field_570176f547aea'), +(421, 116, '_wp_attached_file', '2016/04/Screen-Shot-2014-10-27-at-10.25.35-AM.png'), +(422, 116, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:704;s:6:"height";i:680;s:4:"file";s:49:"2016/04/Screen-Shot-2014-10-27-at-10.25.35-AM.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:49:"Screen-Shot-2014-10-27-at-10.25.35-AM-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:49:"Screen-Shot-2014-10-27-at-10.25.35-AM-300x290.png";s:5:"width";i:300;s:6:"height";i:290;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(423, 117, 'members', ''), +(424, 117, '_members', 'field_56f49bee624cd'), +(425, 117, 'project_icon', ''), +(426, 117, '_project_icon', 'field_570176f547aea'), +(427, 118, 'members', ''), +(428, 118, '_members', 'field_56f49bee624cd'), +(429, 118, 'project_icon', ''), +(430, 118, '_project_icon', 'field_570176f547aea'), +(431, 119, '_wp_attached_file', '2016/04/manfield-logo-work-page2.jpg'), +(432, 119, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:338;s:4:"file";s:36:"2016/04/manfield-logo-work-page2.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:36:"manfield-logo-work-page2-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:36:"manfield-logo-work-page2-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'), +(433, 114, '_thumbnail_id', '119'), +(434, 120, 'members', ''), +(435, 120, '_members', 'field_56f49bee624cd'), +(436, 120, 'project_icon', ''), +(437, 120, '_project_icon', 'field_570176f547aea'), +(438, 121, 'members', ''), +(439, 121, '_members', 'field_56f49bee624cd'), +(440, 121, 'project_icon', ''), +(441, 121, '_project_icon', 'field_570176f547aea'), +(442, 123, '_wp_attached_file', '2016/04/aidan.jpg'), +(443, 123, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:17:"2016/04/aidan.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"aidan-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:"aidan-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"8";s:6:"credit";s:0:"";s:6:"camera";s:21:"Canon EOS 5D Mark III";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1443530371";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"35";s:3:"iso";s:4:"1600";s:13:"shutter_speed";s:4:"0.02";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'), +(444, 124, '_wp_attached_file', '2016/04/Alecia.jpg'), +(445, 124, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:18:"2016/04/Alecia.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"Alecia-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:"Alecia-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(446, 125, '_wp_attached_file', '2016/04/alli.jpg'), +(447, 125, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:16:"2016/04/alli.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"alli-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:16:"alli-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(448, 126, '_wp_attached_file', '2016/04/andrew.jpg'), +(449, 126, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:18:"2016/04/andrew.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"andrew-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:"andrew-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(450, 127, '_wp_attached_file', '2016/04/BrianOtt.jpg'), +(451, 127, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:20:"2016/04/BrianOtt.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"BrianOtt-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"BrianOtt-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(452, 128, '_wp_attached_file', '2016/04/britt.jpg'), +(453, 128, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:17:"2016/04/britt.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"britt-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:"britt-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(454, 129, '_wp_attached_file', '2016/04/caitlin.jpg'), +(455, 129, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:19:"2016/04/caitlin.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"caitlin-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:"caitlin-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(456, 130, '_wp_attached_file', '2016/04/carlota.jpg'), +(457, 130, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:19:"2016/04/carlota.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"carlota-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:"carlota-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(458, 131, '_wp_attached_file', '2016/04/cati.jpg'), +(459, 131, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:16:"2016/04/cati.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"cati-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:16:"cati-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(460, 132, '_wp_attached_file', '2016/04/Christina.jpg'), +(461, 132, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:21:"2016/04/Christina.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"Christina-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:21:"Christina-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"8";s:6:"credit";s:0:"";s:6:"camera";s:21:"Canon EOS 5D Mark III";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1443529157";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"35";s:3:"iso";s:4:"1600";s:13:"shutter_speed";s:4:"0.02";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'), +(462, 133, '_wp_attached_file', '2016/04/Dan.jpg'), +(463, 133, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:15:"2016/04/Dan.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:15:"Dan-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:15:"Dan-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(464, 134, '_wp_attached_file', '2016/04/Demario.jpg'), +(465, 134, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:19:"2016/04/Demario.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"Demario-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:"Demario-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(466, 135, '_wp_attached_file', '2016/04/DSC_9550.jpg'), +(467, 135, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:20:"2016/04/DSC_9550.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"DSC_9550-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"DSC_9550-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"2.8";s:6:"credit";s:0:"";s:6:"camera";s:10:"NIKON D810";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1410675035";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"70";s:3:"iso";s:3:"125";s:13:"shutter_speed";s:5:"0.008";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'), +(468, 136, '_wp_attached_file', '2016/04/DSC_9569.jpg'), +(469, 136, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:20:"2016/04/DSC_9569.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"DSC_9569-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"DSC_9569-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"2.8";s:6:"credit";s:0:"";s:6:"camera";s:10:"NIKON D810";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1410675462";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"70";s:3:"iso";s:3:"160";s:13:"shutter_speed";s:5:"0.008";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'), +(470, 137, '_wp_attached_file', '2016/04/DSC_9607.jpg'), +(471, 137, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:20:"2016/04/DSC_9607.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"DSC_9607-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"DSC_9607-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"2.8";s:6:"credit";s:0:"";s:6:"camera";s:10:"NIKON D810";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1410675892";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"70";s:3:"iso";s:3:"140";s:13:"shutter_speed";s:5:"0.008";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'), +(472, 138, '_wp_attached_file', '2016/04/DSC_9617.jpg'), +(473, 138, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:20:"2016/04/DSC_9617.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"DSC_9617-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"DSC_9617-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"2.8";s:6:"credit";s:0:"";s:6:"camera";s:10:"NIKON D810";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1410675961";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"65";s:3:"iso";s:3:"220";s:13:"shutter_speed";s:5:"0.008";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'), +(474, 139, '_wp_attached_file', '2016/04/DSC_9620.jpg'), +(475, 139, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:20:"2016/04/DSC_9620.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"DSC_9620-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"DSC_9620-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"2.8";s:6:"credit";s:0:"";s:6:"camera";s:10:"NIKON D810";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1410675984";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"55";s:3:"iso";s:3:"140";s:13:"shutter_speed";s:5:"0.008";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'), +(476, 140, '_wp_attached_file', '2016/04/DSC_9638.jpg'), +(477, 140, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:20:"2016/04/DSC_9638.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"DSC_9638-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"DSC_9638-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"2.8";s:6:"credit";s:0:"";s:6:"camera";s:10:"NIKON D810";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1410676097";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"70";s:3:"iso";s:3:"140";s:13:"shutter_speed";s:5:"0.008";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'), +(478, 141, '_wp_attached_file', '2016/04/DSC_9655.jpg'); +INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES +(479, 141, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:20:"2016/04/DSC_9655.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"DSC_9655-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"DSC_9655-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"2.8";s:6:"credit";s:0:"";s:6:"camera";s:10:"NIKON D810";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1410676247";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"50";s:3:"iso";s:3:"180";s:13:"shutter_speed";s:5:"0.008";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'), +(480, 142, '_wp_attached_file', '2016/04/DSC_9665.jpg'), +(481, 142, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:20:"2016/04/DSC_9665.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"DSC_9665-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"DSC_9665-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"2.8";s:6:"credit";s:0:"";s:6:"camera";s:10:"NIKON D810";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1410680365";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"58";s:3:"iso";s:3:"140";s:13:"shutter_speed";s:5:"0.008";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'), +(482, 143, '_wp_attached_file', '2016/04/DSC_9685.jpg'), +(483, 143, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:20:"2016/04/DSC_9685.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"DSC_9685-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"DSC_9685-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"2.8";s:6:"credit";s:0:"";s:6:"camera";s:10:"NIKON D810";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1410680487";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"56";s:3:"iso";s:3:"160";s:13:"shutter_speed";s:5:"0.008";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'), +(484, 144, '_wp_attached_file', '2016/04/DSC_9705.jpg'), +(485, 144, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:20:"2016/04/DSC_9705.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"DSC_9705-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"DSC_9705-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"2.8";s:6:"credit";s:0:"";s:6:"camera";s:10:"NIKON D810";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1410680833";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"58";s:3:"iso";s:3:"200";s:13:"shutter_speed";s:5:"0.008";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'), +(486, 145, '_wp_attached_file', '2016/04/DSC_9711.jpg'), +(487, 145, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:20:"2016/04/DSC_9711.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"DSC_9711-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"DSC_9711-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"2.8";s:6:"credit";s:0:"";s:6:"camera";s:10:"NIKON D810";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1410680852";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"52";s:3:"iso";s:3:"160";s:13:"shutter_speed";s:5:"0.008";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'), +(488, 146, '_wp_attached_file', '2016/04/DSC_9725.jpg'), +(489, 146, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:20:"2016/04/DSC_9725.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"DSC_9725-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"DSC_9725-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"2.8";s:6:"credit";s:0:"";s:6:"camera";s:10:"NIKON D810";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1410680928";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"50";s:3:"iso";s:3:"220";s:13:"shutter_speed";s:5:"0.008";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'), +(490, 147, '_wp_attached_file', '2016/04/DSC_9728.jpg'), +(491, 147, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:20:"2016/04/DSC_9728.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"DSC_9728-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"DSC_9728-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"2.8";s:6:"credit";s:0:"";s:6:"camera";s:10:"NIKON D810";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1410680960";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"60";s:3:"iso";s:3:"200";s:13:"shutter_speed";s:5:"0.008";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'), +(492, 148, '_wp_attached_file', '2016/04/DSC_9732.jpg'), +(493, 148, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:20:"2016/04/DSC_9732.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"DSC_9732-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"DSC_9732-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"2.8";s:6:"credit";s:0:"";s:6:"camera";s:10:"NIKON D810";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1410681051";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"52";s:3:"iso";s:3:"140";s:13:"shutter_speed";s:5:"0.008";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'), +(494, 149, '_wp_attached_file', '2016/04/DSC_9735.jpg'), +(495, 149, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:20:"2016/04/DSC_9735.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"DSC_9735-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"DSC_9735-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"2.8";s:6:"credit";s:0:"";s:6:"camera";s:10:"NIKON D810";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1410681639";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"48";s:3:"iso";s:3:"180";s:13:"shutter_speed";s:5:"0.008";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'), +(496, 150, '_wp_attached_file', '2016/04/erin.jpg'), +(497, 150, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:16:"2016/04/erin.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"erin-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:16:"erin-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(498, 151, '_wp_attached_file', '2016/04/grace.jpg'), +(499, 151, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:17:"2016/04/grace.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"grace-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:"grace-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(500, 152, '_wp_attached_file', '2016/04/irem.jpg'), +(501, 152, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:16:"2016/04/irem.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"irem-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:16:"irem-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(502, 153, '_wp_attached_file', '2016/04/Jessie.jpg'), +(503, 153, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:18:"2016/04/Jessie.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"Jessie-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:"Jessie-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(504, 154, '_wp_attached_file', '2016/04/Justin-1.jpg'), +(505, 154, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:20:"2016/04/Justin-1.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"Justin-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"Justin-1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(506, 155, '_wp_attached_file', '2016/04/katb.jpg'), +(507, 155, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:16:"2016/04/katb.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"katb-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:16:"katb-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(508, 156, '_wp_attached_file', '2016/04/kate.jpg'), +(509, 156, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:16:"2016/04/kate.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"kate-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:16:"kate-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(510, 157, '_wp_attached_file', '2016/04/kieran.jpg'), +(511, 157, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:500;s:6:"height";i:500;s:4:"file";s:18:"2016/04/kieran.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"kieran-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:"kieran-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(512, 158, '_wp_attached_file', '2016/04/lauren-1.jpg'), +(513, 158, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:20:"2016/04/lauren-1.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"lauren-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"lauren-1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(514, 159, '_wp_attached_file', '2016/04/mai.jpg'), +(515, 159, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:15:"2016/04/mai.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:15:"mai-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:15:"mai-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(516, 160, '_wp_attached_file', '2016/04/mark.jpg'), +(517, 160, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:16:"2016/04/mark.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"mark-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:16:"mark-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(518, 161, '_wp_attached_file', '2016/04/megood.jpg'), +(519, 161, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:18:"2016/04/megood.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"megood-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:"megood-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"4.3";s:6:"credit";s:0:"";s:6:"camera";s:12:"COOLPIX L840";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1453093897";s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"12.6";s:3:"iso";s:3:"200";s:13:"shutter_speed";s:17:"0.033333333333333";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'), +(520, 162, '_wp_attached_file', '2016/04/michael.jpg'), +(521, 162, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:19:"2016/04/michael.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"michael-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:"michael-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(522, 163, '_wp_attached_file', '2016/04/michelle.jpg'), +(523, 163, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:20:"2016/04/michelle.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"michelle-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"michelle-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(524, 164, '_wp_attached_file', '2016/04/nicole.jpg'), +(525, 164, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:18:"2016/04/nicole.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"nicole-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:"nicole-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(526, 165, '_wp_attached_file', '2016/04/Rebecca.jpg'), +(527, 165, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:19:"2016/04/Rebecca.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"Rebecca-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:"Rebecca-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(528, 166, '_wp_attached_file', '2016/04/Ryan.jpg'), +(529, 166, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:16:"2016/04/Ryan.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"Ryan-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:16:"Ryan-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(530, 167, '_wp_attached_file', '2016/04/scott.jpg'), +(531, 167, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:17:"2016/04/scott.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"scott-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:"scott-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(532, 168, '_wp_attached_file', '2016/04/Selina.jpg'), +(533, 168, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:18:"2016/04/Selina.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"Selina-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:"Selina-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(534, 169, '_wp_attached_file', '2016/04/Sophie.jpg'), +(535, 169, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:18:"2016/04/Sophie.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"Sophie-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:"Sophie-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(536, 170, '_wp_attached_file', '2016/04/stef.jpg'), +(537, 170, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:16:"2016/04/stef.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"stef-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:16:"stef-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(538, 171, '_wp_attached_file', '2016/04/tim.jpg'), +(539, 171, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:15:"2016/04/tim.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:15:"tim-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:15:"tim-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(540, 172, '_wp_attached_file', '2016/04/Tom.jpg'), +(541, 172, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:15:"2016/04/Tom.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:15:"Tom-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:15:"Tom-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(542, 173, '_wp_attached_file', '2016/04/vict.jpg'), +(543, 173, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:16:"2016/04/vict.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"vict-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:16:"vict-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'), +(544, 174, '_wp_attached_file', '2016/04/zack.jpg'), +(545, 174, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:16:"2016/04/zack.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"zack-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:16:"zack-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"8";s:6:"credit";s:0:"";s:6:"camera";s:21:"Canon EOS 5D Mark III";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1443530008";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"35";s:3:"iso";s:4:"1600";s:13:"shutter_speed";s:4:"0.02";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'), +(546, 175, '_wp_attached_file', '2016/04/DSC_9690.jpg'), +(547, 175, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:20:"2016/04/DSC_9690.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"DSC_9690-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"DSC_9690-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"2.8";s:6:"credit";s:0:"";s:6:"camera";s:10:"NIKON D810";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1410680628";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"60";s:3:"iso";s:3:"125";s:13:"shutter_speed";s:5:"0.008";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'), +(548, 176, '_edit_lock', '1461270602:4'), +(549, 176, '_edit_last', '4'), +(550, 176, '_thumbnail_id', '170'), +(551, 177, 'email', 'orts.stephanie@gmail.com'), +(552, 177, '_email', 'field_56f4983c031b3'), +(553, 177, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(554, 177, '_major_concentration', 'field_56f4986c031b4'), +(555, 177, 'hometown', 'Seymour, CT'), +(556, 177, '_hometown', 'field_56f498da031b5'), +(557, 177, 'quote', 'Without "art" the eARTh is just "Eh"'), +(558, 177, '_quote', 'field_56f49930031b6'), +(559, 177, 'website_portfolio_link', 'Stephanieorts.com'), +(560, 177, '_website_portfolio_link', 'field_56f499ee031b7'), +(561, 177, 'linkedin', ''), +(562, 177, '_linkedin', 'field_570713ed7aa91'), +(563, 176, 'email', 'orts.stephanie@gmail.com'), +(564, 176, '_email', 'field_56f4983c031b3'), +(565, 176, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(566, 176, '_major_concentration', 'field_56f4986c031b4'), +(567, 176, 'hometown', 'Seymour, CT'), +(568, 176, '_hometown', 'field_56f498da031b5'), +(569, 176, 'quote', 'Without "art" the eARTh is just "Eh"'), +(570, 176, '_quote', 'field_56f49930031b6'), +(571, 176, 'website_portfolio_link', 'Stephanieorts.com'), +(572, 176, '_website_portfolio_link', 'field_56f499ee031b7'), +(573, 176, 'linkedin', ''), +(574, 176, '_linkedin', 'field_570713ed7aa91'), +(602, 181, '_edit_lock', '1461269128:4'), +(603, 181, '_edit_last', '4'), +(604, 182, 'email', 'kai.tang@uconn.edu'), +(605, 182, '_email', 'field_56f4983c031b3'), +(606, 182, 'major_concentration', 'a:1:{i:0;s:33:"Digital Game Design & Development";}'), +(607, 182, '_major_concentration', 'field_56f4986c031b4'), +(608, 182, 'hometown', 'China'), +(609, 182, '_hometown', 'field_56f498da031b5'), +(610, 182, 'quote', '"Interest leads success"'), +(611, 182, '_quote', 'field_56f49930031b6'), +(612, 182, 'website_portfolio_link', ''), +(613, 182, '_website_portfolio_link', 'field_56f499ee031b7'), +(614, 182, 'linkedin', ''), +(615, 182, '_linkedin', 'field_570713ed7aa91'), +(616, 181, 'email', 'kai.tang@uconn.edu'), +(617, 181, '_email', 'field_56f4983c031b3'), +(618, 181, 'major_concentration', 'a:1:{i:0;s:33:"Digital Game Design & Development";}'), +(619, 181, '_major_concentration', 'field_56f4986c031b4'), +(620, 181, 'hometown', 'China'), +(621, 181, '_hometown', 'field_56f498da031b5'), +(622, 181, 'quote', '"Interest leads success"'), +(623, 181, '_quote', 'field_56f49930031b6'), +(624, 181, 'website_portfolio_link', ''), +(625, 181, '_website_portfolio_link', 'field_56f499ee031b7'), +(626, 181, 'linkedin', ''), +(627, 181, '_linkedin', 'field_570713ed7aa91'), +(628, 183, '_edit_lock', '1461271416:4'), +(629, 183, '_thumbnail_id', '139'), +(630, 183, '_edit_last', '4'), +(631, 184, 'email', 'kyle.j.powers@uconn.edu'), +(632, 184, '_email', 'field_56f4983c031b3'), +(633, 184, 'major_concentration', 'a:1:{i:0;s:33:"Digital Game Design & Development";}'), +(634, 184, '_major_concentration', 'field_56f4986c031b4'), +(635, 184, 'hometown', 'Monroe, CT'), +(636, 184, '_hometown', 'field_56f498da031b5'), +(637, 184, 'quote', ''), +(638, 184, '_quote', 'field_56f49930031b6'), +(639, 184, 'website_portfolio_link', ''), +(640, 184, '_website_portfolio_link', 'field_56f499ee031b7'), +(641, 184, 'linkedin', ''), +(642, 184, '_linkedin', 'field_570713ed7aa91'), +(643, 183, 'email', 'kyle.j.powers@uconn.edu'), +(644, 183, '_email', 'field_56f4983c031b3'), +(645, 183, 'major_concentration', 'a:1:{i:0;s:33:"Digital Game Design & Development";}'), +(646, 183, '_major_concentration', 'field_56f4986c031b4'), +(647, 183, 'hometown', 'Monroe, CT'), +(648, 183, '_hometown', 'field_56f498da031b5'), +(649, 183, 'quote', ''), +(650, 183, '_quote', 'field_56f49930031b6'), +(651, 183, 'website_portfolio_link', ''), +(652, 183, '_website_portfolio_link', 'field_56f499ee031b7'), +(653, 183, 'linkedin', ''), +(654, 183, '_linkedin', 'field_570713ed7aa91'), +(655, 185, '_edit_lock', '1461270123:4'), +(656, 185, '_edit_last', '4'), +(657, 186, 'email', 'cody.hendrickson@uconn.edu'), +(658, 186, '_email', 'field_56f4983c031b3'), +(659, 186, 'major_concentration', 'a:2:{i:0;s:32:"2D Animation and Motion Graphics";i:1;s:28:"3D Animation & Visualization";}'), +(660, 186, '_major_concentration', 'field_56f4986c031b4'), +(661, 186, 'hometown', 'Hebron, CT'), +(662, 186, '_hometown', 'field_56f498da031b5'), +(663, 186, 'quote', '"Either inspirational or your own"'), +(664, 186, '_quote', 'field_56f49930031b6'), +(665, 186, 'website_portfolio_link', 'https://vimeo.com/156911349 goo.gl/n5z8l1'), +(666, 186, '_website_portfolio_link', 'field_56f499ee031b7'), +(667, 186, 'linkedin', ''), +(668, 186, '_linkedin', 'field_570713ed7aa91'), +(669, 185, 'email', 'cody.hendrickson@uconn.edu'), +(670, 185, '_email', 'field_56f4983c031b3'), +(671, 185, 'major_concentration', 'a:2:{i:0;s:32:"2D Animation and Motion Graphics";i:1;s:28:"3D Animation & Visualization";}'), +(672, 185, '_major_concentration', 'field_56f4986c031b4'), +(673, 185, 'hometown', 'Hebron, CT'), +(674, 185, '_hometown', 'field_56f498da031b5'), +(675, 185, 'quote', ''), +(676, 185, '_quote', 'field_56f49930031b6'), +(677, 185, 'website_portfolio_link', 'https://vimeo.com/156911349'), +(678, 185, '_website_portfolio_link', 'field_56f499ee031b7'), +(679, 185, 'linkedin', 'https://www.linkedin.com/in/codyhendrickson'), +(680, 185, '_linkedin', 'field_570713ed7aa91'), +(681, 185, '_thumbnail_id', '137'), +(682, 187, 'email', 'cody.hendrickson@uconn.edu'), +(683, 187, '_email', 'field_56f4983c031b3'), +(684, 187, 'major_concentration', 'a:2:{i:0;s:32:"2D Animation and Motion Graphics";i:1;s:28:"3D Animation & Visualization";}'), +(685, 187, '_major_concentration', 'field_56f4986c031b4'), +(686, 187, 'hometown', 'Hebron, CT'), +(687, 187, '_hometown', 'field_56f498da031b5'), +(688, 187, 'quote', '"Either inspirational or your own"'), +(689, 187, '_quote', 'field_56f49930031b6'), +(690, 187, 'website_portfolio_link', 'https://vimeo.com/156911349 goo.gl/n5z8l1'), +(691, 187, '_website_portfolio_link', 'field_56f499ee031b7'), +(692, 187, 'linkedin', 'https://www.linkedin.com/in/codyhendrickson'), +(693, 187, '_linkedin', 'field_570713ed7aa91'), +(694, 188, 'email', 'cody.hendrickson@uconn.edu'), +(695, 188, '_email', 'field_56f4983c031b3'), +(696, 188, 'major_concentration', 'a:2:{i:0;s:32:"2D Animation and Motion Graphics";i:1;s:28:"3D Animation & Visualization";}'), +(697, 188, '_major_concentration', 'field_56f4986c031b4'), +(698, 188, 'hometown', 'Hebron, CT'), +(699, 188, '_hometown', 'field_56f498da031b5'), +(700, 188, 'quote', '"Either inspirational or your own"'), +(701, 188, '_quote', 'field_56f49930031b6'), +(702, 188, 'website_portfolio_link', 'https://vimeo.com/156911349'), +(703, 188, '_website_portfolio_link', 'field_56f499ee031b7'), +(704, 188, 'linkedin', 'https://www.linkedin.com/in/codyhendrickson'), +(705, 188, '_linkedin', 'field_570713ed7aa91'), +(706, 189, '_edit_lock', '1461269910:4'), +(707, 189, '_edit_last', '4'), +(708, 189, '_thumbnail_id', '138'), +(709, 190, 'email', 'olivia.messina@uconn.edu'), +(710, 190, '_email', 'field_56f4983c031b3'), +(711, 190, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(712, 190, '_major_concentration', 'field_56f4986c031b4'), +(713, 190, 'hometown', 'Avon, CT'), +(714, 190, '_hometown', 'field_56f498da031b5'), +(715, 190, 'quote', '“Creativity is having fun in making mistakes” '), +(716, 190, '_quote', 'field_56f49930031b6'), +(717, 190, 'website_portfolio_link', 'http://olivia.messina.com'), +(718, 190, '_website_portfolio_link', 'field_56f499ee031b7'), +(719, 190, 'linkedin', 'https://www.linkedin.com/in/olivia-messina-1b2522b0?trk=hp-identity-name'), +(720, 190, '_linkedin', 'field_570713ed7aa91'), +(721, 189, 'email', 'olivia.messina@uconn.edu'), +(722, 189, '_email', 'field_56f4983c031b3'), +(723, 189, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(724, 189, '_major_concentration', 'field_56f4986c031b4'), +(725, 189, 'hometown', 'Avon, CT'), +(726, 189, '_hometown', 'field_56f498da031b5'), +(727, 189, 'quote', '“Creativity is having fun in making mistakes” '), +(728, 189, '_quote', 'field_56f49930031b6'), +(729, 189, 'website_portfolio_link', 'http://olivia.messina.com'), +(730, 189, '_website_portfolio_link', 'field_56f499ee031b7'), +(731, 189, 'linkedin', 'https://www.linkedin.com/in/olivia-messina-1b2522b0?trk=hp-identity-name'), +(732, 189, '_linkedin', 'field_570713ed7aa91'), +(733, 191, 'email', 'cody.hendrickson@uconn.edu'), +(734, 191, '_email', 'field_56f4983c031b3'), +(735, 191, 'major_concentration', 'a:2:{i:0;s:32:"2D Animation and Motion Graphics";i:1;s:28:"3D Animation & Visualization";}'), +(736, 191, '_major_concentration', 'field_56f4986c031b4'), +(737, 191, 'hometown', 'Hebron, CT'), +(738, 191, '_hometown', 'field_56f498da031b5'), +(739, 191, 'quote', ''), +(740, 191, '_quote', 'field_56f49930031b6'), +(741, 191, 'website_portfolio_link', 'https://vimeo.com/156911349'), +(742, 191, '_website_portfolio_link', 'field_56f499ee031b7'), +(743, 191, 'linkedin', 'https://www.linkedin.com/in/codyhendrickson'), +(744, 191, '_linkedin', 'field_570713ed7aa91'), +(745, 192, '_edit_lock', '1461270311:4'), +(746, 192, '_edit_last', '4'), +(747, 192, '_thumbnail_id', '150'), +(748, 193, 'email', 'erin.kaminski@uconn.edu'), +(749, 193, '_email', 'field_56f4983c031b3'), +(750, 193, 'major_concentration', 'a:1:{i:0;s:32:"2D Animation and Motion Graphics";}'), +(751, 193, '_major_concentration', 'field_56f4986c031b4'), +(752, 193, 'hometown', 'Avon, CT'), +(753, 193, '_hometown', 'field_56f498da031b5'), +(754, 193, 'quote', ''), +(755, 193, '_quote', 'field_56f49930031b6'), +(756, 193, 'website_portfolio_link', 'http://erinkaminski.net/'), +(757, 193, '_website_portfolio_link', 'field_56f499ee031b7'), +(758, 193, 'linkedin', ''), +(759, 193, '_linkedin', 'field_570713ed7aa91'), +(760, 192, 'email', 'erin.kaminski@uconn.edu'), +(761, 192, '_email', 'field_56f4983c031b3'), +(762, 192, 'major_concentration', 'a:1:{i:0;s:32:"2D Animation and Motion Graphics";}'), +(763, 192, '_major_concentration', 'field_56f4986c031b4'), +(764, 192, 'hometown', 'Avon, CT'), +(765, 192, '_hometown', 'field_56f498da031b5'), +(766, 192, 'quote', ''), +(767, 192, '_quote', 'field_56f49930031b6'), +(768, 192, 'website_portfolio_link', 'http://erinkaminski.net/'), +(769, 192, '_website_portfolio_link', 'field_56f499ee031b7'), +(770, 192, 'linkedin', ''), +(771, 192, '_linkedin', 'field_570713ed7aa91'), +(772, 37, '_thumbnail_id', '142'), +(775, 86, '_thumbnail_id', '149'), +(776, 88, '_thumbnail_id', '125'), +(777, 194, '_edit_lock', '1461289986:4'), +(778, 194, '_edit_last', '4'), +(779, 194, '_thumbnail_id', '140'), +(780, 195, 'email', 'michael.rivera@uconn.edu'), +(781, 195, '_email', 'field_56f4983c031b3'), +(782, 195, 'major_concentration', 'a:1:{i:0;s:24:"Web Design & Development";}'), +(783, 195, '_major_concentration', 'field_56f4986c031b4'), +(784, 195, 'hometown', 'New Haven, CT'), +(785, 195, '_hometown', 'field_56f498da031b5'), +(786, 195, 'quote', '"Live Your Truth so nobody can use your truth against you."'), +(787, 195, '_quote', 'field_56f49930031b6'), +(788, 195, 'website_portfolio_link', ''), +(789, 195, '_website_portfolio_link', 'field_56f499ee031b7'), +(790, 195, 'linkedin', ''), +(791, 195, '_linkedin', 'field_570713ed7aa91'), +(792, 194, 'email', 'michael.rivera@uconn.edu'), +(793, 194, '_email', 'field_56f4983c031b3'), +(794, 194, 'major_concentration', 'a:1:{i:0;s:24:"Web Design & Development";}'), +(795, 194, '_major_concentration', 'field_56f4986c031b4'), +(796, 194, 'hometown', 'New Haven, CT'), +(797, 194, '_hometown', 'field_56f498da031b5'), +(798, 194, 'quote', '"Live Your Truth so nobody can use your truth against you."'), +(799, 194, '_quote', 'field_56f49930031b6'), +(800, 194, 'website_portfolio_link', ''), +(801, 194, '_website_portfolio_link', 'field_56f499ee031b7'), +(802, 194, 'linkedin', ''), +(803, 194, '_linkedin', 'field_570713ed7aa91'), +(804, 196, '_edit_lock', '1461272222:4'), +(805, 196, '_edit_last', '4'), +(806, 196, '_thumbnail_id', '145'), +(807, 197, 'email', 'nlensander@me.com'), +(808, 197, '_email', 'field_56f4983c031b3'), +(809, 197, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(810, 197, '_major_concentration', 'field_56f4986c031b4'), +(811, 197, 'hometown', 'Santa Barbara, CA'), +(812, 197, '_hometown', 'field_56f498da031b5'), +(813, 197, 'quote', '"I never learned anything from a match that I won." - Bobby Jones'), +(814, 197, '_quote', 'field_56f49930031b6'), +(815, 197, 'website_portfolio_link', ''), +(816, 197, '_website_portfolio_link', 'field_56f499ee031b7'), +(817, 197, 'linkedin', ''), +(818, 197, '_linkedin', 'field_570713ed7aa91'), +(819, 196, 'email', 'nlensander@me.com'), +(820, 196, '_email', 'field_56f4983c031b3'), +(821, 196, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(822, 196, '_major_concentration', 'field_56f4986c031b4'), +(823, 196, 'hometown', 'Santa Barbara, CA'), +(824, 196, '_hometown', 'field_56f498da031b5'), +(825, 196, 'quote', '"I never learned anything from a match that I won." - Bobby Jones'), +(826, 196, '_quote', 'field_56f49930031b6'), +(827, 196, 'website_portfolio_link', ''), +(828, 196, '_website_portfolio_link', 'field_56f499ee031b7'), +(829, 196, 'linkedin', ''), +(830, 196, '_linkedin', 'field_570713ed7aa91'), +(831, 198, '_edit_lock', '1461271385:4'), +(832, 198, '_edit_last', '4'), +(833, 198, '_thumbnail_id', '135'), +(834, 199, 'email', 'brandon.nickle@uconn.edu'), +(835, 199, '_email', 'field_56f4983c031b3'), +(836, 199, 'major_concentration', 'a:1:{i:0;s:24:"Web Design & Development";}'), +(837, 199, '_major_concentration', 'field_56f4986c031b4'), +(838, 199, 'hometown', 'Long Beach, CA'), +(839, 199, '_hometown', 'field_56f498da031b5'), +(840, 199, 'quote', '"Setting goals is the first step in turning the invisible into the visible." -Tony Robbins'), +(841, 199, '_quote', 'field_56f49930031b6'), +(842, 199, 'website_portfolio_link', ''), +(843, 199, '_website_portfolio_link', 'field_56f499ee031b7'), +(844, 199, 'linkedin', 'https://www.linkedin.com/in/brandon-nickle-33807795?trk=prof-samename-name'), +(845, 199, '_linkedin', 'field_570713ed7aa91'), +(846, 198, 'email', 'brandon.nickle@uconn.edu'), +(847, 198, '_email', 'field_56f4983c031b3'), +(848, 198, 'major_concentration', 'a:1:{i:0;s:24:"Web Design & Development";}'), +(849, 198, '_major_concentration', 'field_56f4986c031b4'), +(850, 198, 'hometown', 'Long Beach, CA'), +(851, 198, '_hometown', 'field_56f498da031b5'), +(852, 198, 'quote', '"Setting goals is the first step in turning the invisible into the visible." -Tony Robbins'), +(853, 198, '_quote', 'field_56f49930031b6'), +(854, 198, 'website_portfolio_link', ''), +(855, 198, '_website_portfolio_link', 'field_56f499ee031b7'), +(856, 198, 'linkedin', 'https://www.linkedin.com/in/brandon-nickle-33807795?trk=prof-samename-name'), +(857, 198, '_linkedin', 'field_570713ed7aa91'), +(858, 200, '_edit_lock', '1461274369:4'), +(859, 200, '_edit_last', '4'), +(860, 201, 'email', 'm.e.94rivera@gmail.com'), +(861, 201, '_email', 'field_56f4983c031b3'), +(862, 201, 'major_concentration', 'a:1:{i:0;s:24:"Web Design & Development";}'), +(863, 201, '_major_concentration', 'field_56f4986c031b4'), +(864, 201, 'hometown', 'New Haven, CT'), +(865, 201, '_hometown', 'field_56f498da031b5'), +(866, 201, 'quote', '"Live Your Truth so nobody can use your truth against you."'), +(867, 201, '_quote', 'field_56f49930031b6'), +(868, 201, 'website_portfolio_link', ''), +(869, 201, '_website_portfolio_link', 'field_56f499ee031b7'), +(870, 201, 'linkedin', ''), +(871, 201, '_linkedin', 'field_570713ed7aa91'), +(872, 202, 'email', 'carey.vo@gmail.com'), +(873, 202, '_email', 'field_56f4983c031b3'), +(874, 202, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(875, 202, '_major_concentration', 'field_56f4986c031b4'), +(876, 202, 'hometown', 'Bridgeport, CT '), +(877, 202, '_hometown', 'field_56f498da031b5'), +(878, 202, 'quote', '"Take every risk, drop every fear"'), +(879, 202, '_quote', 'field_56f49930031b6'), +(880, 202, 'website_portfolio_link', ''), +(881, 202, '_website_portfolio_link', 'field_56f499ee031b7'), +(882, 202, 'linkedin', 'linkedin.com/in/CareyVo'), +(883, 202, '_linkedin', 'field_570713ed7aa91'), +(884, 200, 'email', 'carey.vo@gmail.com'), +(885, 200, '_email', 'field_56f4983c031b3'), +(886, 200, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(887, 200, '_major_concentration', 'field_56f4986c031b4'), +(888, 200, 'hometown', 'Bridgeport, CT '), +(889, 200, '_hometown', 'field_56f498da031b5'), +(890, 200, 'quote', '"Take every risk, drop every fear"'), +(891, 200, '_quote', 'field_56f49930031b6'), +(892, 200, 'website_portfolio_link', ''), +(893, 200, '_website_portfolio_link', 'field_56f499ee031b7'), +(894, 200, 'linkedin', 'linkedin.com/in/CareyVo'), +(895, 200, '_linkedin', 'field_570713ed7aa91'), +(896, 203, '_edit_lock', '1461272146:4'), +(897, 203, '_edit_last', '4'), +(898, 204, 'email', 'caitlyn.duquette@uconn.edu'), +(899, 204, '_email', 'field_56f4983c031b3'), +(900, 204, 'major_concentration', 'a:1:{i:0;s:10:"Undeclared";}'), +(901, 204, '_major_concentration', 'field_56f4986c031b4'), +(902, 204, 'hometown', ''), +(903, 204, '_hometown', 'field_56f498da031b5'), +(904, 204, 'quote', ''), +(905, 204, '_quote', 'field_56f49930031b6'), +(906, 204, 'website_portfolio_link', ''), +(907, 204, '_website_portfolio_link', 'field_56f499ee031b7'), +(908, 204, 'linkedin', ''), +(909, 204, '_linkedin', 'field_570713ed7aa91'), +(910, 203, 'email', 'caitlyn.duquette@uconn.edu'), +(911, 203, '_email', 'field_56f4983c031b3'), +(912, 203, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(913, 203, '_major_concentration', 'field_56f4986c031b4'), +(914, 203, 'hometown', 'Woodstock, CT'), +(915, 203, '_hometown', 'field_56f498da031b5'), +(916, 203, 'quote', '"You are not limited to only what you have been able to do before." Tom Kelley'), +(917, 203, '_quote', 'field_56f49930031b6'), +(918, 203, 'website_portfolio_link', ''), +(919, 203, '_website_portfolio_link', 'field_56f499ee031b7'), +(920, 203, 'linkedin', 'https://www.linkedin.com/in/caitlynduquette'), +(921, 203, '_linkedin', 'field_570713ed7aa91'), +(922, 205, 'email', 'michael.rivera@uconn.edu'), +(923, 205, '_email', 'field_56f4983c031b3'), +(924, 205, 'major_concentration', 'a:1:{i:0;s:24:"Web Design & Development";}'), +(925, 205, '_major_concentration', 'field_56f4986c031b4'), +(926, 205, 'hometown', 'New Haven, CT'), +(927, 205, '_hometown', 'field_56f498da031b5'), +(928, 205, 'quote', '"Live Your Truth so nobody can use your truth against you."'), +(929, 205, '_quote', 'field_56f49930031b6'), +(930, 205, 'website_portfolio_link', ''), +(931, 205, '_website_portfolio_link', 'field_56f499ee031b7'), +(932, 205, 'linkedin', ''), +(933, 205, '_linkedin', 'field_570713ed7aa91'), +(934, 203, '_thumbnail_id', '131'), +(935, 207, 'email', 'caitlyn.duquette@uconn.edu'), +(936, 207, '_email', 'field_56f4983c031b3'), +(937, 207, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(938, 207, '_major_concentration', 'field_56f4986c031b4'), +(939, 207, 'hometown', 'Woodstock, CT'), +(940, 207, '_hometown', 'field_56f498da031b5'), +(941, 207, 'quote', '"You are not limited to only what you have been able to do before." Tom Kelley'), +(942, 207, '_quote', 'field_56f49930031b6'), +(943, 207, 'website_portfolio_link', ''), +(944, 207, '_website_portfolio_link', 'field_56f499ee031b7'), +(945, 207, 'linkedin', 'https://www.linkedin.com/in/caitlynduquette'), +(946, 207, '_linkedin', 'field_570713ed7aa91'), +(947, 209, '_edit_lock', '1461272345:4'), +(948, 209, '_edit_last', '4'), +(949, 209, '_thumbnail_id', '147'), +(950, 210, 'email', 'michael.ell@uconn.edu'), +(951, 210, '_email', 'field_56f4983c031b3'), +(952, 210, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(953, 210, '_major_concentration', 'field_56f4986c031b4'), +(954, 210, 'hometown', 'Trumbull, CT'), +(955, 210, '_hometown', 'field_56f498da031b5'), +(956, 210, 'quote', ''), +(957, 210, '_quote', 'field_56f49930031b6'), +(958, 210, 'website_portfolio_link', 'michaelell.com'), +(959, 210, '_website_portfolio_link', 'field_56f499ee031b7'), +(960, 210, 'linkedin', ''), +(961, 210, '_linkedin', 'field_570713ed7aa91'), +(962, 209, 'email', 'michael.ell@uconn.edu'), +(963, 209, '_email', 'field_56f4983c031b3'), +(964, 209, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(965, 209, '_major_concentration', 'field_56f4986c031b4'), +(966, 209, 'hometown', 'Trumbull, CT'), +(967, 209, '_hometown', 'field_56f498da031b5'), +(968, 209, 'quote', ''), +(969, 209, '_quote', 'field_56f49930031b6'), +(970, 209, 'website_portfolio_link', 'michaelell.com'), +(971, 209, '_website_portfolio_link', 'field_56f499ee031b7'), +(972, 209, 'linkedin', ''), +(973, 209, '_linkedin', 'field_570713ed7aa91'), +(974, 211, '_edit_lock', '1461272913:4'), +(975, 211, '_edit_last', '4'), +(976, 212, 'email', 'samantha.mairson@uconn.edu'), +(977, 212, '_email', 'field_56f4983c031b3'), +(978, 212, 'major_concentration', 'a:1:{i:0;s:18:"Digital Humanities";}'), +(979, 212, '_major_concentration', 'field_56f4986c031b4'), +(980, 212, 'hometown', 'Tolland, CT'), +(981, 212, '_hometown', 'field_56f498da031b5'), +(982, 212, 'quote', '"The world no longer cares about what you know, it cares about what you can do with what you know." - Tony Wagner'), +(983, 212, '_quote', 'field_56f49930031b6'), +(984, 212, 'website_portfolio_link', ''), +(985, 212, '_website_portfolio_link', 'field_56f499ee031b7'), +(986, 212, 'linkedin', 'HTTPS://www.linkedin.com/in/Samantha-Mairson-b5065683'), +(987, 212, '_linkedin', 'field_570713ed7aa91'), +(988, 211, 'email', 'samantha.mairson@uconn.edu'), +(989, 211, '_email', 'field_56f4983c031b3'), +(990, 211, 'major_concentration', 'a:1:{i:0;s:18:"Digital Humanities";}'), +(991, 211, '_major_concentration', 'field_56f4986c031b4'), +(992, 211, 'hometown', 'Tolland, CT'), +(993, 211, '_hometown', 'field_56f498da031b5'), +(994, 211, 'quote', '"The world no longer cares about what you know, it cares about what you can do with what you know." - Tony Wagner'), +(995, 211, '_quote', 'field_56f49930031b6'), +(996, 211, 'website_portfolio_link', ''), +(997, 211, '_website_portfolio_link', 'field_56f499ee031b7'), +(998, 211, 'linkedin', 'HTTPS://www.linkedin.com/in/Samantha-Mairson-b5065683'), +(999, 211, '_linkedin', 'field_570713ed7aa91'), +(1000, 213, '_edit_lock', '1461272904:4'), +(1001, 214, '_edit_lock', '1461273269:4'), +(1002, 214, '_edit_last', '4'), +(1003, 215, 'email', 'brianna.ricciardone@uconn.edu'), +(1004, 215, '_email', 'field_56f4983c031b3'), +(1005, 215, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(1006, 215, '_major_concentration', 'field_56f4986c031b4'), +(1007, 215, 'hometown', 'Tolland, CT'), +(1008, 215, '_hometown', 'field_56f498da031b5'), +(1009, 215, 'quote', '"Sleep is for the weak."'), +(1010, 215, '_quote', 'field_56f49930031b6'), +(1011, 215, 'website_portfolio_link', 'http://briannaricciardone.com/'), +(1012, 215, '_website_portfolio_link', 'field_56f499ee031b7'), +(1013, 215, 'linkedin', 'https://www.linkedin.com/in/briannaricciardone'), +(1014, 215, '_linkedin', 'field_570713ed7aa91'), +(1015, 214, 'email', 'brianna.ricciardone@uconn.edu'), +(1016, 214, '_email', 'field_56f4983c031b3'), +(1017, 214, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(1018, 214, '_major_concentration', 'field_56f4986c031b4'), +(1019, 214, 'hometown', 'Tolland, CT'), +(1020, 214, '_hometown', 'field_56f498da031b5'), +(1021, 214, 'quote', '"Sleep is for the weak."'), +(1022, 214, '_quote', 'field_56f49930031b6'), +(1023, 214, 'website_portfolio_link', 'http://briannaricciardone.com/'), +(1024, 214, '_website_portfolio_link', 'field_56f499ee031b7'), +(1025, 214, 'linkedin', 'https://www.linkedin.com/in/briannaricciardone'), +(1026, 214, '_linkedin', 'field_570713ed7aa91'), +(1027, 216, '_edit_lock', '1461274165:4'), +(1028, 216, '_edit_last', '4'); +INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES +(1039, 218, '_edit_lock', '1461273947:4'), +(1040, 218, '_edit_last', '4'), +(1041, 218, '_thumbnail_id', '163'), +(1042, 219, 'email', 'michelle.marquez@uconn.edu'), +(1043, 219, '_email', 'field_56f4983c031b3'), +(1044, 219, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(1045, 219, '_major_concentration', 'field_56f4986c031b4'), +(1046, 219, 'hometown', 'West Hartford, CT'), +(1047, 219, '_hometown', 'field_56f498da031b5'), +(1048, 219, 'quote', ''), +(1049, 219, '_quote', 'field_56f49930031b6'), +(1050, 219, 'website_portfolio_link', ''), +(1051, 219, '_website_portfolio_link', 'field_56f499ee031b7'), +(1052, 219, 'linkedin', ''), +(1053, 219, '_linkedin', 'field_570713ed7aa91'), +(1054, 218, 'email', 'michelle.marquez@uconn.edu'), +(1055, 218, '_email', 'field_56f4983c031b3'), +(1056, 218, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(1057, 218, '_major_concentration', 'field_56f4986c031b4'), +(1058, 218, 'hometown', 'West Hartford, CT'), +(1059, 218, '_hometown', 'field_56f498da031b5'), +(1060, 218, 'quote', ''), +(1061, 218, '_quote', 'field_56f49930031b6'), +(1062, 218, 'website_portfolio_link', ''), +(1063, 218, '_website_portfolio_link', 'field_56f499ee031b7'), +(1064, 218, 'linkedin', ''), +(1065, 218, '_linkedin', 'field_570713ed7aa91'), +(1066, 220, '_edit_lock', '1461274080:4'), +(1067, 221, 'email', 'aaron.seitz@uconn.edu'), +(1068, 221, '_email', 'field_56f4983c031b3'), +(1069, 221, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(1070, 221, '_major_concentration', 'field_56f4986c031b4'), +(1071, 221, 'hometown', 'Hillsborough, NJ'), +(1072, 221, '_hometown', 'field_56f498da031b5'), +(1073, 221, 'quote', '"Shoot for the moon, if you miss you will land among the stars"'), +(1074, 221, '_quote', 'field_56f49930031b6'), +(1075, 221, 'website_portfolio_link', 'http://aaronseitz.wix.com/aaron-seitz'), +(1076, 221, '_website_portfolio_link', 'field_56f499ee031b7'), +(1077, 221, 'linkedin', ''), +(1078, 221, '_linkedin', 'field_570713ed7aa91'), +(1079, 216, 'email', 'aaron.seitz@uconn.edu'), +(1080, 216, '_email', 'field_56f4983c031b3'), +(1081, 216, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(1082, 216, '_major_concentration', 'field_56f4986c031b4'), +(1083, 216, 'hometown', 'Hillsborough, NJ'), +(1084, 216, '_hometown', 'field_56f498da031b5'), +(1085, 216, 'quote', '"Shoot for the moon, if you miss you will land among the stars"'), +(1086, 216, '_quote', 'field_56f49930031b6'), +(1087, 216, 'website_portfolio_link', 'http://aaronseitz.wix.com/aaron-seitz'), +(1088, 216, '_website_portfolio_link', 'field_56f499ee031b7'), +(1089, 216, 'linkedin', ''), +(1090, 216, '_linkedin', 'field_570713ed7aa91'), +(1091, 222, '_edit_lock', '1461274357:4'), +(1092, 222, '_thumbnail_id', '129'), +(1093, 222, '_edit_last', '4'), +(1094, 223, 'email', 'caitlin.liang@uconn.edu'), +(1095, 223, '_email', 'field_56f4983c031b3'), +(1096, 223, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(1097, 223, '_major_concentration', 'field_56f4986c031b4'), +(1098, 223, 'hometown', 'Avon, CT'), +(1099, 223, '_hometown', 'field_56f498da031b5'), +(1100, 223, 'quote', '"If we wait until we''re ready, we''ll be waiting for the rest of our lives"'), +(1101, 223, '_quote', 'field_56f49930031b6'), +(1102, 223, 'website_portfolio_link', ''), +(1103, 223, '_website_portfolio_link', 'field_56f499ee031b7'), +(1104, 223, 'linkedin', ''), +(1105, 223, '_linkedin', 'field_570713ed7aa91'), +(1106, 222, 'email', 'caitlin.liang@uconn.edu'), +(1107, 222, '_email', 'field_56f4983c031b3'), +(1108, 222, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(1109, 222, '_major_concentration', 'field_56f4986c031b4'), +(1110, 222, 'hometown', 'Avon, CT'), +(1111, 222, '_hometown', 'field_56f498da031b5'), +(1112, 222, 'quote', '"If we wait until we''re ready, we''ll be waiting for the rest of our lives"'), +(1113, 222, '_quote', 'field_56f49930031b6'), +(1114, 222, 'website_portfolio_link', ''), +(1115, 222, '_website_portfolio_link', 'field_56f499ee031b7'), +(1116, 222, 'linkedin', ''), +(1117, 222, '_linkedin', 'field_570713ed7aa91'), +(1118, 224, '_edit_lock', '1461274653:4'), +(1119, 224, '_edit_last', '4'), +(1120, 224, '_thumbnail_id', '160'), +(1121, 225, 'email', 'mark.ciccone@uconn.edu'), +(1122, 225, '_email', 'field_56f4983c031b3'), +(1123, 225, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(1124, 225, '_major_concentration', 'field_56f4986c031b4'), +(1125, 225, 'hometown', 'Norwich, CT'), +(1126, 225, '_hometown', 'field_56f498da031b5'), +(1127, 225, 'quote', '"Work Hard, Be Kind & Professional"'), +(1128, 225, '_quote', 'field_56f49930031b6'), +(1129, 225, 'website_portfolio_link', ''), +(1130, 225, '_website_portfolio_link', 'field_56f499ee031b7'), +(1131, 225, 'linkedin', ''), +(1132, 225, '_linkedin', 'field_570713ed7aa91'), +(1133, 224, 'email', 'mark.ciccone@uconn.edu'), +(1134, 224, '_email', 'field_56f4983c031b3'), +(1135, 224, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(1136, 224, '_major_concentration', 'field_56f4986c031b4'), +(1137, 224, 'hometown', 'Norwich, CT'), +(1138, 224, '_hometown', 'field_56f498da031b5'), +(1139, 224, 'quote', '"Work Hard, Be Kind & Professional"'), +(1140, 224, '_quote', 'field_56f49930031b6'), +(1141, 224, 'website_portfolio_link', ''), +(1142, 224, '_website_portfolio_link', 'field_56f499ee031b7'), +(1143, 224, 'linkedin', ''), +(1144, 224, '_linkedin', 'field_570713ed7aa91'), +(1145, 226, '_edit_lock', '1461274933:4'), +(1146, 226, '_thumbnail_id', '141'), +(1147, 226, '_edit_last', '4'), +(1148, 227, 'email', 'anthony.petrozza@uconn.edu'), +(1149, 227, '_email', 'field_56f4983c031b3'), +(1150, 227, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(1151, 227, '_major_concentration', 'field_56f4986c031b4'), +(1152, 227, 'hometown', 'North Andover, MA'), +(1153, 227, '_hometown', 'field_56f498da031b5'), +(1154, 227, 'quote', ''), +(1155, 227, '_quote', 'field_56f49930031b6'), +(1156, 227, 'website_portfolio_link', ''), +(1157, 227, '_website_portfolio_link', 'field_56f499ee031b7'), +(1158, 227, 'linkedin', 'https://www.linkedin.com/in/anthony-petrozza-a98896114'), +(1159, 227, '_linkedin', 'field_570713ed7aa91'), +(1160, 226, 'email', 'anthony.petrozza@uconn.edu'), +(1161, 226, '_email', 'field_56f4983c031b3'), +(1162, 226, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(1163, 226, '_major_concentration', 'field_56f4986c031b4'), +(1164, 226, 'hometown', 'North Andover, MA'), +(1165, 226, '_hometown', 'field_56f498da031b5'), +(1166, 226, 'quote', ''), +(1167, 226, '_quote', 'field_56f49930031b6'), +(1168, 226, 'website_portfolio_link', ''), +(1169, 226, '_website_portfolio_link', 'field_56f499ee031b7'), +(1170, 226, 'linkedin', 'https://www.linkedin.com/in/anthony-petrozza-a98896114'), +(1171, 226, '_linkedin', 'field_570713ed7aa91'), +(1172, 228, '_edit_lock', '1461275228:4'), +(1173, 228, '_edit_last', '4'), +(1174, 229, 'email', 'matthew.mendonca@uconn.edu'), +(1175, 229, '_email', 'field_56f4983c031b3'), +(1176, 229, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(1177, 229, '_major_concentration', 'field_56f4986c031b4'), +(1178, 229, 'hometown', 'Cheshire, CT'), +(1179, 229, '_hometown', 'field_56f498da031b5'), +(1180, 229, 'quote', '"A problem is a chance for you to do your best." - Duke Ellington'), +(1181, 229, '_quote', 'field_56f49930031b6'), +(1182, 229, 'website_portfolio_link', 'http://webdesign.digitalmediauconn.org/fall15/mem12024/portfolio/'), +(1183, 229, '_website_portfolio_link', 'field_56f499ee031b7'), +(1184, 229, 'linkedin', ''), +(1185, 229, '_linkedin', 'field_570713ed7aa91'), +(1186, 228, 'email', 'matthew.mendonca@uconn.edu'), +(1187, 228, '_email', 'field_56f4983c031b3'), +(1188, 228, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(1189, 228, '_major_concentration', 'field_56f4986c031b4'), +(1190, 228, 'hometown', 'Cheshire, CT'), +(1191, 228, '_hometown', 'field_56f498da031b5'), +(1192, 228, 'quote', '"A problem is a chance for you to do your best." - Duke Ellington'), +(1193, 228, '_quote', 'field_56f49930031b6'), +(1194, 228, 'website_portfolio_link', 'http://webdesign.digitalmediauconn.org/fall15/mem12024/portfolio/'), +(1195, 228, '_website_portfolio_link', 'field_56f499ee031b7'), +(1196, 228, 'linkedin', ''), +(1197, 228, '_linkedin', 'field_570713ed7aa91'), +(1198, 230, '_edit_lock', '1461275359:4'), +(1199, 231, '_edit_lock', '1461275379:4'), +(1200, 231, '_edit_last', '4'), +(1201, 231, '_thumbnail_id', '133'), +(1202, 232, 'email', 'daniel.scinto@uconn.edu'), +(1203, 232, '_email', 'field_56f4983c031b3'), +(1204, 232, 'major_concentration', 'a:1:{i:0;s:28:"3D Animation & Visualization";}'), +(1205, 232, '_major_concentration', 'field_56f4986c031b4'), +(1206, 232, 'hometown', 'Monroe, CT'), +(1207, 232, '_hometown', 'field_56f498da031b5'), +(1208, 232, 'quote', '“What, if some day or night a demon were to steal after you into your loneliest loneliness and say to you: ''This life as you now live it and have lived it, you will have to live once more and innumerable times more'' ... Would you not throw yourself down and gnash your teeth and curse the demon who spoke thus? Or have you once experienced a tremendous moment when you would have answered him: ''You are a god and never have I heard anything more divine.” -Friedrich Nietzsche'), +(1209, 232, '_quote', 'field_56f49930031b6'), +(1210, 232, 'website_portfolio_link', ''), +(1211, 232, '_website_portfolio_link', 'field_56f499ee031b7'), +(1212, 232, 'linkedin', ''), +(1213, 232, '_linkedin', 'field_570713ed7aa91'), +(1214, 231, 'email', 'daniel.scinto@uconn.edu'), +(1215, 231, '_email', 'field_56f4983c031b3'), +(1216, 231, 'major_concentration', 'a:1:{i:0;s:28:"3D Animation & Visualization";}'), +(1217, 231, '_major_concentration', 'field_56f4986c031b4'), +(1218, 231, 'hometown', 'Monroe, CT'), +(1219, 231, '_hometown', 'field_56f498da031b5'), +(1220, 231, 'quote', '“What, if some day or night a demon were to steal after you into your loneliest loneliness and say to you: ''This life as you now live it and have lived it, you will have to live once more and innumerable times more'' ... Would you not throw yourself down and gnash your teeth and curse the demon who spoke thus? Or have you once experienced a tremendous moment when you would have answered him: ''You are a god and never have I heard anything more divine.” -Friedrich Nietzsche'), +(1221, 231, '_quote', 'field_56f49930031b6'), +(1222, 231, 'website_portfolio_link', ''), +(1223, 231, '_website_portfolio_link', 'field_56f499ee031b7'), +(1224, 231, 'linkedin', ''), +(1225, 231, '_linkedin', 'field_570713ed7aa91'), +(1226, 233, '_edit_lock', '1461275519:4'), +(1227, 233, '_edit_last', '4'), +(1228, 233, '_thumbnail_id', '155'), +(1229, 234, 'email', 'kathleen.bengston@uconn.edu'), +(1230, 234, '_email', 'field_56f4983c031b3'), +(1231, 234, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(1232, 234, '_major_concentration', 'field_56f4986c031b4'), +(1233, 234, 'hometown', 'Deep River, CT'), +(1234, 234, '_hometown', 'field_56f498da031b5'), +(1235, 234, 'quote', ''), +(1236, 234, '_quote', 'field_56f49930031b6'), +(1237, 234, 'website_portfolio_link', ''), +(1238, 234, '_website_portfolio_link', 'field_56f499ee031b7'), +(1239, 234, 'linkedin', ''), +(1240, 234, '_linkedin', 'field_570713ed7aa91'), +(1241, 233, 'email', 'kathleen.bengston@uconn.edu'), +(1242, 233, '_email', 'field_56f4983c031b3'), +(1243, 233, 'major_concentration', 'a:1:{i:0;s:37:"Digital Media Strategies for Business";}'), +(1244, 233, '_major_concentration', 'field_56f4986c031b4'), +(1245, 233, 'hometown', 'Deep River, CT'), +(1246, 233, '_hometown', 'field_56f498da031b5'), +(1247, 233, 'quote', ''), +(1248, 233, '_quote', 'field_56f49930031b6'), +(1249, 233, 'website_portfolio_link', ''), +(1250, 233, '_website_portfolio_link', 'field_56f499ee031b7'), +(1251, 233, 'linkedin', ''), +(1252, 233, '_linkedin', 'field_570713ed7aa91'), +(1253, 235, '_edit_lock', '1461275747:4'), +(1254, 235, '_edit_last', '4'), +(1255, 236, 'email', 'tyler.malboeuf@uconn.edu'), +(1256, 236, '_email', 'field_56f4983c031b3'), +(1257, 236, 'major_concentration', 'a:2:{i:0;s:24:"Web Design & Development";i:1;s:37:"Digital Media Strategies for Business";}'), +(1258, 236, '_major_concentration', 'field_56f4986c031b4'), +(1259, 236, 'hometown', 'Woodstock, CT'), +(1260, 236, '_hometown', 'field_56f498da031b5'), +(1261, 236, 'quote', ''), +(1262, 236, '_quote', 'field_56f49930031b6'), +(1263, 236, 'website_portfolio_link', 'tylermalboeuf.com'), +(1264, 236, '_website_portfolio_link', 'field_56f499ee031b7'), +(1265, 236, 'linkedin', ''), +(1266, 236, '_linkedin', 'field_570713ed7aa91'), +(1267, 235, 'email', 'tyler.malboeuf@uconn.edu'), +(1268, 235, '_email', 'field_56f4983c031b3'), +(1269, 235, 'major_concentration', 'a:2:{i:0;s:24:"Web Design & Development";i:1;s:37:"Digital Media Strategies for Business";}'), +(1270, 235, '_major_concentration', 'field_56f4986c031b4'), +(1271, 235, 'hometown', 'Woodstock, CT'), +(1272, 235, '_hometown', 'field_56f498da031b5'), +(1273, 235, 'quote', ''), +(1274, 235, '_quote', 'field_56f49930031b6'), +(1275, 235, 'website_portfolio_link', 'tylermalboeuf.com'), +(1276, 235, '_website_portfolio_link', 'field_56f499ee031b7'), +(1277, 235, 'linkedin', ''), +(1278, 235, '_linkedin', 'field_570713ed7aa91'), +(1279, 237, '_edit_lock', '1461276148:4'), +(1280, 237, '_edit_last', '4'), +(1281, 237, '_thumbnail_id', '175'), +(1282, 238, 'email', 'jeremy.cervone@uconn.edu'), +(1283, 238, '_email', 'field_56f4983c031b3'), +(1284, 238, 'major_concentration', 'a:1:{i:0;s:33:"Digital Game Design & Development";}'), +(1285, 238, '_major_concentration', 'field_56f4986c031b4'), +(1286, 238, 'hometown', 'Shelton, CT'), +(1287, 238, '_hometown', 'field_56f498da031b5'), +(1288, 238, 'quote', ''), +(1289, 238, '_quote', 'field_56f49930031b6'), +(1290, 238, 'website_portfolio_link', '"Reality is a great place to be, but I wouldn''t want to live there"'), +(1291, 238, '_website_portfolio_link', 'field_56f499ee031b7'), +(1292, 238, 'linkedin', ''), +(1293, 238, '_linkedin', 'field_570713ed7aa91'), +(1294, 237, 'email', 'jeremy.cervone@uconn.edu'), +(1295, 237, '_email', 'field_56f4983c031b3'), +(1296, 237, 'major_concentration', 'a:1:{i:0;s:33:"Digital Game Design & Development";}'), +(1297, 237, '_major_concentration', 'field_56f4986c031b4'), +(1298, 237, 'hometown', 'Shelton, CT'), +(1299, 237, '_hometown', 'field_56f498da031b5'), +(1300, 237, 'quote', ''), +(1301, 237, '_quote', 'field_56f49930031b6'), +(1302, 237, 'website_portfolio_link', '"Reality is a great place to be, but I wouldn''t want to live there"'), +(1303, 237, '_website_portfolio_link', 'field_56f499ee031b7'), +(1304, 237, 'linkedin', ''), +(1305, 237, '_linkedin', 'field_570713ed7aa91'), +(1306, 239, '_edit_lock', '1461276140:4'), +(1307, 239, '_edit_last', '4'), +(1308, 240, 'email', 'jamie.buck@uconn.edu'), +(1309, 240, '_email', 'field_56f4983c031b3'), +(1310, 240, 'major_concentration', 'a:1:{i:0;s:24:"Web Design & Development";}'), +(1311, 240, '_major_concentration', 'field_56f4986c031b4'), +(1312, 240, 'hometown', 'Framingham, MA'), +(1313, 240, '_hometown', 'field_56f498da031b5'), +(1314, 240, 'quote', ''), +(1315, 240, '_quote', 'field_56f49930031b6'), +(1316, 240, 'website_portfolio_link', 'https://www.jamiewbuck.com'), +(1317, 240, '_website_portfolio_link', 'field_56f499ee031b7'), +(1318, 240, 'linkedin', 'https://www.linkedin.com/in/jamiewbuck'), +(1319, 240, '_linkedin', 'field_570713ed7aa91'), +(1320, 239, 'email', 'jamie.buck@uconn.edu'), +(1321, 239, '_email', 'field_56f4983c031b3'), +(1322, 239, 'major_concentration', 'a:1:{i:0;s:24:"Web Design & Development";}'), +(1323, 239, '_major_concentration', 'field_56f4986c031b4'), +(1324, 239, 'hometown', 'Framingham, MA'), +(1325, 239, '_hometown', 'field_56f498da031b5'), +(1326, 239, 'quote', ''), +(1327, 239, '_quote', 'field_56f49930031b6'), +(1328, 239, 'website_portfolio_link', 'https://www.jamiewbuck.com'), +(1329, 239, '_website_portfolio_link', 'field_56f499ee031b7'), +(1330, 239, 'linkedin', 'https://www.linkedin.com/in/jamiewbuck'), +(1331, 239, '_linkedin', 'field_570713ed7aa91'), +(1332, 242, '_edit_lock', '1461276354:4'), +(1333, 242, '_thumbnail_id', '130'), +(1334, 242, '_edit_last', '4'), +(1335, 243, 'email', 'carlota.charles@uconn.edu'), +(1336, 243, '_email', 'field_56f4983c031b3'), +(1337, 243, 'major_concentration', 'a:1:{i:0;s:24:"Web Design & Development";}'), +(1338, 243, '_major_concentration', 'field_56f4986c031b4'), +(1339, 243, 'hometown', 'Bethel, CT'), +(1340, 243, '_hometown', 'field_56f498da031b5'), +(1341, 243, 'quote', '"I can''t change the direction of the wind, but I can adjust my sails to always reach my destination."'), +(1342, 243, '_quote', 'field_56f49930031b6'), +(1343, 243, 'website_portfolio_link', ''), +(1344, 243, '_website_portfolio_link', 'field_56f499ee031b7'), +(1345, 243, 'linkedin', 'https://www.linkedin.com/in/carlota-charles-026209116?trk=nav_responsive_tab_profile_pic'), +(1346, 243, '_linkedin', 'field_570713ed7aa91'), +(1347, 242, 'email', 'carlota.charles@uconn.edu'), +(1348, 242, '_email', 'field_56f4983c031b3'), +(1349, 242, 'major_concentration', 'a:1:{i:0;s:24:"Web Design & Development";}'), +(1350, 242, '_major_concentration', 'field_56f4986c031b4'), +(1351, 242, 'hometown', 'Bethel, CT'), +(1352, 242, '_hometown', 'field_56f498da031b5'), +(1353, 242, 'quote', '"I can''t change the direction of the wind, but I can adjust my sails to always reach my destination."'), +(1354, 242, '_quote', 'field_56f49930031b6'), +(1355, 242, 'website_portfolio_link', ''), +(1356, 242, '_website_portfolio_link', 'field_56f499ee031b7'), +(1357, 242, 'linkedin', 'https://www.linkedin.com/in/carlota-charles-026209116?trk=nav_responsive_tab_profile_pic'), +(1358, 242, '_linkedin', 'field_570713ed7aa91'), +(1359, 244, '_edit_lock', '1461276559:4'), +(1360, 244, '_edit_last', '4'), +(1362, 245, 'email', 'andrew.wolf@uconn.edu'), +(1363, 245, '_email', 'field_56f4983c031b3'), +(1364, 245, 'major_concentration', 'a:1:{i:0;s:24:"Web Design & Development";}'), +(1365, 245, '_major_concentration', 'field_56f4986c031b4'), +(1366, 245, 'hometown', 'Greenwich, CT'), +(1367, 245, '_hometown', 'field_56f498da031b5'), +(1368, 245, 'quote', ''), +(1369, 245, '_quote', 'field_56f49930031b6'), +(1370, 245, 'website_portfolio_link', 'wolfandrew.com'), +(1371, 245, '_website_portfolio_link', 'field_56f499ee031b7'), +(1372, 245, 'linkedin', 'https://www.linkedin.com/in/andrew-wolf-2044b311a'), +(1373, 245, '_linkedin', 'field_570713ed7aa91'), +(1374, 244, 'email', 'andrew.wolf@uconn.edu'), +(1375, 244, '_email', 'field_56f4983c031b3'), +(1376, 244, 'major_concentration', 'a:1:{i:0;s:24:"Web Design & Development";}'), +(1377, 244, '_major_concentration', 'field_56f4986c031b4'), +(1378, 244, 'hometown', 'Greenwich, CT'), +(1379, 244, '_hometown', 'field_56f498da031b5'), +(1380, 244, 'quote', ''), +(1381, 244, '_quote', 'field_56f49930031b6'), +(1382, 244, 'website_portfolio_link', 'wolfandrew.com'), +(1383, 244, '_website_portfolio_link', 'field_56f499ee031b7'), +(1384, 244, 'linkedin', 'https://www.linkedin.com/in/andrew-wolf-2044b311a'), +(1385, 244, '_linkedin', 'field_570713ed7aa91'), +(1386, 244, '_thumbnail_id', '161'), +(1387, 247, '_edit_lock', '1461276836:4'), +(1388, 247, '_edit_last', '4'), +(1389, 247, '_thumbnail_id', '146'), +(1390, 248, 'email', 'nicolas.panasci@uconn.edu'), +(1391, 248, '_email', 'field_56f4983c031b3'), +(1392, 248, 'major_concentration', 'a:1:{i:0;s:32:"2D Animation and Motion Graphics";}'), +(1393, 248, '_major_concentration', 'field_56f4986c031b4'), +(1394, 248, 'hometown', 'Boston, MA'), +(1395, 248, '_hometown', 'field_56f498da031b5'), +(1396, 248, 'quote', '"A single person within a circumstance can move one to change, to love our self, to evolve." -Erykah Badu'), +(1397, 248, '_quote', 'field_56f49930031b6'), +(1398, 248, 'website_portfolio_link', ''), +(1399, 248, '_website_portfolio_link', 'field_56f499ee031b7'), +(1400, 248, 'linkedin', ''), +(1401, 248, '_linkedin', 'field_570713ed7aa91'), +(1402, 247, 'email', 'nicolas.panasci@uconn.edu'), +(1403, 247, '_email', 'field_56f4983c031b3'), +(1404, 247, 'major_concentration', 'a:1:{i:0;s:32:"2D Animation and Motion Graphics";}'), +(1405, 247, '_major_concentration', 'field_56f4986c031b4'), +(1406, 247, 'hometown', 'Boston, MA'), +(1407, 247, '_hometown', 'field_56f498da031b5'), +(1408, 247, 'quote', '"A single person within a circumstance can move one to change, to love our self, to evolve." -Erykah Badu'), +(1409, 247, '_quote', 'field_56f49930031b6'), +(1410, 247, 'website_portfolio_link', ''), +(1411, 247, '_website_portfolio_link', 'field_56f499ee031b7'), +(1412, 247, 'linkedin', ''), +(1413, 247, '_linkedin', 'field_570713ed7aa91'), +(1414, 250, 'email', 'bk@uconn.edu'), +(1415, 250, '_email', 'field_56f4983c031b3'), +(1416, 250, 'major_concentration', 'a:1:{i:0;s:24:"Web Design & Development";}'), +(1417, 250, '_major_concentration', 'field_56f4986c031b4'), +(1418, 250, 'hometown', 'Newington, CT'), +(1419, 250, '_hometown', 'field_56f498da031b5'), +(1420, 250, 'quote', '"If it isn''t on Google, it doesn''t exist." - Jimmy Wales'), +(1421, 250, '_quote', 'field_56f49930031b6'), +(1422, 250, 'website_portfolio_link', 'http://bkelleher.com/'), +(1423, 250, '_website_portfolio_link', 'field_56f499ee031b7'), +(1424, 250, 'linkedin', 'https://www.linkedin.com/in/briankelleher1'), +(1425, 250, '_linkedin', 'field_570713ed7aa91'), +(1426, 37, 'linkedin', 'https://www.linkedin.com/in/briankelleher1'), +(1427, 37, '_linkedin', 'field_570713ed7aa91'), +(1428, 251, '_edit_lock', '1461288778:4'), +(1429, 251, '_thumbnail_id', '148'), +(1430, 251, '_edit_last', '4'), +(1431, 252, 'email', 'rcglista@gmail.com'), +(1432, 252, '_email', 'field_56f4983c031b3'), +(1433, 252, 'major_concentration', 'a:1:{i:0;s:10:"Undeclared";}'), +(1434, 252, '_major_concentration', 'field_56f4986c031b4'), +(1435, 252, 'hometown', 'Storrs, CT'), +(1436, 252, '_hometown', 'field_56f498da031b5'), +(1437, 252, 'quote', ''), +(1438, 252, '_quote', 'field_56f49930031b6'), +(1439, 252, 'website_portfolio_link', 'https://youtu.be/fgq88tAdLYY'), +(1440, 252, '_website_portfolio_link', 'field_56f499ee031b7'), +(1441, 252, 'linkedin', 'https://www.linkedin.com/in/ryanglista'), +(1442, 252, '_linkedin', 'field_570713ed7aa91'), +(1443, 251, 'email', 'rcglista@gmail.com'), +(1444, 251, '_email', 'field_56f4983c031b3'), +(1445, 251, 'major_concentration', 'a:1:{i:0;s:10:"Undeclared";}'), +(1446, 251, '_major_concentration', 'field_56f4986c031b4'), +(1447, 251, 'hometown', 'Storrs, CT'), +(1448, 251, '_hometown', 'field_56f498da031b5'), +(1449, 251, 'quote', ''), +(1450, 251, '_quote', 'field_56f49930031b6'), +(1451, 251, 'website_portfolio_link', 'https://youtu.be/fgq88tAdLYY'), +(1452, 251, '_website_portfolio_link', 'field_56f499ee031b7'), +(1453, 251, 'linkedin', 'https://www.linkedin.com/in/ryanglista'), +(1454, 251, '_linkedin', 'field_570713ed7aa91'), +(1455, 253, '_edit_lock', '1461286290:4'), +(1456, 254, '_edit_lock', '1461288889:4'), +(1457, 254, '_edit_last', '4'), +(1458, 255, '_edit_lock', '1461288863:4'), +(1459, 257, 'email', 'alexander.loeung@gmail.com'), +(1460, 257, '_email', 'field_56f4983c031b3'), +(1461, 257, 'major_concentration', 'a:1:{i:0;s:33:"Digital Game Design & Development";}'), +(1462, 257, '_major_concentration', 'field_56f4986c031b4'), +(1463, 257, 'hometown', 'Brookfield, CT'), +(1464, 257, '_hometown', 'field_56f498da031b5'), +(1465, 257, 'quote', ''), +(1466, 257, '_quote', 'field_56f49930031b6'), +(1467, 257, 'website_portfolio_link', ''), +(1468, 257, '_website_portfolio_link', 'field_56f499ee031b7'), +(1469, 257, 'linkedin', ''), +(1470, 257, '_linkedin', 'field_570713ed7aa91'), +(1471, 254, 'email', 'alexander.loeung@gmail.com'), +(1472, 254, '_email', 'field_56f4983c031b3'), +(1473, 254, 'major_concentration', 'a:1:{i:0;s:33:"Digital Game Design & Development";}'), +(1474, 254, '_major_concentration', 'field_56f4986c031b4'), +(1475, 254, 'hometown', 'Brookfield, CT'), +(1476, 254, '_hometown', 'field_56f498da031b5'), +(1477, 254, 'quote', ''), +(1478, 254, '_quote', 'field_56f49930031b6'), +(1479, 254, 'website_portfolio_link', ''), +(1480, 254, '_website_portfolio_link', 'field_56f499ee031b7'), +(1481, 254, 'linkedin', ''), +(1482, 254, '_linkedin', 'field_570713ed7aa91'), +(1483, 258, '_edit_lock', '1461289366:4'), +(1484, 258, '_edit_last', '4'), +(1485, 259, 'email', 'reissfelderh@gmail.com'), +(1486, 259, '_email', 'field_56f4983c031b3'), +(1487, 259, 'major_concentration', 'a:1:{i:0;s:10:"Undeclared";}'), +(1488, 259, '_major_concentration', 'field_56f4986c031b4'), +(1489, 259, 'hometown', 'Boston, MA'), +(1490, 259, '_hometown', 'field_56f498da031b5'), +(1491, 259, 'quote', '"Whenever I''m about to do something, I think, ''Would an Idiot do that?'' and if they would, I do not do that thing." '), +(1492, 259, '_quote', 'field_56f49930031b6'), +(1493, 259, 'website_portfolio_link', ''), +(1494, 259, '_website_portfolio_link', 'field_56f499ee031b7'), +(1495, 259, 'linkedin', 'https://www.linkedin.com/in/hayleyreissfelder'), +(1496, 259, '_linkedin', 'field_570713ed7aa91'), +(1497, 258, 'email', 'reissfelderh@gmail.com'), +(1498, 258, '_email', 'field_56f4983c031b3'), +(1499, 258, 'major_concentration', 'a:1:{i:0;s:10:"Undeclared";}'), +(1500, 258, '_major_concentration', 'field_56f4986c031b4'), +(1501, 258, 'hometown', 'Boston, MA'), +(1502, 258, '_hometown', 'field_56f498da031b5'), +(1503, 258, 'quote', '"Whenever I''m about to do something, I think, ''Would an Idiot do that?'' and if they would, I do not do that thing." '), +(1504, 258, '_quote', 'field_56f49930031b6'), +(1505, 258, 'website_portfolio_link', ''), +(1506, 258, '_website_portfolio_link', 'field_56f499ee031b7'), +(1507, 258, 'linkedin', 'https://www.linkedin.com/in/hayleyreissfelder'), +(1508, 258, '_linkedin', 'field_570713ed7aa91'); + +-- -------------------------------------------------------- + +-- +-- Table structure for 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 COLLATE utf8mb4_unicode_ci NOT NULL, + `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL, + `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL, + `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', + `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', + `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', + `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL, + `pinged` text COLLATE utf8mb4_unicode_ci 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 COLLATE utf8mb4_unicode_ci NOT NULL, + `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', + `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `menu_order` int(11) NOT NULL DEFAULT '0', + `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', + `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `comment_count` bigint(20) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`), + KEY `post_name` (`post_name`(191)), + 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=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=261 ; + +-- +-- Dumping data for 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 +(1, 2, '2016-02-13 22:20:57', '2016-02-13 22:20:57', 'Welcome to WordPress. This is your first post. Edit or delete it, then start writing!', 'Hello world!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2016-02-15 18:59:18', '2016-02-15 18:59:18', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?p=1', 0, 'post', '', 1), +(2, 1, '2016-02-13 22:20:57', '2016-02-13 22:20:57', 'This is an example page. It''s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n
Hi there! I''m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin'' caught in the rain.)
\n\n...or something like this:\n\n
The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!', 'Sample Page', '', 'publish', 'closed', 'open', '', 'sample-page', '', '', '2016-02-13 22:20:57', '2016-02-13 22:20:57', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?page_id=2', 0, 'page', '', 0), +(5, 2, '2016-02-15 18:59:18', '2016-02-15 18:59:18', 'Welcome to WordPress. This is your first post. Edit or delete it, then start writing!', 'Hello world!', '', 'inherit', 'closed', 'closed', '', '1-revision-v1', '', '', '2016-02-15 18:59:18', '2016-02-15 18:59:18', '', 1, 'http://ation.develop.digitalmediauconn.org/www/2016/02/15/1-revision-v1/', 0, 'revision', '', 0), +(6, 2, '2016-02-23 18:43:41', '2016-02-23 18:43:41', '', 'Work', '', 'publish', 'closed', 'closed', '', 'work', '', '', '2016-02-23 18:43:41', '2016-02-23 18:43:41', '', 0, 'http://192.168.33.60/?page_id=6', 0, 'page', '', 0), +(7, 2, '2016-02-23 18:43:41', '2016-02-23 18:43:41', '', 'Work', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2016-02-23 18:43:41', '2016-02-23 18:43:41', '', 6, 'http://192.168.33.60/2016/02/23/6-revision-v1/', 0, 'revision', '', 0), +(8, 2, '2016-02-23 18:43:51', '2016-02-23 18:43:51', '', 'Services', '', 'publish', 'closed', 'closed', '', 'services', '', '', '2016-02-23 18:43:51', '2016-02-23 18:43:51', '', 0, 'http://192.168.33.60/?page_id=8', 0, 'page', '', 0), +(9, 2, '2016-02-23 18:43:51', '2016-02-23 18:43:51', '', 'Services', '', 'inherit', 'closed', 'closed', '', '8-revision-v1', '', '', '2016-02-23 18:43:51', '2016-02-23 18:43:51', '', 8, 'http://192.168.33.60/2016/02/23/8-revision-v1/', 0, 'revision', '', 0), +(10, 2, '2016-02-23 18:44:04', '2016-02-23 18:44:04', '[cscf-contact-form]', 'Contact', '', 'publish', 'closed', 'closed', '', 'contact', '', '', '2016-03-31 14:39:48', '2016-03-31 18:39:48', '', 0, 'http://192.168.33.60/?page_id=10', 0, 'page', '', 0), +(11, 2, '2016-02-23 18:44:04', '2016-02-23 18:44:04', '', 'Contact', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2016-02-23 18:44:04', '2016-02-23 18:44:04', '', 10, 'http://192.168.33.60/2016/02/23/10-revision-v1/', 0, 'revision', '', 0), +(12, 2, '2016-02-23 18:44:16', '2016-02-23 18:44:16', '[vid_embed src="https://vimeo.com/112419554"]\r\n\r\n

The Mission

\r\n\r\nOur mission is to influence all generations through our values of collaboration, imagination, innovation, creation, and conversation. We engage diverse audiences by creating communication with a fresh perspective.\r\n\r\n

Who We Are

\r\n\r\nWe are a team who collaborate to fulfill a desire to create incredible things, big things, the next big thing. Our team members’ diverse and specialized skill sets allow us to innovate and imagine, producing a unique and effective campaign that will create conversation about your brand.\r\n\r\n

Why Choose Us

\r\n\r\nWith a sharp mind, diverse skill set, and a fresh perspective we specialize in grabbing the attention of the demographic that is hardest to reach, our own. We can establish and promote your brand across a wide variety of media and channels.', 'About', '', 'publish', 'closed', 'closed', '', 'about', '', '', '2016-03-25 11:29:26', '2016-03-25 15:29:26', '', 0, 'http://192.168.33.60/?page_id=12', 0, 'page', '', 0), +(13, 2, '2016-02-23 18:44:16', '2016-02-23 18:44:16', '', 'About', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2016-02-23 18:44:16', '2016-02-23 18:44:16', '', 12, 'http://192.168.33.60/2016/02/23/12-revision-v1/', 0, 'revision', '', 0), +(14, 2, '2016-02-23 18:44:58', '2016-02-23 18:44:58', ' ', '', '', 'publish', 'closed', 'closed', '', '14', '', '', '2016-02-23 18:48:21', '2016-02-23 18:48:21', '', 0, 'http://192.168.33.60/?p=14', 1, 'nav_menu_item', '', 0), +(15, 2, '2016-02-23 18:44:58', '2016-02-23 18:44:58', ' ', '', '', 'publish', 'closed', 'closed', '', '15', '', '', '2016-02-23 18:48:21', '2016-02-23 18:48:21', '', 0, 'http://192.168.33.60/?p=15', 2, 'nav_menu_item', '', 0), +(16, 2, '2016-02-23 18:44:58', '2016-02-23 18:44:58', ' ', '', '', 'publish', 'closed', 'closed', '', '16', '', '', '2016-02-23 18:48:21', '2016-02-23 18:48:21', '', 0, 'http://192.168.33.60/?p=16', 3, 'nav_menu_item', '', 0), +(17, 2, '2016-02-23 18:44:58', '2016-02-23 18:44:58', ' ', '', '', 'publish', 'closed', 'closed', '', '17', '', '', '2016-02-23 18:48:21', '2016-02-23 18:48:21', '', 0, 'http://192.168.33.60/?p=17', 4, 'nav_menu_item', '', 0), +(20, 2, '2016-03-03 14:38:27', '2016-03-03 14:38:27', 'About ATION.', 'About', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2016-03-03 14:38:27', '2016-03-03 14:38:27', '', 12, 'http://192.168.33.60/12-revision-v1/', 0, 'revision', '', 0), +(21, 2, '2016-03-03 09:49:05', '2016-03-03 14:49:05', 'About ATION.\r\n\r\n \r\n\r\nTons more content.\r\n\r\n \r\n\r\nBecause its awesome.\r\n\r\nI''m trying stuff out.\r\n\r\nPlz help.', 'About', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2016-03-03 09:49:05', '2016-03-03 14:49:05', '', 12, 'http://192.168.33.60/2016/03/03/12-revision-v1/', 0, 'revision', '', 0), +(22, 2, '2016-03-03 09:49:30', '2016-03-03 14:49:30', 'About ATION.\r\n\r\n \r\n\r\nTons more content.\r\n\r\n \r\n\r\nBecause its awesome.\r\n\r\nI''m trying stuff out.\r\n\r\nPlz help.\r\n\r\n \r\n\r\nNeed\r\n\r\na\r\n\r\nlot\r\n\r\nmore\r\n\r\ncontent\r\n\r\ndown\r\n\r\nhere.', 'About', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2016-03-03 09:49:30', '2016-03-03 14:49:30', '', 12, 'http://192.168.33.60/2016/03/03/12-revision-v1/', 0, 'revision', '', 0), +(23, 2, '2016-03-03 16:33:49', '2016-03-03 21:33:49', 'About ATION.\r\n\r\n \r\n\r\nTons more content.\r\n\r\n \r\n\r\nBecause its awesome.\r\n\r\nI''m trying stuff out.\r\n\r\nPlz help.\r\n\r\n \r\n\r\nNeed\r\n\r\na\r\n\r\nlot\r\n\r\nmore\r\n\r\ncontent\r\n\r\ndown\r\n\r\nhere.\r\n\r\n \r\n\r\nMeow\r\n\r\n \r\n\r\nMore COntent\r\n\r\n \r\n\r\n \r\n\r\nSo you have to scroll.\r\n\r\n \r\n\r\nDon''t mind this.\r\n\r\n \r\n\r\n \r\n\r\nIts nuts.', 'About', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2016-03-03 16:33:49', '2016-03-03 21:33:49', '', 12, 'http://ation.develop.digitalmediauconn.org/www/2016/03/03/12-revision-v1/', 0, 'revision', '', 0), +(25, 2, '2016-03-24 20:24:12', '2016-03-25 00:24:12', '[vid_embed src="https://vimeo.com/75316460"]\r\n\r\n-ATION loves to be on the cutting edge of things, so when vPC approached us to work on a project, we couldn’t help but be excited. vPC is a virtual computer lab that allows UConn students and faculty to access all kinds of handy software from anywhere in the world. It was an incredibly helpful service, yet no one on campus seemed to know about it despite vPC’s best efforts to spread the word.\r\n\r\nThe -ATION team had a clear goal when we took on this project: we wanted to build a less intimidating brand identity for vPC that would get more users from all schools logging into their SkyBox account. We developed a plan of action. The first item on our list was creating a new name. vPC sounded too technical and complex. We reimagined vPC as “Skybox by UConn”, gave them a new logo, and redesigned their website to match their fresh new name. Next, we created flyers, banners, and print advertisements. Through a combination of radio, television, and even public transportation, “Skybox” got across the main Storrs campus as well as the satellite campuses of the University of Connecticut and got people talking. To complete the package, we produced a video that showed new users all of the awesome things Skybox could do.\r\n\r\nOh, and we’re pleased to announce that… It worked! Usage of Skybox increased by over 50% in the first weeks after the launch, and we’re super excited to work with Skybox as it continues to grow!', 'Skybox', '', 'publish', 'closed', 'closed', '', 'skybox', '', '', '2016-04-03 16:05:21', '2016-04-03 20:05:21', '', 0, 'http://192.168.33.60/?post_type=project&p=25', 0, 'project', '', 0), +(26, 2, '2016-03-24 20:23:55', '2016-03-25 00:23:55', '', 'Skybox', '', 'inherit', 'closed', 'closed', '', 'skybox2', '', '', '2016-03-24 20:24:06', '2016-03-25 00:24:06', '', 25, 'http://192.168.33.60/wp-content/uploads/2016/03/skybox2.jpg', 0, 'attachment', 'image/jpeg', 0), +(27, 2, '2016-03-24 20:24:12', '2016-03-25 00:24:12', 'https://vimeo.com/75316460\r\n\r\n-ATION loves to be on the cutting edge of things, so when vPC approached us to work on a project, we couldn’t help but be excited. vPC is a virtual computer lab that allows UConn students and faculty to access all kinds of handy software from anywhere in the world. It was an incredibly helpful service, yet no one on campus seemed to know about it despite vPC’s best efforts to spread the word.\r\n\r\nThe -ATION team had a clear goal when we took on this project: we wanted to build a less intimidating brand identity for vPC that would get more users from all schools logging into their SkyBox account. We developed a plan of action. The first item on our list was creating a new name. vPC sounded too technical and complex. We reimagined vPC as “Skybox by UConn”, gave them a new logo, and redesigned their website to match their fresh new name. Next, we created flyers, banners, and print advertisements. Through a combination of radio, television, and even public transportation, “Skybox” got across the main Storrs campus as well as the satellite campuses of the University of Connecticut and got people talking. To complete the package, we produced a video that showed new users all of the awesome things Skybox could do.\r\n\r\nOh, and we’re pleased to announce that… It worked! Usage of Skybox increased by over 50% in the first weeks after the launch, and we’re super excited to work with Skybox as it continues to grow!', 'Skybox', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2016-03-24 20:24:12', '2016-03-25 00:24:12', '', 25, 'http://192.168.33.60/2016/03/24/25-revision-v1/', 0, 'revision', '', 0), +(28, 2, '2016-03-24 20:41:16', '2016-03-25 00:41:16', '[vid_embed src="https://vimeo.com/105377064"]\r\n\r\n

Mission Statement:

\r\n\r\nTo educate UConn students about information security in a fun, interactive way.\r\n\r\nHusky Hunt is an online and in-person game that educates you on information technology safety and security. This game involves answering questions online and receiving locations that will give you points and unlock more clues. Prizes include anything from gift cards to the UConn Co-Op and rewards from various businesses around the area. The best reward comes in the form knowledge about how to save you a lot of time and money in the future.\r\n\r\n-ATION was responsible for re-branding “Husky Hunt” in the Spring of 2014. A new logo and brand look where created, as well as posters, postcards and fliers driving students to the Husky Hunt game site. A promotional animated infographic was also created, showcasing the re-brand, explaining the rules of the Husky Hunt game and inspiring the community to participate online.', 'Husky Hunt', '', 'publish', 'closed', 'closed', '', 'husky-hunt', '', '', '2016-04-03 16:19:36', '2016-04-03 20:19:36', '', 0, 'http://192.168.33.60/?post_type=project&p=28', 0, 'project', '', 0), +(29, 2, '2016-03-24 20:41:16', '2016-03-25 00:41:16', '

Mission Statement:

\r\n\r\nTo educate UConn students about information security in a fun, interactive way.\r\n\r\nHusky Hunt is an online and in-person game that educates you on information technology safety and security. This game involves answering questions online and receiving locations that will give you points and unlock more clues. Prizes include anything from gift cards to the UConn Co-Op and rewards from various businesses around the area. The best reward comes in the form knowledge about how to save you a lot of time and money in the future.\r\n\r\n-ATION was responsible for re-branding “Husky Hunt” in the Spring of 2014. A new logo and brand look where created, as well as posters, postcards and fliers driving students to the Husky Hunt game site. A promotional animated infographic was also created, showcasing the re-brand, explaining the rules of the Husky Hunt game and inspiring the community to participate online.', 'Husky Hunt', '', 'inherit', 'closed', 'closed', '', '28-revision-v1', '', '', '2016-03-24 20:41:16', '2016-03-25 00:41:16', '', 28, 'http://192.168.33.60/2016/03/24/28-revision-v1/', 0, 'revision', '', 0), +(30, 2, '2016-03-24 20:41:49', '2016-03-25 00:41:49', 'https://vimeo.com/105377064\r\n\r\n

Mission Statement:

\r\n\r\nTo educate UConn students about information security in a fun, interactive way.\r\n\r\nHusky Hunt is an online and in-person game that educates you on information technology safety and security. This game involves answering questions online and receiving locations that will give you points and unlock more clues. Prizes include anything from gift cards to the UConn Co-Op and rewards from various businesses around the area. The best reward comes in the form knowledge about how to save you a lot of time and money in the future.\r\n\r\n-ATION was responsible for re-branding “Husky Hunt” in the Spring of 2014. A new logo and brand look where created, as well as posters, postcards and fliers driving students to the Husky Hunt game site. A promotional animated infographic was also created, showcasing the re-brand, explaining the rules of the Husky Hunt game and inspiring the community to participate online.', 'Husky Hunt', '', 'inherit', 'closed', 'closed', '', '28-revision-v1', '', '', '2016-03-24 20:41:49', '2016-03-25 00:41:49', '', 28, 'http://192.168.33.60/2016/03/24/28-revision-v1/', 0, 'revision', '', 0), +(31, 2, '2016-03-24 20:43:31', '2016-03-25 00:43:31', '', 'Husky Hunt', '', 'inherit', 'closed', 'closed', '', 'huskyhuntlogo_3', '', '', '2016-03-24 20:43:40', '2016-03-25 00:43:40', '', 28, 'http://192.168.33.60/wp-content/uploads/2016/03/huskyHuntLogo_3.png', 0, 'attachment', 'image/png', 0), +(32, 2, '2016-03-24 20:48:52', '2016-03-25 00:48:52', '

The Mission

\r\n\r\nOur mission is to influence all generations through our values of collaboration, imagination, innovation, creation, and conversation. We engage diverse audiences by creating communication with a fresh perspective.\r\n\r\n

Who We Are

\r\n\r\nWe are a team who collaborate to fulfill a desire to create incredible things, big things, the next big thing. Our team members’ diverse and specialized skill sets allow us to innovate and imagine, producing a unique and effective campaign that will create conversation about your brand.\r\n\r\n

Why Choose Us

\r\n\r\nWith a sharp mind, diverse skill set, and a fresh perspective we specialize in grabbing the attention of the demographic that is hardest to reach, our own. We can establish and promote your brand across a wide variety of media and channels.', 'About', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2016-03-24 20:48:52', '2016-03-25 00:48:52', '', 12, 'http://192.168.33.60/2016/03/24/12-revision-v1/', 0, 'revision', '', 0), +(33, 2, '2016-03-24 20:49:13', '2016-03-25 00:49:13', 'https://vimeo.com/112419554\n\n

The Mission

\n\nOur mission is to influence all generations through our values of collaboration, imagination, innovation, creation, and conversation. We engage diverse audiences by creating communication with a fresh perspective.\n\n

Who We Are

\n\nWe are a team who collaborate to fulfill a desire to create incredible things, big things, the next big thing. Our team members’ diverse and specialized skill sets allow us to innovate and imagine, producing a unique and effective campaign that will create conversation about your brand.\n\n

Why Choose Us

\n\nWith a sharp mind, diverse skill set, and a fresh perspective we specialize in grabbing the attention of the demographic that is hardest to reach, our own. We can establish and promote your brand across a wide variety of media and channels.', 'About', '', 'inherit', 'closed', 'closed', '', '12-autosave-v1', '', '', '2016-03-24 20:49:13', '2016-03-25 00:49:13', '', 12, 'http://192.168.33.60/2016/03/24/12-autosave-v1/', 0, 'revision', '', 0), +(34, 2, '2016-03-24 20:49:15', '2016-03-25 00:49:15', 'https://vimeo.com/112419554\r\n\r\n

The Mission

\r\n\r\nOur mission is to influence all generations through our values of collaboration, imagination, innovation, creation, and conversation. We engage diverse audiences by creating communication with a fresh perspective.\r\n\r\n

Who We Are

\r\n\r\nWe are a team who collaborate to fulfill a desire to create incredible things, big things, the next big thing. Our team members’ diverse and specialized skill sets allow us to innovate and imagine, producing a unique and effective campaign that will create conversation about your brand.\r\n\r\n

Why Choose Us

\r\n\r\nWith a sharp mind, diverse skill set, and a fresh perspective we specialize in grabbing the attention of the demographic that is hardest to reach, our own. We can establish and promote your brand across a wide variety of media and channels.', 'About', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2016-03-24 20:49:15', '2016-03-25 00:49:15', '', 12, 'http://192.168.33.60/2016/03/24/12-revision-v1/', 0, 'revision', '', 0), +(36, 2, '2016-03-24 21:51:42', '2016-03-25 01:51:42', '', 'Members', '', 'publish', 'closed', 'closed', '', 'acf_members', '', '', '2016-04-07 22:14:20', '2016-04-08 02:14:20', '', 0, 'http://192.168.33.60/?post_type=acf&p=36', 0, 'acf', '', 0), +(37, 2, '2016-03-24 21:54:45', '2016-03-25 01:54:45', 'I love web development, wings, skiing, traveling, and long walks on the beach.', 'Brian Kelleher', '', 'publish', 'closed', 'closed', '', 'brian-kelleher', '', '', '2016-04-21 18:17:18', '2016-04-21 22:17:18', '', 0, 'http://192.168.33.60/?post_type=member&p=37', 0, 'member', '', 0), +(38, 2, '2016-03-24 21:54:45', '2016-03-25 01:54:45', 'I love web development, wings, skiing, traveling, and long walks on the beach.', 'Brian Kelleher', '', 'inherit', 'closed', 'closed', '', '37-revision-v1', '', '', '2016-03-24 21:54:45', '2016-03-25 01:54:45', '', 37, 'http://192.168.33.60/2016/03/24/37-revision-v1/', 0, 'revision', '', 0), +(39, 2, '2016-03-24 21:59:00', '2016-03-25 01:59:00', '', 'Projects', '', 'publish', 'closed', 'closed', '', 'acf_projects', '', '', '2016-04-03 16:05:46', '2016-04-03 20:05:46', '', 0, 'http://192.168.33.60/?post_type=acf&p=39', 0, 'acf', '', 0), +(40, 2, '2016-03-24 21:59:10', '2016-03-25 01:59:10', 'https://vimeo.com/75316460\r\n\r\n-ATION loves to be on the cutting edge of things, so when vPC approached us to work on a project, we couldn’t help but be excited. vPC is a virtual computer lab that allows UConn students and faculty to access all kinds of handy software from anywhere in the world. It was an incredibly helpful service, yet no one on campus seemed to know about it despite vPC’s best efforts to spread the word.\r\n\r\nThe -ATION team had a clear goal when we took on this project: we wanted to build a less intimidating brand identity for vPC that would get more users from all schools logging into their SkyBox account. We developed a plan of action. The first item on our list was creating a new name. vPC sounded too technical and complex. We reimagined vPC as “Skybox by UConn”, gave them a new logo, and redesigned their website to match their fresh new name. Next, we created flyers, banners, and print advertisements. Through a combination of radio, television, and even public transportation, “Skybox” got across the main Storrs campus as well as the satellite campuses of the University of Connecticut and got people talking. To complete the package, we produced a video that showed new users all of the awesome things Skybox could do.\r\n\r\nOh, and we’re pleased to announce that… It worked! Usage of Skybox increased by over 50% in the first weeks after the launch, and we’re super excited to work with Skybox as it continues to grow!', 'Skybox', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2016-03-24 21:59:10', '2016-03-25 01:59:10', '', 25, 'http://192.168.33.60/2016/03/24/25-revision-v1/', 0, 'revision', '', 0), +(41, 2, '2016-03-24 22:29:39', '2016-03-25 02:29:39', '[vid_embed src="https://vimeo.com/75316460"]\r\n\r\n-ATION loves to be on the cutting edge of things, so when vPC approached us to work on a project, we couldn’t help but be excited. vPC is a virtual computer lab that allows UConn students and faculty to access all kinds of handy software from anywhere in the world. It was an incredibly helpful service, yet no one on campus seemed to know about it despite vPC’s best efforts to spread the word.\r\n\r\nThe -ATION team had a clear goal when we took on this project: we wanted to build a less intimidating brand identity for vPC that would get more users from all schools logging into their SkyBox account. We developed a plan of action. The first item on our list was creating a new name. vPC sounded too technical and complex. We reimagined vPC as “Skybox by UConn”, gave them a new logo, and redesigned their website to match their fresh new name. Next, we created flyers, banners, and print advertisements. Through a combination of radio, television, and even public transportation, “Skybox” got across the main Storrs campus as well as the satellite campuses of the University of Connecticut and got people talking. To complete the package, we produced a video that showed new users all of the awesome things Skybox could do.\r\n\r\nOh, and we’re pleased to announce that… It worked! Usage of Skybox increased by over 50% in the first weeks after the launch, and we’re super excited to work with Skybox as it continues to grow!', 'Skybox', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2016-03-24 22:29:39', '2016-03-25 02:29:39', '', 25, 'http://192.168.33.60/2016/03/24/25-revision-v1/', 0, 'revision', '', 0), +(42, 2, '2016-03-25 11:29:26', '2016-03-25 15:29:26', '[vid_embed src="https://vimeo.com/112419554"]\r\n\r\n

The Mission

\r\n\r\nOur mission is to influence all generations through our values of collaboration, imagination, innovation, creation, and conversation. We engage diverse audiences by creating communication with a fresh perspective.\r\n\r\n

Who We Are

\r\n\r\nWe are a team who collaborate to fulfill a desire to create incredible things, big things, the next big thing. Our team members’ diverse and specialized skill sets allow us to innovate and imagine, producing a unique and effective campaign that will create conversation about your brand.\r\n\r\n

Why Choose Us

\r\n\r\nWith a sharp mind, diverse skill set, and a fresh perspective we specialize in grabbing the attention of the demographic that is hardest to reach, our own. We can establish and promote your brand across a wide variety of media and channels.', 'About', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2016-03-25 11:29:26', '2016-03-25 15:29:26', '', 12, 'http://192.168.33.60/2016/03/25/12-revision-v1/', 0, 'revision', '', 0), +(46, 2, '2016-03-30 23:25:04', '2016-03-31 03:25:04', '[vid_embed src="https://vimeo.com/105377064"]\r\n\r\n

Mission Statement:

\r\n\r\nTo educate UConn students about information security in a fun, interactive way.\r\n\r\nHusky Hunt is an online and in-person game that educates you on information technology safety and security. This game involves answering questions online and receiving locations that will give you points and unlock more clues. Prizes include anything from gift cards to the UConn Co-Op and rewards from various businesses around the area. The best reward comes in the form knowledge about how to save you a lot of time and money in the future.\r\n\r\n-ATION was responsible for re-branding “Husky Hunt” in the Spring of 2014. A new logo and brand look where created, as well as posters, postcards and fliers driving students to the Husky Hunt game site. A promotional animated infographic was also created, showcasing the re-brand, explaining the rules of the Husky Hunt game and inspiring the community to participate online.', 'Husky Hunt', '', 'inherit', 'closed', 'closed', '', '28-revision-v1', '', '', '2016-03-30 23:25:04', '2016-03-31 03:25:04', '', 28, 'http://192.168.33.60/2016/03/30/28-revision-v1/', 0, 'revision', '', 0), +(47, 2, '2016-03-31 14:39:48', '2016-03-31 18:39:48', '[cscf-contact-form]', 'Contact', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2016-03-31 14:39:48', '2016-03-31 18:39:48', '', 10, 'http://192.168.33.60/2016/03/31/10-revision-v1/', 0, 'revision', '', 0), +(48, 2, '2016-04-02 16:55:17', '2016-04-02 20:55:17', '
\r\n
\r\n\r\nthemission\r\n

The Mission

\r\nOur mission is to influence all generations through ourvalues of collaboration, imagination, innovation, creation, and conversation. We engage diverse audiences by creating communication with a fresh perspective.\r\n\r\n
\r\n
\r\n\r\nwhoweare\r\n

Who We Are

\r\nWe are a team who collaborate to fulfill a desire to create incredible things, big things, the next big thing. Our team member'' diverse and specialized skill sets allow us to innovate and imagine, producing a unique and effective campaign that will create conversation about your brand.\r\n\r\n
\r\n
\r\n\r\nwhychooseus\r\n

Why Choose Us

\r\nWith a sharp mind, diverse skill set, and a fresh perspective we specialize in grabbing the attention of the demographic that is hardest to reach, our own. We can establish and promote your brand across a wide variety of media and channels.\r\n\r\n
\r\n
\r\n\r\n
\r\n
\r\nContact\r\n
\r\n
', 'Home', '', 'publish', 'closed', 'closed', '', 'home', '', '', '2016-04-03 15:32:32', '2016-04-03 19:32:32', '', 0, 'http://192.168.33.60/?page_id=48', 0, 'page', '', 0), +(50, 2, '2016-04-03 14:19:53', '2016-04-03 18:19:53', '', 'Homepage', '', 'publish', 'closed', 'closed', '', 'acf_homepage', '', '', '2016-04-03 14:38:35', '2016-04-03 18:38:35', '', 0, 'http://192.168.33.60/?post_type=acf&p=50', 0, 'acf', '', 0), +(52, 2, '2016-04-03 14:50:25', '2016-04-03 18:50:25', 'This is a homepage.', 'Home', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2016-04-03 14:50:25', '2016-04-03 18:50:25', '', 48, 'http://192.168.33.60/2016/04/03/48-revision-v1/', 0, 'revision', '', 0), +(53, 2, '2016-04-03 14:50:48', '2016-04-03 18:50:48', 'This is a homepage.', 'Home', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2016-04-03 14:50:48', '2016-04-03 18:50:48', '', 48, 'http://192.168.33.60/2016/04/03/48-revision-v1/', 0, 'revision', '', 0), +(54, 2, '2016-04-03 14:53:07', '2016-04-03 18:53:07', '
\r\n
\r\n

The Mission

\r\n

Our mission is to influence all generations through ourvalues of collaboration, imagination, innovation, creation, and conversation. We engage diverse audiences by creating communication with a fresh perspective.

\r\n
\r\n
\r\n

Who We Are

\r\n

We are a team who collaborate to fulfill a desire to create incredible things, big things, the next big thing. Our team member'' diverse and specialized skill sets allow us to innovate and imagine, producing a unique and effective campaign that will create conversation about your brand.

\r\n
\r\n
\r\n

Why Choose Us

\r\n

With a sharp mind, diverse skill set, and a fresh perspective we specialize in grabbing the attention of the demographic that is hardest to reach, our own. We can establish and promote your brand across a wide variety of media and channels.

\r\n
\r\n
', 'Home', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2016-04-03 14:53:07', '2016-04-03 18:53:07', '', 48, 'http://192.168.33.60/2016/04/03/48-revision-v1/', 0, 'revision', '', 0), +(55, 2, '2016-04-03 14:57:39', '2016-04-03 18:57:39', '', 'themission', '', 'inherit', 'closed', 'closed', '', 'themission', '', '', '2016-04-03 14:57:39', '2016-04-03 18:57:39', '', 48, 'http://192.168.33.60/wp-content/uploads/2016/04/themission.png', 0, 'attachment', 'image/png', 0), +(56, 2, '2016-04-03 14:57:39', '2016-04-03 18:57:39', '', 'whoweare', '', 'inherit', 'closed', 'closed', '', 'whoweare', '', '', '2016-04-03 14:57:39', '2016-04-03 18:57:39', '', 48, 'http://192.168.33.60/wp-content/uploads/2016/04/whoweare.png', 0, 'attachment', 'image/png', 0), +(57, 2, '2016-04-03 14:57:39', '2016-04-03 18:57:39', '', 'whychooseus', '', 'inherit', 'closed', 'closed', '', 'whychooseus', '', '', '2016-04-03 14:57:39', '2016-04-03 18:57:39', '', 48, 'http://192.168.33.60/wp-content/uploads/2016/04/whychooseus.png', 0, 'attachment', 'image/png', 0), +(58, 2, '2016-04-03 14:58:05', '2016-04-03 18:58:05', '
\r\n
\r\nthemission\r\n

The Mission

\r\n

Our mission is to influence all generations through ourvalues of collaboration, imagination, innovation, creation, and conversation. We engage diverse audiences by creating communication with a fresh perspective.

\r\n
\r\n
\r\nwhoweare\r\n

Who We Are

\r\n

We are a team who collaborate to fulfill a desire to create incredible things, big things, the next big thing. Our team member'' diverse and specialized skill sets allow us to innovate and imagine, producing a unique and effective campaign that will create conversation about your brand.

\r\n
\r\n
\r\nwhychooseus\r\n

Why Choose Us

\r\n

With a sharp mind, diverse skill set, and a fresh perspective we specialize in grabbing the attention of the demographic that is hardest to reach, our own. We can establish and promote your brand across a wide variety of media and channels.

\r\n
\r\n
', 'Home', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2016-04-03 14:58:05', '2016-04-03 18:58:05', '', 48, 'http://192.168.33.60/2016/04/03/48-revision-v1/', 0, 'revision', '', 0), +(59, 2, '2016-04-03 14:58:41', '2016-04-03 18:58:41', '
\r\n
themission\r\n

The Mission

\r\nOur mission is to influence all generations through ourvalues of collaboration, imagination, innovation, creation, and conversation. We engage diverse audiences by creating communication with a fresh perspective.\r\n\r\n
\r\n
whoweare\r\n

Who We Are

\r\nWe are a team who collaborate to fulfill a desire to create incredible things, big things, the next big thing. Our team member'' diverse and specialized skill sets allow us to innovate and imagine, producing a unique and effective campaign that will create conversation about your brand.\r\n\r\n
\r\n
whychooseus\r\n

Why Choose Us

\r\nWith a sharp mind, diverse skill set, and a fresh perspective we specialize in grabbing the attention of the demographic that is hardest to reach, our own. We can establish and promote your brand across a wide variety of media and channels.\r\n\r\n
\r\n
', 'Home', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2016-04-03 14:58:41', '2016-04-03 18:58:41', '', 48, 'http://192.168.33.60/2016/04/03/48-revision-v1/', 0, 'revision', '', 0), +(60, 2, '2016-04-03 15:01:23', '2016-04-03 19:01:23', '
\r\n
\r\n\r\nthemission\r\n

The Mission

\r\nOur mission is to influence all generations through ourvalues of collaboration, imagination, innovation, creation, and conversation. We engage diverse audiences by creating communication with a fresh perspective.\r\n\r\n
\r\n
\r\n\r\nwhoweare\r\n

Who We Are

\r\nWe are a team who collaborate to fulfill a desire to create incredible things, big things, the next big thing. Our team member'' diverse and specialized skill sets allow us to innovate and imagine, producing a unique and effective campaign that will create conversation about your brand.\r\n\r\n
\r\n
\r\n\r\nwhychooseus\r\n

Why Choose Us

\r\nWith a sharp mind, diverse skill set, and a fresh perspective we specialize in grabbing the attention of the demographic that is hardest to reach, our own. We can establish and promote your brand across a wide variety of media and channels.\r\n\r\n
\r\n
\r\n\r\n', 'Home', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2016-04-03 15:01:23', '2016-04-03 19:01:23', '', 48, 'http://192.168.33.60/2016/04/03/48-revision-v1/', 0, 'revision', '', 0), +(61, 2, '2016-04-03 15:03:48', '2016-04-03 19:03:48', '
\r\n
\r\n\r\nthemission\r\n

The Mission

\r\nOur mission is to influence all generations through ourvalues of collaboration, imagination, innovation, creation, and conversation. We engage diverse audiences by creating communication with a fresh perspective.\r\n\r\n
\r\n
\r\n\r\nwhoweare\r\n

Who We Are

\r\nWe are a team who collaborate to fulfill a desire to create incredible things, big things, the next big thing. Our team member'' diverse and specialized skill sets allow us to innovate and imagine, producing a unique and effective campaign that will create conversation about your brand.\r\n\r\n
\r\n
\r\n\r\nwhychooseus\r\n

Why Choose Us

\r\nWith a sharp mind, diverse skill set, and a fresh perspective we specialize in grabbing the attention of the demographic that is hardest to reach, our own. We can establish and promote your brand across a wide variety of media and channels.\r\n\r\n
\r\n
\r\n\r\n', 'Home', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2016-04-03 15:03:48', '2016-04-03 19:03:48', '', 48, 'http://192.168.33.60/2016/04/03/48-revision-v1/', 0, 'revision', '', 0), +(62, 2, '2016-04-03 15:04:42', '2016-04-03 19:04:42', '
\r\n
\r\n\r\nthemission\r\n

The Mission

\r\nOur mission is to influence all generations through ourvalues of collaboration, imagination, innovation, creation, and conversation. We engage diverse audiences by creating communication with a fresh perspective.\r\n\r\n
\r\n
\r\n\r\nwhoweare\r\n

Who We Are

\r\nWe are a team who collaborate to fulfill a desire to create incredible things, big things, the next big thing. Our team member'' diverse and specialized skill sets allow us to innovate and imagine, producing a unique and effective campaign that will create conversation about your brand.\r\n\r\n
\r\n
\r\n\r\nwhychooseus\r\n

Why Choose Us

\r\nWith a sharp mind, diverse skill set, and a fresh perspective we specialize in grabbing the attention of the demographic that is hardest to reach, our own. We can establish and promote your brand across a wide variety of media and channels.\r\n\r\n
\r\n
\r\n\r\n
\r\n
\r\n\r\n
\r\n
', 'Home', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2016-04-03 15:04:42', '2016-04-03 19:04:42', '', 48, 'http://192.168.33.60/2016/04/03/48-revision-v1/', 0, 'revision', '', 0), +(63, 2, '2016-04-03 15:05:52', '2016-04-03 19:05:52', '
\r\n
\r\n\r\nthemission\r\n

The Mission

\r\nOur mission is to influence all generations through ourvalues of collaboration, imagination, innovation, creation, and conversation. We engage diverse audiences by creating communication with a fresh perspective.\r\n\r\n
\r\n
\r\n\r\nwhoweare\r\n

Who We Are

\r\nWe are a team who collaborate to fulfill a desire to create incredible things, big things, the next big thing. Our team member'' diverse and specialized skill sets allow us to innovate and imagine, producing a unique and effective campaign that will create conversation about your brand.\r\n\r\n
\r\n
\r\n\r\nwhychooseus\r\n

Why Choose Us

\r\nWith a sharp mind, diverse skill set, and a fresh perspective we specialize in grabbing the attention of the demographic that is hardest to reach, our own. We can establish and promote your brand across a wide variety of media and channels.\r\n\r\n
\r\n
\r\n\r\n
\r\n
\r\n\r\n
\r\n
', 'Home', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2016-04-03 15:05:52', '2016-04-03 19:05:52', '', 48, 'http://192.168.33.60/2016/04/03/48-revision-v1/', 0, 'revision', '', 0), +(64, 2, '2016-04-03 15:07:36', '2016-04-03 19:07:36', '
\r\n
\r\n\r\nthemission\r\n

The Mission

\r\nOur mission is to influence all generations through ourvalues of collaboration, imagination, innovation, creation, and conversation. We engage diverse audiences by creating communication with a fresh perspective.\r\n\r\n
\r\n
\r\n\r\nwhoweare\r\n

Who We Are

\r\nWe are a team who collaborate to fulfill a desire to create incredible things, big things, the next big thing. Our team member'' diverse and specialized skill sets allow us to innovate and imagine, producing a unique and effective campaign that will create conversation about your brand.\r\n\r\n
\r\n
\r\n\r\nwhychooseus\r\n

Why Choose Us

\r\nWith a sharp mind, diverse skill set, and a fresh perspective we specialize in grabbing the attention of the demographic that is hardest to reach, our own. We can establish and promote your brand across a wide variety of media and channels.\r\n\r\n
\r\n
\r\n\r\n
\r\n
\r\n\r\n
\r\n
', 'Home', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2016-04-03 15:07:36', '2016-04-03 19:07:36', '', 48, 'http://192.168.33.60/2016/04/03/48-revision-v1/', 0, 'revision', '', 0), +(65, 2, '2016-04-03 15:09:23', '2016-04-03 19:09:23', '
\r\n
\r\n\r\nthemission\r\n

The Mission

\r\nOur mission is to influence all generations through ourvalues of collaboration, imagination, innovation, creation, and conversation. We engage diverse audiences by creating communication with a fresh perspective.\r\n\r\n
\r\n
\r\n\r\nwhoweare\r\n

Who We Are

\r\nWe are a team who collaborate to fulfill a desire to create incredible things, big things, the next big thing. Our team member'' diverse and specialized skill sets allow us to innovate and imagine, producing a unique and effective campaign that will create conversation about your brand.\r\n\r\n
\r\n
\r\n\r\nwhychooseus\r\n

Why Choose Us

\r\nWith a sharp mind, diverse skill set, and a fresh perspective we specialize in grabbing the attention of the demographic that is hardest to reach, our own. We can establish and promote your brand across a wide variety of media and channels.\r\n\r\n
\r\n
\r\n\r\n
\r\n
\r\n\r\n
\r\n
', 'Home', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2016-04-03 15:09:23', '2016-04-03 19:09:23', '', 48, 'http://192.168.33.60/2016/04/03/48-revision-v1/', 0, 'revision', '', 0), +(66, 2, '2016-04-03 15:13:38', '2016-04-03 19:13:38', '
\r\n
\r\n\r\nthemission\r\n

The Mission

\r\nOur mission is to influence all generations through ourvalues of collaboration, imagination, innovation, creation, and conversation. We engage diverse audiences by creating communication with a fresh perspective.\r\n\r\n
\r\n
\r\n\r\nwhoweare\r\n

Who We Are

\r\nWe are a team who collaborate to fulfill a desire to create incredible things, big things, the next big thing. Our team member'' diverse and specialized skill sets allow us to innovate and imagine, producing a unique and effective campaign that will create conversation about your brand.\r\n\r\n
\r\n
\r\n\r\nwhychooseus\r\n

Why Choose Us

\r\nWith a sharp mind, diverse skill set, and a fresh perspective we specialize in grabbing the attention of the demographic that is hardest to reach, our own. We can establish and promote your brand across a wide variety of media and channels.\r\n\r\n
\r\n
\r\n\r\n
\r\n
\r\nContact\r\n
\r\n
', 'Home', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2016-04-03 15:13:38', '2016-04-03 19:13:38', '', 48, 'http://192.168.33.60/2016/04/03/48-revision-v1/', 0, 'revision', '', 0); +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 +(67, 2, '2016-04-03 15:16:41', '2016-04-03 19:16:41', '
\r\n
\r\n\r\nthemission\r\n

The Mission

\r\nOur mission is to influence all generations through ourvalues of collaboration, imagination, innovation, creation, and conversation. We engage diverse audiences by creating communication with a fresh perspective.\r\n\r\n
\r\n
\r\n\r\nwhoweare\r\n

Who We Are

\r\nWe are a team who collaborate to fulfill a desire to create incredible things, big things, the next big thing. Our team member'' diverse and specialized skill sets allow us to innovate and imagine, producing a unique and effective campaign that will create conversation about your brand.\r\n\r\n
\r\n
\r\n\r\nwhychooseus\r\n

Why Choose Us

\r\nWith a sharp mind, diverse skill set, and a fresh perspective we specialize in grabbing the attention of the demographic that is hardest to reach, our own. We can establish and promote your brand across a wide variety of media and channels.\r\n\r\n
\r\n
\r\n\r\n
\r\n
\r\nContact\r\n
\r\n
', 'Home', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2016-04-03 15:16:41', '2016-04-03 19:16:41', '', 48, 'http://192.168.33.60/2016/04/03/48-revision-v1/', 0, 'revision', '', 0), +(68, 2, '2016-04-03 15:30:59', '2016-04-03 19:30:59', '
\r\n
\r\n\r\nthemission\r\n

The Mission

\r\nOur mission is to influence all generations through ourvalues of collaboration, imagination, innovation, creation, and conversation. We engage diverse audiences by creating communication with a fresh perspective.\r\n\r\n
\r\n
\r\n\r\nwhoweare\r\n

Who We Are

\r\nWe are a team who collaborate to fulfill a desire to create incredible things, big things, the next big thing. Our team member'' diverse and specialized skill sets allow us to innovate and imagine, producing a unique and effective campaign that will create conversation about your brand.\r\n\r\n
\r\n
\r\n\r\nwhychooseus\r\n

Why Choose Us

\r\nWith a sharp mind, diverse skill set, and a fresh perspective we specialize in grabbing the attention of the demographic that is hardest to reach, our own. We can establish and promote your brand across a wide variety of media and channels.\r\n\r\n
\r\n
\r\n\r\n
\r\n
\r\nContact\r\n
\r\n
', 'Home', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2016-04-03 15:30:59', '2016-04-03 19:30:59', '', 48, 'http://192.168.33.60/2016/04/03/48-revision-v1/', 0, 'revision', '', 0), +(69, 2, '2016-04-03 15:32:32', '2016-04-03 19:32:32', '
\r\n
\r\n\r\nthemission\r\n

The Mission

\r\nOur mission is to influence all generations through ourvalues of collaboration, imagination, innovation, creation, and conversation. We engage diverse audiences by creating communication with a fresh perspective.\r\n\r\n
\r\n
\r\n\r\nwhoweare\r\n

Who We Are

\r\nWe are a team who collaborate to fulfill a desire to create incredible things, big things, the next big thing. Our team member'' diverse and specialized skill sets allow us to innovate and imagine, producing a unique and effective campaign that will create conversation about your brand.\r\n\r\n
\r\n
\r\n\r\nwhychooseus\r\n

Why Choose Us

\r\nWith a sharp mind, diverse skill set, and a fresh perspective we specialize in grabbing the attention of the demographic that is hardest to reach, our own. We can establish and promote your brand across a wide variety of media and channels.\r\n\r\n
\r\n
\r\n\r\n
\r\n
\r\nContact\r\n
\r\n
', 'Home', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2016-04-03 15:32:32', '2016-04-03 19:32:32', '', 48, 'http://192.168.33.60/2016/04/03/48-revision-v1/', 0, 'revision', '', 0), +(70, 2, '2016-04-03 16:04:54', '2016-04-03 20:04:54', '', 'skybox', '', 'inherit', 'closed', 'closed', '', 'skybox-2', '', '', '2016-04-03 16:04:54', '2016-04-03 20:04:54', '', 25, 'http://192.168.33.60/wp-content/uploads/2016/03/skybox.png', 0, 'attachment', 'image/png', 0), +(71, 2, '2016-04-03 16:05:21', '2016-04-03 20:05:21', '[vid_embed src="https://vimeo.com/75316460"]\r\n\r\n-ATION loves to be on the cutting edge of things, so when vPC approached us to work on a project, we couldn’t help but be excited. vPC is a virtual computer lab that allows UConn students and faculty to access all kinds of handy software from anywhere in the world. It was an incredibly helpful service, yet no one on campus seemed to know about it despite vPC’s best efforts to spread the word.\r\n\r\nThe -ATION team had a clear goal when we took on this project: we wanted to build a less intimidating brand identity for vPC that would get more users from all schools logging into their SkyBox account. We developed a plan of action. The first item on our list was creating a new name. vPC sounded too technical and complex. We reimagined vPC as “Skybox by UConn”, gave them a new logo, and redesigned their website to match their fresh new name. Next, we created flyers, banners, and print advertisements. Through a combination of radio, television, and even public transportation, “Skybox” got across the main Storrs campus as well as the satellite campuses of the University of Connecticut and got people talking. To complete the package, we produced a video that showed new users all of the awesome things Skybox could do.\r\n\r\nOh, and we’re pleased to announce that… It worked! Usage of Skybox increased by over 50% in the first weeks after the launch, and we’re super excited to work with Skybox as it continues to grow!', 'Skybox', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2016-04-03 16:05:21', '2016-04-03 20:05:21', '', 25, 'http://192.168.33.60/2016/04/03/25-revision-v1/', 0, 'revision', '', 0), +(72, 2, '2016-04-03 16:19:27', '2016-04-03 20:19:27', '', 'huskyhunt', '', 'inherit', 'closed', 'closed', '', 'huskyhunt', '', '', '2016-04-03 16:19:27', '2016-04-03 20:19:27', '', 28, 'http://192.168.33.60/wp-content/uploads/2016/03/huskyhunt.png', 0, 'attachment', 'image/png', 0), +(73, 2, '2016-04-03 16:19:36', '2016-04-03 20:19:36', '[vid_embed src="https://vimeo.com/105377064"]\r\n\r\n

Mission Statement:

\r\n\r\nTo educate UConn students about information security in a fun, interactive way.\r\n\r\nHusky Hunt is an online and in-person game that educates you on information technology safety and security. This game involves answering questions online and receiving locations that will give you points and unlock more clues. Prizes include anything from gift cards to the UConn Co-Op and rewards from various businesses around the area. The best reward comes in the form knowledge about how to save you a lot of time and money in the future.\r\n\r\n-ATION was responsible for re-branding “Husky Hunt” in the Spring of 2014. A new logo and brand look where created, as well as posters, postcards and fliers driving students to the Husky Hunt game site. A promotional animated infographic was also created, showcasing the re-brand, explaining the rules of the Husky Hunt game and inspiring the community to participate online.', 'Husky Hunt', '', 'inherit', 'closed', 'closed', '', '28-revision-v1', '', '', '2016-04-03 16:19:36', '2016-04-03 20:19:36', '', 28, 'http://192.168.33.60/2016/04/03/28-revision-v1/', 0, 'revision', '', 0), +(81, 2, '2016-04-07 22:15:28', '2016-04-08 02:15:28', '', 'Lauren Pfahler', '', 'publish', 'closed', 'closed', '', 'lauren-pfahler', '', '', '2016-04-21 16:29:12', '2016-04-21 20:29:12', '', 0, 'http://ation.local/?post_type=member&p=81', 0, 'member', '', 0), +(82, 2, '2016-04-07 22:12:36', '2016-04-08 02:12:36', '', 'Lauren Pfahler', '', 'inherit', 'closed', 'closed', '', '81-revision-v1', '', '', '2016-04-07 22:12:36', '2016-04-08 02:12:36', '', 81, 'http://ation.local/2016/04/07/81-revision-v1/', 0, 'revision', '', 0), +(83, 2, '2016-04-07 22:12:41', '2016-04-08 02:12:41', '', 'Lauren Pfahler', '', 'inherit', 'closed', 'closed', '', '81-revision-v1', '', '', '2016-04-07 22:12:41', '2016-04-08 02:12:41', '', 81, 'http://ation.local/2016/04/07/81-revision-v1/', 0, 'revision', '', 0), +(84, 2, '2016-04-07 22:14:52', '2016-04-08 02:14:52', '', 'Lauren Pfahler', '', 'inherit', 'closed', 'closed', '', 'lauren', '', '', '2016-04-07 22:15:02', '2016-04-08 02:15:02', '', 81, 'http://ation.local/wp-content/uploads/2016/04/lauren.jpg', 0, 'attachment', 'image/jpeg', 0), +(85, 2, '2016-04-07 22:15:28', '2016-04-08 02:15:28', '', 'Lauren Pfahler', '', 'inherit', 'closed', 'closed', '', '81-revision-v1', '', '', '2016-04-07 22:15:28', '2016-04-08 02:15:28', '', 81, 'http://ation.local/2016/04/07/81-revision-v1/', 0, 'revision', '', 0), +(86, 2, '2016-04-07 22:25:26', '2016-04-08 02:25:26', 'A hardworking student.', 'Benjamin Piascik', '', 'publish', 'closed', 'closed', '', 'benjamin-piascik', '', '', '2016-04-21 16:31:00', '2016-04-21 20:31:00', '', 0, 'http://ation.local/?post_type=member&p=86', 0, 'member', '', 0), +(87, 2, '2016-04-07 22:25:26', '2016-04-08 02:25:26', 'A hardworking student.', 'Benjamin Piascik', '', 'inherit', 'closed', 'closed', '', '86-revision-v1', '', '', '2016-04-07 22:25:26', '2016-04-08 02:25:26', '', 86, 'http://ation.local/2016/04/07/86-revision-v1/', 0, 'revision', '', 0), +(88, 2, '2016-04-07 22:31:35', '2016-04-08 02:31:35', 'Born and raised in Philly. Obsessed with digital analytics and social media. Cat lover and Philadelphia eagles fanatic. Hi, I’m Butes.', 'Alli Butera', '', 'publish', 'closed', 'closed', '', 'alli-butera', '', '', '2016-04-21 16:31:40', '2016-04-21 20:31:40', '', 0, 'http://ation.local/?post_type=member&p=88', 0, 'member', '', 0), +(89, 2, '2016-04-07 22:31:35', '2016-04-08 02:31:35', 'Born and raised in Philly. Obsessed with digital analytics and social media. Cat lover and Philadelphia eagles fanatic. Hi, I’m Butes. ', 'Alli Butera', '', 'inherit', 'closed', 'closed', '', '88-revision-v1', '', '', '2016-04-07 22:31:35', '2016-04-08 02:31:35', '', 88, 'http://ation.local/2016/04/07/88-revision-v1/', 0, 'revision', '', 0), +(90, 2, '2016-04-07 22:44:51', '2016-04-08 02:44:51', '', 'Alli Butera', '', 'inherit', 'closed', 'closed', '', 'butes', '', '', '2016-04-07 22:45:01', '2016-04-08 02:45:01', '', 88, 'http://ation.local/wp-content/uploads/2016/04/Butes.jpg', 0, 'attachment', 'image/jpeg', 0), +(91, 2, '2016-04-07 22:45:42', '2016-04-08 02:45:42', '', 'Lauren Pfahler', '', 'inherit', 'closed', 'closed', '', 'lauren-1', '', '', '2016-04-07 22:45:52', '2016-04-08 02:45:52', '', 81, 'http://ation.local/wp-content/uploads/2016/04/Lauren-1.jpg', 0, 'attachment', 'image/jpeg', 0), +(92, 2, '2016-04-07 22:49:04', '2016-04-08 02:49:04', '', 'Justin Nicoletti', '', 'publish', 'closed', 'closed', '', 'justin-nicoletti', '', '', '2016-04-21 16:32:16', '2016-04-21 20:32:16', '', 0, 'http://ation.local/?post_type=member&p=92', 0, 'member', '', 0), +(93, 2, '2016-04-07 22:48:51', '2016-04-08 02:48:51', '', 'Justin Nicoletti', '', 'inherit', 'closed', 'closed', '', 'justin', '', '', '2016-04-07 22:49:02', '2016-04-08 02:49:02', '', 92, 'http://ation.local/wp-content/uploads/2016/04/Justin.jpg', 0, 'attachment', 'image/jpeg', 0), +(94, 2, '2016-04-07 22:49:04', '2016-04-08 02:49:04', '', 'Justin Nicoletti', '', 'inherit', 'closed', 'closed', '', '92-revision-v1', '', '', '2016-04-07 22:49:04', '2016-04-08 02:49:04', '', 92, 'http://ation.local/2016/04/07/92-revision-v1/', 0, 'revision', '', 0), +(95, 2, '2016-04-10 08:46:08', '2016-04-10 12:46:08', '', 'Semesters', '', 'publish', 'closed', 'closed', '', 'acf_semesters', '', '', '2016-04-10 08:47:41', '2016-04-10 12:47:41', '', 0, 'http://ation.local/?post_type=acf&p=95', 0, 'acf', '', 0), +(97, 4, '2016-04-12 16:58:45', '2016-04-12 20:58:45', '

\n

Here at UConn, football is a full blown experience. There’s something about the buzz of excitement on the bus rides to the Rent, the marching band’s instrumental renditions of the latest pop tunes, and the breathlessness that comes with cheering on the UConn Huskies that just can’t be found anywhere else on campus. When we started working with UConn Athletics, our goal was to capture that experience, and to get people feeling even closer with the team they were cheering to victory.

\n

-ATION produced two videos. The first, “House Rules”, focused on all of the awesome reasons to attend a UConn football game. The second, “Fans Bleed Blue”, showed the intensity and passion that makes up a UConn football game. We wanted to get hearts racing when they saw these ads, and… If we’re being honest, ours still get a little fluttery when we watch them!

', 'UConn Football', '', 'trash', 'closed', 'closed', '', 'uconn-football', '', '', '2016-04-12 17:02:48', '2016-04-12 21:02:48', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=project&p=97', 0, 'project', '', 0), +(98, 4, '2016-04-12 17:02:48', '2016-04-12 21:02:48', '

\n

Here at UConn, football is a full blown experience. There’s something about the buzz of excitement on the bus rides to the Rent, the marching band’s instrumental renditions of the latest pop tunes, and the breathlessness that comes with cheering on the UConn Huskies that just can’t be found anywhere else on campus. When we started working with UConn Athletics, our goal was to capture that experience, and to get people feeling even closer with the team they were cheering to victory.

\n

-ATION produced two videos. The first, “House Rules”, focused on all of the awesome reasons to attend a UConn football game. The second, “Fans Bleed Blue”, showed the intensity and passion that makes up a UConn football game. We wanted to get hearts racing when they saw these ads, and… If we’re being honest, ours still get a little fluttery when we watch them!

', 'UConn Football', '', 'inherit', 'closed', 'closed', '', '97-revision-v1', '', '', '2016-04-12 17:02:48', '2016-04-12 21:02:48', '', 97, 'http://ation.develop.digitalmediauconn.org/www/2016/04/12/97-revision-v1/', 0, 'revision', '', 0), +(99, 4, '2016-04-14 13:39:39', '2016-04-14 17:39:39', '[vid_embed src="https://vimeo.com/105367992"]\r\n

-ATION collaborated with Mary Caravella from the Marketing Department of the UConn School of Business  to produce a how-to video on developing a marketing persona. The process included writing a script, storyboarding and production of a 4.75 minute video: “What Is A Persona?”   and producing a leave behind document for the class room.

\r\n

The video has been published online and will be used as a teaching aid in DMD’s Business Strategies courses and in the School of Business’ marketing courses.

', 'What Is A Persona?', '', 'publish', 'closed', 'closed', '', 'what-is-a-persona', '', '', '2016-04-14 13:39:39', '2016-04-14 17:39:39', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=project&p=99', 0, 'project', '', 0), +(100, 4, '2016-04-12 17:09:29', '2016-04-12 21:09:29', '[vid_embed src="https://vimeo.com/105367992"]\r\n

-ATION collaborated with Mary Caravella from the Marketing Department of the UConn School of Business  to produce a how-to video on developing a marketing persona. The process included writing a script, storyboarding and production of a 4.75 minute video: “What Is A Persona?”   and producing a leave behind document for the class room.

\r\n

The video has been published online and will be used as a teaching aid in DMD’s Business Strategies courses and in the School of Business’ marketing courses.

', 'What Is A Persona?', '', 'inherit', 'closed', 'closed', '', '99-revision-v1', '', '', '2016-04-12 17:09:29', '2016-04-12 21:09:29', '', 99, 'http://ation.develop.digitalmediauconn.org/www/2016/04/12/99-revision-v1/', 0, 'revision', '', 0), +(101, 4, '2016-04-14 13:41:04', '2016-04-14 17:41:04', '[vid_embed src="https://vimeo.com/141555155"]\r\n\r\nFor the Spring 2015 term, our -ATION team was tasked with creating a video to be used for marketing PCC’s Cenuity Business One Stop software to state officials. Cenuity Business One Stop is a software platform that allows business owners to communicate with state and federal agencies, easing the process of running a business.\r\n\r\nThe driving factor behind many of our creative decisions was the ultimate target audience: Secretaries of States. The video’s purpose is to focus on the benefits Cenuity Business One Stop offers and how they facilitate overall business processes.\r\n\r\nOur script was directed by two main ideas: that businesses are good, and they are difficult to start. Analyzing the specific benefits of the Business One Stop software, we created video segments highlighting the software’s features. Once we finished a preliminary draft of the script, we sent it to PCC for feedback and made changes accordingly. The finalized script was sent to our selected voiceover artist.\r\n\r\nThe next step in the process was to film and animate the video. Our live-action scenes highlight the desktop and mobile applications included in the Business One Stop software. The animation portion of the video was designed to portray the features of the One Stop software while adhering to PCC’s brand identity. For instance, incorporating a blue-centric color palette and aiming for more polished animation styles related to the brand’s identity.\r\n\r\nEvery aspect of the video production process, from selecting voice talent to the animation style was chosen with respect to the audience. Ultimately, we produced a quick video that effectively and elegantly summarized the benefits of PCC’s Cenuity Business One Stop software to our target.', 'PCC Cenuity Business One Stop', '', 'publish', 'closed', 'closed', '', 'pcc-cenuity-business-one-stop', '', '', '2016-04-14 13:41:04', '2016-04-14 17:41:04', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=project&p=101', 0, 'project', '', 0), +(102, 4, '2016-04-14 13:09:19', '2016-04-14 17:09:19', '[vid_embed src="https://vimeo.com/141555155"]\r\n\r\nFor the Spring 2015 term, our -ATION team was tasked with creating a video to be used for marketing PCC’s Cenuity Business One Stop software to state officials. Cenuity Business One Stop is a software platform that allows business owners to communicate with state and federal agencies, easing the process of running a business.\r\n\r\nThe driving factor behind many of our creative decisions was the ultimate target audience: Secretaries of States. The video’s purpose is to focus on the benefits Cenuity Business One Stop offers and how they facilitate overall business processes.\r\n\r\nOur script was directed by two main ideas: that businesses are good, and they are difficult to start. Analyzing the specific benefits of the Business One Stop software, we created video segments highlighting the software’s features. Once we finished a preliminary draft of the script, we sent it to PCC for feedback and made changes accordingly. The finalized script was sent to our selected voiceover artist.\r\n\r\nThe next step in the process was to film and animate the video. Our live-action scenes highlight the desktop and mobile applications included in the Business One Stop software. The animation portion of the video was designed to portray the features of the One Stop software while adhering to PCC’s brand identity. For instance, incorporating a blue-centric color palette and aiming for more polished animation styles related to the brand’s identity.\r\n\r\nEvery aspect of the video production process, from selecting voice talent to the animation style was chosen with respect to the audience. Ultimately, we produced a quick video that effectively and elegantly summarized the benefits of PCC’s Cenuity Business One Stop software to our target.', 'PCC Cenuity Business One Stop', '', 'inherit', 'closed', 'closed', '', '101-revision-v1', '', '', '2016-04-14 13:09:19', '2016-04-14 17:09:19', '', 101, 'http://ation.develop.digitalmediauconn.org/www/2016/04/14/101-revision-v1/', 0, 'revision', '', 0), +(105, 4, '2016-04-14 13:39:15', '2016-04-14 17:39:15', '', 'What_is_a_persona', '', 'inherit', 'closed', 'closed', '', 'what_is_a_persona', '', '', '2016-04-14 13:39:15', '2016-04-14 17:39:15', '', 99, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/What_is_a_persona.jpg', 0, 'attachment', 'image/jpeg', 0), +(106, 4, '2016-04-14 13:40:55', '2016-04-14 17:40:55', '', 'PCC', '', 'inherit', 'closed', 'closed', '', 'pcc', '', '', '2016-04-14 13:40:55', '2016-04-14 17:40:55', '', 101, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/PCC.png', 0, 'attachment', 'image/png', 0), +(107, 4, '2016-04-14 13:45:50', '2016-04-14 17:45:50', '[vid_embed src="https://vimeo.com/121858786"]\r\n\r\nCT Innovations introduced –ATION to Isoplexis, a biotechnology startup that focuses on cancer treatment research. The task was to create a concise video for the company that presented their product’s unique benefits to researchers and pharmaceutical companies.\r\n\r\nIn our process, we followed a supplemental timeline given to us by CT Innovations. This frame of reference helped us focus on the project in stages and allowed us to jump into development with a clear, client-approved concept. Our first challenge was to ideate stylistic approaches to the video – which involved scouring the web for relevant inspiration that broadened our idea scope and opened the door for greater innovation opportunities.\r\n\r\nThe client decided on flow, a motion graphic concept that showcased shape-shifting transitions and an enticing color palette. From there, we began work on a script. We decided to go with a voiceover in order to allow the visuals to be explored in depth. In development, the spoken script aided in determining the pace of the animation. With constant communication between us and the client, we were able to avoid overuse of technical jargon and over-simplification in order to cater to the client’s syntax.\r\n\r\nFor the narrative, we juxtaposed the two leading methods of cancer treatment research and then revealed how Isoplexis had indeed found a unique method. This proved to be effective and the client approved of the storyboard, allowing us to begin work on the animated video.\r\n\r\nThe same graphics created in Adobe Illustrator for the storyboard were moved into Adobe After Effects with the caveat of individual layer separation per graphic. We built our story in five distinct scenes that fit together to create one overarching narrative. To complement the visual component we created original music to fit the client’s specifications. The client was very happy with the final product describing it as “very awesome”.', 'Isoplexis', '', 'publish', 'closed', 'closed', '', 'isoplexis', '', '', '2016-04-14 13:45:50', '2016-04-14 17:45:50', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=project&p=107', 0, 'project', '', 0), +(108, 4, '2016-04-14 13:45:19', '2016-04-14 17:45:19', '', 'Isoplexis_logo-0.00.02.10', '', 'inherit', 'closed', 'closed', '', 'isoplexis_logo-0-00-02-10', '', '', '2016-04-14 13:45:19', '2016-04-14 17:45:19', '', 107, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/Isoplexis_logo-0.00.02.10.jpg', 0, 'attachment', 'image/jpeg', 0), +(109, 4, '2016-04-14 13:45:50', '2016-04-14 17:45:50', '[vid_embed src="https://vimeo.com/121858786"]\r\n\r\nCT Innovations introduced –ATION to Isoplexis, a biotechnology startup that focuses on cancer treatment research. The task was to create a concise video for the company that presented their product’s unique benefits to researchers and pharmaceutical companies.\r\n\r\nIn our process, we followed a supplemental timeline given to us by CT Innovations. This frame of reference helped us focus on the project in stages and allowed us to jump into development with a clear, client-approved concept. Our first challenge was to ideate stylistic approaches to the video – which involved scouring the web for relevant inspiration that broadened our idea scope and opened the door for greater innovation opportunities.\r\n\r\nThe client decided on flow, a motion graphic concept that showcased shape-shifting transitions and an enticing color palette. From there, we began work on a script. We decided to go with a voiceover in order to allow the visuals to be explored in depth. In development, the spoken script aided in determining the pace of the animation. With constant communication between us and the client, we were able to avoid overuse of technical jargon and over-simplification in order to cater to the client’s syntax.\r\n\r\nFor the narrative, we juxtaposed the two leading methods of cancer treatment research and then revealed how Isoplexis had indeed found a unique method. This proved to be effective and the client approved of the storyboard, allowing us to begin work on the animated video.\r\n\r\nThe same graphics created in Adobe Illustrator for the storyboard were moved into Adobe After Effects with the caveat of individual layer separation per graphic. We built our story in five distinct scenes that fit together to create one overarching narrative. To complement the visual component we created original music to fit the client’s specifications. The client was very happy with the final product describing it as “very awesome”.', 'Isoplexis', '', 'inherit', 'closed', 'closed', '', '107-revision-v1', '', '', '2016-04-14 13:45:50', '2016-04-14 17:45:50', '', 107, 'http://ation.develop.digitalmediauconn.org/www/2016/04/14/107-revision-v1/', 0, 'revision', '', 0), +(110, 4, '2016-04-14 13:50:40', '2016-04-14 17:50:40', '[vid_embed src="https://vimeo.com/121860889"]\r\n\r\nATION Digital Media Agency worked in collaboration with a local investment firm called CT Innovations. The CT Innovations team paired our agency with Umbie Dental, a cloud based dental organization company. Umbie asked us to produce a video that would be showcased at dental trade shows in order to spread awareness about their products to potential clients.\r\n\r\nThere were multiple steps to this project. First and foremost, we needed to establish concept ideas. We tested multiple ideas, narrowing them down to three possibilities: live action footage, graphics, and a combination of the two. In the end, the client went with the live action version.\r\n\r\nThe second step in our process was to write the script, which was critical for relaying the brand message. Before writing the script, we created a SWOT analysis in order to better understand Umbie’s strengths, weaknesses, opportunities, and threats. Next, we developed a brand analysis which allowed us to craft the right setting, as well as characters.\r\n\r\nAfter the script was completed, we took advantage of one of the many benefits of being at a university and collaborated with the University of Connecticut’s acting department. The final video was split into 5 short segments. Each of the clips contains its own short story while still carrying an overarching theme throughout.\r\n\r\nThis format allows Umbie to play the clips back-to-back at trade shows so people walking by can catch a glimpse of what Umbie has to offer.', 'Umbie Dental Care', '', 'publish', 'closed', 'closed', '', 'umbie-dental-care', '', '', '2016-04-14 14:08:05', '2016-04-14 18:08:05', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=project&p=110', 0, 'project', '', 0), +(111, 4, '2016-04-14 13:48:32', '2016-04-14 17:48:32', '', 'Umbie Dental Care', '', 'inherit', 'closed', 'closed', '', '110-revision-v1', '', '', '2016-04-14 13:48:32', '2016-04-14 17:48:32', '', 110, 'http://ation.develop.digitalmediauconn.org/www/2016/04/14/110-revision-v1/', 0, 'revision', '', 0), +(112, 4, '2016-04-14 13:50:09', '2016-04-14 17:50:09', '', 'UmbieLogo', '', 'inherit', 'closed', 'closed', '', 'umbielogo', '', '', '2016-04-14 13:50:09', '2016-04-14 17:50:09', '', 110, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/UmbieLogo.png', 0, 'attachment', 'image/png', 0), +(113, 4, '2016-04-14 13:50:40', '2016-04-14 17:50:40', '[vid_embed src="https://vimeo.com/121860889"]\r\n
ATION Digital Media Agency worked in collaboration with a local investment firm called CT Innovations. The CT Innovations team paired our agency with Umbie Dental, a cloud based dental organization company. Umbie asked us to produce a video that would be showcased at dental trade shows in order to spread awareness about their products to potential clients.
\r\n
\r\n
\r\n
There were multiple steps to this project. First and foremost, we needed to establish concept ideas. We tested multiple ideas, narrowing them down to three possibilities: live action footage, graphics, and a combination of the two. In the end, the client went with the live action version.
\r\n
\r\n
The second step in our process was to write the script, which was critical for relaying the brand message. Before writing the script, we created a SWOT analysis in order to better understand Umbie’s strengths, weaknesses, opportunities, and threats. Next, we developed a brand analysis which allowed us to craft the right setting, as well as characters.
\r\n
\r\n
After the script was completed, we took advantage of one of the many benefits of being at a university and collaborated with the University of Connecticut’s acting department. The final video was split into 5 short segments. Each of the clips contains its own short story while still carrying an overarching theme throughout.
\r\n
\r\n
This format allows Umbie to play the clips back-to-back at trade shows so people walking by can catch a glimpse of what Umbie has to offer.
', 'Umbie Dental Care', '', 'inherit', 'closed', 'closed', '', '110-revision-v1', '', '', '2016-04-14 13:50:40', '2016-04-14 17:50:40', '', 110, 'http://ation.develop.digitalmediauconn.org/www/2016/04/14/110-revision-v1/', 0, 'revision', '', 0), +(114, 4, '2016-04-14 14:07:28', '2016-04-14 18:07:28', 'Screen-Shot-2014-10-27-at-10.25.35-AM\r\n\r\n-ATION worked with the Mansfield Downtown Partnership to create a logo for the September 21, 2014 event, the “Celebrate Mansfield Festival.”\r\n\r\nOur logo was featured across the event in festival branding, promotional web and print materials. For more information and to view the logo live on the festival website, please see DowntownStorrsFestival.org.\r\n\r\n ', 'Celebrate Mansfield Festival', '', 'publish', 'closed', 'closed', '', '114', '', '', '2016-04-14 14:08:07', '2016-04-14 18:08:07', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=project&p=114', 0, 'project', '', 0), +(115, 4, '2016-04-14 13:52:56', '2016-04-14 17:52:56', '[img src="http://ation.digitalmediauconn.org/wp-content/uploads/2014/10/Screen-Shot-2014-10-27-at-10.25.35-AM.png"]\r\n\r\n-ATION worked with the Mansfield Downtown Partnership to create a logo for the September 21, 2014 event, the “Celebrate Mansfield Festival.”\r\n\r\nOur logo was featured across the event in festival branding, promotional web and print materials. For more information and to view the logo live on the festival website, please see DowntownStorrsFestival.org.', '', '', 'inherit', 'closed', 'closed', '', '114-revision-v1', '', '', '2016-04-14 13:52:56', '2016-04-14 17:52:56', '', 114, 'http://ation.develop.digitalmediauconn.org/www/2016/04/14/114-revision-v1/', 0, 'revision', '', 0), +(116, 4, '2016-04-14 14:05:32', '2016-04-14 18:05:32', '', 'Screen-Shot-2014-10-27-at-10.25.35-AM', '', 'inherit', 'closed', 'closed', '', 'screen-shot-2014-10-27-at-10-25-35-am', '', '', '2016-04-14 14:05:32', '2016-04-14 18:05:32', '', 114, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/Screen-Shot-2014-10-27-at-10.25.35-AM.png', 0, 'attachment', 'image/png', 0), +(117, 4, '2016-04-14 14:05:39', '2016-04-14 18:05:39', 'Screen-Shot-2014-10-27-at-10.25.35-AM\r\n\r\n-ATION worked with the Mansfield Downtown Partnership to create a logo for the September 21, 2014 event, the “Celebrate Mansfield Festival.”\r\n\r\nOur logo was featured across the event in festival branding, promotional web and print materials. For more information and to view the logo live on the festival website, please see DowntownStorrsFestival.org.', '', '', 'inherit', 'closed', 'closed', '', '114-revision-v1', '', '', '2016-04-14 14:05:39', '2016-04-14 18:05:39', '', 114, 'http://ation.develop.digitalmediauconn.org/www/2016/04/14/114-revision-v1/', 0, 'revision', '', 0), +(118, 2, '2016-04-14 14:06:14', '2016-04-14 18:06:14', '[vid_embed src="https://vimeo.com/121860889"]\r\n\r\nATION Digital Media Agency worked in collaboration with a local investment firm called CT Innovations. The CT Innovations team paired our agency with Umbie Dental, a cloud based dental organization company. Umbie asked us to produce a video that would be showcased at dental trade shows in order to spread awareness about their products to potential clients.\r\n\r\nThere were multiple steps to this project. First and foremost, we needed to establish concept ideas. We tested multiple ideas, narrowing them down to three possibilities: live action footage, graphics, and a combination of the two. In the end, the client went with the live action version.\r\n\r\nThe second step in our process was to write the script, which was critical for relaying the brand message. Before writing the script, we created a SWOT analysis in order to better understand Umbie’s strengths, weaknesses, opportunities, and threats. Next, we developed a brand analysis which allowed us to craft the right setting, as well as characters.\r\n\r\nAfter the script was completed, we took advantage of one of the many benefits of being at a university and collaborated with the University of Connecticut’s acting department. The final video was split into 5 short segments. Each of the clips contains its own short story while still carrying an overarching theme throughout.\r\n\r\nThis format allows Umbie to play the clips back-to-back at trade shows so people walking by can catch a glimpse of what Umbie has to offer.', 'Umbie Dental Care', '', 'inherit', 'closed', 'closed', '', '110-revision-v1', '', '', '2016-04-14 14:06:14', '2016-04-14 18:06:14', '', 110, 'http://ation.develop.digitalmediauconn.org/www/2016/04/14/110-revision-v1/', 0, 'revision', '', 0), +(119, 4, '2016-04-14 14:07:18', '2016-04-14 18:07:18', '', 'manfield-logo-work-page2', '', 'inherit', 'closed', 'closed', '', 'manfield-logo-work-page2', '', '', '2016-04-14 14:07:18', '2016-04-14 18:07:18', '', 114, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/manfield-logo-work-page2.jpg', 0, 'attachment', 'image/jpeg', 0), +(120, 4, '2016-04-14 14:07:28', '2016-04-14 18:07:28', 'Screen-Shot-2014-10-27-at-10.25.35-AM\r\n\r\n-ATION worked with the Mansfield Downtown Partnership to create a logo for the September 21, 2014 event, the “Celebrate Mansfield Festival.”\r\n\r\nOur logo was featured across the event in festival branding, promotional web and print materials. For more information and to view the logo live on the festival website, please see DowntownStorrsFestival.org.\r\n\r\n ', '', '', 'inherit', 'closed', 'closed', '', '114-revision-v1', '', '', '2016-04-14 14:07:28', '2016-04-14 18:07:28', '', 114, 'http://ation.develop.digitalmediauconn.org/www/2016/04/14/114-revision-v1/', 0, 'revision', '', 0), +(121, 4, '2016-04-14 14:08:07', '2016-04-14 18:08:07', 'Screen-Shot-2014-10-27-at-10.25.35-AM\r\n\r\n-ATION worked with the Mansfield Downtown Partnership to create a logo for the September 21, 2014 event, the “Celebrate Mansfield Festival.”\r\n\r\nOur logo was featured across the event in festival branding, promotional web and print materials. For more information and to view the logo live on the festival website, please see DowntownStorrsFestival.org.\r\n\r\n ', 'Celebrate Mansfield Festival', '', 'inherit', 'closed', 'closed', '', '114-revision-v1', '', '', '2016-04-14 14:08:07', '2016-04-14 18:08:07', '', 114, 'http://ation.develop.digitalmediauconn.org/www/2016/04/14/114-revision-v1/', 0, 'revision', '', 0), +(123, 4, '2016-04-21 13:39:50', '2016-04-21 17:39:50', '', 'aidan', '', 'inherit', 'closed', 'closed', '', 'aidan', '', '', '2016-04-21 13:39:50', '2016-04-21 17:39:50', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/aidan.jpg', 0, 'attachment', 'image/jpeg', 0), +(124, 4, '2016-04-21 13:39:50', '2016-04-21 17:39:50', '', 'Alecia', '', 'inherit', 'closed', 'closed', '', 'alecia', '', '', '2016-04-21 13:39:50', '2016-04-21 17:39:50', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/Alecia.jpg', 0, 'attachment', 'image/jpeg', 0), +(125, 4, '2016-04-21 13:39:50', '2016-04-21 17:39:50', '', 'alli', '', 'inherit', 'closed', 'closed', '', 'alli', '', '', '2016-04-21 13:39:50', '2016-04-21 17:39:50', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/alli.jpg', 0, 'attachment', 'image/jpeg', 0), +(126, 4, '2016-04-21 13:39:51', '2016-04-21 17:39:51', '', 'andrew', '', 'inherit', 'closed', 'closed', '', 'andrew', '', '', '2016-04-21 13:39:51', '2016-04-21 17:39:51', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/andrew.jpg', 0, 'attachment', 'image/jpeg', 0), +(127, 4, '2016-04-21 13:39:51', '2016-04-21 17:39:51', '', 'BrianOtt', '', 'inherit', 'closed', 'closed', '', 'brianott', '', '', '2016-04-21 13:39:51', '2016-04-21 17:39:51', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/BrianOtt.jpg', 0, 'attachment', 'image/jpeg', 0), +(128, 4, '2016-04-21 13:39:51', '2016-04-21 17:39:51', '', 'britt', '', 'inherit', 'closed', 'closed', '', 'britt', '', '', '2016-04-21 13:39:51', '2016-04-21 17:39:51', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/britt.jpg', 0, 'attachment', 'image/jpeg', 0), +(129, 4, '2016-04-21 13:39:51', '2016-04-21 17:39:51', '', 'caitlin', '', 'inherit', 'closed', 'closed', '', 'caitlin', '', '', '2016-04-21 13:39:51', '2016-04-21 17:39:51', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/caitlin.jpg', 0, 'attachment', 'image/jpeg', 0), +(130, 4, '2016-04-21 13:39:52', '2016-04-21 17:39:52', '', 'carlota', '', 'inherit', 'closed', 'closed', '', 'carlota', '', '', '2016-04-21 13:39:52', '2016-04-21 17:39:52', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/carlota.jpg', 0, 'attachment', 'image/jpeg', 0), +(131, 4, '2016-04-21 13:39:52', '2016-04-21 17:39:52', '', 'cati', '', 'inherit', 'closed', 'closed', '', 'cati', '', '', '2016-04-21 13:39:52', '2016-04-21 17:39:52', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/cati.jpg', 0, 'attachment', 'image/jpeg', 0), +(132, 4, '2016-04-21 13:39:52', '2016-04-21 17:39:52', '', 'Christina', '', 'inherit', 'closed', 'closed', '', 'christina', '', '', '2016-04-21 13:39:52', '2016-04-21 17:39:52', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/Christina.jpg', 0, 'attachment', 'image/jpeg', 0), +(133, 4, '2016-04-21 13:39:52', '2016-04-21 17:39:52', '', 'Dan', '', 'inherit', 'closed', 'closed', '', 'dan', '', '', '2016-04-21 13:39:52', '2016-04-21 17:39:52', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/Dan.jpg', 0, 'attachment', 'image/jpeg', 0), +(134, 4, '2016-04-21 13:39:52', '2016-04-21 17:39:52', '', 'Demario', '', 'inherit', 'closed', 'closed', '', 'demario', '', '', '2016-04-21 13:39:52', '2016-04-21 17:39:52', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/Demario.jpg', 0, 'attachment', 'image/jpeg', 0), +(135, 4, '2016-04-21 13:39:53', '2016-04-21 17:39:53', '', 'DSC_9550', '', 'inherit', 'closed', 'closed', '', 'dsc_9550', '', '', '2016-04-21 13:39:53', '2016-04-21 17:39:53', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/DSC_9550.jpg', 0, 'attachment', 'image/jpeg', 0), +(136, 4, '2016-04-21 13:39:53', '2016-04-21 17:39:53', '', 'DSC_9569', '', 'inherit', 'closed', 'closed', '', 'dsc_9569', '', '', '2016-04-21 13:39:53', '2016-04-21 17:39:53', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/DSC_9569.jpg', 0, 'attachment', 'image/jpeg', 0), +(137, 4, '2016-04-21 13:39:53', '2016-04-21 17:39:53', '', 'DSC_9607', '', 'inherit', 'closed', 'closed', '', 'dsc_9607', '', '', '2016-04-21 13:39:53', '2016-04-21 17:39:53', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/DSC_9607.jpg', 0, 'attachment', 'image/jpeg', 0), +(138, 4, '2016-04-21 13:39:54', '2016-04-21 17:39:54', '', 'DSC_9617', '', 'inherit', 'closed', 'closed', '', 'dsc_9617', '', '', '2016-04-21 13:39:54', '2016-04-21 17:39:54', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/DSC_9617.jpg', 0, 'attachment', 'image/jpeg', 0), +(139, 4, '2016-04-21 13:39:54', '2016-04-21 17:39:54', '', 'DSC_9620', '', 'inherit', 'closed', 'closed', '', 'dsc_9620', '', '', '2016-04-21 13:39:54', '2016-04-21 17:39:54', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/DSC_9620.jpg', 0, 'attachment', 'image/jpeg', 0), +(140, 4, '2016-04-21 13:39:54', '2016-04-21 17:39:54', '', 'DSC_9638', '', 'inherit', 'closed', 'closed', '', 'dsc_9638', '', '', '2016-04-21 13:39:54', '2016-04-21 17:39:54', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/DSC_9638.jpg', 0, 'attachment', 'image/jpeg', 0), +(141, 4, '2016-04-21 13:39:55', '2016-04-21 17:39:55', '', 'DSC_9655', '', 'inherit', 'closed', 'closed', '', 'dsc_9655', '', '', '2016-04-21 13:39:55', '2016-04-21 17:39:55', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/DSC_9655.jpg', 0, 'attachment', 'image/jpeg', 0), +(142, 4, '2016-04-21 13:39:55', '2016-04-21 17:39:55', '', 'DSC_9665', '', 'inherit', 'closed', 'closed', '', 'dsc_9665', '', '', '2016-04-21 13:39:55', '2016-04-21 17:39:55', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/DSC_9665.jpg', 0, 'attachment', 'image/jpeg', 0), +(143, 4, '2016-04-21 13:39:55', '2016-04-21 17:39:55', '', 'DSC_9685', '', 'inherit', 'closed', 'closed', '', 'dsc_9685', '', '', '2016-04-21 13:39:55', '2016-04-21 17:39:55', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/DSC_9685.jpg', 0, 'attachment', 'image/jpeg', 0), +(144, 4, '2016-04-21 13:39:56', '2016-04-21 17:39:56', '', 'DSC_9705', '', 'inherit', 'closed', 'closed', '', 'dsc_9705', '', '', '2016-04-21 13:39:56', '2016-04-21 17:39:56', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/DSC_9705.jpg', 0, 'attachment', 'image/jpeg', 0), +(145, 4, '2016-04-21 13:39:56', '2016-04-21 17:39:56', '', 'DSC_9711', '', 'inherit', 'closed', 'closed', '', 'dsc_9711', '', '', '2016-04-21 13:39:56', '2016-04-21 17:39:56', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/DSC_9711.jpg', 0, 'attachment', 'image/jpeg', 0), +(146, 4, '2016-04-21 13:39:57', '2016-04-21 17:39:57', '', 'DSC_9725', '', 'inherit', 'closed', 'closed', '', 'dsc_9725', '', '', '2016-04-21 13:39:57', '2016-04-21 17:39:57', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/DSC_9725.jpg', 0, 'attachment', 'image/jpeg', 0), +(147, 4, '2016-04-21 13:39:57', '2016-04-21 17:39:57', '', 'DSC_9728', '', 'inherit', 'closed', 'closed', '', 'dsc_9728', '', '', '2016-04-21 13:39:57', '2016-04-21 17:39:57', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/DSC_9728.jpg', 0, 'attachment', 'image/jpeg', 0), +(148, 4, '2016-04-21 13:39:57', '2016-04-21 17:39:57', '', 'DSC_9732', '', 'inherit', 'closed', 'closed', '', 'dsc_9732', '', '', '2016-04-21 13:39:57', '2016-04-21 17:39:57', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/DSC_9732.jpg', 0, 'attachment', 'image/jpeg', 0), +(149, 4, '2016-04-21 13:39:57', '2016-04-21 17:39:57', '', 'DSC_9735', '', 'inherit', 'closed', 'closed', '', 'dsc_9735', '', '', '2016-04-21 13:39:57', '2016-04-21 17:39:57', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/DSC_9735.jpg', 0, 'attachment', 'image/jpeg', 0), +(150, 4, '2016-04-21 13:39:58', '2016-04-21 17:39:58', '', 'erin', '', 'inherit', 'closed', 'closed', '', 'erin', '', '', '2016-04-21 13:39:58', '2016-04-21 17:39:58', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/erin.jpg', 0, 'attachment', 'image/jpeg', 0), +(151, 4, '2016-04-21 13:39:58', '2016-04-21 17:39:58', '', 'grace', '', 'inherit', 'closed', 'closed', '', 'grace', '', '', '2016-04-21 13:39:58', '2016-04-21 17:39:58', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/grace.jpg', 0, 'attachment', 'image/jpeg', 0), +(152, 4, '2016-04-21 13:39:58', '2016-04-21 17:39:58', '', 'irem', '', 'inherit', 'closed', 'closed', '', 'irem', '', '', '2016-04-21 13:39:58', '2016-04-21 17:39:58', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/irem.jpg', 0, 'attachment', 'image/jpeg', 0), +(153, 4, '2016-04-21 13:39:58', '2016-04-21 17:39:58', '', 'Jessie', '', 'inherit', 'closed', 'closed', '', 'jessie', '', '', '2016-04-21 13:39:58', '2016-04-21 17:39:58', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/Jessie.jpg', 0, 'attachment', 'image/jpeg', 0), +(154, 4, '2016-04-21 13:39:59', '2016-04-21 17:39:59', '', 'Justin', '', 'inherit', 'closed', 'closed', '', 'justin-2', '', '', '2016-04-21 13:39:59', '2016-04-21 17:39:59', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/Justin-1.jpg', 0, 'attachment', 'image/jpeg', 0), +(155, 4, '2016-04-21 13:39:59', '2016-04-21 17:39:59', '', 'katb', '', 'inherit', 'closed', 'closed', '', 'katb', '', '', '2016-04-21 13:39:59', '2016-04-21 17:39:59', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/katb.jpg', 0, 'attachment', 'image/jpeg', 0); +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 +(156, 4, '2016-04-21 13:39:59', '2016-04-21 17:39:59', '', 'kate', '', 'inherit', 'closed', 'closed', '', 'kate', '', '', '2016-04-21 13:39:59', '2016-04-21 17:39:59', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/kate.jpg', 0, 'attachment', 'image/jpeg', 0), +(157, 4, '2016-04-21 13:39:59', '2016-04-21 17:39:59', '', 'kieran', '', 'inherit', 'closed', 'closed', '', 'kieran', '', '', '2016-04-21 13:39:59', '2016-04-21 17:39:59', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/kieran.jpg', 0, 'attachment', 'image/jpeg', 0), +(158, 4, '2016-04-21 13:40:00', '2016-04-21 17:40:00', '', 'lauren', '', 'inherit', 'closed', 'closed', '', 'lauren-2', '', '', '2016-04-21 13:40:00', '2016-04-21 17:40:00', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/lauren-1.jpg', 0, 'attachment', 'image/jpeg', 0), +(159, 4, '2016-04-21 13:40:00', '2016-04-21 17:40:00', '', 'mai', '', 'inherit', 'closed', 'closed', '', 'mai', '', '', '2016-04-21 13:40:00', '2016-04-21 17:40:00', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/mai.jpg', 0, 'attachment', 'image/jpeg', 0), +(160, 4, '2016-04-21 13:40:00', '2016-04-21 17:40:00', '', 'mark', '', 'inherit', 'closed', 'closed', '', 'mark', '', '', '2016-04-21 13:40:00', '2016-04-21 17:40:00', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/mark.jpg', 0, 'attachment', 'image/jpeg', 0), +(161, 4, '2016-04-21 13:40:00', '2016-04-21 17:40:00', '', 'megood', '', 'inherit', 'closed', 'closed', '', 'megood', '', '', '2016-04-21 13:40:00', '2016-04-21 17:40:00', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/megood.jpg', 0, 'attachment', 'image/jpeg', 0), +(162, 4, '2016-04-21 13:40:01', '2016-04-21 17:40:01', '', 'michael', '', 'inherit', 'closed', 'closed', '', 'michael', '', '', '2016-04-21 13:40:01', '2016-04-21 17:40:01', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/michael.jpg', 0, 'attachment', 'image/jpeg', 0), +(163, 4, '2016-04-21 13:40:01', '2016-04-21 17:40:01', '', 'michelle', '', 'inherit', 'closed', 'closed', '', 'michelle', '', '', '2016-04-21 13:40:01', '2016-04-21 17:40:01', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/michelle.jpg', 0, 'attachment', 'image/jpeg', 0), +(164, 4, '2016-04-21 13:40:01', '2016-04-21 17:40:01', '', 'nicole', '', 'inherit', 'closed', 'closed', '', 'nicole', '', '', '2016-04-21 13:40:01', '2016-04-21 17:40:01', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/nicole.jpg', 0, 'attachment', 'image/jpeg', 0), +(165, 4, '2016-04-21 13:40:01', '2016-04-21 17:40:01', '', 'Rebecca', '', 'inherit', 'closed', 'closed', '', 'rebecca', '', '', '2016-04-21 13:40:01', '2016-04-21 17:40:01', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/Rebecca.jpg', 0, 'attachment', 'image/jpeg', 0), +(166, 4, '2016-04-21 13:40:01', '2016-04-21 17:40:01', '', 'Ryan', '', 'inherit', 'closed', 'closed', '', 'ryan', '', '', '2016-04-21 13:40:01', '2016-04-21 17:40:01', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/Ryan.jpg', 0, 'attachment', 'image/jpeg', 0), +(167, 4, '2016-04-21 13:40:02', '2016-04-21 17:40:02', '', 'scott', '', 'inherit', 'closed', 'closed', '', 'scott', '', '', '2016-04-21 13:40:02', '2016-04-21 17:40:02', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/scott.jpg', 0, 'attachment', 'image/jpeg', 0), +(168, 4, '2016-04-21 13:40:02', '2016-04-21 17:40:02', '', 'Selina', '', 'inherit', 'closed', 'closed', '', 'selina', '', '', '2016-04-21 13:40:02', '2016-04-21 17:40:02', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/Selina.jpg', 0, 'attachment', 'image/jpeg', 0), +(169, 4, '2016-04-21 13:40:02', '2016-04-21 17:40:02', '', 'Sophie', '', 'inherit', 'closed', 'closed', '', 'sophie', '', '', '2016-04-21 13:40:02', '2016-04-21 17:40:02', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/Sophie.jpg', 0, 'attachment', 'image/jpeg', 0), +(170, 4, '2016-04-21 13:40:02', '2016-04-21 17:40:02', '', 'stef', '', 'inherit', 'closed', 'closed', '', 'stef', '', '', '2016-04-21 13:40:02', '2016-04-21 17:40:02', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/stef.jpg', 0, 'attachment', 'image/jpeg', 0), +(171, 4, '2016-04-21 13:40:03', '2016-04-21 17:40:03', '', 'tim', '', 'inherit', 'closed', 'closed', '', 'tim', '', '', '2016-04-21 13:40:03', '2016-04-21 17:40:03', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/tim.jpg', 0, 'attachment', 'image/jpeg', 0), +(172, 4, '2016-04-21 13:40:03', '2016-04-21 17:40:03', '', 'Tom', '', 'inherit', 'closed', 'closed', '', 'tom', '', '', '2016-04-21 13:40:03', '2016-04-21 17:40:03', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/Tom.jpg', 0, 'attachment', 'image/jpeg', 0), +(173, 4, '2016-04-21 13:40:03', '2016-04-21 17:40:03', '', 'vict', '', 'inherit', 'closed', 'closed', '', 'vict', '', '', '2016-04-21 13:40:03', '2016-04-21 17:40:03', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/vict.jpg', 0, 'attachment', 'image/jpeg', 0), +(174, 4, '2016-04-21 13:40:03', '2016-04-21 17:40:03', '', 'zack', '', 'inherit', 'closed', 'closed', '', 'zack', '', '', '2016-04-21 13:40:03', '2016-04-21 17:40:03', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/zack.jpg', 0, 'attachment', 'image/jpeg', 0), +(175, 4, '2016-04-21 13:44:51', '2016-04-21 17:44:51', '', 'DSC_9690', '', 'inherit', 'closed', 'closed', '', 'dsc_9690', '', '', '2016-04-21 13:44:51', '2016-04-21 17:44:51', '', 0, 'http://ation.develop.digitalmediauconn.org/www/wp-content/uploads/2016/04/DSC_9690.jpg', 0, 'attachment', 'image/jpeg', 0), +(176, 4, '2016-04-21 15:56:30', '2016-04-21 19:56:30', '', 'Stephanie Orts', '', 'publish', 'closed', 'closed', '', 'stephanie-orts', '', '', '2016-04-21 15:56:30', '2016-04-21 19:56:30', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=176', 0, 'member', '', 0), +(177, 4, '2016-04-21 15:56:30', '2016-04-21 19:56:30', '', 'Stephanie Orts', '', 'inherit', 'closed', 'closed', '', '176-revision-v1', '', '', '2016-04-21 15:56:30', '2016-04-21 19:56:30', '', 176, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/176-revision-v1/', 0, 'revision', '', 0), +(180, 4, '2016-04-21 16:02:56', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2016-04-21 16:02:56', '0000-00-00 00:00:00', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=180', 0, 'member', '', 0), +(181, 4, '2016-04-21 16:07:09', '2016-04-21 20:07:09', '', 'Kai Tang', '', 'publish', 'closed', 'closed', '', 'kai-tang', '', '', '2016-04-21 17:28:26', '2016-04-21 21:28:26', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=181', 0, 'member', '', 0), +(182, 4, '2016-04-21 16:07:09', '2016-04-21 20:07:09', '', 'Kai Tang', '', 'inherit', 'closed', 'closed', '', '181-revision-v1', '', '', '2016-04-21 16:07:09', '2016-04-21 20:07:09', '', 181, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/181-revision-v1/', 0, 'revision', '', 0), +(183, 4, '2016-04-21 16:10:59', '2016-04-21 20:10:59', '', 'Kyle Powers', '', 'publish', 'closed', 'closed', '', 'kyle-powers', '', '', '2016-04-21 16:10:59', '2016-04-21 20:10:59', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=183', 0, 'member', '', 0), +(184, 4, '2016-04-21 16:10:59', '2016-04-21 20:10:59', '', 'Kyle Powers', '', 'inherit', 'closed', 'closed', '', '183-revision-v1', '', '', '2016-04-21 16:10:59', '2016-04-21 20:10:59', '', 183, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/183-revision-v1/', 0, 'revision', '', 0), +(185, 4, '2016-04-21 16:14:32', '2016-04-21 20:14:32', '', 'Cody Hendrickson', '', 'publish', 'closed', 'closed', '', 'cody-hendrickson', '', '', '2016-04-21 16:21:18', '2016-04-21 20:21:18', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=185', 0, 'member', '', 0), +(186, 4, '2016-04-21 16:13:20', '2016-04-21 20:13:20', '', 'Cody Hendrickson', '', 'inherit', 'closed', 'closed', '', '185-revision-v1', '', '', '2016-04-21 16:13:20', '2016-04-21 20:13:20', '', 185, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/185-revision-v1/', 0, 'revision', '', 0), +(187, 4, '2016-04-21 16:14:32', '2016-04-21 20:14:32', '', 'Cody Hendrickson', '', 'inherit', 'closed', 'closed', '', '185-revision-v1', '', '', '2016-04-21 16:14:32', '2016-04-21 20:14:32', '', 185, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/185-revision-v1/', 0, 'revision', '', 0), +(188, 4, '2016-04-21 16:15:27', '2016-04-21 20:15:27', '', 'Cody Hendrickson', '', 'inherit', 'closed', 'closed', '', '185-revision-v1', '', '', '2016-04-21 16:15:27', '2016-04-21 20:15:27', '', 185, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/185-revision-v1/', 0, 'revision', '', 0), +(189, 4, '2016-04-21 16:20:51', '2016-04-21 20:20:51', 'As a DMD student in the honors program at the University of Connecticut with a minor in theatre production, I am passionate about design within the physical and digital space. I love creating experiences, whether it be through animation, theatre, or food. I am a maker and an experimenter, a collaborator and a communicator. I am always ready to take on new projects and learn new ways to improve my work.', 'Olivia Messina', '', 'publish', 'closed', 'closed', '', 'olivia-messina', '', '', '2016-04-21 16:20:51', '2016-04-21 20:20:51', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=189', 0, 'member', '', 0), +(190, 4, '2016-04-21 16:20:51', '2016-04-21 20:20:51', 'As a DMD student in the honors program at the University of Connecticut with a minor in theatre production, I am passionate about design within the physical and digital space. I love creating experiences, whether it be through animation, theatre, or food. I am a maker and an experimenter, a collaborator and a communicator. I am always ready to take on new projects and learn new ways to improve my work.', 'Olivia Messina', '', 'inherit', 'closed', 'closed', '', '189-revision-v1', '', '', '2016-04-21 16:20:51', '2016-04-21 20:20:51', '', 189, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/189-revision-v1/', 0, 'revision', '', 0), +(191, 4, '2016-04-21 16:21:18', '2016-04-21 20:21:18', '', 'Cody Hendrickson', '', 'inherit', 'closed', 'closed', '', '185-revision-v1', '', '', '2016-04-21 16:21:18', '2016-04-21 20:21:18', '', 185, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/185-revision-v1/', 0, 'revision', '', 0), +(192, 4, '2016-04-21 16:26:07', '2016-04-21 20:26:07', 'Hello, I''m Erin! I''m currently pursuing a BFA in digital media & design and a minor in psychology. I have a passion for storytelling across different media, and I am working on bringing my love of narrative into animation.', 'Erin Kaminski', '', 'publish', 'closed', 'closed', '', 'erin-kaminski', '', '', '2016-04-21 16:26:07', '2016-04-21 20:26:07', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=192', 0, 'member', '', 0), +(193, 4, '2016-04-21 16:26:07', '2016-04-21 20:26:07', 'Hello, I''m Erin! I''m currently pursuing a BFA in digital media & design and a minor in psychology. I have a passion for storytelling across different media, and I am working on bringing my love of narrative into animation.', 'Erin Kaminski', '', 'inherit', 'closed', 'closed', '', '192-revision-v1', '', '', '2016-04-21 16:26:07', '2016-04-21 20:26:07', '', 192, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/192-revision-v1/', 0, 'revision', '', 0), +(194, 4, '2016-04-21 16:35:01', '2016-04-21 20:35:01', 'I''m currently an undergraduate pursuing a future in the Web Design & Development World. In addition to the essential knowledge of HTML & CSS, I have become proficient in CSS compilers such as SASS and frameworks such as Bootstrap. I also have a background in Graphic Design which aids me in my design skills. I have designed the official logos for several campus organizations.', 'Michael Eduardo Rivera Jr', '', 'publish', 'closed', 'closed', '', 'michael-eduardo-rivera-jr', '', '', '2016-04-21 16:55:21', '2016-04-21 20:55:21', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=194', 0, 'member', '', 0), +(195, 4, '2016-04-21 16:35:01', '2016-04-21 20:35:01', 'I''m currently an undergraduate pursuing a future in the Web Design & Development World. In addition to the essential knowledge of HTML & CSS, I have become proficient in CSS compilers such as SASS and frameworks such as Bootstrap. I also have a background in Graphic Design which aids me in my design skills. I have designed the official logos for several campus organizations.', 'Michael Eduardo Rivera Jr', '', 'inherit', 'closed', 'closed', '', '194-revision-v1', '', '', '2016-04-21 16:35:01', '2016-04-21 20:35:01', '', 194, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/194-revision-v1/', 0, 'revision', '', 0), +(196, 4, '2016-04-21 16:41:19', '2016-04-21 20:41:19', 'Digital media and technology has been an interest of mine ever since attending Junior High School. My interests originally stemmed from the opportunity to help perform sound and light design for my Junior High School play productions. This introduced me to the world of technology and pushed me to create numerous technology based websites; I was presented with an opportunity to attend Macworld Expo and Apple’s keynote presentation, as a media correspondent for my website. Advancements in technology and digital media have created a whole different experience for modern society. It is through the digital evolution that I have realized the power of digital media. This has pushed me to want to make a difference for both present and future generations.', 'Nicholas Lensander', '', 'publish', 'closed', 'closed', '', 'nicholas-lensander', '', '', '2016-04-21 16:59:01', '2016-04-21 20:59:01', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=196', 0, 'member', '', 0), +(197, 4, '2016-04-21 16:41:19', '2016-04-21 20:41:19', 'Digital media and technology has been an interest of mine ever since attending Junior High School. My interests originally stemmed from the opportunity to help perform sound and light design for my Junior High School play productions. This introduced me to the world of technology and pushed me to create numerous technology based websites; I was presented with an opportunity to attend Macworld Expo and Apple’s keynote presentation, as a media correspondent for my website. Advancements in technology and digital media have created a whole different experience for modern society. It is through the digital evolution that I have realized the power of digital media. This has pushed me to want to make a difference for both present and future generations.', 'Nicholas Lensander', '', 'inherit', 'closed', 'closed', '', '196-revision-v1', '', '', '2016-04-21 16:41:19', '2016-04-21 20:41:19', '', 196, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/196-revision-v1/', 0, 'revision', '', 0), +(198, 4, '2016-04-21 16:43:37', '2016-04-21 20:43:37', 'I am a first year Graduate student here at UConn. I earned a Bachelor of Arts at Eastern Connecticut State University in 2014 with a major in History and a Minor in Communications. Here in the Digital Media & Design department I am pursuing a Master of Fine Arts. My concentration is in website design and development. After commencement in May 2017 I hope to pursue a career in web design.', 'Brandon Nickle', '', 'publish', 'closed', 'closed', '', 'brandon-nickle', '', '', '2016-04-21 16:43:37', '2016-04-21 20:43:37', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=198', 0, 'member', '', 0), +(199, 4, '2016-04-21 16:43:37', '2016-04-21 20:43:37', 'I am a first year Graduate student here at UConn. I earned a Bachelor of Arts at Eastern Connecticut State University in 2014 with a major in History and a Minor in Communications. Here in the Digital Media & Design department I am pursuing a Master of Fine Arts. My concentration is in website design and development. After commencement in May 2017 I hope to pursue a career in web design.', 'Brandon Nickle', '', 'inherit', 'closed', 'closed', '', '198-revision-v1', '', '', '2016-04-21 16:43:37', '2016-04-21 20:43:37', '', 198, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/198-revision-v1/', 0, 'revision', '', 0), +(200, 4, '2016-04-21 16:53:39', '2016-04-21 20:53:39', 'Born and raised in Bridgeport, CT and aspired to make prove the I can make it.', 'Carey Vo', '', 'publish', 'closed', 'closed', '', 'carey-vo', '', '', '2016-04-21 17:28:24', '2016-04-21 21:28:24', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=200', 0, 'member', '', 0), +(201, 4, '2016-04-21 16:48:04', '2016-04-21 20:48:04', 'I''m currently an undergraduate pursuing a future in the Web Design & Development World. In addition to the essential knowledge of HTML & CSS, I have become proficient in CSS compilers such as SASS and frameworks such as Bootstrap. I also have a background in Graphic Design which aids me in my design skills. I have designed the official logos for several campus organizations.', 'Michael Eduardo Rivera Jr', '', 'inherit', 'closed', 'closed', '', '194-revision-v1', '', '', '2016-04-21 16:48:04', '2016-04-21 20:48:04', '', 194, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/194-revision-v1/', 0, 'revision', '', 0), +(202, 4, '2016-04-21 16:53:39', '2016-04-21 20:53:39', 'Born and raised in Bridgeport, CT and aspired to make prove the I can make it.', 'Carey Vo', '', 'inherit', 'closed', 'closed', '', '200-revision-v1', '', '', '2016-04-21 16:53:39', '2016-04-21 20:53:39', '', 200, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/200-revision-v1/', 0, 'revision', '', 0), +(203, 4, '2016-04-21 16:57:35', '2016-04-21 20:57:35', 'ATION has presented so many opportunities to grow and work with other students who help me become a better artist and marketer. Collaborating with students from other concentrations helps you see projects and campaigns from different perspectives, making you a well rounded thinker. I love ATION and can''t wait to see where it takes off to!', 'Caity Duquette', '', 'publish', 'closed', 'closed', '', 'caity-duquette', '', '', '2016-04-21 16:57:35', '2016-04-21 20:57:35', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=203', 0, 'member', '', 0), +(204, 4, '2016-04-21 16:55:04', '2016-04-21 20:55:04', '', 'Caity Duquette', '', 'inherit', 'closed', 'closed', '', '203-revision-v1', '', '', '2016-04-21 16:55:04', '2016-04-21 20:55:04', '', 203, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/203-revision-v1/', 0, 'revision', '', 0), +(205, 4, '2016-04-21 16:55:21', '2016-04-21 20:55:21', 'I''m currently an undergraduate pursuing a future in the Web Design & Development World. In addition to the essential knowledge of HTML & CSS, I have become proficient in CSS compilers such as SASS and frameworks such as Bootstrap. I also have a background in Graphic Design which aids me in my design skills. I have designed the official logos for several campus organizations.', 'Michael Eduardo Rivera Jr', '', 'inherit', 'closed', 'closed', '', '194-revision-v1', '', '', '2016-04-21 16:55:21', '2016-04-21 20:55:21', '', 194, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/194-revision-v1/', 0, 'revision', '', 0), +(206, 4, '2016-04-21 16:55:34', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2016-04-21 16:55:34', '0000-00-00 00:00:00', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=206', 0, 'member', '', 0), +(207, 4, '2016-04-21 16:57:35', '2016-04-21 20:57:35', 'ATION has presented so many opportunities to grow and work with other students who help me become a better artist and marketer. Collaborating with students from other concentrations helps you see projects and campaigns from different perspectives, making you a well rounded thinker. I love ATION and can''t wait to see where it takes off to!', 'Caity Duquette', '', 'inherit', 'closed', 'closed', '', '203-revision-v1', '', '', '2016-04-21 16:57:35', '2016-04-21 20:57:35', '', 203, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/203-revision-v1/', 0, 'revision', '', 0), +(208, 4, '2016-04-21 16:59:27', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2016-04-21 16:59:27', '0000-00-00 00:00:00', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=208', 0, 'member', '', 0), +(209, 4, '2016-04-21 17:01:27', '2016-04-21 21:01:27', 'Michael Ell is a sophomore at the University of Connecticut (Storrs), studying Digital Media and Design with a concentration of Digital Media Strategies for Business, and expected minors in Business Fundamentals and Spanish. His digital background includes social media management, photography, web design, animation, short films, and other miscellaneous projects.', 'Michael Ell', '', 'publish', 'closed', 'closed', '', 'michael-ell', '', '', '2016-04-21 17:01:27', '2016-04-21 21:01:27', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=209', 0, 'member', '', 0), +(210, 4, '2016-04-21 17:01:27', '2016-04-21 21:01:27', 'Michael Ell is a sophomore at the University of Connecticut (Storrs), studying Digital Media and Design with a concentration of Digital Media Strategies for Business, and expected minors in Business Fundamentals and Spanish. His digital background includes social media management, photography, web design, animation, short films, and other miscellaneous projects.', 'Michael Ell', '', 'inherit', 'closed', 'closed', '', '209-revision-v1', '', '', '2016-04-21 17:01:27', '2016-04-21 21:01:27', '', 209, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/209-revision-v1/', 0, 'revision', '', 0), +(211, 4, '2016-04-21 17:06:06', '2016-04-21 21:06:06', 'Adventure Trip Leader | Researcher & Digital Media Designer | Library Lover | Writer | UConn Husky', 'Samantha Mairson', '', 'publish', 'closed', 'closed', '', 'samantha-mairson', '', '', '2016-04-21 17:28:22', '2016-04-21 21:28:22', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=211', 0, 'member', '', 0), +(212, 4, '2016-04-21 17:06:06', '2016-04-21 21:06:06', 'Adventure Trip Leader | Researcher & Digital Media Designer | Library Lover | Writer | UConn Husky', 'Samantha Mairson', '', 'inherit', 'closed', 'closed', '', '211-revision-v1', '', '', '2016-04-21 17:06:06', '2016-04-21 21:06:06', '', 211, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/211-revision-v1/', 0, 'revision', '', 0), +(213, 4, '2016-04-21 17:07:05', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2016-04-21 17:07:05', '0000-00-00 00:00:00', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=213', 0, 'member', '', 0), +(214, 4, '2016-04-21 17:16:42', '2016-04-21 21:16:42', 'Hi, I’m Bria! I’m a book nerd with an irrational fear of frogs. I love social listening, content creation, and project management. On the rare occasion that I leave the Bishop Center, you can find me re-reading Jane Eyre (for the 80 bajillionth time) or cross-stitching wayward things.', 'Brianna Ricciardone', '', 'publish', 'closed', 'closed', '', 'brianna-ricciardone', '', '', '2016-04-21 17:28:20', '2016-04-21 21:28:20', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=214', 0, 'member', '', 0), +(215, 4, '2016-04-21 17:16:42', '2016-04-21 21:16:42', 'Hi, I’m Bria! I’m a book nerd with an irrational fear of frogs. I love social listening, content creation, and project management. On the rare occasion that I leave the Bishop Center, you can find me re-reading Jane Eyre (for the 80 bajillionth time) or cross-stitching wayward things.', 'Brianna Ricciardone', '', 'inherit', 'closed', 'closed', '', '214-revision-v1', '', '', '2016-04-21 17:16:42', '2016-04-21 21:16:42', '', 214, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/214-revision-v1/', 0, 'revision', '', 0), +(216, 4, '2016-04-21 17:17:21', '2016-04-21 21:17:21', '', 'Aaron Seitz', '', 'publish', 'closed', 'closed', '', 'aaron-seitz', '', '', '2016-04-21 17:31:40', '2016-04-21 21:31:40', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=216', 0, 'member', '', 0), +(217, 4, '2016-04-21 17:22:56', '2016-04-21 21:22:56', '', 'Aaron Seitz', '', 'inherit', 'closed', 'closed', '', '216-revision-v1', '', '', '2016-04-21 17:22:56', '2016-04-21 21:22:56', '', 216, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/216-revision-v1/', 0, 'revision', '', 0), +(218, 4, '2016-04-21 17:26:37', '2016-04-21 21:26:37', '', 'Michelle Marquez', '', 'publish', 'closed', 'closed', '', 'michelle-marquez', '', '', '2016-04-21 17:26:37', '2016-04-21 21:26:37', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=218', 0, 'member', '', 0), +(219, 4, '2016-04-21 17:26:37', '2016-04-21 21:26:37', '', 'Michelle Marquez', '', 'inherit', 'closed', 'closed', '', '218-revision-v1', '', '', '2016-04-21 17:26:37', '2016-04-21 21:26:37', '', 218, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/218-revision-v1/', 0, 'revision', '', 0), +(220, 4, '2016-04-21 17:27:30', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2016-04-21 17:27:30', '0000-00-00 00:00:00', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=220', 0, 'member', '', 0), +(221, 4, '2016-04-21 17:31:40', '2016-04-21 21:31:40', '', 'Aaron Seitz', '', 'inherit', 'closed', 'closed', '', '216-revision-v1', '', '', '2016-04-21 17:31:40', '2016-04-21 21:31:40', '', 216, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/216-revision-v1/', 0, 'revision', '', 0), +(222, 4, '2016-04-21 17:34:58', '2016-04-21 21:34:58', '', 'Caitlin Liang', '', 'publish', 'closed', 'closed', '', 'caitlin-liang', '', '', '2016-04-21 17:34:58', '2016-04-21 21:34:58', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=222', 0, 'member', '', 0), +(223, 4, '2016-04-21 17:34:58', '2016-04-21 21:34:58', '', 'Caitlin Liang', '', 'inherit', 'closed', 'closed', '', '222-revision-v1', '', '', '2016-04-21 17:34:58', '2016-04-21 21:34:58', '', 222, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/222-revision-v1/', 0, 'revision', '', 0), +(224, 4, '2016-04-21 17:39:03', '2016-04-21 21:39:03', 'Professional Live Sound Engineer, Professional DJ', 'Mark Ciccone', '', 'publish', 'closed', 'closed', '', 'mark-ciccone', '', '', '2016-04-21 17:39:03', '2016-04-21 21:39:03', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=224', 0, 'member', '', 0), +(225, 4, '2016-04-21 17:39:03', '2016-04-21 21:39:03', 'Professional Live Sound Engineer, Professional DJ', 'Mark Ciccone', '', 'inherit', 'closed', 'closed', '', '224-revision-v1', '', '', '2016-04-21 17:39:03', '2016-04-21 21:39:03', '', 224, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/224-revision-v1/', 0, 'revision', '', 0), +(226, 4, '2016-04-21 17:41:26', '2016-04-21 21:41:26', '', 'Anthony Petrozza', '', 'publish', 'closed', 'closed', '', 'anthony-petrozza', '', '', '2016-04-21 17:41:26', '2016-04-21 21:41:26', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=226', 0, 'member', '', 0), +(227, 4, '2016-04-21 17:41:26', '2016-04-21 21:41:26', '', 'Anthony Petrozza', '', 'inherit', 'closed', 'closed', '', '226-revision-v1', '', '', '2016-04-21 17:41:26', '2016-04-21 21:41:26', '', 226, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/226-revision-v1/', 0, 'revision', '', 0), +(228, 4, '2016-04-21 17:48:31', '2016-04-21 21:48:31', 'Aspiring visionary digital marketer & content creator.', 'Matthew Mendonca', '', 'publish', 'closed', 'closed', '', 'matthew-mendonca', '', '', '2016-04-21 17:48:31', '2016-04-21 21:48:31', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=228', 0, 'member', '', 0), +(229, 4, '2016-04-21 17:48:31', '2016-04-21 21:48:31', 'Aspiring visionary digital marketer & content creator.', 'Matthew Mendonca', '', 'inherit', 'closed', 'closed', '', '228-revision-v1', '', '', '2016-04-21 17:48:31', '2016-04-21 21:48:31', '', 228, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/228-revision-v1/', 0, 'revision', '', 0), +(230, 4, '2016-04-21 17:48:35', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2016-04-21 17:48:35', '0000-00-00 00:00:00', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=230', 0, 'member', '', 0), +(231, 4, '2016-04-21 17:52:00', '2016-04-21 21:52:00', '', 'Daniel Scinto', '', 'publish', 'closed', 'closed', '', 'daniel-scinto', '', '', '2016-04-21 17:52:00', '2016-04-21 21:52:00', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=231', 0, 'member', '', 0), +(232, 4, '2016-04-21 17:52:00', '2016-04-21 21:52:00', '', 'Daniel Scinto', '', 'inherit', 'closed', 'closed', '', '231-revision-v1', '', '', '2016-04-21 17:52:00', '2016-04-21 21:52:00', '', 231, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/231-revision-v1/', 0, 'revision', '', 0), +(233, 4, '2016-04-21 17:54:00', '2016-04-21 21:54:00', '', 'Kate Bengston', '', 'publish', 'closed', 'closed', '', 'kate-bengston', '', '', '2016-04-21 17:54:00', '2016-04-21 21:54:00', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=233', 0, 'member', '', 0), +(234, 4, '2016-04-21 17:54:00', '2016-04-21 21:54:00', '', 'Kate Bengston', '', 'inherit', 'closed', 'closed', '', '233-revision-v1', '', '', '2016-04-21 17:54:00', '2016-04-21 21:54:00', '', 233, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/233-revision-v1/', 0, 'revision', '', 0), +(235, 4, '2016-04-21 17:57:21', '2016-04-21 21:57:21', 'Developing digital and durable products, services, and experiences.', 'Tyler Malboeuf', '', 'publish', 'closed', 'closed', '', 'tyler-malboeuf', '', '', '2016-04-21 17:57:21', '2016-04-21 21:57:21', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=235', 0, 'member', '', 0), +(236, 4, '2016-04-21 17:57:21', '2016-04-21 21:57:21', 'Developing digital and durable products, services, and experiences.', 'Tyler Malboeuf', '', 'inherit', 'closed', 'closed', '', '235-revision-v1', '', '', '2016-04-21 17:57:21', '2016-04-21 21:57:21', '', 235, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/235-revision-v1/', 0, 'revision', '', 0), +(237, 4, '2016-04-21 18:00:30', '2016-04-21 22:00:30', 'Music Producer, Novice Game Developer, Artist, and Designer', 'Jeremy T Cervone', '', 'publish', 'closed', 'closed', '', 'jeremy-t-cervone', '', '', '2016-04-21 18:00:30', '2016-04-21 22:00:30', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=237', 0, 'member', '', 0), +(238, 4, '2016-04-21 18:00:30', '2016-04-21 22:00:30', 'Music Producer, Novice Game Developer, Artist, and Designer', 'Jeremy T Cervone', '', 'inherit', 'closed', 'closed', '', '237-revision-v1', '', '', '2016-04-21 18:00:30', '2016-04-21 22:00:30', '', 237, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/237-revision-v1/', 0, 'revision', '', 0), +(239, 4, '2016-04-21 18:04:27', '2016-04-21 22:04:27', '', 'Jamie Buck', '', 'publish', 'closed', 'closed', '', 'jamie-buck', '', '', '2016-04-21 18:04:27', '2016-04-21 22:04:27', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=239', 0, 'member', '', 0), +(240, 4, '2016-04-21 18:04:27', '2016-04-21 22:04:27', '', 'Jamie Buck', '', 'inherit', 'closed', 'closed', '', '239-revision-v1', '', '', '2016-04-21 18:04:27', '2016-04-21 22:04:27', '', 239, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/239-revision-v1/', 0, 'revision', '', 0), +(241, 4, '2016-04-21 18:04:45', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2016-04-21 18:04:45', '0000-00-00 00:00:00', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=241', 0, 'member', '', 0), +(242, 4, '2016-04-21 18:07:28', '2016-04-21 22:07:28', '', 'Carlota Charles', '', 'publish', 'closed', 'closed', '', 'carlota-charles', '', '', '2016-04-21 18:07:28', '2016-04-21 22:07:28', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=242', 0, 'member', '', 0), +(243, 4, '2016-04-21 18:07:28', '2016-04-21 22:07:28', '', 'Carlota Charles', '', 'inherit', 'closed', 'closed', '', '242-revision-v1', '', '', '2016-04-21 18:07:28', '2016-04-21 22:07:28', '', 242, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/242-revision-v1/', 0, 'revision', '', 0), +(244, 4, '2016-04-21 18:10:20', '2016-04-21 22:10:20', 'Andrew grew up in suburban NYC where he pursued his passion in the arts and technology. He graduated from Greenwich High School and is continuing his studies at UConn Storrs DMD department. Since starting he has discovered talents in animation, graphic design, web development, and user experience design.', 'Andrew Wolf', '', 'publish', 'closed', 'closed', '', 'andrew-wolf', '', '', '2016-04-21 18:11:40', '2016-04-21 22:11:40', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=244', 0, 'member', '', 0), +(245, 4, '2016-04-21 18:10:20', '2016-04-21 22:10:20', 'Andrew grew up in suburban NYC where he pursued his passion in the arts and technology. He graduated from Greenwich High School and is continuing his studies at UConn Storrs DMD department. Since starting he has discovered talents in animation, graphic design, web development, and user experience design.', 'Andrew Wolf', '', 'inherit', 'closed', 'closed', '', '244-revision-v1', '', '', '2016-04-21 18:10:20', '2016-04-21 22:10:20', '', 244, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/244-revision-v1/', 0, 'revision', '', 0), +(246, 4, '2016-04-21 18:11:04', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2016-04-21 18:11:04', '0000-00-00 00:00:00', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=246', 0, 'member', '', 0), +(247, 4, '2016-04-21 18:12:41', '2016-04-21 22:12:41', '', 'Nic Panasci', '', 'publish', 'closed', 'closed', '', 'nic-panasci', '', '', '2016-04-21 18:12:41', '2016-04-21 22:12:41', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=247', 0, 'member', '', 0), +(248, 4, '2016-04-21 18:12:41', '2016-04-21 22:12:41', '', 'Nic Panasci', '', 'inherit', 'closed', 'closed', '', '247-revision-v1', '', '', '2016-04-21 18:12:41', '2016-04-21 22:12:41', '', 247, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/247-revision-v1/', 0, 'revision', '', 0), +(249, 4, '2016-04-21 18:16:21', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2016-04-21 18:16:21', '0000-00-00 00:00:00', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=249', 0, 'member', '', 0), +(250, 4, '2016-04-21 18:17:18', '2016-04-21 22:17:18', 'I love web development, wings, skiing, traveling, and long walks on the beach.', 'Brian Kelleher', '', 'inherit', 'closed', 'closed', '', '37-revision-v1', '', '', '2016-04-21 18:17:18', '2016-04-21 22:17:18', '', 37, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/37-revision-v1/', 0, 'revision', '', 0), +(251, 4, '2016-04-21 20:24:50', '2016-04-22 00:24:50', '', 'Ryan Glista', '', 'publish', 'closed', 'closed', '', 'ryan-glista', '', '', '2016-04-21 20:24:50', '2016-04-22 00:24:50', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=251', 0, 'member', '', 0), +(252, 4, '2016-04-21 20:24:50', '2016-04-22 00:24:50', '', 'Ryan Glista', '', 'inherit', 'closed', 'closed', '', '251-revision-v1', '', '', '2016-04-21 20:24:50', '2016-04-22 00:24:50', '', 251, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/251-revision-v1/', 0, 'revision', '', 0), +(253, 4, '2016-04-21 20:25:14', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2016-04-21 20:25:14', '0000-00-00 00:00:00', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=253', 0, 'member', '', 0), +(254, 4, '2016-04-21 21:37:07', '2016-04-22 01:37:07', '', 'Alex Loeung', '', 'publish', 'closed', 'closed', '', 'alex-loeung', '', '', '2016-04-21 21:37:07', '2016-04-22 01:37:07', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=254', 0, 'member', '', 0), +(255, 4, '2016-04-21 21:34:07', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2016-04-21 21:34:07', '0000-00-00 00:00:00', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=255', 0, 'member', '', 0), +(256, 4, '2016-04-21 21:34:34', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2016-04-21 21:34:34', '0000-00-00 00:00:00', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=256', 0, 'member', '', 0), +(257, 4, '2016-04-21 21:37:07', '2016-04-22 01:37:07', '', 'Alex Loeung', '', 'inherit', 'closed', 'closed', '', '254-revision-v1', '', '', '2016-04-21 21:37:07', '2016-04-22 01:37:07', '', 254, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/254-revision-v1/', 0, 'revision', '', 0), +(258, 4, '2016-04-21 21:45:07', '2016-04-22 01:45:07', 'Half Girl - Half Coffee, Fitness Instructor, Pinterest Addict, GO RED SOX', 'Hayley Reissfelder', '', 'publish', 'closed', 'closed', '', 'hayley-reissfelder', '', '', '2016-04-21 21:45:07', '2016-04-22 01:45:07', '', 0, 'http://ation.develop.digitalmediauconn.org/www/?post_type=member&p=258', 0, 'member', '', 0), +(259, 4, '2016-04-21 21:45:07', '2016-04-22 01:45:07', 'Half Girl - Half Coffee, Fitness Instructor, Pinterest Addict, GO RED SOX', 'Hayley Reissfelder', '', 'inherit', 'closed', 'closed', '', '258-revision-v1', '', '', '2016-04-21 21:45:07', '2016-04-22 01:45:07', '', 258, 'http://ation.develop.digitalmediauconn.org/www/2016/04/21/258-revision-v1/', 0, 'revision', '', 0), +(260, 2, '2016-04-26 08:29:32', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2016-04-26 08:29:32', '0000-00-00 00:00:00', '', 0, 'http://192.168.99.100/?p=260', 0, 'post', '', 0); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `wp_termmeta` +-- + +CREATE TABLE IF NOT EXISTS `wp_termmeta` ( + `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', + `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `meta_value` longtext COLLATE utf8mb4_unicode_ci, + PRIMARY KEY (`meta_id`), + KEY `term_id` (`term_id`), + KEY `meta_key` (`meta_key`(191)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `wp_terms` +-- + +CREATE TABLE IF NOT EXISTS `wp_terms` ( + `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `term_group` bigint(10) NOT NULL DEFAULT '0', + PRIMARY KEY (`term_id`), + KEY `slug` (`slug`(191)), + KEY `name` (`name`(191)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=16 ; + +-- +-- Dumping data for table `wp_terms` +-- + +INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES +(1, 'Uncategorized', 'uncategorized', 0), +(2, 'Primary', 'primary', 0), +(3, 'Spring 2016', 'spring-2016', 0), +(4, 'Fall 2015', 'fall-2015', 0), +(5, 'Spring 2015', 'spring-2015', 0), +(6, 'Fall 2014', 'fall-2014', 0), +(7, 'Spring 2014', 'spring-2014', 0), +(8, 'Social Media', 'social-media', 0), +(9, 'Web Design', 'web-design', 0), +(10, '2D/3D Animation & Video', '2d3d-animation', 0), +(11, 'Marketing & Strategy', 'marketing-strategy', 0), +(12, 'Fall 2016', 'fall-2016', 0), +(13, 'Trendsetting', 'trendsetting', 0), +(14, 'Creative', 'creative', 0), +(15, 'Spring 2017', 'spring-2017', 0); + +-- -------------------------------------------------------- + +-- +-- Table structure for 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=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- +-- Dumping data for table `wp_term_relationships` +-- + +INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES +(1, 1, 0), +(14, 2, 0), +(15, 2, 0), +(16, 2, 0), +(17, 2, 0), +(25, 8, 0), +(25, 9, 0), +(25, 10, 0), +(25, 11, 0), +(28, 10, 0), +(28, 11, 0), +(37, 3, 0), +(37, 12, 0), +(81, 3, 0), +(81, 4, 0), +(81, 7, 0), +(86, 3, 0), +(86, 5, 0), +(88, 3, 0), +(88, 4, 0), +(88, 12, 0), +(92, 3, 0), +(92, 4, 0), +(99, 11, 0), +(101, 11, 0), +(107, 10, 0), +(107, 14, 0), +(110, 10, 0), +(110, 14, 0), +(114, 14, 0), +(176, 3, 0), +(176, 5, 0), +(176, 12, 0), +(181, 4, 0), +(183, 3, 0), +(183, 12, 0), +(185, 3, 0), +(189, 3, 0), +(192, 3, 0), +(192, 4, 0), +(194, 3, 0), +(194, 12, 0), +(196, 3, 0), +(196, 12, 0), +(196, 15, 0), +(198, 3, 0), +(200, 3, 0), +(200, 4, 0), +(200, 7, 0), +(203, 3, 0), +(203, 5, 0), +(209, 3, 0), +(211, 3, 0), +(211, 4, 0), +(214, 3, 0), +(214, 5, 0), +(216, 3, 0), +(218, 3, 0), +(218, 4, 0), +(222, 3, 0), +(224, 4, 0), +(224, 12, 0), +(226, 3, 0), +(228, 3, 0), +(228, 4, 0), +(231, 3, 0), +(231, 4, 0), +(233, 3, 0), +(233, 5, 0), +(233, 12, 0), +(235, 3, 0), +(235, 5, 0), +(237, 3, 0), +(239, 3, 0), +(239, 6, 0), +(242, 3, 0), +(242, 4, 0), +(244, 3, 0), +(247, 3, 0), +(251, 3, 0), +(254, 3, 0), +(254, 4, 0); + +-- -------------------------------------------------------- + +-- +-- Table structure for 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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `description` longtext COLLATE utf8mb4_unicode_ci 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=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=16 ; + +-- +-- Dumping data for table `wp_term_taxonomy` +-- + +INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES +(1, 1, 'category', '', 0, 1), +(2, 2, 'nav_menu', '', 0, 4), +(3, 3, 'semester', '', 0, 33), +(4, 4, 'semester', '', 0, 13), +(5, 5, 'semester', '', 0, 6), +(6, 6, 'semester', '', 0, 1), +(7, 7, 'semester', '', 0, 2), +(8, 8, 'service', 'We are the demographic that uses social media the most. Let us design a social media plan that creatively reaches your target audience.', 0, 1), +(9, 9, 'service', 'A strong web presence is becoming the standard in the modern world, and we can help establish your brand''s online territory.', 0, 1), +(10, 10, 'service', 'Sometimes static content doesn''t tell your entire story. We''ll can bring it to life through stunning 2D / 3D animation.', 0, 4), +(11, 11, 'service', 'We value communication, and our team looks for elegant solutions to complex problems. We approach challenges strategically to ensure the success of our innovations.', 0, 4), +(12, 12, 'semester', '', 0, 8), +(13, 13, 'service', 'Something about a good story captures the human mind and imagination. One of our jobs is to help you tell your story, because we know that people will listen. We’ll get to the essence of your organization and help make others follow it.', 0, 0), +(14, 14, 'service', 'We like to think of ourselves as builders, animators, and producers. We take ideas and turn them into realities.', 0, 3), +(15, 15, 'semester', '', 0, 1); + +-- -------------------------------------------------------- + +-- +-- Table structure for 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) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `meta_value` longtext COLLATE utf8mb4_unicode_ci, + PRIMARY KEY (`umeta_id`), + KEY `user_id` (`user_id`), + KEY `meta_key` (`meta_key`(191)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=125 ; + +-- +-- Dumping data for table `wp_usermeta` +-- + +INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES +(1, 1, 'nickname', 'brian'), +(2, 1, 'first_name', 'Brian'), +(3, 1, 'last_name', 'Kelleher'), +(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', ''), +(13, 1, 'show_welcome_panel', '1'), +(14, 1, 'session_tokens', 'a:1:{s:64:"df93d4867d68e243b40ff7ecba3a89333ce19a67884b8105fd785b0a882d2ca1";a:4:{s:10:"expiration";i:1455574861;s:2:"ip";s:14:"24.177.249.116";s:2:"ua";s:121:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36";s:5:"login";i:1455402061;}}'), +(15, 1, 'wp_dashboard_quick_press_last_post_id', '3'), +(16, 2, 'nickname', 'bak11004'), +(17, 2, 'first_name', 'Brian'), +(18, 2, 'last_name', 'Kelleher'), +(19, 2, 'description', ''), +(20, 2, 'rich_editing', 'true'), +(21, 2, 'comment_shortcuts', 'false'), +(22, 2, 'admin_color', 'fresh'), +(23, 2, 'use_ssl', '0'), +(24, 2, 'show_admin_bar_front', 'true'), +(25, 2, 'wp_capabilities', 'a:1:{s:13:"administrator";b:1;}'), +(26, 2, 'wp_user_level', '10'), +(27, 2, 'dismissed_wp_pointers', ''), +(29, 2, 'wp_dashboard_quick_press_last_post_id', '260'), +(30, 3, 'nickname', 'rcg10003'), +(31, 3, 'first_name', 'Ryan'), +(32, 3, 'last_name', 'Glista'), +(33, 3, 'description', ''), +(34, 3, 'rich_editing', 'true'), +(35, 3, 'comment_shortcuts', 'false'), +(36, 3, 'admin_color', 'fresh'), +(37, 3, 'use_ssl', '0'), +(38, 3, 'show_admin_bar_front', 'true'), +(39, 3, 'wp_capabilities', 'a:1:{s:13:"administrator";b:1;}'), +(40, 3, 'wp_user_level', '10'), +(41, 3, 'dismissed_wp_pointers', ''), +(42, 4, 'nickname', 'mir12007'), +(43, 4, 'first_name', 'Michael'), +(44, 4, 'last_name', 'Rivera'), +(45, 4, 'description', ''), +(46, 4, 'rich_editing', 'true'), +(47, 4, 'comment_shortcuts', 'false'), +(48, 4, 'admin_color', 'fresh'), +(49, 4, 'use_ssl', '0'), +(50, 4, 'show_admin_bar_front', 'true'), +(51, 4, 'wp_capabilities', 'a:1:{s:13:"administrator";b:1;}'), +(52, 4, 'wp_user_level', '10'), +(53, 4, 'dismissed_wp_pointers', ''), +(54, 5, 'nickname', 'amp13055'), +(55, 5, 'first_name', 'Anthony'), +(56, 5, 'last_name', 'Petrozza'), +(57, 5, 'description', ''), +(58, 5, 'rich_editing', 'true'), +(59, 5, 'comment_shortcuts', 'false'), +(60, 5, 'admin_color', 'fresh'), +(61, 5, 'use_ssl', '0'), +(62, 5, 'show_admin_bar_front', 'true'), +(63, 5, 'wp_capabilities', 'a:1:{s:13:"administrator";b:1;}'), +(64, 5, 'wp_user_level', '10'), +(65, 5, 'dismissed_wp_pointers', ''), +(66, 6, 'nickname', 'iej12001'), +(67, 6, 'first_name', 'Ian'), +(68, 6, 'last_name', 'Jones'), +(69, 6, 'description', ''), +(70, 6, 'rich_editing', 'true'), +(71, 6, 'comment_shortcuts', 'false'), +(72, 6, 'admin_color', 'fresh'), +(73, 6, 'use_ssl', '0'), +(74, 6, 'show_admin_bar_front', 'true'), +(75, 6, 'wp_capabilities', 'a:1:{s:13:"administrator";b:1;}'), +(76, 6, 'wp_user_level', '10'), +(77, 6, 'dismissed_wp_pointers', ''), +(78, 7, 'nickname', 'ngp13002'), +(79, 7, 'first_name', 'Nicolas'), +(80, 7, 'last_name', 'Panasci'), +(81, 7, 'description', ''), +(82, 7, 'rich_editing', 'true'), +(83, 7, 'comment_shortcuts', 'false'), +(84, 7, 'admin_color', 'fresh'), +(85, 7, 'use_ssl', '0'), +(86, 7, 'show_admin_bar_front', 'true'), +(87, 7, 'wp_capabilities', 'a:1:{s:13:"administrator";b:1;}'), +(88, 7, 'wp_user_level', '10'), +(89, 7, 'dismissed_wp_pointers', ''), +(91, 2, 'managenav-menuscolumnshidden', 'a:4:{i:0;s:15:"title-attribute";i:1;s:11:"css-classes";i:2;s:3:"xfn";i:3;s:11:"description";}'), +(92, 2, 'metaboxhidden_nav-menus', 'a:2:{i:0;s:12:"add-post_tag";i:1;s:15:"add-post_format";}'), +(93, 2, 'nav_menu_recently_edited', '2'), +(94, 2, 'session_tokens', 'a:1:{s:64:"f46d6b716846f184cfbcaa59e8dda5d78266446ada10e12d9f521301cafb7b10";a:4:{s:10:"expiration";i:1461846572;s:2:"ip";s:12:"192.168.99.1";s:2:"ua";s:121:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36";s:5:"login";i:1461673772;}}'), +(95, 8, 'nickname', 'miv02001'), +(96, 8, 'first_name', 'Michael'), +(97, 8, 'last_name', 'Vertefeuille'), +(98, 8, 'description', ''), +(99, 8, 'rich_editing', 'true'), +(100, 8, 'comment_shortcuts', 'false'), +(101, 8, 'admin_color', 'fresh'), +(102, 8, 'use_ssl', '0'), +(103, 8, 'show_admin_bar_front', 'true'), +(104, 8, 'wp_capabilities', 'a:1:{s:13:"administrator";b:1;}'), +(105, 8, 'wp_user_level', '10'), +(106, 8, 'dismissed_wp_pointers', ''), +(107, 2, 'closedpostboxes_project', 'a:0:{}'), +(108, 2, 'metaboxhidden_project', 'a:1:{i:0;s:7:"slugdiv";}'), +(109, 2, 'wp_user-settings', 'editor=html&libraryContent=browse'), +(110, 2, 'wp_user-settings-time', '1460083498'), +(111, 2, 'closedpostboxes_member', 'a:0:{}'), +(112, 2, 'metaboxhidden_member', 'a:4:{i:0;s:6:"acf_50";i:1;s:6:"acf_39";i:2;s:10:"postcustom";i:3;s:7:"slugdiv";}'), +(113, 4, 'session_tokens', 'a:5:{s:64:"ccfa992a1c54e14c61c09f28bb7b6a67fdbd2f1f50dfb3342673fc5b10423a9e";a:4:{s:10:"expiration";i:1461345755;s:2:"ip";s:14:"137.99.174.196";s:2:"ua";s:114:"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36";s:5:"login";i:1461172955;}s:64:"095fcf72e4a769e78707558a79ef5248f85df0a26578ad2c4695da87ed5baa75";a:4:{s:10:"expiration";i:1461432917;s:2:"ip";s:12:"67.221.84.76";s:2:"ua";s:114:"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36";s:5:"login";i:1461260117;}s:64:"2c0a767cfa253ab64e2fc47bd4520a785de1940654b5408a9c9bee318c2c473d";a:4:{s:10:"expiration";i:1461441062;s:2:"ip";s:13:"67.221.71.151";s:2:"ua";s:114:"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36";s:5:"login";i:1461268262;}s:64:"51f0904bfd56c09dabb2ac47f5ed36c54582d1158df539484c9bd0003d8a9b8b";a:4:{s:10:"expiration";i:1461460731;s:2:"ip";s:12:"50.28.166.62";s:2:"ua";s:114:"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36";s:5:"login";i:1461287931;}s:64:"61115eee92445643db6844a6d815a04bae6e9c052780052221e6bb5857bc76af";a:4:{s:10:"expiration";i:1461462885;s:2:"ip";s:12:"50.28.166.62";s:2:"ua";s:114:"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36";s:5:"login";i:1461290085;}}'), +(114, 4, 'wp_dashboard_quick_press_last_post_id', '122'), +(115, 7, 'session_tokens', 'a:1:{s:64:"9ab5205aaa04c09e46b38f09e396eca9f847401a244584bb86a816192eac5a2e";a:4:{s:10:"expiration";i:1459451117;s:2:"ip";s:13:"137.99.108.10";s:2:"ua";s:120:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.87 Safari/537.36";s:5:"login";i:1459278317;}}'), +(116, 7, 'wp_dashboard_quick_press_last_post_id', '45'), +(117, 2, 'closedpostboxes_acf', 'a:0:{}'), +(118, 2, 'metaboxhidden_acf', 'a:1:{i:0;s:7:"slugdiv";}'), +(119, 5, 'session_tokens', 'a:1:{s:64:"1abf6fb0a1336562839072ef9622e51457ffef93e57c1f5721b45eef0e646be6";a:4:{s:10:"expiration";i:1460228566;s:2:"ip";s:14:"137.99.108.215";s:2:"ua";s:114:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56";s:5:"login";i:1460055766;}}'), +(120, 5, 'wp_dashboard_quick_press_last_post_id', '78'), +(121, 4, 'wp_user-settings', 'libraryContent=browse&editor=tinymce'), +(122, 4, 'wp_user-settings-time', '1460653633'), +(123, 4, 'closedpostboxes_member', 'a:0:{}'), +(124, 4, 'metaboxhidden_member', 'a:5:{i:0;s:6:"acf_50";i:1;s:6:"acf_95";i:2;s:6:"acf_39";i:3;s:10:"postcustom";i:4;s:7:"slugdiv";}'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `wp_users` +-- + +CREATE TABLE IF NOT EXISTS `wp_users` ( + `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `user_status` int(11) NOT NULL DEFAULT '0', + `display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`ID`), + KEY `user_login_key` (`user_login`), + KEY `user_nicename` (`user_nicename`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=9 ; + +-- +-- Dumping data for 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, 'brian', '$P$B9nMO1kHQF9xmyZjN3n.ZK4e6lZVVt/', 'brian', 'brian.kelleher@uconn.edu', '', '2016-02-13 22:20:57', '', 0, 'Brian Kelleher'), +(2, 'bak11004', '$P$BOa1JbLkFDMOlItOHUbmVVf9u3NIgE0', 'bak11004', 'bk@uconn.edu', '', '2016-02-14 02:52:41', '1455418363:$P$B613TK3KdycWPONeI6IAT9vj./FI9J.', 0, 'Brian Kelleher'), +(3, 'rcg10003', '$P$BTeCJ9zG8YEi0ZnXA7f3y.p0jg7BKP1', 'rcg10003', 'ryan.glista@uconn.edu', '', '2016-02-14 03:42:40', '1455421360:$P$BYB/32rd/oFPaoaZ8bwR0YCMsriH8z0', 0, 'Ryan Glista'), +(4, 'mir12007', '$P$BsQ65EaR0vT6lJd.FAqRJdiDUFaELy0', 'mir12007', 'michael.rivera@uconn.edu', '', '2016-02-14 03:49:17', '1455421757:$P$BTurZ2gjNkdXETRbN5hMbBFEeEiehd0', 0, 'Michael Rivera'), +(5, 'amp13055', '$P$Br2I0A9ZaFjQhOG.U0UXlazrhJc4ci0', 'amp13055', 'anthony.petrozza@uconn.edu', '', '2016-02-14 03:50:31', '1455421831:$P$BbmoENZEWr4R87UX/Zg23bHo1WLJcu/', 0, 'Anthony Petrozza'), +(6, 'iej12001', '$P$BBp8eiHgBba9KHKeOj9ktEfshermX0.', 'iej12001', 'ian.jones@uconn.edu', '', '2016-02-14 03:53:37', '1455422017:$P$BxcPfFKwdX3/HgzxY43Ucj8uzDpQHC0', 0, 'Ian Jones'), +(7, 'ngp13002', '$P$BIt5tVuYdW4MgJekGynjptTy56OjD3/', 'ngp13002', 'nicolas.panasci@uconn.edu', '', '2016-02-14 03:54:49', '1455422089:$P$BRcnjQssU1pNN8RhHG7royNEQ7gCJz1', 0, 'Nicolas Panasci'), +(8, 'miv02001', '$P$BD00bRQvoRuf2iSjIPs4cw.awkkexU.', 'miv02001', 'michael.vertefeuille@uconn.edu', '', '2016-03-03 21:39:57', '1457041197:$P$BGMdDdZHA8sek4rWsRaY/6qvimOoAA0', 0, 'Michael Vertefeuille'); + +/*!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 */; diff --git a/docker-compose-prod.yml b/docker-compose-prod.yml index caccd0e..55fded3 100644 --- a/docker-compose-prod.yml +++ b/docker-compose-prod.yml @@ -3,4 +3,15 @@ wordpress: image: wordpress:4.5-apache cpu_shares: 10 ports: - - 80:80 \ No newline at end of file + - 80:80 + links: + - db:mysql + mem_limit: 500000000 + +db: + image: mysql + cpu_shares: 10 + volumes: + - data:/docker-entrypoint-initdb.d + env_file: env/sql-prod.env + mem_limit: 500000000 \ No newline at end of file diff --git a/env/production.env b/env/production.env index 391afd1..e69fca3 100644 --- a/env/production.env +++ b/env/production.env @@ -1,5 +1,4 @@ -WORDPRESS_DB_HOST=develop.digitalmediauconn.org WORDPRESS_DB_USER=ation -WORDPRESS_DB_PASSWORD=ationmedia +WORDPRESS_DB_PASSWORD=123ationdigitalmedia WORDPRESS_DB_NAME=ation WORDPRESS_TABLE_PREFIX=wp_ \ No newline at end of file diff --git a/env/sql-prod.env b/env/sql-prod.env new file mode 100644 index 0000000..52c9f4f --- /dev/null +++ b/env/sql-prod.env @@ -0,0 +1,4 @@ +MYSQL_ROOT_PASSWORD=f24uo23o23oi23jojo23 +MYSQL_USER=ation +MYSQL_PASSWORD=123ationdigitalmedia +MYSQL_DATABASE=ation \ No newline at end of file