<?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>FlexiCoder Blog &#187; Mac OS</title>
	<atom:link href="http://www.flexicoder.com/blog/index.php/tag/mac-os/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flexicoder.com/blog</link>
	<description></description>
	<lastBuildDate>Wed, 25 Aug 2010 08:36:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Mac OS free XML Editor</title>
		<link>http://www.flexicoder.com/blog/index.php/2010/03/mac-os-free-xml-editor/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2010/03/mac-os-free-xml-editor/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 12:25:21 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[useful links]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=284</guid>
		<description><![CDATA[Found a really useful XML editor that runs on the Mac, XML Spear
Social Bookmarking]]></description>
			<content:encoded><![CDATA[<p>Found a really useful XML editor that runs on the Mac, <a href="http://www.donkeydevelopment.com/#">XML Spear</a></p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2010/03/mac-os-free-xml-editor/&title=Mac+OS+free+XML+Editor&text=Found+a+really+useful+XML+editor+that+runs+on+the+Mac%2C+XML+Spear...&tags=" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2010/03/mac-os-free-xml-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SVN, pbxuser and Xcode</title>
		<link>http://www.flexicoder.com/blog/index.php/2010/02/svn-pbxuser-and-xcode/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2010/02/svn-pbxuser-and-xcode/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 09:54:38 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[Xcode]]></category>
		<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[Mac OS]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=274</guid>
		<description><![CDATA[UPDATE: unfortunately this only works for new projects!
Recently needed to change the way svn dealt with pbxuser files, found the following article that shows you how to tell svn to ignore certain files, but before I could do anything I had to be able to see the &#8220;hidden&#8221; svn folder where this article came in [...]]]></description>
			<content:encoded><![CDATA[<p>UPDATE: unfortunately this only works for new projects!</p>
<p>Recently needed to change the way svn dealt with pbxuser files, found the following <a href="http://iphonedevelopertips.com/xcode/how-to-fix-subversion-in-xcode-3.html">article</a> that shows you how to tell svn to ignore certain files, but before I could do anything I had to be able to see the &#8220;hidden&#8221; svn folder where this <a href="http://www.macworld.com/article/51830/2006/07/showallfinder.html">article</a> came in handy!</p>
<p>I&#8217;ve copied the crucial snippets here so that I don&#8217;t lose them&#8230;.</p>
<h2>Show hidden files</h2>
<p>From Terminal run the following command&#8230;</p>
<p>defaults write com.apple.Finder AppleShowAllFiles YES</p>
<p>Then you need to get Finder to relaunch, hold down the option key and click the Finder icon in the Dock, then select Relaunch</p>
<p>Now when you look at folders any hidden ones are visible, including the important .svn</p>
<h2>SVN Ignore files</h2>
<p><em>Step 1. Open the subversion configuration file</em><br />
~/.subversion/config<br />
NOTE: If the “.subversion” directory doesn’t exist yet then run this command which fails but will create the necessary files to get you started:<br />
svn status</p>
<p><em>Step 2. Enable “global-ignores” and add new things to ignore</em><br />
Find the line that contains the text “global-ignores” and append the following text:<br />
build *~.nib *.so *.pbxuser *.mode* *.perspective*</p>
<p><em>Step 3. Enable “auto-properties”</em><br />
Located and uncomment (e.g. remove the leading “#” character) the line that looks like this:<br />
# enable-auto-props = yes</p>
<p><em>Step 4. Add additional properties</em><br />
Then go to the end of the file, in the [auto-props] section, and append these lines:<br />
*.mode* = svn:mime-type=text/X-xcode<br />
*.pbxuser = svn:mime-type=text/X-xcode<br />
*.perspective* = svn:mime-type=text/X-xcode<br />
*.pbxproj = svn:mime-type=text/X-xcode</p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2010/02/svn-pbxuser-and-xcode/&title=SVN%2C+pbxuser+and+Xcode&text=UPDATE%3A+unfortunately+this+only+works+for+new+projects%21+Recently+needed+to+change+the+way+svn+dealt+with+pbxuser+files%2C+found+the+following+article+that+shows+you+how+to+tell+svn+to+ignore+certain...&tags=mime-type+text%2C+files" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2010/02/svn-pbxuser-and-xcode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
