<?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>Davoscript</title>
	<atom:link href="http://davoscript.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://davoscript.com</link>
	<description>davoloping_my_ideas</description>
	<lastBuildDate>Thu, 22 Mar 2012 18:31:48 +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>WordPress MU Domain Mapping plugin and Multisite mu-plugins</title>
		<link>http://davoscript.com/2012/02/08/wordpress-mu-domain-mapping-plugin-and-multisite-mu-plugins/</link>
		<comments>http://davoscript.com/2012/02/08/wordpress-mu-domain-mapping-plugin-and-multisite-mu-plugins/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 04:55:04 +0000</pubDate>
		<dc:creator>davo</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[domain mapping]]></category>
		<category><![CDATA[multisite]]></category>
		<category><![CDATA[wrong urls]]></category>

		<guid isPermaLink="false">http://davoscript.com/?p=115</guid>
		<description><![CDATA[After writing Front-end Editor and WordPress MU Domain Mapping plugins and sharing some thoughts with its author: Scribu, I&#8217;ve found that the real problem with the wrong URLs for the]]></description>
			<content:encoded><![CDATA[<p>After writing <a href="http://davoscript.com/2012/02/07/front-end-editor-and-wordpress-mu-domain-mapping-plugins/comment-page-1/#comment-193" target="_blank">Front-end Editor and WordPress MU Domain Mapping plugins</a> and sharing some thoughts with its author: <a title="Visit scribu's website" href="http://scribu.net/" target="_blank">Scribu</a>, I&#8217;ve found that the real problem with the wrong URLs for the files inside the <strong>&#8220;mu-plugins&#8221;</strong> folder is actually a filter function added by <strong>WordPress MU Domain Mapping</strong> plugin which tries to recreate the URLs with the new mapped domain instead of the URL used by WordPress in multisite mode (subdomains or subdirectories). So here is a copy of my post in the WordPress forums:</p>
<p>You can also find the following post at: <a href="http://wordpress.org/support/topic/plugin-front-end-editor-frontend-editor-and-wordpress-mu-domain-mapping-plugins?replies=2#post-2610913">http://wordpress.org/support/topic/plugin-front-end-editor-frontend-editor-and-wordpress-mu-domain-mapping-plugins?replies=2#post-2610913</a><br />
<span id="more-115"></span></p>
<h3>From WordPress Forums:</h3>
<p>People, I&#8217;ve been commeting about this on my website with Scribu <a href="http://davoscript.com/2012/02/07/front-end-editor-and-wordpress-mu-domain-mapping-plugins/#comments">http://davoscript.com/2012/02/07/front-end-editor-and-wordpress-mu-domain-mapping-plugins/#comments</a> and after some research I&#8217;ve found that the problem is actually with WordPress MU Domain Mapping plugi, check out this code:</p>
<p>domain_mapping.php Line #656</p>
<pre><code>// fixes the plugins_url
function domain_mapping_plugins_uri( $full_url, $path=NULL, $plugin=NULL ) {
 return get_option( 'siteurl' ) . substr( $full_url, stripos( $full_url, PLUGINDIR ) - 1 );
} 

function domain_mapping_themes_uri( $full_url ) {
 return str_replace( get_original_url ( 'siteurl' ), get_option( 'siteurl' ), $full_url );
} 

if ( defined( 'DOMAIN_MAPPING' ) ) {
 add_filter( 'plugins_url', 'domain_mapping_plugins_uri', 1 );
 ...
} </code></pre>
<p>The <strong>domain_mapping_plugins_uri</strong> function is used to filter the <strong>plugins_url</strong> function and return the plugins folder (or file inside it) url with the mapped domain, it does it by searching <strong>&#8220;wp-content/plugins&#8221;</strong> but it fails when the plugin is loaded from the <strong>&#8220;wp-content/mu-plugins&#8221;</strong>. This can be fixed by validating if the passed URL contains the &#8220;mu-plugins&#8221; string or not.</p>
<p>This is the fix I added:</p>
<pre><code>// fixes the plugins_url
function domain_mapping_plugins_uri( $full_url, $path=NULL, $plugin=NULL ) {
 if ( false !== strpos($full_url, 'wp-content/mu-plugins') )
 $mapped_url = get_option( 'siteurl' ) . substr( $full_url, stripos( $full_url, 'wp-content/mu-plugins' ) - 1 );
 else
 $mapped_url = get_option( 'siteurl' ) . substr( $full_url, stripos( $full_url, 'wp-content/plugins' ) - 1 );
 return $mapped_url;
}</code></pre>
<p>Note that I use &#8220;wp-content/plugins&#8221; and &#8220;wp-content/mu-plugins&#8221; instead of the &#8220;PLUGINDIR&#8221; constant which is deprecated by the way.</p>
<p><strong>Please not that this is not an official fix, since I&#8217;m not the author of the plugin</strong>, however I hope this can solve this problem for other people as it did for me, so you can enjoy and empower your network with this 2 amazing wordpress plugins!</p>
<p>Regards,<br />
Davo.</p>
]]></content:encoded>
			<wfw:commentRss>http://davoscript.com/2012/02/08/wordpress-mu-domain-mapping-plugin-and-multisite-mu-plugins/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Front-end Editor and WordPress MU Domain Mapping plugins</title>
		<link>http://davoscript.com/2012/02/07/front-end-editor-and-wordpress-mu-domain-mapping-plugins/</link>
		<comments>http://davoscript.com/2012/02/07/front-end-editor-and-wordpress-mu-domain-mapping-plugins/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 05:51:40 +0000</pubDate>
		<dc:creator>davo</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[domain mapping]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[frontend editor]]></category>
		<category><![CDATA[solved]]></category>

		<guid isPermaLink="false">http://davoscript.com/?p=93</guid>
		<description><![CDATA[Hello everyone, specially to Scribu who made this awesome plugin posible. I have a WordPress Multisite instance which uses WordPress MU Domain Mapping plugin to map domains like domain1.com with]]></description>
			<content:encoded><![CDATA[<p>Hello everyone, specially to Scribu who made this awesome plugin posible.</p>
<p>I have a WordPress Multisite instance which uses <a title="Wordpress MU Domain Mapping plugin in the WordPress plugins repository" href="http://wordpress.org/extend/plugins/wordpress-mu-domain-mapping/" target="_blank">WordPress MU Domain Mapping plugin</a> to map domains like <strong>domain1.com</strong> with the subdomains in my WordPress network like: <strong>domain1.mynetwork.com</strong>.</p>
<p>Yasterday I started using Frontend Editor plugin in my network as a &#8220;must use&#8221; plugin (inside mu-plugins folder), but noticed it didn&#8217;t work in mapped domains but it did with no problem in no mapped websites (subdomain.mynetwork.com). A little bit of research showed me that the problem as that some of the Javascript files used by FEE (Frontend Editor) were not being included with the propper URL in the src attribute, like this:<span id="more-93"></span></p>
<p><span style="color: #008000;"><strong>OK (no mapped domains):</strong></span><br />
<code>&lt;script src="http://subdomain.mynetwork.com/wp-content/mu-plugins/front-end-editor/lib/aloha-editor/lib/aloha.js" ...</code></p>
<p><span style="color: #ff0000;"><strong>WRONG (mapped domains):</strong></span><br />
<code>&lt;script src="<strong>http://mapped-domain.com<span style="text-decoration: underline;">s</span></strong>" ... </code></p>
<p>So, it looked like there was a problem when generating the javascript files URL, time to read the plugin code! This is a step by step description of what I did:</p>
<ol>
<li>I compared the source code present in a blog with mapped domain and another without it, one of the missing files was &#8220;aloha.js&#8221;</li>
<li>Opened /wp-content/mu-plugins/front-end-editor/php/core.php, and started looking for &#8220;aloha.js&#8221;, found it around line 144:<br />
<code>'src' =&gt; plugins_url( 'lib/aloha-editor/lib/aloha.js', FEE_MAIN_FILE ),</code></li>
<li>Ok so, <strong>plugins_url( &#8216;lib/aloha-editor/lib/aloha.js&#8217;, FEE_MAIN_FILE )</strong> was returning a wrong path to the file (a very wrong one), it seems that it just adds an &#8220;s&#8221; (from &#8220;.js&#8221; maybe?) to the end of the mapped domain, don&#8217;t know why and didn&#8217;t researched more about it, since I was focused on getting it working for now.</li>
<li>In order to retrieve the right URL I replaced that piece of code with this: <strong>WPMU_PLUGIN_URL.&#8217;/front-end-editor/lib/aloha-editor/lib/aloha.js&#8217;</strong>. That did the trick by retrieving the URL as if it was a no-mapped domain, this means that you will include the file from: subdomain.mynetwork.com instead of from mappeddomain.com, which is fine, the file is actually there.</li>
<li>Once that was done, I looked for other similar problems, and found the same issue with <strong>editor.min.js</strong>, <strong>editor.css</strong> and <strong>aloha.css</strong> and other ones that are included when the plugin&#8217;s debut mode is enabled (I didn&#8217;t fixed this ones, you can do it the same way if you need it).</li>
</ol>
<p>So, to recap, I&#8217;ll show you which pieces of code I replaced. Italic is the original code, Bold is the one I replaced it with:</p>
<p><strong>Line #61 /wp-content/mu-plugins/front-end-editor/php/core.php</strong><br />
<code>if ( in_array( 'rich', $wrapped ) ) {<br />
<em>//wp_register_style( 'aloha-editor', plugins_url( 'lib/aloha-editor/css/aloha.css', FEE_MAIN_FILE ), array(), ALOHA_VERSION );</em><br />
<strong>wp_register_style( 'aloha-editor', WPMU_PLUGIN_URL.'/front-end-editor/lib/aloha-editor/css/aloha.css', array(), ALOHA_VERSION );</strong><br />
$css_dependencies[] = 'aloha-editor';<br />
}</code></p>
<p><strong>Line #92 /wp-content/mu-plugins/front-end-editor/php/core.php</strong><br />
<code>} else {<br />
$min = defined('SCRIPT_DEBUG') ? '' : '.min';<br />
<em>//self::register_script( 'fee-editor', "build/editor$min.js" );</em><br />
<strong>wp_enqueue_script( 'fee-editor', WPMU_PLUGIN_URL."/front-end-editor/build/editor$min.js" );</strong></code></p>
<p>$css_path = &#8216;build/editor.css&#8217;;<br />
}</p>
<p><strong>Line #99 /wp-content/mu-plugins/front-end-editor/php/core.php</strong><br />
<code>// Core style<br />
<em>//wp_register_style( 'fee-editor', plugins_url( $css_path, FEE_MAIN_FILE ), $css_dependencies, FEE_VERSION );</em><br />
<strong>wp_register_style( 'fee-editor', WPMU_PLUGIN_URL.'/front-end-editor/'.$css_path, $css_dependencies, FEE_VERSION );</strong><br />
scbUtil::do_styles( 'fee-editor' );</code></p>
<p><strong>Line #144 /wp-content/mu-plugins/front-end-editor/php/core.php</strong><br />
<code>echo html( 'script', array(<br />
<em>//'src' =&gt; plugins_url( 'lib/aloha-editor/lib/aloha.js', FEE_MAIN_FILE ),</em><br />
<strong> 'src' =&gt; WPMU_PLUGIN_URL.'/front-end-editor/lib/aloha-editor/lib/aloha.js',</strong><br />
'data-aloha-plugins' =&gt; implode( ',', $plugins )<br />
) ) . "\n";</code></p>
<p>People, I hope this help others but also I hope Scribu get to see this and comment something, as long as I have tried this, it works, but maybe he has something to say about my &#8220;fix&#8221; because remember <strong>this is not an official fix.</strong></p>
<p>** Note for Scribu: I get this warning in Chrome: <strong>&#8220;event.layerX and event.layerY are broken and deprecated in WebKit. They will be removed from the engine in the near future&#8221;.</strong> Maybe it can be fixed by using a more general attribute of the event?</p>
<p>Thanks a lot and best regards to all of you.<br />
Davo.</p>
<p>&nbsp;</p>
<h3>UPDATE</h3>
<p>As you can see in the comments of this post, I shared some thoughts with <a title="Visit scribu's website" href="http://scribu.net/" target="_blank">Scribu</a>, <strong>Front-end Editor</strong> plugin&#8217;s author and after some research on the issue I found what I think is a bug (?) in the <strong>WordPress MU Domain Mapping</strong> plugin, so if you are having the same problem described in this post I&#8217;d say forget about hacking Front-end Editor plugin and <a href="http://davoscript.com/2012/02/08/wordpress-mu-domain-mapping-plugin-and-multisite-mu-plugins/" target="_blank">try this new small fix</a> in Domain Mapping plugin instead.</p>
<p>thoughts</p>
]]></content:encoded>
			<wfw:commentRss>http://davoscript.com/2012/02/07/front-end-editor-and-wordpress-mu-domain-mapping-plugins/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Let&#8217;s blog, latest products and news!</title>
		<link>http://davoscript.com/2011/12/20/lets-blog-latest-products-and-news/</link>
		<comments>http://davoscript.com/2011/12/20/lets-blog-latest-products-and-news/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 11:12:09 +0000</pubDate>
		<dc:creator>davo</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://davoscript.com/?p=81</guid>
		<description><![CDATA[Ok, back to the blogging thing, well, actually I haven&#8217;t really used my website as a blog until now! I pretend to be posting more frequently so this is like]]></description>
			<content:encoded><![CDATA[<p>Ok, back to the blogging thing, well, actually I haven&#8217;t really used my website as a blog until now! I pretend to be posting more frequently so this is like the starting point of this website as a blog :P</p>
<p style="text-align: left;">So, the latest news is that I&#8217;ve published new stuff on <a title="My portfolio at codecanyon!" href="http://codecanyon.net/user/davoscript/portfolio" target="_blank">codecanyon</a>! Yep, I hadn&#8217;t published anything there since a long time ago (busy with WordPress Club at <a title="WordpressXTC themes" href="http://www.joomlaxtc.com/index.php?option=com_virtuemart&amp;Itemid=424" target="_blank">http://joomlaxtc.com</a> and other projects), but people were buying my scripts anyway so it would be stupid not to publish something more. So I published &#8220;Sequential Tooltips&#8221;, which is a script I started a long time ago and basicaly lets you create a sequence of tooltips let&#8217;s say to create hints for your users and guide them in your website (like facebook or google when they introduce new features), but the interesting thing is that I haven&#8217;t really found something similar on the internet so I updated it a bit, did some improvements and send it to the super cool team of reviewers at Codecanyon.<span id="more-81"></span></p>
<p><a href="http://codecanyon.net/user/davoscript/portfolio"><img class="wp-image-83" title="item_page" src="http://davoscript.com/wp-content/uploads/2011/12/item_page.png" alt="" width="590" height="300" /></a></p>
<p style="text-align: left;">Another &#8220;new&#8221; thing to me is that I published the script for both Mootools and jQuery, I was specting a huge difference in the sales since jQuery is more used than Moo, but nope jQuery version has sold less than a half of the Moo version in the amount of time. Anyway, we&#8217;ll see how it goes.</p>
<p>Well dear readers, time for me to go for breakfast, I hope I give this space a good use, I&#8217;ll try to post useful stuff, keep in touch!</p>
<p>Regards,<br />
Davo.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://davoscript.com/2011/12/20/lets-blog-latest-products-and-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New script: DragPic Gallery on CodeCanyon</title>
		<link>http://davoscript.com/2011/01/14/new-script-dragpic-gallery-on-codecanyon/</link>
		<comments>http://davoscript.com/2011/01/14/new-script-dragpic-gallery-on-codecanyon/#comments</comments>
		<pubDate>Fri, 14 Jan 2011 07:54:26 +0000</pubDate>
		<dc:creator>davo</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://davoscript.com/?p=55</guid>
		<description><![CDATA[Hello World! Let&#8217;s be precise: DragPic Gallery, our latest Mootools script has been aprooved and published at CodeCanyon. What are you waiting for? Create intituive, creative, smartphone-like, draggable, scrollable, clickable]]></description>
			<content:encoded><![CDATA[<p>Hello World! Let&#8217;s be precise: <a href="http://codecanyon.net/item/dragpic-gallery/152440" target="_blank">DragPic Gallery</a>, our latest Mootools script has been aprooved and published at <a href="http://codecanyon.net" target="_blank">CodeCanyon</a>. What are you waiting for? Create intituive, creative, smartphone-like, draggable, scrollable, clickable image galleries in seconds, really.</p>
<p>DragPic was developed with thinking of a draggable gallery just like a gallery app in many touch-screen smartphones, however during the process of development the common (and less common) features of every gallery were included; this is what makes DragPic so versatile, since you can browse the images by draggping the images, scrolling the mouse wheel over the gallery or using the navigation buttons.<span id="more-55"></span></p>
<p>Ok, but what&#8217;s th<a href="http://codecanyon.net/item/dragpic-gallery/152440" target="_blank"><img class="alignleft size-full wp-image-59" style="background: #44c14b;" title="demo_intro5" src="http://davoscript.com/wp-content/uploads/2011/01/demo_intro5.png" alt="" width="230" height="500" /></a>e second most important functionality of an image gallery?, besides browsing the images of course, the answer is: &#8220;Image information&#8221;. Whith DragPic you can display the images title and description in tow different ways: <strong><em>Tooltips </em></strong>or <strong><em>InfoPanels</em></strong>; we all know tooltips, while <em>infopanels</em> are a full width box that slides from the bottom of each image when hovered and contains the image title and description.</p>
<p>Other features like: gallery orientation, images per frame, effects duration and transition, custom CSS Classes, navigation buttons and more are provided and explained in the documentation file included with the <a href="http://codecanyon.net/item/dragpic-gallery/152440" target="_blank">package</a>.</p>
<p>I&#8217;m very proud of this product since the code is one of the most solid and well structurated I&#8217;ve written at <a href="http://davoscript.com" target="_blank">davoscript.com</a>, which makes the updating task a simpler process and future versions a posible fact.</p>
<p>Any comments about the developing process or our work can be done bellow in the comments of this post. If you already bought this item and need support or help, please ask in the <a href="http://codecanyon.net/item/dragpic-gallery/discussion/152440" target="_blank">DragPic&#8217;s comments board</a>.</p>
<p>Thanks for reading and supporting our work.<br />
Davo.</p>
]]></content:encoded>
			<wfw:commentRss>http://davoscript.com/2011/01/14/new-script-dragpic-gallery-on-codecanyon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Davoscript at Envato!</title>
		<link>http://davoscript.com/2010/12/09/davoscript-at-evanto/</link>
		<comments>http://davoscript.com/2010/12/09/davoscript-at-evanto/#comments</comments>
		<pubDate>Thu, 09 Dec 2010 16:19:47 +0000</pubDate>
		<dc:creator>davo</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://davoscript.com/?p=37</guid>
		<description><![CDATA[I&#8217;m very glad to tell our visitors and clients that the first Davoscript item has been accepted at Envato MarketPlaces (CodeCanyon). And the lucky app is SlideNotes, a Mootools Class (Moo]]></description>
			<content:encoded><![CDATA[<p><a href="http://davoscript.com/wp-content/uploads/2010/12/davoscript_banner.png"><img class="alignnone size-full wp-image-38" title="davoscript_banner" src="http://davoscript.com/wp-content/uploads/2010/12/davoscript_banner.png" alt="" width="590" height="242" /></a></p>
<p>I&#8217;m very glad to tell our visitors and clients that the first <strong>Davoscript </strong>item has been accepted at <a title="Check out Davoscript at CodeCanyon!" href="http://codecanyon.net/user/davoscript" target="_blank">Envato MarketPlaces (CodeCanyon)</a>.</p>
<p>And the lucky app is <a title="SlideNotes Demo. Buy it at CodeCanyon!" href="http://development.davoscript.com/slidenotes/" target="_blank">SlideNotes</a>, a Mootools Class (Moo 1.2, compatible with Moo 1.3) developed by <em><strong>Davo</strong></em> which will allows you to display fancy sliding notes (similar to postit, or anything since it is customizable with CSS) that will help you  show your information and notes whenever you click or hover any element in your website, word, image, div, etc.</p>
<p>Used it to display Login Forms, Notes, Definitions, images, profiles and anything you imagine! SlideNotes will definitely improove your Users Experience (UX).</p>
<p>Check SlideNotes at <a href="http://development.davoscript.com/slidenotes/">http://development.davoscript.com/slidenotes/</a> and buy it <a title="Buy SlideNotes at CodeCanyon!" href="http://codecanyon.net/item/slidenotes/143767" target="_blank">only at Evanto CodeCanyon.</a></p>
<p>Best Regards,<br />
Davo.</p>
<p>PS: Thanks to my cousin Mauricio for the typo correction! hehe. Peace!</p>
]]></content:encoded>
			<wfw:commentRss>http://davoscript.com/2010/12/09/davoscript-at-evanto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joomla Template: JoomlaXTC Blogmonster!</title>
		<link>http://davoscript.com/2010/07/27/joomla-template-joomlaxtc-blogmonster/</link>
		<comments>http://davoscript.com/2010/07/27/joomla-template-joomlaxtc-blogmonster/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 12:59:10 +0000</pubDate>
		<dc:creator>davo</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://davoscript.com/?p=13</guid>
		<description><![CDATA[When it comes to Joomla CREATIVE Templates, JoomlaXTC is what you want. Blogmonster is the lastest template, released just 2 days ago it brings color, excelent design and it&#8217;s improved]]></description>
			<content:encoded><![CDATA[<p>When it comes to Joomla CREATIVE Templates, <a title="JoomlaXTC" href="http://www.joomlaxtc.com/" target="_blank">JoomlaXTC</a> is what you want. Blogmonster is the lastest template, released just 2 days ago it brings color, excelent design and it&#8217;s improved with the best extensions.</p>
<p><a title="Best of Joomla: Blogmonster by JoomlaXTC" href="http://www.bestofjoomla.com/component/option,com_bestoftemplate/task,detail/Itemid,46/id,3564/" target="_blank"><img class="size-full wp-image-14 alignnone" title="jxtc_blogmonster" src="http://davoscript.com/wp-content/uploads/2010/07/jxtc_blogmonster.jpg" alt="JoolmaXTC Blogmonster" width="347" height="139" /></a></p>
<p>Joomlers are alucinating with this template, and I&#8217;ve heard around the net that <a title="JoomlaXTC" href="http://www.joomlaxtc.com/" target="_blank">JoomlaXTC</a> is about to release another template in the next days.. Joining <a title="JoomlaXTC" href="http://www.joomlaxtc.com/" target="_blank">JoomlaXTC</a> is definetely a very wise choice!!</p>
]]></content:encoded>
			<wfw:commentRss>http://davoscript.com/2010/07/27/joomla-template-joomlaxtc-blogmonster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Looking for a WP Widget guide?</title>
		<link>http://davoscript.com/2010/04/06/looking-for-a-wp-widget-guide/</link>
		<comments>http://davoscript.com/2010/04/06/looking-for-a-wp-widget-guide/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 05:53:13 +0000</pubDate>
		<dc:creator>davo</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://davoscript.com/?p=6</guid>
		<description><![CDATA[After reading arround 10 tutorials for creating WordPress widgets with the new 2.8+ API, i found this one the best, it&#8217;s pretty much complete but never complicated. Here you have,]]></description>
			<content:encoded><![CDATA[<p>After reading arround 10 tutorials for creating WordPress widgets with the new 2.8+ API, i found this one the best, it&#8217;s pretty much complete but never complicated.</p>
<p>Here you have, happy developing!</p>
<p><a href="http://jessealtman.com/2009/06/08/tutorial-wordpress-28-widget-api/">http://jessealtman.com/2009/06/08/tutorial-wordpress-28-widget-api/</a></p>
<p>(All rights reserved to jessealtman.com)</p>
<p>Adiox!<br />
Davo.</p>
]]></content:encoded>
			<wfw:commentRss>http://davoscript.com/2010/04/06/looking-for-a-wp-widget-guide/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Developing Mode: ON</title>
		<link>http://davoscript.com/2010/03/31/developing-mode-on/</link>
		<comments>http://davoscript.com/2010/03/31/developing-mode-on/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 10:31:50 +0000</pubDate>
		<dc:creator>davo</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.davoscript.com/?p=3</guid>
		<description><![CDATA[Lots of code have passes before my eyes these days, a little bit of everything but mostly PHP and WP API. I&#8217;ve been just surprised by these guys http://xhtml.pixelcrayons.com/ they]]></description>
			<content:encoded><![CDATA[<p>Lots of code have passes before my eyes these days, a little bit of everything but mostly PHP and WP API.</p>
<p>I&#8217;ve been just surprised by these guys <a href="http://xhtml.pixelcrayons.com/">http://xhtml.pixelcrayons.com/</a> they do an excellent work with PSD to XHTML, letting the developer focus on the code.</p>
<p>Mootools VS jQuery? take a look and make a smart choice:  <a href="http://jqueryvsmootools.com/">http://jqueryvsmootools.com/</a></p>
<p>Ok going to sleep for now, hope i&#8217;ll be doing something good with this blog.</p>
<p>Regards,<br />
David.</p>
]]></content:encoded>
			<wfw:commentRss>http://davoscript.com/2010/03/31/developing-mode-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

