<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre, #msg p { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[11914] trunk/wp-admin/import/btt.php: Retire BunnyTags importer</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/11914">11914</a></dd>
<dt>Author</dt> <dd>ryan</dd>
<dt>Date</dt> <dd>2009-09-11 17:53:14 +0000 (Fri, 11 Sep 2009)</dd>
</dl>

<h3>Log Message</h3>
<pre>Retire BunnyTags importer</pre>

<h3>Removed Paths</h3>
<ul>
<li><a href="#trunkwpadminimportbttphp">trunk/wp-admin/import/btt.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminimportbttphp"></a>
<div class="delfile"><h4>Deleted: trunk/wp-admin/import/btt.php (11913 => 11914)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/import/btt.php        2009-09-11 13:43:29 UTC (rev 11913)
+++ trunk/wp-admin/import/btt.php        2009-09-11 17:53:14 UTC (rev 11914)
</span><span class="lines">@@ -1,130 +0,0 @@
</span><del>-&lt;?php
-/**
- * BunnyTags Plugin Tag Importer
- *
- * @package WordPress
- * @subpackage Importer
- */
-
-/**
- * BunnyTags Plugin tag converter
- *
- * This will process the BunnyTags plugin tags and convert them to the WordPress
- * 2.3 taxonomy.
- *
- * @since unknown
- */
-class BunnyTags_Import {
-
-        function header() {
-                echo '&lt;div class=&quot;wrap&quot;&gt;';
-                screen_icon();
-                echo '&lt;h2&gt;'.__('Import Bunny&amp;#8217;s Technorati Tags').'&lt;/h2&gt;';
-                echo '&lt;p&gt;'.__('Steps may take a few minutes depending on the size of your database. Please be patient.').'&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;';
-        }
-
-        function footer() {
-                echo '&lt;/div&gt;';
-        }
-
-        function greet() {
-                echo '&lt;div class=&quot;narrow&quot;&gt;';
-                echo '&lt;p&gt;'.__('Howdy! This imports tags from Bunny&amp;#8217;s Technorati Tags into WordPress tags.').'&lt;/p&gt;';
-                echo '&lt;p&gt;'.__('This is suitable for Bunny&amp;#8217;s Technorati Tags version 0.6.').'&lt;/p&gt;';
-                echo '&lt;p&gt;&lt;strong&gt;'.__('All existing Bunny&amp;#8217;s Technorati Tags will be removed after import.').'&lt;/strong&gt;&lt;/p&gt;';
-                echo '&lt;p&gt;&lt;strong&gt;'.__('Don&amp;#8217;t be stupid - backup your database before proceeding!').'&lt;/strong&gt;&lt;/p&gt;';
-                echo '&lt;form action=&quot;admin.php?import=btt&amp;amp;step=1&quot; method=&quot;post&quot;&gt;';
-                wp_nonce_field('import-btt');
-                echo '&lt;p class=&quot;submit&quot;&gt;&lt;input type=&quot;submit&quot; name=&quot;submit&quot; class=&quot;button&quot; value=&quot;'.esc_attr__('Import Tags').'&quot; /&gt;&lt;/p&gt;';
-                echo '&lt;/form&gt;';
-                echo '&lt;/div&gt;';
-        }
-
-        function dispatch() {
-                if ( empty($_GET['step']) )
-                        $step = 0;
-                else
-                        $step = absint($_GET['step']);
-
-                // load the header
-                $this-&gt;header();
-
-                switch ( $step ) {
-                        case 0 :
-                                $this-&gt;greet();
-                                break;
-                        case 1 :
-                                check_admin_referer('import-btt');
-                                $this-&gt;check_post_keyword( true );
-                                break;
-                        case 2 :
-                                check_admin_referer('import-btt');
-                                $this-&gt;check_post_keyword( false );
-                                break;
-                        case 3:
-                                $this-&gt;done();
-                                break;
-                }
-
-                // load the footer
-                $this-&gt;footer();
-        }
-
-        function check_post_keyword($precheck = true) {
-                global $wpdb;
-
-                echo '&lt;div class=&quot;narrow&quot;&gt;';
-                echo '&lt;p&gt;&lt;h3&gt;'.__('Reading Bunny&amp;#8217;s Technorati Tags&amp;#8230;').'&lt;/h3&gt;&lt;/p&gt;';
-
-                // import Bunny's Keywords tags
-                $metakeys = $wpdb-&gt;get_results(&quot;SELECT post_id, meta_id, meta_key, meta_value FROM $wpdb-&gt;postmeta WHERE $wpdb-&gt;postmeta.meta_key = 'tags'&quot;);
-                if ( !is_array($metakeys)) {
-                        echo '&lt;p&gt;' . __('No Tags Found!') . '&lt;/p&gt;';
-                        return false;
-                } else {
-                        $count = count($metakeys);
-                        echo '&lt;p&gt;' . sprintf( _n('Done! &lt;strong&gt;%s&lt;/strong&gt; post with tags were read.', 'Done! &lt;strong&gt;%s&lt;/strong&gt; posts with tags were read.', $count), $count ) . '&lt;br /&gt;&lt;/p&gt;';
-                        echo '&lt;ul&gt;';
-                        foreach ( $metakeys as $post_meta ) {
-                                if ( $post_meta-&gt;meta_value != '' ) {
-                                        $post_keys = explode(' ', $post_meta-&gt;meta_value);
-                                        foreach ( $post_keys as $keyword ) {
-                                                $keyword = addslashes(trim(str_replace('+',' ',$keyword)));
-                                                if ( '' != $keyword ) {
-                                                        echo '&lt;li&gt;' . $post_meta-&gt;post_id . '&amp;nbsp;-&amp;nbsp;' . $keyword . '&lt;/li&gt;';
-                                                        if ( !$precheck )
-                                                                wp_add_post_tags($post_meta-&gt;post_id, $keyword);
-                                                }
-                                        }
-                                }
-                                if ( !$precheck )
-                                        delete_post_meta($post_meta-&gt;post_id, 'tags');
-                        }
-                        echo '&lt;/ul&gt;';
-                }
-
-                echo '&lt;form action=&quot;admin.php?import=btt&amp;amp;step='.($precheck? 2:3).'&quot; method=&quot;post&quot;&gt;';
-                wp_nonce_field('import-btt');
-                echo '&lt;p class=&quot;submit&quot;&gt;&lt;input type=&quot;submit&quot; name=&quot;submit&quot; class=&quot;button&quot; value=&quot;'.esc_attr__('Next').'&quot; /&gt;&lt;/p&gt;';
-                echo '&lt;/form&gt;';
-                echo '&lt;/div&gt;';
-        }
-
-        function done() {
-                echo '&lt;div class=&quot;narrow&quot;&gt;';
-                echo '&lt;p&gt;&lt;h3&gt;'.__('Import Complete!').'&lt;/h3&gt;&lt;/p&gt;';
-                echo '&lt;/div&gt;';
-        }
-
-        function BunnyTags_Import() {
-        }
-
-}
-
-// create the import object
-$btt_import = new BunnyTags_Import();
-
-// add it to the import page!
-register_importer('btt', 'Bunny&amp;#8217;s Technorati Tags', __('Import Bunny&amp;#8217;s Technorati Tags into WordPress tags.'), array($btt_import, 'dispatch'));
-
-?&gt;
</del></span></pre>
</div>
</div>

</body>
</html>