<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>WebStorm &amp; PhpStorm Blog</title>
	
	<link>http://blog.jetbrains.com/webide</link>
	<description>Tips &amp; tricks, news, how-to’s</description>
	<lastBuildDate>Wed, 08 Feb 2012 07:10:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/jetbrains_webIde" /><feedburner:info uri="jetbrains_webide" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>jetbrains_webIde</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>New in 3.0: More ‘Surround With’ actions for PHP</title>
		<link>http://feedproxy.google.com/~r/jetbrains_webIde/~3/9pP-10VypAA/</link>
		<comments>http://blog.jetbrains.com/webide/2012/02/new-in-3-0-more-surround-with-actions-for-php/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 07:06:29 +0000</pubDate>
		<dc:creator>nnmatveev</dc:creator>
				<category><![CDATA[Feature]]></category>
		<category><![CDATA[EAP]]></category>
		<category><![CDATA[PhpStorm]]></category>
		<category><![CDATA[productivity]]></category>

		<guid isPermaLink="false">http://blog.jetbrains.com/webide/?p=2700</guid>
		<description><![CDATA[There are new &#8216;Surround With&#8217; actions introduced in PhpStorm 3.0 Surround with: ‘(expr)’ and ‘!(expr)’ This couple of actions can help you quickly surround expressions with braces or negate logical expressions. Suppose you want to negate some expression. Select the &#8230; <a href="http://blog.jetbrains.com/webide/2012/02/new-in-3-0-more-surround-with-actions-for-php/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>There are new <strong>&#8216;Surround With&#8217;</strong> actions introduced in PhpStorm 3.0</p>
<h2><span id="more-2700"></span>Surround with: ‘(expr)’ and ‘!(expr)’</h2>
<p>This couple of actions can help you quickly surround expressions with braces or negate logical expressions.</p>
<p>Suppose you want to negate some expression. Select the expression using the <strong>‘Select successively increasing code blocks’</strong> action (‘Ctrl+W’ on Windows\Linux or ‘Cmd + W’ on Mac):</p>
<p><a href="http://blog.jetbrains.com/webide/files/2011/09/notexpr_select_expression.png"><img class="alignnone size-full wp-image-2702" src="http://blog.jetbrains.com/webide/files/2011/09/notexpr_select_expression.png" alt="" width="500" height="85" /></a></p>
<p>Invoke the <strong>‘Surround With’</strong> (‘Ctrl + Alt + T’ on Windows\Linux or ‘Cmd +Option + T’ on Mac) action and select <em>‘!(expr)’</em>:</p>
<p><a href="http://blog.jetbrains.com/webide/files/2011/09/notexpr_select_item.png"><img class="alignnone size-full wp-image-2703" src="http://blog.jetbrains.com/webide/files/2011/09/notexpr_select_item.png" alt="" width="500" height="95" /></a></p>
<p>The cursor will be placed at the end of the expression:</p>
<p><a href="http://blog.jetbrains.com/webide/files/2011/09/notexpr_result.png"><img class="alignnone size-full wp-image-2705" src="http://blog.jetbrains.com/webide/files/2011/09/notexpr_result.png" alt="" width="500" height="75" /></a></p>
<h2>Surround with: ‘if(expr){&#8230;}’ and ‘while(expr){&#8230;}’</h2>
<p>You probably remember our blogpost about <a href="http://blog.jetbrains.com/webide/2011/04/productivity-hints-writing-assignments-with-%E2%80%98introduce-variable%E2%80%99-refactoring/">writing assignments with ‘Introduce Variable’ refactoring</a>. This time we want to introduce you another hint in quick writing ‘if’ and ‘while’ statements.</p>
<p>Suppose you want to write the following ‘if’ statement:</p>
<p><a href="http://blog.jetbrains.com/webide/files/2011/09/if_statement.png"><img class="alignnone size-full wp-image-2706" src="http://blog.jetbrains.com/webide/files/2011/09/if_statement.png" alt="" width="500" height="70" /></a></p>
<p>Let’s start writing it using the <strong>‘Surround With’</strong> action. First of all, write the condition:</p>
<p><a href="http://blog.jetbrains.com/webide/files/2011/09/condition.png"><img class="alignnone size-full wp-image-2707" src="http://blog.jetbrains.com/webide/files/2011/09/condition.png" alt="" width="500" height="60" /></a></p>
<p>Select the condition:</p>
<p><a href="http://blog.jetbrains.com/webide/files/2011/09/select_condition.png"><img class="alignnone size-full wp-image-2708" src="http://blog.jetbrains.com/webide/files/2011/09/select_condition.png" alt="" width="500" height="50" /></a></p>
<p>Invoke the <strong>‘Surround With’</strong> action and select <em>‘if(expr){&#8230;}’</em>:</p>
<p><a href="http://blog.jetbrains.com/webide/files/2011/09/surrround_wtih_menu.png"><img class="alignnone size-full wp-image-2709" src="http://blog.jetbrains.com/webide/files/2011/09/surrround_wtih_menu.png" alt="" width="500" height="150" /></a></p>
<p>Then start typing the ‘if’ statement body:</p>
<p><a href="http://blog.jetbrains.com/webide/files/2011/09/start_typing_body.png"><img class="alignnone size-full wp-image-2710" src="http://blog.jetbrains.com/webide/files/2011/09/start_typing_body.png" alt="" width="500" height="110" /></a></p>
<p><em>Develop with pleasure!</em></p>
<img src="http://feeds.feedburner.com/~r/jetbrains_webIde/~4/9pP-10VypAA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.jetbrains.com/webide/2012/02/new-in-3-0-more-surround-with-actions-for-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.jetbrains.com/webide/2012/02/new-in-3-0-more-surround-with-actions-for-php/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=new-in-3-0-more-surround-with-actions-for-php</feedburner:origLink></item>
		<item>
		<title>PhpStorm &amp; WebStorm 3.0.2</title>
		<link>http://feedproxy.google.com/~r/jetbrains_webIde/~3/GuLeOWjq-l4/</link>
		<comments>http://blog.jetbrains.com/webide/2012/02/phpstorm-webstorm-3-0-2/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 17:59:41 +0000</pubDate>
		<dc:creator>Alexey Gopachenko</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[3.0.2]]></category>
		<category><![CDATA[PhpStorm]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[WebStorm]]></category>

		<guid isPermaLink="false">http://blog.jetbrains.com/webide/?p=3283</guid>
		<description><![CDATA[An update containing important fixes and improvements is available for all users. See build &#38; platform changelogs for more details. Do not hesitate to download PhpStorm &#38; WebStorm for your platform. Patch-updates from 3.0 &#38; 3.0.1 are available. Downloadable plugins will be updated &#8230; <a href="http://blog.jetbrains.com/webide/2012/02/phpstorm-webstorm-3-0-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>An update containing important fixes and improvements is available for all users. See <a href="http://youtrack.jetbrains.net/issues/WI?q=%23Fixed+%233.0.2">build</a> &amp; <a href="http://confluence.jetbrains.net/display/IDEADEV/IntelliJ+IDEA+11.0.2+Release+Notes">platform</a> changelogs for more details.</p>
<p>Do not hesitate to download <a href="http://www.jetbrains.com/phpstorm/download/index.html">PhpStorm</a> &amp; <a href="http://www.jetbrains.com/webstorm/download/index.html">WebStorm</a> for your platform.<br />
Patch-updates from 3.0 &amp; 3.0.1 are available. Downloadable plugins will be updated soon.</p>
<p><em>Develop with pleasure!</em><br />
<em>-JetBrains Web IDE Team</em></p>
<img src="http://feeds.feedburner.com/~r/jetbrains_webIde/~4/GuLeOWjq-l4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.jetbrains.com/webide/2012/02/phpstorm-webstorm-3-0-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.jetbrains.com/webide/2012/02/phpstorm-webstorm-3-0-2/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=phpstorm-webstorm-3-0-2</feedburner:origLink></item>
		<item>
		<title>One extra month of special WebStorm pricing!</title>
		<link>http://feedproxy.google.com/~r/jetbrains_webIde/~3/KE0e-EEA-64/</link>
		<comments>http://blog.jetbrains.com/webide/2012/02/one-extra-month-of-special-webstorm-pricing/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 18:18:01 +0000</pubDate>
		<dc:creator>Alexey Korsun</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[offer]]></category>
		<category><![CDATA[WebStorm]]></category>

		<guid isPermaLink="false">http://blog.jetbrains.com/webide/?p=3275</guid>
		<description><![CDATA[Good news for those of you who missed the last promotion we ran! Since initially offering the discount on commercial licenses, we&#8217;ve received a lot of requests from our customers and decided to extend the promotion until February 29. Use &#8230; <a href="http://blog.jetbrains.com/webide/2012/02/one-extra-month-of-special-webstorm-pricing/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Good news for those of you who missed the <a href="http://blog.jetbrains.com/webide/2012/01/only-1-day-left-to-take-advantage-of-webstorm-special-pricing">last promotion</a> we ran! Since initially offering the discount on commercial licenses, we&#8217;ve received a lot of requests from our customers and decided to extend the promotion until February 29.</p>
<p>Use this opportunity to <a href="http://www.jetbrains.com/webstorm/buy/index.jsp">buy personal, commercial licenses and renewals</a>.</p>
<p>Regards,<br />
JetBrains Team</p>
<img src="http://feeds.feedburner.com/~r/jetbrains_webIde/~4/KE0e-EEA-64" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.jetbrains.com/webide/2012/02/one-extra-month-of-special-webstorm-pricing/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		<feedburner:origLink>http://blog.jetbrains.com/webide/2012/02/one-extra-month-of-special-webstorm-pricing/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=one-extra-month-of-special-webstorm-pricing</feedburner:origLink></item>
		<item>
		<title>PhpStorm &amp; WebStorm 3.0.1</title>
		<link>http://feedproxy.google.com/~r/jetbrains_webIde/~3/aAft93LKh9A/</link>
		<comments>http://blog.jetbrains.com/webide/2012/01/phpstorm-webstorm-3-0-1/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 13:46:34 +0000</pubDate>
		<dc:creator>Alexey Gopachenko</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[3.0.1]]></category>
		<category><![CDATA[PhpStorm]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[WebStorm]]></category>

		<guid isPermaLink="false">http://blog.jetbrains.com/webide/?p=3267</guid>
		<description><![CDATA[A highly recommended update containing important fixes and improvements across all subsystems is available for all users. See build &#38; platform changelogs 1, 2, 3 for more details. Do not hesitate to download PhpStorm &#38; WebStorm for your platform. Patch-update from 3.0 release will be &#8230; <a href="http://blog.jetbrains.com/webide/2012/01/phpstorm-webstorm-3-0-1/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A highly recommended update containing important fixes and improvements across all subsystems is available for all users.</p>
<p>See <a href="http://youtrack.jetbrains.net/issues/WI?q=%23Fixed+%23%7BEAP+111.150%7D+%23%7BEAP+111.217%7D+%233.0.1">build</a> &amp; platform changelogs <a href="http://confluence.jetbrains.net/display/IDEADEV/IntelliJ+IDEA+11.0.1+Release+Notes">1</a>, <a href="http://confluence.jetbrains.net/display/IDEADEV/IntelliJ+IDEA+11+111.228+Release+Notes">2</a>, <a href="http://confluence.jetbrains.net/display/IDEADEV/IntelliJ+IDEA+11+111.255+Release+Notes">3</a> for more details.</p>
<p>Do not hesitate to download <a href="http://www.jetbrains.com/phpstorm/download/index.html">PhpStorm</a> &amp; <a href="http://www.jetbrains.com/webstorm/download/index.html">WebStorm</a> for your platform.<br />
Patch-update from 3.0 release will be available soon.</p>
<p><em>Develop with pleasure!</em><br />
<em>-JetBrains Web IDE Team</em></p>
<img src="http://feeds.feedburner.com/~r/jetbrains_webIde/~4/aAft93LKh9A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.jetbrains.com/webide/2012/01/phpstorm-webstorm-3-0-1/feed/</wfw:commentRss>
		<slash:comments>54</slash:comments>
		<feedburner:origLink>http://blog.jetbrains.com/webide/2012/01/phpstorm-webstorm-3-0-1/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=phpstorm-webstorm-3-0-1</feedburner:origLink></item>
		<item>
		<title>Only 1 day left to take advantage of WebStorm special pricing!</title>
		<link>http://feedproxy.google.com/~r/jetbrains_webIde/~3/oydRSh3gB4I/</link>
		<comments>http://blog.jetbrains.com/webide/2012/01/only-1-day-left-to-take-advantage-of-webstorm-special-pricing/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 14:48:25 +0000</pubDate>
		<dc:creator>Alexey Korsun</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[offer]]></category>
		<category><![CDATA[WebStorm]]></category>

		<guid isPermaLink="false">http://blog.jetbrains.com/webide/?p=3258</guid>
		<description><![CDATA[Tomorrow, January 31, is the last day to buy a license for JavaScript IDE WebStorm at a special price! This time the special price applies not only to personal licenses, but also to commercial licenses and renewals! WebStorm 3.0.1 will &#8230; <a href="http://blog.jetbrains.com/webide/2012/01/only-1-day-left-to-take-advantage-of-webstorm-special-pricing/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Tomorrow, January 31, is <strong>the last day</strong> to buy a license for <a href="http://www.jetbrains.com/webstorm/">JavaScript IDE WebStorm</a> at a special price!</p>
<p>This time the special price applies not only to personal licenses, but also to commercial licenses and renewals!</p>
<p>WebStorm 3.0.1 will be out later this week, so if you buy, you will get a free upgrade — as well as all upgrades (even to major versions) released within 1 year of the date of purchase.</p>
<p>Don’t miss this opportunity to develop with even more pleasure!<br />
-JetBrains Team</p>
<img src="http://feeds.feedburner.com/~r/jetbrains_webIde/~4/oydRSh3gB4I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.jetbrains.com/webide/2012/01/only-1-day-left-to-take-advantage-of-webstorm-special-pricing/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://blog.jetbrains.com/webide/2012/01/only-1-day-left-to-take-advantage-of-webstorm-special-pricing/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=only-1-day-left-to-take-advantage-of-webstorm-special-pricing</feedburner:origLink></item>
		<item>
		<title>PhpStorm &amp; WebStorm 3.0.1 RC</title>
		<link>http://feedproxy.google.com/~r/jetbrains_webIde/~3/6DHxE0e6yqw/</link>
		<comments>http://blog.jetbrains.com/webide/2012/01/phpstorm-webstorm-3-0-1-rc/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 18:41:30 +0000</pubDate>
		<dc:creator>Alexey Gopachenko</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[EAP]]></category>
		<category><![CDATA[PhpStorm]]></category>
		<category><![CDATA[WebStorm]]></category>

		<guid isPermaLink="false">http://blog.jetbrains.com/webide/?p=3249</guid>
		<description><![CDATA[A Release Candidate is available for 3.0.1 bugfix update. Build 111.217, with many important fixes across all subsystems. Notable changes: Dark editor color schemes are bundled WI-333 Undefined class inspection will check PHPDoc WI-9241 Undefined member inspection will provide more details WI-9242 More details available &#8230; <a href="http://blog.jetbrains.com/webide/2012/01/phpstorm-webstorm-3-0-1-rc/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A Release Candidate is available for 3.0.1 bugfix update. Build 111.217, with many important fixes across all subsystems. Notable changes:</p>
<ul>
<li>Dark editor color schemes are bundled <a href="http://youtrack.jetbrains.net/issue/WI-333">WI-333</a></li>
<li>Undefined class inspection will check PHPDoc <a href="http://youtrack.jetbrains.net/issue/WI-9241">WI-9241</a></li>
<li>Undefined member inspection will provide more details <a href="http://youtrack.jetbrains.net/issue/WI-9242">WI-9242</a></li>
</ul>
<p>More details available in <a href="http://youtrack.jetbrains.net/releaseNotes/WI?q=fix+for:+{EAP+111.217}">build changelog</a> &amp; platform <a href="http://confluence.jetbrains.net/display/IDEADEV/IntelliJ+IDEA+11.0.1+Release+Notes">changelog</a></p>
<p><a href="http://www.jetbrains.net/confluence/display/WI/Web+IDE+EAP">Download PhpStorm &amp; WebStorm for your platform from project EAP page</a>.<br />
Patch-update from 3.0.1 Beta will be available soon.</p>
<p><em>Develop with pleasure!</em><br />
<em>-JetBrains Web IDE Team</em></p>
<p><em><strong>Please, do not use twitter or blog comments for reports</strong> – <a href="http://youtrack.jetbrains.net/issues/WI#newissue=yes">file them to tracker</a>.<br />
</em></p>
<img src="http://feeds.feedburner.com/~r/jetbrains_webIde/~4/6DHxE0e6yqw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.jetbrains.com/webide/2012/01/phpstorm-webstorm-3-0-1-rc/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://blog.jetbrains.com/webide/2012/01/phpstorm-webstorm-3-0-1-rc/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=phpstorm-webstorm-3-0-1-rc</feedburner:origLink></item>
		<item>
		<title>PhpStorm 3.0: New and Noteworthy in Database Realm</title>
		<link>http://feedproxy.google.com/~r/jetbrains_webIde/~3/zNq5MmHJ1CQ/</link>
		<comments>http://blog.jetbrains.com/webide/2012/01/phpstorm-3-0-new-and-noteworthy-in-database-realm/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 04:36:57 +0000</pubDate>
		<dc:creator>Alexey Korsun</dc:creator>
				<category><![CDATA[Feature]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[PhpStorm]]></category>

		<guid isPermaLink="false">http://blog.jetbrains.com/webide/?p=3214</guid>
		<description><![CDATA[This is a cross-post from IntelliJ IDEA blog. Original post by Gregory Shrago. There are many little things in database and SQL area that got attention in PhpStorm 3.0 release but now I just want to highlight the major ones. &#8230; <a href="http://blog.jetbrains.com/webide/2012/01/phpstorm-3-0-new-and-noteworthy-in-database-realm/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><em>This is a cross-post from <a href="http://blogs.jetbrains.com/idea/2011/12/new-and-noteworthy-in-database-realm/">IntelliJ IDEA blog</a>. Original post by <a href="http://blogs.jetbrains.com/idea/author/gregsh/">Gregory Shrago</a>.<br />
<hr /></em></p>
<p>There are many little things in database and SQL area that got attention in PhpStorm 3.0 release but now I just want to highlight the major ones.</p>
<p>Data Sources view got a new look and now includes stored procedures both from DDL scripts and real databases. The existing SQL dialects support has been redesigned with two new dialects introduced: H2 and MS Transact-SQL. So the list of supported SQL languages now looks like this:</p>
<p><img class="alignleft" src="http://blogs.jetbrains.com/idea/wp-content/uploads/2011/12/screen-shot-2011-12-01-at-62104-pm1.png" alt="Data Sources Toolwindow" width="328" height="390" align="top" /></p>
<ul>
<li>MySQL 5.6</li>
<li>PostgreSQL 9.0.5</li>
<li>Oracle 11.2</li>
<li>SQLite 3.7</li>
<li>SQL Server 10.50</li>
<li>Derby 10.8</li>
<li>HSQLDB 2.2</li>
<li>H2 1.3</li>
<li>SQL-92</li>
</ul>
<p><strong>Featuring:</strong></p>
<ul>
<li>Exact syntax as in docs</li>
<li>Context-aware completion</li>
<li>PL-extensions support</li>
</ul>
<div style="clear:both"></div>
<p><strong>Database view:</strong></p>
<ul>
<li>Includes stored procedures. Search for usages, navigate to, drag and drop to editor, etc.</li>
<li>Working with large databases is now less painful. Tables and procedures are available the moment their names are loaded. Columns, procedure parameters and other information are loaded in background afterwards.</li>
<li>If something is changed there’s no need to wait for the whole synchronization. Refresh only selected schemas, tables or procedures.</li>
</ul>
<p><strong>Database Console:</strong></p>
<ul>
<li>Console now remembers its state so you won’t lose statements you have never run.</li>
<li>If you do not want to switch editors back and forth you can run statements directly from an SQL file or any other place where SQL injection takes place: invoke “Run Query in Console” intention for the first time then use console “Execute” action shortcut as if you are in console.</li>
<li>Transact-SQL batch execution mode (the toggle is hidden in the console properties dialog)</li>
<li>Console editor now can be undocked and split as any other editor.</li>
</ul>
<p><em>Develop with pleasure!</em><br />
<em>-JetBrains Web IDE Team</em></p>
<p>&nbsp;</p>
<img src="http://feeds.feedburner.com/~r/jetbrains_webIde/~4/zNq5MmHJ1CQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.jetbrains.com/webide/2012/01/phpstorm-3-0-new-and-noteworthy-in-database-realm/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://blog.jetbrains.com/webide/2012/01/phpstorm-3-0-new-and-noteworthy-in-database-realm/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=phpstorm-3-0-new-and-noteworthy-in-database-realm</feedburner:origLink></item>
		<item>
		<title>PhpStorm &amp; WebStorm 3.0.1 Beta</title>
		<link>http://feedproxy.google.com/~r/jetbrains_webIde/~3/l5dWZj-cMSc/</link>
		<comments>http://blog.jetbrains.com/webide/2011/12/phpstorm-webstorm-3-0-1-beta/#comments</comments>
		<pubDate>Mon, 26 Dec 2011 15:01:47 +0000</pubDate>
		<dc:creator>Alexey Gopachenko</dc:creator>
				<category><![CDATA[Announcement]]></category>

		<guid isPermaLink="false">http://blog.jetbrains.com/webide/?p=3206</guid>
		<description><![CDATA[Small holiday present for everybody – a Beta for 3.0.1 bugfix update. Build 111.150, with many important fixes across all subsystems. More details available in build changelog &#38; platform changelogs 1 &#38; 2 Download PhpStorm &#38; WebStorm for your platform from project EAP page. &#8230; <a href="http://blog.jetbrains.com/webide/2011/12/phpstorm-webstorm-3-0-1-beta/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Small holiday present for everybody – a Beta for 3.0.1 bugfix update. Build 111.150, with many important fixes across all subsystems.</p>
<p>More details available in <a href="http://youtrack.jetbrains.net/releaseNotes/WI?q=fix+for:+{EAP+111.150}">build changelog</a> &amp; platform changelogs <a href="http://confluence.jetbrains.net/display/IDEADEV/IntelliJ+IDEA+11+111.123+Release+Notes">1</a> &amp; <a href="http://confluence.jetbrains.net/display/IDEADEV/IntelliJ+IDEA+11+111.139+Release+Notes">2</a></p>
<p><a href="http://www.jetbrains.net/confluence/display/WI/Web+IDE+EAP">Download PhpStorm &amp; WebStorm for your platform from project EAP page</a>.<br />
Patch-update is NOT available.</p>
<p><em>Develop with pleasure!</em><br />
<em>-JetBrains Web IDE Team</em></p>
<p><em><strong>Please, do not use twitter or blog comments for reports</strong> – <a href="http://youtrack.jetbrains.net/issues/WI#newissue=yes">file them to tracker</a>.<br />
</em></p>
<img src="http://feeds.feedburner.com/~r/jetbrains_webIde/~4/l5dWZj-cMSc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.jetbrains.com/webide/2011/12/phpstorm-webstorm-3-0-1-beta/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://blog.jetbrains.com/webide/2011/12/phpstorm-webstorm-3-0-1-beta/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=phpstorm-webstorm-3-0-1-beta</feedburner:origLink></item>
		<item>
		<title>WebStorm 3.0: The JavaScript IDE!</title>
		<link>http://feedproxy.google.com/~r/jetbrains_webIde/~3/q3PjtoRmB0g/</link>
		<comments>http://blog.jetbrains.com/webide/2011/12/webstorm-3-0-the-javascript-ide/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 14:51:10 +0000</pubDate>
		<dc:creator>Alexey Korsun</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[3.0]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[WebStorm]]></category>

		<guid isPermaLink="false">http://blog.jetbrains.com/webide/?p=3178</guid>
		<description><![CDATA[Greetings from JetBrains! The newest version of our JavaScript IDE — WebStorm 3.0 — is out! Latest trends like CoffeeScript, JSLint/JSHint validation and the new star of server-side JavaScript development – Node.JS – are at your fingertips: Support for Node.JS allows you &#8230; <a href="http://blog.jetbrains.com/webide/2011/12/webstorm-3-0-the-javascript-ide/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Greetings from JetBrains!<br />
The newest version of our JavaScript IDE — <strong><a href="http://www.jetbrains.com/webstorm/whatsnew/">WebStorm 3.0</a></strong> — is out!<br />
<a href="http://www.jetbrains.com/webstorm/download/index.html"><img class="alignnone size-full wp-image-3191" src="http://blog.jetbrains.com/webide/files/2011/12/ws3_blog.png" alt="" width="513" height="170" /></a></p>
<p>Latest trends like CoffeeScript, JSLint/JSHint validation and the new star of server-side JavaScript development – Node.JS – are at your fingertips:</p>
<ul>
<li>Support for Node.JS allows you to use all the IDE power for editing and debugging server-side JavaScript.</li>
<li>CoffeeScript navigation, completions, refactoring, error-checking and more.</li>
<li>Integration with JSLint/JSHint enables new inspections to verify code quality.</li>
<li>JavaScript unit testing with JsTestDriver.</li>
<li>Smart Duplicated Code Detector for HTML, CSS and JavaScript.</li>
<li>Significant improvements to FTP/SFTP Sync.</li>
<li>TFS support and revision graph for GIT.</li>
<li>Streamlined UI across all operating systems.</li>
</ul>
<p>Read more about <a href="http://www.jetbrains.com/webstorm/whatsnew">what’s new</a>, <strong><a href="http://www.jetbrains.com/webstorm/download">download WebStorm 3.0</a></strong> and do not miss another present &mdash; <a href="http://www.jetbrains.com/webstorm/buy">attractive WebStorm pricing before February 1, 2012</a>!</p>
<p>Oh, and we also want to <strong>cordially thank all early adopters</strong> for your invaluable feedback!</p>
<p><em>Develop with pleasure!</em><br />
<em></em><em>JetBrains Team</em></p>
<img src="http://feeds.feedburner.com/~r/jetbrains_webIde/~4/q3PjtoRmB0g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.jetbrains.com/webide/2011/12/webstorm-3-0-the-javascript-ide/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		<feedburner:origLink>http://blog.jetbrains.com/webide/2011/12/webstorm-3-0-the-javascript-ide/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=webstorm-3-0-the-javascript-ide</feedburner:origLink></item>
		<item>
		<title>New in 3.0: Support of profiling with Zend Debugger</title>
		<link>http://feedproxy.google.com/~r/jetbrains_webIde/~3/SXXPHQIz0oA/</link>
		<comments>http://blog.jetbrains.com/webide/2011/12/new-in-3-0-support-of-profiling-with-zend-debugger/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 11:50:39 +0000</pubDate>
		<dc:creator>nnmatveev</dc:creator>
				<category><![CDATA[Feature]]></category>
		<category><![CDATA[PhpStorm]]></category>
		<category><![CDATA[Profiler]]></category>
		<category><![CDATA[Zend Debugger]]></category>

		<guid isPermaLink="false">http://blog.jetbrains.com/webide/?p=3153</guid>
		<description><![CDATA[Hello guys, Sometime ago we announced integration with Xdebug profiler in PhpStorm 3.0. This time we want to introduce you integration with another popular CPU profiling extension for PHP &#8211; Zend Debugger. The set of views which PhpStorm builds by &#8230; <a href="http://blog.jetbrains.com/webide/2011/12/new-in-3-0-support-of-profiling-with-zend-debugger/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hello guys,</p>
<p>Sometime ago we announced <a href="http://blog.jetbrains.com/webide/2011/09/new-in-3-0-xdebug-profiler-integration/">integration with Xdebug profiler in PhpStorm 3.0</a>. This time we want to introduce you integration with another popular CPU profiling extension for PHP &#8211; Zend Debugger.</p>
<p><span id="more-3153"></span>The set of views which PhpStorm builds by analyzing a Zend Debugger profiler snapshot is the same as for the Xdebug profiler:</p>
<ul>
<li>‘Execution Statistics’ – displays summary information about execution metrics for every called function/method.</li>
<li>‘Call Tree’ – displays the execution paths of the called functions.</li>
<li>‘Callees’ – same as ‘Call Tree’ but with the selected function as the root.</li>
<li>‘Callers’ – all the paths that can result in calling the selected function.</li>
</ul>
<p>In order to start a profiling session you need to install and configure the Zend Debugger extension. If you have already configured Zend Debugger for debugging, use this configuration for profiling. Alternatively, follow the <a href="http://confluence.jetbrains.net/display/WI/Zend+Debugger+installation+guide">Zend Debugger installation guide</a>.</p>
<p>Next, you need to enable Zend Debugger to start capturing profiling snapshots on the required web pages. Just like during a debugging session, you need special cookies set in your web browser. You can do it manually, but it would be handier to use our <a href="http://www.jetbrains.com/phpstorm/marklets/">browser bookmarklets</a> which will set all the necessary cookies for you.</p>
<p>Let&#8217;t start profiling with Zend Debugger and <a href="http://www.jetbrains.com/phpstorm/marklets/">browser bookmarklets</a></p>
<ol>
<li>Open IDE</li>
<li>Enable listening for incoming connections from Zend Debugger
<p><div id="attachment_3157" class="wp-caption alignnone" style="width: 510px"><a href="http://blog.jetbrains.com/webide/files/2011/12/enalbe_listening_zend_debugger.png"><img class="size-full wp-image-3157 " src="http://blog.jetbrains.com/webide/files/2011/12/enalbe_listening_zend_debugger.png" alt="" width="500" height="168" /></a><p class="wp-caption-text">Listening for incoming connections enabled</p></div></li>
<li>Open browser and navigate to the web page you want to profile</li>
<li>Click the ‘zend Start Profiler’ bookmark
<p><div id="attachment_3158" class="wp-caption alignnone" style="width: 510px"><a href="http://blog.jetbrains.com/webide/files/2011/12/start_profiler_bookmark.png"><img class="size-full wp-image-3158 " src="http://blog.jetbrains.com/webide/files/2011/12/start_profiler_bookmark.png" alt="" width="500" height="180" /></a><p class="wp-caption-text">&#039;zend Start profiler&#039; bookmarklet on the browser bookmarks toolbar</p></div></li>
<li>Refresh the page</li>
<li>Switch to the IDE and accept the incoming connection from Zend Debugger (this dialog will appear only once, if you have never accepted connections from this host before)
<p><div id="attachment_3159" class="wp-caption alignnone" style="width: 510px"><a href="http://blog.jetbrains.com/webide/files/2011/12/accept_incoming_connection.png"><img class="size-full wp-image-3159" src="http://blog.jetbrains.com/webide/files/2011/12/accept_incoming_connection.png" alt="" width="500" height="399" /></a><p class="wp-caption-text">&#039;Incoming Connection From Zend Debugger&#039; dialog</p></div></li>
<li>Let&#8217;s start hunting for bottlenecks in your code!
<p><div id="attachment_3160" class="wp-caption alignnone" style="width: 509px"><a href="http://blog.jetbrains.com/webide/files/2011/12/profiler_snapshot.png"><img class="size-full wp-image-3160" src="http://blog.jetbrains.com/webide/files/2011/12/profiler_snapshot.png" alt="" width="499" height="158" /></a><p class="wp-caption-text">Profiler snapshot opened in the PhpStorm</p></div></li>
<li>After you have finished your profiling session, click the ‘zend Stop profiler’bookmark to stop capturing profiling snapshots (it will remove the cookie which triggers profiling)
<p><div id="attachment_3161" class="wp-caption alignnone" style="width: 510px"><a href="http://blog.jetbrains.com/webide/files/2011/12/stop_profiler_bookmark.png"><img class="size-full wp-image-3161" src="http://blog.jetbrains.com/webide/files/2011/12/stop_profiler_bookmark.png" alt="" width="500" height="170" /></a><p class="wp-caption-text">&#039;zend Stop profiler&#039; bookmarklet on the browser bookmarks toolbar</p></div></li>
</ol>
<p>PhpStorm 3.0 download is available on <a href="http://www.jetbrains.com/phpstorm/download">official download page</a>.</p>
<p><em>Develop with pleasure!</em></p>
<img src="http://feeds.feedburner.com/~r/jetbrains_webIde/~4/SXXPHQIz0oA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.jetbrains.com/webide/2011/12/new-in-3-0-support-of-profiling-with-zend-debugger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.jetbrains.com/webide/2011/12/new-in-3-0-support-of-profiling-with-zend-debugger/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=new-in-3-0-support-of-profiling-with-zend-debugger</feedburner:origLink></item>
	</channel>
</rss>

