[SOLVED] Re: Spotlight importer don't work anymore under Mavericks (sandbox error)

2013-10-25 Thread Giacomo Tufano
scritto: Hi, I have a spotlight importer for a sandboxed coredata application, derived directly from the Xcode 4.x template and working embedded in the app. The importer works under OS X 10.7 and 10.8 but fails in allocating the NSManagedModel from the storeURL located in the sandbox

Spotlight importer don't work anymore under Mavericks (sandbox error)

2013-10-24 Thread Giacomo Tufano
Hi, I have a spotlight importer for a sandboxed coredata application, derived directly from the Xcode 4.x template and working embedded in the app. The importer works under OS X 10.7 and 10.8 but fails in allocating the NSManagedModel from the storeURL located in the sandbox at containerdir

Writing a custom Spotlight Importer

2013-05-09 Thread Vincent CARLIER
Hello everybody, I've written a Spotlight Importer for my custom document format. The document has an UTI, used by the Spotlight Importer. Everything is fine, I can see my Metadata Fields correctly indexed by Spotlight, I can see the right importer loaded (it is bundled into the .app) when I run

Debugging a spotlight importer problem

2012-08-06 Thread Gideon King
I have a spotlight importer that works just fine when I run mdimport from the command line, but it fails with a sig11 when it runs automatically. I've tested it on two machines under 10.7 and 10.8, with the same results. Can anyone give any tips on how to debug this situation? Thanks Gideon

spotlight importer extract file from zip archive

2012-07-25 Thread Gideon King
Hi, I am trying to create a spotlight importer, but my files that I want to index are zip files, and NSTask will not run from the mdimporter process, since it is not blocked by the sandbox. How can I get files from my zipped documents without having to run an NSTask? Thanks Gideon

Re: spotlight importer extract file from zip archive

2012-07-25 Thread Jens Alfke
On Jul 25, 2012, at 6:57 PM, Gideon King gid...@novamind.com wrote: How can I get files from my zipped documents without having to run an NSTask? Link against libz.dylib? —Jens smime.p7s Description: S/MIME cryptographic signature ___ Cocoa-dev

Re: spotlight importer extract file from zip archive

2012-07-25 Thread Gideon King
Cool, got it working thanks. Gideon On 26/07/2012, at 12:46 PM, Jens Alfke j...@mooseyard.com wrote: On Jul 25, 2012, at 6:57 PM, Gideon King gid...@novamind.com wrote: How can I get files from my zipped documents without having to run an NSTask? Link against libz.dylib? —Jens

Older version of spotlight importer plugin still seen by mdimport -L

2010-02-09 Thread Eric Gorr
I have already filed a bug report on this ( rdar://7602076 ) and am mostly wondering if there is any possible workaround while keeping the spotlight importer in the application bundle. Basically what is going on is that there are two different versions of the same application. Version 1.0

Spotlight importer default plugins?

2009-05-28 Thread Michael Domino
Hi all, I know this is off-topic, but I posted to the Spotlight list and got no replies, and I thought someone here might know this. Can anyone list the default set of mdimporter filters shipped with Mac OS X 10.4? I can figure this out by doing a clean install, but I am hoping to avoid

Re: Spotlight importer for records

2008-03-03 Thread Adam P Jenkins
Thank you for the information. Search Kit does allow indexing arbitrary pieces of data that don't have to correspond to actual files, and since Spotlight is built on top of Search Kit I thought there would be some way to do the same thing. Thanks, Adam On Mar 3, 2008, at 1:54 AM, Jens

Re: Spotlight importer for records

2008-03-03 Thread Jens Alfke
On 3 Mar '08, at 5:50 AM, Adam P Jenkins wrote: Thank you for the information. Search Kit does allow indexing arbitrary pieces of data that don't have to correspond to actual files, and since Spotlight is built on top of Search Kit I thought there would be some way to do the same thing.

Re: Spotlight importer for records

2008-03-02 Thread Jens Alfke
On 2 Mar '08, at 10:09 PM, Adam P Jenkins wrote: I'd like to make Spotlight index individual records from my application, rather than whole files. Spotlight doesn't support that yet. Its unit of granularity is whole files. Some examples of this are Apple's own iCal, Address Book, and

Re: Spotlight Importer

2008-02-28 Thread Gerriet M. Denkmann
From: Sean McBride [EMAIL PROTECTED] On 2/26/08 12:45 AM, Quincey Morris said: On Feb 26, 2008, at 00:16, Gerriet M. Denkmann wrote: I have an application (10.4.11) which creates simple text files (utf-8 or utf-16). When I store some document as myNewFile then Spotlight does know nothing

Spotlight Importer

2008-02-26 Thread Gerriet M. Denkmann
files with NSFileHFSCreatorCode = 'MyAp' as if it had a .txt file extention? Or: if NSFileHFSCreatorCode = 'MyAp' then treat it as public.plain- text (unless the file extention says otherwise). Or do I really have to create an Spotlight Importer? Kind regards, Gerriet

Re: Spotlight Importer

2008-02-26 Thread Quincey Morris
On Feb 26, 2008, at 00:16, Gerriet M. Denkmann wrote: I have an application (10.4.11) which creates simple text files (utf-8 or utf-16). When I store some document as myNewFile then Spotlight does know nothing about it's content. But when I store the same file as myNewFile.txt then all is