Re: Viewing Documentation in Safari
Re: Viewing Documentation in Safari
- Subject: Re: Viewing Documentation in Safari
- From: Patrick Mau <email@hidden>
- Date: Tue, 02 Dec 2008 15:59:42 +0100
On 02.12.2008, at 15:43, Jeff Johnson wrote:
Then I logged out and logged back in. This provides a permanent
solution to the dialog problem, not only for Xcode docs but in
general. If you want a more specific solution, try this:
sudo find /Developer/Documentation/DocSets -exec xattr -d
com.apple.quarantine {} \;
Unfortunately, it could take hours to complete, and you'll have to
repeat every time you download a docset update.
A faster way to achieve this is to use xargs with find:
Note that 'sudo' has to be part of the xargs command.
find /Developer/Documentation/DocSets -type f -print0 | xargs -0 sudo
xattr -d com.apple.quarantine
Regards
Patrick
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden