Skip to content

Commit

Permalink
publish 3.0 updating to pol.st
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbutler committed Mar 4, 2017
0 parents commit 658340f
Show file tree
Hide file tree
Showing 56 changed files with 4,494 additions and 0 deletions.
1 change: 1 addition & 0 deletions .svn/entries
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
12
1 change: 1 addition & 0 deletions .svn/format
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
12
Binary file not shown.
30 changes: 30 additions & 0 deletions .svn/pristine/09/097446fbb84a9fd4977287dfabb1ba6086417d67.svn-base
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Copyright (C) 2017 Platform Thirteen, LLC
msgid ""
msgstr ""
"Project-Id-Version: 3.0.0\n"
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/polstir\n"
"POT-Creation-Date: 2014-03-1 12:00:00+00:00\n"
"PO-Revision-Date: 2014-03-1 12:00-0500\n"
"Last-Translator: Polstir Admin <[email protected]>\n"
"Language-Team: Polstir <[email protected] >\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.5.7\n"
"X-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
"esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
"X-Poedit-Basepath: ../\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Poedit-SearchPath-0: .\n"

#: class-plugin-name-admin.php:170
msgid "Page Title"
msgstr ""

#: class-plugin-name-admin.php:171
msgid "Menu Text"
msgstr ""

#: class-plugin-name-admin.php:197
msgid "Settings"
msgstr ""
48 changes: 48 additions & 0 deletions .svn/pristine/0c/0c20993d1a8ab644418f17acdc17d5c5f33396b1.svn-base
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?php
/**
* The WordPress Plugin Boilerplate.
*
* A foundation off of which to build well-documented WordPress plugins that
* also follow WordPress Coding Standards and PHP best practices.
*
* @package Polstir
* @author Polstir Admin <[email protected]>
* @license GPL-2.0+
* @link http://polstir.com
* @copyright 2015 Zazoola, Inc
*
* @wordpress-plugin
* Plugin Name: Polstir
* Plugin URI: http://beta.polstir.com/
* Description: Embed polls created with Polstir using the shortcode [polstir].
* Version: 2.0.1
* Author: Polstir
* Author URI: http://polstir.com/
* Text Domain: plugin-name-locale
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Domain Path: /languages
* GitHub Plugin URI: https://github.com/zazoola/wp-polstir
*/

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}

/*----------------------------------------------------------------------------*
* Embed Functionality
*----------------------------------------------------------------------------*/
require_once( plugin_dir_path( __FILE__ ) . 'public/class-polstir.php' );

/*
* Register hooks that are fired when the plugin is activated or deactivated.
*/
register_activation_hook( __FILE__, array( 'Polstir', 'activate' ) );
register_deactivation_hook( __FILE__, array( 'Polstir', 'deactivate' ) );

/*
* Load plugin and add shortcode.
*/
add_action( 'plugins_loaded', array( 'Polstir', 'get_instance' ) );
add_shortcode( 'polstir', array( Polstir::get_instance(), 'polstir_embed_code' ) );
55 changes: 55 additions & 0 deletions .svn/pristine/12/120d19840e669346fabead7f67ce96b488f25165.svn-base
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
=== Polstir ===
Contributors: polstir
Tags: polls
Requires at least: 3.1
Tested up to: 3.9.0
Stable tag: 1.1.1

Embed polls created with Polstir using the shortcode [polstir].

== Description ==

Embed polls created with Polstir using the shortcode [polstir].

== Installation ==

This section describes how to install the plugin and get it working.

= Using The WordPress Dashboard =

1. Navigate to the 'Add New' in the plugins dashboard
2. Search for 'polstir'
3. Click 'Install Now'
4. Activate the plugin on the Plugin dashboard

= Uploading in WordPress Dashboard =

1. Navigate to the 'Add New' in the plugins dashboard
2. Navigate to the 'Upload' area
3. Select `polstir.zip` from your computer
4. Click 'Install Now'
5. Activate the plugin in the Plugin dashboard

= Using FTP =

1. Download `polstir.zip`
2. Extract the `polstir` directory to your computer
3. Upload the `polstir` directory to the `/wp-content/plugins/` directory
4. Activate the plugin in the Plugin dashboard

= Usage =

Embed a poll using the shortcode `[polstir]` and the poll id. For example, to embed a poll with the url `http://beta.polstir.com/polstirmedia/WprcRTTygnQtSdvFP/` use the shortcode `[polstir WprcRTTygnQtSdvFP]`

== Screenshots ==

1. Publishing a post with a poll shortcode
2. Sample embedded poll with comments

== Changelog ==

= 1.0 =
* Enable shortcode embedding

= 1.1 =
* Updated embed script and documentation
48 changes: 48 additions & 0 deletions .svn/pristine/13/13ee82bb1a089842f519e7611266806d0ed17e2c.svn-base
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?php
/**
* The WordPress Plugin Boilerplate.
*
* A foundation off of which to build well-documented WordPress plugins that
* also follow WordPress Coding Standards and PHP best practices.
*
* @package Polstir
* @author Polstir Admin <[email protected]>
* @license GPL-2.0+
* @link http://polstir.com
* @copyright 2015 Zazoola, Inc
*
* @wordpress-plugin
* Plugin Name: Polstir
* Plugin URI: http://beta.polstir.com/
* Description: Embed polls created with Polstir using the shortcode [polstir].
* Version: 1.5.0
* Author: Polstir
* Author URI: http://polstir.com/
* Text Domain: plugin-name-locale
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Domain Path: /languages
* GitHub Plugin URI: https://github.com/zazoola/wp-polstir
*/

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}

/*----------------------------------------------------------------------------*
* Embed Functionality
*----------------------------------------------------------------------------*/
require_once( plugin_dir_path( __FILE__ ) . 'public/class-polstir.php' );

/*
* Register hooks that are fired when the plugin is activated or deactivated.
*/
register_activation_hook( __FILE__, array( 'Polstir', 'activate' ) );
register_deactivation_hook( __FILE__, array( 'Polstir', 'deactivate' ) );

/*
* Load plugin and add shortcode.
*/
add_action( 'plugins_loaded', array( 'Polstir', 'get_instance' ) );
add_shortcode( 'polstir', array( Polstir::get_instance(), 'polstir_embed_code' ) );
48 changes: 48 additions & 0 deletions .svn/pristine/14/14bfd8fd4132add01eeabaf5d84a4b983e26aac6.svn-base
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?php
/**
* The WordPress Plugin Boilerplate.
*
* A foundation off of which to build well-documented WordPress plugins that
* also follow WordPress Coding Standards and PHP best practices.
*
* @package Polstir
* @author Polstir Admin <[email protected]>
* @license GPL-2.0+
* @link http://pol.st
* @copyright 2017 Platform Thirteen, LLC
*
* @wordpress-plugin
* Plugin Name: Polstir
* Plugin URI: http://wp.pol.st/
* Description: Embed polls created with Polstir using the shortcode [polstir].
* Version: 3.0.0
* Author: Polstir
* Author URI: http://pol.st/
* Text Domain: plugin-name-locale
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Domain Path: /languages
* GitHub Plugin URI: https://github.com/polstir/wordpress
*/

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}

/*----------------------------------------------------------------------------*
* Embed Functionality
*----------------------------------------------------------------------------*/
require_once( plugin_dir_path( __FILE__ ) . 'public/class-polstir.php' );

/*
* Register hooks that are fired when the plugin is activated or deactivated.
*/
register_activation_hook( __FILE__, array( 'Polstir', 'activate' ) );
register_deactivation_hook( __FILE__, array( 'Polstir', 'deactivate' ) );

/*
* Load plugin and add shortcode.
*/
add_action( 'plugins_loaded', array( 'Polstir', 'get_instance' ) );
add_shortcode( 'polstir', array( Polstir::get_instance(), 'polstir_embed_code' ) );
Loading

0 comments on commit 658340f

Please sign in to comment.