<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: TextMate 1.5.6</title>
	<atom:link href="http://blog.macromates.com/2007/textmate-156/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.macromates.com/2007/textmate-156/</link>
	<description>TextMate and OS X</description>
	<lastBuildDate>Wed, 03 Feb 2010 16:53:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Uğur Özyılmazel</title>
		<link>http://blog.macromates.com/2007/textmate-156/#comment-3717</link>
		<dc:creator>Uğur Özyılmazel</dc:creator>
		<pubDate>Thu, 23 Apr 2009 10:51:32 +0000</pubDate>
		<guid isPermaLink="false">http://macromates.com/blog/2007/textmate-156/#comment-3717</guid>
		<description>&lt;p&gt;Allan Odgaard: well, all the .conf variables are utf8...&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;mysql&gt; show variables like &#039;%character%&#039;;
+--------------------------+----------------------------+
&#124; Variable_name            &#124; Value                      &#124;
+--------------------------+----------------------------+
&#124; character_set_client     &#124; utf8                       &#124; 
&#124; character_set_connection &#124; utf8                       &#124; 
&#124; character_set_database   &#124; utf8                       &#124; 
&#124; character_set_filesystem &#124; binary                     &#124; 
&#124; character_set_results    &#124; utf8                       &#124; 
&#124; character_set_server     &#124; utf8                       &#124; 
&#124; character_set_system     &#124; utf8                       &#124; 
&#124; character_sets_dir       &#124; /usr/share/mysql/charsets/ &#124; 
+--------------------------+----------------------------+
8 rows in set (0.00 sec)
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;still turkish chars are broken... i did it again in my way... the only thing that maybe some ruby guys here can help us if this line of code is ok?&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;begin
  encoding = @@connector.query(&#039;SELECT @@character_set_database AS server&#039;).fetch_hash
rescue
  encoding = {:server =&gt; &#039;utf8&#039;}
end
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;when i query &#039;SELECT @@character_set_database AS server&#039; i get utf8 as result..&lt;/p&gt;

&lt;p&gt;its like this if/else thing is not working...&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Allan Odgaard: well, all the .conf variables are utf8&#8230;</p>

<pre><code>mysql&gt; show variables like '%character%';
+--------------------------+----------------------------+
| Variable_name            | Value                      |
+--------------------------+----------------------------+
| character_set_client     | utf8                       | 
| character_set_connection | utf8                       | 
| character_set_database   | utf8                       | 
| character_set_filesystem | binary                     | 
| character_set_results    | utf8                       | 
| character_set_server     | utf8                       | 
| character_set_system     | utf8                       | 
| character_sets_dir       | /usr/share/mysql/charsets/ | 
+--------------------------+----------------------------+
8 rows in set (0.00 sec)
</code></pre>

<p>still turkish chars are broken&#8230; i did it again in my way&#8230; the only thing that maybe some ruby guys here can help us if this line of code is ok?</p>

<pre><code>begin
  encoding = @@connector.query('SELECT @@character_set_database AS server').fetch_hash
rescue
  encoding = {:server =&gt; 'utf8'}
end
</code></pre>

<p>when i query &#039;SELECT @@character_set_database AS server&#039; i get utf8 as result..</p>

<p>its like this if/else thing is not working&#8230;</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Allan Odgaard</title>
		<link>http://blog.macromates.com/2007/textmate-156/#comment-3449</link>
		<dc:creator>Allan Odgaard</dc:creator>
		<pubDate>Mon, 03 Nov 2008 12:38:22 +0000</pubDate>
		<guid isPermaLink="false">http://macromates.com/blog/2007/textmate-156/#comment-3449</guid>
		<description>&lt;p&gt;Uğur Özyılmazel: I think that “fix” implies your server is reporting &lt;code&gt;latin1&lt;/code&gt; as its encoding. If you control the server, you should set it to use utf-8.&lt;/p&gt;

&lt;p&gt;I have the following in &lt;code&gt;/etc/my.cnf&lt;/code&gt; (on the server):&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;[mysqld]
default-character-set = utf8

[client]
default-character-set = utf8
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;You can test what your server reports by opening an SQL session and run:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;SHOW VARIABLES LIKE &#039;character_set_%&#039;;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;With MySQL it can be a little confusion because the server, database, table, connection, client, etc. can all have different encodings.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Uğur Özyılmazel: I think that “fix” implies your server is reporting <code>latin1</code> as its encoding. If you control the server, you should set it to use utf-8.</p>

<p>I have the following in <code>/etc/my.cnf</code> (on the server):</p>

<pre><code>[mysqld]
default-character-set = utf8

[client]
default-character-set = utf8
</code></pre>

<p>You can test what your server reports by opening an SQL session and run:</p>

<pre><code>SHOW VARIABLES LIKE 'character_set_%';
</code></pre>

<p>With MySQL it can be a little confusion because the server, database, table, connection, client, etc. can all have different encodings.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Uğur Özyılmazel</title>
		<link>http://blog.macromates.com/2007/textmate-156/#comment-3448</link>
		<dc:creator>Uğur Özyılmazel</dc:creator>
		<pubDate>Mon, 03 Nov 2008 11:46:07 +0000</pubDate>
		<guid isPermaLink="false">http://macromates.com/blog/2007/textmate-156/#comment-3448</guid>
		<description>&lt;p&gt;well, i fixed it...
fix the db_browser_lib.rb under
/Applications/TextMate.app/Contents/SharedSupport/Bundles/SQL.tmbundle/Support/bin/&lt;/p&gt;

&lt;p&gt;@@connector.query(&quot;SET NAMES &#039;utf8&#039;;&quot;) if encoding[&quot;server&quot;] != &#039;latin1&#039;&lt;/p&gt;

&lt;p&gt;to&lt;/p&gt;

&lt;p&gt;@@connector.query(&quot;SET NAMES &#039;utf8&#039;;&quot;)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>well, i fixed it&#8230;
fix the db_browser_lib.rb under
/Applications/TextMate.app/Contents/SharedSupport/Bundles/SQL.tmbundle/Support/bin/</p>

<p>@@connector.query(&#034;SET NAMES &#039;utf8&#039;;&#034;) if encoding["server"] != &#039;latin1&#039;</p>

<p>to</p>

<p>@@connector.query(&#034;SET NAMES &#039;utf8&#039;;&#034;)</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Uğur Özyılmazel</title>
		<link>http://blog.macromates.com/2007/textmate-156/#comment-3447</link>
		<dc:creator>Uğur Özyılmazel</dc:creator>
		<pubDate>Mon, 03 Nov 2008 10:27:22 +0000</pubDate>
		<guid isPermaLink="false">http://macromates.com/blog/2007/textmate-156/#comment-3447</guid>
		<description>&lt;p&gt;hi, SQL bundle has a small problem, i tried to fix but i coudnt. when i browse my rows, turkish chars are broken. tables are utf-8 and utf8_turkish_ci. i checked connectors and other stuff but i am not a ruby coder. can anyone help me out to fix?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>hi, SQL bundle has a small problem, i tried to fix but i coudnt. when i browse my rows, turkish chars are broken. tables are utf-8 and utf8_turkish_ci. i checked connectors and other stuff but i am not a ruby coder. can anyone help me out to fix?</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Vladislav</title>
		<link>http://blog.macromates.com/2007/textmate-156/#comment-2663</link>
		<dc:creator>Vladislav</dc:creator>
		<pubDate>Sun, 19 Aug 2007 14:46:21 +0000</pubDate>
		<guid isPermaLink="false">http://macromates.com/blog/2007/textmate-156/#comment-2663</guid>
		<description>&lt;p&gt;I do love TextMate!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I do love TextMate!</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Jacob Rus</title>
		<link>http://blog.macromates.com/2007/textmate-156/#comment-2629</link>
		<dc:creator>Jacob Rus</dc:creator>
		<pubDate>Fri, 20 Jul 2007 20:41:50 +0000</pubDate>
		<guid isPermaLink="false">http://macromates.com/blog/2007/textmate-156/#comment-2629</guid>
		<description>&lt;p&gt;Tom: just leaving a comment on this blog post is very unlikely to get someone to change the bundle for you.  If you can´t figure out how to alter it yourself (I doubt it´s that complex, though to be honest I haven´t looked at the code), you should figure out exactly how it should work instead, and what needs to be changed, and then hop onto the TM IRC channel, or send a message to the mailing list, to get that discussion going.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Tom: just leaving a comment on this blog post is very unlikely to get someone to change the bundle for you.  If you can´t figure out how to alter it yourself (I doubt it´s that complex, though to be honest I haven´t looked at the code), you should figure out exactly how it should work instead, and what needs to be changed, and then hop onto the TM IRC channel, or send a message to the mailing list, to get that discussion going.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://blog.macromates.com/2007/textmate-156/#comment-2628</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Fri, 20 Jul 2007 15:12:04 +0000</pubDate>
		<guid isPermaLink="false">http://macromates.com/blog/2007/textmate-156/#comment-2628</guid>
		<description>&lt;p&gt;Is anyone ever going to fix the TODO bundle so it stops defaulting to the root folder of projects?  One of my projects includes symlinks to two different folders in /var, which means when I try to use the bundle it searches through my entire /var folder which essentially makes it useless.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Is anyone ever going to fix the TODO bundle so it stops defaulting to the root folder of projects?  One of my projects includes symlinks to two different folders in /var, which means when I try to use the bundle it searches through my entire /var folder which essentially makes it useless.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Marc</title>
		<link>http://blog.macromates.com/2007/textmate-156/#comment-2627</link>
		<dc:creator>Marc</dc:creator>
		<pubDate>Fri, 20 Jul 2007 10:12:03 +0000</pubDate>
		<guid isPermaLink="false">http://macromates.com/blog/2007/textmate-156/#comment-2627</guid>
		<description>&lt;p&gt;hi allan. i&#039;m very glad you like it! so i&#039;ll take your word and post it to the mailing list :) (i&#039;m already a subscriber, but didn&#039;t post anything yet)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>hi allan. i&#039;m very glad you like it! so i&#039;ll take your word and post it to the mailing list :) (i&#039;m already a subscriber, but didn&#039;t post anything yet)</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Allan Odgaard</title>
		<link>http://blog.macromates.com/2007/textmate-156/#comment-2626</link>
		<dc:creator>Allan Odgaard</dc:creator>
		<pubDate>Thu, 19 Jul 2007 18:15:13 +0000</pubDate>
		<guid isPermaLink="false">http://macromates.com/blog/2007/textmate-156/#comment-2626</guid>
		<description>&lt;p&gt;Marc: Wow! That looks like quite a plug-in!&lt;/p&gt;

&lt;p&gt;You should send a note to the mailing list, or I can do it for you, if you don’t want to subscribe. But lots of AS2 users there.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Marc: Wow! That looks like quite a plug-in!</p>

<p>You should send a note to the mailing list, or I can do it for you, if you don’t want to subscribe. But lots of AS2 users there.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Marc Bauer</title>
		<link>http://blog.macromates.com/2007/textmate-156/#comment-2625</link>
		<dc:creator>Marc Bauer</dc:creator>
		<pubDate>Wed, 18 Jul 2007 21:04:02 +0000</pubDate>
		<guid isPermaLink="false">http://macromates.com/blog/2007/textmate-156/#comment-2625</guid>
		<description>&lt;p&gt;a welcome thread for shameless self-promotion!&lt;/p&gt;

&lt;p&gt;i&#039;m planning to release a plugin for development of actionscript 2 with textmate. i&#039;ve put up some screenshots for the curious. you see them here: &lt;a href=&quot;http://nesium.com/blog/flashmate/&quot; rel=&quot;nofollow&quot;&gt;http://nesium.com/blog/flashmate/&lt;/a&gt;
i would be glad if someone could actually test this, before i release it, so if you&#039;re interested, drop me a line at nesium-gmail-com.&lt;/p&gt;

&lt;p&gt;cheers,
marc&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>a welcome thread for shameless self-promotion!</p>

<p>i&#039;m planning to release a plugin for development of actionscript 2 with textmate. i&#039;ve put up some screenshots for the curious. you see them here: <a href="http://nesium.com/blog/flashmate/" rel="nofollow">http://nesium.com/blog/flashmate/</a>
i would be glad if someone could actually test this, before i release it, so if you&#039;re interested, drop me a line at nesium-gmail-com.</p>

<p>cheers,
marc</p>]]></content:encoded>
	</item>
</channel>
</rss>

