Archive for the ‘’ Category
+ +Posts Tagged ‘’
+ +Archive for
+ +Archive for
+ +Archive for
+ +Author Archive
++
Blog Archives
+ + + + + + ++ +
+
+
+
+
diff --git a/.gitsubmodules b/.gitsubmodules new file mode 100644 index 0000000..e73567f --- /dev/null +++ b/.gitsubmodules @@ -0,0 +1,3 @@ +[submodule "coreylib-wordpress-plugin"] + path = /blog/wp-content/plugins/coreylib-wordpress-plugin + url = git@github.com:kennethreitz/coreylib-wordpress-plugin.git \ No newline at end of file diff --git a/blog/wp-content/plugins/custom-post-template/custom-post-templates.php b/blog/wp-content/plugins/custom-post-template/custom-post-templates.php new file mode 100644 index 0000000..0c804ac --- /dev/null +++ b/blog/wp-content/plugins/custom-post-template/custom-post-templates.php @@ -0,0 +1,147 @@ +tpl_meta_key = 'custom_post_template'; + // Init hooks and all that + $this->register_plugin ( 'post-templates', __FILE__ ); + $this->add_meta_box( 'select_post_template', __('Post Template'), 'select_post_template', 'post', 'side', 'default' ); + $this->add_action( 'save_post' ); + $this->add_filter( 'single_template', 'filter_single_template' ); + } + + /* + * FILTERS & ACTIONS + * ******************* + */ + + public function select_post_template( $post ) + { + $this->post_ID = $post->ID; + + $template_vars = array(); + $template_vars[ 'templates' ] = $this->get_post_templates(); + $template_vars[ 'custom_template' ] = $this->get_custom_post_template(); + + // Render the template + $this->render_admin ( 'select_post_template', $template_vars ); + } + + public function save_post( $post_ID ) + { + $action_needed = (bool) @ $_POST[ 'custom_post_template_present' ]; + if ( ! $action_needed ) return; + + $this->post_ID = $post_ID; + + $template = (string) @ $_POST[ 'custom_post_template' ]; + $this->set_custom_post_template( $template ); + } + + public function filter_single_template( $template ) + { + global $wp_query; + + $this->post_ID = $wp_query->post->ID; + + $template_file = $this->get_custom_post_template(); + $custom_template = TEMPLATEPATH . "/" . $template_file; + // Check both the template file and the full path, otherwise you discover that the theme dir + // exists (which is not surprising) + if ( $template_file && file_exists( $custom_template ) ) return $custom_template; + + return $template; + } + + /* + * UTILITY METHODS + * ***************** + */ + + protected function set_custom_post_template( $template ) + { + delete_post_meta( $this->post_ID, $this->tpl_meta_key ); + if ( ! $template || $template == 'default' ) return; + + add_post_meta( $this->post_ID, $this->tpl_meta_key, $template ); + } + + protected function get_custom_post_template() + { + $custom_template = get_post_meta( $this->post_ID, $this->tpl_meta_key, true ); + return $custom_template; + } + + protected function get_post_templates() + { + $themes = get_themes(); + $theme = get_current_theme(); + $templates = $themes[ $theme ][ 'Template Files' ]; + + $page_templates = array(); + + if ( is_array( $templates ) ) { + foreach ( $templates as $template ) { + // Get the file data and collapse it into a single string + $template_data = implode( '', file( $template ) ); + if ( ! preg_match( '|Template Name Posts:(.*)$|mi', $template_data, $name ) ) + continue; + + $name = _cleanup_header_comment( $name[ 1 ] ); + + $page_templates[ trim( $name ) ] = basename( $template ); + } + } + + return $page_templates; + } +} + +/** + * Instantiate the plugin + * + * @global + **/ + +$CustomPostTemplates = new CustomPostTemplates(); + +?> \ No newline at end of file diff --git a/blog/wp-content/plugins/custom-post-template/plugin.php b/blog/wp-content/plugins/custom-post-template/plugin.php new file mode 100644 index 0000000..91efaac --- /dev/null +++ b/blog/wp-content/plugins/custom-post-template/plugin.php @@ -0,0 +1,676 @@ +Display Rendering + * The class uses a similar technique to Ruby On Rails views, whereby the display HTML is kept + * in a separate directory and file from the main code. A display is 'rendered' (sent to the browser) + * or 'captured' (returned to the calling function). + * + * Template files are separated into two areas: admin and user. Admin templates are only for display in + * the WordPress admin interface, while user templates are typically for display on the site (although neither + * of these are enforced). All templates are PHP code, but are referred to without .php extension. + * + * The reason for this separation is that one golden rule of plugin creation is that someone will always want to change + * the formatting and style of your output. Rather than forcing them to modify the plugin (bad), or modify files within + * the plugin (equally bad), the class allows user templates to be overridden with files contained within the theme. + * + * An additional benefit is that it leads to code re-use, especially with regards to Ajax (i.e. your display code can be called from + * many locations) + * + * Template files are located within the 'view' subdirectory of the plugins base (specified when registering the plugin): + * + *
myplugin/view/admin + * myplugin/view/myplugin+ * + * Admin templates are contained within 'admin', and user templates are contained within a directory of the same name as the plugin. + * + * User files can be overridden within the theme by creating a similar directory structure: + * + *
/themes/mytheme/view/myplugin+ * + * The class will first look in the theme and then defaults to the plugin. A plugin should always provide default templates. + * + *
<p>You processed <?php echo $items ?> items</p>+ * + * When you want to display this in your plugin you use: + * + *
$this->render_admin ('processed', array ('items' => 100));
+ *
+ * @package WordPress base library
+ * @author John Godley
+ * @copyright Copyright (C) John Godley
+ **/
+
+class CustomPostTemplates_Plugin
+{
+ /**
+ * Plugin name
+ * @var string
+ **/
+ var $plugin_name;
+
+ /**
+ * Plugin 'view' directory
+ * @var string Directory
+ **/
+ var $plugin_base;
+
+
+ /**
+ * Register your plugin with a name and base directory. This must be called once.
+ *
+ * @param string $name Name of your plugin. Is used to determine the plugin locale domain
+ * @param string $base Directory containing the plugin's 'view' files.
+ * @return void
+ **/
+
+ function register_plugin ($name, $base)
+ {
+ $this->plugin_base = rtrim (dirname ($base), '/');
+ $this->plugin_name = $name;
+
+ $this->add_action ('init', 'load_locale');
+ }
+
+ function load_locale ()
+ {
+ // Here we manually fudge the plugin locale as WP doesnt allow many options
+ $locale = get_locale ();
+ if ( empty($locale) )
+ $locale = 'en_US';
+
+ $mofile = dirname (__FILE__)."/locale/$locale.mo";
+ load_textdomain ($this->plugin_name, $mofile);
+ }
+
+
+ /**
+ * Register a WordPress action and map it back to the calling object
+ *
+ * @param string $action Name of the action
+ * @param string $function Function name (optional)
+ * @param int $priority WordPress priority (optional)
+ * @param int $accepted_args Number of arguments the function accepts (optional)
+ * @return void
+ **/
+
+ function add_action ($action, $function = '', $priority = 10, $accepted_args = 1)
+ {
+ add_action ($action, array (&$this, $function == '' ? $action : $function), $priority, $accepted_args);
+ }
+
+
+ /**
+ * Register a WordPress filter and map it back to the calling object
+ *
+ * @param string $action Name of the action
+ * @param string $function Function name (optional)
+ * @param int $priority WordPress priority (optional)
+ * @param int $accepted_args Number of arguments the function accepts (optional)
+ * @return void
+ **/
+
+ function add_filter ($filter, $function = '', $priority = 10, $accepted_args = 1)
+ {
+ add_filter ($filter, array (&$this, $function == '' ? $filter : $function), $priority, $accepted_args);
+ }
+
+
+ /**
+ * Register a WordPress meta box
+ *
+ * @param string $id ID for the box, also used as a function name if none is given
+ * @param string $title Title for the box
+ * @param int $page WordPress priority (optional)
+ * @param string $function Function name (optional)
+ * @param string $context e.g. 'advanced' or 'core' (optional)
+ * @param int $priority Priority, rough effect on the ordering (optional)
+ * @return void
+ **/
+
+ function add_meta_box($id, $title, $function = '', $page, $context = 'advanced', $priority = 'default')
+ {
+ require_once( ABSPATH . 'wp-admin/includes/template.php' );
+ add_meta_box( $id, $title, array( &$this, $function == '' ? $id : $function ), $page, $context, $priority );
+ }
+
+ /**
+ * Special activation function that takes into account the plugin directory
+ *
+ * @param string $pluginfile The plugin file location (i.e. __FILE__)
+ * @param string $function Optional function name, or default to 'activate'
+ * @return void
+ **/
+
+ function register_activation ($pluginfile, $function = '')
+ {
+ add_action ('activate_'.basename (dirname ($pluginfile)).'/'.basename ($pluginfile), array (&$this, $function == '' ? 'activate' : $function));
+ }
+
+
+ /**
+ * Special deactivation function that takes into account the plugin directory
+ *
+ * @param string $pluginfile The plugin file location (i.e. __FILE__)
+ * @param string $function Optional function name, or default to 'deactivate'
+ * @return void
+ **/
+
+ function register_deactivation ($pluginfile, $function = '')
+ {
+ add_action ('deactivate_'.basename (dirname ($pluginfile)).'/'.basename ($pluginfile), array (&$this, $function == '' ? 'deactivate' : $function));
+ }
+
+
+ /**
+ * Renders an admin section of display code
+ *
+ * @param string $ug_name Name of the admin file (without extension)
+ * @param string $array Array of variable name=>value that is available to the display code (optional)
+ * @return void
+ **/
+
+ function render_admin ($ug_name, $ug_vars = array ())
+ {
+ global $plugin_base;
+ foreach ($ug_vars AS $key => $val)
+ $$key = $val;
+
+ if (file_exists ("{$this->plugin_base}/view/admin/$ug_name.php"))
+ include ("{$this->plugin_base}/view/admin/$ug_name.php");
+ else
+ echo "Rendering of admin template {$this->plugin_base}/view/admin/$ug_name.php failed
";
+ }
+
+
+ /**
+ * Renders a section of user display code. The code is first checked for in the current theme display directory
+ * before defaulting to the plugin
+ *
+ * @param string $ug_name Name of the admin file (without extension)
+ * @param string $array Array of variable name=>value that is available to the display code (optional)
+ * @return void
+ **/
+
+ function render ($ug_name, $ug_vars = array ())
+ {
+ foreach ($ug_vars AS $key => $val)
+ $$key = $val;
+
+ if (file_exists (TEMPLATEPATH."/view/{$this->plugin_name}/$ug_name.php"))
+ include (TEMPLATEPATH."/view/{$this->plugin_name}/$ug_name.php");
+ else if (file_exists ("{$this->plugin_base}/view/{$this->plugin_name}/$ug_name.php"))
+ include ("{$this->plugin_base}/view/{$this->plugin_name}/$ug_name.php");
+ else
+ echo "Rendering of template $ug_name.php failed
";
+ }
+
+
+ /**
+ * Renders a section of user display code. The code is first checked for in the current theme display directory
+ * before defaulting to the plugin
+ *
+ * @param string $ug_name Name of the admin file (without extension)
+ * @param string $array Array of variable name=>value that is available to the display code (optional)
+ * @return void
+ **/
+
+ function capture ($ug_name, $ug_vars = array ())
+ {
+ ob_start ();
+ $this->render ($ug_name, $ug_vars);
+ $output = ob_get_contents ();
+ ob_end_clean ();
+ return $output;
+ }
+
+
+ /**
+ * Captures an admin section of display code
+ *
+ * @param string $ug_name Name of the admin file (without extension)
+ * @param string $array Array of variable name=>value that is available to the display code (optional)
+ * @return string Captured code
+ **/
+
+ function capture_admin ($ug_name, $ug_vars = array ())
+ {
+ ob_start ();
+ $this->render_admin ($ug_name, $ug_vars);
+ $output = ob_get_contents ();
+ ob_end_clean ();
+ return $output;
+ }
+
+
+ /**
+ * Display a standard error message (using CSS ID 'message' and classes 'fade' and 'error)
+ *
+ * @param string $message Message to display
+ * @return void
+ **/
+
+ function render_error ($message)
+ {
+ ?>
+
+
+
+
+
+
+
+ plugin_base;
+ }
+
+
+ /**
+ * Get a URL to the plugin. Useful for specifying JS and CSS files
+ *
+ * For example,
+ *
+ * @return string URL
+ **/
+
+ function url ($url = '')
+ {
+ if ($url)
+ return str_replace ('\\', urlencode ('\\'), str_replace ('&', '&', str_replace ('&', '&', $url)));
+ else
+ {
+ $root = ABSPATH;
+ if (defined ('WP_PLUGIN_DIR'))
+ $root = WP_PLUGIN_DIR;
+
+ $url = substr ($this->plugin_base, strlen ($this->realpath ($root)));
+ if (DIRECTORY_SEPARATOR != '/')
+ $url = str_replace (DIRECTORY_SEPARATOR, '/', $url);
+
+ if (defined ('WP_PLUGIN_URL'))
+ $url = WP_PLUGIN_URL.'/'.ltrim ($url, '/');
+ else
+ $url = get_bloginfo ('wpurl').'/'.ltrim ($url, '/');
+
+ // Do an SSL check - only works on Apache
+ global $is_IIS;
+ if (isset ($_SERVER['HTTPS']) && !$is_IIS)
+ $url = str_replace ('http://', 'https://', $url);
+ }
+ return $url;
+ }
+
+ /**
+ * Performs a version update check using an RSS feed. The function ensures that the feed is only
+ * hit once every given number of days, and the data is cached using the WordPress Magpie library
+ *
+ * @param string $url URL of the RSS feed
+ * @param int $days Number of days before next check
+ * @return string Text to display
+ **/
+
+ function version_update ($url, $days = 7)
+ {
+ if (!function_exists ('fetch_rss'))
+ {
+ if (!file_exists (ABSPATH.'wp-includes/rss.php'))
+ return '';
+ include (ABSPATH.'wp-includes/rss.php');
+ }
+
+ $now = time ();
+
+ $checked = get_option ('plugin_urbangiraffe_rss');
+
+ // Use built-in Magpie caching
+ if (function_exists ('fetch_rss') && (!isset ($checked[$this->plugin_name]) || $now > $checked[$this->plugin_name] + ($days * 24 * 60 * 60)))
+ {
+ $rss = fetch_rss ($url);
+ if (count ($rss->items) > 0)
+ {
+ foreach ($rss->items AS $pos => $item)
+ {
+ if (isset ($checked[$this->plugin_name]) && strtotime ($item['pubdate']) < $checked[$this->plugin_name])
+ unset ($rss->items[$pos]);
+ }
+ }
+
+ $checked[$this->plugin_name] = $now;
+ update_option ('plugin_urbangiraffe_rss', $checked);
+ return $rss;
+ }
+ }
+
+
+ /**
+ * Version of realpath that will work on systems without realpath
+ *
+ * @param string $path The path to canonicalize
+ * @return string Canonicalized path
+ **/
+
+ function realpath ($path)
+ {
+ if (function_exists ('realpath'))
+ return realpath ($path);
+ else if (DIRECTORY_SEPARATOR == '/')
+ {
+ $path = preg_replace ('/^~/', $_SERVER['DOCUMENT_ROOT'], $path);
+
+ // canonicalize
+ $path = explode (DIRECTORY_SEPARATOR, $path);
+ $newpath = array ();
+ for ($i = 0; $i < sizeof ($path); $i++)
+ {
+ if ($path[$i] === '' || $path[$i] === '.')
+ continue;
+
+ if ($path[$i] === '..')
+ {
+ array_pop ($newpath);
+ continue;
+ }
+
+ array_push ($newpath, $path[$i]);
+ }
+
+ $finalpath = DIRECTORY_SEPARATOR.implode (DIRECTORY_SEPARATOR, $newpath);
+ return $finalpath;
+ }
+
+ return $path;
+ }
+
+
+ function checked ($item, $field = '')
+ {
+ if ($field && is_array ($item))
+ {
+ if (isset ($item[$field]) && $item[$field])
+ echo ' checked="checked"';
+ }
+ else if (!empty ($item))
+ echo ' checked="checked"';
+ }
+
+ function select ($items, $default = '')
+ {
+ if (count ($items) > 0)
+ {
+ foreach ($items AS $key => $value)
+ {
+ if (is_array ($value))
+ {
+ echo '';
+ }
+ else
+ echo '';
+ }
+ }
+ }
+}
+
+if (!function_exists ('pr'))
+{
+ function pr ($thing)
+ {
+ echo '';
+ print_r ($thing);
+ echo '
';
+ }
+}
+
+if (!class_exists ('Widget_SU'))
+{
+ class Widget_SU
+ {
+ function Widget_SU ($name, $max = 1, $id = '', $args = '')
+ {
+ $this->name = $name;
+ $this->id = $id;
+ $this->widget_max = $max;
+ $this->args = $args;
+
+ if ($this->id == '')
+ $this->id = strtolower (preg_replace ('/[^A-Za-z]/', '-', $this->name));
+
+ $this->widget_available = 1;
+ if ($this->widget_max > 1)
+ {
+ $this->widget_available = get_option ('widget_available_'.$this->id ());
+ if ($this->widget_available === false)
+ $this->widget_available = 1;
+ }
+
+ add_action ('init', array (&$this, 'initialize'));
+ }
+
+ function initialize ()
+ {
+ // Compatability functions for WP 2.1
+ if (!function_exists ('wp_register_sidebar_widget'))
+ {
+ function wp_register_sidebar_widget ($id, $name, $output_callback, $classname = '')
+ {
+ register_sidebar_widget($name, $output_callback, $classname);
+ }
+ }
+
+ if (!function_exists ('wp_register_widget_control'))
+ {
+ function wp_register_widget_control($name, $control_callback, $width = 300, $height = 200)
+ {
+ register_widget_control($name, $control_callback, $width, $height);
+ }
+ }
+
+ if (function_exists ('wp_register_sidebar_widget'))
+ {
+ if ($this->widget_max > 1)
+ {
+ add_action ('sidebar_admin_setup', array (&$this, 'setup_save'));
+ add_action ('sidebar_admin_page', array (&$this, 'setup_display'));
+ }
+
+ $this->load_widgets ();
+ }
+ }
+
+ function load_widgets ()
+ {
+ for ($pos = 1; $pos <= $this->widget_max; $pos++)
+ {
+ wp_register_sidebar_widget ($this->id ($pos), $this->name ($pos), $pos <= $this->widget_available ? array (&$this, 'show_display') : '', $this->args (), $pos);
+
+ if ($this->has_config ())
+ wp_register_widget_control ($this->id ($pos), $this->name ($pos), $pos <= $this->widget_available ? array (&$this, 'show_config') : '', $this->args (), $pos);
+ }
+ }
+
+ function args ()
+ {
+ if ($this->args)
+ return $args;
+ return array ('classname' => '');
+ }
+
+ function name ($pos)
+ {
+ if ($this->widget_available > 1)
+ return $this->name.' ('.$pos.')';
+ return $this->name;
+ }
+
+ function id ($pos = 0)
+ {
+ if ($pos == 0)
+ return $this->id;
+ return $this->id.'-'.$pos;
+ }
+
+ function show_display ($args, $number = 1)
+ {
+ $config = get_option ('widget_config_'.$this->id ($number));
+ if ($config === false)
+ $config = array ();
+
+ $this->load ($config);
+ $this->display ($args);
+ }
+
+ function show_config ($position)
+ {
+ if (isset ($_POST['widget_config_save_'.$this->id ($position)]))
+ {
+ $data = $_POST[$this->id ()];
+ if (count ($data) > 0)
+ {
+ $newdata = array ();
+ foreach ($data AS $item => $values)
+ $newdata[$item] = $values[$position];
+ $data = $newdata;
+ }
+
+ update_option ('widget_config_'.$this->id ($position), $this->save ($data));
+ }
+
+ $options = get_option ('widget_config_'.$this->id ($position));
+ if ($options === false)
+ $options = array ();
+
+ $this->config ($options, $position);
+ echo '';
+ }
+
+ function has_config () { return false; }
+ function save ($data)
+ {
+ return array ();
+ }
+
+ function setup_save ()
+ {
+ if (isset ($_POST['widget_setup_save_'.$this->id ()]))
+ {
+ $this->widget_available = intval ($_POST['widget_setup_count_'.$this->id ()]);
+ if ($this->widget_available < 1)
+ $this->widget_available = 1;
+ else if ($this->widget_available > $this->widget_max)
+ $this->widget_available = $this->widget_max;
+
+ update_option ('widget_available_'.$this->id (), $this->widget_available);
+
+ $this->load_widgets ();
+ }
+ }
+
+ function config_name ($field, $pos)
+ {
+ return $this->id ().'['.$field.']['.$pos.']';
+ }
+
+ function setup_display ()
+ {
+ ?>
+
+
+
+
\ No newline at end of file
diff --git a/blog/wp-content/plugins/custom-post-template/readme.txt b/blog/wp-content/plugins/custom-post-template/readme.txt
new file mode 100644
index 0000000..8a43d54
--- /dev/null
+++ b/blog/wp-content/plugins/custom-post-template/readme.txt
@@ -0,0 +1,87 @@
+=== Custom Post Template ===
+Contributors: simonwheatley
+Donate link: http://www.simonwheatley.co.uk/wordpress/
+Tags: post, template, theme
+Requires at least: 2.9
+Tested up to: 2.9.1
+Stable tag: 1.1
+
+Provides a drop-down to select different templates for posts from the post edit screen. The templates replace single.php for the specified post.
+
+== Description ==
+
+**This plugin requires PHP5 (see Other Notes > PHP4 for more).**
+
+Provides a drop-down to select different templates for posts from the post edit screen. The templates are defined similarly to page templates, and will replace single.php for the specified post.
+
+Post templates, as far as this plugin is concerned, are configured similarly to [page templates](http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates) in that they have a particular style of PHP comment at the top of them. Each post template must contain the following, or similar, at the top:
+
+
+
+
+Note that *page* templates use "_Template Name:_", whereas *post* templates use "_Template Name Posts:_".
+
+Plugin initially produced on behalf of [Words & Pictures](http://www.wordsandpics.co.uk/).
+
+Is this plugin lacking a feature you want? I'm happy to discuss ideas, or to accept offers of feature sponsorship: [contact me](http://www.simonwheatley.co.uk/contact-me/) and we can have a chat.
+
+Any issues: [contact me](http://www.simonwheatley.co.uk/contact-me/).
+
+== Installation ==
+
+The plugin is simple to install:
+
+1. Download the plugin, it will arrive as a zip file
+1. Unzip it
+1. Upload `custom-post-template` directory to your WordPress Plugin directory
+1. Go to the plugin management page and enable the plugin
+1. Upload your post template files (see the Description for details on configuring these), and choose them through the new menu
+1. Give yourself a pat on the back
+
+== PHP4 ==
+
+Many of my plugin now require at least PHP5. I know that WordPress officially supports PHP4, but I don't. PHP4 is a mess and makes coding a lot less efficient, and when you're releasing stuff for free these things matter. PHP5 has been out for several years now and is fully production ready, as well as being naturally more secure and performant.
+
+If you're still running PHP4, I strongly suggest you talk to your hosting company about upgrading your servers. All reputable hosting companies should offer PHP5 as well as PHP4.
+
+Right, that's it. Grump over. ;)
+
+== Change Log ==
+
+= v1.1 2010/01/27 =
+
+* IDIOTFIX: Managed to revert to an old version somehow, this version should fix that.
+
+= v1 2010/01/15 (released 2010/01/26) =
+
+* BUGFIX: Theme templates now come with a complete filepath, so no need to add WP_CONTENT_DIR constant to the beginning.
+* ENHANCEMENT: Metabox now shows up on the side, under the publish box... where you'd expect.
+
+= v0.9b 2008/11/26 =
+
+* Plugin first released
+
+= v0.91b 2008/11/28 =
+
+* BUGFIX: The plugin was breaking posts using the "default" template, this is now fixed. Apologies for the inconvenience.
+* Tested up to WordPress 2.7-beta3-9922
+
+= v0.91b 2008/11/28 =
+
+* BUGFIX: The plugin was breaking posts using the "default" template, this is now fixed. Apologies for the inconvenience.
+* Tested up to WordPress 2.7-beta3-9922* Tested up to WordPress 2.7-beta3-9922
+
+= v0.92b 2008/12/04 =
+
+* Minor code tweaks
+* Blocked direct access to templates
+
+== Frequently Asked Questions ==
+
+= I get an error like this: Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /web/wp-content/plugins/custom-post-template/custom-post-templates.php =
+
+This is because your server is running PHP4. Please see "Other Notes > PHP4" for more information.
\ No newline at end of file
diff --git a/blog/wp-content/plugins/custom-post-template/view/admin/select_post_template.php b/blog/wp-content/plugins/custom-post-template/view/admin/select_post_template.php
new file mode 100644
index 0000000..729f331
--- /dev/null
+++ b/blog/wp-content/plugins/custom-post-template/view/admin/select_post_template.php
@@ -0,0 +1,22 @@
+
+
+
+
+
diff --git a/blog/wp-content/plugins/markdown/License.text b/blog/wp-content/plugins/markdown/License.text
old mode 100644
new mode 100755
index ea90c49..4d6bf8b
--- a/blog/wp-content/plugins/markdown/License.text
+++ b/blog/wp-content/plugins/markdown/License.text
@@ -1,4 +1,4 @@
-PHP Markdown
+PHP Markdown & Extra
Copyright (c) 2004-2009 Michel Fortin
All rights reserved.
diff --git a/blog/wp-content/plugins/markdown/PHP Markdown Extra Readme.text b/blog/wp-content/plugins/markdown/PHP Markdown Extra Readme.text
new file mode 100755
index 0000000..b72ee99
--- /dev/null
+++ b/blog/wp-content/plugins/markdown/PHP Markdown Extra Readme.text
@@ -0,0 +1,786 @@
+PHP Markdown Extra
+==================
+
+Version 1.2.4 - Sat 10 Oct 2009
+
+by Michel Fortin
+
+
+based on Markdown by John Gruber
+
+
+
+Introduction
+------------
+
+This is a special version of PHP Markdown with extra features. See
+ for details.
+
+Markdown is a text-to-HTML conversion tool for web writers. Markdown
+allows you to write using an easy-to-read, easy-to-write plain text
+format, then convert it to structurally valid XHTML (or HTML).
+
+"Markdown" is two things: a plain text markup syntax, and a software
+tool, written in Perl, that converts the plain text markup to HTML.
+PHP Markdown is a port to PHP of the original Markdown program by
+John Gruber.
+
+PHP Markdown can work as a plug-in for WordPress and bBlog, as a
+modifier for the Smarty templating engine, or as a remplacement for
+textile formatting in any software that support textile.
+
+Full documentation of Markdown's syntax is available on John's
+Markdown page:
+
+
+Installation and Requirement
+----------------------------
+
+PHP Markdown requires PHP version 4.0.5 or later.
+
+
+### WordPress ###
+
+PHP Markdown works with [WordPress][wp], version 1.2 or later.
+
+ [wp]: http://wordpress.org/
+
+1. To use PHP Markdown with WordPress, place the "makrdown.php" file
+ in the "plugins" folder. This folder is located inside
+ "wp-content" at the root of your site:
+
+ (site home)/wp-content/plugins/
+
+2. Activate the plugin with the administrative interface of
+ WordPress. In the "Plugins" section you will now find Markdown.
+ To activate the plugin, click on the "Activate" button on the
+ same line than Markdown. Your entries will now be formatted by
+ PHP Markdown.
+
+3. To post Markdown content, you'll first have to disable the
+ "visual" editor in the User section of WordPress.
+
+You can configure PHP Markdown to not apply to the comments on your
+WordPress weblog. See the "Configuration" section below.
+
+It is not possible at this time to apply a different set of
+filters to different entries. All your entries will be formated by
+PHP Markdown. This is a limitation of WordPress. If your old entries
+are written in HTML (as opposed to another formatting syntax, like
+Textile), they'll probably stay fine after installing Markdown.
+
+
+### bBlog ###
+
+PHP Markdown also works with [bBlog][bb].
+
+ [bb]: http://www.bblog.com/
+
+To use PHP Markdown with bBlog, rename "markdown.php" to
+"modifier.markdown.php" and place the file in the "bBlog_plugins"
+folder. This folder is located inside the "bblog" directory of
+your site, like this:
+
+ (site home)/bblog/bBlog_plugins/modifier.markdown.php
+
+Select "Markdown" as the "Entry Modifier" when you post a new
+entry. This setting will only apply to the entry you are editing.
+
+
+### Replacing Textile in TextPattern ###
+
+[TextPattern][tp] use [Textile][tx] to format your text. You can
+replace Textile by Markdown in TextPattern without having to change
+any code by using the *Texitle Compatibility Mode*. This may work
+with other software that expect Textile too.
+
+ [tx]: http://www.textism.com/tools/textile/
+ [tp]: http://www.textpattern.com/
+
+1. Rename the "markdown.php" file to "classTextile.php". This will
+ make PHP Markdown behave as if it was the actual Textile parser.
+
+2. Replace the "classTextile.php" file TextPattern installed in your
+ web directory. It can be found in the "lib" directory:
+
+ (site home)/textpattern/lib/
+
+Contrary to Textile, Markdown does not convert quotes to curly ones
+and does not convert multiple hyphens (`--` and `---`) into en- and
+em-dashes. If you use PHP Markdown in Textile Compatibility Mode, you
+can solve this problem by installing the "smartypants.php" file from
+[PHP SmartyPants][psp] beside the "classTextile.php" file. The Textile
+Compatibility Mode function will use SmartyPants automatically without
+further modification.
+
+ [psp]: http://michelf.com/projects/php-smartypants/
+
+
+### In Your Own Programs ###
+
+You can use PHP Markdown easily in your current PHP program. Simply
+include the file and then call the Markdown function on the text you
+want to convert:
+
+ include_once "markdown.php";
+ $my_html = Markdown($my_text);
+
+If you wish to use PHP Markdown with another text filter function
+built to parse HTML, you should filter the text *after* the Markdown
+function call. This is an example with [PHP SmartyPants][psp]:
+
+ $my_html = SmartyPants(Markdown($my_text));
+
+
+### With Smarty ###
+
+If your program use the [Smarty][sm] template engine, PHP Markdown
+can now be used as a modifier for your templates. Rename "markdown.php"
+to "modifier.markdown.php" and put it in your smarty plugins folder.
+
+ [sm]: http://smarty.php.net/
+
+If you are using MovableType 3.1 or later, the Smarty plugin folder is
+located at `(MT CGI root)/php/extlib/smarty/plugins`. This will allow
+Markdown to work on dynamic pages.
+
+
+### Updating Markdown in Other Programs ###
+
+Many web applications now ship with PHP Markdown, or have plugins to
+perform the conversion to HTML. You can update PHP Markdown -- or
+replace it with PHP Markdown Extra -- in many of these programs by
+swapping the old "markdown.php" file for the new one.
+
+Here is a short non-exhaustive list of some programs and where they
+hide the "markdown.php" file.
+
+| Program | Path to Markdown
+| ------- | ----------------
+| [Pivot][] | `(site home)/pivot/includes/markdown/`
+
+If you're unsure if you can do this with your application, ask the
+developer, or wait for the developer to update his application or
+plugin with the new version of PHP Markdown.
+
+ [Pivot]: http://pivotlog.net/
+
+
+Configuration
+-------------
+
+By default, PHP Markdown produces XHTML output for tags with empty
+elements. E.g.:
+
+
+
+Markdown can be configured to produce HTML-style tags; e.g.:
+
+
+
+To do this, you must edit the "MARKDOWN_EMPTY_ELEMENT_SUFFIX"
+definition below the "Global default settings" header at the start of
+the "markdown.php" file.
+
+
+### WordPress-Specific Settings ###
+
+By default, the Markdown plugin applies to both posts and comments on
+your WordPress weblog. To deactivate one or the other, edit the
+`MARKDOWN_WP_POSTS` or `MARKDOWN_WP_COMMENTS` definitions under the
+"WordPress settings" header at the start of the "markdown.php" file.
+
+
+Bugs
+----
+
+To file bug reports please send email to:
+
+
+Please include with your report: (1) the example input; (2) the output you
+expected; (3) the output PHP Markdown actually produced.
+
+
+Version History
+---------------
+
+1.0.1n (10 Oct 2009):
+
+* Enabled reference-style shortcut links. Now you can write reference-style
+ links with less brakets:
+
+ This is [my website].
+
+ [my website]: http://example.com/
+
+ This was added in the 1.0.2 betas, but commented out in the 1.0.1 branch,
+ waiting for the feature to be officialized. [But half of the other Markdown
+ implementations are supporting this syntax][half], so it makes sense for
+ compatibility's sake to allow it in PHP Markdown too.
+
+ [half]: http://babelmark.bobtfish.net/?markdown=This+is+%5Bmy+website%5D.%0D%0A%09%09%0D%0A%5Bmy+website%5D%3A+http%3A%2F%2Fexample.com%2F%0D%0A&src=1&dest=2
+
+* Now accepting many valid email addresses in autolinks that were
+ previously rejected, such as:
+
+
+
+ <"abc@def"@example.com>
+ <"Fred Bloggs"@example.com>
+
+
+* Now accepting spaces in URLs for inline and reference-style links. Such
+ URLs need to be surrounded by angle brakets. For instance:
+
+ [link text]( "optional title")
+
+ [link text][ref]
+ [ref]: "optional title"
+
+ There is still a quirk which may prevent this from working correctly with
+ relative URLs in inline-style links however.
+
+* Fix for adjacent list of different kind where the second list could
+ end as a sublist of the first when not separated by an empty line.
+
+* Fixed a bug where inline-style links wouldn't be recognized when the link
+ definition contains a line break between the url and the title.
+
+* Fixed a bug where tags where the name contains an underscore aren't parsed
+ correctly.
+
+* Fixed some corner-cases mixing underscore-ephasis and asterisk-emphasis.
+
+
+Extra 1.2.4:
+
+* Fixed a problem where unterminated tags in indented code blocks could
+ prevent proper escaping of characaters in the code block.
+
+
+Extra 1.2.3 (31 Dec 2008):
+
+* In WordPress pages featuring more than one post, footnote id prefixes are
+ now automatically applied with the current post ID to avoid clashes
+ between footnotes belonging to different posts.
+
+* Fix for a bug introduced in Extra 1.2 where block-level HTML tags where
+ not detected correctly, thus the addition of erroneous `` tags and
+ interpretation of their content as Markdown-formatted instead of
+ HTML-formatted.
+
+
+Extra 1.2.2 (21 Jun 2008):
+
+* Fixed a problem where abbreviation definitions, footnote
+ definitions and link references were stripped inside
+ fenced code blocks.
+
+* Fixed a bug where characters such as `"` in abbreviation
+ definitions weren't properly encoded to HTML entities.
+
+* Fixed a bug where double quotes `"` were not correctly encoded
+ as HTML entities when used inside a footnote reference id.
+
+
+1.0.1m (21 Jun 2008):
+
+* Lists can now have empty items.
+
+* Rewrote the emphasis and strong emphasis parser to fix some issues
+ with odly placed and overlong markers.
+
+
+Extra 1.2.1 (27 May 2008):
+
+* Fixed a problem where Markdown headers and horizontal rules were
+ transformed into their HTML equivalent inside fenced code blocks.
+
+
+Extra 1.2 (11 May 2008):
+
+* Added fenced code block syntax which don't require indentation
+ and can start and end with blank lines. A fenced code block
+ starts with a line of consecutive tilde (~) and ends on the
+ next line with the same number of consecutive tilde. Here's an
+ example:
+
+ ~~~~~~~~~~~~
+ Hello World!
+ ~~~~~~~~~~~~
+
+* Rewrote parts of the HTML block parser to better accomodate
+ fenced code blocks.
+
+* Footnotes may now be referenced from within another footnote.
+
+* Added programatically-settable parser property `predef_attr` for
+ predefined attribute definitions.
+
+* Fixed an issue where an indented code block preceded by a blank
+ line containing some other whitespace would confuse the HTML
+ block parser into creating an HTML block when it should have
+ been code.
+
+
+1.0.1l (11 May 2008):
+
+* Now removing the UTF-8 BOM at the start of a document, if present.
+
+* Now accepting capitalized URI schemes (such as HTTP:) in automatic
+ links, such as ` `.
+
+* Fixed a problem where `
` was seen as a horizontal
+ rule instead of an automatic link.
+
+* Fixed an issue where some characters in Markdown-generated HTML
+ attributes weren't properly escaped with entities.
+
+* Fix for code blocks as first element of a list item. Previously,
+ this didn't create any code block for item 2:
+
+ * Item 1 (regular paragraph)
+
+ * Item 2 (code block)
+
+* A code block starting on the second line of a document wasn't seen
+ as a code block. This has been fixed.
+
+* Added programatically-settable parser properties `predef_urls` and
+ `predef_titles` for predefined URLs and titles for reference-style
+ links. To use this, your PHP code must call the parser this way:
+
+ $parser = new Markdwon_Parser;
+ $parser->predef_urls = array('linkref' => 'http://example.com');
+ $html = $parser->transform($text);
+
+ You can then use the URL as a normal link reference:
+
+ [my link][linkref]
+ [my link][linkRef]
+
+ Reference names in the parser properties *must* be lowercase.
+ Reference names in the Markdown source may have any case.
+
+* Added `setup` and `teardown` methods which can be used by subclassers
+ as hook points to arrange the state of some parser variables before and
+ after parsing.
+
+
+Extra 1.1.7 (26 Sep 2007):
+
+1.0.1k (26 Sep 2007):
+
+* Fixed a problem introduced in 1.0.1i where three or more identical
+ uppercase letters, as well as a few other symbols, would trigger
+ a horizontal line.
+
+
+Extra 1.1.6 (4 Sep 2007):
+
+1.0.1j (4 Sep 2007):
+
+* Fixed a problem introduced in 1.0.1i where the closing `code` and
+ `pre` tags at the end of a code block were appearing in the wrong
+ order.
+
+* Overriding configuration settings by defining constants from an
+ external before markdown.php is included is now possible without
+ producing a PHP warning.
+
+
+Extra 1.1.5 (31 Aug 2007):
+
+1.0.1i (31 Aug 2007):
+
+* Fixed a problem where an escaped backslash before a code span
+ would prevent the code span from being created. This should now
+ work as expected:
+
+ Litteral backslash: \\`code span`
+
+* Overall speed improvements, especially with long documents.
+
+
+Extra 1.1.4 (3 Aug 2007):
+
+1.0.1h (3 Aug 2007):
+
+* Added two properties (`no_markup` and `no_entities`) to the parser
+ allowing HTML tags and entities to be disabled.
+
+* Fix for a problem introduced in 1.0.1g where posting comments in
+ WordPress would trigger PHP warnings and cause some markup to be
+ incorrectly filtered by the kses filter in WordPress.
+
+
+Extra 1.1.3 (3 Jul 2007):
+
+* Fixed a performance problem when parsing some invalid HTML as an HTML
+ block which was resulting in too much recusion and a segmentation fault
+ for long documents.
+
+* The markdown="" attribute now accepts unquoted values.
+
+* Fixed an issue where underscore-emphasis didn't work when applied on the
+ first or the last word of an element having the markdown="1" or
+ markdown="span" attribute set unless there was some surrounding whitespace.
+ This didn't work:
+
+ _Hello_ _world_
+
+ Now it does produce emphasis as expected.
+
+* Fixed an issue preventing footnotes from working when the parser's
+ footnote id prefix variable (fn_id_prefix) is not empty.
+
+* Fixed a performance problem where the regular expression for strong
+ emphasis introduced in version 1.1 could sometime be long to process,
+ give slightly wrong results, and in some circumstances could remove
+ entirely the content for a whole paragraph.
+
+* Fixed an issue were abbreviations tags could be incorrectly added
+ inside URLs and title of links.
+
+* Placing footnote markers inside a link, resulting in two nested links, is
+ no longer allowed.
+
+
+1.0.1g (3 Jul 2007):
+
+* Fix for PHP 5 compiled without the mbstring module. Previous fix to
+ calculate the length of UTF-8 strings in `detab` when `mb_strlen` is
+ not available was only working with PHP 4.
+
+* Fixed a problem with WordPress 2.x where full-content posts in RSS feeds
+ were not processed correctly by Markdown.
+
+* Now supports URLs containing literal parentheses for inline links
+ and images, such as:
+
+ [WIMP](http://en.wikipedia.org/wiki/WIMP_(computing))
+
+ Such parentheses may be arbitrarily nested, but must be
+ balanced. Unbalenced parentheses are allowed however when the URL
+ when escaped or when the URL is enclosed in angle brakets `<>`.
+
+* Fixed a performance problem where the regular expression for strong
+ emphasis introduced in version 1.0.1d could sometime be long to process,
+ give slightly wrong results, and in some circumstances could remove
+ entirely the content for a whole paragraph.
+
+* Some change in version 1.0.1d made possible the incorrect nesting of
+ anchors within each other. This is now fixed.
+
+* Fixed a rare issue where certain MD5 hashes in the content could
+ be changed to their corresponding text. For instance, this:
+
+ The MD5 value for "+" is "26b17225b626fb9238849fd60eabdf60".
+
+ was incorrectly changed to this in previous versions of PHP Markdown:
+
+ The MD5 value for "+" is "+".
+
+* Now convert escaped characters to their numeric character
+ references equivalent.
+
+ This fix an integration issue with SmartyPants and backslash escapes.
+ Since Markdown and SmartyPants have some escapable characters in common,
+ it was sometime necessary to escape them twice. Previously, two
+ backslashes were sometime required to prevent Markdown from "eating" the
+ backslash before SmartyPants sees it:
+
+ Here are two hyphens: \\--
+
+ Now, only one backslash will do:
+
+ Here are two hyphens: \--
+
+
+Extra 1.1.2 (7 Feb 2007)
+
+* Fixed an issue where headers preceded too closely by a paragraph
+ (with no blank line separating them) where put inside the paragraph.
+
+* Added the missing TextileRestricted method that was added to regular
+ PHP Markdown since 1.0.1d but which I forgot to add to Extra.
+
+
+1.0.1f (7 Feb 2007):
+
+* Fixed an issue with WordPress where manually-entered excerpts, but
+ not the auto-generated ones, would contain nested paragraphs.
+
+* Fixed an issue introduced in 1.0.1d where headers and blockquotes
+ preceded too closely by a paragraph (not separated by a blank line)
+ where incorrectly put inside the paragraph.
+
+* Fixed an issue introduced in 1.0.1d in the tokenizeHTML method where
+ two consecutive code spans would be merged into one when together they
+ form a valid tag in a multiline paragraph.
+
+* Fixed an long-prevailing issue where blank lines in code blocks would
+ be doubled when the code block is in a list item.
+
+ This was due to the list processing functions relying on artificially
+ doubled blank lines to correctly determine when list items should
+ contain block-level content. The list item processing model was thus
+ changed to avoid the need for double blank lines.
+
+* Fixed an issue with `<% asp-style %>` instructions used as inline
+ content where the opening `<` was encoded as `<`.
+
+* Fixed a parse error occuring when PHP is configured to accept
+ ASP-style delimiters as boundaries for PHP scripts.
+
+* Fixed a bug introduced in 1.0.1d where underscores in automatic links
+ got swapped with emphasis tags.
+
+
+Extra 1.1.1 (28 Dec 2006)
+
+* Fixed a problem where whitespace at the end of the line of an atx-style
+ header would cause tailing `#` to appear as part of the header's content.
+ This was caused by a small error in the regex that handles the definition
+ for the id attribute in PHP Markdown Extra.
+
+* Fixed a problem where empty abbreviations definitions would eat the
+ following line as its definition.
+
+* Fixed an issue with calling the Markdown parser repetitivly with text
+ containing footnotes. The footnote hashes were not reinitialized properly.
+
+
+1.0.1e (28 Dec 2006)
+
+* Added support for internationalized domain names for email addresses in
+ automatic link. Improved the speed at which email addresses are converted
+ to entities. Thanks to Milian Wolff for his optimisations.
+
+* Made deterministic the conversion to entities of email addresses in
+ automatic links. This means that a given email address will always be
+ encoded the same way.
+
+* PHP Markdown will now use its own function to calculate the length of an
+ UTF-8 string in `detab` when `mb_strlen` is not available instead of
+ giving a fatal error.
+
+
+Extra 1.1 (1 Dec 2006)
+
+* Added a syntax for footnotes.
+
+* Added an experimental syntax to define abbreviations.
+
+
+1.0.1d (1 Dec 2006)
+
+* Fixed a bug where inline images always had an empty title attribute. The
+ title attribute is now present only when explicitly defined.
+
+* Link references definitions can now have an empty title, previously if the
+ title was defined but left empty the link definition was ignored. This can
+ be useful if you want an empty title attribute in images to hide the
+ tooltip in Internet Explorer.
+
+* Made `detab` aware of UTF-8 characters. UTF-8 multi-byte sequences are now
+ correctly mapped to one character instead of the number of bytes.
+
+* Fixed a small bug with WordPress where WordPress' default filter `wpautop`
+ was not properly deactivated on comment text, resulting in hard line breaks
+ where Markdown do not prescribes them.
+
+* Added a `TextileRestrited` method to the textile compatibility mode. There
+ is no restriction however, as Markdown does not have a restricted mode at
+ this point. This should make PHP Markdown work again in the latest
+ versions of TextPattern.
+
+* Converted PHP Markdown to a object-oriented design.
+
+* Changed span and block gamut methods so that they loop over a
+ customizable list of methods. This makes subclassing the parser a more
+ interesting option for creating syntax extensions.
+
+* Also added a "document" gamut loop which can be used to hook document-level
+ methods (like for striping link definitions).
+
+* Changed all methods which were inserting HTML code so that they now return
+ a hashed representation of the code. New methods `hashSpan` and `hashBlock`
+ are used to hash respectivly span- and block-level generated content. This
+ has a couple of significant effects:
+
+ 1. It prevents invalid nesting of Markdown-generated elements which
+ could occur occuring with constructs like `*something [link*][1]`.
+ 2. It prevents problems occuring with deeply nested lists on which
+ paragraphs were ill-formed.
+ 3. It removes the need to call `hashHTMLBlocks` twice during the the
+ block gamut.
+
+ Hashes are turned back to HTML prior output.
+
+* Made the block-level HTML parser smarter using a specially-crafted regular
+ expression capable of handling nested tags.
+
+* Solved backtick issues in tag attributes by rewriting the HTML tokenizer to
+ be aware of code spans. All these lines should work correctly now:
+
+ bar
+ bar
+ ``
+
+* Changed the parsing of HTML comments to match simply from ``
+ instead using of the more complicated SGML-style rule with paired `--`.
+ This is how most browsers parse comments and how XML defines them too.
+
+* `` has been added to the list of block-level elements and is now
+ treated as an HTML block instead of being wrapped within paragraph tags.
+
+* Now only trim trailing newlines from code blocks, instead of trimming
+ all trailing whitespace characters.
+
+* Fixed bug where this:
+
+ [text](http://m.com "title" )
+
+ wasn't working as expected, because the parser wasn't allowing for spaces
+ before the closing paren.
+
+* Filthy hack to support markdown='1' in div tags.
+
+* _DoAutoLinks() now supports the 'dict://' URL scheme.
+
+* PHP- and ASP-style processor instructions are now protected as
+ raw HTML blocks.
+
+ ... ?>
+ <% ... %>
+
+* Fix for escaped backticks still triggering code spans:
+
+ There are two raw backticks here: \` and here: \`, not a code span
+
+
+Extra 1.0 - 5 September 2005
+
+* Added support for setting the id attributes for headers like this:
+
+ Header 1 {#header1}
+ ========
+
+ ## Header 2 ## {#header2}
+
+ This only work only for headers for now.
+
+* Tables will now work correctly as the first element of a definition
+ list. For example, this input:
+
+ Term
+
+ : Header | Header
+ ------- | -------
+ Cell | Cell
+
+ used to produce no definition list and a table where the first
+ header was named ": Header". This is now fixed.
+
+* Fix for a problem where a paragraph following a table was not
+ placed between `` tags.
+
+
+Extra 1.0b4 - 1 August 2005
+
+* Fixed some issues where whitespace around HTML blocks were trigging
+ empty paragraph tags.
+
+* Fixed an HTML block parsing issue that would cause a block element
+ following a code span or block with unmatched opening bracket to be
+ placed inside a paragraph.
+
+* Removed some PHP notices that could appear when parsing definition
+ lists and tables with PHP notice reporting flag set.
+
+
+Extra 1.0b3 - 29 July 2005
+
+* Definition lists now require a blank line before each term. Solves
+ an ambiguity where the last line of lazy-indented definitions could
+ be mistaken by PHP Markdown as a new term in the list.
+
+* Definition lists now support multiple terms per definition.
+
+* Some special tags were replaced in the output by their md5 hash
+ key. Things such as this now work as expected:
+
+ ## Header ##
+
+
+Extra 1.0b2 - 26 July 2005
+
+* Definition lists can now take two or more definitions for one term.
+ This should have been the case before, but a bug prevented this
+ from working right.
+
+* Fixed a problem where single column table with a pipe only at the
+ end where not parsed as table. Here is such a table:
+
+ | header
+ | ------
+ | cell
+
+* Fixed problems with empty cells in the first column of a table with
+ no leading pipe, like this one:
+
+ header | header
+ ------ | ------
+ | cell
+
+* Code spans containing pipes did not within a table. This is now
+ fixed by parsing code spans before splitting rows into cells.
+
+* Added the pipe character to the backlash escape character lists.
+
+Extra 1.0b1 (25 Jun 2005)
+
+* First public release of PHP Markdown Extra.
+
+
+Copyright and License
+---------------------
+
+PHP Markdown & Extra
+Copyright (c) 2004-2009 Michel Fortin
+
+All rights reserved.
+
+Based on Markdown
+Copyright (c) 2003-2005 John Gruber
+
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+
+* Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+
+* Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the
+ distribution.
+
+* Neither the name "Markdown" nor the names of its contributors may
+ be used to endorse or promote products derived from this software
+ without specific prior written permission.
+
+This software is provided by the copyright holders and contributors "as
+is" and any express or implied warranties, including, but not limited
+to, the implied warranties of merchantability and fitness for a
+particular purpose are disclaimed. In no event shall the copyright owner
+or contributors be liable for any direct, indirect, incidental, special,
+exemplary, or consequential damages (including, but not limited to,
+procurement of substitute goods or services; loss of use, data, or
+profits; or business interruption) however caused and on any theory of
+liability, whether in contract, strict liability, or tort (including
+negligence or otherwise) arising in any way out of the use of this
+software, even if advised of the possibility of such damage.
diff --git a/blog/wp-content/plugins/markdown/markdown.php b/blog/wp-content/plugins/markdown/markdown.php
old mode 100644
new mode 100755
index dd1b9e5..ee3dddb
--- a/blog/wp-content/plugins/markdown/markdown.php
+++ b/blog/wp-content/plugins/markdown/markdown.php
@@ -1,8 +1,8 @@
#
@@ -13,6 +13,7 @@
define( 'MARKDOWN_VERSION', "1.0.1n" ); # Sat 10 Oct 2009
+define( 'MARKDOWNEXTRA_VERSION', "1.2.4" ); # Sat 10 Oct 2009
#
@@ -25,6 +26,14 @@ define( 'MARKDOWN_VERSION', "1.0.1n" ); # Sat 10 Oct 2009
# Define the width of a tab for code blocks.
@define( 'MARKDOWN_TAB_WIDTH', 4 );
+# Optional title attribute for footnote links and backlinks.
+@define( 'MARKDOWN_FN_LINK_TITLE', "" );
+@define( 'MARKDOWN_FN_BACKLINK_TITLE', "" );
+
+# Optional class attribute for footnote links and backlinks.
+@define( 'MARKDOWN_FN_LINK_CLASS', "" );
+@define( 'MARKDOWN_FN_BACKLINK_CLASS', "" );
+
#
# WordPress settings:
@@ -38,7 +47,7 @@ define( 'MARKDOWN_VERSION', "1.0.1n" ); # Sat 10 Oct 2009
### Standard Function Interface ###
-@define( 'MARKDOWN_PARSER_CLASS', 'Markdown_Parser' );
+@define( 'MARKDOWN_PARSER_CLASS', 'MarkdownExtra_Parser' );
function Markdown($text) {
#
@@ -59,10 +68,10 @@ function Markdown($text) {
### WordPress Plugin Interface ###
/*
-Plugin Name: Markdown
+Plugin Name: Markdown Extra
Plugin URI: http://michelf.com/projects/php-markdown/
Description: Markdown syntax allows you to write using an easy-to-read, easy-to-write plain text format. Based on the original Perl version by John Gruber. More...
-Version: 1.0.1n
+Version: 1.2.4
Author: Michel Fortin
Author URI: http://michelf.com/
*/
@@ -79,9 +88,9 @@ if (isset($wp_version)) {
remove_filter('the_content', 'wpautop');
remove_filter('the_content_rss', 'wpautop');
remove_filter('the_excerpt', 'wpautop');
- add_filter('the_content', 'Markdown', 6);
- add_filter('the_content_rss', 'Markdown', 6);
- add_filter('get_the_excerpt', 'Markdown', 6);
+ add_filter('the_content', 'mdwp_MarkdownPost', 6);
+ add_filter('the_content_rss', 'mdwp_MarkdownPost', 6);
+ add_filter('get_the_excerpt', 'mdwp_MarkdownPost', 6);
add_filter('get_the_excerpt', 'trim', 7);
add_filter('the_excerpt', 'mdwp_add_p');
add_filter('the_excerpt_rss', 'mdwp_strip_p');
@@ -92,6 +101,21 @@ if (isset($wp_version)) {
add_filter('get_the_excerpt', 'balanceTags', 9);
}
+ # Add a footnote id prefix to posts when inside a loop.
+ function mdwp_MarkdownPost($text) {
+ static $parser;
+ if (!$parser) {
+ $parser_class = MARKDOWN_PARSER_CLASS;
+ $parser = new $parser_class;
+ }
+ if (is_single() || is_page() || is_feed()) {
+ $parser->fn_id_prefix = "";
+ } else {
+ $parser->fn_id_prefix = get_the_ID() . ".";
+ }
+ return $parser->transform($text);
+ }
+
# Comments
# - Remove WordPress paragraph generator.
# - Remove WordPress auto-link generator.
@@ -140,15 +164,15 @@ if (isset($wp_version)) {
function identify_modifier_markdown() {
return array(
- 'name' => 'markdown',
- 'type' => 'modifier',
- 'nicename' => 'Markdown',
- 'description' => 'A text-to-HTML conversion tool for web writers',
- 'authors' => 'Michel Fortin and John Gruber',
- 'licence' => 'BSD-like',
- 'version' => MARKDOWN_VERSION,
- 'help' => 'Markdown syntax allows you to write using an easy-to-read, easy-to-write plain text format. Based on the original Perl version by John Gruber. More...'
- );
+ 'name' => 'markdown',
+ 'type' => 'modifier',
+ 'nicename' => 'PHP Markdown Extra',
+ 'description' => 'A text-to-HTML conversion tool for web writers',
+ 'authors' => 'Michel Fortin and John Gruber',
+ 'licence' => 'GPL',
+ 'version' => MARKDOWNEXTRA_VERSION,
+ 'help' => 'Markdown syntax allows you to write using an easy-to-read, easy-to-write plain text format. Based on the original Perl version by John Gruber. More...',
+ );
}
@@ -1645,16 +1669,1192 @@ class Markdown_Parser {
}
+
+#
+# Markdown Extra Parser Class
+#
+
+class MarkdownExtra_Parser extends Markdown_Parser {
+
+ # Prefix for footnote ids.
+ var $fn_id_prefix = "";
+
+ # Optional title attribute for footnote links and backlinks.
+ var $fn_link_title = MARKDOWN_FN_LINK_TITLE;
+ var $fn_backlink_title = MARKDOWN_FN_BACKLINK_TITLE;
+
+ # Optional class attribute for footnote links and backlinks.
+ var $fn_link_class = MARKDOWN_FN_LINK_CLASS;
+ var $fn_backlink_class = MARKDOWN_FN_BACKLINK_CLASS;
+
+ # Predefined abbreviations.
+ var $predef_abbr = array();
+
+
+ function MarkdownExtra_Parser() {
+ #
+ # Constructor function. Initialize the parser object.
+ #
+ # Add extra escapable characters before parent constructor
+ # initialize the table.
+ $this->escape_chars .= ':|';
+
+ # Insert extra document, block, and span transformations.
+ # Parent constructor will do the sorting.
+ $this->document_gamut += array(
+ "doFencedCodeBlocks" => 5,
+ "stripFootnotes" => 15,
+ "stripAbbreviations" => 25,
+ "appendFootnotes" => 50,
+ );
+ $this->block_gamut += array(
+ "doFencedCodeBlocks" => 5,
+ "doTables" => 15,
+ "doDefLists" => 45,
+ );
+ $this->span_gamut += array(
+ "doFootnotes" => 5,
+ "doAbbreviations" => 70,
+ );
+
+ parent::Markdown_Parser();
+ }
+
+
+ # Extra variables used during extra transformations.
+ var $footnotes = array();
+ var $footnotes_ordered = array();
+ var $abbr_desciptions = array();
+ var $abbr_word_re = '';
+
+ # Give the current footnote number.
+ var $footnote_counter = 1;
+
+
+ function setup() {
+ #
+ # Setting up Extra-specific variables.
+ #
+ parent::setup();
+
+ $this->footnotes = array();
+ $this->footnotes_ordered = array();
+ $this->abbr_desciptions = array();
+ $this->abbr_word_re = '';
+ $this->footnote_counter = 1;
+
+ foreach ($this->predef_abbr as $abbr_word => $abbr_desc) {
+ if ($this->abbr_word_re)
+ $this->abbr_word_re .= '|';
+ $this->abbr_word_re .= preg_quote($abbr_word);
+ $this->abbr_desciptions[$abbr_word] = trim($abbr_desc);
+ }
+ }
+
+ function teardown() {
+ #
+ # Clearing Extra-specific variables.
+ #
+ $this->footnotes = array();
+ $this->footnotes_ordered = array();
+ $this->abbr_desciptions = array();
+ $this->abbr_word_re = '';
+
+ parent::teardown();
+ }
+
+
+ ### HTML Block Parser ###
+
+ # Tags that are always treated as block tags:
+ var $block_tags_re = 'p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|address|form|fieldset|iframe|hr|legend';
+
+ # Tags treated as block tags only if the opening tag is alone on it's line:
+ var $context_block_tags_re = 'script|noscript|math|ins|del';
+
+ # Tags where markdown="1" default to span mode:
+ var $contain_span_tags_re = 'p|h[1-6]|li|dd|dt|td|th|legend|address';
+
+ # Tags which must not have their contents modified, no matter where
+ # they appear:
+ var $clean_tags_re = 'script|math';
+
+ # Tags that do not need to be closed.
+ var $auto_close_tags_re = 'hr|img';
+
+
+ function hashHTMLBlocks($text) {
+ #
+ # Hashify HTML Blocks and "clean tags".
+ #
+ # We only want to do this for block-level HTML tags, such as headers,
+ # lists, and tables. That's because we still want to wrap
s around
+ # "paragraphs" that are wrapped in non-block-level tags, such as anchors,
+ # phrase emphasis, and spans. The list of tags we're looking for is
+ # hard-coded.
+ #
+ # This works by calling _HashHTMLBlocks_InMarkdown, which then calls
+ # _HashHTMLBlocks_InHTML when it encounter block tags. When the markdown="1"
+ # attribute is found whitin a tag, _HashHTMLBlocks_InHTML calls back
+ # _HashHTMLBlocks_InMarkdown to handle the Markdown syntax within the tag.
+ # These two functions are calling each other. It's recursive!
+ #
+ #
+ # Call the HTML-in-Markdown hasher.
+ #
+ list($text, ) = $this->_hashHTMLBlocks_inMarkdown($text);
+
+ return $text;
+ }
+ function _hashHTMLBlocks_inMarkdown($text, $indent = 0,
+ $enclosing_tag_re = '', $span = false)
+ {
+ #
+ # Parse markdown text, calling _HashHTMLBlocks_InHTML for block tags.
+ #
+ # * $indent is the number of space to be ignored when checking for code
+ # blocks. This is important because if we don't take the indent into
+ # account, something like this (which looks right) won't work as expected:
+ #
+ #
+ #
+ # Hello World. <-- Is this a Markdown code block or text?
+ # <-- Is this a Markdown code block or a real tag?
+ #
+ #
+ # If you don't like this, just don't indent the tag on which
+ # you apply the markdown="1" attribute.
+ #
+ # * If $enclosing_tag_re is not empty, stops at the first unmatched closing
+ # tag with that name. Nested tags supported.
+ #
+ # * If $span is true, text inside must treated as span. So any double
+ # newline will be replaced by a single newline so that it does not create
+ # paragraphs.
+ #
+ # Returns an array of that form: ( processed text , remaining text )
+ #
+ if ($text === '') return array('', '');
+
+ # Regex to check for the presense of newlines around a block tag.
+ $newline_before_re = '/(?:^\n?|\n\n)*$/';
+ $newline_after_re =
+ '{
+ ^ # Start of text following the tag.
+ (?>[ ]*)? # Optional comment.
+ [ ]*\n # Must be followed by newline.
+ }xs';
+
+ # Regex to match any tag.
+ $block_tag_re =
+ '{
+ ( # $2: Capture hole tag.
+ ? # Any opening or closing tag.
+ (?> # Tag name.
+ '.$this->block_tags_re.' |
+ '.$this->context_block_tags_re.' |
+ '.$this->clean_tags_re.' |
+ (?!\s)'.$enclosing_tag_re.'
+ )
+ (?:
+ (?=[\s"\'/a-zA-Z0-9]) # Allowed characters after tag name.
+ (?>
+ ".*?" | # Double quotes (can contain `>`)
+ \'.*?\' | # Single quotes (can contain `>`)
+ .+? # Anything but quotes and `>`.
+ )*?
+ )?
+ > # End of tag.
+ |
+ # HTML Comment
+ |
+ <\?.*?\?> | <%.*?%> # Processing instruction
+ |
+ # CData Block
+ |
+ # Code span marker
+ `+
+ '. ( !$span ? ' # If not in span.
+ |
+ # Indented code block
+ (?: ^[ ]*\n | ^ | \n[ ]*\n )
+ [ ]{'.($indent+4).'}[^\n]* \n
+ (?>
+ (?: [ ]{'.($indent+4).'}[^\n]* | [ ]* ) \n
+ )*
+ |
+ # Fenced code block marker
+ (?> ^ | \n )
+ [ ]{'.($indent).'}~~~+[ ]*\n
+ ' : '' ). ' # End (if not is span).
+ )
+ }xs';
+
+
+ $depth = 0; # Current depth inside the tag tree.
+ $parsed = ""; # Parsed text that will be returned.
+
+ #
+ # Loop through every tag until we find the closing tag of the parent
+ # or loop until reaching the end of text if no parent tag specified.
+ #
+ do {
+ #
+ # Split the text using the first $tag_match pattern found.
+ # Text before pattern will be first in the array, text after
+ # pattern will be at the end, and between will be any catches made
+ # by the pattern.
+ #
+ $parts = preg_split($block_tag_re, $text, 2,
+ PREG_SPLIT_DELIM_CAPTURE);
+
+ # If in Markdown span mode, add a empty-string span-level hash
+ # after each newline to prevent triggering any block element.
+ if ($span) {
+ $void = $this->hashPart("", ':');
+ $newline = "$void\n";
+ $parts[0] = $void . str_replace("\n", $newline, $parts[0]) . $void;
+ }
+
+ $parsed .= $parts[0]; # Text before current tag.
+
+ # If end of $text has been reached. Stop loop.
+ if (count($parts) < 3) {
+ $text = "";
+ break;
+ }
+
+ $tag = $parts[1]; # Tag to handle.
+ $text = $parts[2]; # Remaining text after current tag.
+ $tag_re = preg_quote($tag); # For use in a regular expression.
+
+ #
+ # Check for: Code span marker
+ #
+ if ($tag{0} == "`") {
+ # Find corresponding end marker.
+ $tag_re = preg_quote($tag);
+ if (preg_match('{^(?>.+?|\n(?!\n))*?(?.*\n)+?'.$tag_re.' *\n}', $text,
+ $matches))
+ {
+ # End marker found: pass text unchanged until marker.
+ $parsed .= $tag . $matches[0];
+ $text = substr($text, strlen($matches[0]));
+ }
+ else {
+ # No end marker: just skip it.
+ $parsed .= $tag;
+ }
+ }
+ #
+ # Check for: Opening Block level tag or
+ # Opening Context Block tag (like ins and del)
+ # used as a block tag (tag is alone on it's line).
+ #
+ else if (preg_match('{^<(?:'.$this->block_tags_re.')\b}', $tag) ||
+ ( preg_match('{^<(?:'.$this->context_block_tags_re.')\b}', $tag) &&
+ preg_match($newline_before_re, $parsed) &&
+ preg_match($newline_after_re, $text) )
+ )
+ {
+ # Need to parse tag and following text using the HTML parser.
+ list($block_text, $text) =
+ $this->_hashHTMLBlocks_inHTML($tag . $text, "hashBlock", true);
+
+ # Make sure it stays outside of any paragraph by adding newlines.
+ $parsed .= "\n\n$block_text\n\n";
+ }
+ #
+ # Check for: Clean tag (like script, math)
+ # HTML Comments, processing instructions.
+ #
+ else if (preg_match('{^<(?:'.$this->clean_tags_re.')\b}', $tag) ||
+ $tag{1} == '!' || $tag{1} == '?')
+ {
+ # Need to parse tag and following text using the HTML parser.
+ # (don't check for markdown attribute)
+ list($block_text, $text) =
+ $this->_hashHTMLBlocks_inHTML($tag . $text, "hashClean", false);
+
+ $parsed .= $block_text;
+ }
+ #
+ # Check for: Tag with same name as enclosing tag.
+ #
+ else if ($enclosing_tag_re !== '' &&
+ # Same name as enclosing tag.
+ preg_match('{^?(?:'.$enclosing_tag_re.')\b}', $tag))
+ {
+ #
+ # Increase/decrease nested tag count.
+ #
+ if ($tag{1} == '/') $depth--;
+ else if ($tag{strlen($tag)-2} != '/') $depth++;
+
+ if ($depth < 0) {
+ #
+ # Going out of parent element. Clean up and break so we
+ # return to the calling function.
+ #
+ $text = $tag . $text;
+ break;
+ }
+
+ $parsed .= $tag;
+ }
+ else {
+ $parsed .= $tag;
+ }
+ } while ($depth >= 0);
+
+ return array($parsed, $text);
+ }
+ function _hashHTMLBlocks_inHTML($text, $hash_method, $md_attr) {
+ #
+ # Parse HTML, calling _HashHTMLBlocks_InMarkdown for block tags.
+ #
+ # * Calls $hash_method to convert any blocks.
+ # * Stops when the first opening tag closes.
+ # * $md_attr indicate if the use of the `markdown="1"` attribute is allowed.
+ # (it is not inside clean tags)
+ #
+ # Returns an array of that form: ( processed text , remaining text )
+ #
+ if ($text === '') return array('', '');
+
+ # Regex to match `markdown` attribute inside of a tag.
+ $markdown_attr_re = '
+ {
+ \s* # Eat whitespace before the `markdown` attribute
+ markdown
+ \s*=\s*
+ (?>
+ (["\']) # $1: quote delimiter
+ (.*?) # $2: attribute value
+ \1 # matching delimiter
+ |
+ ([^\s>]*) # $3: unquoted attribute value
+ )
+ () # $4: make $3 always defined (avoid warnings)
+ }xs';
+
+ # Regex to match any tag.
+ $tag_re = '{
+ ( # $2: Capture hole tag.
+ ? # Any opening or closing tag.
+ [\w:$]+ # Tag name.
+ (?:
+ (?=[\s"\'/a-zA-Z0-9]) # Allowed characters after tag name.
+ (?>
+ ".*?" | # Double quotes (can contain `>`)
+ \'.*?\' | # Single quotes (can contain `>`)
+ .+? # Anything but quotes and `>`.
+ )*?
+ )?
+ > # End of tag.
+ |
+ # HTML Comment
+ |
+ <\?.*?\?> | <%.*?%> # Processing instruction
+ |
+ # CData Block
+ )
+ }xs';
+
+ $original_text = $text; # Save original text in case of faliure.
+
+ $depth = 0; # Current depth inside the tag tree.
+ $block_text = ""; # Temporary text holder for current text.
+ $parsed = ""; # Parsed text that will be returned.
+
+ #
+ # Get the name of the starting tag.
+ # (This pattern makes $base_tag_name_re safe without quoting.)
+ #
+ if (preg_match('/^<([\w:$]*)\b/', $text, $matches))
+ $base_tag_name_re = $matches[1];
+
+ #
+ # Loop through every tag until we find the corresponding closing tag.
+ #
+ do {
+ #
+ # Split the text using the first $tag_match pattern found.
+ # Text before pattern will be first in the array, text after
+ # pattern will be at the end, and between will be any catches made
+ # by the pattern.
+ #
+ $parts = preg_split($tag_re, $text, 2, PREG_SPLIT_DELIM_CAPTURE);
+
+ if (count($parts) < 3) {
+ #
+ # End of $text reached with unbalenced tag(s).
+ # In that case, we return original text unchanged and pass the
+ # first character as filtered to prevent an infinite loop in the
+ # parent function.
+ #
+ return array($original_text{0}, substr($original_text, 1));
+ }
+
+ $block_text .= $parts[0]; # Text before current tag.
+ $tag = $parts[1]; # Tag to handle.
+ $text = $parts[2]; # Remaining text after current tag.
+
+ #
+ # Check for: Auto-close tag (like
)
+ # Comments and Processing Instructions.
+ #
+ if (preg_match('{^?(?:'.$this->auto_close_tags_re.')\b}', $tag) ||
+ $tag{1} == '!' || $tag{1} == '?')
+ {
+ # Just add the tag to the block as if it was text.
+ $block_text .= $tag;
+ }
+ else {
+ #
+ # Increase/decrease nested tag count. Only do so if
+ # the tag's name match base tag's.
+ #
+ if (preg_match('{^?'.$base_tag_name_re.'\b}', $tag)) {
+ if ($tag{1} == '/') $depth--;
+ else if ($tag{strlen($tag)-2} != '/') $depth++;
+ }
+
+ #
+ # Check for `markdown="1"` attribute and handle it.
+ #
+ if ($md_attr &&
+ preg_match($markdown_attr_re, $tag, $attr_m) &&
+ preg_match('/^1|block|span$/', $attr_m[2] . $attr_m[3]))
+ {
+ # Remove `markdown` attribute from opening tag.
+ $tag = preg_replace($markdown_attr_re, '', $tag);
+
+ # Check if text inside this tag must be parsed in span mode.
+ $this->mode = $attr_m[2] . $attr_m[3];
+ $span_mode = $this->mode == 'span' || $this->mode != 'block' &&
+ preg_match('{^<(?:'.$this->contain_span_tags_re.')\b}', $tag);
+
+ # Calculate indent before tag.
+ if (preg_match('/(?:^|\n)( *?)(?! ).*?$/', $block_text, $matches)) {
+ $strlen = $this->utf8_strlen;
+ $indent = $strlen($matches[1], 'UTF-8');
+ } else {
+ $indent = 0;
+ }
+
+ # End preceding block with this tag.
+ $block_text .= $tag;
+ $parsed .= $this->$hash_method($block_text);
+
+ # Get enclosing tag name for the ParseMarkdown function.
+ # (This pattern makes $tag_name_re safe without quoting.)
+ preg_match('/^<([\w:$]*)\b/', $tag, $matches);
+ $tag_name_re = $matches[1];
+
+ # Parse the content using the HTML-in-Markdown parser.
+ list ($block_text, $text)
+ = $this->_hashHTMLBlocks_inMarkdown($text, $indent,
+ $tag_name_re, $span_mode);
+
+ # Outdent markdown text.
+ if ($indent > 0) {
+ $block_text = preg_replace("/^[ ]{1,$indent}/m", "",
+ $block_text);
+ }
+
+ # Append tag content to parsed text.
+ if (!$span_mode) $parsed .= "\n\n$block_text\n\n";
+ else $parsed .= "$block_text";
+
+ # Start over a new block.
+ $block_text = "";
+ }
+ else $block_text .= $tag;
+ }
+
+ } while ($depth > 0);
+
+ #
+ # Hash last block text that wasn't processed inside the loop.
+ #
+ $parsed .= $this->$hash_method($block_text);
+
+ return array($parsed, $text);
+ }
+
+
+ function hashClean($text) {
+ #
+ # Called whenever a tag must be hashed when a function insert a "clean" tag
+ # in $text, it pass through this function and is automaticaly escaped,
+ # blocking invalid nested overlap.
+ #
+ return $this->hashPart($text, 'C');
+ }
+
+
+ function doHeaders($text) {
+ #
+ # Redefined to add id attribute support.
+ #
+ # Setext-style headers:
+ # Header 1 {#header1}
+ # ========
+ #
+ # Header 2 {#header2}
+ # --------
+ #
+ $text = preg_replace_callback(
+ '{
+ (^.+?) # $1: Header text
+ (?:[ ]+\{\#([-_:a-zA-Z0-9]+)\})? # $2: Id attribute
+ [ ]*\n(=+|-+)[ ]*\n+ # $3: Header footer
+ }mx',
+ array(&$this, '_doHeaders_callback_setext'), $text);
+
+ # atx-style headers:
+ # # Header 1 {#header1}
+ # ## Header 2 {#header2}
+ # ## Header 2 with closing hashes ## {#header3}
+ # ...
+ # ###### Header 6 {#header2}
+ #
+ $text = preg_replace_callback('{
+ ^(\#{1,6}) # $1 = string of #\'s
+ [ ]*
+ (.+?) # $2 = Header text
+ [ ]*
+ \#* # optional closing #\'s (not counted)
+ (?:[ ]+\{\#([-_:a-zA-Z0-9]+)\})? # id attribute
+ [ ]*
+ \n+
+ }xm',
+ array(&$this, '_doHeaders_callback_atx'), $text);
+
+ return $text;
+ }
+ function _doHeaders_attr($attr) {
+ if (empty($attr)) return "";
+ return " id=\"$attr\"";
+ }
+ function _doHeaders_callback_setext($matches) {
+ if ($matches[3] == '-' && preg_match('{^- }', $matches[1]))
+ return $matches[0];
+ $level = $matches[3]{0} == '=' ? 1 : 2;
+ $attr = $this->_doHeaders_attr($id =& $matches[2]);
+ $block = "".$this->runSpanGamut($matches[1])." ";
+ return "\n" . $this->hashBlock($block) . "\n\n";
+ }
+ function _doHeaders_callback_atx($matches) {
+ $level = strlen($matches[1]);
+ $attr = $this->_doHeaders_attr($id =& $matches[3]);
+ $block = "".$this->runSpanGamut($matches[2])." ";
+ return "\n" . $this->hashBlock($block) . "\n\n";
+ }
+
+
+ function doTables($text) {
+ #
+ # Form HTML tables.
+ #
+ $less_than_tab = $this->tab_width - 1;
+ #
+ # Find tables with leading pipe.
+ #
+ # | Header 1 | Header 2
+ # | -------- | --------
+ # | Cell 1 | Cell 2
+ # | Cell 3 | Cell 4
+ #
+ $text = preg_replace_callback('
+ {
+ ^ # Start of a line
+ [ ]{0,'.$less_than_tab.'} # Allowed whitespace.
+ [|] # Optional leading pipe (present)
+ (.+) \n # $1: Header row (at least one pipe)
+
+ [ ]{0,'.$less_than_tab.'} # Allowed whitespace.
+ [|] ([ ]*[-:]+[-| :]*) \n # $2: Header underline
+
+ ( # $3: Cells
+ (?>
+ [ ]* # Allowed whitespace.
+ [|] .* \n # Row content.
+ )*
+ )
+ (?=\n|\Z) # Stop at final double newline.
+ }xm',
+ array(&$this, '_doTable_leadingPipe_callback'), $text);
+
+ #
+ # Find tables without leading pipe.
+ #
+ # Header 1 | Header 2
+ # -------- | --------
+ # Cell 1 | Cell 2
+ # Cell 3 | Cell 4
+ #
+ $text = preg_replace_callback('
+ {
+ ^ # Start of a line
+ [ ]{0,'.$less_than_tab.'} # Allowed whitespace.
+ (\S.*[|].*) \n # $1: Header row (at least one pipe)
+
+ [ ]{0,'.$less_than_tab.'} # Allowed whitespace.
+ ([-:]+[ ]*[|][-| :]*) \n # $2: Header underline
+
+ ( # $3: Cells
+ (?>
+ .* [|] .* \n # Row content
+ )*
+ )
+ (?=\n|\Z) # Stop at final double newline.
+ }xm',
+ array(&$this, '_DoTable_callback'), $text);
+
+ return $text;
+ }
+ function _doTable_leadingPipe_callback($matches) {
+ $head = $matches[1];
+ $underline = $matches[2];
+ $content = $matches[3];
+
+ # Remove leading pipe for each row.
+ $content = preg_replace('/^ *[|]/m', '', $content);
+
+ return $this->_doTable_callback(array($matches[0], $head, $underline, $content));
+ }
+ function _doTable_callback($matches) {
+ $head = $matches[1];
+ $underline = $matches[2];
+ $content = $matches[3];
+
+ # Remove any tailing pipes for each line.
+ $head = preg_replace('/[|] *$/m', '', $head);
+ $underline = preg_replace('/[|] *$/m', '', $underline);
+ $content = preg_replace('/[|] *$/m', '', $content);
+
+ # Reading alignement from header underline.
+ $separators = preg_split('/ *[|] */', $underline);
+ foreach ($separators as $n => $s) {
+ if (preg_match('/^ *-+: *$/', $s)) $attr[$n] = ' align="right"';
+ else if (preg_match('/^ *:-+: *$/', $s))$attr[$n] = ' align="center"';
+ else if (preg_match('/^ *:-+ *$/', $s)) $attr[$n] = ' align="left"';
+ else $attr[$n] = '';
+ }
+
+ # Parsing span elements, including code spans, character escapes,
+ # and inline HTML tags, so that pipes inside those gets ignored.
+ $head = $this->parseSpan($head);
+ $headers = preg_split('/ *[|] */', $head);
+ $col_count = count($headers);
+
+ # Write column headers.
+ $text = "\n";
+ $text .= "\n";
+ $text .= "\n";
+ foreach ($headers as $n => $header)
+ $text .= " ".$this->runSpanGamut(trim($header))." \n";
+ $text .= " \n";
+ $text .= "\n";
+
+ # Split content by row.
+ $rows = explode("\n", trim($content, "\n"));
+
+ $text .= "\n";
+ foreach ($rows as $row) {
+ # Parsing span elements, including code spans, character escapes,
+ # and inline HTML tags, so that pipes inside those gets ignored.
+ $row = $this->parseSpan($row);
+
+ # Split row by cell.
+ $row_cells = preg_split('/ *[|] */', $row, $col_count);
+ $row_cells = array_pad($row_cells, $col_count, '');
+
+ $text .= "\n";
+ foreach ($row_cells as $n => $cell)
+ $text .= " ".$this->runSpanGamut(trim($cell))." \n";
+ $text .= " \n";
+ }
+ $text .= "\n";
+ $text .= "
";
+
+ return $this->hashBlock($text) . "\n";
+ }
+
+
+ function doDefLists($text) {
+ #
+ # Form HTML definition lists.
+ #
+ $less_than_tab = $this->tab_width - 1;
+
+ # Re-usable pattern to match any entire dl list:
+ $whole_list_re = '(?>
+ ( # $1 = whole list
+ ( # $2
+ [ ]{0,'.$less_than_tab.'}
+ ((?>.*\S.*\n)+) # $3 = defined term
+ \n?
+ [ ]{0,'.$less_than_tab.'}:[ ]+ # colon starting definition
+ )
+ (?s:.+?)
+ ( # $4
+ \z
+ |
+ \n{2,}
+ (?=\S)
+ (?! # Negative lookahead for another term
+ [ ]{0,'.$less_than_tab.'}
+ (?: \S.*\n )+? # defined term
+ \n?
+ [ ]{0,'.$less_than_tab.'}:[ ]+ # colon starting definition
+ )
+ (?! # Negative lookahead for another definition
+ [ ]{0,'.$less_than_tab.'}:[ ]+ # colon starting definition
+ )
+ )
+ )
+ )'; // mx
+
+ $text = preg_replace_callback('{
+ (?>\A\n?|(?<=\n\n))
+ '.$whole_list_re.'
+ }mx',
+ array(&$this, '_doDefLists_callback'), $text);
+
+ return $text;
+ }
+ function _doDefLists_callback($matches) {
+ # Re-usable patterns to match list item bullets and number markers:
+ $list = $matches[1];
+
+ # Turn double returns into triple returns, so that we can make a
+ # paragraph for the last item in a list, if necessary:
+ $result = trim($this->processDefListItems($list));
+ $result = "\n" . $result . "\n
";
+ return $this->hashBlock($result) . "\n\n";
+ }
+
+
+ function processDefListItems($list_str) {
+ #
+ # Process the contents of a single definition list, splitting it
+ # into individual term and definition list items.
+ #
+ $less_than_tab = $this->tab_width - 1;
+
+ # trim trailing blank lines:
+ $list_str = preg_replace("/\n{2,}\\z/", "\n", $list_str);
+
+ # Process definition terms.
+ $list_str = preg_replace_callback('{
+ (?>\A\n?|\n\n+) # leading line
+ ( # definition terms = $1
+ [ ]{0,'.$less_than_tab.'} # leading whitespace
+ (?![:][ ]|[ ]) # negative lookahead for a definition
+ # mark (colon) or more whitespace.
+ (?> \S.* \n)+? # actual term (not whitespace).
+ )
+ (?=\n?[ ]{0,3}:[ ]) # lookahead for following line feed
+ # with a definition mark.
+ }xm',
+ array(&$this, '_processDefListItems_callback_dt'), $list_str);
+
+ # Process actual definitions.
+ $list_str = preg_replace_callback('{
+ \n(\n+)? # leading line = $1
+ ( # marker space = $2
+ [ ]{0,'.$less_than_tab.'} # whitespace before colon
+ [:][ ]+ # definition mark (colon)
+ )
+ ((?s:.+?)) # definition text = $3
+ (?= \n+ # stop at next definition mark,
+ (?: # next term or end of text
+ [ ]{0,'.$less_than_tab.'} [:][ ] |
+ | \z
+ )
+ )
+ }xm',
+ array(&$this, '_processDefListItems_callback_dd'), $list_str);
+
+ return $list_str;
+ }
+ function _processDefListItems_callback_dt($matches) {
+ $terms = explode("\n", trim($matches[1]));
+ $text = '';
+ foreach ($terms as $term) {
+ $term = $this->runSpanGamut(trim($term));
+ $text .= "\n" . $term . " ";
+ }
+ return $text . "\n";
+ }
+ function _processDefListItems_callback_dd($matches) {
+ $leading_line = $matches[1];
+ $marker_space = $matches[2];
+ $def = $matches[3];
+
+ if ($leading_line || preg_match('/\n{2,}/', $def)) {
+ # Replace marker with the appropriate whitespace indentation
+ $def = str_repeat(' ', strlen($marker_space)) . $def;
+ $def = $this->runBlockGamut($this->outdent($def . "\n\n"));
+ $def = "\n". $def ."\n";
+ }
+ else {
+ $def = rtrim($def);
+ $def = $this->runSpanGamut($this->outdent($def));
+ }
+
+ return "\n " . $def . " \n";
+ }
+
+
+ function doFencedCodeBlocks($text) {
+ #
+ # Adding the fenced code block syntax to regular Markdown:
+ #
+ # ~~~
+ # Code block
+ # ~~~
+ #
+ $less_than_tab = $this->tab_width;
+
+ $text = preg_replace_callback('{
+ (?:\n|\A)
+ # 1: Opening marker
+ (
+ ~{3,} # Marker: three tilde or more.
+ )
+ [ ]* \n # Whitespace and newline following marker.
+
+ # 2: Content
+ (
+ (?>
+ (?!\1 [ ]* \n) # Not a closing marker.
+ .*\n+
+ )+
+ )
+
+ # Closing marker.
+ \1 [ ]* \n
+ }xm',
+ array(&$this, '_doFencedCodeBlocks_callback'), $text);
+
+ return $text;
+ }
+ function _doFencedCodeBlocks_callback($matches) {
+ $codeblock = $matches[2];
+ $codeblock = htmlspecialchars($codeblock, ENT_NOQUOTES);
+ $codeblock = preg_replace_callback('/^\n+/',
+ array(&$this, '_doFencedCodeBlocks_newlines'), $codeblock);
+ $codeblock = "$codeblock
";
+ return "\n\n".$this->hashBlock($codeblock)."\n\n";
+ }
+ function _doFencedCodeBlocks_newlines($matches) {
+ return str_repeat("
empty_element_suffix",
+ strlen($matches[0]));
+ }
+
+
+ #
+ # Redefining emphasis markers so that emphasis by underscore does not
+ # work in the middle of a word.
+ #
+ var $em_relist = array(
+ '' => '(?:(? '(?<=\S|^)(? '(?<=\S|^)(? '(?:(? '(?<=\S|^)(? '(?<=\S|^)(? '(?:(? '(?<=\S|^)(? '(?<=\S|^)(? tags
+ #
+ # Strip leading and trailing lines:
+ $text = preg_replace('/\A\n+|\n+\z/', '', $text);
+
+ $grafs = preg_split('/\n{2,}/', $text, -1, PREG_SPLIT_NO_EMPTY);
+
+ #
+ # Wrap tags and unhashify HTML blocks
+ #
+ foreach ($grafs as $key => $value) {
+ $value = trim($this->runSpanGamut($value));
+
+ # Check if this should be enclosed in a paragraph.
+ # Clean tag hashes & block tag hashes are left alone.
+ $is_p = !preg_match('/^B\x1A[0-9]+B|^C\x1A[0-9]+C$/', $value);
+
+ if ($is_p) {
+ $value = "
$value
";
+ }
+ $grafs[$key] = $value;
+ }
+
+ # Join grafs in one text, then unhash HTML tags.
+ $text = implode("\n\n", $grafs);
+
+ # Finish by removing any tag hashes still present in $text.
+ $text = $this->unhash($text);
+
+ return $text;
+ }
+
+
+ ### Footnotes
+
+ function stripFootnotes($text) {
+ #
+ # Strips link definitions from text, stores the URLs and titles in
+ # hash references.
+ #
+ $less_than_tab = $this->tab_width - 1;
+
+ # Link defs are in the form: [^id]: url "optional title"
+ $text = preg_replace_callback('{
+ ^[ ]{0,'.$less_than_tab.'}\[\^(.+?)\][ ]?: # note_id = $1
+ [ ]*
+ \n? # maybe *one* newline
+ ( # text = $2 (no blank lines allowed)
+ (?:
+ .+ # actual text
+ |
+ \n # newlines but
+ (?!\[\^.+?\]:\s)# negative lookahead for footnote marker.
+ (?!\n+[ ]{0,3}\S)# ensure line is not blank and followed
+ # by non-indented content
+ )*
+ )
+ }xm',
+ array(&$this, '_stripFootnotes_callback'),
+ $text);
+ return $text;
+ }
+ function _stripFootnotes_callback($matches) {
+ $note_id = $this->fn_id_prefix . $matches[1];
+ $this->footnotes[$note_id] = $this->outdent($matches[2]);
+ return ''; # String that will replace the block
+ }
+
+
+ function doFootnotes($text) {
+ #
+ # Replace footnote references in $text [^id] with a special text-token
+ # which will be replaced by the actual footnote marker in appendFootnotes.
+ #
+ if (!$this->in_anchor) {
+ $text = preg_replace('{\[\^(.+?)\]}', "F\x1Afn:\\1\x1A:", $text);
+ }
+ return $text;
+ }
+
+
+ function appendFootnotes($text) {
+ #
+ # Append footnote list to text.
+ #
+ $text = preg_replace_callback('{F\x1Afn:(.*?)\x1A:}',
+ array(&$this, '_appendFootnotes_callback'), $text);
+
+ if (!empty($this->footnotes_ordered)) {
+ $text .= "\n\n";
+ $text .= "\n";
+ $text .= "
empty_element_suffix ."\n";
+ $text .= "\n\n";
+
+ $attr = " rev=\"footnote\"";
+ if ($this->fn_backlink_class != "") {
+ $class = $this->fn_backlink_class;
+ $class = $this->encodeAttribute($class);
+ $attr .= " class=\"$class\"";
+ }
+ if ($this->fn_backlink_title != "") {
+ $title = $this->fn_backlink_title;
+ $title = $this->encodeAttribute($title);
+ $attr .= " title=\"$title\"";
+ }
+ $num = 0;
+
+ while (!empty($this->footnotes_ordered)) {
+ $footnote = reset($this->footnotes_ordered);
+ $note_id = key($this->footnotes_ordered);
+ unset($this->footnotes_ordered[$note_id]);
+
+ $footnote .= "\n"; # Need to append newline before parsing.
+ $footnote = $this->runBlockGamut("$footnote\n");
+ $footnote = preg_replace_callback('{F\x1Afn:(.*?)\x1A:}',
+ array(&$this, '_appendFootnotes_callback'), $footnote);
+
+ $attr = str_replace("%%", ++$num, $attr);
+ $note_id = $this->encodeAttribute($note_id);
+
+ # Add backlink to last paragraph; create new paragraph if needed.
+ $backlink = "↩";
+ if (preg_match('{$}', $footnote)) {
+ $footnote = substr($footnote, 0, -4) . " $backlink";
+ } else {
+ $footnote .= "\n\n$backlink
";
+ }
+
+ $text .= "- \n";
+ $text .= $footnote . "\n";
+ $text .= "
\n\n";
+ }
+
+ $text .= "
\n";
+ $text .= "";
+ }
+ return $text;
+ }
+ function _appendFootnotes_callback($matches) {
+ $node_id = $this->fn_id_prefix . $matches[1];
+
+ # Create footnote marker only if it has a corresponding footnote *and*
+ # the footnote hasn't been used by another marker.
+ if (isset($this->footnotes[$node_id])) {
+ # Transfert footnote content to the ordered list.
+ $this->footnotes_ordered[$node_id] = $this->footnotes[$node_id];
+ unset($this->footnotes[$node_id]);
+
+ $num = $this->footnote_counter++;
+ $attr = " rel=\"footnote\"";
+ if ($this->fn_link_class != "") {
+ $class = $this->fn_link_class;
+ $class = $this->encodeAttribute($class);
+ $attr .= " class=\"$class\"";
+ }
+ if ($this->fn_link_title != "") {
+ $title = $this->fn_link_title;
+ $title = $this->encodeAttribute($title);
+ $attr .= " title=\"$title\"";
+ }
+
+ $attr = str_replace("%%", $num, $attr);
+ $node_id = $this->encodeAttribute($node_id);
+
+ return
+ "".
+ "$num".
+ "";
+ }
+
+ return "[^".$matches[1]."]";
+ }
+
+
+ ### Abbreviations ###
+
+ function stripAbbreviations($text) {
+ #
+ # Strips abbreviations from text, stores titles in hash references.
+ #
+ $less_than_tab = $this->tab_width - 1;
+
+ # Link defs are in the form: [id]*: url "optional title"
+ $text = preg_replace_callback('{
+ ^[ ]{0,'.$less_than_tab.'}\*\[(.+?)\][ ]?: # abbr_id = $1
+ (.*) # text = $2 (no blank lines allowed)
+ }xm',
+ array(&$this, '_stripAbbreviations_callback'),
+ $text);
+ return $text;
+ }
+ function _stripAbbreviations_callback($matches) {
+ $abbr_word = $matches[1];
+ $abbr_desc = $matches[2];
+ if ($this->abbr_word_re)
+ $this->abbr_word_re .= '|';
+ $this->abbr_word_re .= preg_quote($abbr_word);
+ $this->abbr_desciptions[$abbr_word] = trim($abbr_desc);
+ return ''; # String that will replace the block
+ }
+
+
+ function doAbbreviations($text) {
+ #
+ # Find defined abbreviations in text and wrap them in elements.
+ #
+ if ($this->abbr_word_re) {
+ // cannot use the /x modifier because abbr_word_re may
+ // contain significant spaces:
+ $text = preg_replace_callback('{'.
+ '(?abbr_word_re.')'.
+ '(?![\w\x1A])'.
+ '}',
+ array(&$this, '_doAbbreviations_callback'), $text);
+ }
+ return $text;
+ }
+ function _doAbbreviations_callback($matches) {
+ $abbr = $matches[0];
+ if (isset($this->abbr_desciptions[$abbr])) {
+ $desc = $this->abbr_desciptions[$abbr];
+ if (empty($desc)) {
+ return $this->hashPart("$abbr");
+ } else {
+ $desc = $this->encodeAttribute($desc);
+ return $this->hashPart("$abbr");
+ }
+ } else {
+ return $matches[0];
+ }
+ }
+
+}
+
+
/*
-PHP Markdown
-============
+PHP Markdown Extra
+==================
Description
-----------
-This is a PHP translation of the original Markdown formatter written in
-Perl by John Gruber.
+This is a PHP port of the original Markdown formatter written in Perl
+by John Gruber. This special "Extra" version of PHP Markdown features
+further enhancements to the syntax for making additional constructs
+such as tables and definition list.
Markdown is a text-to-HTML filter; it translates an easy-to-read /
easy-to-write structured text format into HTML. Markdown's text format
@@ -1691,12 +2891,12 @@ See the readme file for detailed release notes for this version.
Copyright and License
---------------------
-PHP Markdown
+PHP Markdown & Extra
Copyright (c) 2004-2009 Michel Fortin
All rights reserved.
-Based on Markdown
+Based on Markdown
Copyright (c) 2003-2006 John Gruber
All rights reserved.
diff --git a/blog/wp-content/plugins/more-fields/changelog.txt b/blog/wp-content/plugins/more-fields/changelog.txt
new file mode 100644
index 0000000..99cdcd5
--- /dev/null
+++ b/blog/wp-content/plugins/more-fields/changelog.txt
@@ -0,0 +1,9 @@
+MORE-FIELDS CHANGELOG
+
+More Fields 1.4Beta1:
+copy wp-admin/js/post.js to wp-content/plugins/more-fields/post.js
+wp-content/plugins/more-fields/post.js: Comment out line 234
+wp-content/plugins/more-fields/post.js: Comment out line 235
+wp-content/plugins/more-fields/post.js: Comment out line 236
+wp-content/plugins/more-fields/post.js: Comment out line 237
+
diff --git a/blog/wp-content/plugins/more-fields/more-fields-manage-boxes.php b/blog/wp-content/plugins/more-fields/more-fields-manage-boxes.php
index a826a96..bb5c84b 100644
--- a/blog/wp-content/plugins/more-fields/more-fields-manage-boxes.php
+++ b/blog/wp-content/plugins/more-fields/more-fields-manage-boxes.php
@@ -147,7 +147,7 @@
update_option('more_fields_boxes', $boxes);
// Generate the rewrite rules for this field
- $mf0->rewrite_rules();
+ $mf0->generate_rewrite_rules();
$mf0->flush_rewrite_rules();
$mfo->condition(false, __('Field was saved!', 'more-fields'), 'notification');
diff --git a/blog/wp-content/plugins/more-fields/more-fields-object.php b/blog/wp-content/plugins/more-fields/more-fields-object.php
index 77684cd..445f7d1 100644
--- a/blog/wp-content/plugins/more-fields/more-fields-object.php
+++ b/blog/wp-content/plugins/more-fields/more-fields-object.php
@@ -90,7 +90,7 @@ class more_fields_object {
add_filter('query_vars', array(&$this, 'query_vars'));
add_filter('posts_join', array(&$this, 'query_join'));
add_filter('posts_where', array(&$this, 'query_where'));
- // add_filter('init', array(&$this, 'rewrite_rules'));
+ //add_filter('init', array(&$this, 'flush_rewrite_rules'));
add_filter('generate_rewrite_rules', array(&$this, 'generate_rewrite_rules'));
// add_action('admin_head', array(&$this, 'admin_options_head'));
@@ -134,7 +134,8 @@ class more_fields_object {
}
function wp_default_scripts(&$scripts) {
- $src = get_option('home') . '/wp-content/plugins/more-fields/post.js';
+ global $wp_version;
+ $src = get_option('home') . '/wp-content/plugins/more-fields/post-' . $wp_version . '.js';
$scripts->registered['post']->src = $src;
}
function return_unmodified ($value) {
@@ -729,11 +730,11 @@ class more_fields_object {
function flush_rewrite_rules() {
global $wp_rewrite, $wp_query, $wp;
- $wp_rewrite->flush_rules();
- $wp_query->query_vars[] = 'mf_key';
- $wp_query->query_vars[] = 'mf_value';
- $wp->add_query_var('mf_key');
- $wp->add_query_var('mf_value');
+ $wp_rewrite->flush_rules();
+ $wp_query->query_vars[] = 'mf_key';
+ $wp_query->query_vars[] = 'mf_value';
+ // $wp->add_query_var('mf_key');
+ // $wp->add_query_var('mf_value');
}
@@ -753,7 +754,7 @@ class more_fields_object {
function generate_rewrite_rules () {
global $wp_taxonomies, $wp_rewrite, $wp;
$boxes = $this->get_boxes();
-
+ $rules = array();
foreach ($boxes as $box) {
foreach ((array) $box['field'] as $field) {
@@ -762,15 +763,11 @@ class more_fields_object {
$slug = substr($field['slug'], 1, strlen($field['slug']));
if (!$slug) continue;
$key = $field['key'];
-
- //add_rewrite_rule("$slug/(.+)", "index.php?mf_key=$key&mf_value=" . $wp_rewrite->preg_index(1));
- $new_rule = array("$slug/(.+)" => "index.php?mf_key=$key&mf_value=" . $wp_rewrite->preg_index(1));
- $wp_rewrite->rules = $new_rule + $wp_rewrite->rules;
+ $wp_rewrite->add_rule("$slug/(.+)", "index.php?mf_key=$key&mf_value=\$matches[1]", "top");
}
}
-
- return $wp_rewrite;
+ return $wp_rewrite;
}
diff --git a/blog/wp-content/plugins/more-fields/more-fields.php b/blog/wp-content/plugins/more-fields/more-fields.php
index 9d0e92a..94745ea 100644
--- a/blog/wp-content/plugins/more-fields/more-fields.php
+++ b/blog/wp-content/plugins/more-fields/more-fields.php
@@ -1,7 +1,7 @@
X ' + val + ' ';
+ jQuery(taxbox).find('.tagchecklist').append(txt);
+ jQuery( '#' + button_id ).click( new_tag_remove_tag );
+ }
+ });
+ if ( shown )
+ jQuery(taxbox).find('.tagchecklist').prepend(''+postL10n.tagsUsed+'
');
+}
+
+function tag_flush_to_text(id, a) {
+ a = a || false;
+ var taxbox, text, tags, newtags;
+
+ taxbox = jQuery('#'+id);
+ text = a ? jQuery(a).text() : taxbox.find('input.newtag').val();
+
+ // is the input box empty (i.e. showing the 'Add new tag' tip)?
+ if ( taxbox.find('input.newtag').hasClass('form-input-tip') && ! a )
+ return false;
+
+ tags = taxbox.find('.the-tags').val();
+ newtags = tags ? tags + ',' + text : text;
+
+ // massage
+ newtags = newtags.replace(/\s+,+\s*/g, ',').replace(/,+/g, ',').replace(/,+\s+,+/g, ',').replace(/,+\s*$/g, '').replace(/^\s*,+/g, '');
+ newtags = array_unique_noempty(newtags.split(',')).join(',');
+ taxbox.find('.the-tags').val(newtags);
+ tag_update_quickclicks(taxbox);
+
+ if ( ! a )
+ taxbox.find('input.newtag').val('').focus();
+
+ return false;
+}
+
+function tag_save_on_publish() {
+ jQuery('.tagsdiv').each( function(i) {
+ if ( !jQuery(this).find('input.newtag').hasClass('form-input-tip') )
+ tag_flush_to_text(jQuery(this).parents('.tagsdiv').attr('id'));
+ } );
+}
+
+function tag_press_key( e ) {
+ if ( 13 == e.which ) {
+ tag_flush_to_text(jQuery(e.target).parents('.tagsdiv').attr('id'));
+ return false;
+ }
+};
+
+function tag_init() {
+
+ jQuery('.ajaxtag').show();
+ jQuery('.tagsdiv').each( function(i) {
+ tag_update_quickclicks(this);
+ } );
+
+ // add the quickadd form
+ jQuery('.ajaxtag input.tagadd').click(function(){tag_flush_to_text(jQuery(this).parents('.tagsdiv').attr('id'));});
+ jQuery('.ajaxtag input.newtag').focus(function() {
+ if ( !this.cleared ) {
+ this.cleared = true;
+ jQuery(this).val( '' ).removeClass( 'form-input-tip' );
+ }
+ });
+
+ jQuery('.ajaxtag input.newtag').blur(function() {
+ if ( this.value == '' ) {
+ this.cleared = false;
+ jQuery(this).val( postL10n.addTag ).addClass( 'form-input-tip' );
+ }
+ });
+
+ // auto-save tags on post save/publish
+ jQuery('#publish').click( tag_save_on_publish );
+ jQuery('#save-post').click( tag_save_on_publish );
+
+ // catch the enter key
+ jQuery('.ajaxtag input.newtag').keypress( tag_press_key );
+}
+
+var commentsBox, tagCloud;
+(function($){
+
+ commentsBox = {
+ st : 0,
+
+ get : function(total, num) {
+ var st = this.st, data;
+ if ( ! num )
+ num = 20;
+
+ this.st += num;
+ this.total = total;
+ $('#commentsdiv img.waiting').show();
+
+ data = {
+ 'action' : 'get-comments',
+ 'mode' : 'single',
+ '_ajax_nonce' : $('#add_comment_nonce').val(),
+ 'post_ID' : $('#post_ID').val(),
+ 'start' : st,
+ 'num' : num
+ };
+
+ $.post(ajaxurl, data,
+ function(r) {
+ r = wpAjax.parseAjaxResponse(r);
+ $('#commentsdiv .widefat').show();
+ $('#commentsdiv img.waiting').hide();
+
+ if ( 'object' == typeof r && r.responses[0] ) {
+ $('#the-comment-list').append( r.responses[0].data );
+
+ theList = theExtraList = null;
+ $("a[className*=':']").unbind();
+ setCommentsList();
+
+ if ( commentsBox.st > commentsBox.total )
+ $('#show-comments').hide();
+ else
+ $('#show-comments').html(postL10n.showcomm);
+ return;
+ } else if ( 1 == r ) {
+ $('#show-comments').parent().html(postL10n.endcomm);
+ return;
+ }
+
+ $('#the-comment-list').append(''+wpAjax.broken+' ');
+ }
+ );
+
+ return false;
+ }
+ };
+
+ tagCloud = {
+ init : function() {
+ $('.tagcloud-link').click(function(){
+ tagCloud.get($(this).attr('id'));
+ $(this).unbind().click(function(){
+ $(this).siblings('.the-tagcloud').toggle();
+ return false;
+ });
+ return false;
+ });
+ },
+
+ get : function(id) {
+ var tax = id.substr(id.indexOf('-')+1);
+
+ $.post(ajaxurl, {'action':'get-tagcloud','tax':tax}, function(r, stat) {
+ if ( 0 == r || 'success' != stat )
+ r = wpAjax.broken;
+
+ r = $(''+r+'
');
+ $('a', r).click(function(){
+ var id = $(this).parents('p').attr('id');
+ tag_flush_to_text(id.substr(id.indexOf('-')+1), this);
+ return false;
+ });
+
+ $('#'+id).after(r);
+ });
+ }
+ };
+
+ $(document).ready(function(){tagCloud.init();});
+})(jQuery);
+
+jQuery(document).ready( function($) {
+ var noSyncChecks = false, syncChecks, catAddAfter, stamp = $('#timestamp').html(), visibility = $('#post-visibility-display').html(), sticky = '';
+
+ // postboxes
+ postboxes.add_postbox_toggles('post');
+
+ // Editable slugs
+ make_slugedit_clickable();
+
+ // prepare the tag UI
+ tag_init();
+
+ $('#title').blur( function() {
+ if ( ($("#post_ID").val() > 0) || ($("#title").val().length == 0) )
+ return;
+
+ if ( typeof(autosave) != 'undefined' )
+ autosave();
+ });
+
+ // auto-suggest stuff
+ $('.newtag').each(function(){
+ var tax = $(this).parents('div.tagsdiv').attr('id');
+ $(this).suggest( 'admin-ajax.php?action=ajax-tag-search&tax='+tax, { delay: 500, minchars: 2, multiple: true, multipleSep: ", " } );
+ });
+
+ // category tabs
+ $('#category-tabs a').click(function(){
+ var t = $(this).attr('href');
+ $(this).parent().addClass('tabs').siblings('li').removeClass('tabs');
+ $('.tabs-panel').hide();
+ $(t).show();
+ if ( '#categories-all' == t )
+ deleteUserSetting('cats');
+ else
+ setUserSetting('cats','pop');
+ return false;
+ });
+ if ( getUserSetting('cats') )
+ $('#category-tabs a[href="#categories-pop"]').click();
+
+ // Ajax Cat
+ $('#newcat').one( 'focus', function() { $(this).val( '' ).removeClass( 'form-input-tip' ) } );
+ $('#category-add-sumbit').click(function(){$('#newcat').focus();});
+
+ syncChecks = function() {
+ if ( noSyncChecks )
+ return;
+ noSyncChecks = true;
+ var th = jQuery(this), c = th.is(':checked'), id = th.val().toString();
+ $('#in-category-' + id + ', #in-popular-category-' + id).attr( 'checked', c );
+ noSyncChecks = false;
+ };
+
+ popularCats = $('#categorychecklist-pop :checkbox').map( function() { return parseInt(jQuery(this).val(), 10); } ).get().join(',');
+ catAddBefore = function( s ) {
+ if ( !$('#newcat').val() )
+ return false;
+ s.data += '&popular_ids=' + popularCats + '&' + jQuery( '#categorychecklist :checked' ).serialize();
+ return s;
+ };
+
+ catAddAfter = function( r, s ) {
+ var newCatParent = jQuery('#newcat_parent'), newCatParentOption = newCatParent.find( 'option[value="-1"]' );
+ $(s.what + ' response_data', r).each( function() {
+ var t = $($(this).text());
+ t.find( 'label' ).each( function() {
+ var th = $(this), val = th.find('input').val(), id = th.find('input')[0].id, name, o;
+ $('#' + id).change( syncChecks ).change();
+ if ( newCatParent.find( 'option[value="' + val + '"]' ).size() )
+ return;
+ name = $.trim( th.text() );
+ o = $( '' ).text( name );
+ newCatParent.prepend( o );
+ } );
+ newCatParentOption.attr( 'selected', 'selected' );
+ } );
+ };
+
+ $('#categorychecklist').wpList( {
+ alt: '',
+ response: 'category-ajax-response',
+ addBefore: catAddBefore,
+ addAfter: catAddAfter
+ } );
+
+ $('#category-add-toggle').click( function() {
+ $('#category-adder').toggleClass( 'wp-hidden-children' );
+ $('#category-tabs a[href="#categories-all"]').click();
+ return false;
+ } );
+
+ $('.categorychecklist .popular-category :checkbox').change( syncChecks ).filter( ':checked' ).change(), sticky = '';
+
+ function updateVisibility() {
+ if ( $('#post-visibility-select input:radio:checked').val() != 'public' ) {
+ $('#sticky').attr('checked', false);
+ $('#sticky-span').hide();
+ } else {
+ $('#sticky-span').show();
+ }
+ if ( $('#post-visibility-select input:radio:checked').val() != 'password' ) {
+ $('#password-span').hide();
+ } else {
+ $('#password-span').show();
+ }
+ }
+
+ function updateText() {
+ var attemptedDate, originalDate, currentDate, publishOn;
+
+ attemptedDate = new Date( $('#aa').val(), $('#mm').val() -1, $('#jj').val(), $('#hh').val(), $('#mn').val());
+ originalDate = new Date( $('#hidden_aa').val(), $('#hidden_mm').val() -1, $('#hidden_jj').val(), $('#hidden_hh').val(), $('#hidden_mn').val());
+ currentDate = new Date( $('#cur_aa').val(), $('#cur_mm').val() -1, $('#cur_jj').val(), $('#cur_hh').val(), $('#cur_mn').val());
+ if ( attemptedDate > currentDate && $('#original_post_status').val() != 'future' ) {
+ publishOn = postL10n.publishOnFuture;
+ $('#publish').val( postL10n.schedule );
+ } else if ( attemptedDate <= currentDate && $('#original_post_status').val() != 'publish' ) {
+ publishOn = postL10n.publishOn;
+ $('#publish').val( postL10n.publish );
+ } else {
+ publishOn = postL10n.publishOnPast;
+ $('#publish').val( postL10n.update );
+ }
+ if ( originalDate.toUTCString() == attemptedDate.toUTCString() ) { //hack
+ $('#timestamp').html(stamp);
+ } else {
+ $('#timestamp').html(
+ publishOn + ' ' +
+ $( '#mm option[value=' + $('#mm').val() + ']' ).text() + ' ' +
+ $('#jj').val() + ', ' +
+ $('#aa').val() + ' @ ' +
+ $('#hh').val() + ':' +
+ $('#mn').val() + ' '
+ );
+ }
+
+ if ( $('#post-visibility-select input:radio:checked').val() == 'private' ) {
+ $('#publish').val( postL10n.update );
+ if ( $('#post_status option[value=publish]').length == 0 ) {
+ $('#post_status').append('');
+ }
+ $('#post_status option[value=publish]').html( postL10n.privatelyPublished );
+ $('#post_status option[value=publish]').attr('selected', true);
+ $('.edit-post-status').hide();
+ } else {
+ if ( $('#original_post_status').val() == 'future' || $('#original_post_status').val() == 'draft' ) {
+ if ( $('#post_status option[value=publish]').length != 0 ) {
+ $('#post_status option[value=publish]').remove();
+ $('#post_status').val($('#hidden_post_status').val());
+ }
+ } else {
+ $('#post_status option[value=publish]').html( postL10n.published );
+ }
+ $('.edit-post-status').show();
+ }
+ $('#post-status-display').html($('#post_status :selected').text());
+ if ( $('#post_status :selected').val() == 'private' || $('#post_status :selected').val() == 'publish' ) {
+ $('#save-post').hide();
+ } else {
+ $('#save-post').show();
+ if ( $('#post_status :selected').val() == 'pending' ) {
+ $('#save-post').show().val( postL10n.savePending );
+ } else {
+ $('#save-post').show().val( postL10n.saveDraft );
+ }
+ }
+ }
+
+ $('.edit-visibility').click(function () {
+ if ($('#post-visibility-select').is(":hidden")) {
+ updateVisibility();
+ $('#post-visibility-select').slideDown("normal");
+ $('.edit-visibility').hide();
+ }
+ return false;
+ });
+
+ $('.cancel-post-visibility').click(function () {
+ $('#post-visibility-select').slideUp("normal");
+ $('#visibility-radio-' + $('#hidden-post-visibility').val()).attr('checked', true);
+ $('#post_password').val($('#hidden_post_password').val());
+ $('#sticky').attr('checked', $('#hidden-post-sticky').attr('checked'));
+ $('#post-visibility-display').html(visibility);
+ $('.edit-visibility').show();
+ updateText();
+ return false;
+ });
+
+ $('.save-post-visibility').click(function () { // crazyhorse - multiple ok cancels
+ $('#post-visibility-select').slideUp("normal");
+ $('.edit-visibility').show();
+ updateText();
+ if ( $('#post-visibility-select input:radio:checked').val() != 'public' ) {
+ $('#sticky').attr('checked', false);
+ }
+
+ if ( true == $('#sticky').attr('checked') ) {
+ sticky = 'Sticky';
+ } else {
+ sticky = '';
+ }
+
+ $('#post-visibility-display').html(
+ postL10n[$('#post-visibility-select input:radio:checked').val() + sticky]
+ );
+
+ return false;
+ });
+
+ $('#post-visibility-select input:radio').change(function() {
+ updateVisibility();
+ });
+
+ $('.edit-timestamp').click(function () {
+ if ($('#timestampdiv').is(":hidden")) {
+ $('#timestampdiv').slideDown("normal");
+ $('.edit-timestamp').hide();
+ }
+
+ return false;
+ });
+
+ $('.cancel-timestamp').click(function() {
+ $('#timestampdiv').slideUp("normal");
+ $('#mm').val($('#hidden_mm').val());
+ $('#jj').val($('#hidden_jj').val());
+ $('#aa').val($('#hidden_aa').val());
+ $('#hh').val($('#hidden_hh').val());
+ $('#mn').val($('#hidden_mn').val());
+ $('.edit-timestamp').show();
+ updateText();
+ return false;
+ });
+
+ $('.save-timestamp').click(function () { // crazyhorse - multiple ok cancels
+ $('#timestampdiv').slideUp("normal");
+ $('.edit-timestamp').show();
+ updateText();
+
+ return false;
+ });
+
+ $('.edit-post-status').click(function() {
+ if ($('#post-status-select').is(":hidden")) {
+ $('#post-status-select').slideDown("normal");
+ $(this).hide();
+ }
+
+ return false;
+ });
+
+ $('.save-post-status').click(function() {
+ $('#post-status-select').slideUp("normal");
+ $('.edit-post-status').show();
+ updateText();
+ return false;
+ });
+
+ $('.cancel-post-status').click(function() {
+ $('#post-status-select').slideUp("normal");
+ $('#post_status').val($('#hidden_post_status').val());
+ $('.edit-post-status').show();
+ updateText();
+ return false;
+ });
+
+ // Custom Fields
+ $('#the-list').wpList( { addAfter: function( xml, s ) {
+ $('table#list-table').show();
+ if ( typeof( autosave_update_post_ID ) != 'undefined' ) {
+ autosave_update_post_ID(s.parsed.responses[0].supplemental.postid);
+ }
+ }, addBefore: function( s ) {
+ s.data += '&post_id=' + $('#post_ID').val();
+ return s;
+ }
+ });
+});
diff --git a/blog/wp-content/plugins/more-fields/post-2.8.2.js b/blog/wp-content/plugins/more-fields/post-2.8.2.js
new file mode 100644
index 0000000..95d7bc2
--- /dev/null
+++ b/blog/wp-content/plugins/more-fields/post-2.8.2.js
@@ -0,0 +1,490 @@
+// return an array with any duplicate, whitespace or values removed
+function array_unique_noempty(a) {
+ var out = [];
+ jQuery.each( a, function(key, val) {
+ val = jQuery.trim(val);
+ if ( val && jQuery.inArray(val, out) == -1 )
+ out.push(val);
+ } );
+ return out;
+}
+
+function new_tag_remove_tag() {
+ var id = jQuery( this ).attr( 'id' ), num = id.split('-check-num-')[1], taxbox = jQuery(this).parents('.tagsdiv'), current_tags = taxbox.find( '.the-tags' ).val().split(','), new_tags = [];
+ delete current_tags[num];
+
+ jQuery.each( current_tags, function(key, val) {
+ val = jQuery.trim(val);
+ if ( val ) {
+ new_tags.push(val);
+ }
+ });
+
+ taxbox.find('.the-tags').val( new_tags.join(',').replace(/\s*,+\s*/, ',').replace(/,+/, ',').replace(/,+\s+,+/, ',').replace(/,+\s*$/, '').replace(/^\s*,+/, '') );
+
+ tag_update_quickclicks(taxbox);
+ return false;
+}
+
+function tag_update_quickclicks(taxbox) {
+ if ( jQuery(taxbox).find('.the-tags').length == 0 )
+ return;
+
+ var current_tags = jQuery(taxbox).find('.the-tags').val().split(',');
+ jQuery(taxbox).find('.tagchecklist').empty();
+ shown = false;
+
+ jQuery.each( current_tags, function( key, val ) {
+ var txt, button_id;
+
+ val = jQuery.trim(val);
+ if ( !val.match(/^\s+$/) && '' != val ) {
+ button_id = jQuery(taxbox).attr('id') + '-check-num-' + key;
+ txt = 'X ' + val + ' ';
+ jQuery(taxbox).find('.tagchecklist').append(txt);
+ jQuery( '#' + button_id ).click( new_tag_remove_tag );
+ }
+ });
+ if ( shown )
+ jQuery(taxbox).find('.tagchecklist').prepend(''+postL10n.tagsUsed+'
');
+}
+
+function tag_flush_to_text(id, a) {
+ a = a || false;
+ var taxbox, text, tags, newtags;
+
+ taxbox = jQuery('#'+id);
+ text = a ? jQuery(a).text() : taxbox.find('input.newtag').val();
+
+ // is the input box empty (i.e. showing the 'Add new tag' tip)?
+ if ( taxbox.find('input.newtag').hasClass('form-input-tip') && ! a )
+ return false;
+
+ tags = taxbox.find('.the-tags').val();
+ newtags = tags ? tags + ',' + text : text;
+
+ // massage
+ newtags = newtags.replace(/\s+,+\s*/g, ',').replace(/,+/g, ',').replace(/,+\s+,+/g, ',').replace(/,+\s*$/g, '').replace(/^\s*,+/g, '');
+ newtags = array_unique_noempty(newtags.split(',')).join(',');
+ taxbox.find('.the-tags').val(newtags);
+ tag_update_quickclicks(taxbox);
+
+ if ( ! a )
+ taxbox.find('input.newtag').val('').focus();
+
+ return false;
+}
+
+function tag_save_on_publish() {
+ jQuery('.tagsdiv').each( function(i) {
+ if ( !jQuery(this).find('input.newtag').hasClass('form-input-tip') )
+ tag_flush_to_text(jQuery(this).parents('.tagsdiv').attr('id'));
+ } );
+}
+
+function tag_press_key( e ) {
+ if ( 13 == e.which ) {
+ tag_flush_to_text(jQuery(e.target).parents('.tagsdiv').attr('id'));
+ return false;
+ }
+};
+
+function tag_init() {
+
+ jQuery('.ajaxtag').show();
+ jQuery('.tagsdiv').each( function(i) {
+ tag_update_quickclicks(this);
+ } );
+
+ // add the quickadd form
+ jQuery('.ajaxtag input.tagadd').click(function(){tag_flush_to_text(jQuery(this).parents('.tagsdiv').attr('id'));});
+ jQuery('.ajaxtag input.newtag').focus(function() {
+ if ( !this.cleared ) {
+ this.cleared = true;
+ jQuery(this).val( '' ).removeClass( 'form-input-tip' );
+ }
+ });
+
+ jQuery('.ajaxtag input.newtag').blur(function() {
+ if ( this.value == '' ) {
+ this.cleared = false;
+ jQuery(this).val( postL10n.addTag ).addClass( 'form-input-tip' );
+ }
+ });
+
+ // auto-save tags on post save/publish
+ jQuery('#publish').click( tag_save_on_publish );
+ jQuery('#save-post').click( tag_save_on_publish );
+
+ // catch the enter key
+ jQuery('.ajaxtag input.newtag').keypress( tag_press_key );
+}
+
+var commentsBox, tagCloud;
+(function($){
+
+ commentsBox = {
+ st : 0,
+
+ get : function(total, num) {
+ var st = this.st, data;
+ if ( ! num )
+ num = 20;
+
+ this.st += num;
+ this.total = total;
+ $('#commentsdiv img.waiting').show();
+
+ data = {
+ 'action' : 'get-comments',
+ 'mode' : 'single',
+ '_ajax_nonce' : $('#add_comment_nonce').val(),
+ 'post_ID' : $('#post_ID').val(),
+ 'start' : st,
+ 'num' : num
+ };
+
+ $.post(ajaxurl, data,
+ function(r) {
+ r = wpAjax.parseAjaxResponse(r);
+ $('#commentsdiv .widefat').show();
+ $('#commentsdiv img.waiting').hide();
+
+ if ( 'object' == typeof r && r.responses[0] ) {
+ $('#the-comment-list').append( r.responses[0].data );
+
+ theList = theExtraList = null;
+ $("a[className*=':']").unbind();
+ setCommentsList();
+
+ if ( commentsBox.st > commentsBox.total )
+ $('#show-comments').hide();
+ else
+ $('#show-comments').html(postL10n.showcomm);
+ return;
+ } else if ( 1 == r ) {
+ $('#show-comments').parent().html(postL10n.endcomm);
+ return;
+ }
+
+ $('#the-comment-list').append(''+wpAjax.broken+' ');
+ }
+ );
+
+ return false;
+ }
+ };
+
+ tagCloud = {
+ init : function() {
+ $('.tagcloud-link').click(function(){
+ tagCloud.get($(this).attr('id'));
+ $(this).unbind().click(function(){
+ $(this).siblings('.the-tagcloud').toggle();
+ return false;
+ });
+ return false;
+ });
+ },
+
+ get : function(id) {
+ var tax = id.substr(id.indexOf('-')+1);
+
+ $.post(ajaxurl, {'action':'get-tagcloud','tax':tax}, function(r, stat) {
+ if ( 0 == r || 'success' != stat )
+ r = wpAjax.broken;
+
+ r = $(''+r+'
');
+ $('a', r).click(function(){
+ var id = $(this).parents('p').attr('id');
+ tag_flush_to_text(id.substr(id.indexOf('-')+1), this);
+ return false;
+ });
+
+ $('#'+id).after(r);
+ });
+ }
+ };
+
+ $(document).ready(function(){tagCloud.init();});
+})(jQuery);
+
+jQuery(document).ready( function($) {
+ var noSyncChecks = false, syncChecks, catAddAfter, stamp = $('#timestamp').html(), visibility = $('#post-visibility-display').html(), sticky = '';
+
+ // postboxes
+ postboxes.add_postbox_toggles('post');
+
+ // Editable slugs
+ make_slugedit_clickable();
+
+ // prepare the tag UI
+ tag_init();
+
+ $('#title').blur( function() {
+ if ( ($("#post_ID").val() > 0) || ($("#title").val().length == 0) )
+ return;
+
+ if ( typeof(autosave) != 'undefined' )
+ autosave();
+ });
+
+ // auto-suggest stuff
+ $('.newtag').each(function(){
+ var tax = $(this).parents('div.tagsdiv').attr('id');
+ $(this).suggest( 'admin-ajax.php?action=ajax-tag-search&tax='+tax, { delay: 500, minchars: 2, multiple: true, multipleSep: ", " } );
+ });
+
+ // category tabs
+ $('#category-tabs a').click(function(){
+ var t = $(this).attr('href');
+ $(this).parent().addClass('tabs').siblings('li').removeClass('tabs');
+ $('.tabs-panel').hide();
+ $(t).show();
+ if ( '#categories-all' == t )
+ deleteUserSetting('cats');
+ else
+ setUserSetting('cats','pop');
+ return false;
+ });
+ if ( getUserSetting('cats') )
+ $('#category-tabs a[href="#categories-pop"]').click();
+
+ // Ajax Cat
+ $('#newcat').one( 'focus', function() { $(this).val( '' ).removeClass( 'form-input-tip' ) } );
+ $('#category-add-sumbit').click(function(){$('#newcat').focus();});
+
+ syncChecks = function() {
+ if ( noSyncChecks )
+ return;
+ noSyncChecks = true;
+ var th = jQuery(this), c = th.is(':checked'), id = th.val().toString();
+ $('#in-category-' + id + ', #in-popular-category-' + id).attr( 'checked', c );
+ noSyncChecks = false;
+ };
+
+ popularCats = $('#categorychecklist-pop :checkbox').map( function() { return parseInt(jQuery(this).val(), 10); } ).get().join(',');
+ catAddBefore = function( s ) {
+ if ( !$('#newcat').val() )
+ return false;
+ s.data += '&popular_ids=' + popularCats + '&' + jQuery( '#categorychecklist :checked' ).serialize();
+ return s;
+ };
+
+ catAddAfter = function( r, s ) {
+ var newCatParent = jQuery('#newcat_parent'), newCatParentOption = newCatParent.find( 'option[value="-1"]' );
+ $(s.what + ' response_data', r).each( function() {
+ var t = $($(this).text());
+ t.find( 'label' ).each( function() {
+ var th = $(this), val = th.find('input').val(), id = th.find('input')[0].id, name, o;
+ $('#' + id).change( syncChecks ).change();
+ if ( newCatParent.find( 'option[value="' + val + '"]' ).size() )
+ return;
+ name = $.trim( th.text() );
+ o = $( '' ).text( name );
+ newCatParent.prepend( o );
+ } );
+ newCatParentOption.attr( 'selected', 'selected' );
+ } );
+ };
+
+ $('#categorychecklist').wpList( {
+ alt: '',
+ response: 'category-ajax-response',
+ addBefore: catAddBefore,
+ addAfter: catAddAfter
+ } );
+
+ $('#category-add-toggle').click( function() {
+ $('#category-adder').toggleClass( 'wp-hidden-children' );
+ $('#category-tabs a[href="#categories-all"]').click();
+ return false;
+ } );
+
+ $('.categorychecklist .popular-category :checkbox').change( syncChecks ).filter( ':checked' ).change(), sticky = '';
+
+ function updateVisibility() {
+ if ( $('#post-visibility-select input:radio:checked').val() != 'public' ) {
+ $('#sticky').attr('checked', false);
+ $('#sticky-span').hide();
+ } else {
+ $('#sticky-span').show();
+ }
+ if ( $('#post-visibility-select input:radio:checked').val() != 'password' ) {
+ $('#password-span').hide();
+ } else {
+ $('#password-span').show();
+ }
+ }
+
+ function updateText() {
+ var attemptedDate, originalDate, currentDate, publishOn;
+
+ attemptedDate = new Date( $('#aa').val(), $('#mm').val() -1, $('#jj').val(), $('#hh').val(), $('#mn').val());
+ originalDate = new Date( $('#hidden_aa').val(), $('#hidden_mm').val() -1, $('#hidden_jj').val(), $('#hidden_hh').val(), $('#hidden_mn').val());
+ currentDate = new Date( $('#cur_aa').val(), $('#cur_mm').val() -1, $('#cur_jj').val(), $('#cur_hh').val(), $('#cur_mn').val());
+ if ( attemptedDate > currentDate && $('#original_post_status').val() != 'future' ) {
+ publishOn = postL10n.publishOnFuture;
+ $('#publish').val( postL10n.schedule );
+ } else if ( attemptedDate <= currentDate && $('#original_post_status').val() != 'publish' ) {
+ publishOn = postL10n.publishOn;
+ $('#publish').val( postL10n.publish );
+ } else {
+ publishOn = postL10n.publishOnPast;
+ $('#publish').val( postL10n.update );
+ }
+ if ( originalDate.toUTCString() == attemptedDate.toUTCString() ) { //hack
+ $('#timestamp').html(stamp);
+ } else {
+ $('#timestamp').html(
+ publishOn + ' ' +
+ $( '#mm option[value=' + $('#mm').val() + ']' ).text() + ' ' +
+ $('#jj').val() + ', ' +
+ $('#aa').val() + ' @ ' +
+ $('#hh').val() + ':' +
+ $('#mn').val() + ' '
+ );
+ }
+
+ if ( $('#post-visibility-select input:radio:checked').val() == 'private' ) {
+ $('#publish').val( postL10n.update );
+ if ( $('#post_status option[value=publish]').length == 0 ) {
+ $('#post_status').append('');
+ }
+ $('#post_status option[value=publish]').html( postL10n.privatelyPublished );
+ $('#post_status option[value=publish]').attr('selected', true);
+ $('.edit-post-status').hide();
+ } else {
+ if ( $('#original_post_status').val() == 'future' || $('#original_post_status').val() == 'draft' ) {
+ if ( $('#post_status option[value=publish]').length != 0 ) {
+ $('#post_status option[value=publish]').remove();
+ $('#post_status').val($('#hidden_post_status').val());
+ }
+ } else {
+ $('#post_status option[value=publish]').html( postL10n.published );
+ }
+ $('.edit-post-status').show();
+ }
+ $('#post-status-display').html($('#post_status :selected').text());
+ if ( $('#post_status :selected').val() == 'private' || $('#post_status :selected').val() == 'publish' ) {
+ $('#save-post').hide();
+ } else {
+ $('#save-post').show();
+ if ( $('#post_status :selected').val() == 'pending' ) {
+ $('#save-post').show().val( postL10n.savePending );
+ } else {
+ $('#save-post').show().val( postL10n.saveDraft );
+ }
+ }
+ }
+
+ $('.edit-visibility').click(function () {
+ if ($('#post-visibility-select').is(":hidden")) {
+ updateVisibility();
+ $('#post-visibility-select').slideDown("normal");
+ $('.edit-visibility').hide();
+ }
+ return false;
+ });
+
+ $('.cancel-post-visibility').click(function () {
+ $('#post-visibility-select').slideUp("normal");
+ $('#visibility-radio-' + $('#hidden-post-visibility').val()).attr('checked', true);
+ $('#post_password').val($('#hidden_post_password').val());
+ $('#sticky').attr('checked', $('#hidden-post-sticky').attr('checked'));
+ $('#post-visibility-display').html(visibility);
+ $('.edit-visibility').show();
+ updateText();
+ return false;
+ });
+
+ $('.save-post-visibility').click(function () { // crazyhorse - multiple ok cancels
+ $('#post-visibility-select').slideUp("normal");
+ $('.edit-visibility').show();
+ updateText();
+ if ( $('#post-visibility-select input:radio:checked').val() != 'public' ) {
+ $('#sticky').attr('checked', false);
+ }
+
+ if ( true == $('#sticky').attr('checked') ) {
+ sticky = 'Sticky';
+ } else {
+ sticky = '';
+ }
+
+ $('#post-visibility-display').html(
+ postL10n[$('#post-visibility-select input:radio:checked').val() + sticky]
+ );
+
+ return false;
+ });
+
+ $('#post-visibility-select input:radio').change(function() {
+ updateVisibility();
+ });
+
+ $('.edit-timestamp').click(function () {
+ if ($('#timestampdiv').is(":hidden")) {
+ $('#timestampdiv').slideDown("normal");
+ $('.edit-timestamp').hide();
+ }
+
+ return false;
+ });
+
+ $('.cancel-timestamp').click(function() {
+ $('#timestampdiv').slideUp("normal");
+ $('#mm').val($('#hidden_mm').val());
+ $('#jj').val($('#hidden_jj').val());
+ $('#aa').val($('#hidden_aa').val());
+ $('#hh').val($('#hidden_hh').val());
+ $('#mn').val($('#hidden_mn').val());
+ $('.edit-timestamp').show();
+ updateText();
+ return false;
+ });
+
+ $('.save-timestamp').click(function () { // crazyhorse - multiple ok cancels
+ $('#timestampdiv').slideUp("normal");
+ $('.edit-timestamp').show();
+ updateText();
+
+ return false;
+ });
+
+ $('.edit-post-status').click(function() {
+ if ($('#post-status-select').is(":hidden")) {
+ $('#post-status-select').slideDown("normal");
+ $(this).hide();
+ }
+
+ return false;
+ });
+
+ $('.save-post-status').click(function() {
+ $('#post-status-select').slideUp("normal");
+ $('.edit-post-status').show();
+ updateText();
+ return false;
+ });
+
+ $('.cancel-post-status').click(function() {
+ $('#post-status-select').slideUp("normal");
+ $('#post_status').val($('#hidden_post_status').val());
+ $('.edit-post-status').show();
+ updateText();
+ return false;
+ });
+
+ // Custom Fields
+ $('#the-list').wpList( { addAfter: function( xml, s ) {
+ $('table#list-table').show();
+ if ( typeof( autosave_update_post_ID ) != 'undefined' ) {
+ autosave_update_post_ID(s.parsed.responses[0].supplemental.postid);
+ }
+ }, addBefore: function( s ) {
+ s.data += '&post_id=' + $('#post_ID').val();
+ return s;
+ }
+ });
+});
diff --git a/blog/wp-content/plugins/more-fields/post-2.8.3.js b/blog/wp-content/plugins/more-fields/post-2.8.3.js
new file mode 100644
index 0000000..95d7bc2
--- /dev/null
+++ b/blog/wp-content/plugins/more-fields/post-2.8.3.js
@@ -0,0 +1,490 @@
+// return an array with any duplicate, whitespace or values removed
+function array_unique_noempty(a) {
+ var out = [];
+ jQuery.each( a, function(key, val) {
+ val = jQuery.trim(val);
+ if ( val && jQuery.inArray(val, out) == -1 )
+ out.push(val);
+ } );
+ return out;
+}
+
+function new_tag_remove_tag() {
+ var id = jQuery( this ).attr( 'id' ), num = id.split('-check-num-')[1], taxbox = jQuery(this).parents('.tagsdiv'), current_tags = taxbox.find( '.the-tags' ).val().split(','), new_tags = [];
+ delete current_tags[num];
+
+ jQuery.each( current_tags, function(key, val) {
+ val = jQuery.trim(val);
+ if ( val ) {
+ new_tags.push(val);
+ }
+ });
+
+ taxbox.find('.the-tags').val( new_tags.join(',').replace(/\s*,+\s*/, ',').replace(/,+/, ',').replace(/,+\s+,+/, ',').replace(/,+\s*$/, '').replace(/^\s*,+/, '') );
+
+ tag_update_quickclicks(taxbox);
+ return false;
+}
+
+function tag_update_quickclicks(taxbox) {
+ if ( jQuery(taxbox).find('.the-tags').length == 0 )
+ return;
+
+ var current_tags = jQuery(taxbox).find('.the-tags').val().split(',');
+ jQuery(taxbox).find('.tagchecklist').empty();
+ shown = false;
+
+ jQuery.each( current_tags, function( key, val ) {
+ var txt, button_id;
+
+ val = jQuery.trim(val);
+ if ( !val.match(/^\s+$/) && '' != val ) {
+ button_id = jQuery(taxbox).attr('id') + '-check-num-' + key;
+ txt = 'X ' + val + ' ';
+ jQuery(taxbox).find('.tagchecklist').append(txt);
+ jQuery( '#' + button_id ).click( new_tag_remove_tag );
+ }
+ });
+ if ( shown )
+ jQuery(taxbox).find('.tagchecklist').prepend(''+postL10n.tagsUsed+'
');
+}
+
+function tag_flush_to_text(id, a) {
+ a = a || false;
+ var taxbox, text, tags, newtags;
+
+ taxbox = jQuery('#'+id);
+ text = a ? jQuery(a).text() : taxbox.find('input.newtag').val();
+
+ // is the input box empty (i.e. showing the 'Add new tag' tip)?
+ if ( taxbox.find('input.newtag').hasClass('form-input-tip') && ! a )
+ return false;
+
+ tags = taxbox.find('.the-tags').val();
+ newtags = tags ? tags + ',' + text : text;
+
+ // massage
+ newtags = newtags.replace(/\s+,+\s*/g, ',').replace(/,+/g, ',').replace(/,+\s+,+/g, ',').replace(/,+\s*$/g, '').replace(/^\s*,+/g, '');
+ newtags = array_unique_noempty(newtags.split(',')).join(',');
+ taxbox.find('.the-tags').val(newtags);
+ tag_update_quickclicks(taxbox);
+
+ if ( ! a )
+ taxbox.find('input.newtag').val('').focus();
+
+ return false;
+}
+
+function tag_save_on_publish() {
+ jQuery('.tagsdiv').each( function(i) {
+ if ( !jQuery(this).find('input.newtag').hasClass('form-input-tip') )
+ tag_flush_to_text(jQuery(this).parents('.tagsdiv').attr('id'));
+ } );
+}
+
+function tag_press_key( e ) {
+ if ( 13 == e.which ) {
+ tag_flush_to_text(jQuery(e.target).parents('.tagsdiv').attr('id'));
+ return false;
+ }
+};
+
+function tag_init() {
+
+ jQuery('.ajaxtag').show();
+ jQuery('.tagsdiv').each( function(i) {
+ tag_update_quickclicks(this);
+ } );
+
+ // add the quickadd form
+ jQuery('.ajaxtag input.tagadd').click(function(){tag_flush_to_text(jQuery(this).parents('.tagsdiv').attr('id'));});
+ jQuery('.ajaxtag input.newtag').focus(function() {
+ if ( !this.cleared ) {
+ this.cleared = true;
+ jQuery(this).val( '' ).removeClass( 'form-input-tip' );
+ }
+ });
+
+ jQuery('.ajaxtag input.newtag').blur(function() {
+ if ( this.value == '' ) {
+ this.cleared = false;
+ jQuery(this).val( postL10n.addTag ).addClass( 'form-input-tip' );
+ }
+ });
+
+ // auto-save tags on post save/publish
+ jQuery('#publish').click( tag_save_on_publish );
+ jQuery('#save-post').click( tag_save_on_publish );
+
+ // catch the enter key
+ jQuery('.ajaxtag input.newtag').keypress( tag_press_key );
+}
+
+var commentsBox, tagCloud;
+(function($){
+
+ commentsBox = {
+ st : 0,
+
+ get : function(total, num) {
+ var st = this.st, data;
+ if ( ! num )
+ num = 20;
+
+ this.st += num;
+ this.total = total;
+ $('#commentsdiv img.waiting').show();
+
+ data = {
+ 'action' : 'get-comments',
+ 'mode' : 'single',
+ '_ajax_nonce' : $('#add_comment_nonce').val(),
+ 'post_ID' : $('#post_ID').val(),
+ 'start' : st,
+ 'num' : num
+ };
+
+ $.post(ajaxurl, data,
+ function(r) {
+ r = wpAjax.parseAjaxResponse(r);
+ $('#commentsdiv .widefat').show();
+ $('#commentsdiv img.waiting').hide();
+
+ if ( 'object' == typeof r && r.responses[0] ) {
+ $('#the-comment-list').append( r.responses[0].data );
+
+ theList = theExtraList = null;
+ $("a[className*=':']").unbind();
+ setCommentsList();
+
+ if ( commentsBox.st > commentsBox.total )
+ $('#show-comments').hide();
+ else
+ $('#show-comments').html(postL10n.showcomm);
+ return;
+ } else if ( 1 == r ) {
+ $('#show-comments').parent().html(postL10n.endcomm);
+ return;
+ }
+
+ $('#the-comment-list').append(''+wpAjax.broken+' ');
+ }
+ );
+
+ return false;
+ }
+ };
+
+ tagCloud = {
+ init : function() {
+ $('.tagcloud-link').click(function(){
+ tagCloud.get($(this).attr('id'));
+ $(this).unbind().click(function(){
+ $(this).siblings('.the-tagcloud').toggle();
+ return false;
+ });
+ return false;
+ });
+ },
+
+ get : function(id) {
+ var tax = id.substr(id.indexOf('-')+1);
+
+ $.post(ajaxurl, {'action':'get-tagcloud','tax':tax}, function(r, stat) {
+ if ( 0 == r || 'success' != stat )
+ r = wpAjax.broken;
+
+ r = $(''+r+'
');
+ $('a', r).click(function(){
+ var id = $(this).parents('p').attr('id');
+ tag_flush_to_text(id.substr(id.indexOf('-')+1), this);
+ return false;
+ });
+
+ $('#'+id).after(r);
+ });
+ }
+ };
+
+ $(document).ready(function(){tagCloud.init();});
+})(jQuery);
+
+jQuery(document).ready( function($) {
+ var noSyncChecks = false, syncChecks, catAddAfter, stamp = $('#timestamp').html(), visibility = $('#post-visibility-display').html(), sticky = '';
+
+ // postboxes
+ postboxes.add_postbox_toggles('post');
+
+ // Editable slugs
+ make_slugedit_clickable();
+
+ // prepare the tag UI
+ tag_init();
+
+ $('#title').blur( function() {
+ if ( ($("#post_ID").val() > 0) || ($("#title").val().length == 0) )
+ return;
+
+ if ( typeof(autosave) != 'undefined' )
+ autosave();
+ });
+
+ // auto-suggest stuff
+ $('.newtag').each(function(){
+ var tax = $(this).parents('div.tagsdiv').attr('id');
+ $(this).suggest( 'admin-ajax.php?action=ajax-tag-search&tax='+tax, { delay: 500, minchars: 2, multiple: true, multipleSep: ", " } );
+ });
+
+ // category tabs
+ $('#category-tabs a').click(function(){
+ var t = $(this).attr('href');
+ $(this).parent().addClass('tabs').siblings('li').removeClass('tabs');
+ $('.tabs-panel').hide();
+ $(t).show();
+ if ( '#categories-all' == t )
+ deleteUserSetting('cats');
+ else
+ setUserSetting('cats','pop');
+ return false;
+ });
+ if ( getUserSetting('cats') )
+ $('#category-tabs a[href="#categories-pop"]').click();
+
+ // Ajax Cat
+ $('#newcat').one( 'focus', function() { $(this).val( '' ).removeClass( 'form-input-tip' ) } );
+ $('#category-add-sumbit').click(function(){$('#newcat').focus();});
+
+ syncChecks = function() {
+ if ( noSyncChecks )
+ return;
+ noSyncChecks = true;
+ var th = jQuery(this), c = th.is(':checked'), id = th.val().toString();
+ $('#in-category-' + id + ', #in-popular-category-' + id).attr( 'checked', c );
+ noSyncChecks = false;
+ };
+
+ popularCats = $('#categorychecklist-pop :checkbox').map( function() { return parseInt(jQuery(this).val(), 10); } ).get().join(',');
+ catAddBefore = function( s ) {
+ if ( !$('#newcat').val() )
+ return false;
+ s.data += '&popular_ids=' + popularCats + '&' + jQuery( '#categorychecklist :checked' ).serialize();
+ return s;
+ };
+
+ catAddAfter = function( r, s ) {
+ var newCatParent = jQuery('#newcat_parent'), newCatParentOption = newCatParent.find( 'option[value="-1"]' );
+ $(s.what + ' response_data', r).each( function() {
+ var t = $($(this).text());
+ t.find( 'label' ).each( function() {
+ var th = $(this), val = th.find('input').val(), id = th.find('input')[0].id, name, o;
+ $('#' + id).change( syncChecks ).change();
+ if ( newCatParent.find( 'option[value="' + val + '"]' ).size() )
+ return;
+ name = $.trim( th.text() );
+ o = $( '' ).text( name );
+ newCatParent.prepend( o );
+ } );
+ newCatParentOption.attr( 'selected', 'selected' );
+ } );
+ };
+
+ $('#categorychecklist').wpList( {
+ alt: '',
+ response: 'category-ajax-response',
+ addBefore: catAddBefore,
+ addAfter: catAddAfter
+ } );
+
+ $('#category-add-toggle').click( function() {
+ $('#category-adder').toggleClass( 'wp-hidden-children' );
+ $('#category-tabs a[href="#categories-all"]').click();
+ return false;
+ } );
+
+ $('.categorychecklist .popular-category :checkbox').change( syncChecks ).filter( ':checked' ).change(), sticky = '';
+
+ function updateVisibility() {
+ if ( $('#post-visibility-select input:radio:checked').val() != 'public' ) {
+ $('#sticky').attr('checked', false);
+ $('#sticky-span').hide();
+ } else {
+ $('#sticky-span').show();
+ }
+ if ( $('#post-visibility-select input:radio:checked').val() != 'password' ) {
+ $('#password-span').hide();
+ } else {
+ $('#password-span').show();
+ }
+ }
+
+ function updateText() {
+ var attemptedDate, originalDate, currentDate, publishOn;
+
+ attemptedDate = new Date( $('#aa').val(), $('#mm').val() -1, $('#jj').val(), $('#hh').val(), $('#mn').val());
+ originalDate = new Date( $('#hidden_aa').val(), $('#hidden_mm').val() -1, $('#hidden_jj').val(), $('#hidden_hh').val(), $('#hidden_mn').val());
+ currentDate = new Date( $('#cur_aa').val(), $('#cur_mm').val() -1, $('#cur_jj').val(), $('#cur_hh').val(), $('#cur_mn').val());
+ if ( attemptedDate > currentDate && $('#original_post_status').val() != 'future' ) {
+ publishOn = postL10n.publishOnFuture;
+ $('#publish').val( postL10n.schedule );
+ } else if ( attemptedDate <= currentDate && $('#original_post_status').val() != 'publish' ) {
+ publishOn = postL10n.publishOn;
+ $('#publish').val( postL10n.publish );
+ } else {
+ publishOn = postL10n.publishOnPast;
+ $('#publish').val( postL10n.update );
+ }
+ if ( originalDate.toUTCString() == attemptedDate.toUTCString() ) { //hack
+ $('#timestamp').html(stamp);
+ } else {
+ $('#timestamp').html(
+ publishOn + ' ' +
+ $( '#mm option[value=' + $('#mm').val() + ']' ).text() + ' ' +
+ $('#jj').val() + ', ' +
+ $('#aa').val() + ' @ ' +
+ $('#hh').val() + ':' +
+ $('#mn').val() + ' '
+ );
+ }
+
+ if ( $('#post-visibility-select input:radio:checked').val() == 'private' ) {
+ $('#publish').val( postL10n.update );
+ if ( $('#post_status option[value=publish]').length == 0 ) {
+ $('#post_status').append('');
+ }
+ $('#post_status option[value=publish]').html( postL10n.privatelyPublished );
+ $('#post_status option[value=publish]').attr('selected', true);
+ $('.edit-post-status').hide();
+ } else {
+ if ( $('#original_post_status').val() == 'future' || $('#original_post_status').val() == 'draft' ) {
+ if ( $('#post_status option[value=publish]').length != 0 ) {
+ $('#post_status option[value=publish]').remove();
+ $('#post_status').val($('#hidden_post_status').val());
+ }
+ } else {
+ $('#post_status option[value=publish]').html( postL10n.published );
+ }
+ $('.edit-post-status').show();
+ }
+ $('#post-status-display').html($('#post_status :selected').text());
+ if ( $('#post_status :selected').val() == 'private' || $('#post_status :selected').val() == 'publish' ) {
+ $('#save-post').hide();
+ } else {
+ $('#save-post').show();
+ if ( $('#post_status :selected').val() == 'pending' ) {
+ $('#save-post').show().val( postL10n.savePending );
+ } else {
+ $('#save-post').show().val( postL10n.saveDraft );
+ }
+ }
+ }
+
+ $('.edit-visibility').click(function () {
+ if ($('#post-visibility-select').is(":hidden")) {
+ updateVisibility();
+ $('#post-visibility-select').slideDown("normal");
+ $('.edit-visibility').hide();
+ }
+ return false;
+ });
+
+ $('.cancel-post-visibility').click(function () {
+ $('#post-visibility-select').slideUp("normal");
+ $('#visibility-radio-' + $('#hidden-post-visibility').val()).attr('checked', true);
+ $('#post_password').val($('#hidden_post_password').val());
+ $('#sticky').attr('checked', $('#hidden-post-sticky').attr('checked'));
+ $('#post-visibility-display').html(visibility);
+ $('.edit-visibility').show();
+ updateText();
+ return false;
+ });
+
+ $('.save-post-visibility').click(function () { // crazyhorse - multiple ok cancels
+ $('#post-visibility-select').slideUp("normal");
+ $('.edit-visibility').show();
+ updateText();
+ if ( $('#post-visibility-select input:radio:checked').val() != 'public' ) {
+ $('#sticky').attr('checked', false);
+ }
+
+ if ( true == $('#sticky').attr('checked') ) {
+ sticky = 'Sticky';
+ } else {
+ sticky = '';
+ }
+
+ $('#post-visibility-display').html(
+ postL10n[$('#post-visibility-select input:radio:checked').val() + sticky]
+ );
+
+ return false;
+ });
+
+ $('#post-visibility-select input:radio').change(function() {
+ updateVisibility();
+ });
+
+ $('.edit-timestamp').click(function () {
+ if ($('#timestampdiv').is(":hidden")) {
+ $('#timestampdiv').slideDown("normal");
+ $('.edit-timestamp').hide();
+ }
+
+ return false;
+ });
+
+ $('.cancel-timestamp').click(function() {
+ $('#timestampdiv').slideUp("normal");
+ $('#mm').val($('#hidden_mm').val());
+ $('#jj').val($('#hidden_jj').val());
+ $('#aa').val($('#hidden_aa').val());
+ $('#hh').val($('#hidden_hh').val());
+ $('#mn').val($('#hidden_mn').val());
+ $('.edit-timestamp').show();
+ updateText();
+ return false;
+ });
+
+ $('.save-timestamp').click(function () { // crazyhorse - multiple ok cancels
+ $('#timestampdiv').slideUp("normal");
+ $('.edit-timestamp').show();
+ updateText();
+
+ return false;
+ });
+
+ $('.edit-post-status').click(function() {
+ if ($('#post-status-select').is(":hidden")) {
+ $('#post-status-select').slideDown("normal");
+ $(this).hide();
+ }
+
+ return false;
+ });
+
+ $('.save-post-status').click(function() {
+ $('#post-status-select').slideUp("normal");
+ $('.edit-post-status').show();
+ updateText();
+ return false;
+ });
+
+ $('.cancel-post-status').click(function() {
+ $('#post-status-select').slideUp("normal");
+ $('#post_status').val($('#hidden_post_status').val());
+ $('.edit-post-status').show();
+ updateText();
+ return false;
+ });
+
+ // Custom Fields
+ $('#the-list').wpList( { addAfter: function( xml, s ) {
+ $('table#list-table').show();
+ if ( typeof( autosave_update_post_ID ) != 'undefined' ) {
+ autosave_update_post_ID(s.parsed.responses[0].supplemental.postid);
+ }
+ }, addBefore: function( s ) {
+ s.data += '&post_id=' + $('#post_ID').val();
+ return s;
+ }
+ });
+});
diff --git a/blog/wp-content/plugins/more-fields/post-2.8.4.js b/blog/wp-content/plugins/more-fields/post-2.8.4.js
new file mode 100644
index 0000000..95d7bc2
--- /dev/null
+++ b/blog/wp-content/plugins/more-fields/post-2.8.4.js
@@ -0,0 +1,490 @@
+// return an array with any duplicate, whitespace or values removed
+function array_unique_noempty(a) {
+ var out = [];
+ jQuery.each( a, function(key, val) {
+ val = jQuery.trim(val);
+ if ( val && jQuery.inArray(val, out) == -1 )
+ out.push(val);
+ } );
+ return out;
+}
+
+function new_tag_remove_tag() {
+ var id = jQuery( this ).attr( 'id' ), num = id.split('-check-num-')[1], taxbox = jQuery(this).parents('.tagsdiv'), current_tags = taxbox.find( '.the-tags' ).val().split(','), new_tags = [];
+ delete current_tags[num];
+
+ jQuery.each( current_tags, function(key, val) {
+ val = jQuery.trim(val);
+ if ( val ) {
+ new_tags.push(val);
+ }
+ });
+
+ taxbox.find('.the-tags').val( new_tags.join(',').replace(/\s*,+\s*/, ',').replace(/,+/, ',').replace(/,+\s+,+/, ',').replace(/,+\s*$/, '').replace(/^\s*,+/, '') );
+
+ tag_update_quickclicks(taxbox);
+ return false;
+}
+
+function tag_update_quickclicks(taxbox) {
+ if ( jQuery(taxbox).find('.the-tags').length == 0 )
+ return;
+
+ var current_tags = jQuery(taxbox).find('.the-tags').val().split(',');
+ jQuery(taxbox).find('.tagchecklist').empty();
+ shown = false;
+
+ jQuery.each( current_tags, function( key, val ) {
+ var txt, button_id;
+
+ val = jQuery.trim(val);
+ if ( !val.match(/^\s+$/) && '' != val ) {
+ button_id = jQuery(taxbox).attr('id') + '-check-num-' + key;
+ txt = 'X ' + val + ' ';
+ jQuery(taxbox).find('.tagchecklist').append(txt);
+ jQuery( '#' + button_id ).click( new_tag_remove_tag );
+ }
+ });
+ if ( shown )
+ jQuery(taxbox).find('.tagchecklist').prepend(''+postL10n.tagsUsed+'
');
+}
+
+function tag_flush_to_text(id, a) {
+ a = a || false;
+ var taxbox, text, tags, newtags;
+
+ taxbox = jQuery('#'+id);
+ text = a ? jQuery(a).text() : taxbox.find('input.newtag').val();
+
+ // is the input box empty (i.e. showing the 'Add new tag' tip)?
+ if ( taxbox.find('input.newtag').hasClass('form-input-tip') && ! a )
+ return false;
+
+ tags = taxbox.find('.the-tags').val();
+ newtags = tags ? tags + ',' + text : text;
+
+ // massage
+ newtags = newtags.replace(/\s+,+\s*/g, ',').replace(/,+/g, ',').replace(/,+\s+,+/g, ',').replace(/,+\s*$/g, '').replace(/^\s*,+/g, '');
+ newtags = array_unique_noempty(newtags.split(',')).join(',');
+ taxbox.find('.the-tags').val(newtags);
+ tag_update_quickclicks(taxbox);
+
+ if ( ! a )
+ taxbox.find('input.newtag').val('').focus();
+
+ return false;
+}
+
+function tag_save_on_publish() {
+ jQuery('.tagsdiv').each( function(i) {
+ if ( !jQuery(this).find('input.newtag').hasClass('form-input-tip') )
+ tag_flush_to_text(jQuery(this).parents('.tagsdiv').attr('id'));
+ } );
+}
+
+function tag_press_key( e ) {
+ if ( 13 == e.which ) {
+ tag_flush_to_text(jQuery(e.target).parents('.tagsdiv').attr('id'));
+ return false;
+ }
+};
+
+function tag_init() {
+
+ jQuery('.ajaxtag').show();
+ jQuery('.tagsdiv').each( function(i) {
+ tag_update_quickclicks(this);
+ } );
+
+ // add the quickadd form
+ jQuery('.ajaxtag input.tagadd').click(function(){tag_flush_to_text(jQuery(this).parents('.tagsdiv').attr('id'));});
+ jQuery('.ajaxtag input.newtag').focus(function() {
+ if ( !this.cleared ) {
+ this.cleared = true;
+ jQuery(this).val( '' ).removeClass( 'form-input-tip' );
+ }
+ });
+
+ jQuery('.ajaxtag input.newtag').blur(function() {
+ if ( this.value == '' ) {
+ this.cleared = false;
+ jQuery(this).val( postL10n.addTag ).addClass( 'form-input-tip' );
+ }
+ });
+
+ // auto-save tags on post save/publish
+ jQuery('#publish').click( tag_save_on_publish );
+ jQuery('#save-post').click( tag_save_on_publish );
+
+ // catch the enter key
+ jQuery('.ajaxtag input.newtag').keypress( tag_press_key );
+}
+
+var commentsBox, tagCloud;
+(function($){
+
+ commentsBox = {
+ st : 0,
+
+ get : function(total, num) {
+ var st = this.st, data;
+ if ( ! num )
+ num = 20;
+
+ this.st += num;
+ this.total = total;
+ $('#commentsdiv img.waiting').show();
+
+ data = {
+ 'action' : 'get-comments',
+ 'mode' : 'single',
+ '_ajax_nonce' : $('#add_comment_nonce').val(),
+ 'post_ID' : $('#post_ID').val(),
+ 'start' : st,
+ 'num' : num
+ };
+
+ $.post(ajaxurl, data,
+ function(r) {
+ r = wpAjax.parseAjaxResponse(r);
+ $('#commentsdiv .widefat').show();
+ $('#commentsdiv img.waiting').hide();
+
+ if ( 'object' == typeof r && r.responses[0] ) {
+ $('#the-comment-list').append( r.responses[0].data );
+
+ theList = theExtraList = null;
+ $("a[className*=':']").unbind();
+ setCommentsList();
+
+ if ( commentsBox.st > commentsBox.total )
+ $('#show-comments').hide();
+ else
+ $('#show-comments').html(postL10n.showcomm);
+ return;
+ } else if ( 1 == r ) {
+ $('#show-comments').parent().html(postL10n.endcomm);
+ return;
+ }
+
+ $('#the-comment-list').append(''+wpAjax.broken+' ');
+ }
+ );
+
+ return false;
+ }
+ };
+
+ tagCloud = {
+ init : function() {
+ $('.tagcloud-link').click(function(){
+ tagCloud.get($(this).attr('id'));
+ $(this).unbind().click(function(){
+ $(this).siblings('.the-tagcloud').toggle();
+ return false;
+ });
+ return false;
+ });
+ },
+
+ get : function(id) {
+ var tax = id.substr(id.indexOf('-')+1);
+
+ $.post(ajaxurl, {'action':'get-tagcloud','tax':tax}, function(r, stat) {
+ if ( 0 == r || 'success' != stat )
+ r = wpAjax.broken;
+
+ r = $(''+r+'
');
+ $('a', r).click(function(){
+ var id = $(this).parents('p').attr('id');
+ tag_flush_to_text(id.substr(id.indexOf('-')+1), this);
+ return false;
+ });
+
+ $('#'+id).after(r);
+ });
+ }
+ };
+
+ $(document).ready(function(){tagCloud.init();});
+})(jQuery);
+
+jQuery(document).ready( function($) {
+ var noSyncChecks = false, syncChecks, catAddAfter, stamp = $('#timestamp').html(), visibility = $('#post-visibility-display').html(), sticky = '';
+
+ // postboxes
+ postboxes.add_postbox_toggles('post');
+
+ // Editable slugs
+ make_slugedit_clickable();
+
+ // prepare the tag UI
+ tag_init();
+
+ $('#title').blur( function() {
+ if ( ($("#post_ID").val() > 0) || ($("#title").val().length == 0) )
+ return;
+
+ if ( typeof(autosave) != 'undefined' )
+ autosave();
+ });
+
+ // auto-suggest stuff
+ $('.newtag').each(function(){
+ var tax = $(this).parents('div.tagsdiv').attr('id');
+ $(this).suggest( 'admin-ajax.php?action=ajax-tag-search&tax='+tax, { delay: 500, minchars: 2, multiple: true, multipleSep: ", " } );
+ });
+
+ // category tabs
+ $('#category-tabs a').click(function(){
+ var t = $(this).attr('href');
+ $(this).parent().addClass('tabs').siblings('li').removeClass('tabs');
+ $('.tabs-panel').hide();
+ $(t).show();
+ if ( '#categories-all' == t )
+ deleteUserSetting('cats');
+ else
+ setUserSetting('cats','pop');
+ return false;
+ });
+ if ( getUserSetting('cats') )
+ $('#category-tabs a[href="#categories-pop"]').click();
+
+ // Ajax Cat
+ $('#newcat').one( 'focus', function() { $(this).val( '' ).removeClass( 'form-input-tip' ) } );
+ $('#category-add-sumbit').click(function(){$('#newcat').focus();});
+
+ syncChecks = function() {
+ if ( noSyncChecks )
+ return;
+ noSyncChecks = true;
+ var th = jQuery(this), c = th.is(':checked'), id = th.val().toString();
+ $('#in-category-' + id + ', #in-popular-category-' + id).attr( 'checked', c );
+ noSyncChecks = false;
+ };
+
+ popularCats = $('#categorychecklist-pop :checkbox').map( function() { return parseInt(jQuery(this).val(), 10); } ).get().join(',');
+ catAddBefore = function( s ) {
+ if ( !$('#newcat').val() )
+ return false;
+ s.data += '&popular_ids=' + popularCats + '&' + jQuery( '#categorychecklist :checked' ).serialize();
+ return s;
+ };
+
+ catAddAfter = function( r, s ) {
+ var newCatParent = jQuery('#newcat_parent'), newCatParentOption = newCatParent.find( 'option[value="-1"]' );
+ $(s.what + ' response_data', r).each( function() {
+ var t = $($(this).text());
+ t.find( 'label' ).each( function() {
+ var th = $(this), val = th.find('input').val(), id = th.find('input')[0].id, name, o;
+ $('#' + id).change( syncChecks ).change();
+ if ( newCatParent.find( 'option[value="' + val + '"]' ).size() )
+ return;
+ name = $.trim( th.text() );
+ o = $( '' ).text( name );
+ newCatParent.prepend( o );
+ } );
+ newCatParentOption.attr( 'selected', 'selected' );
+ } );
+ };
+
+ $('#categorychecklist').wpList( {
+ alt: '',
+ response: 'category-ajax-response',
+ addBefore: catAddBefore,
+ addAfter: catAddAfter
+ } );
+
+ $('#category-add-toggle').click( function() {
+ $('#category-adder').toggleClass( 'wp-hidden-children' );
+ $('#category-tabs a[href="#categories-all"]').click();
+ return false;
+ } );
+
+ $('.categorychecklist .popular-category :checkbox').change( syncChecks ).filter( ':checked' ).change(), sticky = '';
+
+ function updateVisibility() {
+ if ( $('#post-visibility-select input:radio:checked').val() != 'public' ) {
+ $('#sticky').attr('checked', false);
+ $('#sticky-span').hide();
+ } else {
+ $('#sticky-span').show();
+ }
+ if ( $('#post-visibility-select input:radio:checked').val() != 'password' ) {
+ $('#password-span').hide();
+ } else {
+ $('#password-span').show();
+ }
+ }
+
+ function updateText() {
+ var attemptedDate, originalDate, currentDate, publishOn;
+
+ attemptedDate = new Date( $('#aa').val(), $('#mm').val() -1, $('#jj').val(), $('#hh').val(), $('#mn').val());
+ originalDate = new Date( $('#hidden_aa').val(), $('#hidden_mm').val() -1, $('#hidden_jj').val(), $('#hidden_hh').val(), $('#hidden_mn').val());
+ currentDate = new Date( $('#cur_aa').val(), $('#cur_mm').val() -1, $('#cur_jj').val(), $('#cur_hh').val(), $('#cur_mn').val());
+ if ( attemptedDate > currentDate && $('#original_post_status').val() != 'future' ) {
+ publishOn = postL10n.publishOnFuture;
+ $('#publish').val( postL10n.schedule );
+ } else if ( attemptedDate <= currentDate && $('#original_post_status').val() != 'publish' ) {
+ publishOn = postL10n.publishOn;
+ $('#publish').val( postL10n.publish );
+ } else {
+ publishOn = postL10n.publishOnPast;
+ $('#publish').val( postL10n.update );
+ }
+ if ( originalDate.toUTCString() == attemptedDate.toUTCString() ) { //hack
+ $('#timestamp').html(stamp);
+ } else {
+ $('#timestamp').html(
+ publishOn + ' ' +
+ $( '#mm option[value=' + $('#mm').val() + ']' ).text() + ' ' +
+ $('#jj').val() + ', ' +
+ $('#aa').val() + ' @ ' +
+ $('#hh').val() + ':' +
+ $('#mn').val() + ' '
+ );
+ }
+
+ if ( $('#post-visibility-select input:radio:checked').val() == 'private' ) {
+ $('#publish').val( postL10n.update );
+ if ( $('#post_status option[value=publish]').length == 0 ) {
+ $('#post_status').append('');
+ }
+ $('#post_status option[value=publish]').html( postL10n.privatelyPublished );
+ $('#post_status option[value=publish]').attr('selected', true);
+ $('.edit-post-status').hide();
+ } else {
+ if ( $('#original_post_status').val() == 'future' || $('#original_post_status').val() == 'draft' ) {
+ if ( $('#post_status option[value=publish]').length != 0 ) {
+ $('#post_status option[value=publish]').remove();
+ $('#post_status').val($('#hidden_post_status').val());
+ }
+ } else {
+ $('#post_status option[value=publish]').html( postL10n.published );
+ }
+ $('.edit-post-status').show();
+ }
+ $('#post-status-display').html($('#post_status :selected').text());
+ if ( $('#post_status :selected').val() == 'private' || $('#post_status :selected').val() == 'publish' ) {
+ $('#save-post').hide();
+ } else {
+ $('#save-post').show();
+ if ( $('#post_status :selected').val() == 'pending' ) {
+ $('#save-post').show().val( postL10n.savePending );
+ } else {
+ $('#save-post').show().val( postL10n.saveDraft );
+ }
+ }
+ }
+
+ $('.edit-visibility').click(function () {
+ if ($('#post-visibility-select').is(":hidden")) {
+ updateVisibility();
+ $('#post-visibility-select').slideDown("normal");
+ $('.edit-visibility').hide();
+ }
+ return false;
+ });
+
+ $('.cancel-post-visibility').click(function () {
+ $('#post-visibility-select').slideUp("normal");
+ $('#visibility-radio-' + $('#hidden-post-visibility').val()).attr('checked', true);
+ $('#post_password').val($('#hidden_post_password').val());
+ $('#sticky').attr('checked', $('#hidden-post-sticky').attr('checked'));
+ $('#post-visibility-display').html(visibility);
+ $('.edit-visibility').show();
+ updateText();
+ return false;
+ });
+
+ $('.save-post-visibility').click(function () { // crazyhorse - multiple ok cancels
+ $('#post-visibility-select').slideUp("normal");
+ $('.edit-visibility').show();
+ updateText();
+ if ( $('#post-visibility-select input:radio:checked').val() != 'public' ) {
+ $('#sticky').attr('checked', false);
+ }
+
+ if ( true == $('#sticky').attr('checked') ) {
+ sticky = 'Sticky';
+ } else {
+ sticky = '';
+ }
+
+ $('#post-visibility-display').html(
+ postL10n[$('#post-visibility-select input:radio:checked').val() + sticky]
+ );
+
+ return false;
+ });
+
+ $('#post-visibility-select input:radio').change(function() {
+ updateVisibility();
+ });
+
+ $('.edit-timestamp').click(function () {
+ if ($('#timestampdiv').is(":hidden")) {
+ $('#timestampdiv').slideDown("normal");
+ $('.edit-timestamp').hide();
+ }
+
+ return false;
+ });
+
+ $('.cancel-timestamp').click(function() {
+ $('#timestampdiv').slideUp("normal");
+ $('#mm').val($('#hidden_mm').val());
+ $('#jj').val($('#hidden_jj').val());
+ $('#aa').val($('#hidden_aa').val());
+ $('#hh').val($('#hidden_hh').val());
+ $('#mn').val($('#hidden_mn').val());
+ $('.edit-timestamp').show();
+ updateText();
+ return false;
+ });
+
+ $('.save-timestamp').click(function () { // crazyhorse - multiple ok cancels
+ $('#timestampdiv').slideUp("normal");
+ $('.edit-timestamp').show();
+ updateText();
+
+ return false;
+ });
+
+ $('.edit-post-status').click(function() {
+ if ($('#post-status-select').is(":hidden")) {
+ $('#post-status-select').slideDown("normal");
+ $(this).hide();
+ }
+
+ return false;
+ });
+
+ $('.save-post-status').click(function() {
+ $('#post-status-select').slideUp("normal");
+ $('.edit-post-status').show();
+ updateText();
+ return false;
+ });
+
+ $('.cancel-post-status').click(function() {
+ $('#post-status-select').slideUp("normal");
+ $('#post_status').val($('#hidden_post_status').val());
+ $('.edit-post-status').show();
+ updateText();
+ return false;
+ });
+
+ // Custom Fields
+ $('#the-list').wpList( { addAfter: function( xml, s ) {
+ $('table#list-table').show();
+ if ( typeof( autosave_update_post_ID ) != 'undefined' ) {
+ autosave_update_post_ID(s.parsed.responses[0].supplemental.postid);
+ }
+ }, addBefore: function( s ) {
+ s.data += '&post_id=' + $('#post_ID').val();
+ return s;
+ }
+ });
+});
diff --git a/blog/wp-content/plugins/more-fields/post-2.8.5.js b/blog/wp-content/plugins/more-fields/post-2.8.5.js
new file mode 100644
index 0000000..95d7bc2
--- /dev/null
+++ b/blog/wp-content/plugins/more-fields/post-2.8.5.js
@@ -0,0 +1,490 @@
+// return an array with any duplicate, whitespace or values removed
+function array_unique_noempty(a) {
+ var out = [];
+ jQuery.each( a, function(key, val) {
+ val = jQuery.trim(val);
+ if ( val && jQuery.inArray(val, out) == -1 )
+ out.push(val);
+ } );
+ return out;
+}
+
+function new_tag_remove_tag() {
+ var id = jQuery( this ).attr( 'id' ), num = id.split('-check-num-')[1], taxbox = jQuery(this).parents('.tagsdiv'), current_tags = taxbox.find( '.the-tags' ).val().split(','), new_tags = [];
+ delete current_tags[num];
+
+ jQuery.each( current_tags, function(key, val) {
+ val = jQuery.trim(val);
+ if ( val ) {
+ new_tags.push(val);
+ }
+ });
+
+ taxbox.find('.the-tags').val( new_tags.join(',').replace(/\s*,+\s*/, ',').replace(/,+/, ',').replace(/,+\s+,+/, ',').replace(/,+\s*$/, '').replace(/^\s*,+/, '') );
+
+ tag_update_quickclicks(taxbox);
+ return false;
+}
+
+function tag_update_quickclicks(taxbox) {
+ if ( jQuery(taxbox).find('.the-tags').length == 0 )
+ return;
+
+ var current_tags = jQuery(taxbox).find('.the-tags').val().split(',');
+ jQuery(taxbox).find('.tagchecklist').empty();
+ shown = false;
+
+ jQuery.each( current_tags, function( key, val ) {
+ var txt, button_id;
+
+ val = jQuery.trim(val);
+ if ( !val.match(/^\s+$/) && '' != val ) {
+ button_id = jQuery(taxbox).attr('id') + '-check-num-' + key;
+ txt = 'X ' + val + ' ';
+ jQuery(taxbox).find('.tagchecklist').append(txt);
+ jQuery( '#' + button_id ).click( new_tag_remove_tag );
+ }
+ });
+ if ( shown )
+ jQuery(taxbox).find('.tagchecklist').prepend(''+postL10n.tagsUsed+'
');
+}
+
+function tag_flush_to_text(id, a) {
+ a = a || false;
+ var taxbox, text, tags, newtags;
+
+ taxbox = jQuery('#'+id);
+ text = a ? jQuery(a).text() : taxbox.find('input.newtag').val();
+
+ // is the input box empty (i.e. showing the 'Add new tag' tip)?
+ if ( taxbox.find('input.newtag').hasClass('form-input-tip') && ! a )
+ return false;
+
+ tags = taxbox.find('.the-tags').val();
+ newtags = tags ? tags + ',' + text : text;
+
+ // massage
+ newtags = newtags.replace(/\s+,+\s*/g, ',').replace(/,+/g, ',').replace(/,+\s+,+/g, ',').replace(/,+\s*$/g, '').replace(/^\s*,+/g, '');
+ newtags = array_unique_noempty(newtags.split(',')).join(',');
+ taxbox.find('.the-tags').val(newtags);
+ tag_update_quickclicks(taxbox);
+
+ if ( ! a )
+ taxbox.find('input.newtag').val('').focus();
+
+ return false;
+}
+
+function tag_save_on_publish() {
+ jQuery('.tagsdiv').each( function(i) {
+ if ( !jQuery(this).find('input.newtag').hasClass('form-input-tip') )
+ tag_flush_to_text(jQuery(this).parents('.tagsdiv').attr('id'));
+ } );
+}
+
+function tag_press_key( e ) {
+ if ( 13 == e.which ) {
+ tag_flush_to_text(jQuery(e.target).parents('.tagsdiv').attr('id'));
+ return false;
+ }
+};
+
+function tag_init() {
+
+ jQuery('.ajaxtag').show();
+ jQuery('.tagsdiv').each( function(i) {
+ tag_update_quickclicks(this);
+ } );
+
+ // add the quickadd form
+ jQuery('.ajaxtag input.tagadd').click(function(){tag_flush_to_text(jQuery(this).parents('.tagsdiv').attr('id'));});
+ jQuery('.ajaxtag input.newtag').focus(function() {
+ if ( !this.cleared ) {
+ this.cleared = true;
+ jQuery(this).val( '' ).removeClass( 'form-input-tip' );
+ }
+ });
+
+ jQuery('.ajaxtag input.newtag').blur(function() {
+ if ( this.value == '' ) {
+ this.cleared = false;
+ jQuery(this).val( postL10n.addTag ).addClass( 'form-input-tip' );
+ }
+ });
+
+ // auto-save tags on post save/publish
+ jQuery('#publish').click( tag_save_on_publish );
+ jQuery('#save-post').click( tag_save_on_publish );
+
+ // catch the enter key
+ jQuery('.ajaxtag input.newtag').keypress( tag_press_key );
+}
+
+var commentsBox, tagCloud;
+(function($){
+
+ commentsBox = {
+ st : 0,
+
+ get : function(total, num) {
+ var st = this.st, data;
+ if ( ! num )
+ num = 20;
+
+ this.st += num;
+ this.total = total;
+ $('#commentsdiv img.waiting').show();
+
+ data = {
+ 'action' : 'get-comments',
+ 'mode' : 'single',
+ '_ajax_nonce' : $('#add_comment_nonce').val(),
+ 'post_ID' : $('#post_ID').val(),
+ 'start' : st,
+ 'num' : num
+ };
+
+ $.post(ajaxurl, data,
+ function(r) {
+ r = wpAjax.parseAjaxResponse(r);
+ $('#commentsdiv .widefat').show();
+ $('#commentsdiv img.waiting').hide();
+
+ if ( 'object' == typeof r && r.responses[0] ) {
+ $('#the-comment-list').append( r.responses[0].data );
+
+ theList = theExtraList = null;
+ $("a[className*=':']").unbind();
+ setCommentsList();
+
+ if ( commentsBox.st > commentsBox.total )
+ $('#show-comments').hide();
+ else
+ $('#show-comments').html(postL10n.showcomm);
+ return;
+ } else if ( 1 == r ) {
+ $('#show-comments').parent().html(postL10n.endcomm);
+ return;
+ }
+
+ $('#the-comment-list').append(''+wpAjax.broken+' ');
+ }
+ );
+
+ return false;
+ }
+ };
+
+ tagCloud = {
+ init : function() {
+ $('.tagcloud-link').click(function(){
+ tagCloud.get($(this).attr('id'));
+ $(this).unbind().click(function(){
+ $(this).siblings('.the-tagcloud').toggle();
+ return false;
+ });
+ return false;
+ });
+ },
+
+ get : function(id) {
+ var tax = id.substr(id.indexOf('-')+1);
+
+ $.post(ajaxurl, {'action':'get-tagcloud','tax':tax}, function(r, stat) {
+ if ( 0 == r || 'success' != stat )
+ r = wpAjax.broken;
+
+ r = $(''+r+'
');
+ $('a', r).click(function(){
+ var id = $(this).parents('p').attr('id');
+ tag_flush_to_text(id.substr(id.indexOf('-')+1), this);
+ return false;
+ });
+
+ $('#'+id).after(r);
+ });
+ }
+ };
+
+ $(document).ready(function(){tagCloud.init();});
+})(jQuery);
+
+jQuery(document).ready( function($) {
+ var noSyncChecks = false, syncChecks, catAddAfter, stamp = $('#timestamp').html(), visibility = $('#post-visibility-display').html(), sticky = '';
+
+ // postboxes
+ postboxes.add_postbox_toggles('post');
+
+ // Editable slugs
+ make_slugedit_clickable();
+
+ // prepare the tag UI
+ tag_init();
+
+ $('#title').blur( function() {
+ if ( ($("#post_ID").val() > 0) || ($("#title").val().length == 0) )
+ return;
+
+ if ( typeof(autosave) != 'undefined' )
+ autosave();
+ });
+
+ // auto-suggest stuff
+ $('.newtag').each(function(){
+ var tax = $(this).parents('div.tagsdiv').attr('id');
+ $(this).suggest( 'admin-ajax.php?action=ajax-tag-search&tax='+tax, { delay: 500, minchars: 2, multiple: true, multipleSep: ", " } );
+ });
+
+ // category tabs
+ $('#category-tabs a').click(function(){
+ var t = $(this).attr('href');
+ $(this).parent().addClass('tabs').siblings('li').removeClass('tabs');
+ $('.tabs-panel').hide();
+ $(t).show();
+ if ( '#categories-all' == t )
+ deleteUserSetting('cats');
+ else
+ setUserSetting('cats','pop');
+ return false;
+ });
+ if ( getUserSetting('cats') )
+ $('#category-tabs a[href="#categories-pop"]').click();
+
+ // Ajax Cat
+ $('#newcat').one( 'focus', function() { $(this).val( '' ).removeClass( 'form-input-tip' ) } );
+ $('#category-add-sumbit').click(function(){$('#newcat').focus();});
+
+ syncChecks = function() {
+ if ( noSyncChecks )
+ return;
+ noSyncChecks = true;
+ var th = jQuery(this), c = th.is(':checked'), id = th.val().toString();
+ $('#in-category-' + id + ', #in-popular-category-' + id).attr( 'checked', c );
+ noSyncChecks = false;
+ };
+
+ popularCats = $('#categorychecklist-pop :checkbox').map( function() { return parseInt(jQuery(this).val(), 10); } ).get().join(',');
+ catAddBefore = function( s ) {
+ if ( !$('#newcat').val() )
+ return false;
+ s.data += '&popular_ids=' + popularCats + '&' + jQuery( '#categorychecklist :checked' ).serialize();
+ return s;
+ };
+
+ catAddAfter = function( r, s ) {
+ var newCatParent = jQuery('#newcat_parent'), newCatParentOption = newCatParent.find( 'option[value="-1"]' );
+ $(s.what + ' response_data', r).each( function() {
+ var t = $($(this).text());
+ t.find( 'label' ).each( function() {
+ var th = $(this), val = th.find('input').val(), id = th.find('input')[0].id, name, o;
+ $('#' + id).change( syncChecks ).change();
+ if ( newCatParent.find( 'option[value="' + val + '"]' ).size() )
+ return;
+ name = $.trim( th.text() );
+ o = $( '' ).text( name );
+ newCatParent.prepend( o );
+ } );
+ newCatParentOption.attr( 'selected', 'selected' );
+ } );
+ };
+
+ $('#categorychecklist').wpList( {
+ alt: '',
+ response: 'category-ajax-response',
+ addBefore: catAddBefore,
+ addAfter: catAddAfter
+ } );
+
+ $('#category-add-toggle').click( function() {
+ $('#category-adder').toggleClass( 'wp-hidden-children' );
+ $('#category-tabs a[href="#categories-all"]').click();
+ return false;
+ } );
+
+ $('.categorychecklist .popular-category :checkbox').change( syncChecks ).filter( ':checked' ).change(), sticky = '';
+
+ function updateVisibility() {
+ if ( $('#post-visibility-select input:radio:checked').val() != 'public' ) {
+ $('#sticky').attr('checked', false);
+ $('#sticky-span').hide();
+ } else {
+ $('#sticky-span').show();
+ }
+ if ( $('#post-visibility-select input:radio:checked').val() != 'password' ) {
+ $('#password-span').hide();
+ } else {
+ $('#password-span').show();
+ }
+ }
+
+ function updateText() {
+ var attemptedDate, originalDate, currentDate, publishOn;
+
+ attemptedDate = new Date( $('#aa').val(), $('#mm').val() -1, $('#jj').val(), $('#hh').val(), $('#mn').val());
+ originalDate = new Date( $('#hidden_aa').val(), $('#hidden_mm').val() -1, $('#hidden_jj').val(), $('#hidden_hh').val(), $('#hidden_mn').val());
+ currentDate = new Date( $('#cur_aa').val(), $('#cur_mm').val() -1, $('#cur_jj').val(), $('#cur_hh').val(), $('#cur_mn').val());
+ if ( attemptedDate > currentDate && $('#original_post_status').val() != 'future' ) {
+ publishOn = postL10n.publishOnFuture;
+ $('#publish').val( postL10n.schedule );
+ } else if ( attemptedDate <= currentDate && $('#original_post_status').val() != 'publish' ) {
+ publishOn = postL10n.publishOn;
+ $('#publish').val( postL10n.publish );
+ } else {
+ publishOn = postL10n.publishOnPast;
+ $('#publish').val( postL10n.update );
+ }
+ if ( originalDate.toUTCString() == attemptedDate.toUTCString() ) { //hack
+ $('#timestamp').html(stamp);
+ } else {
+ $('#timestamp').html(
+ publishOn + ' ' +
+ $( '#mm option[value=' + $('#mm').val() + ']' ).text() + ' ' +
+ $('#jj').val() + ', ' +
+ $('#aa').val() + ' @ ' +
+ $('#hh').val() + ':' +
+ $('#mn').val() + ' '
+ );
+ }
+
+ if ( $('#post-visibility-select input:radio:checked').val() == 'private' ) {
+ $('#publish').val( postL10n.update );
+ if ( $('#post_status option[value=publish]').length == 0 ) {
+ $('#post_status').append('');
+ }
+ $('#post_status option[value=publish]').html( postL10n.privatelyPublished );
+ $('#post_status option[value=publish]').attr('selected', true);
+ $('.edit-post-status').hide();
+ } else {
+ if ( $('#original_post_status').val() == 'future' || $('#original_post_status').val() == 'draft' ) {
+ if ( $('#post_status option[value=publish]').length != 0 ) {
+ $('#post_status option[value=publish]').remove();
+ $('#post_status').val($('#hidden_post_status').val());
+ }
+ } else {
+ $('#post_status option[value=publish]').html( postL10n.published );
+ }
+ $('.edit-post-status').show();
+ }
+ $('#post-status-display').html($('#post_status :selected').text());
+ if ( $('#post_status :selected').val() == 'private' || $('#post_status :selected').val() == 'publish' ) {
+ $('#save-post').hide();
+ } else {
+ $('#save-post').show();
+ if ( $('#post_status :selected').val() == 'pending' ) {
+ $('#save-post').show().val( postL10n.savePending );
+ } else {
+ $('#save-post').show().val( postL10n.saveDraft );
+ }
+ }
+ }
+
+ $('.edit-visibility').click(function () {
+ if ($('#post-visibility-select').is(":hidden")) {
+ updateVisibility();
+ $('#post-visibility-select').slideDown("normal");
+ $('.edit-visibility').hide();
+ }
+ return false;
+ });
+
+ $('.cancel-post-visibility').click(function () {
+ $('#post-visibility-select').slideUp("normal");
+ $('#visibility-radio-' + $('#hidden-post-visibility').val()).attr('checked', true);
+ $('#post_password').val($('#hidden_post_password').val());
+ $('#sticky').attr('checked', $('#hidden-post-sticky').attr('checked'));
+ $('#post-visibility-display').html(visibility);
+ $('.edit-visibility').show();
+ updateText();
+ return false;
+ });
+
+ $('.save-post-visibility').click(function () { // crazyhorse - multiple ok cancels
+ $('#post-visibility-select').slideUp("normal");
+ $('.edit-visibility').show();
+ updateText();
+ if ( $('#post-visibility-select input:radio:checked').val() != 'public' ) {
+ $('#sticky').attr('checked', false);
+ }
+
+ if ( true == $('#sticky').attr('checked') ) {
+ sticky = 'Sticky';
+ } else {
+ sticky = '';
+ }
+
+ $('#post-visibility-display').html(
+ postL10n[$('#post-visibility-select input:radio:checked').val() + sticky]
+ );
+
+ return false;
+ });
+
+ $('#post-visibility-select input:radio').change(function() {
+ updateVisibility();
+ });
+
+ $('.edit-timestamp').click(function () {
+ if ($('#timestampdiv').is(":hidden")) {
+ $('#timestampdiv').slideDown("normal");
+ $('.edit-timestamp').hide();
+ }
+
+ return false;
+ });
+
+ $('.cancel-timestamp').click(function() {
+ $('#timestampdiv').slideUp("normal");
+ $('#mm').val($('#hidden_mm').val());
+ $('#jj').val($('#hidden_jj').val());
+ $('#aa').val($('#hidden_aa').val());
+ $('#hh').val($('#hidden_hh').val());
+ $('#mn').val($('#hidden_mn').val());
+ $('.edit-timestamp').show();
+ updateText();
+ return false;
+ });
+
+ $('.save-timestamp').click(function () { // crazyhorse - multiple ok cancels
+ $('#timestampdiv').slideUp("normal");
+ $('.edit-timestamp').show();
+ updateText();
+
+ return false;
+ });
+
+ $('.edit-post-status').click(function() {
+ if ($('#post-status-select').is(":hidden")) {
+ $('#post-status-select').slideDown("normal");
+ $(this).hide();
+ }
+
+ return false;
+ });
+
+ $('.save-post-status').click(function() {
+ $('#post-status-select').slideUp("normal");
+ $('.edit-post-status').show();
+ updateText();
+ return false;
+ });
+
+ $('.cancel-post-status').click(function() {
+ $('#post-status-select').slideUp("normal");
+ $('#post_status').val($('#hidden_post_status').val());
+ $('.edit-post-status').show();
+ updateText();
+ return false;
+ });
+
+ // Custom Fields
+ $('#the-list').wpList( { addAfter: function( xml, s ) {
+ $('table#list-table').show();
+ if ( typeof( autosave_update_post_ID ) != 'undefined' ) {
+ autosave_update_post_ID(s.parsed.responses[0].supplemental.postid);
+ }
+ }, addBefore: function( s ) {
+ s.data += '&post_id=' + $('#post_ID').val();
+ return s;
+ }
+ });
+});
diff --git a/blog/wp-content/plugins/more-fields/post-2.8.6.js b/blog/wp-content/plugins/more-fields/post-2.8.6.js
new file mode 100644
index 0000000..95d7bc2
--- /dev/null
+++ b/blog/wp-content/plugins/more-fields/post-2.8.6.js
@@ -0,0 +1,490 @@
+// return an array with any duplicate, whitespace or values removed
+function array_unique_noempty(a) {
+ var out = [];
+ jQuery.each( a, function(key, val) {
+ val = jQuery.trim(val);
+ if ( val && jQuery.inArray(val, out) == -1 )
+ out.push(val);
+ } );
+ return out;
+}
+
+function new_tag_remove_tag() {
+ var id = jQuery( this ).attr( 'id' ), num = id.split('-check-num-')[1], taxbox = jQuery(this).parents('.tagsdiv'), current_tags = taxbox.find( '.the-tags' ).val().split(','), new_tags = [];
+ delete current_tags[num];
+
+ jQuery.each( current_tags, function(key, val) {
+ val = jQuery.trim(val);
+ if ( val ) {
+ new_tags.push(val);
+ }
+ });
+
+ taxbox.find('.the-tags').val( new_tags.join(',').replace(/\s*,+\s*/, ',').replace(/,+/, ',').replace(/,+\s+,+/, ',').replace(/,+\s*$/, '').replace(/^\s*,+/, '') );
+
+ tag_update_quickclicks(taxbox);
+ return false;
+}
+
+function tag_update_quickclicks(taxbox) {
+ if ( jQuery(taxbox).find('.the-tags').length == 0 )
+ return;
+
+ var current_tags = jQuery(taxbox).find('.the-tags').val().split(',');
+ jQuery(taxbox).find('.tagchecklist').empty();
+ shown = false;
+
+ jQuery.each( current_tags, function( key, val ) {
+ var txt, button_id;
+
+ val = jQuery.trim(val);
+ if ( !val.match(/^\s+$/) && '' != val ) {
+ button_id = jQuery(taxbox).attr('id') + '-check-num-' + key;
+ txt = 'X ' + val + ' ';
+ jQuery(taxbox).find('.tagchecklist').append(txt);
+ jQuery( '#' + button_id ).click( new_tag_remove_tag );
+ }
+ });
+ if ( shown )
+ jQuery(taxbox).find('.tagchecklist').prepend(''+postL10n.tagsUsed+'
');
+}
+
+function tag_flush_to_text(id, a) {
+ a = a || false;
+ var taxbox, text, tags, newtags;
+
+ taxbox = jQuery('#'+id);
+ text = a ? jQuery(a).text() : taxbox.find('input.newtag').val();
+
+ // is the input box empty (i.e. showing the 'Add new tag' tip)?
+ if ( taxbox.find('input.newtag').hasClass('form-input-tip') && ! a )
+ return false;
+
+ tags = taxbox.find('.the-tags').val();
+ newtags = tags ? tags + ',' + text : text;
+
+ // massage
+ newtags = newtags.replace(/\s+,+\s*/g, ',').replace(/,+/g, ',').replace(/,+\s+,+/g, ',').replace(/,+\s*$/g, '').replace(/^\s*,+/g, '');
+ newtags = array_unique_noempty(newtags.split(',')).join(',');
+ taxbox.find('.the-tags').val(newtags);
+ tag_update_quickclicks(taxbox);
+
+ if ( ! a )
+ taxbox.find('input.newtag').val('').focus();
+
+ return false;
+}
+
+function tag_save_on_publish() {
+ jQuery('.tagsdiv').each( function(i) {
+ if ( !jQuery(this).find('input.newtag').hasClass('form-input-tip') )
+ tag_flush_to_text(jQuery(this).parents('.tagsdiv').attr('id'));
+ } );
+}
+
+function tag_press_key( e ) {
+ if ( 13 == e.which ) {
+ tag_flush_to_text(jQuery(e.target).parents('.tagsdiv').attr('id'));
+ return false;
+ }
+};
+
+function tag_init() {
+
+ jQuery('.ajaxtag').show();
+ jQuery('.tagsdiv').each( function(i) {
+ tag_update_quickclicks(this);
+ } );
+
+ // add the quickadd form
+ jQuery('.ajaxtag input.tagadd').click(function(){tag_flush_to_text(jQuery(this).parents('.tagsdiv').attr('id'));});
+ jQuery('.ajaxtag input.newtag').focus(function() {
+ if ( !this.cleared ) {
+ this.cleared = true;
+ jQuery(this).val( '' ).removeClass( 'form-input-tip' );
+ }
+ });
+
+ jQuery('.ajaxtag input.newtag').blur(function() {
+ if ( this.value == '' ) {
+ this.cleared = false;
+ jQuery(this).val( postL10n.addTag ).addClass( 'form-input-tip' );
+ }
+ });
+
+ // auto-save tags on post save/publish
+ jQuery('#publish').click( tag_save_on_publish );
+ jQuery('#save-post').click( tag_save_on_publish );
+
+ // catch the enter key
+ jQuery('.ajaxtag input.newtag').keypress( tag_press_key );
+}
+
+var commentsBox, tagCloud;
+(function($){
+
+ commentsBox = {
+ st : 0,
+
+ get : function(total, num) {
+ var st = this.st, data;
+ if ( ! num )
+ num = 20;
+
+ this.st += num;
+ this.total = total;
+ $('#commentsdiv img.waiting').show();
+
+ data = {
+ 'action' : 'get-comments',
+ 'mode' : 'single',
+ '_ajax_nonce' : $('#add_comment_nonce').val(),
+ 'post_ID' : $('#post_ID').val(),
+ 'start' : st,
+ 'num' : num
+ };
+
+ $.post(ajaxurl, data,
+ function(r) {
+ r = wpAjax.parseAjaxResponse(r);
+ $('#commentsdiv .widefat').show();
+ $('#commentsdiv img.waiting').hide();
+
+ if ( 'object' == typeof r && r.responses[0] ) {
+ $('#the-comment-list').append( r.responses[0].data );
+
+ theList = theExtraList = null;
+ $("a[className*=':']").unbind();
+ setCommentsList();
+
+ if ( commentsBox.st > commentsBox.total )
+ $('#show-comments').hide();
+ else
+ $('#show-comments').html(postL10n.showcomm);
+ return;
+ } else if ( 1 == r ) {
+ $('#show-comments').parent().html(postL10n.endcomm);
+ return;
+ }
+
+ $('#the-comment-list').append(''+wpAjax.broken+' ');
+ }
+ );
+
+ return false;
+ }
+ };
+
+ tagCloud = {
+ init : function() {
+ $('.tagcloud-link').click(function(){
+ tagCloud.get($(this).attr('id'));
+ $(this).unbind().click(function(){
+ $(this).siblings('.the-tagcloud').toggle();
+ return false;
+ });
+ return false;
+ });
+ },
+
+ get : function(id) {
+ var tax = id.substr(id.indexOf('-')+1);
+
+ $.post(ajaxurl, {'action':'get-tagcloud','tax':tax}, function(r, stat) {
+ if ( 0 == r || 'success' != stat )
+ r = wpAjax.broken;
+
+ r = $(''+r+'
');
+ $('a', r).click(function(){
+ var id = $(this).parents('p').attr('id');
+ tag_flush_to_text(id.substr(id.indexOf('-')+1), this);
+ return false;
+ });
+
+ $('#'+id).after(r);
+ });
+ }
+ };
+
+ $(document).ready(function(){tagCloud.init();});
+})(jQuery);
+
+jQuery(document).ready( function($) {
+ var noSyncChecks = false, syncChecks, catAddAfter, stamp = $('#timestamp').html(), visibility = $('#post-visibility-display').html(), sticky = '';
+
+ // postboxes
+ postboxes.add_postbox_toggles('post');
+
+ // Editable slugs
+ make_slugedit_clickable();
+
+ // prepare the tag UI
+ tag_init();
+
+ $('#title').blur( function() {
+ if ( ($("#post_ID").val() > 0) || ($("#title").val().length == 0) )
+ return;
+
+ if ( typeof(autosave) != 'undefined' )
+ autosave();
+ });
+
+ // auto-suggest stuff
+ $('.newtag').each(function(){
+ var tax = $(this).parents('div.tagsdiv').attr('id');
+ $(this).suggest( 'admin-ajax.php?action=ajax-tag-search&tax='+tax, { delay: 500, minchars: 2, multiple: true, multipleSep: ", " } );
+ });
+
+ // category tabs
+ $('#category-tabs a').click(function(){
+ var t = $(this).attr('href');
+ $(this).parent().addClass('tabs').siblings('li').removeClass('tabs');
+ $('.tabs-panel').hide();
+ $(t).show();
+ if ( '#categories-all' == t )
+ deleteUserSetting('cats');
+ else
+ setUserSetting('cats','pop');
+ return false;
+ });
+ if ( getUserSetting('cats') )
+ $('#category-tabs a[href="#categories-pop"]').click();
+
+ // Ajax Cat
+ $('#newcat').one( 'focus', function() { $(this).val( '' ).removeClass( 'form-input-tip' ) } );
+ $('#category-add-sumbit').click(function(){$('#newcat').focus();});
+
+ syncChecks = function() {
+ if ( noSyncChecks )
+ return;
+ noSyncChecks = true;
+ var th = jQuery(this), c = th.is(':checked'), id = th.val().toString();
+ $('#in-category-' + id + ', #in-popular-category-' + id).attr( 'checked', c );
+ noSyncChecks = false;
+ };
+
+ popularCats = $('#categorychecklist-pop :checkbox').map( function() { return parseInt(jQuery(this).val(), 10); } ).get().join(',');
+ catAddBefore = function( s ) {
+ if ( !$('#newcat').val() )
+ return false;
+ s.data += '&popular_ids=' + popularCats + '&' + jQuery( '#categorychecklist :checked' ).serialize();
+ return s;
+ };
+
+ catAddAfter = function( r, s ) {
+ var newCatParent = jQuery('#newcat_parent'), newCatParentOption = newCatParent.find( 'option[value="-1"]' );
+ $(s.what + ' response_data', r).each( function() {
+ var t = $($(this).text());
+ t.find( 'label' ).each( function() {
+ var th = $(this), val = th.find('input').val(), id = th.find('input')[0].id, name, o;
+ $('#' + id).change( syncChecks ).change();
+ if ( newCatParent.find( 'option[value="' + val + '"]' ).size() )
+ return;
+ name = $.trim( th.text() );
+ o = $( '' ).text( name );
+ newCatParent.prepend( o );
+ } );
+ newCatParentOption.attr( 'selected', 'selected' );
+ } );
+ };
+
+ $('#categorychecklist').wpList( {
+ alt: '',
+ response: 'category-ajax-response',
+ addBefore: catAddBefore,
+ addAfter: catAddAfter
+ } );
+
+ $('#category-add-toggle').click( function() {
+ $('#category-adder').toggleClass( 'wp-hidden-children' );
+ $('#category-tabs a[href="#categories-all"]').click();
+ return false;
+ } );
+
+ $('.categorychecklist .popular-category :checkbox').change( syncChecks ).filter( ':checked' ).change(), sticky = '';
+
+ function updateVisibility() {
+ if ( $('#post-visibility-select input:radio:checked').val() != 'public' ) {
+ $('#sticky').attr('checked', false);
+ $('#sticky-span').hide();
+ } else {
+ $('#sticky-span').show();
+ }
+ if ( $('#post-visibility-select input:radio:checked').val() != 'password' ) {
+ $('#password-span').hide();
+ } else {
+ $('#password-span').show();
+ }
+ }
+
+ function updateText() {
+ var attemptedDate, originalDate, currentDate, publishOn;
+
+ attemptedDate = new Date( $('#aa').val(), $('#mm').val() -1, $('#jj').val(), $('#hh').val(), $('#mn').val());
+ originalDate = new Date( $('#hidden_aa').val(), $('#hidden_mm').val() -1, $('#hidden_jj').val(), $('#hidden_hh').val(), $('#hidden_mn').val());
+ currentDate = new Date( $('#cur_aa').val(), $('#cur_mm').val() -1, $('#cur_jj').val(), $('#cur_hh').val(), $('#cur_mn').val());
+ if ( attemptedDate > currentDate && $('#original_post_status').val() != 'future' ) {
+ publishOn = postL10n.publishOnFuture;
+ $('#publish').val( postL10n.schedule );
+ } else if ( attemptedDate <= currentDate && $('#original_post_status').val() != 'publish' ) {
+ publishOn = postL10n.publishOn;
+ $('#publish').val( postL10n.publish );
+ } else {
+ publishOn = postL10n.publishOnPast;
+ $('#publish').val( postL10n.update );
+ }
+ if ( originalDate.toUTCString() == attemptedDate.toUTCString() ) { //hack
+ $('#timestamp').html(stamp);
+ } else {
+ $('#timestamp').html(
+ publishOn + ' ' +
+ $( '#mm option[value=' + $('#mm').val() + ']' ).text() + ' ' +
+ $('#jj').val() + ', ' +
+ $('#aa').val() + ' @ ' +
+ $('#hh').val() + ':' +
+ $('#mn').val() + ' '
+ );
+ }
+
+ if ( $('#post-visibility-select input:radio:checked').val() == 'private' ) {
+ $('#publish').val( postL10n.update );
+ if ( $('#post_status option[value=publish]').length == 0 ) {
+ $('#post_status').append('');
+ }
+ $('#post_status option[value=publish]').html( postL10n.privatelyPublished );
+ $('#post_status option[value=publish]').attr('selected', true);
+ $('.edit-post-status').hide();
+ } else {
+ if ( $('#original_post_status').val() == 'future' || $('#original_post_status').val() == 'draft' ) {
+ if ( $('#post_status option[value=publish]').length != 0 ) {
+ $('#post_status option[value=publish]').remove();
+ $('#post_status').val($('#hidden_post_status').val());
+ }
+ } else {
+ $('#post_status option[value=publish]').html( postL10n.published );
+ }
+ $('.edit-post-status').show();
+ }
+ $('#post-status-display').html($('#post_status :selected').text());
+ if ( $('#post_status :selected').val() == 'private' || $('#post_status :selected').val() == 'publish' ) {
+ $('#save-post').hide();
+ } else {
+ $('#save-post').show();
+ if ( $('#post_status :selected').val() == 'pending' ) {
+ $('#save-post').show().val( postL10n.savePending );
+ } else {
+ $('#save-post').show().val( postL10n.saveDraft );
+ }
+ }
+ }
+
+ $('.edit-visibility').click(function () {
+ if ($('#post-visibility-select').is(":hidden")) {
+ updateVisibility();
+ $('#post-visibility-select').slideDown("normal");
+ $('.edit-visibility').hide();
+ }
+ return false;
+ });
+
+ $('.cancel-post-visibility').click(function () {
+ $('#post-visibility-select').slideUp("normal");
+ $('#visibility-radio-' + $('#hidden-post-visibility').val()).attr('checked', true);
+ $('#post_password').val($('#hidden_post_password').val());
+ $('#sticky').attr('checked', $('#hidden-post-sticky').attr('checked'));
+ $('#post-visibility-display').html(visibility);
+ $('.edit-visibility').show();
+ updateText();
+ return false;
+ });
+
+ $('.save-post-visibility').click(function () { // crazyhorse - multiple ok cancels
+ $('#post-visibility-select').slideUp("normal");
+ $('.edit-visibility').show();
+ updateText();
+ if ( $('#post-visibility-select input:radio:checked').val() != 'public' ) {
+ $('#sticky').attr('checked', false);
+ }
+
+ if ( true == $('#sticky').attr('checked') ) {
+ sticky = 'Sticky';
+ } else {
+ sticky = '';
+ }
+
+ $('#post-visibility-display').html(
+ postL10n[$('#post-visibility-select input:radio:checked').val() + sticky]
+ );
+
+ return false;
+ });
+
+ $('#post-visibility-select input:radio').change(function() {
+ updateVisibility();
+ });
+
+ $('.edit-timestamp').click(function () {
+ if ($('#timestampdiv').is(":hidden")) {
+ $('#timestampdiv').slideDown("normal");
+ $('.edit-timestamp').hide();
+ }
+
+ return false;
+ });
+
+ $('.cancel-timestamp').click(function() {
+ $('#timestampdiv').slideUp("normal");
+ $('#mm').val($('#hidden_mm').val());
+ $('#jj').val($('#hidden_jj').val());
+ $('#aa').val($('#hidden_aa').val());
+ $('#hh').val($('#hidden_hh').val());
+ $('#mn').val($('#hidden_mn').val());
+ $('.edit-timestamp').show();
+ updateText();
+ return false;
+ });
+
+ $('.save-timestamp').click(function () { // crazyhorse - multiple ok cancels
+ $('#timestampdiv').slideUp("normal");
+ $('.edit-timestamp').show();
+ updateText();
+
+ return false;
+ });
+
+ $('.edit-post-status').click(function() {
+ if ($('#post-status-select').is(":hidden")) {
+ $('#post-status-select').slideDown("normal");
+ $(this).hide();
+ }
+
+ return false;
+ });
+
+ $('.save-post-status').click(function() {
+ $('#post-status-select').slideUp("normal");
+ $('.edit-post-status').show();
+ updateText();
+ return false;
+ });
+
+ $('.cancel-post-status').click(function() {
+ $('#post-status-select').slideUp("normal");
+ $('#post_status').val($('#hidden_post_status').val());
+ $('.edit-post-status').show();
+ updateText();
+ return false;
+ });
+
+ // Custom Fields
+ $('#the-list').wpList( { addAfter: function( xml, s ) {
+ $('table#list-table').show();
+ if ( typeof( autosave_update_post_ID ) != 'undefined' ) {
+ autosave_update_post_ID(s.parsed.responses[0].supplemental.postid);
+ }
+ }, addBefore: function( s ) {
+ s.data += '&post_id=' + $('#post_ID').val();
+ return s;
+ }
+ });
+});
diff --git a/blog/wp-content/plugins/more-fields/post.js b/blog/wp-content/plugins/more-fields/post-2.8.js
similarity index 99%
rename from blog/wp-content/plugins/more-fields/post.js
rename to blog/wp-content/plugins/more-fields/post-2.8.js
index 7d5476f..dcb12a4 100644
--- a/blog/wp-content/plugins/more-fields/post.js
+++ b/blog/wp-content/plugins/more-fields/post-2.8.js
@@ -217,7 +217,7 @@ jQuery(document).ready( function($) {
autosave = function(){};
// postboxes
- // postboxes.add_postbox_toggles('post');
+ postboxes.add_postbox_toggles('post');
// Editable slugs
make_slugedit_clickable();
@@ -426,6 +426,7 @@ jQuery(document).ready( function($) {
$('#timestampdiv').slideDown("normal");
$('.edit-timestamp').hide();
}
+
return false;
});
diff --git a/blog/wp-content/plugins/more-fields/post-2.9.1.js b/blog/wp-content/plugins/more-fields/post-2.9.1.js
new file mode 100644
index 0000000..b6a9c23
--- /dev/null
+++ b/blog/wp-content/plugins/more-fields/post-2.9.1.js
@@ -0,0 +1,580 @@
+var tagBox, commentsBox, editPermalink, makeSlugeditClickable, WPSetThumbnailHTML, WPSetThumbnailID, WPRemoveThumbnail;
+
+// return an array with any duplicate, whitespace or values removed
+function array_unique_noempty(a) {
+ var out = [];
+ jQuery.each( a, function(key, val) {
+ val = jQuery.trim(val);
+ if ( val && jQuery.inArray(val, out) == -1 )
+ out.push(val);
+ } );
+ return out;
+}
+
+(function($){
+
+tagBox = {
+ clean : function(tags) {
+ return tags.replace(/\s*,\s*/g, ',').replace(/,+/g, ',').replace(/[,\s]+$/, '').replace(/^[,\s]+/, '');
+ },
+
+ parseTags : function(el) {
+ var id = el.id, num = id.split('-check-num-')[1], taxbox = $(el).closest('.tagsdiv'), thetags = taxbox.find('.the-tags'), current_tags = thetags.val().split(','), new_tags = [];
+ delete current_tags[num];
+
+ $.each( current_tags, function(key, val) {
+ val = $.trim(val);
+ if ( val ) {
+ new_tags.push(val);
+ }
+ });
+
+ thetags.val( this.clean( new_tags.join(',') ) );
+
+ this.quickClicks(taxbox);
+ return false;
+ },
+
+ quickClicks : function(el) {
+ var thetags = $('.the-tags', el), tagchecklist = $('.tagchecklist', el), current_tags;
+
+ if ( !thetags.length )
+ return;
+
+ current_tags = thetags.val().split(',');
+ tagchecklist.empty();
+
+ $.each( current_tags, function( key, val ) {
+ var txt, button_id, id = $(el).attr('id');
+
+ val = $.trim(val);
+ if ( !val.match(/^\s+$/) && '' != val ) {
+ button_id = id + '-check-num-' + key;
+ txt = 'X ' + val + ' ';
+ tagchecklist.append(txt);
+ $( '#' + button_id ).click( function(){ tagBox.parseTags(this); });
+ }
+ });
+ },
+
+ flushTags : function(el, a, f) {
+ a = a || false;
+ var text, tags = $('.the-tags', el), newtag = $('input.newtag', el), newtags;
+
+ text = a ? $(a).text() : newtag.val();
+ tagsval = tags.val();
+ newtags = tagsval ? tagsval + ',' + text : text;
+
+ newtags = this.clean( newtags );
+ newtags = array_unique_noempty( newtags.split(',') ).join(',');
+ tags.val(newtags);
+ this.quickClicks(el);
+
+ if ( !a )
+ newtag.val('');
+ if ( 'undefined' == typeof(f) )
+ newtag.focus();
+
+ return false;
+ },
+
+ get : function(id) {
+ var tax = id.substr(id.indexOf('-')+1);
+
+ $.post(ajaxurl, {'action':'get-tagcloud','tax':tax}, function(r, stat) {
+ if ( 0 == r || 'success' != stat )
+ r = wpAjax.broken;
+
+ r = $(''+r+'
');
+ $('a', r).click(function(){
+ tagBox.flushTags( $(this).closest('.inside').children('.tagsdiv'), this);
+ return false;
+ });
+
+ $('#'+id).after(r);
+ });
+ },
+
+ init : function() {
+ var t = this, ajaxtag = $('div.ajaxtag');
+
+ $('.tagsdiv').each( function() {
+ tagBox.quickClicks(this);
+ });
+
+ $('input.tagadd', ajaxtag).click(function(){
+ t.flushTags( $(this).closest('.tagsdiv') );
+ });
+
+ $('div.taghint', ajaxtag).click(function(){
+ $(this).css('visibility', 'hidden').siblings('.newtag').focus();
+ });
+
+ $('input.newtag', ajaxtag).blur(function() {
+ if ( this.value == '' )
+ $(this).siblings('.taghint').css('visibility', '');
+ }).focus(function(){
+ $(this).siblings('.taghint').css('visibility', 'hidden');
+ }).keyup(function(e){
+ if ( 13 == e.which ) {
+ tagBox.flushTags( $(this).closest('.tagsdiv') );
+ return false;
+ }
+ }).keypress(function(e){
+ if ( 13 == e.which ) {
+ e.preventDefault();
+ return false;
+ }
+ }).each(function(){
+ var tax = $(this).closest('div.tagsdiv').attr('id');
+ $(this).suggest( ajaxurl + '?action=ajax-tag-search&tax=' + tax, { delay: 500, minchars: 2, multiple: true, multipleSep: ", " } );
+ });
+
+ // save tags on post save/publish
+ $('#post').submit(function(){
+ $('div.tagsdiv').each( function() {
+ tagBox.flushTags(this, false, 1);
+ });
+ });
+
+ // tag cloud
+ $('a.tagcloud-link').click(function(){
+ tagBox.get( $(this).attr('id') );
+ $(this).unbind().click(function(){
+ $(this).siblings('.the-tagcloud').toggle();
+ return false;
+ });
+ return false;
+ });
+ }
+};
+
+commentsBox = {
+ st : 0,
+
+ get : function(total, num) {
+ var st = this.st, data;
+ if ( ! num )
+ num = 20;
+
+ this.st += num;
+ this.total = total;
+ $('#commentsdiv img.waiting').show();
+
+ data = {
+ 'action' : 'get-comments',
+ 'mode' : 'single',
+ '_ajax_nonce' : $('#add_comment_nonce').val(),
+ 'post_ID' : $('#post_ID').val(),
+ 'start' : st,
+ 'num' : num
+ };
+
+ $.post(ajaxurl, data,
+ function(r) {
+ r = wpAjax.parseAjaxResponse(r);
+ $('#commentsdiv .widefat').show();
+ $('#commentsdiv img.waiting').hide();
+
+ if ( 'object' == typeof r && r.responses[0] ) {
+ $('#the-comment-list').append( r.responses[0].data );
+
+ theList = theExtraList = null;
+ $("a[className*=':']").unbind();
+ setCommentsList();
+
+ if ( commentsBox.st > commentsBox.total )
+ $('#show-comments').hide();
+ else
+ $('#show-comments').html(postL10n.showcomm);
+ return;
+ } else if ( 1 == r ) {
+ $('#show-comments').parent().html(postL10n.endcomm);
+ return;
+ }
+
+ $('#the-comment-list').append(''+wpAjax.broken+' ');
+ }
+ );
+
+ return false;
+ }
+};
+
+WPSetThumbnailHTML = function(html){
+ $('.inside', '#postimagediv').html(html);
+};
+
+WPSetThumbnailID = function(id){
+ var field = $('input[value=_thumbnail_id]', '#list-table');
+ if ( field.size() > 0 ) {
+ $('#meta\\[' + field.attr('id').match(/[0-9]+/) + '\\]\\[value\\]').text(id);
+ }
+};
+
+WPRemoveThumbnail = function(){
+ $.post(ajaxurl, {
+ action:"set-post-thumbnail", post_id: $('#post_ID').val(), thumbnail_id: -1, cookie: encodeURIComponent(document.cookie)
+ }, function(str){
+ if ( str == '0' ) {
+ alert( setPostThumbnailL10n.error );
+ } else {
+ WPSetThumbnailHTML(str);
+ }
+ }
+ );
+};
+
+})(jQuery);
+
+jQuery(document).ready( function($) {
+ var catAddAfter, stamp, visibility, sticky = '', post = 'post' == pagenow || 'post-new' == pagenow, page = 'page' == pagenow || 'page-new' == pagenow;
+
+ // postboxes
+// if ( post )
+// postboxes.add_postbox_toggles('post');
+// else if ( page )
+// postboxes.add_postbox_toggles('page');
+
+ // multi-taxonomies
+ if ( $('#tagsdiv-post_tag').length ) {
+ tagBox.init();
+ } else {
+ $('#side-sortables, #normal-sortables, #advanced-sortables').children('div.postbox').each(function(){
+ if ( this.id.indexOf('tagsdiv-') === 0 ) {
+ tagBox.init();
+ return false;
+ }
+ });
+ }
+
+ // categories
+ if ( $('#categorydiv').length ) {
+ // TODO: move to jQuery 1.3+, support for multiple hierarchical taxonomies, see wp-lists.dev.js
+ $('a', '#category-tabs').click(function(){
+ var t = $(this).attr('href');
+ $(this).parent().addClass('tabs').siblings('li').removeClass('tabs');
+ $('#category-tabs').siblings('.tabs-panel').hide();
+ $(t).show();
+ if ( '#categories-all' == t )
+ deleteUserSetting('cats');
+ else
+ setUserSetting('cats','pop');
+ return false;
+ });
+ if ( getUserSetting('cats') )
+ $('a[href="#categories-pop"]', '#category-tabs').click();
+
+ // Ajax Cat
+ $('#newcat').one( 'focus', function() { $(this).val( '' ).removeClass( 'form-input-tip' ) } );
+ $('#category-add-sumbit').click( function(){ $('#newcat').focus(); } );
+
+ catAddBefore = function( s ) {
+ if ( !$('#newcat').val() )
+ return false;
+ s.data += '&' + $( ':checked', '#categorychecklist' ).serialize();
+ return s;
+ };
+
+ catAddAfter = function( r, s ) {
+ var sup, drop = $('#newcat_parent');
+
+ if ( 'undefined' != s.parsed.responses[0] && (sup = s.parsed.responses[0].supplemental.newcat_parent) ) {
+ drop.before(sup);
+ drop.remove();
+ }
+ };
+
+ $('#categorychecklist').wpList({
+ alt: '',
+ response: 'category-ajax-response',
+ addBefore: catAddBefore,
+ addAfter: catAddAfter
+ });
+
+ $('#category-add-toggle').click( function() {
+ $('#category-adder').toggleClass( 'wp-hidden-children' );
+ $('a[href="#categories-all"]', '#category-tabs').click();
+ return false;
+ });
+
+ $('#categorychecklist').children('li.popular-category').add( $('#categorychecklist-pop').children() ).find(':checkbox').live( 'click', function(){
+ var t = $(this), c = t.is(':checked'), id = t.val();
+ $('#in-category-' + id + ', #in-popular-category-' + id).attr( 'checked', c );
+ });
+
+ } // end cats
+
+ // Custom Fields
+ if ( $('#postcustom').length ) {
+ $('#the-list').wpList( { addAfter: function( xml, s ) {
+ $('table#list-table').show();
+ if ( typeof( autosave_update_post_ID ) != 'undefined' ) {
+ autosave_update_post_ID(s.parsed.responses[0].supplemental.postid);
+ }
+ }, addBefore: function( s ) {
+ s.data += '&post_id=' + $('#post_ID').val();
+ return s;
+ }
+ });
+ }
+
+ // submitdiv
+ if ( $('#submitdiv').length ) {
+ stamp = $('#timestamp').html();
+ visibility = $('#post-visibility-display').html();
+
+ function updateVisibility() {
+ var pvSelect = $('#post-visibility-select');
+ if ( $('input:radio:checked', pvSelect).val() != 'public' ) {
+ $('#sticky').attr('checked', false);
+ $('#sticky-span').hide();
+ } else {
+ $('#sticky-span').show();
+ }
+ if ( $('input:radio:checked', pvSelect).val() != 'password' ) {
+ $('#password-span').hide();
+ } else {
+ $('#password-span').show();
+ }
+ }
+
+ function updateText() {
+ var attemptedDate, originalDate, currentDate, publishOn, postStatus = $('#post_status'),
+ optPublish = $('option[value=publish]', postStatus), aa = $('#aa').val(),
+ mm = $('#mm').val(), jj = $('#jj').val(), hh = $('#hh').val(), mn = $('#mn').val();
+
+ attemptedDate = new Date( aa, mm - 1, jj, hh, mn );
+ originalDate = new Date( $('#hidden_aa').val(), $('#hidden_mm').val() -1, $('#hidden_jj').val(), $('#hidden_hh').val(), $('#hidden_mn').val() );
+ currentDate = new Date( $('#cur_aa').val(), $('#cur_mm').val() -1, $('#cur_jj').val(), $('#cur_hh').val(), $('#cur_mn').val() );
+
+ if ( attemptedDate.getFullYear() != aa || (1 + attemptedDate.getMonth()) != mm || attemptedDate.getDate() != jj || attemptedDate.getMinutes() != mn ) {
+ $('.timestamp-wrap', '#timestampdiv').addClass('form-invalid');
+ return false;
+ } else {
+ $('.timestamp-wrap', '#timestampdiv').removeClass('form-invalid');
+ }
+
+ if ( attemptedDate > currentDate && $('#original_post_status').val() != 'future' ) {
+ publishOn = postL10n.publishOnFuture;
+ $('#publish').val( postL10n.schedule );
+ } else if ( attemptedDate <= currentDate && $('#original_post_status').val() != 'publish' ) {
+ publishOn = postL10n.publishOn;
+ $('#publish').val( postL10n.publish );
+ } else {
+ publishOn = postL10n.publishOnPast;
+ if ( page )
+ $('#publish').val( postL10n.updatePage );
+ else
+ $('#publish').val( postL10n.updatePost );
+ }
+ if ( originalDate.toUTCString() == attemptedDate.toUTCString() ) { //hack
+ $('#timestamp').html(stamp);
+ } else {
+ $('#timestamp').html(
+ publishOn + ' ' +
+ $('option[value=' + $('#mm').val() + ']', '#mm').text() + ' ' +
+ jj + ', ' +
+ aa + ' @ ' +
+ hh + ':' +
+ mn + ' '
+ );
+ }
+
+ if ( $('input:radio:checked', '#post-visibility-select').val() == 'private' ) {
+ if ( page )
+ $('#publish').val( postL10n.updatePage );
+ else
+ $('#publish').val( postL10n.updatePost );
+ if ( optPublish.length == 0 ) {
+ postStatus.append('');
+ } else {
+ optPublish.html( postL10n.privatelyPublished );
+ }
+ $('option[value=publish]', postStatus).attr('selected', true);
+ $('.edit-post-status', '#misc-publishing-actions').hide();
+ } else {
+ if ( $('#original_post_status').val() == 'future' || $('#original_post_status').val() == 'draft' ) {
+ if ( optPublish.length ) {
+ optPublish.remove();
+ postStatus.val($('#hidden_post_status').val());
+ }
+ } else {
+ optPublish.html( postL10n.published );
+ }
+ if ( postStatus.is(':hidden') )
+ $('.edit-post-status', '#misc-publishing-actions').show();
+ }
+ $('#post-status-display').html($('option:selected', postStatus).text());
+ if ( $('option:selected', postStatus).val() == 'private' || $('option:selected', postStatus).val() == 'publish' ) {
+ $('#save-post').hide();
+ } else {
+ $('#save-post').show();
+ if ( $('option:selected', postStatus).val() == 'pending' ) {
+ $('#save-post').show().val( postL10n.savePending );
+ } else {
+ $('#save-post').show().val( postL10n.saveDraft );
+ }
+ }
+ return true;
+ }
+
+ $('.edit-visibility', '#visibility').click(function () {
+ if ($('#post-visibility-select').is(":hidden")) {
+ updateVisibility();
+ $('#post-visibility-select').slideDown("normal");
+ $(this).hide();
+ }
+ return false;
+ });
+
+ $('.cancel-post-visibility', '#post-visibility-select').click(function () {
+ $('#post-visibility-select').slideUp("normal");
+ $('#visibility-radio-' + $('#hidden-post-visibility').val()).attr('checked', true);
+ $('#post_password').val($('#hidden_post_password').val());
+ $('#sticky').attr('checked', $('#hidden-post-sticky').attr('checked'));
+ $('#post-visibility-display').html(visibility);
+ $('.edit-visibility', '#visibility').show();
+ updateText();
+ return false;
+ });
+
+ $('.save-post-visibility', '#post-visibility-select').click(function () { // crazyhorse - multiple ok cancels
+ var pvSelect = $('#post-visibility-select');
+
+ pvSelect.slideUp("normal");
+ $('.edit-visibility', '#visibility').show();
+ updateText();
+
+ if ( $('input:radio:checked', pvSelect).val() != 'public' ) {
+ $('#sticky').attr('checked', false);
+ }
+
+ if ( true == $('#sticky').attr('checked') ) {
+ sticky = 'Sticky';
+ } else {
+ sticky = '';
+ }
+
+ $('#post-visibility-display').html( postL10n[$('input:radio:checked', pvSelect).val() + sticky] );
+ return false;
+ });
+
+ $('input:radio', '#post-visibility-select').change(function() {
+ updateVisibility();
+ });
+
+ $('#timestampdiv').siblings('a.edit-timestamp').click(function() {
+ if ($('#timestampdiv').is(":hidden")) {
+ $('#timestampdiv').slideDown("normal");
+ $(this).hide();
+ }
+ return false;
+ });
+
+ $('.cancel-timestamp', '#timestampdiv').click(function() {
+ $('#timestampdiv').slideUp("normal");
+ $('#mm').val($('#hidden_mm').val());
+ $('#jj').val($('#hidden_jj').val());
+ $('#aa').val($('#hidden_aa').val());
+ $('#hh').val($('#hidden_hh').val());
+ $('#mn').val($('#hidden_mn').val());
+ $('#timestampdiv').siblings('a.edit-timestamp').show();
+ updateText();
+ return false;
+ });
+
+ $('.save-timestamp', '#timestampdiv').click(function () { // crazyhorse - multiple ok cancels
+ if ( updateText() ) {
+ $('#timestampdiv').slideUp("normal");
+ $('#timestampdiv').siblings('a.edit-timestamp').show();
+ }
+ return false;
+ });
+
+ $('#post-status-select').siblings('a.edit-post-status').click(function() {
+ if ($('#post-status-select').is(":hidden")) {
+ $('#post-status-select').slideDown("normal");
+ $(this).hide();
+ }
+ return false;
+ });
+
+ $('.save-post-status', '#post-status-select').click(function() {
+ $('#post-status-select').slideUp("normal");
+ $('#post-status-select').siblings('a.edit-post-status').show();
+ updateText();
+ return false;
+ });
+
+ $('.cancel-post-status', '#post-status-select').click(function() {
+ $('#post-status-select').slideUp("normal");
+ $('#post_status').val($('#hidden_post_status').val());
+ $('#post-status-select').siblings('a.edit-post-status').show();
+ updateText();
+ return false;
+ });
+ } // end submitdiv
+
+ // permalink
+ if ( $('#edit-slug-box').length ) {
+ editPermalink = function(post_id) {
+ var i, c = 0, e = $('#editable-post-name'), revert_e = e.html(), real_slug = $('#post_name'), revert_slug = real_slug.html(), b = $('#edit-slug-buttons'), revert_b = b.html(), full = $('#editable-post-name-full').html();
+
+ $('#view-post-btn').hide();
+ b.html(''+postL10n.ok+' '+postL10n.cancel+'');
+ b.children('.save').click(function() {
+ var new_slug = e.children('input').val();
+ $.post(ajaxurl, {
+ action: 'sample-permalink',
+ post_id: post_id,
+ new_slug: new_slug,
+ new_title: $('#title').val(),
+ samplepermalinknonce: $('#samplepermalinknonce').val()
+ }, function(data) {
+ $('#edit-slug-box').html(data);
+ b.html(revert_b);
+ real_slug.attr('value', new_slug);
+ makeSlugeditClickable();
+ $('#view-post-btn').show();
+ });
+ return false;
+ });
+
+ $('.cancel', '#edit-slug-buttons').click(function() {
+ $('#view-post-btn').show();
+ e.html(revert_e);
+ b.html(revert_b);
+ real_slug.attr('value', revert_slug);
+ return false;
+ });
+
+ for ( i = 0; i < full.length; ++i ) {
+ if ( '%' == full.charAt(i) )
+ c++;
+ }
+
+ slug_value = ( c > full.length / 4 ) ? '' : full;
+ e.html('').children('input').keypress(function(e){
+ var key = e.keyCode || 0;
+ // on enter, just save the new slug, don't save the post
+ if ( 13 == key ) {
+ b.children('.save').click();
+ return false;
+ }
+ if ( 27 == key ) {
+ b.children('.cancel').click();
+ return false;
+ }
+ real_slug.attr('value', this.value);
+ }).focus();
+ }
+
+ makeSlugeditClickable = function() {
+ $('#editable-post-name').click(function() {
+ $('#edit-slug-buttons').children('.edit-slug').click();
+ });
+ }
+ makeSlugeditClickable();
+ }
+});
diff --git a/blog/wp-content/plugins/more-fields/post-2.9.2.js b/blog/wp-content/plugins/more-fields/post-2.9.2.js
new file mode 100644
index 0000000..0a61240
--- /dev/null
+++ b/blog/wp-content/plugins/more-fields/post-2.9.2.js
@@ -0,0 +1 @@
+var tagBox,commentsBox,editPermalink,makeSlugeditClickable,WPSetThumbnailHTML,WPSetThumbnailID,WPRemoveThumbnail;function array_unique_noempty(b){var c=[];jQuery.each(b,function(a,d){d=jQuery.trim(d);if(d&&jQuery.inArray(d,c)==-1){c.push(d)}});return c}(function(a){tagBox={clean:function(b){return b.replace(/\s*,\s*/g,",").replace(/,+/g,",").replace(/[,\s]+$/,"").replace(/^[,\s]+/,"")},parseTags:function(e){var h=e.id,b=h.split("-check-num-")[1],d=a(e).closest(".tagsdiv"),g=d.find(".the-tags"),c=g.val().split(","),f=[];delete c[b];a.each(c,function(i,j){j=a.trim(j);if(j){f.push(j)}});g.val(this.clean(f.join(",")));this.quickClicks(d);return false},quickClicks:function(c){var e=a(".the-tags",c),d=a(".tagchecklist",c),b;if(!e.length){return}b=e.val().split(",");d.empty();a.each(b,function(h,i){var f,g,j=a(c).attr("id");i=a.trim(i);if(!i.match(/^\s+$/)&&""!=i){g=j+"-check-num-"+h;f='X '+i+" ";d.append(f);a("#"+g).click(function(){tagBox.parseTags(this)})}})},flushTags:function(e,b,g){b=b||false;var i,c=a(".the-tags",e),h=a("input.newtag",e),d;i=b?a(b).text():h.val();tagsval=c.val();d=tagsval?tagsval+","+i:i;d=this.clean(d);d=array_unique_noempty(d.split(",")).join(",");c.val(d);this.quickClicks(e);if(!b){h.val("")}if("undefined"==typeof(g)){h.focus()}return false},get:function(c){var b=c.substr(c.indexOf("-")+1);a.post(ajaxurl,{action:"get-tagcloud",tax:b},function(e,d){if(0==e||"success"!=d){e=wpAjax.broken}e=a(''+e+"
");a("a",e).click(function(){tagBox.flushTags(a(this).closest(".inside").children(".tagsdiv"),this);return false});a("#"+c).after(e)})},init:function(){var b=this,c=a("div.ajaxtag");a(".tagsdiv").each(function(){tagBox.quickClicks(this)});a("input.tagadd",c).click(function(){b.flushTags(a(this).closest(".tagsdiv"))});a("div.taghint",c).click(function(){a(this).css("visibility","hidden").siblings(".newtag").focus()});a("input.newtag",c).blur(function(){if(this.value==""){a(this).siblings(".taghint").css("visibility","")}}).focus(function(){a(this).siblings(".taghint").css("visibility","hidden")}).keyup(function(d){if(13==d.which){tagBox.flushTags(a(this).closest(".tagsdiv"));return false}}).keypress(function(d){if(13==d.which){d.preventDefault();return false}}).each(function(){var d=a(this).closest("div.tagsdiv").attr("id");a(this).suggest(ajaxurl+"?action=ajax-tag-search&tax="+d,{delay:500,minchars:2,multiple:true,multipleSep:", "})});a("#post").submit(function(){a("div.tagsdiv").each(function(){tagBox.flushTags(this,false,1)})});a("a.tagcloud-link").click(function(){tagBox.get(a(this).attr("id"));a(this).unbind().click(function(){a(this).siblings(".the-tagcloud").toggle();return false});return false})}};commentsBox={st:0,get:function(d,c){var b=this.st,e;if(!c){c=20}this.st+=c;this.total=d;a("#commentsdiv img.waiting").show();e={action:"get-comments",mode:"single",_ajax_nonce:a("#add_comment_nonce").val(),post_ID:a("#post_ID").val(),start:b,num:c};a.post(ajaxurl,e,function(f){f=wpAjax.parseAjaxResponse(f);a("#commentsdiv .widefat").show();a("#commentsdiv img.waiting").hide();if("object"==typeof f&&f.responses[0]){a("#the-comment-list").append(f.responses[0].data);theList=theExtraList=null;a("a[className*=':']").unbind();setCommentsList();if(commentsBox.st>commentsBox.total){a("#show-comments").hide()}else{a("#show-comments").html(postL10n.showcomm)}return}else{if(1==f){a("#show-comments").parent().html(postL10n.endcomm);return}}a("#the-comment-list").append(''+wpAjax.broken+" ")});return false}};WPSetThumbnailHTML=function(b){a(".inside","#postimagediv").html(b)};WPSetThumbnailID=function(c){var b=a("input[value=_thumbnail_id]","#list-table");if(b.size()>0){a("#meta\\["+b.attr("id").match(/[0-9]+/)+"\\]\\[value\\]").text(c)}};WPRemoveThumbnail=function(){a.post(ajaxurl,{action:"set-post-thumbnail",post_id:a("#post_ID").val(),thumbnail_id:-1,cookie:encodeURIComponent(document.cookie)},function(b){if(b=="0"){alert(setPostThumbnailL10n.error)}else{WPSetThumbnailHTML(b)}})}})(jQuery);jQuery(document).ready(function(f){var d,a,b,h="",i="post"==pagenow||"post-new"==pagenow,g="page"==pagenow||"page-new"==pagenow;if(f("#tagsdiv-post_tag").length){tagBox.init()}else{f("#side-sortables, #normal-sortables, #advanced-sortables").children("div.postbox").each(function(){if(this.id.indexOf("tagsdiv-")===0){tagBox.init();return false}})}if(f("#categorydiv").length){f("a","#category-tabs").click(function(){var j=f(this).attr("href");f(this).parent().addClass("tabs").siblings("li").removeClass("tabs");f("#category-tabs").siblings(".tabs-panel").hide();f(j).show();if("#categories-all"==j){deleteUserSetting("cats")}else{setUserSetting("cats","pop")}return false});if(getUserSetting("cats")){f('a[href="#categories-pop"]',"#category-tabs").click()}f("#newcat").one("focus",function(){f(this).val("").removeClass("form-input-tip")});f("#category-add-sumbit").click(function(){f("#newcat").focus()});catAddBefore=function(j){if(!f("#newcat").val()){return false}j.data+="&"+f(":checked","#categorychecklist").serialize();return j};d=function(m,l){var k,j=f("#newcat_parent");if("undefined"!=l.parsed.responses[0]&&(k=l.parsed.responses[0].supplemental.newcat_parent)){j.before(k);j.remove()}};f("#categorychecklist").wpList({alt:"",response:"category-ajax-response",addBefore:catAddBefore,addAfter:d});f("#category-add-toggle").click(function(){f("#category-adder").toggleClass("wp-hidden-children");f('a[href="#categories-all"]',"#category-tabs").click();return false});f("#categorychecklist").children("li.popular-category").add(f("#categorychecklist-pop").children()).find(":checkbox").live("click",function(){var j=f(this),l=j.is(":checked"),k=j.val();f("#in-category-"+k+", #in-popular-category-"+k).attr("checked",l)})}if(f("#postcustom").length){f("#the-list").wpList({addAfter:function(j,k){f("table#list-table").show();if(typeof(autosave_update_post_ID)!="undefined"){autosave_update_post_ID(k.parsed.responses[0].supplemental.postid)}},addBefore:function(j){j.data+="&post_id="+f("#post_ID").val();return j}})}if(f("#submitdiv").length){a=f("#timestamp").html();b=f("#post-visibility-display").html();function e(){var j=f("#post-visibility-select");if(f("input:radio:checked",j).val()!="public"){f("#sticky").attr("checked",false);f("#sticky-span").hide()}else{f("#sticky-span").show()}if(f("input:radio:checked",j).val()!="password"){f("#password-span").hide()}else{f("#password-span").show()}}function c(){var q,r,k,t,s=f("#post_status"),l=f("option[value=publish]",s),j=f("#aa").val(),o=f("#mm").val(),p=f("#jj").val(),n=f("#hh").val(),m=f("#mn").val();q=new Date(j,o-1,p,n,m);r=new Date(f("#hidden_aa").val(),f("#hidden_mm").val()-1,f("#hidden_jj").val(),f("#hidden_hh").val(),f("#hidden_mn").val());k=new Date(f("#cur_aa").val(),f("#cur_mm").val()-1,f("#cur_jj").val(),f("#cur_hh").val(),f("#cur_mn").val());if(q.getFullYear()!=j||(1+q.getMonth())!=o||q.getDate()!=p||q.getMinutes()!=m){f(".timestamp-wrap","#timestampdiv").addClass("form-invalid");return false}else{f(".timestamp-wrap","#timestampdiv").removeClass("form-invalid")}if(q>k&&f("#original_post_status").val()!="future"){t=postL10n.publishOnFuture;f("#publish").val(postL10n.schedule)}else{if(q<=k&&f("#original_post_status").val()!="publish"){t=postL10n.publishOn;f("#publish").val(postL10n.publish)}else{t=postL10n.publishOnPast;if(g){f("#publish").val(postL10n.updatePage)}else{f("#publish").val(postL10n.updatePost)}}}if(r.toUTCString()==q.toUTCString()){f("#timestamp").html(a)}else{f("#timestamp").html(t+" "+f("option[value="+f("#mm").val()+"]","#mm").text()+" "+p+", "+j+" @ "+n+":"+m+" ")}if(f("input:radio:checked","#post-visibility-select").val()=="private"){if(g){f("#publish").val(postL10n.updatePage)}else{f("#publish").val(postL10n.updatePost)}if(l.length==0){s.append('")}else{l.html(postL10n.privatelyPublished)}f("option[value=publish]",s).attr("selected",true);f(".edit-post-status","#misc-publishing-actions").hide()}else{if(f("#original_post_status").val()=="future"||f("#original_post_status").val()=="draft"){if(l.length){l.remove();s.val(f("#hidden_post_status").val())}}else{l.html(postL10n.published)}if(s.is(":hidden")){f(".edit-post-status","#misc-publishing-actions").show()}}f("#post-status-display").html(f("option:selected",s).text());if(f("option:selected",s).val()=="private"||f("option:selected",s).val()=="publish"){f("#save-post").hide()}else{f("#save-post").show();if(f("option:selected",s).val()=="pending"){f("#save-post").show().val(postL10n.savePending)}else{f("#save-post").show().val(postL10n.saveDraft)}}return true}f(".edit-visibility","#visibility").click(function(){if(f("#post-visibility-select").is(":hidden")){e();f("#post-visibility-select").slideDown("normal");f(this).hide()}return false});f(".cancel-post-visibility","#post-visibility-select").click(function(){f("#post-visibility-select").slideUp("normal");f("#visibility-radio-"+f("#hidden-post-visibility").val()).attr("checked",true);f("#post_password").val(f("#hidden_post_password").val());f("#sticky").attr("checked",f("#hidden-post-sticky").attr("checked"));f("#post-visibility-display").html(b);f(".edit-visibility","#visibility").show();c();return false});f(".save-post-visibility","#post-visibility-select").click(function(){var j=f("#post-visibility-select");j.slideUp("normal");f(".edit-visibility","#visibility").show();c();if(f("input:radio:checked",j).val()!="public"){f("#sticky").attr("checked",false)}if(true==f("#sticky").attr("checked")){h="Sticky"}else{h=""}f("#post-visibility-display").html(postL10n[f("input:radio:checked",j).val()+h]);return false});f("input:radio","#post-visibility-select").change(function(){e()});f("#timestampdiv").siblings("a.edit-timestamp").click(function(){if(f("#timestampdiv").is(":hidden")){f("#timestampdiv").slideDown("normal");f(this).hide()}return false});f(".cancel-timestamp","#timestampdiv").click(function(){f("#timestampdiv").slideUp("normal");f("#mm").val(f("#hidden_mm").val());f("#jj").val(f("#hidden_jj").val());f("#aa").val(f("#hidden_aa").val());f("#hh").val(f("#hidden_hh").val());f("#mn").val(f("#hidden_mn").val());f("#timestampdiv").siblings("a.edit-timestamp").show();c();return false});f(".save-timestamp","#timestampdiv").click(function(){if(c()){f("#timestampdiv").slideUp("normal");f("#timestampdiv").siblings("a.edit-timestamp").show()}return false});f("#post-status-select").siblings("a.edit-post-status").click(function(){if(f("#post-status-select").is(":hidden")){f("#post-status-select").slideDown("normal");f(this).hide()}return false});f(".save-post-status","#post-status-select").click(function(){f("#post-status-select").slideUp("normal");f("#post-status-select").siblings("a.edit-post-status").show();c();return false});f(".cancel-post-status","#post-status-select").click(function(){f("#post-status-select").slideUp("normal");f("#post_status").val(f("#hidden_post_status").val());f("#post-status-select").siblings("a.edit-post-status").show();c();return false})}if(f("#edit-slug-box").length){editPermalink=function(j){var k,n=0,m=f("#editable-post-name"),o=m.html(),r=f("#post_name"),s=r.html(),p=f("#edit-slug-buttons"),q=p.html(),l=f("#editable-post-name-full").html();f("#view-post-btn").hide();p.html(''+postL10n.ok+' '+postL10n.cancel+"");p.children(".save").click(function(){var t=m.children("input").val();f.post(ajaxurl,{action:"sample-permalink",post_id:j,new_slug:t,new_title:f("#title").val(),samplepermalinknonce:f("#samplepermalinknonce").val()},function(u){f("#edit-slug-box").html(u);p.html(q);r.attr("value",t);makeSlugeditClickable();f("#view-post-btn").show()});return false});f(".cancel","#edit-slug-buttons").click(function(){f("#view-post-btn").show();m.html(o);p.html(q);r.attr("value",s);return false});for(k=0;kl.length/4)?"":l;m.html('').children("input").keypress(function(u){var t=u.keyCode||0;if(13==t){p.children(".save").click();return false}if(27==t){p.children(".cancel").click();return false}r.attr("value",this.value)}).focus()};makeSlugeditClickable=function(){f("#editable-post-name").click(function(){f("#edit-slug-buttons").children(".edit-slug").click()})};makeSlugeditClickable()}});
\ No newline at end of file
diff --git a/blog/wp-content/plugins/more-fields/post-2.9.js b/blog/wp-content/plugins/more-fields/post-2.9.js
new file mode 100644
index 0000000..6621003
--- /dev/null
+++ b/blog/wp-content/plugins/more-fields/post-2.9.js
@@ -0,0 +1,580 @@
+var tagBox, commentsBox, editPermalink, makeSlugeditClickable, WPSetThumbnailHTML, WPSetThumbnailID, WPRemoveThumbnail;
+
+// return an array with any duplicate, whitespace or values removed
+function array_unique_noempty(a) {
+ var out = [];
+ jQuery.each( a, function(key, val) {
+ val = jQuery.trim(val);
+ if ( val && jQuery.inArray(val, out) == -1 )
+ out.push(val);
+ } );
+ return out;
+}
+
+(function($){
+
+tagBox = {
+ clean : function(tags) {
+ return tags.replace(/\s*,\s*/g, ',').replace(/,+/g, ',').replace(/[,\s]+$/, '').replace(/^[,\s]+/, '');
+ },
+
+ parseTags : function(el) {
+ var id = el.id, num = id.split('-check-num-')[1], taxbox = $(el).closest('.tagsdiv'), thetags = taxbox.find('.the-tags'), current_tags = thetags.val().split(','), new_tags = [];
+ delete current_tags[num];
+
+ $.each( current_tags, function(key, val) {
+ val = $.trim(val);
+ if ( val ) {
+ new_tags.push(val);
+ }
+ });
+
+ thetags.val( this.clean( new_tags.join(',') ) );
+
+ this.quickClicks(taxbox);
+ return false;
+ },
+
+ quickClicks : function(el) {
+ var thetags = $('.the-tags', el), tagchecklist = $('.tagchecklist', el), current_tags;
+
+ if ( !thetags.length )
+ return;
+
+ current_tags = thetags.val().split(',');
+ tagchecklist.empty();
+
+ $.each( current_tags, function( key, val ) {
+ var txt, button_id, id = $(el).attr('id');
+
+ val = $.trim(val);
+ if ( !val.match(/^\s+$/) && '' != val ) {
+ button_id = id + '-check-num-' + key;
+ txt = 'X ' + val + ' ';
+ tagchecklist.append(txt);
+ $( '#' + button_id ).click( function(){ tagBox.parseTags(this); });
+ }
+ });
+ },
+
+ flushTags : function(el, a, f) {
+ a = a || false;
+ var text, tags = $('.the-tags', el), newtag = $('input.newtag', el), newtags;
+
+ text = a ? $(a).text() : newtag.val();
+ tagsval = tags.val();
+ newtags = tagsval ? tagsval + ',' + text : text;
+
+ newtags = this.clean( newtags );
+ newtags = array_unique_noempty( newtags.split(',') ).join(',');
+ tags.val(newtags);
+ this.quickClicks(el);
+
+ if ( !a )
+ newtag.val('');
+ if ( 'undefined' == typeof(f) )
+ newtag.focus();
+
+ return false;
+ },
+
+ get : function(id) {
+ var tax = id.substr(id.indexOf('-')+1);
+
+ $.post(ajaxurl, {'action':'get-tagcloud','tax':tax}, function(r, stat) {
+ if ( 0 == r || 'success' != stat )
+ r = wpAjax.broken;
+
+ r = $(''+r+'
');
+ $('a', r).click(function(){
+ tagBox.flushTags( $(this).closest('.inside').children('.tagsdiv'), this);
+ return false;
+ });
+
+ $('#'+id).after(r);
+ });
+ },
+
+ init : function() {
+ var t = this, ajaxtag = $('div.ajaxtag');
+
+ $('.tagsdiv').each( function() {
+ tagBox.quickClicks(this);
+ });
+
+ $('input.tagadd', ajaxtag).click(function(){
+ t.flushTags( $(this).closest('.tagsdiv') );
+ });
+
+ $('div.taghint', ajaxtag).click(function(){
+ $(this).css('visibility', 'hidden').siblings('.newtag').focus();
+ });
+
+ $('input.newtag', ajaxtag).blur(function() {
+ if ( this.value == '' )
+ $(this).siblings('.taghint').css('visibility', '');
+ }).focus(function(){
+ $(this).siblings('.taghint').css('visibility', 'hidden');
+ }).keyup(function(e){
+ if ( 13 == e.which ) {
+ tagBox.flushTags( $(this).closest('.tagsdiv') );
+ return false;
+ }
+ }).keypress(function(e){
+ if ( 13 == e.which ) {
+ e.preventDefault();
+ return false;
+ }
+ }).each(function(){
+ var tax = $(this).closest('div.tagsdiv').attr('id');
+ $(this).suggest( ajaxurl + '?action=ajax-tag-search&tax=' + tax, { delay: 500, minchars: 2, multiple: true, multipleSep: ", " } );
+ });
+
+ // save tags on post save/publish
+ $('#post').submit(function(){
+ $('div.tagsdiv').each( function() {
+ tagBox.flushTags(this, false, 1);
+ });
+ });
+
+ // tag cloud
+ $('a.tagcloud-link').click(function(){
+ tagBox.get( $(this).attr('id') );
+ $(this).unbind().click(function(){
+ $(this).siblings('.the-tagcloud').toggle();
+ return false;
+ });
+ return false;
+ });
+ }
+};
+
+commentsBox = {
+ st : 0,
+
+ get : function(total, num) {
+ var st = this.st, data;
+ if ( ! num )
+ num = 20;
+
+ this.st += num;
+ this.total = total;
+ $('#commentsdiv img.waiting').show();
+
+ data = {
+ 'action' : 'get-comments',
+ 'mode' : 'single',
+ '_ajax_nonce' : $('#add_comment_nonce').val(),
+ 'post_ID' : $('#post_ID').val(),
+ 'start' : st,
+ 'num' : num
+ };
+
+ $.post(ajaxurl, data,
+ function(r) {
+ r = wpAjax.parseAjaxResponse(r);
+ $('#commentsdiv .widefat').show();
+ $('#commentsdiv img.waiting').hide();
+
+ if ( 'object' == typeof r && r.responses[0] ) {
+ $('#the-comment-list').append( r.responses[0].data );
+
+ theList = theExtraList = null;
+ $("a[className*=':']").unbind();
+ setCommentsList();
+
+ if ( commentsBox.st > commentsBox.total )
+ $('#show-comments').hide();
+ else
+ $('#show-comments').html(postL10n.showcomm);
+ return;
+ } else if ( 1 == r ) {
+ $('#show-comments').parent().html(postL10n.endcomm);
+ return;
+ }
+
+ $('#the-comment-list').append(''+wpAjax.broken+' ');
+ }
+ );
+
+ return false;
+ }
+};
+
+WPSetThumbnailHTML = function(html){
+ $('.inside', '#postimagediv').html(html);
+};
+
+WPSetThumbnailID = function(id){
+ var field = $('input[value=_thumbnail_id]', '#list-table');
+ if ( field.size() > 0 ) {
+ $('#meta\\[' + field.attr('id').match(/[0-9]+/) + '\\]\\[value\\]').text(id);
+ }
+};
+
+WPRemoveThumbnail = function(){
+ $.post(ajaxurl, {
+ action:"set-post-thumbnail", post_id: $('#post_ID').val(), thumbnail_id: -1, cookie: encodeURIComponent(document.cookie)
+ }, function(str){
+ if ( str == '0' ) {
+ alert( setPostThumbnailL10n.error );
+ } else {
+ WPSetThumbnailHTML(str);
+ }
+ }
+ );
+};
+
+})(jQuery);
+
+jQuery(document).ready( function($) {
+ var catAddAfter, stamp, visibility, sticky = '', post = 'post' == pagenow || 'post-new' == pagenow, page = 'page' == pagenow || 'page-new' == pagenow;
+
+ // postboxes
+ if ( post )
+ postboxes.add_postbox_toggles('post');
+ else if ( page )
+ postboxes.add_postbox_toggles('page');
+
+ // multi-taxonomies
+ if ( $('#tagsdiv-post_tag').length ) {
+ tagBox.init();
+ } else {
+ $('#side-sortables, #normal-sortables, #advanced-sortables').children('div.postbox').each(function(){
+ if ( this.id.indexOf('tagsdiv-') === 0 ) {
+ tagBox.init();
+ return false;
+ }
+ });
+ }
+
+ // categories
+ if ( $('#categorydiv').length ) {
+ // TODO: move to jQuery 1.3+, support for multiple hierarchical taxonomies, see wp-lists.dev.js
+ $('a', '#category-tabs').click(function(){
+ var t = $(this).attr('href');
+ $(this).parent().addClass('tabs').siblings('li').removeClass('tabs');
+ $('#category-tabs').siblings('.tabs-panel').hide();
+ $(t).show();
+ if ( '#categories-all' == t )
+ deleteUserSetting('cats');
+ else
+ setUserSetting('cats','pop');
+ return false;
+ });
+ if ( getUserSetting('cats') )
+ $('a[href="#categories-pop"]', '#category-tabs').click();
+
+ // Ajax Cat
+ $('#newcat').one( 'focus', function() { $(this).val( '' ).removeClass( 'form-input-tip' ) } );
+ $('#category-add-sumbit').click( function(){ $('#newcat').focus(); } );
+
+ catAddBefore = function( s ) {
+ if ( !$('#newcat').val() )
+ return false;
+ s.data += '&' + $( ':checked', '#categorychecklist' ).serialize();
+ return s;
+ };
+
+ catAddAfter = function( r, s ) {
+ var sup, drop = $('#newcat_parent');
+
+ if ( 'undefined' != s.parsed.responses[0] && (sup = s.parsed.responses[0].supplemental.newcat_parent) ) {
+ drop.before(sup);
+ drop.remove();
+ }
+ };
+
+ $('#categorychecklist').wpList({
+ alt: '',
+ response: 'category-ajax-response',
+ addBefore: catAddBefore,
+ addAfter: catAddAfter
+ });
+
+ $('#category-add-toggle').click( function() {
+ $('#category-adder').toggleClass( 'wp-hidden-children' );
+ $('a[href="#categories-all"]', '#category-tabs').click();
+ return false;
+ });
+
+ $('#categorychecklist').children('li.popular-category').add( $('#categorychecklist-pop').children() ).find(':checkbox').live( 'click', function(){
+ var t = $(this), c = t.is(':checked'), id = t.val();
+ $('#in-category-' + id + ', #in-popular-category-' + id).attr( 'checked', c );
+ });
+
+ } // end cats
+
+ // Custom Fields
+ if ( $('#postcustom').length ) {
+ $('#the-list').wpList( { addAfter: function( xml, s ) {
+ $('table#list-table').show();
+ if ( typeof( autosave_update_post_ID ) != 'undefined' ) {
+ autosave_update_post_ID(s.parsed.responses[0].supplemental.postid);
+ }
+ }, addBefore: function( s ) {
+ s.data += '&post_id=' + $('#post_ID').val();
+ return s;
+ }
+ });
+ }
+
+ // submitdiv
+ if ( $('#submitdiv').length ) {
+ stamp = $('#timestamp').html();
+ visibility = $('#post-visibility-display').html();
+
+ function updateVisibility() {
+ var pvSelect = $('#post-visibility-select');
+ if ( $('input:radio:checked', pvSelect).val() != 'public' ) {
+ $('#sticky').attr('checked', false);
+ $('#sticky-span').hide();
+ } else {
+ $('#sticky-span').show();
+ }
+ if ( $('input:radio:checked', pvSelect).val() != 'password' ) {
+ $('#password-span').hide();
+ } else {
+ $('#password-span').show();
+ }
+ }
+
+ function updateText() {
+ var attemptedDate, originalDate, currentDate, publishOn, postStatus = $('#post_status'),
+ optPublish = $('option[value=publish]', postStatus), aa = $('#aa').val(),
+ mm = $('#mm').val(), jj = $('#jj').val(), hh = $('#hh').val(), mn = $('#mn').val();
+
+ attemptedDate = new Date( aa, mm - 1, jj, hh, mn );
+ originalDate = new Date( $('#hidden_aa').val(), $('#hidden_mm').val() -1, $('#hidden_jj').val(), $('#hidden_hh').val(), $('#hidden_mn').val() );
+ currentDate = new Date( $('#cur_aa').val(), $('#cur_mm').val() -1, $('#cur_jj').val(), $('#cur_hh').val(), $('#cur_mn').val() );
+
+ if ( attemptedDate.getFullYear() != aa || (1 + attemptedDate.getMonth()) != mm || attemptedDate.getDate() != jj || attemptedDate.getMinutes() != mn ) {
+ $('.timestamp-wrap', '#timestampdiv').addClass('form-invalid');
+ return false;
+ } else {
+ $('.timestamp-wrap', '#timestampdiv').removeClass('form-invalid');
+ }
+
+ if ( attemptedDate > currentDate && $('#original_post_status').val() != 'future' ) {
+ publishOn = postL10n.publishOnFuture;
+ $('#publish').val( postL10n.schedule );
+ } else if ( attemptedDate <= currentDate && $('#original_post_status').val() != 'publish' ) {
+ publishOn = postL10n.publishOn;
+ $('#publish').val( postL10n.publish );
+ } else {
+ publishOn = postL10n.publishOnPast;
+ if ( page )
+ $('#publish').val( postL10n.updatePage );
+ else
+ $('#publish').val( postL10n.updatePost );
+ }
+ if ( originalDate.toUTCString() == attemptedDate.toUTCString() ) { //hack
+ $('#timestamp').html(stamp);
+ } else {
+ $('#timestamp').html(
+ publishOn + ' ' +
+ $('option[value=' + $('#mm').val() + ']', '#mm').text() + ' ' +
+ jj + ', ' +
+ aa + ' @ ' +
+ hh + ':' +
+ mn + ' '
+ );
+ }
+
+ if ( $('input:radio:checked', '#post-visibility-select').val() == 'private' ) {
+ if ( page )
+ $('#publish').val( postL10n.updatePage );
+ else
+ $('#publish').val( postL10n.updatePost );
+ if ( optPublish.length == 0 ) {
+ postStatus.append('');
+ } else {
+ optPublish.html( postL10n.privatelyPublished );
+ }
+ $('option[value=publish]', postStatus).attr('selected', true);
+ $('.edit-post-status', '#misc-publishing-actions').hide();
+ } else {
+ if ( $('#original_post_status').val() == 'future' || $('#original_post_status').val() == 'draft' ) {
+ if ( optPublish.length ) {
+ optPublish.remove();
+ postStatus.val($('#hidden_post_status').val());
+ }
+ } else {
+ optPublish.html( postL10n.published );
+ }
+ if ( postStatus.is(':hidden') )
+ $('.edit-post-status', '#misc-publishing-actions').show();
+ }
+ $('#post-status-display').html($('option:selected', postStatus).text());
+ if ( $('option:selected', postStatus).val() == 'private' || $('option:selected', postStatus).val() == 'publish' ) {
+ $('#save-post').hide();
+ } else {
+ $('#save-post').show();
+ if ( $('option:selected', postStatus).val() == 'pending' ) {
+ $('#save-post').show().val( postL10n.savePending );
+ } else {
+ $('#save-post').show().val( postL10n.saveDraft );
+ }
+ }
+ return true;
+ }
+
+ $('.edit-visibility', '#visibility').click(function () {
+ if ($('#post-visibility-select').is(":hidden")) {
+ updateVisibility();
+ $('#post-visibility-select').slideDown("normal");
+ $(this).hide();
+ }
+ return false;
+ });
+
+ $('.cancel-post-visibility', '#post-visibility-select').click(function () {
+ $('#post-visibility-select').slideUp("normal");
+ $('#visibility-radio-' + $('#hidden-post-visibility').val()).attr('checked', true);
+ $('#post_password').val($('#hidden_post_password').val());
+ $('#sticky').attr('checked', $('#hidden-post-sticky').attr('checked'));
+ $('#post-visibility-display').html(visibility);
+ $('.edit-visibility', '#visibility').show();
+ updateText();
+ return false;
+ });
+
+ $('.save-post-visibility', '#post-visibility-select').click(function () { // crazyhorse - multiple ok cancels
+ var pvSelect = $('#post-visibility-select');
+
+ pvSelect.slideUp("normal");
+ $('.edit-visibility', '#visibility').show();
+ updateText();
+
+ if ( $('input:radio:checked', pvSelect).val() != 'public' ) {
+ $('#sticky').attr('checked', false);
+ }
+
+ if ( true == $('#sticky').attr('checked') ) {
+ sticky = 'Sticky';
+ } else {
+ sticky = '';
+ }
+
+ $('#post-visibility-display').html( postL10n[$('input:radio:checked', pvSelect).val() + sticky] );
+ return false;
+ });
+
+ $('input:radio', '#post-visibility-select').change(function() {
+ updateVisibility();
+ });
+
+ $('#timestampdiv').siblings('a.edit-timestamp').click(function() {
+ if ($('#timestampdiv').is(":hidden")) {
+ $('#timestampdiv').slideDown("normal");
+ $(this).hide();
+ }
+ return false;
+ });
+
+ $('.cancel-timestamp', '#timestampdiv').click(function() {
+ $('#timestampdiv').slideUp("normal");
+ $('#mm').val($('#hidden_mm').val());
+ $('#jj').val($('#hidden_jj').val());
+ $('#aa').val($('#hidden_aa').val());
+ $('#hh').val($('#hidden_hh').val());
+ $('#mn').val($('#hidden_mn').val());
+ $('#timestampdiv').siblings('a.edit-timestamp').show();
+ updateText();
+ return false;
+ });
+
+ $('.save-timestamp', '#timestampdiv').click(function () { // crazyhorse - multiple ok cancels
+ if ( updateText() ) {
+ $('#timestampdiv').slideUp("normal");
+ $('#timestampdiv').siblings('a.edit-timestamp').show();
+ }
+ return false;
+ });
+
+ $('#post-status-select').siblings('a.edit-post-status').click(function() {
+ if ($('#post-status-select').is(":hidden")) {
+ $('#post-status-select').slideDown("normal");
+ $(this).hide();
+ }
+ return false;
+ });
+
+ $('.save-post-status', '#post-status-select').click(function() {
+ $('#post-status-select').slideUp("normal");
+ $('#post-status-select').siblings('a.edit-post-status').show();
+ updateText();
+ return false;
+ });
+
+ $('.cancel-post-status', '#post-status-select').click(function() {
+ $('#post-status-select').slideUp("normal");
+ $('#post_status').val($('#hidden_post_status').val());
+ $('#post-status-select').siblings('a.edit-post-status').show();
+ updateText();
+ return false;
+ });
+ } // end submitdiv
+
+ // permalink
+ if ( $('#edit-slug-box').length ) {
+ editPermalink = function(post_id) {
+ var i, c = 0, e = $('#editable-post-name'), revert_e = e.html(), real_slug = $('#post_name'), revert_slug = real_slug.html(), b = $('#edit-slug-buttons'), revert_b = b.html(), full = $('#editable-post-name-full').html();
+
+ $('#view-post-btn').hide();
+ b.html(''+postL10n.ok+' '+postL10n.cancel+'');
+ b.children('.save').click(function() {
+ var new_slug = e.children('input').val();
+ $.post(ajaxurl, {
+ action: 'sample-permalink',
+ post_id: post_id,
+ new_slug: new_slug,
+ new_title: $('#title').val(),
+ samplepermalinknonce: $('#samplepermalinknonce').val()
+ }, function(data) {
+ $('#edit-slug-box').html(data);
+ b.html(revert_b);
+ real_slug.attr('value', new_slug);
+ makeSlugeditClickable();
+ $('#view-post-btn').show();
+ });
+ return false;
+ });
+
+ $('.cancel', '#edit-slug-buttons').click(function() {
+ $('#view-post-btn').show();
+ e.html(revert_e);
+ b.html(revert_b);
+ real_slug.attr('value', revert_slug);
+ return false;
+ });
+
+ for ( i = 0; i < full.length; ++i ) {
+ if ( '%' == full.charAt(i) )
+ c++;
+ }
+
+ slug_value = ( c > full.length / 4 ) ? '' : full;
+ e.html('').children('input').keypress(function(e){
+ var key = e.keyCode || 0;
+ // on enter, just save the new slug, don't save the post
+ if ( 13 == key ) {
+ b.children('.save').click();
+ return false;
+ }
+ if ( 27 == key ) {
+ b.children('.cancel').click();
+ return false;
+ }
+ real_slug.attr('value', this.value);
+ }).focus();
+ }
+
+ makeSlugeditClickable = function() {
+ $('#editable-post-name').click(function() {
+ $('#edit-slug-buttons').children('.edit-slug').click();
+ });
+ }
+ makeSlugeditClickable();
+ }
+});
diff --git a/blog/wp-content/plugins/more-fields/readme.txt b/blog/wp-content/plugins/more-fields/readme.txt
index 8c8dc39..9523248 100644
--- a/blog/wp-content/plugins/more-fields/readme.txt
+++ b/blog/wp-content/plugins/more-fields/readme.txt
@@ -2,9 +2,9 @@
Contributors: henrikmelin, kalstrom
Donate link: http://henrikmelin.se/plugins
Tags: custom fields, admin, metadata
-Requires at least: 2.8.2
-Tested up to: 2.8.2
-Stable tag: 1.3
+Requires at least: 2.9.1
+Tested up to: 2.9.1
+Stable tag: 1.4Beta3
Adds any number of extra fields in any number of additional boxes on the Write/Edit page in the Admin.
diff --git a/blog/wp-content/themes/Involver/404.php b/blog/wp-content/themes/Involver/404.php
new file mode 100755
index 0000000..068808b
--- /dev/null
+++ b/blog/wp-content/themes/Involver/404.php
@@ -0,0 +1,18 @@
+
+
+
+
+ Error 404 - Not Found
+
+
+
+
+
+
\ No newline at end of file
diff --git a/blog/wp-content/themes/Involver/archive.php b/blog/wp-content/themes/Involver/archive.php
new file mode 100755
index 0000000..bde21d3
--- /dev/null
+++ b/blog/wp-content/themes/Involver/archive.php
@@ -0,0 +1,133 @@
+
+
+
+
+
+
+
+
+ Archive for the ‘’ Category
+
+ Posts Tagged ‘’
+
+ Archive for
+
+ Archive for
+
+ Archive for
+
+ Author Archive
+
+
+
+ get_queried_object();
+ $urlHome = get_bloginfo('template_directory');
+ echo get_avatar("$curauth->user_email", $size = '70', $default = $urlHome . '/images/default_avatar_author.gif' );
+ ?>
+
+
+
+
+
+
+
+ Blog Archives
+
+
+
+
+
+
+ >
+
+
+
+
+
+
+
+
+ post_author);
+ $urlHome = get_bloginfo('template_directory');
+ echo get_avatar("$curauth->user_email", $size = '30', $default = $urlHome . '/images/default_avatar_author.gif' );
+ ?>
+
+
+ Published by:
+
+
+
+
+
+
+
+ Comments so far
+ Leave a reply
+
+
+
+ Published in:
+
+
+
+ ID, 'post-img', true);
+ if ($pic) {
+ ?>
+
+
+ ">
+
+
+
+
+
+
+
+
+
+
+ Sorry, but there aren't any posts in the %s category yet.", single_cat_title('',false));
+ } else if ( is_date() ) { // If this is a date archive
+ echo("Sorry, but there aren't any posts with this date.
");
+ } else if ( is_author() ) { // If this is a category archive
+ $userdata = get_userdatabylogin(get_query_var('author_name'));
+ printf("Sorry, but there aren't any posts by %s yet.
", $userdata->display_name);
+ } else {
+ echo("No posts found.
");
+ }
+ get_search_form();
+
+ endif; ?>
+
+
+
+
+
+
diff --git a/blog/wp-content/themes/Involver/archives.php b/blog/wp-content/themes/Involver/archives.php
new file mode 100755
index 0000000..982db80
--- /dev/null
+++ b/blog/wp-content/themes/Involver/archives.php
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+Archives by Month:
+
+
+
+
+Archives by Subject:
+
+
+
+
+
+
+
diff --git a/blog/wp-content/themes/Involver/comments-popup.php b/blog/wp-content/themes/Involver/comments-popup.php
new file mode 100755
index 0000000..47a2328
--- /dev/null
+++ b/blog/wp-content/themes/Involver/comments-popup.php
@@ -0,0 +1,124 @@
+
+
+
+ - Comments on
+
+
+
+
+
+
+
+
+
+
+Comments
+
+RSS feed for comments on this post.
+
+
+The URL to TrackBack this entry is:
+
+
+
+
+
+No comments yet.
+
+
+
+Leave a comment
+Line and paragraph breaks automatic, e-mail address never displayed, HTML allowed:
+
+
+
+Sorry, the comment form is closed at this time.
+
+
+
+
+
+Sorry, no posts matched your criteria.
+
+
+
+ Powered by WordPress
+
+
+
+
diff --git a/blog/wp-content/themes/Involver/comments.php b/blog/wp-content/themes/Involver/comments.php
new file mode 100755
index 0000000..c893670
--- /dev/null
+++ b/blog/wp-content/themes/Involver/comments.php
@@ -0,0 +1,100 @@
+
+
+
+
+
+
+
+ to “”
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/blog/wp-content/themes/Involver/footer.php b/blog/wp-content/themes/Involver/footer.php
new file mode 100755
index 0000000..b8b747a
--- /dev/null
+++ b/blog/wp-content/themes/Involver/footer.php
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
by — @
+