<?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>FlexVN</title>
	<atom:link href="http://www.flexvn.net/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.flexvn.net/blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Mon, 07 Jun 2010 02:19:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Use Flash Professional CS5 to develop and deploy an Adobe AIR application to Android</title>
		<link>http://www.flexvn.net/blog/flex/use-flash-professional-cs5-to-develop-and-deploy-an-adobe-air-application-to-android.php</link>
		<comments>http://www.flexvn.net/blog/flex/use-flash-professional-cs5-to-develop-and-deploy-an-adobe-air-application-to-android.php#comments</comments>
		<pubDate>Fri, 21 May 2010 01:59:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Air]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[CS5]]></category>

		<guid isPermaLink="false">http://www.flexvn.net/blog/?p=273</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="256" 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="FlashVars" value="fileID=6603&amp;context=76&amp;embeded=true&amp;environment=production" /><param name="src" value="http://images.tv.adobe.com/swf/player.swf" /><param name="flashvars" value="fileID=6603&amp;context=76&amp;embeded=true&amp;environment=production" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="256" src="http://images.tv.adobe.com/swf/player.swf" flashvars="fileID=6603&amp;context=76&amp;embeded=true&amp;environment=production" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flexvn.net/blog/flex/use-flash-professional-cs5-to-develop-and-deploy-an-adobe-air-application-to-android.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Problem with Drupal when working with mutli modules</title>
		<link>http://www.flexvn.net/blog/drupal/problem-with-drupal-when-working-with-mutli-modules.php</link>
		<comments>http://www.flexvn.net/blog/drupal/problem-with-drupal-when-working-with-mutli-modules.php#comments</comments>
		<pubDate>Thu, 20 May 2010 14:33:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[module]]></category>

		<guid isPermaLink="false">http://www.flexvn.net/blog/?p=267</guid>
		<description><![CDATA[When working with multi module in Drupal i usually meet
Fatal error: Maximum execution time of 60 seconds 
That problem appear can your PHP memory don&#8217;t enough for Drupal when it install new module. If you have memory you can increase memory with these mothods

 In file php.ini at line  memory_limit=xxM set new memory you want [...]]]></description>
			<content:encoded><![CDATA[<p>When working with multi module in Drupal i usually meet</p>
<blockquote><p><strong>Fatal error: Maximum execution time of 60 seconds </strong></p></blockquote>
<p>That problem appear can your PHP memory don&#8217;t enough for Drupal when it install new module. If you have memory you can increase memory with these mothods</p>
<ul>
<li> In file php.ini at line  <code><strong>memory_limit=xxM</strong> set new memory you want like </code><code>memory_limit = 128M etc ..</code></li>
<li><code>add line ini_set('memory_limit', '128M');</code> to your  sites/default/settings.php file.</li>
<li><code>php_value memory_limit 128M</code> to your .htaccess file in the  Drupal root.</li>
<li>Use module <a title="http://drupal.org/project/drupal_tweaks" rel="nofollow" href="http://drupal.org/project/drupal_tweaks">http://drupal.org/project/drupal_tweaks</a> and increase your PHP memory limit.</li>
</ul>
<p>If you get that problem when install you can can;t access to modules list. In this case you need disable current install module in database. To do that follow way bellow :</p>
<p>Before you start, do a mysqldump (or export) of your Drupal db  to a local file in case things go wrong and you need to roll back.</p>
<h3>phpMyAdmin</h3>
<p>To disable a module via phpMyAdmin you must login to phpMyAdmin. Then  you must locate the database where Drupal is installed. Once you have  done so look for the &#8220;system&#8221; table. Click and open it. Click to browse  the table. Find the record for the module that is causing the problems  and select the edit function. Set the status to &#8220;0&#8243; and save.</p>
<h3>MySQL command line</h3>
<p>To disable a module using the MySQL command line, run the following  SELECT to look at the state of your data before the change. This will  help you to find the full name of the module too.</p>
<blockquote><p><code>SELECT name,status FROM system WHERE type='module';</code></p></blockquote>
<p>Then to disable your module, set the status to 0 for the module name  that you want to disable.</p>
<blockquote><p><code>UPDATE system SET status='0' WHERE name='module_name';</code></p></blockquote>
<p>Check your handiwork using the SELECT statement again.</p>
<p>After disable you can view Uninstall tab in modules and uninstall current install module to clear their database. Then try install it again after increase memory.</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">UPDATE system SET status=&#8217;0&#8242; WHERE name IN (&#8216;context&#8217;,'context_contrib&#8217;,'context_ui&#8217;)</div>
]]></content:encoded>
			<wfw:commentRss>http://www.flexvn.net/blog/drupal/problem-with-drupal-when-working-with-mutli-modules.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tired with find driver for Windows. Have fun with DriverPack Solution</title>
		<link>http://www.flexvn.net/blog/tools/tired-with-find-driver-for-windows-have-fun-with-driverpack-solution.php</link>
		<comments>http://www.flexvn.net/blog/tools/tired-with-find-driver-for-windows-have-fun-with-driverpack-solution.php#comments</comments>
		<pubDate>Sat, 15 May 2010 06:53:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[driver]]></category>
		<category><![CDATA[Tool]]></category>
		<category><![CDATA[widnows]]></category>

		<guid isPermaLink="false">http://www.flexvn.net/blog/?p=263</guid>
		<description><![CDATA[
You have old  Laptop or PC and lost it&#8217;s driver when reinstall Windows or your friend ask you help install Windows on their PC but they dont have driver. There is a easy way help  you can install correct driver. That is DriverPack Solution . DriverPack Solution is the most popular program that  makes [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" title="Driver Pack Solution" src="http://drp.su/img/screenshot.png" alt="Driver Pack Solution" width="354" height="253" /></p>
<p>You have old  Laptop or PC and lost it&#8217;s driver when reinstall Windows or your friend ask you help install Windows on their PC but they dont have driver. There is a easy way help  you can install correct driver. That is <a title="Driver Pack Solution" href="http://drp.su/">DriverPack Solution</a> . <strong>DriverPack Solution</strong> is the most popular program that  makes the job of finding and automatically installing drivers a  pleasure.<br />
<strong>DriverPack Solution</strong> simplifies the process of  reinstalling Windows on any computer. No more problems of searching and  installing drivers. Everything will be done in couple of mouse clicks!. It can help:</p>
<blockquote><dl id="cb-organize_01">
<dt><strong>Automated drivers installation</strong></dt>
<dd>The program installs all required drivers to any computer in  just about 5 minutes.</dd>
</dl>
<dl id="cb-organize_02">
<dt><strong>Saves Time and money</strong></dt>
<dd>No more wasting time looking for drivers; all required drivers  will be installed by making only a few clicks.</dd>
</dl>
<dl id="cb-organize_03">
<dt><strong>Any driver for any computer</strong></dt>
<dd>All drivers on a single DVD!<br />
Simplifies downloading new drivers from the Internet.</dd>
</dl>
<dl id="cb-organize_04">
<dt><strong>Drivers update capability</strong></dt>
<dd>Updates previously installed drivers to their latest versions.</dd>
</dl>
<dl id="cb-organize_05">
<dt><strong>Windows XP / Vista / 7 (x86-x64)</strong></dt>
<dd>Supports all modern operating systems!<br />
Both 64-bit and 32-bit versions!</dd>
</dl>
<dl id="cb-organize_06">
<dt><strong>Easy to use</strong></dt>
<dd>Simple and foolproof interface.</dd>
</dl>
<dl id="cb-organize_07">
<dt><strong>Customization ability</strong></dt>
<dd>Our program is open source software.</dd>
</dl>
<dl id="cb-organize_08">
<dt><strong>Distributed for FREE</strong></dt>
<dd>Under the GNU GPL license.</dd>
<dd> </dd>
</dl>
</blockquote>
<dd><span style="font-size: medium;"><strong>Download </strong></span></dd>
<div style="text-align: center;">
<h2><a title="Download V9" href="http://artx.911.lgg.ru/djmcm34jfls1dh/DRPSu9Pro.zip">DriverPack Solution 9 Previous version (x86 only) – 1000mb</a></h2>
<p><span style="font-size: large;"><strong>DriverPack Solution 10</strong></span></p>
<p><script type="text/javascript">// <![CDATA[
	function getCookie(name) {	//Чтение кукисов
		var cookie = " " + document.cookie;
		var search = " " + name + "=";
		var setStr = null;
		var offset = 0;
		var end = 0;
		if (cookie.length > 0) {
			offset = cookie.indexOf(search);
			if (offset != -1) {
				offset += search.length;
				end = cookie.indexOf(";", offset)
				if (end == -1) {
					end = cookie.length;
				}
				setStr = unescape(cookie.substring(offset, end));
			}
		}
		return(setStr);
	}</p>
<p>	function showBlocks(id){	//Запрашивать Email если у пользователя никогда раньше его не спрашивали
		if (getCookie('download')=='true'){
			$('.mail').slideUp('slow');
			$('.links:not(#links-'+id+')').slideUp('slow');
			$('#links-'+id).slideToggle('slow');
		}
		else{
			$('.links').slideUp('slow');
			$('.mail:not(#mail-'+id+')').slideUp('slow');
			$('#mail-'+id).slideToggle('slow');
		}
		return false;
	}</p>
<p>	function isValidEmail (email, strict){	//Проверка почты на валидность
		if ( !strict ) email = email.replace(/^\s+|\s+$/g, '');
		return (/^([a-z0-9_\-]+\.)*[a-z0-9_\-]+@([a-z0-9][a-z0-9\-]*[a-z0-9]\.)+[a-z]{2,4}$/i).test(email);
	}</p>
<p>	function sendSubscribe(id){	//Отправка данных из формы подписки на сервер и открытие доступа к ссылкам на загрузку
		name = document.getElementById('name-'+id).value;
		mail = document.getElementById('email-'+id).value;
		captcha = document.getElementById('captcha-'+id).value;</p>
<p>		if (!isValidEmail(mail)) { alert('Please enter a valid E-Mail Address!'); return false; }
		if (captcha.toLowerCase()!='smwm') { alert('Enter the correct security code!'); return false; }</p>
<p>		$('#mail-'+id).slideUp('slow');
		$('#links-'+id).slideDown('slow');</p>
<p>		$.ajax({
			url: '/subscribe/',
			dataType: 'text',
			type: 'POST',
			data: {name: name, mail: mail},
			success: function (data, textStatus) {
				//alert(data);
			} 
		});</p>
<p>		document.cookie="download=true; path=/";</p>
<p>		return false;
	}
// ]]&gt;</script> <a onclick="return  showBlocks('x32');" href="http://srv1.drp.su/DRPSu10-x32.rar"><img src="http://drp.su/img/download-x32.png" alt="" /></a></p>
<p><a onclick="return  showBlocks('x32-x64');" href="http://driverpacks.drp.su/DRPSu10-x32-x64.rar"><img src="http://drp.su/img/download-x32-x64.png" alt="" /></a></p>
<p><a onclick="return  showBlocks('mini');" href="http://driverpacks.drp.su/DRPSu/DRPSu10-Mini.exe"><img src="http://drp.su/img/download-mini.png" alt="" /></a></p>
</div>
<dd> </dd>
<dd> </dd>
<dd> </dd>
]]></content:encoded>
			<wfw:commentRss>http://www.flexvn.net/blog/tools/tired-with-find-driver-for-windows-have-fun-with-driverpack-solution.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe AIR 2.0 RC and Flash Player 10.1 RC on Adobe Labs</title>
		<link>http://www.flexvn.net/blog/flex/adobe-air-2-0-rc-and-flash-player-10-1-rc-on-adobe-labs.php</link>
		<comments>http://www.flexvn.net/blog/flex/adobe-air-2-0-rc-and-flash-player-10-1-rc-on-adobe-labs.php#comments</comments>
		<pubDate>Wed, 12 May 2010 02:15:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Air]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Adobe]]></category>

		<guid isPermaLink="false">http://www.flexvn.net/blog/?p=259</guid>
		<description><![CDATA[The release candidates for Flash Player  10.1 and Adobe AIR 2.0 are  now available on Adobe  Labs for Windows, Mac, and Linux.


Adobe® Flash® Player 10.1 is the first runtime release of the  Open Screen  Project that enables uncompromised Web browsing of expressive  applications, content and video across devices. With [...]]]></description>
			<content:encoded><![CDATA[<p>The release candidates for <a href="http://labs.adobe.com/technologies/flashplayer10/" target="_blank">Flash Player  10.1</a> and <a href="http://labs.adobe.com/technologies/air2/" target="_blank">Adobe AIR 2.0</a> are  now available on <a href="http://labs.adobe.com/" target="_blank">Adobe  Labs</a> for Windows, Mac, and Linux.</p>
<blockquote>
<div>
<p>Adobe® Flash® Player 10.1 is the first runtime release of the  <a href="http://www.openscreenproject.org/" target="_blank">Open Screen  Project</a> that enables uncompromised Web browsing of expressive  applications, content and video across devices. With support for a broad  range of mobile devices, including smartphones, netbooks, smartbooks  and other Internet-connected devices, Flash Player 10.1 allows your  content to reach your customers wherever they are.</p>
<p>A prerelease version of Flash Player 10.1 is now available  for Windows, Macintosh, Linux, and Solaris operating systems.</p>
<p>This public prerelease is an opportunity for developers to  test and provide early feedback to Adobe on new features, enhancements,  and compatibility with previously authored content. Consumers can try  the prerelease of Flash Player 10.1 to preview hardware acceleration of  video on supported Windows PCs and x86-based netbooks. You can also help  make Flash Player better by visiting all of your favorite sites, making  sure they work the same or better than with the current player. We  definitely want your feedback to help improve the final version,  expected to ship in the first half of 2010.</p>
</div>
</blockquote>
<blockquote><p>Welcome to the Adobe® AIR® 2 prerelease on Adobe Labs.  Adobe AIR 2  provides end users with exceptional application experiences while giving  developers the easiest and most powerful way to develop desktop  applications across multiple platforms (Mac, Windows, and Linux).</p>
<p>AIR 2 builds on the success of AIR 1 by giving developers new  capabilities, and even tighter integration with the desktop.  Some new  features of AIR 2 include:</p>
<div>
<ul>
<li>Enhanced support for interacting with printers</li>
<li>Support for TLS/SSL socket communication</li>
<li>Support for the detection of mass storage devices.</li>
<li>Advanced networking capabilities like secure sockets, UDP  support, and the ability to listen on sockets.</li>
<li>Support for native code integration.</li>
<li>The ability to open a file with its default application.</li>
<li>Multi-touch and gesture support.</li>
<li>New APIs for access to raw microphone data.</li>
<li>WebKit update with HTML5/CSS3 support.</li>
<li>Global error handling.</li>
<li>Improved cross-platform printing</li>
<li>Improved security and support for enterprise and  government standards.</li>
</ul>
</div>
<div>
<div>
<div>
<h3>Download and Discuss</h3>
</div>
<div>
<ul>
<li><a title="Download" href="http://labs.adobe.com/downloads/air2.html"><img src="http://labs.adobe.com/images/icons/download_page.gif" alt="Download" width="16" height="16" />Download the AIR 2 prerelease</a></li>
<li><a title="Discuss" href="http://forums.adobe.com/community/labs/air2/" target="_blank"><img src="http://labs.adobe.com/images/icons/discussion.gif" alt="Discuss" width="16" height="16" />Discuss the AIR 2 prerelease</a></li>
<li><a title="Bugs" href="https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform&amp;product=102" target="_blank"><img src="http://labs.adobe.com/images/icons/contact_form.gif" alt="Bugs" width="16" height="16" />Report bugs or feature requests</a></li>
</ul>
</div>
</div>
</div>
<p>For a complete list of features and to see what’s new, please  refer to the <a href="http://labs.adobe.com/wiki/index.php/AIR_2:Release_Notes">Release  Notes</a>. For an overview of the new features in AIR 2, please take a  look at the following:</p>
<ul>
<li>Article: <a href="http://www.adobe.com/devnet/logged_in/rchristensen_air_2.html" target="_blank">Rob Christensen&#8217;s <em>Introducing Adobe AIR 2 beta</em></a></li>
<li>Video: <a href="http://tv.adobe.com/watch/flash-platform-in-action/kevin-lynch-demos-adobe-air-2-features/" target="_blank">Kevin Lynch, CTO, demos AIR 2 during the MAX 2009  keynote</a> (5:50)</li>
<li>Video: <a href="http://tv.adobe.com/watch/max-2009-develop/whats-coming-in-adobe-air-2-/" target="_blank">Christian Cantrell&#8217;s MAX 2009 presentation, What&#8217;s  Coming in Adobe AIR 2</a> (62:52)</li>
</ul>
<p>The AIR 2 prerelease is your opportunity to explore new features and  communicate your feedback.  Please remember that that this is prerelease  software, so there will be bugs, some performance issues, and some  missing documentation.  Therefore, please use the AIR 2 prerelease only  for testing and exploratory purposes.</p></blockquote>
<p>More detail : <a title="Adobe Labs" href="http://labs.adobe.com/">http://labs.adobe.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flexvn.net/blog/flex/adobe-air-2-0-rc-and-flash-player-10-1-rc-on-adobe-labs.php/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DrupalCon 2010 Video</title>
		<link>http://www.flexvn.net/blog/drupal/drupalcon-2010-video.php</link>
		<comments>http://www.flexvn.net/blog/drupal/drupalcon-2010-video.php#comments</comments>
		<pubDate>Tue, 11 May 2010 15:32:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.flexvn.net/blog/?p=255</guid>
		<description><![CDATA[Here is list DrupalCon 2010 video. You can view and download video via links bellow or bulk download at http://sf2010.sanglt.com



Getting started with Drupal(con) &#8211; http://www.archive.org/details/GettingStartedWithDrupalcon
The Heart of Open Atrium: Context, PURL and Spaces &#8211; http://www.archive.org/details/TheHeartOfOpenAtriumContextPurlAndSpaces_782
PHP for Designers &#8211; http://www.archive.org/details/PhpForDesigners
Beginning Drupal &#8211; http://www.archive.org/details/BeginningDrupal
Views Examples: Using Arguments and Relationships &#8211; http://www.archive.org/details/ViewsExamplesUsingArgumentsAndRelationships
Panel: The Many Flavors of Drupal Training [...]]]></description>
			<content:encoded><![CDATA[<p>Here is list <a title="DrupalCon SF 2010" href="http://sf2010.drupal.org/" target="_blank">DrupalCon 2010</a> video. You can view and download video via links bellow or bulk download at http://sf2010.sanglt.com</p>
<div>
<ul>
<blockquote>
<li>Getting started with Drupal(con) &#8211; <a title="http://www.archive.org/details/GettingStartedWithDrupalcon" href="http://www.archive.org/details/GettingStartedWithDrupalcon">http://www.archive.org/details/GettingStartedWithDrupalcon</a></li>
<li>The Heart of Open Atrium: Context, PURL and Spaces &#8211; <a title="http://www.archive.org/details/TheHeartOfOpenAtriumContextPurlAndSpaces_782" href="http://www.archive.org/details/TheHeartOfOpenAtriumContextPurlAndSpaces_782">http://www.archive.org/details/TheHeartOfOpenAtriumContextPurlAndSpaces_782</a></li>
<li>PHP for Designers &#8211; <a title="http://www.archive.org/details/PhpForDesigners" href="http://www.archive.org/details/PhpForDesigners">http://www.archive.org/details/PhpForDesigners</a></li>
<li>Beginning Drupal &#8211; <a title="http://www.archive.org/details/BeginningDrupal" href="http://www.archive.org/details/BeginningDrupal">http://www.archive.org/details/BeginningDrupal</a></li>
<li>Views Examples: Using Arguments and Relationships &#8211; <a title="http://www.archive.org/details/ViewsExamplesUsingArgumentsAndRelationships" href="http://www.archive.org/details/ViewsExamplesUsingArgumentsAndRelationships">http://www.archive.org/details/ViewsExamplesUsingArgumentsAndRelationships</a></li>
<li>Panel: The Many Flavors of Drupal Training &#8211; <a title="http://www.archive.org/details/JqueryForDesignersAndThemers_579" href="http://www.archive.org/details/JqueryForDesignersAndThemers_579">http://www.archive.org/details/JqueryForDesignersAndThemers_579</a></li>
<li>How Drupal Works: An Architect&#8217;s Overview &#8211; <a title="http://www.archive.org/details/HowDrupalWorksAnArchitectsOverview" href="http://www.archive.org/details/HowDrupalWorksAnArchitectsOverview">http://www.archive.org/details/HowDrupalWorksAnArchitectsOverview</a></li>
<li>Accessibility in Drupal 6 and Drupal 7: Write accessible modules and  themes &#8211; <a title="http://www.archive.org/details/AccessibilityInDrupal6AndDrupal7-WriteAccessibleModulesAndThemes" href="http://www.archive.org/details/AccessibilityInDrupal6AndDrupal7-WriteAccessibleModulesAndThemes">http://www.archive.org/details/AccessibilityInDrupal6AndDrupal7-WriteAcc&#8230;</a></li>
<li>The state of Drupal as a Web Application &amp; Product Platform &#8211; <a title="http://www.archive.org/details/TheStateOfDrupalAsAWebApplicationProductPlatform" href="http://www.archive.org/details/TheStateOfDrupalAsAWebApplicationProductPlatform">http://www.archive.org/details/TheStateOfDrupalAsAWebApplicationProductP&#8230;</a></li>
<li>Theme Preprocess Functions: an Introduction &#8211; <a title="http://www.archive.org/details/ThemePreprocessFunctionsAnIntroduction" href="http://www.archive.org/details/ThemePreprocessFunctionsAnIntroduction">http://www.archive.org/details/ThemePreprocessFunctionsAnIntroduction</a></li>
<li>The State of Panels 3 and More of What You Love &#8211; <a title="http://www.archive.org/details/TheHeartOfOpenAtriumContextPurlAndSpaces" href="http://www.archive.org/details/TheHeartOfOpenAtriumContextPurlAndSpaces">http://www.archive.org/details/TheHeartOfOpenAtriumContextPurlAndSpaces</a></li>
<li>Make Drupal Run Fast &#8211; increase page load speed &#8211; <a title="http://www.archive.org/details/MakeDrupalRunFast-IncreasePageLoadSpeed" href="http://www.archive.org/details/MakeDrupalRunFast-IncreasePageLoadSpeed">http://www.archive.org/details/MakeDrupalRunFast-IncreasePageLoadSpeed</a></li>
<li>Lullabot Case Study &#8211; <a title="http://www.archive.org/details/LullabotCaseStudy" href="http://www.archive.org/details/LullabotCaseStudy">http://www.archive.org/details/LullabotCaseStudy</a></li>
<li>20 APIs Every Drupal Developer Should Know &#8211; <a title="http://www.archive.org/details/20ApisEveryDrupalDeveloperShouldKnow" href="http://www.archive.org/details/20ApisEveryDrupalDeveloperShouldKnow">http://www.archive.org/details/20ApisEveryDrupalDeveloperShouldKnow</a></li>
<li>Case Studies in Social Commerce: Waste Management&#8217;s Greenopolis  &amp; Mattel.com &#8211; <a title="http://www.archive.org/details/CaseStudiesInSocialCommerceWasteManagementsGreenopolisMattel.com" href="http://www.archive.org/details/CaseStudiesInSocialCommerceWasteManagementsGreenopolisMattel.com">http://www.archive.org/details/CaseStudiesInSocialCommerceWasteManagemen&#8230;</a></li>
<li>The State of Drupal &#8211; <a title="http://www.archive.org/details/Css3TheFutureIsNow" href="http://www.archive.org/details/Css3TheFutureIsNow">http://www.archive.org/details/Css3TheFutureIsNow</a></li>
<li>Aggregate and import with Feeds! &#8211; <a title="http://www.archive.org/details/StopDecoratingAndStartDesigningViewEdit" href="http://www.archive.org/details/StopDecoratingAndStartDesigningViewEdit">http://www.archive.org/details/StopDecoratingAndStartDesigningViewEdit</a></li>
<li>CSS3: The Future is Now &#8211; <a title="http://www.archive.org/details/Css3TheFutureIsNow_361" href="http://www.archive.org/details/Css3TheFutureIsNow_361">http://www.archive.org/details/Css3TheFutureIsNow_361</a></li>
<li>Drupal security for site administrators and beginners &#8211; <a title="http://www.archive.org/details/DrupalSecurityForSiteAdministratorsAndBeginners" href="http://www.archive.org/details/DrupalSecurityForSiteAdministratorsAndBeginners">http://www.archive.org/details/DrupalSecurityForSiteAdministratorsAndBeg&#8230;</a></li>
<li>Monetizing Drupal &#8211; <a title="http://www.archive.org/details/MonetizingDrupal" href="http://www.archive.org/details/MonetizingDrupal">http://www.archive.org/details/MonetizingDrupal</a></li>
<li>AJAX and Javascript in Drupal7 (for developers) &#8211; <a title="http://www.archive.org/details/AjaxAndJavascriptInDrupal7forDevelopers" href="http://www.archive.org/details/AjaxAndJavascriptInDrupal7forDevelopers">http://www.archive.org/details/AjaxAndJavascriptInDrupal7forDevelopers</a></li>
<li>Drupal 7: What you need to know &#8211; <a title="http://www.archive.org/details/Drupal7WhatYouNeedToKnow" href="http://www.archive.org/details/Drupal7WhatYouNeedToKnow">http://www.archive.org/details/Drupal7WhatYouNeedToKnow</a></li>
<li>Enterprise trends: Analyst panel &#8211; CMS experts &#8211; <a title="http://www.archive.org/details/EnterpriseTrendsAnalystPanel-CmsExperts" href="http://www.archive.org/details/EnterpriseTrendsAnalystPanel-CmsExperts">http://www.archive.org/details/EnterpriseTrendsAnalystPanel-CmsExperts</a></li>
<li>Mining Social Media For Awesome Drupal Gigs &#8211; <a title="http://www.archive.org/details/MiningSocialMediaForAwesomeDrupalGigs" href="http://www.archive.org/details/MiningSocialMediaForAwesomeDrupalGigs">http://www.archive.org/details/MiningSocialMediaForAwesomeDrupalGigs</a></li>
<li>Objectifying PHP &#8211; <a title="http://www.archive.org/details/ObjectifyingPhp" href="http://www.archive.org/details/ObjectifyingPhp">http://www.archive.org/details/ObjectifyingPhp</a></li>
<li>Design for Drupal: A Template Approach &#8211; <a title="http://www.archive.org/details/DesignForDrupalATemplateApproach" href="http://www.archive.org/details/DesignForDrupalATemplateApproach">http://www.archive.org/details/DesignForDrupalATemplateApproach</a></li>
<li>Drupal site security for coders and themers &#8211; <a title="http://www.archive.org/details/DrupalSiteSecurityForCodersAndThemers" href="http://www.archive.org/details/DrupalSiteSecurityForCodersAndThemers">http://www.archive.org/details/DrupalSiteSecurityForCodersAndThemers</a></li>
<li>Drupal 7 and Microsoft SQL Server &#8211; <a title="http://www.archive.org/details/Drupal7AndMicrosoftSqlServer" href="http://www.archive.org/details/Drupal7AndMicrosoftSqlServer">http://www.archive.org/details/Drupal7AndMicrosoftSqlServer</a></li>
<li>CCK Demystified &#8211; <a title="http://www.archive.org/details/CckDemystified" href="http://www.archive.org/details/CckDemystified">http://www.archive.org/details/CckDemystified</a> &#8211; <a title="http://www.archive.org/details/ViewsDemystified-Part2" href="http://www.archive.org/details/ViewsDemystified-Part2">http://www.archive.org/details/ViewsDemystified-Part2</a></li>
<li>D7UX: How to integrate the core Drupal 7 usability improvements with  your module &#8211; <a title="http://www.archive.org/details/D7uxHowToIntegrateTheCoreDrupal7UsabilityImprovementsWithYourModule" href="http://www.archive.org/details/D7uxHowToIntegrateTheCoreDrupal7UsabilityImprovementsWithYourModule">http://www.archive.org/details/D7uxHowToIntegrateTheCoreDrupal7Usability&#8230;</a></li>
<li>Case Studies in Publishing: Time Out NY and Taunton Press &#8211; <a title="http://www.archive.org/details/CaseStudiesInPublishingTimeOutNyAndTauntonPress" href="http://www.archive.org/details/CaseStudiesInPublishingTimeOutNyAndTauntonPress">http://www.archive.org/details/CaseStudiesInPublishingTimeOutNyAndTaunto&#8230;</a></li>
<li>PubSubHubbub to the rescue&#8211; Real-time feeds and the future of  social networks &#8211; <a title="http://www.archive.org/details/PubsubhubbubToTheRescue--Real-timeFeedsAndTheFutureOfSocialNetworks" href="http://www.archive.org/details/PubsubhubbubToTheRescue--Real-timeFeedsAndTheFutureOfSocialNetworks">http://www.archive.org/details/PubsubhubbubToTheRescue&#8211;Real-timeFeedsAn&#8230;</a></li>
<li>Stop Decorating and Start Designing &#8211; <a title="http://www.archive.org/details/StopDecoratingAndStartDesigning" href="http://www.archive.org/details/StopDecoratingAndStartDesigning">http://www.archive.org/details/StopDecoratingAndStartDesigning</a></li>
<li>From Photoshop to Drupal Theme &#8211; <a title="http://www.archive.org/details/FromPhotoshopToDrupalTheme" href="http://www.archive.org/details/FromPhotoshopToDrupalTheme">http://www.archive.org/details/FromPhotoshopToDrupalTheme</a></li>
<li>Planning and Executing a Successful Drupal Implementation &#8211; <a title="http://www.archive.org/details/PlanningAndExecutingASuccessfulDrupalImplementation" href="http://www.archive.org/details/PlanningAndExecutingASuccessfulDrupalImplementation">http://www.archive.org/details/PlanningAndExecutingASuccessfulDrupalImpl&#8230;</a></li>
<li>Drupal as a web services platform using the Services module &#8211; <a title="http://www.archive.org/details/DrupalAsAWebServicesPlatformUsingTheServicesModule" href="http://www.archive.org/details/DrupalAsAWebServicesPlatformUsingTheServicesModule">http://www.archive.org/details/DrupalAsAWebServicesPlatformUsingTheServi&#8230;</a></li>
<li>Going Vertical: How niche marketing can launch your Drupal business &#8211;  <a title="http://www.archive.org/details/GoingVerticalHowNicheMarketingCanLaunchYourDrupalBusiness" href="http://www.archive.org/details/GoingVerticalHowNicheMarketingCanLaunchYourDrupalBusiness">http://www.archive.org/details/GoingVerticalHowNicheMarketingCanLaunchYo&#8230;</a></li>
<li>Default theme implementations: a guide for module developers who  want sweet love from Morten and JohnAlbin &#8211; <a title="http://www.archive.org/details/DefaultThemeImplementationsAGuideForModuleDevelopersWhoWantSweet" href="http://www.archive.org/details/DefaultThemeImplementationsAGuideForModuleDevelopersWhoWantSweet">http://www.archive.org/details/DefaultThemeImplementationsAGuideForModul&#8230;</a></li>
<li>Adopting a Standard for the Enterprise: A Case Study of Florida  Hospital &#8211; <a title="http://www.archive.org/details/AdoptingAStandardForTheEnterpriseACaseStudyOfFloridaHospital" href="http://www.archive.org/details/AdoptingAStandardForTheEnterpriseACaseStudyOfFloridaHospital">http://www.archive.org/details/AdoptingAStandardForTheEnterpriseACaseStu&#8230;</a></li>
<li>Open Source Opens Doors for Youth: a  professional/nonprofit/foundation collaboration builds a youth social  enterprise &#8211; <a title="http://www.archive.org/details/OpenSourceOpensDoorsForYouthAProfessionalnonprofitfoundation" href="http://www.archive.org/details/OpenSourceOpensDoorsForYouthAProfessionalnonprofitfoundation">http://www.archive.org/details/OpenSourceOpensDoorsForYouthAProfessional&#8230;</a></li>
<li>Drupal 7 here we come! &#8211; <a title="http://www.archive.org/details/Drupal7HereWeCome" href="http://www.archive.org/details/Drupal7HereWeCome">http://www.archive.org/details/Drupal7HereWeCome</a></li>
<li>Parlez vous Internet? Ignore the rest of the world at your own risk.   &#8211; <a title="http://www.archive.org/details/ParlezVousInternetIgnoreTheRestOfTheWorldAtYourOwnRisk_618" href="http://www.archive.org/details/ParlezVousInternetIgnoreTheRestOfTheWorldAtYourOwnRisk_618">http://www.archive.org/details/ParlezVousInternetIgnoreTheRestOfTheWorld&#8230;</a></li>
<li>Search Engine Optimization (SEO) for your Drupal site &#8211; <a title="http://www.archive.org/details/SearchEngineOptimizationseoForYourDrupalSite" href="http://www.archive.org/details/SearchEngineOptimizationseoForYourDrupalSite">http://www.archive.org/details/SearchEngineOptimizationseoForYourDrupalSite</a></li>
<li>Show Don&#8217;t Tell: Guerilla Usability Testing &#8211; <a title="http://www.archive.org/details/ShowDontTellGuerillaUsabilityTesting" href="http://www.archive.org/details/ShowDontTellGuerillaUsabilityTesting">http://www.archive.org/details/ShowDontTellGuerillaUsabilityTesting</a></li>
<li>jQuery for Designers and Themers &#8211; <a title="http://www.archive.org/details/JqueryForDesignersAndThemers_587" href="http://www.archive.org/details/JqueryForDesignersAndThemers_587">http://www.archive.org/details/JqueryForDesignersAndThemers_587</a></li>
<li>Batch vs. Queue: an API Smackdown &#8211; <a title="http://www.archive.org/details/BatchVs.QueueAnApiSmackdown" href="http://www.archive.org/details/BatchVs.QueueAnApiSmackdown">http://www.archive.org/details/BatchVs.QueueAnApiSmackdown</a></li>
<li>&#8220;Don&#8217;t Touch that Server&#8221;: A toolkit for zero-touch production  environments &#8211; <a title="http://www.archive.org/details/dontTouchThatServerAToolkitForZero-touchProductionEnvironments" href="http://www.archive.org/details/dontTouchThatServerAToolkitForZero-touchProductionEnvironments">http://www.archive.org/details/dontTouchThatServerAToolkitForZero-touchP&#8230;</a></li>
<li>Enterprise Architecture for Drupal &#8211; <a title="http://www.archive.org/details/EnterpriseArchitectureForDrupal" href="http://www.archive.org/details/EnterpriseArchitectureForDrupal">http://www.archive.org/details/EnterpriseArchitectureForDrupal</a></li>
<li>Drupal Gardens: Design to online in 15 minutes  &#8211; <a title="http://www.archive.org/details/DrupalGardensDesignToOnlineIn15Minutes" href="http://www.archive.org/details/DrupalGardensDesignToOnlineIn15Minutes">http://www.archive.org/details/DrupalGardensDesignToOnlineIn15Minutes</a></li>
<li>Conversion Rate Optimization (CRO) for Drupal &#8211; <a title="http://www.archive.org/details/Cro-conversionRateOptimizationForDrupal" href="http://www.archive.org/details/Cro-conversionRateOptimizationForDrupal">http://www.archive.org/details/Cro-conversionRateOptimizationForDrupal</a></li>
<li>Accelerated grid theming using NineSixty &#8211; <a title="http://www.archive.org/details/AcceleratedGridThemingUsingNinesixty_610" href="http://www.archive.org/details/AcceleratedGridThemingUsingNinesixty_610">http://www.archive.org/details/AcceleratedGridThemingUsingNinesixty_610</a></li>
<li>jQuery, Views, and View Themeing &#8211; <a title="http://www.archive.org/details/JqueryViewsAndViewThemeing" href="http://www.archive.org/details/JqueryViewsAndViewThemeing">http://www.archive.org/details/JqueryViewsAndViewThemeing</a></li>
<li>Leveraging the Chaos tool suite for module development &#8211; <a title="http://www.archive.org/details/LeveragingTheChaosToolSuiteForModuleDevelopment" href="http://www.archive.org/details/LeveragingTheChaosToolSuiteForModuleDevelopment">http://www.archive.org/details/LeveragingTheChaosToolSuiteForModuleDevel&#8230;</a></li>
<li>A Match Made in the Cloud – How to Best Take Advantage of Cloud  Technologies with Drupal Sites &#8211; <a title="http://www.archive.org/details/HowToBestTakeAdvantageOfCloudTechnologiesWithDrupalSites-AMatch" href="http://www.archive.org/details/HowToBestTakeAdvantageOfCloudTechnologiesWithDrupalSites-AMatch">http://www.archive.org/details/HowToBestTakeAdvantageOfCloudTechnologies&#8230;</a></li>
<li>Case Studies in Academia: Drupal at ASU &amp; Johns Hopkins  Knowledge for Health &#8211; <a title="http://www.archive.org/details/CaseStudiesInAcademiaDrupalAtAsuJohnsHopkinsKnowledgeForHealth" href="http://www.archive.org/details/CaseStudiesInAcademiaDrupalAtAsuJohnsHopkinsKnowledgeForHealth">http://www.archive.org/details/CaseStudiesInAcademiaDrupalAtAsuJohnsHopk&#8230;</a></li>
<li>Theming in Drupal Gardens &#8211; <a title="http://www.archive.org/details/ThemingInDrupalGardens" href="http://www.archive.org/details/ThemingInDrupalGardens">http://www.archive.org/details/ThemingInDrupalGardens</a></li>
<li>Facebook Applications, Powered by Drupal &#8211; <a title="http://www.archive.org/details/FacebookApplicationsPoweredByDrupal" href="http://www.archive.org/details/FacebookApplicationsPoweredByDrupal">http://www.archive.org/details/FacebookApplicationsPoweredByDrupal</a></li>
<li>Elevating 960gs in Drupal with the Omega theme &#8211; <a title="http://www.archive.org/details/Elevating960gsInDrupalWithTheOmegaTheme" href="http://www.archive.org/details/Elevating960gsInDrupalWithTheOmegaTheme">http://www.archive.org/details/Elevating960gsInDrupalWithTheOmegaTheme</a></li>
<li>Social Analytics for 120 Warner Bros. Records Artist sites &#8211; <a title="http://www.archive.org/details/DrupalForData" href="http://www.archive.org/details/DrupalForData">http://www.archive.org/details/DrupalForData</a></li>
<li>Views for developers &#8211; <a title="http://www.archive.org/details/ViewsForDevelopers" href="http://www.archive.org/details/ViewsForDevelopers">http://www.archive.org/details/ViewsForDevelopers</a></li>
<li>Challenges of hosting Drupal on AWS &#8211; <a title="http://www.archive.org/details/ChallengesOfHostingDrupalOnAws" href="http://www.archive.org/details/ChallengesOfHostingDrupalOnAws">http://www.archive.org/details/ChallengesOfHostingDrupalOnAws</a></li>
<li>Drupal Publisher&#8217;s Panel &#8211; <a title="http://www.archive.org/details/DrupalPublishersPanel" href="http://www.archive.org/details/DrupalPublishersPanel">http://www.archive.org/details/DrupalPublishersPanel</a></li>
<li>Open Source in the Cloud Era &#8211; <a title="http://www.archive.org/details/OpenSourceInTheCloudEra" href="http://www.archive.org/details/OpenSourceInTheCloudEra">http://www.archive.org/details/OpenSourceInTheCloudEra</a></li>
<li>Design and Theming: What&#8217;s new in Drupal 7 &#8211; <a title="http://www.archive.org/details/DesignAndThemingWhatsNewInDrupal7" href="http://www.archive.org/details/DesignAndThemingWhatsNewInDrupal7">http://www.archive.org/details/DesignAndThemingWhatsNewInDrupal7</a></li>
<li>Apache Solr Search Mastery &#8211; <a title="http://www.archive.org/details/ApacheSolrSearchMastery" href="http://www.archive.org/details/ApacheSolrSearchMastery">http://www.archive.org/details/ApacheSolrSearchMastery</a></li>
<li>2.4 million page views per day, 60 M per month, one server! &#8211; <a title="http://www.archive.org/details/2.4MillionPageViewsPerDay60MPerMonthOneServer" href="http://www.archive.org/details/2.4MillionPageViewsPerDay60MPerMonthOneServer">http://www.archive.org/details/2.4MillionPageViewsPerDay60MPerMonthOneSe&#8230;</a></li>
<li>Page render drill down in Drupal 7 &#8211; <a title="http://www.archive.org/details/PageRenderDrillDownInDrupal7" href="http://www.archive.org/details/PageRenderDrillDownInDrupal7">http://www.archive.org/details/PageRenderDrillDownInDrupal7</a></li>
<li>MySQL Highlights &#8211; <a title="http://www.archive.org/details/MysqlHighlights" href="http://www.archive.org/details/MysqlHighlights">http://www.archive.org/details/MysqlHighlights</a></li>
<li>How Drupal 7 Fields are changing the way you write modules &#8211; <a title="http://www.archive.org/details/HowDrupal7FieldsAreChangingTheWayYouWriteModules" href="http://www.archive.org/details/HowDrupal7FieldsAreChangingTheWayYouWriteModules">http://www.archive.org/details/HowDrupal7FieldsAreChangingTheWayYouWrite&#8230;</a></li>
<li>Defining and pitching your process &#8211; <a title="http://www.archive.org/details/DefiningAndPitchingYourProcess" href="http://www.archive.org/details/DefiningAndPitchingYourProcess">http://www.archive.org/details/DefiningAndPitchingYourProcess</a></li>
<li>Case Studies in Non Profits: Jane Goodall and Musescore &#8211; <a title="http://www.archive.org/details/CaseStudiesInNonProfitsJaneGoodallAndMusescore" href="http://www.archive.org/details/CaseStudiesInNonProfitsJaneGoodallAndMusescore">http://www.archive.org/details/CaseStudiesInNonProfitsJaneGoodallAndMuse&#8230;</a></li>
<li>Grok Drupal (7) Theming &#8211; <a title="http://www.archive.org/details/GrokDrupal7Theming" href="http://www.archive.org/details/GrokDrupal7Theming">http://www.archive.org/details/GrokDrupal7Theming</a></li>
<li>Build a Powerful Site Search with the User-Friendly, Easy-to-Install  Search Lucene API Module Suite &#8211; <a title="http://www.archive.org/details/BuildAPowerfulSiteSearchWithTheUser-friendlyEasy-to-installSearch" href="http://www.archive.org/details/BuildAPowerfulSiteSearchWithTheUser-friendlyEasy-to-installSearch">http://www.archive.org/details/BuildAPowerfulSiteSearchWithTheUser-frien&#8230;</a></li>
<li>Performance testing The Economist Online using The Grinder &#8211; <a title="http://www.archive.org/details/PerformanceTestingTheEconomistOnlineUsingTheGrinder" href="http://www.archive.org/details/PerformanceTestingTheEconomistOnlineUsingTheGrinder">http://www.archive.org/details/PerformanceTestingTheEconomistOnlineUsing&#8230;</a></li>
<li>Making Drupal Admin Simple &#8211; <a title="http://www.archive.org/details/MakingDrupalAdminSimple" href="http://www.archive.org/details/MakingDrupalAdminSimple">http://www.archive.org/details/MakingDrupalAdminSimple</a></li>
<li>The Future Of MySQL: Forks, Patches And Decisions &#8211; <a title="http://www.archive.org/details/TheFutureOfMysqlForksPatchesAndDecisions" href="http://www.archive.org/details/TheFutureOfMysqlForksPatchesAndDecisions">http://www.archive.org/details/TheFutureOfMysqlForksPatchesAndDecisions</a></li>
<li>CCK to Fields: Getting There From Here &#8211; <a title="http://www.archive.org/details/CckToFieldsGettingThereFromHere_19" href="http://www.archive.org/details/CckToFieldsGettingThereFromHere_19">http://www.archive.org/details/CckToFieldsGettingThereFromHere_19</a></li>
<li>Strategies for Community Contributions &#8211; <a title="http://www.archive.org/details/StrategiesForCommunityContributions" href="http://www.archive.org/details/StrategiesForCommunityContributions">http://www.archive.org/details/StrategiesForCommunityContributions</a></li>
<li>An enterprise approach to securing your Drupal sites &#8211; <a title="http://www.archive.org/details/AnEnterpriseApproachToSecuringYourDrupalSites" href="http://www.archive.org/details/AnEnterpriseApproachToSecuringYourDrupalSites">http://www.archive.org/details/AnEnterpriseApproachToSecuringYourDrupalS&#8230;</a></li>
<li>Theming with Skinr &#8211; <a title="http://www.archive.org/details/ThemingWithSkinr" href="http://www.archive.org/details/ThemingWithSkinr">http://www.archive.org/details/ThemingWithSkinr</a></li>
<li>Trends in Design and Architecture of Big Drupal Sites &#8211; <a title="http://www.archive.org/details/TrendsInDesignAndArchitectureOfBigDrupalSites" href="http://www.archive.org/details/TrendsInDesignAndArchitectureOfBigDrupalSites">http://www.archive.org/details/TrendsInDesignAndArchitectureOfBigDrupalS&#8230;</a></li>
<li>HipHop for PHP &#8211; <a title="http://www.archive.org/details/HiphopForPhp_83" href="http://www.archive.org/details/HiphopForPhp_83">http://www.archive.org/details/HiphopForPhp_83</a></li>
<li>Managing and deploying configuration with exportables and the  Features module &#8211; <a title="http://www.archive.org/details/DrupalconSf2010ManagingAndDeployingConfigurationWithExportablesAnd" href="http://www.archive.org/details/DrupalconSf2010ManagingAndDeployingConfigurationWithExportablesAnd">http://www.archive.org/details/DrupalconSf2010ManagingAndDeployingConfig&#8230;</a></li>
<li>Panels, Panels Everywhere &#8211; <a title="http://www.archive.org/details/DrupalonSf2010PanelsPanelsEverywhere" href="http://www.archive.org/details/DrupalonSf2010PanelsPanelsEverywhere">http://www.archive.org/details/DrupalonSf2010PanelsPanelsEverywhere</a></li>
<li>The exodus: leading Drupal out of CVS &#8211; <a title="http://www.archive.org/details/DrupalconSf2010TheExodusLeadingDrupalOutOfCvs" href="http://www.archive.org/details/DrupalconSf2010TheExodusLeadingDrupalOutOfCvs">http://www.archive.org/details/DrupalconSf2010TheExodusLeadingDrupalOutO&#8230;</a></li>
<li>Token for Fun and Profit in Drupal 7 &#8211; <a title="http://www.archive.org/details/TokenForFunAndProfitInDrupal7" href="http://www.archive.org/details/TokenForFunAndProfitInDrupal7">http://www.archive.org/details/TokenForFunAndProfitInDrupal7</a></li>
<li>YOU SHALL NOT PASS: Managing Expectations and Boundaries of Clients &#8211;  <a title="http://www.archive.org/details/YouShallNotPassManagingExpectationsAndBoundariesOfClients" href="http://www.archive.org/details/YouShallNotPassManagingExpectationsAndBoundariesOfClients">http://www.archive.org/details/YouShallNotPassManagingExpectationsAndBou&#8230;</a></li>
<li>Node Access in Drupal 7 &#8211; <a title="http://www.archive.org/details/NodeAccessInDrupal7" href="http://www.archive.org/details/NodeAccessInDrupal7">http://www.archive.org/details/NodeAccessInDrupal7</a></li>
<li>Best Practices For Managing a Drupal Firm &#8211; <a title="http://www.archive.org/details/BestPracticesForManagingADrupalFirm" href="http://www.archive.org/details/BestPracticesForManagingADrupalFirm">http://www.archive.org/details/BestPracticesForManagingADrupalFirm</a></li>
<li>Ubercart for Beginners &#8211; <a title="http://www.archive.org/details/UbercartForBeginners" href="http://www.archive.org/details/UbercartForBeginners">http://www.archive.org/details/UbercartForBeginners</a></li>
<li>Drupal Distributions on drupal.org &#8211; <a title="http://www.archive.org/details/DrupalconSf2010DrupalDistributionsOnDrupal.org" href="http://www.archive.org/details/DrupalconSf2010DrupalDistributionsOnDrupal.org">http://www.archive.org/details/DrupalconSf2010DrupalDistributionsOnDrupa&#8230;</a></li>
<li>Web Typography: Take your Designs from Good to Great  &#8211; <a title="http://www.archive.org/details/DrupalconSf2010WebTypographyTakeYourDesignsFromGoodToGreat" href="http://www.archive.org/details/DrupalconSf2010WebTypographyTakeYourDesignsFromGoodToGreat">http://www.archive.org/details/DrupalconSf2010WebTypographyTakeYourDesig&#8230;</a></li>
<li>Shh! This is a (Drupal-powered) Library Site! &#8211; <a title="http://www.archive.org/details/ShhThisIsAdrupal-poweredLibrarySite" href="http://www.archive.org/details/ShhThisIsAdrupal-poweredLibrarySite">http://www.archive.org/details/ShhThisIsAdrupal-poweredLibrarySite</a></li>
<li>Media Module: Multimedia in Drupal 7 &#8211; <a title="http://www.archive.org/details/MediaModuleMultimediaInDrupal7" href="http://www.archive.org/details/MediaModuleMultimediaInDrupal7">http://www.archive.org/details/MediaModuleMultimediaInDrupal7</a></li>
<li>Developing Apps for iPhone/iPad/Android using drupal as Base System &#8211;  <a title="http://www.archive.org/details/DevelopingAppsForIphoneipadandroidUsingDrupalAsBaseSystem" href="http://www.archive.org/details/DevelopingAppsForIphoneipadandroidUsingDrupalAsBaseSystem">http://www.archive.org/details/DevelopingAppsForIphoneipadandroidUsingDr&#8230;</a></li>
<li>The Magic of Teams: Communication &amp; Collaboration &#8211; <a title="http://www.archive.org/details/TheMagicOfTeamsCommunicationCollaboration" href="http://www.archive.org/details/TheMagicOfTeamsCommunicationCollaboration">http://www.archive.org/details/TheMagicOfTeamsCommunicationCollaboration</a></li>
<li>From a contractor to a shop: How to make the leap &#8211; <a title="http://www.archive.org/details/FromAContractorToAShopHowToMakeTheLeap" href="http://www.archive.org/details/FromAContractorToAShopHowToMakeTheLeap">http://www.archive.org/details/FromAContractorToAShopHowToMakeTheLeap</a></li>
<li>From Ubercart to Drupal Commerce &#8211; <a title="http://www.archive.org/details/DrupalconSf2010FromUbercartToDrupalCommerce" href="http://www.archive.org/details/DrupalconSf2010FromUbercartToDrupalCommerce">http://www.archive.org/details/DrupalconSf2010FromUbercartToDrupalCommerce</a></li>
<li>Drush &#8211; <a title="http://www.archive.org/details/DrupalconSf2010Drush" href="http://www.archive.org/details/DrupalconSf2010Drush">http://www.archive.org/details/DrupalconSf2010Drush</a></li>
<li>Instant Dynamic Forms with #states &#8211; <a title="http://www.archive.org/details/InstantDynamicFormsWithstates" href="http://www.archive.org/details/InstantDynamicFormsWithstates">http://www.archive.org/details/InstantDynamicFormsWithstates</a></li>
<li>The Drupal Association &#8211; Stewards of the Drop &#8211; <a title="http://www.archive.org/details/TheDrupalAssociation-StewardsOfTheDrop" href="http://www.archive.org/details/TheDrupalAssociation-StewardsOfTheDrop">http://www.archive.org/details/TheDrupalAssociation-StewardsOfTheDrop</a></li>
<li>Harnessing Drupal for Your Next Web Project &#8211; <a title="http://www.archive.org/details/HarnessingDrupalForYourNextWebProject" href="http://www.archive.org/details/HarnessingDrupalForYourNextWebProject">http://www.archive.org/details/HarnessingDrupalForYourNextWebProject</a></li>
<li>iPhone, Drupal, and Web Services &#8211; <a title="http://www.archive.org/details/IphoneDrupalAndWebServices" href="http://www.archive.org/details/IphoneDrupalAndWebServices">http://www.archive.org/details/IphoneDrupalAndWebServices</a></li>
<li>Top 100 Useful Contributed Modules &#8211; <a title="http://www.archive.org/details/Top100UsefulContributedModules" href="http://www.archive.org/details/Top100UsefulContributedModules">http://www.archive.org/details/Top100UsefulContributedModules</a></li>
<li>Best Practices for Freelancers and One-Person Shops &#8211; <a title="http://www.archive.org/details/BestPracticesForFreelancersAndOne-personShops" href="http://www.archive.org/details/BestPracticesForFreelancersAndOne-personShops">http://www.archive.org/details/BestPracticesForFreelancersAndOne-personS&#8230;</a></li>
<li>Theme Ubercart, Make Your Store Shine &#8211; <a title="http://www.archive.org/details/DrupalconSf2010ThemeUbercartMakeYourStoreShine" href="http://www.archive.org/details/DrupalconSf2010ThemeUbercartMakeYourStoreShine">http://www.archive.org/details/DrupalconSf2010ThemeUbercartMakeYourStore&#8230;</a></li>
<li>Advanced Drush &#8211; <a title="http://www.archive.org/details/DrupalconSf2010AdvancedDrush" href="http://www.archive.org/details/DrupalconSf2010AdvancedDrush">http://www.archive.org/details/DrupalconSf2010AdvancedDrush</a></li>
<li>The Future of Drupal in Government &#8211; <a title="http://www.archive.org/details/DrupalconSf2010TheFutureOfDrupalInGovernment" href="http://www.archive.org/details/DrupalconSf2010TheFutureOfDrupalInGovernment">http://www.archive.org/details/DrupalconSf2010TheFutureOfDrupalInGovernment</a></li>
<li>How to build a Jobs Aggregation Search Engine with Nutch, Apache  Solr and Views 3 in about an hour &#8211; <a title="http://www.archive.org/details/HowToBuildAJobsAggregationSearchEngineWithNutchApacheSolrAndViews" href="http://www.archive.org/details/HowToBuildAJobsAggregationSearchEngineWithNutchApacheSolrAndViews">http://www.archive.org/details/HowToBuildAJobsAggregationSearchEngineWit&#8230;</a></li>
<li>Efficient workflow for design and development projects &#8211; <a title="http://www.archive.org/details/EfficientWorkflowForDesignAndDevelopmentProjects" href="http://www.archive.org/details/EfficientWorkflowForDesignAndDevelopmentProjects">http://www.archive.org/details/EfficientWorkflowForDesignAndDevelopmentP&#8230;</a></li>
<li>Open Source in Government &#8211; <a title="http://www.archive.org/details/OpenSourceInGovernment" href="http://www.archive.org/details/OpenSourceInGovernment">http://www.archive.org/details/OpenSourceInGovernment</a></li>
<li>PHP for NonProgrammers &#8211; <a title="http://www.archive.org/details/PhpForNonprogrammers_261" href="http://www.archive.org/details/PhpForNonprogrammers_261">http://www.archive.org/details/PhpForNonprogrammers_261</a></li>
<li>Turning that UX Frown Upside-Down &#8211; <a title="http://www.archive.org/details/DrupalconSf2010TurningThatUxFrownUpside-down" href="http://www.archive.org/details/DrupalconSf2010TurningThatUxFrownUpside-down">http://www.archive.org/details/DrupalconSf2010TurningThatUxFrownUpside-down</a></li>
<li>Display Suite &#8211; central and clean administration of your object  displays &#8211; <a title="http://www.archive.org/details/DisplaySuite-CentralAndCleanAdministrationOfYourObjectDisplays" href="http://www.archive.org/details/DisplaySuite-CentralAndCleanAdministrationOfYourObjectDisplays">http://www.archive.org/details/DisplaySuite-CentralAndCleanAdministratio&#8230;</a></li>
<li>Databases: The Next Generation &#8211; <a title="http://www.archive.org/details/DatabasesTheNextGeneration" href="http://www.archive.org/details/DatabasesTheNextGeneration">http://www.archive.org/details/DatabasesTheNextGeneration</a></li>
<li>Providing a Scalable Infrastructure for Whitehouse.gov &#8211; <a title="http://www.archive.org/details/DrupalconSf2010ProvidingAScalableInfrastructureForWhitehouse.gov" href="http://www.archive.org/details/DrupalconSf2010ProvidingAScalableInfrastructureForWhitehouse.gov">http://www.archive.org/details/DrupalconSf2010ProvidingAScalableInfrastr&#8230;</a></li>
<li>Virtual Teams and the Enterprise. Virtually Impossible &#8211; <a title="http://www.archive.org/details/VirtualTeamsAndTheEnterprise.VirtuallyImpossible" href="http://www.archive.org/details/VirtualTeamsAndTheEnterprise.VirtuallyImpossible">http://www.archive.org/details/VirtualTeamsAndTheEnterprise.VirtuallyImp&#8230;</a></li>
<li>Building a viral marketing and customer rewards e-commerce site &#8211; <a title="http://www.archive.org/details/BuildingAViralMarketingAndCustomerRewardsE-commerceSite" href="http://www.archive.org/details/BuildingAViralMarketingAndCustomerRewardsE-commerceSite">http://www.archive.org/details/BuildingAViralMarketingAndCustomerRewards&#8230;</a></li>
<li>Module Building for Beginners (Drupal 6 and 7) &#8211; Intro and Workshop &#8211;  <a title="http://www.archive.org/details/BestPracticesInContribDevelopmentAndSupport_285" href="http://www.archive.org/details/BestPracticesInContribDevelopmentAndSupport_285">http://www.archive.org/details/BestPracticesInContribDevelopmentAndSuppo&#8230;</a></li>
<li>The story of RDF in Drupal 7 and what it means for the Web at large &#8211;  <a title="http://www.archive.org/details/TheStoryOfRdfInDrupal7AndWhatItMeansForTheWebAtLarge" href="http://www.archive.org/details/TheStoryOfRdfInDrupal7AndWhatItMeansForTheWebAtLarge">http://www.archive.org/details/TheStoryOfRdfInDrupal7AndWhatItMeansForTh&#8230;</a></li>
<li>Drupal 7 UX: Making Drupal Simple to Use for Everyone &#8211; <a title="http://www.archive.org/details/DrupalconSf2010Drupal7UxMakingDrupalSimpleToUseForEveryone" href="http://www.archive.org/details/DrupalconSf2010Drupal7UxMakingDrupalSimpleToUseForEveryone">http://www.archive.org/details/DrupalconSf2010Drupal7UxMakingDrupalSimpl&#8230;</a></li>
<li>All your html are belong to us #2 &#8211; Revenge of the markup &#8211; <a title="http://www.archive.org/details/AllYourHtmlAreBelongToUs2-RevengeOfTheMarkup" href="http://www.archive.org/details/AllYourHtmlAreBelongToUs2-RevengeOfTheMarkup">http://www.archive.org/details/AllYourHtmlAreBelongToUs2-RevengeOfTheMarkup</a></li>
<li>MongoDB &#8211; Humongous Drupal &#8211; <a title="http://www.archive.org/details/Mongodb-HumongousDrupal" href="http://www.archive.org/details/Mongodb-HumongousDrupal">http://www.archive.org/details/Mongodb-HumongousDrupal</a></li>
<li>Aegir Hosting System &#8211; one Drupal to rule them all &#8211; <a title="http://www.archive.org/details/AegirHostingSystem-OneDrupalToRuleThemAll" href="http://www.archive.org/details/AegirHostingSystem-OneDrupalToRuleThemAll">http://www.archive.org/details/AegirHostingSystem-OneDrupalToRuleThemAll</a></li>
<li>Beyond Budget and Scope: Managing Client Expectations and Delivering  Value &#8211; <a title="http://www.archive.org/details/BeyondBudgetAndScopeManagingClientExpectationsAndDeliveringValue" href="http://www.archive.org/details/BeyondBudgetAndScopeManagingClientExpectationsAndDeliveringValue">http://www.archive.org/details/BeyondBudgetAndScopeManagingClientExpecta&#8230;</a></li>
<li>Enterprise Content Management With Drupal, Alfresco and CMIS &#8211; <a title="http://www.archive.org/details/EnterpriseContentManagementWithDrupalAlfrescoAndCmi" href="http://www.archive.org/details/EnterpriseContentManagementWithDrupalAlfrescoAndCmi">http://www.archive.org/details/EnterpriseContentManagementWithDrupalAlfr&#8230;</a></li>
</blockquote>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.flexvn.net/blog/drupal/drupalcon-2010-video.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drupal theme with 960 grid system</title>
		<link>http://www.flexvn.net/blog/drupal/drupal-theme-with-960-grid-system.php</link>
		<comments>http://www.flexvn.net/blog/drupal/drupal-theme-with-960-grid-system.php#comments</comments>
		<pubDate>Mon, 10 May 2010 14:01:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[960 grid]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.flexvn.net/blog/?p=243</guid>
		<description><![CDATA[
Todd Nienkerk present at Drupalcon SF 2010 about using 960 grid system to create theme with Drupal
This session will cover the 960.gs grid  system and how to implement it in Drupal using the NineSixty theme.
Session outline

Brief history of grid-based design
Philosophy behind 960.gs and how it works
Basics of grid-based theming
How the NineSixty theme implements and [...]]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="504" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="config=&quot;key&quot;:&quot;#$b6eb72a0f2f1e29f3d4&quot;,&quot;playlist&quot;:[&quot;url&quot;:&quot;http://www.archive.org/download/AcceleratedGridThemingUsingNinesixty_610/format=Thumbnail?.jpg&quot;,&quot;autoPlay&quot;:true,&quot;scaling&quot;:&quot;fit&quot;,&quot;url&quot;:&quot;http://www.archive.org/download/AcceleratedGridThemingUsingNinesixty_610/tue_0945_306_edited_512kb.mp4&quot;,&quot;autoPlay&quot;:false,&quot;accelerated&quot;:true,&quot;scaling&quot;:&quot;fit&quot;,&quot;provider&quot;:&quot;h264streaming&quot;],&quot;clip&quot;:&quot;autoPlay&quot;:false,&quot;accelerated&quot;:true,&quot;scaling&quot;:&quot;fit&quot;,&quot;provider&quot;:&quot;h264streaming&quot;,&quot;canvas&quot;:&quot;backgroundColor&quot;:&quot;0x000000&quot;,&quot;backgroundGradient&quot;:&quot;none&quot;,&quot;plugins&quot;:&quot;audio&quot;:&quot;url&quot;:&quot;http://www.archive.org/flow/flowplayer.audio-3.0.3-dev.swf&quot;,&quot;controls&quot;:&quot;playlist&quot;:false,&quot;fullscreen&quot;:true,&quot;gloss&quot;:&quot;high&quot;,&quot;backgroundColor&quot;:&quot;0x000000&quot;,&quot;backgroundGradient&quot;:&quot;medium&quot;,&quot;sliderColor&quot;:&quot;0x777777&quot;,&quot;progressColor&quot;:&quot;0x777777&quot;,&quot;timeColor&quot;:&quot;0xeeeeee&quot;,&quot;durationColor&quot;:&quot;0x01DAFF&quot;,&quot;buttonColor&quot;:&quot;0x333333&quot;,&quot;buttonOverColor&quot;:&quot;0x505050&quot;,&quot;h264streaming&quot;:&quot;url&quot;:&quot;http://www.archive.org/flow/flowplayer.h264streaming-3.0.5.swf&quot;,&quot;contextMenu&quot;:[&quot;View+AcceleratedGridThemingUsingNinesixty_610+at+archive.org&quot;:&quot;function()&quot;,&quot;-&quot;,&quot;Flowplayer 3.0.5&quot;]" /><param name="src" value="http://www.archive.org/flow/flowplayer.commercial-3.0.5.swf" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="504" src="http://www.archive.org/flow/flowplayer.commercial-3.0.5.swf" allowfullscreen="true" flashvars="config=&quot;key&quot;:&quot;#$b6eb72a0f2f1e29f3d4&quot;,&quot;playlist&quot;:[&quot;url&quot;:&quot;http://www.archive.org/download/AcceleratedGridThemingUsingNinesixty_610/format=Thumbnail?.jpg&quot;,&quot;autoPlay&quot;:true,&quot;scaling&quot;:&quot;fit&quot;,&quot;url&quot;:&quot;http://www.archive.org/download/AcceleratedGridThemingUsingNinesixty_610/tue_0945_306_edited_512kb.mp4&quot;,&quot;autoPlay&quot;:false,&quot;accelerated&quot;:true,&quot;scaling&quot;:&quot;fit&quot;,&quot;provider&quot;:&quot;h264streaming&quot;],&quot;clip&quot;:&quot;autoPlay&quot;:false,&quot;accelerated&quot;:true,&quot;scaling&quot;:&quot;fit&quot;,&quot;provider&quot;:&quot;h264streaming&quot;,&quot;canvas&quot;:&quot;backgroundColor&quot;:&quot;0x000000&quot;,&quot;backgroundGradient&quot;:&quot;none&quot;,&quot;plugins&quot;:&quot;audio&quot;:&quot;url&quot;:&quot;http://www.archive.org/flow/flowplayer.audio-3.0.3-dev.swf&quot;,&quot;controls&quot;:&quot;playlist&quot;:false,&quot;fullscreen&quot;:true,&quot;gloss&quot;:&quot;high&quot;,&quot;backgroundColor&quot;:&quot;0x000000&quot;,&quot;backgroundGradient&quot;:&quot;medium&quot;,&quot;sliderColor&quot;:&quot;0x777777&quot;,&quot;progressColor&quot;:&quot;0x777777&quot;,&quot;timeColor&quot;:&quot;0xeeeeee&quot;,&quot;durationColor&quot;:&quot;0x01DAFF&quot;,&quot;buttonColor&quot;:&quot;0x333333&quot;,&quot;buttonOverColor&quot;:&quot;0x505050&quot;,&quot;h264streaming&quot;:&quot;url&quot;:&quot;http://www.archive.org/flow/flowplayer.h264streaming-3.0.5.swf&quot;,&quot;contextMenu&quot;:[&quot;View+AcceleratedGridThemingUsingNinesixty_610+at+archive.org&quot;:&quot;function()&quot;,&quot;-&quot;,&quot;Flowplayer 3.0.5&quot;]"></embed></object></p>
<p><a title="Todd Nienkerk" href="http://sf2010.drupal.org/community/attendees/todd-nienkerk">Todd Nienkerk</a> present at Drupalcon SF 2010 about using 960 grid system to create theme with Drupal</p>
<p>This session will cover the <a href="http://960.gs/">960.gs grid  system</a> and how to implement it in Drupal using the <a href="http://drupal.org/project/ninesixty">NineSixty theme</a>.</p>
<p><strong>Session outline</strong></p>
<ul>
<li>Brief history of grid-based design</li>
<li>Philosophy behind 960.gs and how it works</li>
<li>Basics of grid-based theming</li>
<li>How the NineSixty theme implements and expands on 960.gs
<ul>
<li>Content-ﬁrst layout using &#8220;push&#8221; and &#8220;pull&#8221; classes</li>
<li>Dynamic grid widths based on context</li>
<li>Debugging tools and grid visualization</li>
<li>Right-to-left (RTL) language support</li>
</ul>
</li>
<li>Creating versatile, dynamic, and context-based layouts using  NineSixty
<ul>
<li>Subtheming NineSixty</li>
</ul>
</li>
<li>How to build your own, custom grid system</li>
</ul>
<p><strong>Goals</strong></p>
<p>Session goals include gaining a solid understanding of what grid  design is, how it has evolved since its early beginnings in print, and  how it can help expedite the design and templating process.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flexvn.net/blog/drupal/drupal-theme-with-960-grid-system.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.archive.org/download/AcceleratedGridThemingUsingNinesixty_610/tue_0945_306_edited_512kb.mp4&amp;quot" length="81762670" type="video/mp4" />
		</item>
		<item>
		<title>Config TinyMCE Wysiwyg Vietnamese language in Drupal</title>
		<link>http://www.flexvn.net/blog/drupal/config-tinymce-wysiwyg-vietnamese-language-in-drupal.php</link>
		<comments>http://www.flexvn.net/blog/drupal/config-tinymce-wysiwyg-vietnamese-language-in-drupal.php#comments</comments>
		<pubDate>Thu, 06 May 2010 09:37:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[language]]></category>

		<guid isPermaLink="false">http://www.flexvn.net/blog/?p=237</guid>
		<description><![CDATA[When use TinyMCE Wysiwyg you can set language for your TinyMCE via path admin/settings/wysiwyg/profile/1/edit. But current it can&#8217;t configure for Vietnamese language.

To add Vietnamese or other language we need open wysiwyg.admin.inc file in sites\all\modules\wysiwyg. Find to line $form['basic']['language'] and in &#8216;#options&#8217; item we add &#8216;vi&#8217; to array list and save it.
Clear Drupal cache, now you [...]]]></description>
			<content:encoded><![CDATA[<p>When use TinyMCE Wysiwyg you can set language for your TinyMCE via path admin/settings/wysiwyg/profile/1/edit. But current it can&#8217;t configure for Vietnamese language.</p>
<p style="text-align: center;"><a href="http://www.flexvn.net/blog/wp-content/uploads/2010/05/TinyMCE_language_vi.jpg"><img class="aligncenter size-full wp-image-238" title="TinyMCE_language_vi" src="http://www.flexvn.net/blog/wp-content/uploads/2010/05/TinyMCE_language_vi.jpg" alt="" width="637" height="360" /></a></p>
<p>To add Vietnamese or other language we need open wysiwyg.admin.inc file in sites\all\modules\wysiwyg. Find to line $form['basic']['language'] and in &#8216;#options&#8217; item we add &#8216;vi&#8217; to array list and save it.</p>
<p>Clear Drupal cache, now you can see vi language on Wysiwyg profile.</p>
<p>That is work for Drupal part, you need install language part for TinyMCE via <a title="tinymce" href="http://tinymce.moxiecode.com/download_i18n.php">http://tinymce.moxiecode.com/download_i18n.php</a></p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">
<h2 class="with-tabs"><em> TinyMCE</em></h2>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.flexvn.net/blog/drupal/config-tinymce-wysiwyg-vietnamese-language-in-drupal.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Replay Media Catcher &#8211; How to download FLV from Adobe TV</title>
		<link>http://www.flexvn.net/blog/flash/replay-media-catcher-how-to-download-flv-from-adobe-tv.php</link>
		<comments>http://www.flexvn.net/blog/flash/replay-media-catcher-how-to-download-flv-from-adobe-tv.php#comments</comments>
		<pubDate>Sun, 02 May 2010 15:28:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[capture]]></category>
		<category><![CDATA[FLV]]></category>
		<category><![CDATA[Tool]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.flexvn.net/blog/?p=233</guid>
		<description><![CDATA[
On Adobe TV we can find many tutorial and video for Flash, Flex, Photoshop&#8230; It can easy view online or with Adobe Media Player but sometime we need view it offline so download and store in local is best way . Almost it stream with RTMP and can&#8217;t download with normal protocol like FireFox or [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" title="replay-media-catcher" src="http://www.applian.com/replay-media-catcher/screenshots/main4.jpg" alt="replay-media-catcher" width="525" height="372" /></p>
<p>On Adobe TV we can find many tutorial and video for Flash, Flex, Photoshop&#8230; It can easy view online or with Adobe Media Player but sometime we need view it offline so download and store in local is best way . Almost it stream with RTMP and can&#8217;t download with normal protocol like FireFox or IDM. One of best tool to download RTMP is <a title="replay-media-catcher" href="http://www.applian.com/replay-media-catcher/">Replay Media Catcher</a> tool.</p>
<p>Information about <a title="replay-media-catcher" href="http://www.applian.com/replay-media-catcher/">Replay Media Catcher</a></p>
<h3>Powerful Web Video and MP3 Capture</h3>
<p><!-- InstanceEndEditable --> <!-- InstanceBeginEditable name="paragraph" --></p>
<blockquote><p>Replay Media Catcher is <strong>the best</strong> streaming video  and audio/MP3 downloader on the planet. Here&#8217;s why:</p>
<ul>
<li><strong>It&#8217;s Easy: </strong>Just click &#8220;Start  Recording&#8221;, then play your media, and an <strong>exact digital copy</strong> is downloaded to your hard disk. Just like that.</li>
<li><strong>It&#8217;s Powerful:</strong> Replay Media Catcher supports  more streaming protocols than any other        stream downloading software. And it converts files too.</li>
<li><strong>It&#8217;s       Convenient: </strong>Even when Replay Media  Catcher       is closed, the  <strong>Video History tool </strong>keeps  track of all        downloadable streaming media recently played on your  PC, so you can save it later.</li>
</ul>
<li><strong>It&#8217;s Smart: </strong> Replay Media Catcher <strong>automatically  names</strong> video files, and recognizes millions of songs so that it  can identify and tag recorded MP3 music files. Amazing!</li>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.flexvn.net/blog/flash/replay-media-catcher-how-to-download-flv-from-adobe-tv.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SourceMate 1.0.1.v04202010 available</title>
		<link>http://www.flexvn.net/blog/flex/sourcemate-1-0-1-v04202010-available.php</link>
		<comments>http://www.flexvn.net/blog/flex/sourcemate-1-0-1-v04202010-available.php#comments</comments>
		<pubDate>Sun, 02 May 2010 10:44:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[sourcemate]]></category>

		<guid isPermaLink="false">http://www.flexvn.net/blog/?p=229</guid>
		<description><![CDATA[
You can download and update new version here http://www.elementriver.com/sourcemate/download-installation/
List of issues fixed since 1.0.1.v04092010:
-Email address validation during trial sign-up loosened.
-Disable Trace Statements now works properly when trace() statements  don&#8217;t have trailing semicolons.
-Extract Method now properly renames arguments throughout the extracted  method when renamed in the Extract Method dialog.
-Metadata content assist now properly leaves [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" title="sourcemate" src="http://theflashblog.com/wp-content/uploads/sourcemate.gif" alt="sourcemate" width="407" height="52" /></p>
<p>You can download and update new version here <a href="http://www.elementriver.com/sourcemate/download-installation/">http://www.elementriver.com/sourcemate/download-installation/</a></p>
<p>List of issues fixed since 1.0.1.v04092010:</p>
<blockquote><p>-Email address validation during trial sign-up loosened.<br />
-Disable Trace Statements now works properly when trace() statements  don&#8217;t have trailing semicolons.<br />
-Extract Method now properly renames arguments throughout the extracted  method when renamed in the Extract Method dialog.<br />
-Metadata content assist now properly leaves whitespace after selecting  an attribute proposal.<br />
-Generate Ant build.xml now properly uses &lt;compc&gt; for Flex Library  projects.<br />
-and a few other small fixes.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.flexvn.net/blog/flex/sourcemate-1-0-1-v04202010-available.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash CS5 and other products shipping now</title>
		<link>http://www.flexvn.net/blog/flex/flash-cs5-and-other-products-shipping-now.php</link>
		<comments>http://www.flexvn.net/blog/flex/flash-cs5-and-other-products-shipping-now.php#comments</comments>
		<pubDate>Fri, 30 Apr 2010 05:50:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Air]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[CS5]]></category>

		<guid isPermaLink="false">http://www.flexvn.net/blog/?p=223</guid>
		<description><![CDATA[

You can download  and/or buy CS5 apps here.
Download Flash CS5 here or https://www.adobe.com/cfusion/tdrc/index.cfm?product=flash
Other way, you can log in to your adobe account then download with direct link bellow
http://trials2.adobe.com/AdobeProducts/STAM/CS5/win32/MasterCollection_CS5_LS1.exe
http://trials2.adobe.com/AdobeProducts/STAM/CS5/win32/MasterCollection_CS5_LS1.7z
http://trials2.adobe.com/AdobeProducts/MDIA/CS5/win32/DesignPremium_CS5_LS1.exe
http://trials2.adobe.com/AdobeProducts/MDIA/CS5/win32/DesignPremium_CS5_LS1.7z
http://trials2.adobe.com/AdobeProducts/PHSP/12/win32/Photoshop_12_LS1.exe
http://trials2.adobe.com/AdobeProducts/PHSP/12/win32/Photoshop_12_LS1.7z
http://trials2.adobe.com/AdobeProducts/FLPR/11/win32/FlashPro_11_LS1.exe
http://trials2.adobe.com/AdobeProducts/FLPR/11/win32/FlashPro_11_LS1.7z
http://trials2.adobe.com/AdobeProducts/THRM/1/win32/FlashCatalyst_1_LS9.exe
http://trials2.adobe.com/dlm/AdobeProducts/DRWV/11/win32/Dreamweaver_11_LS1.exe
http://trials2.adobe.com/AdobeProducts/PPRO/5/win32/PremierePro_5_LS7.7z
http://trials2.adobe.com/AdobeProducts/PPRO/5/win32/PremierePro_5_LS7.exe
http://trials2.adobe.com/AdobeProducts/IDSN/7/win32/InDesign_7_LS1.exe
http://trials2.adobe.com/AdobeProducts/IDSN/7/win32/InDesign_7_LS1.7z
http://trials2.adobe.com/AdobeProducts/ILST/15/win32/Illustrator_15_LS1.exe
http://trials2.adobe.com/AdobeProducts/ILST/15/win32/Illustrator_15_LS1.7z
http://trials2.adobe.com/AdobeProducts/AEFT/10/win64/AfterEffects_10_LS7.exe
http://trials2.adobe.com/AdobeProducts/AEFT/10/win64/AfterEffects_10_LS7.7z

]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" title="Flash CS5" src="http://www.adobe.com/images/shared/product_mnemonics/100x100/flash_100x100.jpg" alt="Flash CS5" width="100" height="100" /></p>
<p style="text-align: center;"><img title="CS5" src="http://prodesigntools.com/wordpress/wp-content/uploads/2010/04/adobe-creative-suite-5.jpg" alt="CS5" width="600" height="235" /></p>
<p>You can <a href="http://www.adobe.com/products/creativesuite/">download  and/or buy CS5 apps here</a>.</p>
<p>Download Flash CS5 <a title="download flash cs5" href="https://www.adobe.com/cfusion/tdrc/index.cfm?product=flash">here</a> or <a title="download flash cs5" href="https://www.adobe.com/cfusion/tdrc/index.cfm?product=flash">https://www.adobe.com/cfusion/tdrc/index.cfm?product=flash</a></p>
<p>Other way, you can log in to your adobe account then download with direct link bellow</p>
<blockquote><p><span>http://trials2.adobe.com/AdobeProducts/STAM/CS5/win32/MasterCollection_CS5_LS1.exe</p>
<p>http://trials2.adobe.com/AdobeProducts/STAM/CS5/win32/MasterCollection_CS5_LS1.7z</span></p>
<p>http://trials2.adobe.com/AdobeProducts/MDIA/CS5/win32/DesignPremium_CS5_LS1.exe</p>
<p>http://trials2.adobe.com/AdobeProducts/MDIA/CS5/win32/DesignPremium_CS5_LS1.7z</p>
<p>http://trials2.adobe.com/AdobeProducts/PHSP/12/win32/Photoshop_12_LS1.exe</p>
<p>http://trials2.adobe.com/AdobeProducts/PHSP/12/win32/Photoshop_12_LS1.7z</p>
<p>http://trials2.adobe.com/AdobeProducts/FLPR/11/win32/FlashPro_11_LS1.exe</p>
<p>http://trials2.adobe.com/AdobeProducts/FLPR/11/win32/FlashPro_11_LS1.7z</p>
<p>http://trials2.adobe.com/AdobeProducts/THRM/1/win32/FlashCatalyst_1_LS9.exe</p>
<p><span>http://trials2.adobe.com/dlm/AdobeProducts/DRWV/11/win32/Dreamweaver_11_LS1.exe</span></p>
<p>http://trials2.adobe.com/AdobeProducts/PPRO/5/win32/PremierePro_5_LS7.7z</p>
<p>http://trials2.adobe.com/AdobeProducts/PPRO/5/win32/PremierePro_5_LS7.exe</p>
<p>http://trials2.adobe.com/AdobeProducts/IDSN/7/win32/InDesign_7_LS1.exe</p>
<p>http://trials2.adobe.com/AdobeProducts/IDSN/7/win32/InDesign_7_LS1.7z</p>
<p>http://trials2.adobe.com/AdobeProducts/ILST/15/win32/Illustrator_15_LS1.exe</p>
<p>http://trials2.adobe.com/AdobeProducts/ILST/15/win32/Illustrator_15_LS1.7z</p>
<p>http://trials2.adobe.com/AdobeProducts/AEFT/10/win64/AfterEffects_10_LS7.exe</p>
<p>http://trials2.adobe.com/AdobeProducts/AEFT/10/win64/AfterEffects_10_LS7.7z<strong><span></p>
<p></span></strong></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.flexvn.net/blog/flex/flash-cs5-and-other-products-shipping-now.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
