<?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>tmtbox &#187; news</title>
	<atom:link href="http://www.tmtbox.com/category/news/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tmtbox.com</link>
	<description>technology media and telecomm</description>
	<lastBuildDate>Sun, 01 Jan 2012 17:38:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Yii PHP framework 1.1.9 is released</title>
		<link>http://www.tmtbox.com/yii-php-framework-1-1-9-is-released</link>
		<comments>http://www.tmtbox.com/yii-php-framework-1-1-9-is-released#comments</comments>
		<pubDate>Sun, 01 Jan 2012 17:34:26 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Yii]]></category>

		<guid isPermaLink="false">http://www.tmtbox.com/?p=1049</guid>
		<description><![CDATA[Yii Framework version 1.1.9 has been released. In this release, included nearly 60 enhancements and bug fixes. For the complete list of changes in this release, please see the change log and important feature additions. And if you plan to upgrade from an older version to 1.1.9, refer to the upgrade instructions. In the following [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tmtbox.com/wp-content/uploads/2012/01/logo.png"><img class="alignnone size-full wp-image-1052" title="Yii PHP framework" src="http://www.tmtbox.com/wp-content/uploads/2012/01/logo.png" alt="Yii PHP framework" width="284" height="64" /></a></p>
<p>Yii Framework version 1.1.9 has been released. In this release, included nearly 60 enhancements and bug fixes.</p>
<p>For the complete list of changes in this release, please see the <a href="http://www.yiiframework.com/files/CHANGELOG-1.1.9.txt">change log</a> and <a href="http://www.yiiframework.com/doc/guide/changes">important feature additions</a>. And if you plan to upgrade from an older version to 1.1.9, refer to the <a href="http://www.yiiframework.com/files/UPGRADE-1.1.9.txt">upgrade instructions</a>.</p>
<p>In the following page, we briefly introduce some of the changes in this release.<br />
<span id="more-1049"></span></p>
<h3>More convenient way to define through AR relation</h3>
<p>Active Record though option was introduced in 1.1.7 but syntax wasn&#8217;t convenient so we decided to make it more definitive. Current syntax is the following:</p>
<div>
<div>
<pre>'comments'=&gt;array(self::HAS_MANY,'Comment',array('key1'=&gt;'key2'),'through'=&gt;'posts'),</pre>
</div>
</div>
<p>In the above array(&#8216;key1&#8242;=&gt;&#8217;key2&#8242;):</p>
<ul>
<li><code>key1</code> is a key defined in relation specified in <code>through</code> (<code>posts</code> is this case).</li>
<li><code>key2</code> is a key defined in a model relation points to (<code>Comment</code> in this case).</li>
</ul>
<p>through can be used with both HAS_ONE and HAS_MANY relations.</p>
<p>For more details and examples refer to <a href="http://www.yiiframework.com/doc/guide/1.1/en/database.arr#relational-query-with-through">Relational Query with through</a>.</p>
<h3>Scope support for Model::relations()</h3>
<p>You can now use scopes when defining AR model relations such as</p>
<div>
<div>
<pre>'recentApprovedComments'=&gt;array(self::BELONGS_TO, 'Post', 'post_id',
    'scopes' =&gt; array('approved', 'recent')),</pre>
</div>
</div>
<p>In case of a single scope you can specify a single scope with a string instead of array.</p>
<h3>Ability to join AR models on a specific keys</h3>
<p>It is now possible to build AR relations on PK-&gt;FK specified instead of relying on the schema defaults so you can specify AR relation like the following declaration for Day model:</p>
<div>
<div>
<pre>'jobs'=&gt;array(self::HAS_MANY, 'Job', array('date' =&gt; 'target_date')),</pre>
</div>
</div>
<p>In the case above Day can have multiple Jobs but these aren&#8217;t related usual way. We&#8217;ve specified relation key in form of array(&#8216;fk&#8217;=&gt;&#8217;pk&#8217;). That means it will generate SQL like</p>
<pre>SELECT * FROM day t
JOIN job ON t.date = job.target_date</pre>
<h3>Ability to override core classes using Yii::$classMap</h3>
<p>There was an ability to <a href="http://www.yiiframework.com/doc/guide/1.1/en/basics.namespace#using-class-map">pre-import classes</a> and use them without explicitly importing or including since 1.1.5. Now using the same technique you can override <a href="http://code.google.com/p/yii/source/browse/trunk/framework/YiiBase.php#632">Yii core classes</a> with your own ones.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tmtbox.com/yii-php-framework-1-1-9-is-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery 1.7.1 released</title>
		<link>http://www.tmtbox.com/jquery-1-7-1-released</link>
		<comments>http://www.tmtbox.com/jquery-1-7-1-released#comments</comments>
		<pubDate>Sat, 26 Nov 2011 06:04:30 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.tmtbox.com/?p=1042</guid>
		<description><![CDATA[jQuery team released version 1.7.1 before thanksgiving , new version mainly fixes some bugs, you can get through the following address: http://code.jquery.com/jquery-1.7.1.min.js http://code.jquery.com/jquery-1.7.1.js jQuery 1.7.1 Change Log Ajax #10723: jqXHR.always() returns a Promise instead of a jqXHR object Attributes #10724: $(document).text() always returns an empty string #10773: removeAttr is fragile for edge cases Build #10630: [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tmtbox.com/wp-content/uploads/2011/11/jquery-logo.jpg"><img class="alignnone size-full wp-image-1043" title="jquery logo" src="http://www.tmtbox.com/wp-content/uploads/2011/11/jquery-logo.jpg" alt="jquery" width="200" height="61" /></a></p>
<p><strong>jQuery team released version 1.7.1 <strong>before thanksgiving </strong>, new version mainly fixes some bugs, you can get through the following address:<br />
</strong></p>
<ul>
<li><a href="http://code.jquery.com/jquery-1.7.1.min.js" target="_blank">http://code.jquery.com/jquery-1.7.1.min.js</a></li>
<li><a href="http://code.jquery.com/jquery-1.7.1.js" target="_blank">http://code.jquery.com/jquery-1.7.1.js</a></li>
</ul>
<p><span id="more-1042"></span><br />
<strong>jQuery 1.7.1 Change Log</strong></p>
<blockquote>
<h3>Ajax</h3>
<ul>
<li><a href="http://bugs.jquery.com/ticket/10723" target="_blank">#10723</a>: jqXHR.always() returns a Promise instead of a jqXHR object</li>
</ul>
<h3>Attributes</h3>
<ul>
<li><a href="http://bugs.jquery.com/ticket/10724" target="_blank">#10724</a>: $(document).text() always returns an empty string</li>
<li><a href="http://bugs.jquery.com/ticket/10773" target="_blank">#10773</a>: removeAttr is fragile for edge cases</li>
</ul>
<h3>Build</h3>
<ul>
<li><a href="http://bugs.jquery.com/ticket/10630" target="_blank">#10630</a>: Fix focus-related test failures to resolve Swarm failures</li>
</ul>
<h3>Core</h3>
<ul>
<li><a href="http://bugs.jquery.com/ticket/10616" target="_blank">#10616</a>: Type coersion not done for -1 in .eq</li>
<li><a href="http://bugs.jquery.com/ticket/10646" target="_blank">#10646</a>: Have jQuery.error throw instanceof Error object</li>
<li><a href="http://bugs.jquery.com/ticket/10682" target="_blank">#10682</a>: Creating DOM elements with $(‘ ‘) leaks memory and skips the fragment cache</li>
<li><a href="http://bugs.jquery.com/ticket/10687" target="_blank">#10687</a>: jQuery calls the AMD define() global function too early</li>
<li><a href="http://bugs.jquery.com/ticket/10690" target="_blank">#10690</a>: isNumeric</li>
</ul>
<h3>Css</h3>
<ul>
<li><a href="http://bugs.jquery.com/ticket/10733" target="_blank">#10733</a>: remove uses of jQuery.each in css module in favor of a for loop</li>
</ul>
<h3>Data</h3>
<ul>
<li><a href="http://bugs.jquery.com/ticket/10675" target="_blank">#10675</a>: Use internalKey shortcut instead of jQuery.expando</li>
</ul>
<h3>Effects</h3>
<ul>
<li><a href="http://bugs.jquery.com/ticket/10669" target="_blank">#10669</a>: .animate() no longer animates percentage(%) width</li>
<li><a href="http://bugs.jquery.com/ticket/10750" target="_blank">#10750</a>: A “null” in the data object can cause an error in stop</li>
</ul>
<h3>Event</h3>
<ul>
<li><a href="http://bugs.jquery.com/ticket/10676" target="_blank">#10676</a>: wheelDelta not added to mousewheel event anymore</li>
<li><a href="http://bugs.jquery.com/ticket/10701" target="_blank">#10701</a>: Problems with submit forms using submit function</li>
<li><a href="http://bugs.jquery.com/ticket/10704" target="_blank">#10704</a>: special.handle method should fire under origType name</li>
<li><a href="http://bugs.jquery.com/ticket/10705" target="_blank">#10705</a>: off bug event name parser</li>
<li><a href="http://bugs.jquery.com/ticket/10712" target="_blank">#10712</a>: Triggering blur with live bind broken</li>
<li><a href="http://bugs.jquery.com/ticket/10717" target="_blank">#10717</a>: A triggered load bubbles up to window</li>
<li><a href="http://bugs.jquery.com/ticket/10791" target="_blank">#10791</a>: Delegated Events fail on SVG elements</li>
<li><a href="http://bugs.jquery.com/ticket/10794" target="_blank">#10794</a>: .triggerHandler should not .preventDefault()</li>
<li><a href="http://bugs.jquery.com/ticket/10798" target="_blank">#10798</a>: live(“submit”) and .submit() would cause unobtrusive ajax live to fire twice</li>
<li><a href="http://bugs.jquery.com/ticket/10844" target="_blank">#10844</a>: .delegate() on submit doesn’t work when form contains input with name “id”</li>
</ul>
<h3>Manipulation</h3>
<ul>
<li><a href="http://bugs.jquery.com/ticket/10177" target="_blank">#10177</a>: index of callback function in .wrap is always 0</li>
<li><a href="http://bugs.jquery.com/ticket/10667" target="_blank">#10667</a>: HTML5 Support in .wrapAll() does add a “:” to element</li>
<li><a href="http://bugs.jquery.com/ticket/10670" target="_blank">#10670</a>: rnoshimcache probably not constructed correctly</li>
<li><a href="http://bugs.jquery.com/ticket/10812" target="_blank">#10812</a>: passing empty object to .before() or .after() throws exception in IE7</li>
</ul>
<h3>Misc</h3>
<ul>
<li><a href="http://bugs.jquery.com/ticket/10691" target="_blank">#10691</a>: remove all occurrences of the “equals” and “same” function in the unit tests`</li>
</ul>
<h3>Support</h3>
<ul>
<li><a href="http://bugs.jquery.com/ticket/10629" target="_blank">#10629</a>: IE is much too sensitive concerning the fake body. Explore cleaning up support.js to avoid any future crashes.</li>
<li><a href="http://bugs.jquery.com/ticket/10807" target="_blank">#10807</a>: Non-ascii apostrophe in comment</li>
</ul>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.tmtbox.com/jquery-1-7-1-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SmartSVN 6.6.10 Released</title>
		<link>http://www.tmtbox.com/smartsvn-6-6-10-released</link>
		<comments>http://www.tmtbox.com/smartsvn-6-6-10-released#comments</comments>
		<pubDate>Sat, 26 Nov 2011 05:43:46 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[SmartSVN]]></category>

		<guid isPermaLink="false">http://www.tmtbox.com/?p=1039</guid>
		<description><![CDATA[SmartSVN 6.6.10 has been released,a new bug-fix release for SmartSVN 6.6 which addresses problems when accessing SVN 1.7 servers and resolves a couple of other problems. A detailed list of changes can be found here. Download SmartSVN 6.6.10]]></description>
			<content:encoded><![CDATA[<p>SmartSVN 6.6.10 has been released,a new bug-fix release for SmartSVN 6.6 which addresses problems when accessing SVN 1.7 servers and resolves a couple of other problems. A detailed list of changes can be found <a href="http://www.syntevo.com/smartsvn/changelog.txt">here</a>.</p>
<p><a href="http://www.syntevo.com/smartsvn/download.html">Download SmartSVN 6.6.10</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tmtbox.com/smartsvn-6-6-10-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pligg CMS 1.2.0 Released</title>
		<link>http://www.tmtbox.com/pligg-cms-1-2-0-released</link>
		<comments>http://www.tmtbox.com/pligg-cms-1-2-0-released#comments</comments>
		<pubDate>Mon, 19 Sep 2011 15:27:03 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[Pligg]]></category>
		<category><![CDATA[Pligg CMS 1.2.0]]></category>

		<guid isPermaLink="false">http://www.tmtbox.com/?p=1034</guid>
		<description><![CDATA[Pligg CMS 1.2.0 is available. The version adds some important security updates, many bug fixes, optimized code, and a few new features. Some of the changes are listed below in an abbreviated changelog highlighting some of the most important updates. We highly recommend that you update your Pligg CMS website as soon as possible to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tmtbox.com/wp-content/uploads/2011/09/pligg_logo.gif"><img class="alignnone size-full wp-image-1035" title="pligg_logo" src="http://www.tmtbox.com/wp-content/uploads/2011/09/pligg_logo.gif" alt="pligg cms" width="232" height="80" /></a></p>
<p><a title="pligg" href="http://pligg.com/" target="_blank">Pligg CMS</a> 1.2.0 is <a>available</a>. The version adds some important security updates, many bug fixes, optimized code, and a few new features. Some of the changes are listed below in an abbreviated changelog highlighting some of the most important updates. We highly recommend that you update your Pligg CMS website as soon as possible to avoid exploits from previous security holes that have now been patched.</p>
<ol>
<li>Security fixes</li>
<li>Exclude disabled users from Top Users</li>
<li>Fixed the “Edit user data” admin feature</li>
<li>New weight parameter for modules, allowing modules to control what order they are called in.</li>
<li>Search groups by group name</li>
<li>The Tag Cloud page is now disabled when you have tags turned off site-wide</li>
<li>Human check (anti-spam) module fixes</li>
<li>Localized a few new phrases</li>
<li>Add feature to subtract a value of user score for removing a story vote</li>
<li>You can now use PHP in page content.</li>
<li>Left open HTML tags in the story content area will now be automatically closed.</li>
<li>Users can now select a site language file from their edit profile page. This will only change the Pligg language file, not the content being submitted to the site.</li>
</ol>
<div><a href="http://forums.pligg.com/attachments/current-version/3108d1316396439-pligg-content-management-system-1-2-0-download-pligg-cms-1.2.0.zip">Download Pligg 1.2.0</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.tmtbox.com/pligg-cms-1-2-0-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ruby on Rails 3.1 Release</title>
		<link>http://www.tmtbox.com/ruby-on-rails-3-1-release</link>
		<comments>http://www.tmtbox.com/ruby-on-rails-3-1-release#comments</comments>
		<pubDate>Fri, 02 Sep 2011 17:23:18 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://www.tmtbox.com/?p=1030</guid>
		<description><![CDATA[Highlights in Rails 3.1: Streaming Reversible Migrations Assets Pipeline jQuery as the default JavaScript library Download &#8211; http://rubyonrails.org/download Read more Rails 3.1.0 has been released!]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tmtbox.com/wp-content/uploads/2011/09/101642C02-0.png"><img class="size-full wp-image-1031 alignnone" title="Ruby on Rails 3.1" src="http://www.tmtbox.com/wp-content/uploads/2011/09/101642C02-0.png" alt="Ruby on Rails 3.1" width="87" height="111" /></a><br />
Highlights in Rails 3.1:</p>
<ul>
<li>Streaming</li>
<li>Reversible Migrations</li>
<li>Assets Pipeline</li>
<li>jQuery as the default JavaScript library</li>
</ul>
<p>Download &#8211; http://rubyonrails.org/download</p>
<p>Read more <a href="http://weblog.rubyonrails.org/2011/8/31/rails-3-1-0-has-been-released" target="_blank">Rails 3.1.0 has been released!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tmtbox.com/ruby-on-rails-3-1-release/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache Tomcat 7.0.21 Release</title>
		<link>http://www.tmtbox.com/apache-tomcat-7-0-21</link>
		<comments>http://www.tmtbox.com/apache-tomcat-7-0-21#comments</comments>
		<pubDate>Fri, 02 Sep 2011 17:15:44 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://www.tmtbox.com/?p=1028</guid>
		<description><![CDATA[Download &#8211; http://labs.renren.com/apache-mirror/tomcat/tomcat-7/v7.0.21/bin/]]></description>
			<content:encoded><![CDATA[<p>Download &#8211; <a href="http://labs.renren.com/apache-mirror/tomcat/tomcat-7/v7.0.21/bin/">http://labs.renren.com/apache-mirror/tomcat/tomcat-7/v7.0.21/bin/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tmtbox.com/apache-tomcat-7-0-21/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Emoinstaller,Application For Facebook</title>
		<link>http://www.tmtbox.com/emoinstaller</link>
		<comments>http://www.tmtbox.com/emoinstaller#comments</comments>
		<pubDate>Mon, 21 Mar 2011 11:51:48 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[Emoinstaller]]></category>
		<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://www.tmtbox.com/?p=1022</guid>
		<description><![CDATA[Emoinstaller is an application that allows Facebook users to more easily express the context of their Facebook chat instant messages by using emoticons. Boasting a clean and simple interface; Emoinstaller is a new Windows application that provides additional high quality emoticons for use in Facebook chat conversations. The software application allows users of Internet Explorer, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tmtbox.com/wp-content/uploads/2011/03/Emoinstaller_logo.jpg"><img class="aligncenter size-full wp-image-1023" title="Emoinstaller_logo" src="http://www.tmtbox.com/wp-content/uploads/2011/03/Emoinstaller_logo.jpg" alt="Emoinstaller" width="250" height="97" /></a></p>
<p><a href="http://www.tmtbox.com/wp-content/uploads/2011/03/Emoinstaller_logo.jpg"></a><strong>Emoinstaller</strong> is an application that allows Facebook users to more easily  express the context of their Facebook chat instant messages by using  emoticons.</p>
<p>Boasting a clean and simple interface; Emoinstaller is a new Windows  application that provides additional high quality emoticons for use in  Facebook chat conversations.</p>
<p>The software application allows users of Internet Explorer, Mozilla  Firefox and Google Chrome to send and receive hundreds of additional <a title="Facebook chat emoticons" href="http://www.emoinstaller.com/">emoticons in Facebook chat</a> messages.</p>
<p>Emoinstaller is compatible with Windows XP, Vista and 7.</p>
<p>According to Daniel Offer, Managing Director. “It’s now easier than ever to express ones mood in Facebook by using these new <a title="Facebook chat emoticons" href="http://www.emoinstaller.com/">Facebook chat emoticons</a>.”</p>
<p>When a user visits Facebook.com, Emoinstaller conveniently places a  small monkey icon in each instant message window. Clicking on this icon  allows users to select an emoticon to accompany their Facebook chat  message. Users of Emoinstaller are able to choose from fourteen  categories and three sizes (small, medium and large).</p>
<p>“Emoinstaller is branded and personified by ‘Emo’ the monkey,” said  Operations Director, Henrik Larsson. “Emo has been designed to  represents that Emoinstaller is a fun, simple and personality expressing  Facebook application.”</p>
<p>In short, Emoinstaller has been developed with the belief that  chatting with friends should be an immersive and fun-filled experience.</p>
<p><strong>Key features of Emoinstaller include:</strong></p>
<ul>
<li> Hundreds of Emoticons – Over 900 emoticons in a variety of styles, there is something for everyone – young or old.</li>
<li> Fourteen Categories of Emoticons &#8211; From Love to War and from  Animals to Words, we’ve got all the Facebook emoticons you can think of  and more!</li>
<li> Various Sizes of Emoticons – Use traditionally small, medium or large emoticons – it’s your choice!</li>
<li> Animated Emoticons – Animation gets your Facebook messages noticed.</li>
<li> Simple Interface – Add an emoticon to your message with a single click.</li>
<li> Multi-Browser Support &#8211; Emoinstaller supports Internet Explorer  (version 8 or above recommended), Mozilla Firefox and Google Chrome.</li>
</ul>
<p>Emoinstaller can be downloaded for free from <a title="Download Facebook Emoticons" href="http://www.emoinstaller.com/">http://www.emoinstaller.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tmtbox.com/emoinstaller/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IXThemes 1.0.7 Released</title>
		<link>http://www.tmtbox.com/ixthemes-1-0-7-released</link>
		<comments>http://www.tmtbox.com/ixthemes-1-0-7-released#comments</comments>
		<pubDate>Tue, 01 Mar 2011 18:48:09 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[IXThemes]]></category>
		<category><![CDATA[IXThemes 1.0.7]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[XOOPS]]></category>

		<guid isPermaLink="false">http://www.tmtbox.com/?p=1020</guid>
		<description><![CDATA[Changes: 1. CakePHP was updated to 1.3.7 and SimpleTest to 1.0.1. 2. Icons and backgrounds of messages were updated. 3. The CSS for the Analyze Code Coverage view was updated. 4. The Cake HTML Reporter links menu was updated. 5. Compatibility was established with IXThemes 4.5, ImpressCMS 1.2.4, XOOPS 2.5, 2.4, and 2.3, RMCommon Utilities, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tmtbox.com/wp-content/uploads/2011/03/10214255_0Vvd.jpg"><img class="aligncenter size-full wp-image-1022" title="IXThemes 1.0.7" src="http://www.tmtbox.com/wp-content/uploads/2011/03/10214255_0Vvd.jpg" alt="IXThemes 1.0.7" width="450" height="270" /></a><br />
<strong>Changes:</strong><br />
1. CakePHP was updated to 1.3.7 and SimpleTest to 1.0.1.<br />
2. Icons and backgrounds of messages were updated.<br />
3. The CSS for the Analyze Code Coverage view was updated.<br />
4. The Cake HTML Reporter links menu was updated.<br />
5.  Compatibility was established with IXThemes 4.5, ImpressCMS 1.2.4,  XOOPS 2.5, 2.4, and 2.3, RMCommon Utilities, and IXTframework 1.0.5</p>
<p>Download <a title="IXThemes 1.0.7" href="http://sourceforge.net/projects/ixthemes/files/modules/ixtcake/1.0.7/ixtcake1.0.7.zip/download" target="_blank">IXThemes 1.0.7</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tmtbox.com/ixthemes-1-0-7-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.1 Released</title>
		<link>http://www.tmtbox.com/wordpress-3-1-released</link>
		<comments>http://www.tmtbox.com/wordpress-3-1-released#comments</comments>
		<pubDate>Sun, 27 Feb 2011 22:12:05 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[WordPress 3.1]]></category>

		<guid isPermaLink="false">http://www.tmtbox.com/?p=1017</guid>
		<description><![CDATA[WordPress 3.1 was released on february 22, 2011. Features: Internal Linking &#8211; click a button for an internal link and it allows you to search for a post or browse a list of existing content and select it for inclusion. Admin Bar &#8211; contains various links to useful admin screens. By default, the admin bar [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tmtbox.com/wp-content/uploads/2011/02/wordpress.jpg"><img class="alignnone size-full wp-image-1018" title="wordpress 3.1 released" src="http://www.tmtbox.com/wp-content/uploads/2011/02/wordpress.jpg" alt="wordpress 3.1 released" width="280" height="180" /></a></p>
<p><strong>WordPress 3.1</strong> was released on february 22, 2011.</p>
<h2><span style="color: #000000;"><strong>Features:</strong></span></h2>
<ul>
<li> <strong>Internal Linking</strong> &#8211; click a button for an internal link  and it allows you to search for a post or browse a list of existing  content and select it for inclusion.</li>
<li> <strong>Admin Bar</strong> &#8211; contains various links to useful admin  screens.  By default, the admin bar is displayed when a user is logged  in and visiting the site and is not displayed in admin screens for  single blog installs.  For multisite installs, the admin bar is  displayed both when visiting the site and in the admin screens.</li>
<li> <strong>Streamlined Writing Interface</strong> &#8211; new users of WordPress  will find the write screen much less cluttered than before, as more of  the options are hidden by default.  You can click on Screen Options in  the top right to bring them back.</li>
<li> <strong>Post Formats</strong> &#8211; meta information that can be used by themes to customize presentation of a post.  Read more in the article <a title="Post Formats" href="http://codex.wordpress.org/Post_Formats">Post Formats</a>.</li>
<li> <strong>Network Admin</strong> &#8211; move Super Admin menus and related pages out of the regular admin and into a new <a title="Network Admin" href="http://codex.wordpress.org/Network_Admin">Network Admin screen</a>.</li>
<li> <strong>List-type Admin Screens</strong> &#8211; sortable columns for list-type screens and better pagination.</li>
<li> <strong>Exporter/Importer Overhaul</strong> &#8211; many under the hood  changes including adding author information, better handling for  taxonomies and terms, and proper support for navigation menus.</li>
<li> <strong>Custom Content Type Improvements</strong> &#8211; allows developers to generate archive pages, and have better menu and capability controls.  Read more in the article <a title="Post Types" href="http://codex.wordpress.org/Post_Types">Post Types</a>.</li>
<li> <strong>Advanced Queries</strong> &#8211; allows developers to query multiple taxonomies and custom fields.</li>
<li> <strong>Refreshed Blue Admin Color Scheme</strong> &#8211; puts the focus more squarely on your content.</li>
</ul>
<p>With the 3.1 release, <strong>WordPress is more of a CMS than ever before</strong>. The only limit to what you can build is your imagination.</p>
<p>Download <a title="wordpress 3.1" href="http://wordpress.org/download/" target="_blank">WordPress 3.1</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tmtbox.com/wordpress-3-1-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Movable Type 5.1 Beta 1 Released</title>
		<link>http://www.tmtbox.com/movable-type-5-1-beta-1-released</link>
		<comments>http://www.tmtbox.com/movable-type-5-1-beta-1-released#comments</comments>
		<pubDate>Fri, 18 Feb 2011 05:28:08 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[Movable Type]]></category>
		<category><![CDATA[Movable Type 5.1]]></category>

		<guid isPermaLink="false">http://www.tmtbox.com/?p=1014</guid>
		<description><![CDATA[The Movable Type 5.1 Beta 1 is now available to download and test. Today begins a 3-month period of beta releases and official quality assurance testing. Downloading Movable Type 5.1 Beta The beta builds and MTOS nightly builds are available to download from the beta page. Download the beta builds Download MTOS nightly builds Get [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tmtbox.com/wp-content/uploads/2011/02/Movable-Type-5.1.jpg"><img class="alignnone size-medium wp-image-1015" title="Movable Type 5.1" src="http://www.tmtbox.com/wp-content/uploads/2011/02/Movable-Type-5.1-300x127.jpg" alt="Movable Type 5.1" width="300" height="127" /></a></p>
<p>The Movable Type 5.1 Beta 1 is now available to download and test. Today  begins a 3-month period of beta releases and official quality assurance  testing.</p>
<div id="51beta-download">
<h3 id="downloading-movable-type-51-beta">Downloading Movable Type 5.1 Beta</h3>
<p>The beta builds and MTOS nightly builds are available to download from the beta page.</p>
<ul>
<li><a href="http://www.movabletype.org/documentation/beta/movable-type-51-beta.html#beta-download">Download the beta builds</a></li>
<li><a href="http://www.movabletype.org/documentation/beta/movable-type-51-beta.html#nightly">Download MTOS nightly builds</a></li>
<li><a href="http://www.movabletype.org/documentation/beta/movable-type-51-beta.html#github">Get the source code from GitHub</a></li>
</ul>
</div>
<p><object id="__sse6744655" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=mt51-en-110129073854-phpapp01&amp;stripped_title=introducing-movable-type-51&amp;userName=sakk" /><param name="name" value="__sse6744655" /><param name="allowfullscreen" value="true" /><embed id="__sse6744655" type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=mt51-en-110129073854-phpapp01&amp;stripped_title=introducing-movable-type-51&amp;userName=sakk" name="__sse6744655" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tmtbox.com/movable-type-5-1-beta-1-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

