<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>DesignTrek &#187; Internet</title>
	<atom:link href="http://www.designtrek.com/archives/category/internet/feed" rel="self" type="application/rss+xml" />
	<link>http://www.designtrek.com</link>
	<description>Design, Video Editing and Technology Blog</description>
	<lastBuildDate>Fri, 26 Jun 2009 04:15:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Cutenews to WordPress Conversion</title>
		<link>http://www.designtrek.com/archives/cutenews-to-wordpress-conversion</link>
		<comments>http://www.designtrek.com/archives/cutenews-to-wordpress-conversion#comments</comments>
		<pubDate>Fri, 10 Apr 2009 20:07:04 +0000</pubDate>
		<dc:creator>Paul Martin</dc:creator>
				<category><![CDATA[Cutenews]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Conversion]]></category>
		<category><![CDATA[Convert]]></category>
		<category><![CDATA[Converter]]></category>
		<category><![CDATA[Import]]></category>
		<category><![CDATA[Migrate]]></category>
		<category><![CDATA[Migration]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Tool]]></category>
		<category><![CDATA[Transfer]]></category>

		<guid isPermaLink="false">http://www.designtrek.com/?p=102</guid>
		<description><![CDATA[In my search to convert the flat file format of Cutenews over to the database driven WordPress, I came across a plugin that someone was creating.  This news transfer tool is called Other-Ext-WP. I was pretty excited to find it, as I want to move two of my websites off of Cutenews and into the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.designtrek.com/wp-content/uploads/2008/09/cutenews-logo.gif" rel="lightbox[102]"><img class="size-full wp-image-112 alignright" title="cutenews-logo" src="http://www.designtrek.com/wp-content/uploads/2008/09/cutenews-logo.gif" alt="cutenews-logo" width="300" height="56" /></a></p>
<p>In my search to convert the flat file format of Cutenews over to the database driven WordPress, I came across a plugin that someone was creating.  This news transfer tool is called <a title="Cutenews to WordPress Plugin" href="http://wordpress.org/extend/plugins/other-ext-wp/" target="_blank"><strong>Other-Ext-WP</strong></a>.</p>
<p>I was pretty excited to find it, as I want to move two of my websites off of Cutenews and into the more secure database driven format.  It worked okay when I tried it out to see what it would do.  It did pull in the stories as well as some of the categories and the dates.</p>
<p><a href="http://www.designtrek.com/wp-content/uploads/2008/09/wordpress-logo.jpg" rel="lightbox[102]"><img class="alignright size-full wp-image-118" title="wordpress-logo" src="http://www.designtrek.com/wp-content/uploads/2008/09/wordpress-logo.jpg" alt="wordpress-logo" width="312" height="65" /></a>However, there are a number of issues with the importing, however, that have been reported by others as well.</p>
<p><em><strong>1)</strong></em> The <strong>Categories</strong> don&#8217;t transfer correctly.</p>
<p><em><strong>2)</strong></em> The <strong>Full Story</strong> doesn&#8217;t transfer, just the short story field.</p>
<p><em><strong>3)</strong></em> You can only attribute the stories to <strong>one user</strong>.</p>
<p><em><strong>4)</strong></em> It strips out all <strong>mark-up</strong>.  In both stories and comments.</p>
<p>I&#8217;m not too worried about moving the uploaded pictures over, as that can be fixed later.  But I would love to have a working script to run that will properly convert things.</p>
<p>The latest WordPress version that the creator says that it works in is 2.3.1, so I tried that to see if it worked, and that&#8217;s where the issues came in.  The person developing it appears to have given up on the plugin, so I&#8217;m asking for anyone that has some spare time to help out if you can.</p>
<p><span id="more-102"></span><br />
<code>&amp;lt;?php<br />
/*<br />
Plugin Name: Other-Ext-WP<br />
Plugin URI: http://www.nexterous.com/scripts/otherextwp.php<br />
Description: This useful plugin allows Cutenews users to transfer their Cutenews installation into WordPress, including categories, posts, and comments.<br />
Version: 1.0 Beta 2<br />
Author: Daniel<br />
Author URI: http://www.nexterous.com<br />
*/</code></p>
<p>/*  Copyright 2007  Daniel  (contact: use form at www.nexterous.com)</p>
<p>This program is free software; you can redistribute it and/or modify<br />
it under the terms of the GNU General Public License as published by<br />
the Free Software Foundation; either version 2 of the License, or<br />
(at your option) any later version.</p>
<p>This program is distributed in the hope that it will be useful,<br />
but WITHOUT ANY WARRANTY; without even the implied warranty of<br />
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the<br />
GNU General Public License for more details.</p>
<p>You should have received a copy of the GNU General Public License<br />
along with this program; if not, write to the Free Software<br />
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA<br />
*/</p>
<p>// Hook for adding admin menus<br />
add_action(&#8216;admin_menu&#8217;, &#8216;display&#8217;);</p>
<p>// Add the page first<br />
function display(){<br />
add_submenu_page(&#8216;plugins.php&#8217;, &#8216;Other-Ext-WP&#8217;, &#8216;Other-Ext-WP&#8217;, 10, &#8216;extwp.php&#8217;, &#8216;display_options&#8217;);<br />
}</p>
<p>// Function to control what is displayed or activated<br />
function display_options(){<br />
if(isset($_POST['submit'])){</p>
<p>// Start the functions of the transfer<br />
// Begin to set all the variables: $option, $path<br />
if($_POST['add_comments'] == &#8216;yes&#8217;){<br />
$option = TRUE;<br />
} else {<br />
$option = FALSE;<br />
}<br />
if(empty($_POST['path']) OR ($_POST['path'] == &#8216;enter a different path&#8217;)){<br />
$path = $_POST['pathorigin'];<br />
} else {<br />
$path = $_POST['path'];<br />
}</p>
<p>// Check the path &amp; report error if not correct<br />
$dp = opendir($path);<br />
while($file = readdir($dp)){<br />
$filearray[] = $file;<br />
}<br />
closedir($dp);<br />
$checklist = array(<br />
1 =&gt; &#8216;data&#8217;,<br />
2 =&gt; &#8216;inc&#8217;,<br />
3 =&gt; &#8216;rte&#8217;,<br />
4 =&gt; &#8216;skins&#8217;);<br />
$checkarray = array_intersect($filearray, $checklist);<br />
if(empty($checkarray)){<br />
?&gt;<br />
&lt;div class=&#8221;wrap&#8221;&gt;<br />
&lt;h2&gt;Error&lt;/h2&gt;<br />
&lt;p&gt;Are you sure you have the correct Cutenews path? Please go &lt;a href=&#8221;plugins.php?page=extwp.php&#8221;&gt;back&lt;/a&gt; and try a different path.&lt;/p&gt;<br />
&lt;/div&gt;<br />
&lt;?php<br />
exit;<br />
}<br />
$path = $path . &#8216;/data/&#8217;;</p>
<p>// Clear all the categories before beginning<br />
$result = mysql_query(&#8220;TRUNCATE TABLE `wp_terms`&#8221;);<br />
$result = mysql_query(&#8220;TRUNCATE TABLE `wp_term_taxonomy`&#8221;);</p>
<p>// Define all functions necessary<br />
// Read the file and retrieve the each line into a separate row in an array<br />
function read_cn($file){<br />
$fp = fopen($file, &#8216;r&#8217;);<br />
$read_array = file($file);<br />
fclose($fp);<br />
return $read_array;<br />
}</p>
<p>// Take each row and explode it into another array and return back to a master array of all values<br />
function return_entry($read_array){<br />
foreach($read_array as $key =&gt; $data){<br />
if($data == &#8221;){<br />
continue;<br />
}<br />
$array[$key] = explode(&#8216;|&#8217;, strip_tags($data));<br />
}<br />
return $array;<br />
}</p>
<p>// Get the information from each row and send it to the database using the post_wp() function<br />
function send_post($array){<br />
define(&#8216;CONSTANT&#8217;, 18061);<br />
foreach($array as $key =&gt; $data){<br />
list($date, , $title, $post, , , $categories) = $data;<br />
$title = mysql_real_escape_string($title);<br />
$post = mysql_real_escape_string($post);</p>
<p>// Convert Date<br />
$date = $date + CONSTANT;<br />
$date = date(&#8216;Y-m-d H:i:s&#8217;, $date);</p>
<p>// Separate Categories<br />
$categories = explode(&#8216;,&#8217;, $categories);</p>
<p>// Set-Up Post<br />
$user = $_POST['user'];<br />
$post = array(<br />
&#8216;post_author&#8217;        =&gt; $user,<br />
&#8216;post_date&#8217;            =&gt; $date,<br />
&#8216;post_date_gmt&#8217;        =&gt; $date,<br />
&#8216;post_title&#8217;        =&gt; $title,<br />
&#8216;post_content&#8217;        =&gt; $post,<br />
&#8216;post_status&#8217;        =&gt; &#8216;publish&#8217;,<br />
&#8216;post_type&#8217;            =&gt; &#8216;post&#8217;,<br />
&#8216;post_category&#8217;        =&gt; $categories);</p>
<p>// Send the post<br />
wp_insert_post($post);<br />
}<br />
}</p>
<p>// Add category to the database<br />
function add_category($category){<br />
$cat_edited = mysql_real_escape_string(trim(strtolower($category)));<br />
GLOBAL $table_prefix;<br />
$terms = $table_prefix . &#8216;terms&#8217;;<br />
$term_tax = $table_prefix . &#8216;term_taxonomy&#8217;;<br />
$query = &#8220;INSERT INTO `$terms` (`name`, `slug`) VALUES (&#8216;$cat_edited&#8217;, &#8216;$cat_edited&#8217;)&#8221;;<br />
$result = mysql_query($query);<br />
$id = mysql_insert_id();<br />
$queryrel = &#8220;INSERT INTO `$term_tax` (`term_id`, `taxonomy`) VALUES (&#8216;$id&#8217;, &#8216;category&#8217;)&#8221;;<br />
$resultrel = mysql_query($queryrel);<br />
}</p>
<p>// Set all the new categories<br />
$url = $path . &#8216;category.db.php&#8217;;<br />
$categories = read_cn($url);<br />
$categories = return_entry($categories);<br />
foreach($categories as $key =&gt; $category){<br />
$category = $category[1];<br />
if($category == &#8221;){<br />
continue;<br />
}<br />
add_category($category);<br />
}</p>
<p>// Set all the posts<br />
$url = $path . &#8216;archives/&#8217;;<br />
$dp = opendir($url);<br />
while($dirarray = readdir($dp)){<br />
if($dirarray == &#8216;.&#8217; OR $dirarray == &#8216;..&#8217;){<br />
continue;<br />
} else if(eregi(&#8216;(comments){1}|(index){1}&#8217;, $dirarray)){<br />
continue;<br />
} else {<br />
$url2 = $url . $dirarray;<br />
$array = read_cn($url2);<br />
$array = return_entry($array);<br />
$result = send_post($array);<br />
}<br />
}<br />
closedir($dp);<br />
$url = $path . &#8216;news.txt&#8217;;<br />
$array = read_cn($url);<br />
$array = return_entry($array);<br />
$result = send_post($array);</p>
<p>if($option){ // Check for comment option</p>
<p>// New Feature as of v.1.0 Beta 2: Transferring comments<br />
// New functions must be defined due to the nature of the comment set-up on Cutenews<br />
// These functions are only defined and used if you select &#8220;yes&#8221; on the comments option</p>
<p>// Get all the comments and format them correctly<br />
function cn_getcomments($file){<br />
$array = array();<br />
$rawarray = file($file);<br />
foreach($rawarray as $key =&gt; $data){<br />
$blogtime = substr($data, 0, 13);<br />
$data = substr(strip_tags($data), 13);<br />
$comments = explode(&#8216;||&#8217;, $data);<br />
foreach($comments as $key =&gt; $comment){<br />
if(md5($comments[$key]) == &#8217;81051bcc2cf1bedf378224b0a93e2877&#8242;){<br />
// This checks for a blank comment; cannot use empty() because of the way comment is formatted<br />
continue;<br />
}<br />
$array[] = $comment . &#8216;|&#8217; . $blogtime;<br />
}<br />
}<br />
return $array;<br />
}<br />
function cn_addcomments($array){<br />
foreach($array as $key =&gt; $comment){<br />
$newarray = explode(&#8216;|&#8217;, $comment);<br />
list($date, $author, $email, $ip, $comment, $blogtime) = $newarray;<br />
if(empty($comment) OR $comment == &#8217;81051bcc2cf1bedf378224b0a93e2877&#8242;){<br />
// This checks for a blank comment; cannot use empty() because of the way comment is formatted<br />
continue;<br />
}<br />
$author = mysql_real_escape_string($author);<br />
$email = mysql_real_escape_string($email);<br />
$comment = mysql_real_escape_string($comment);</p>
<p>// Try quick spam protection &#8211; sets most of them to need approval<br />
if(eregi(&#8216;(http://)|www|(?p=)|(?pid=)&#8217;, $comment)){<br />
$status = 0;<br />
} else {<br />
$status = 1;<br />
}</p>
<p>// Convert Date<br />
define(&#8216;CONSTANT&#8217;, 18061);<br />
$date = $date + CONSTANT;<br />
$date = date(&#8216;Y-m-d H:i:s&#8217;, $date);<br />
$blogtime = $blogtime + CONSTANT;<br />
$blogtime = date(&#8216;Y-m-d H:i:s&#8217;, $blogtime);</p>
<p>// Change Email<br />
if($email == &#8216;none&#8217;){<br />
$email = &#8221;;<br />
}</p>
<p>// Check Entry<br />
GLOBAL $table_prefix;<br />
$wp_posts = $table_prefix . &#8216;posts&#8217;;<br />
$result = mysql_query(&#8220;SELECT `ID` FROM `$wp_posts` WHERE (`post_date` = &#8216;$blogtime&#8217;)&#8221;);<br />
while($array = mysql_fetch_array($result)){<br />
$postid = $array['ID'];<br />
}</p>
<p>// Set-Up Comment<br />
$comment = array(<br />
&#8216;comment_post_ID&#8217; =&gt;        $postid,<br />
&#8216;comment_author&#8217; =&gt;         $author,<br />
&#8216;comment_author_email&#8217; =&gt;     $email,<br />
&#8216;comment_author_url&#8217; =&gt;     &#8221;,<br />
&#8216;comment_author_IP&#8217; =&gt;        $ip,<br />
&#8216;comment_date&#8217; =&gt;            $date,<br />
&#8216;comment_date_gmt&#8217; =&gt;        $date,<br />
&#8216;comment_content&#8217; =&gt;        $comment,<br />
&#8216;comment_approved&#8217; =&gt;        $status,<br />
&#8216;comment_agent&#8217; =&gt;             &#8221;,<br />
&#8216;comment_type&#8217; =&gt;            &#8221;);</p>
<p>wp_insert_comment($comment);<br />
}<br />
}<br />
$url = $path . &#8216;archives/&#8217;;<br />
$dp = opendir($url);<br />
while($dirarray = readdir($dp)){<br />
if($dirarray == &#8216;.&#8217; OR $dirarray == &#8216;..&#8217;){<br />
continue;<br />
} else if(eregi(&#8216;(news){1}|(index){1}&#8217;, $dirarray)){<br />
continue;<br />
} else {<br />
$url2 = $url . $dirarray;<br />
$array = cn_getcomments($url2);<br />
$array = cn_addcomments($array);<br />
}<br />
}<br />
closedir($dp);<br />
$url = $path . &#8216;comments.txt&#8217;;<br />
$array = cn_getcomments($url);<br />
$array = cn_addcomments($array);<br />
}</p>
<p>?&gt;<br />
&lt;div class=&#8221;wrap&#8221;&gt;<br />
&lt;h2&gt;Congradulations!&lt;/h2&gt;<br />
&lt;p&gt;You have now finished converting your Cutenews installtation into WordPress. Don&#8217;t forget to delete this plugin now since it has no security besides basic plugins. For more scripts and goodies, check out &lt;a href=&#8221;http://www.nexterous.com&#8221;&gt;Nexterous.com&lt;/a&gt;.&lt;/p&gt;<br />
&lt;/div&gt;<br />
&lt;?<br />
// Start the functions of the application<br />
} else {<br />
?&gt;<br />
&lt;div class=&#8221;wrap&#8221;&gt;<br />
&lt;h2&gt;Other-Ext-WP&lt;/h2&gt;<br />
&lt;p&gt;Other-Ext-WP is a WordPress plugin that allows the user to transfer there Cutenews installation into WordPress. It supports categories, blog entries, and comments. To set up the transfer, check the options below. Please see the &lt;a href=&#8221;http://www.nexterous.com/scripts/otherextwp.php&#8221;&gt;instructions and help&lt;/a&gt; before beginning. &lt;/p&gt;<br />
&lt;h2&gt;Notes&lt;/h2&gt;<br />
&lt;p&gt;This plugin takes a while depending on the number of posts and comments (if you select it) you have on your Cutenews installation. This plugin is recommended for use on a fresh installation of WordPress. It does wipe all the categories when it begins the transfer. Also, this script automatically files any comments with a link into moderation because most spam originates from that. &lt;/p&gt;<br />
&lt;h2&gt;Begin&#8230;&lt;/h2&gt;<br />
&lt;p&gt;Select the options that you would like to apply to the transfer. Please also make sure that all the configurations are correct. &lt;br /&gt;<br />
&lt;em&gt;Note&lt;/em&gt;: This plugin automatically detects the path if it can find it. If not, it will present an input box. After you click &#8220;transfer&#8221;, it will check the path for certain directories to make sure you have the correct path.&lt;br /&gt;<br />
&lt;em&gt;Warning&lt;/em&gt;: If you click the transfer button, the process will begin. &lt;/p&gt;<br />
&lt;br /&gt;&lt;br /&gt;<br />
&lt;form action=&#8221;plugins.php?page=extwp.php&#8221; method=&#8221;post&#8221; id=&#8221;searchform&#8221;&gt;<br />
&lt;fieldset&gt;<br />
&lt;legend&gt;Add Comments?&lt;/legend&gt;<br />
&lt;select name=&#8221;add_comments&#8221;&gt;<br />
&lt;option selected=&#8221;selected&#8221; value=&#8217;yes&#8217;&gt;Yes &#8211; Add All Comments&lt;/option&gt;<br />
&lt;option value=&#8217;no&#8217;&gt;No &#8211; Do Not Add Comments&lt;/option&gt;<br />
&lt;/select&gt;<br />
&lt;/fieldset&gt;<br />
&lt;fieldset&gt;<br />
&lt;legend&gt;Select User for all Posts&lt;/legend&gt;<br />
&lt;select name=&#8221;user&#8221;&gt;<br />
&lt;?php<br />
GLOBAL $table_prefix;<br />
$table = $table_prefix . &#8216;usermeta&#8217;;<br />
$result = mysql_query(&#8220;SELECT `user_id`, `meta_value` FROM $table WHERE (`meta_key` = &#8216;nickname&#8217;)&#8221;);<br />
while($array = mysql_fetch_array($result)){<br />
$id = $array['user_id'];<br />
$nick = $array['meta_value'];<br />
$combo = $id . &#8216; &#8211; &#8216; . $nick;<br />
print &#8220;&lt;option value=&#8217;$id&#8217;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $combo &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/option&gt;&#8221;;<br />
}<br />
?&gt;<br />
&lt;/select&gt;<br />
&lt;/fieldset&gt;<br />
&lt;fieldset&gt;<br />
&lt;legend&gt;Path to Cutenews&lt;/legend&gt;<br />
&lt;?php<br />
$path = &#8216;../../&#8217;;<br />
$dp = opendir($path);<br />
while($file = readdir($dp)){<br />
if(eregi(&#8216;^(cutenews)$&#8217;, $file)){<br />
$path = $path . $file;<br />
echo $path . &#8216;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; OR &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&#8217;;<br />
print &#8216;&lt;input type=&#8221;text&#8221; name=&#8221;path&#8221; value=&#8221;enter a different path&#8221; /&gt;&#8217;;<br />
print &#8220;&lt;input type=&#8217;hidden&#8217; name=&#8217;pathorigin&#8217; value=&#8217;$path&#8217; /&gt;&#8221;;<br />
$lock = TRUE;<br />
break;<br />
}<br />
}<br />
if($lock != TRUE){<br />
print &#8216;&lt;input type=&#8221;text&#8221; name=&#8221;path&#8221; value=&#8221;enter the path to cutenews (where ../ is one directory up)&#8221; style=&#8221;width: 400px;&#8221; /&gt;&#8217;;<br />
}<br />
?&gt;<br />
&lt;/fieldset&gt;<br />
&lt;fieldset&gt;<br />
&lt;legend&gt;Click to start!&lt;/legend&gt;<br />
&lt;input type=&#8221;submit&#8221; name=&#8221;submit&#8221; id=&#8221;submit&#8221; value=&#8221;Start Transfer&#8221; class=&#8221;button&#8221; /&gt;<br />
&lt;/fieldset&gt;<br />
&lt;/form&gt;<br />
&lt;br style=&#8221;clear:both;&#8221; /&gt;<br />
&lt;/div&gt;<br />
&lt;?php<br />
}<br />
}<br />
?&gt;<br />
I have also found the blog of a man named Mark that was able to pull all the cutenews data with MySQL queries.  I&#8217;m not sure how it works just yet, but you can find it here: <a title="Migrating Cutenews to WordPress" href="http://mark.ossdl.de/2008/09/migrating-serendipity-and-cutenews-blogs-to-wordpress/" target="_blank">Migrating from Cutenews to WordPress</a></p>
<p><strong>Resources:</strong></p>
<p>Plugin<strong> </strong><a title="Other-Ext-WP" href="http://wordpress.org/extend/plugins/other-ext-wp/" target="_blank">Other-Ext-WP Plugin</a><br />
WordPress 2.3.1: <a href="http://wordpress.org/wordpress-2.3.1.zip" target="_blank">zip</a> | <a href="http://wordpress.org/wordpress-2.3.1.tar.gz" target="_blank">tar.gz</a> | <a href="http://wordpress.org/wordpress-2.3.1.md5" target="_blank">md5</a><br />
Cutenews 1.4.6: <a title="Cutenews" href="http://cutephp.com/" target="_blank">Cutephp </a></p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.designtrek.com%2Farchives%2Fcutenews-to-wordpress-conversion&amp;title=Cutenews%20to%20WordPress%20Conversion" title="StumbleUpon"><img src="http://www.designtrek.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.designfloat.com/submit.php?url=http%3A%2F%2Fwww.designtrek.com%2Farchives%2Fcutenews-to-wordpress-conversion&amp;title=Cutenews%20to%20WordPress%20Conversion" title="Design Float"><img src="http://www.designtrek.com/wp-content/plugins/sociable/images/designfloat.png" title="Design Float" alt="Design Float" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.designtrek.com%2Farchives%2Fcutenews-to-wordpress-conversion&amp;title=Cutenews%20to%20WordPress%20Conversion&amp;bodytext=%0D%0A%0D%0AIn%20my%20search%20to%20convert%20the%20flat%20file%20format%20of%20Cutenews%20over%20to%20the%20database%20driven%20Wordpress%2C%20I%20came%20across%20a%20plugin%20that%20someone%20was%20creating.%C2%A0%20This%20news%20transfer%20tool%20is%20called%20Other-Ext-WP.%0D%0A%0D%0AI%20was%20pretty%20excited%20to%20find%20it%2C%20as%20I%20want%20to%20m" title="Digg"><img src="http://www.designtrek.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.designtrek.com%2Farchives%2Fcutenews-to-wordpress-conversion&amp;title=Cutenews%20to%20WordPress%20Conversion&amp;notes=%0D%0A%0D%0AIn%20my%20search%20to%20convert%20the%20flat%20file%20format%20of%20Cutenews%20over%20to%20the%20database%20driven%20Wordpress%2C%20I%20came%20across%20a%20plugin%20that%20someone%20was%20creating.%C2%A0%20This%20news%20transfer%20tool%20is%20called%20Other-Ext-WP.%0D%0A%0D%0AI%20was%20pretty%20excited%20to%20find%20it%2C%20as%20I%20want%20to%20m" title="del.icio.us"><img src="http://www.designtrek.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://www.designtrek.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Cutenews%20to%20WordPress%20Conversion&amp;body=http%3A%2F%2Fwww.designtrek.com%2Farchives%2Fcutenews-to-wordpress-conversion" title="email"><img src="http://www.designtrek.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.designtrek.com%2Farchives%2Fcutenews-to-wordpress-conversion&amp;t=Cutenews%20to%20WordPress%20Conversion" title="Facebook"><img src="http://www.designtrek.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.designtrek.com%2Farchives%2Fcutenews-to-wordpress-conversion" title="Technorati"><img src="http://www.designtrek.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Votetime"><img src="http://www.designtrek.com/wp-content/plugins/sociable/images/" title="Votetime" alt="Votetime" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.designtrek.com/archives/cutenews-to-wordpress-conversion/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>New Twitter Design Layout</title>
		<link>http://www.designtrek.com/archives/new-twitter-design-layout</link>
		<comments>http://www.designtrek.com/archives/new-twitter-design-layout#comments</comments>
		<pubDate>Sat, 04 Apr 2009 20:00:13 +0000</pubDate>
		<dc:creator>Paul Martin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Layout]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.designtrek.com/?p=94</guid>
		<description><![CDATA[A few days ago, I logged in to one of my accounts on Twitter, and noticed something strange.  The design had changed.  It&#8217;s really quite an interesting change, as it lends itself to the social more than the previous design.  I really like it, even though it comes at the expense of the following images [...]]]></description>
			<content:encoded><![CDATA[<p>A few days ago, I logged in to one of my accounts on Twitter, and noticed something strange.  The design had changed.  It&#8217;s really quite an interesting change, as it lends itself to the social more than the previous design.  I really like it, even though it comes at the expense of the following images on the right hand side.  It&#8217;s a much more streamlined design with an easier flow.</p>
<p>Also gone are the Device Updates heading that has the SMS set up linked underneath, as well as the RSS feed link.  Those may yet be added to the new layout, but the SMS link was pretty redundant and could be served in the settings area.  The RSS feed link is one that I would like to see return, but I don&#8217;t know how functional it really was, or if its&#8217; removal was due to a lack of use.</p>
<p>I also love the addition of Twitter Search to the layout, as well as the Trending Topics links.  Both are great time savers.</p>




Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.designtrek.com%2Farchives%2Fnew-twitter-design-layout&amp;title=New%20Twitter%20Design%20Layout" title="StumbleUpon"><img src="http://www.designtrek.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.designfloat.com/submit.php?url=http%3A%2F%2Fwww.designtrek.com%2Farchives%2Fnew-twitter-design-layout&amp;title=New%20Twitter%20Design%20Layout" title="Design Float"><img src="http://www.designtrek.com/wp-content/plugins/sociable/images/designfloat.png" title="Design Float" alt="Design Float" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.designtrek.com%2Farchives%2Fnew-twitter-design-layout&amp;title=New%20Twitter%20Design%20Layout&amp;bodytext=A%20few%20days%20ago%2C%20I%20logged%20in%20to%20one%20of%20my%20accounts%20on%20Twitter%2C%20and%20noticed%20something%20strange.%20%C2%A0The%20design%20had%20changed.%20%C2%A0It%27s%20really%20quite%20an%20interesting%20change%2C%20as%20it%20lends%20itself%20to%20the%20social%20more%20than%20the%20previous%20design.%20%C2%A0I%20really%20like%20it%2C%20even" title="Digg"><img src="http://www.designtrek.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.designtrek.com%2Farchives%2Fnew-twitter-design-layout&amp;title=New%20Twitter%20Design%20Layout&amp;notes=A%20few%20days%20ago%2C%20I%20logged%20in%20to%20one%20of%20my%20accounts%20on%20Twitter%2C%20and%20noticed%20something%20strange.%20%C2%A0The%20design%20had%20changed.%20%C2%A0It%27s%20really%20quite%20an%20interesting%20change%2C%20as%20it%20lends%20itself%20to%20the%20social%20more%20than%20the%20previous%20design.%20%C2%A0I%20really%20like%20it%2C%20even" title="del.icio.us"><img src="http://www.designtrek.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://www.designtrek.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=New%20Twitter%20Design%20Layout&amp;body=http%3A%2F%2Fwww.designtrek.com%2Farchives%2Fnew-twitter-design-layout" title="email"><img src="http://www.designtrek.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.designtrek.com%2Farchives%2Fnew-twitter-design-layout&amp;t=New%20Twitter%20Design%20Layout" title="Facebook"><img src="http://www.designtrek.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.designtrek.com%2Farchives%2Fnew-twitter-design-layout" title="Technorati"><img src="http://www.designtrek.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Votetime"><img src="http://www.designtrek.com/wp-content/plugins/sociable/images/" title="Votetime" alt="Votetime" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.designtrek.com/archives/new-twitter-design-layout/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
