Re: 12 hr vs 24 hr time display

2017-01-04 Thread Jeremy Pereira
> On 3 Jan 2017, at 16:34, Sandor Szatmari <admin.szatmari@gmail.com> wrote: > > Jeremy, > >> On Jan 3, 2017, at 10:30, Jeremy Pereira >> <jeremy.pere...@aptosolutions.co.uk> wrote: >> >> >>> >> >> It seems obvious

Re: file url to string path

2013-11-22 Thread Jeremy Pereira
On 21 Nov 2013, at 00:01, Kyle Sluder k...@ksluder.com wrote: On Wed, Nov 20, 2013, at 03:26 PM, koko wrote: How does one turn this: file://localhost/Volumes/Macintosh%20HD/Included%20Free%20Designs/Aibnb18(colorized).pes http://lmgtfy.com/?q=NSURL Which leads you, via an enormous list

Re: How to implement readonly property

2012-12-07 Thread Jeremy Pereira
On 12 Nov 2012, at 20:45, Greg Parker gpar...@apple.com wrote: There is something special about statically-allocated memory. Statically-allocated memory has always been zero for the life of the process. Dynamically-allocated memory may have been non-zero at some point in the past

Re: Subclasses, protocols and properties - compiler warning

2010-11-19 Thread Jeremy Pereira
On 19 Nov 2010, at 14:38, Jonny Taylor wrote: I am encountering what I believe to be a spurious compiler warning. I wonder whether this is a clue that I am doing something differently to how I should do it. The problem comes if I define a protocol containing a property and then define

Re: How to empty the Trash programmatically?

2010-04-16 Thread Jeremy Pereira
On 16 Apr 2010, at 08:22, Graham Cox wrote: Don't. The only app that the user wants to empty the trash is Finder, not yours. If they want it emptied (or emptied securely), they'll go to the Finder and use the menu there. It's OK for your app to move stuff to the trash as long as it's

Re: How to empty the Trash programmatically?

2010-04-16 Thread Jeremy Pereira
On 16 Apr 2010, at 10:29, Matt Gough wrote: On 16 Apr 2010, at 09:46:27, Jeremy Pereira wrote: On 16 Apr 2010, at 08:22, Graham Cox wrote: Don't. The only app that the user wants to empty the trash is Finder, not yours. If they want it emptied (or emptied securely), they'll go

Re: Using the #import directive

2010-04-05 Thread Jeremy Pereira
On 2 Apr 2010, at 00:59, Steve Cronin wrote: On Apr 1, 2010, at 5:58 PM, Jens Alfke wrote: On Apr 1, 2010, at 3:51 PM, Steve Cronin wrote: I have an import statement like the last example but I can't find any bar directory I'm unable to determine the particular instance of foo.h

Re: Main thread crash

2010-03-23 Thread Jeremy Pereira
On 23 Mar 2010, at 16:17, Arun wrote: How does NSZombies help in resolving the crash? Can anyone explain please. http://developer.apple.com/mac/library/technotes/tn2004/tn2124.html#SECFOUNDATION It was surprisingly hard to track down that link using Google. In the end I got it with the

Re: User-space threads and NSAutoreleasePool

2010-03-19 Thread Jeremy Pereira
On 18 Mar 2010, at 06:41, BJ Homer wrote: On Wed, Mar 17, 2010 at 11:47 PM, Greg Guerin glgue...@amug.org wrote: doing one transaction updating 400-500 records.) Hence, we pipeline the HTTP requests, starting transfer of the second before the first one is finished. There are a large number

Re: Detecting if you're being debugged

2010-03-19 Thread Jeremy Pereira
On 18 Mar 2010, at 11:48, Peter Hudson wrote: Technical QA QA1361 Detecting the Debugger Does this code report on my app being debugged by any third party, even when the app has been stripped of symbols ? Would it work irrespective of the debugging tool used ? Did you read the warning

Re: NSComboBox problem in 10.6.2

2010-03-19 Thread Jeremy Pereira
On 19 Mar 2010, at 12:45, H. Miersch wrote: It appears you are sending -selectItemAtIndex: to the combo box, Correct. I tell it to select the first item (index 0). And when I put the list if items in the nib file (no data source) it works. But this morning I quickly inserted an nslog

Re: Case sensitive fileName

2010-03-17 Thread Jeremy Pereira
On 17 Mar 2010, at 13:35, gMail.com wrote: Hi, I have a file path /Folder/filename.txt The API fileExistsAtPath says that it exists. Now I need to get its real case sensitive file name, which is indeed e.g. FileName.txt How can I get it in a fast way? I thought by its inode, but I can't

Re: Case sensitive fileName

2010-03-17 Thread Jeremy Pereira
On 17 Mar 2010, at 16:07, Jens Alfke wrote: On Mar 17, 2010, at 6:35 AM, gMail.com wrote: Now I need to get its real case sensitive file name, which is indeed e.g. FileName.txt How can I get it in a fast way? I thought by its inode, but I can't really know how to do that. Have you

Re: NSTimer never being deallocated

2010-03-14 Thread Jeremy Pereira
On 13 Mar 2010, at 23:56, Tobias Jordan wrote: Hi Paul, You said 'an object you don't manage' -- If I alloc/init an instance of NSTimer I am responsible for this object, in my opinion. Until you release it. After that, you are not responsible for it. That doesn't mean that something

Re: IsReadableFileAtPath

2010-03-08 Thread Jeremy Pereira
On 8 Mar 2010, at 11:32, gMail.com wrote: Hi, thanks to all of you. After some days trynign and thinking, I have used lstat to check the filePermissions because I need to check thousands files per session. However I realized that Permissions and isReadableFile or isWritableFile or

Re: super call in the middle of a block of code ..

2010-02-22 Thread Jeremy Pereira
On 19 Feb 2010, at 18:06, Clark Cox wrote: On Fri, Feb 19, 2010 at 8:15 AM, Roland King r...@rols.org wrote: why would that leak it? Those calls are paired, a table enters editing mode, the variable is set and what it's set to is retained, when the table exits editing mode again the cached

Re: always show warnings?

2010-02-09 Thread Jeremy Pereira
On 9 Feb 2010, at 15:37, Joar Wingfors wrote: On 8 feb 2010, at 00.05, Mario Emmenlauer wrote: I'm not using XCode, however it sounds likely that the object files are just not rebuilt? You say it happens at every build except the first time? The compiler will only rebuild objects that

Re: Cloning an NSXMLElement and its children?

2010-02-03 Thread Jeremy Pereira
On 3 Feb 2010, at 00:28, Robert Monaghan wrote: Its a fairly deep copy. There are several nodes deep. I am trying to copy parts of the tree, so that I don't have to write code to regenerate them. No. The question was not is your tree deep? but is the copy method implemented by NSXMLNode a

Re: NSDictionary trouble

2010-01-20 Thread Jeremy Pereira
On 19 Jan 2010, at 23:06, Jens Alfke wrote: On Jan 19, 2010, at 10:46 AM, Kirk Kerekes wrote: NSDictionary will use almost any object as a key: From the docs: In general, a key can be any object (provided that it conforms to the NSCopying protocol...) -- and if it is an immutable

Re: NSDictionary trouble

2010-01-19 Thread Jeremy Pereira
On 19 Jan 2010, at 16:53, Shawn Rutledge wrote: I'm accustomed to things like Qt and Java where hashtables can contain anything for both key and value. This is not true (at least for Java and probably for QT for the same reason). From the API docs for the Map abstract class: Note: great

Re: iPhone: NSXMLParser problems

2010-01-06 Thread Jeremy Pereira
Trying again, the HTML markup in the previous version of this e-mail sent the size over the list limit. Apologies if the original also turns up I created a little test program to run the XML through a parser and mine worked which was a bit mystifying until I figured out what the problem

Re: NSXMLParser question about duplicate nodes

2010-01-06 Thread Jeremy Pereira
On 6 Jan 2010, at 16:22, Eric E. Dolecki wrote: I am fetching weather data in my results I am getting today and tomorrow's forecasts. However they have the same node: yweather:forecast day=Wed ... / yweather:forecast day=Thu .../ How can I get at those separately in my didStartElement?

Re: NSXMLParser question about duplicate nodes

2010-01-06 Thread Jeremy Pereira
, Jeremy Pereira postmas...@jeremyp.net wrote: On 6 Jan 2010, at 16:22, Eric E. Dolecki wrote: I am fetching weather data in my results I am getting today and tomorrow's forecasts. However they have the same node: yweather:forecast day=Wed ... / yweather:forecast day=Thu .../ How can

Re: iPhone: NSXMLParser problems

2010-01-05 Thread Jeremy Pereira
On 5 Jan 2010, at 05:09, Eric E. Dolecki wrote: - (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName attributes:(NSDictionary *)attributeDict { NSLog(@didStartElement); //not sure how to

Re: Setting NSWindow titlebar height

2010-01-04 Thread Jeremy Pereira
On 3 Jan 2010, at 19:41, PCWiz wrote: I have a window that looks like this right now: http://img22.imageshack.us/img22/2953/screenshot20100103at123.png I've removed the titlebar buttons and everything Why? How does the user make the Window go away/hide without the title bar buttons?

Re: Detect dim/brightness keys on laptop

2009-12-30 Thread Jeremy Pereira
On 25 Dec 2009, at 14:01, John Clayton wrote: My aim is to write a little util that swaps the function keys depending on which app is running (i.e. so that during certain apps you don't have to use the FN key on the laptop to get F1). So I need to have the ability to modify the event

Re: ipp help - need advice

2009-12-17 Thread Jeremy Pereira
IPP is an open standard. The spec is available on the Internet. The relevant RFCs are 2910 and 2911. On 15 Dec 2009, at 23:42, Development wrote: I have constructed a url request to send a png file to a ipp printer to be printed. The problem is that I get a Bad Request error when I post

Re: App works when launched from Xcode, not from Finder

2009-12-17 Thread Jeremy Pereira
On 16 Dec 2009, at 04:05, PCWiz wrote: Here's the screen capture that demonstrates this issue: http://www.vimeo.com/8208563 This time around, I got a few errors logged in Console: *** -[NSRecursiveLock unlock]: lock (NSRecursiveLock: 0x16c2340 '(null)') unlocked from thread which did

Re: Does NSData rearrange the order of bits?

2009-12-01 Thread Jeremy Pereira
On 30 Nov 2009, at 20:32, Brad Gibbs wrote: Another list member mailed me an explanation offline, causing me to look for and find the real problem preventing my code from running. Any chance of posting the off list response back to the list? It would improve the usefulness of the list

Re: iterating and removing objects from a collection

2009-12-01 Thread Jeremy Pereira
On 30 Nov 2009, at 21:21, Ken Thomases wrote: On Nov 30, 2009, at 2:45 PM, Dennis Munsie wrote: I run into this all the time where I need to iterate through an NSMutableArray (or set, etc, etc) and remove some of the items. My normal pattern has been this: NSMutableSet *removeSet =

Re: My try/catch block isn't catching exceptions on 10.6

2009-11-27 Thread Jeremy Pereira
On 26 Nov 2009, at 23:51, Mark Allan wrote: Exception Type: EXC_BAD_ACCESS (SIGBUS) Exception Codes: KERN_PROTECTION_FAILURE at 0x0010 Crashed Thread: 3 You can't catch that with an Objective C exception handler. It's a Unix bus error. Probably some pointer has changed

Re: An Array of structs

2009-11-27 Thread Jeremy Pereira
On 27 Nov 2009, at 11:35, John Love wrote: I get Initializer element is not constant. This pertains to the NSString* because if I directly substitute the following, no compile error happens: YearAmt gTest[] = {{@testy, 10} What fundamental pertaining to C or C++ am I not getting? You

Re: asl_log aborts the program?

2009-11-20 Thread Jeremy Pereira
On 20 Nov 2009, at 06:33, Chris Idou wrote: I've got a report from a user of my program crashing. In the console they are getting this: 11/19/09 3:08:46 PM[0x0-0x18a18a]Progname[8699]Progname(8699,0x1167b) malloc: *** error for object 0x100563870: pointer being freed was not

Re: Performance

2009-11-16 Thread Jeremy Pereira
On 16 Nov 2009, at 06:14, Chris Carson wrote: The application runs pretty well, and running it through the Leaks instrument there are no leaks except for 16-bytes when the application is first starting caused by IOUSBLib. However, looking at it in the Activity Monitor, the real memory

Re: -[NSString stringWithCString:encoding:] memory management question

2009-11-12 Thread Jeremy Pereira
On 11 Nov 2009, at 19:58, Hank Heijink (Mailinglists) wrote: Hi all, I've run into a funny crash when using -[NSString stringWithCString:encoding:]. The code in question runs in the iPhone Simulator. I haven't found anything on the web about this, but I found out some things by

Re: -[NSString stringWithCString:encoding:] memory management question

2009-11-12 Thread Jeremy Pereira
On 12 Nov 2009, at 14:23, Hank Heijink (Mailinglists) wrote: On Nov 12, 2009, at 5:59 AM, Jeremy Pereira wrote: for (NSUInteger i = 0; i nTags; i++) { unsigned long pcLength = 0; if (getLengthOfMetaData(fileHandle, metadataTags[i], 0, pcLength) != 0) continue

Re: Problem with allocating memory

2009-10-28 Thread Jeremy Pereira
On 28 Oct 2009, at 09:27, Michael Abendroth wrote: Basically, I got a source list to witch the user can add entries via a button. The user can also edit the entries title by double clicking on it. The problem is that when you add 3 entries for example, and then edit them, all the items you

Re: Alternative to stringWithContentsOfURL

2009-10-27 Thread Jeremy Pereira
On 27 Oct 2009, at 15:11, James Lin wrote: Hi all, I am still having the mysterious error of Internal Error 500 message returned from stringWithContentsOfURL. I am using stringWithContentsOfURL to call a php script that add an entry to MySQL database. My ISP claims that they have

Re: is GC not available on 10.5.8?

2009-10-23 Thread Jeremy Pereira
The load command is a 10.6 only mach-o load command (LC_DYLD_INFO_ONLY). Something in your application is compiled and linked for 10.6. On 23 Oct 2009, at 16:40, Nick Rogers wrote: Hi, Thanks for the reply. The app actually works as a launcher of another app with root privileges (its

Re: how to make cocoa application run as a command line tool?

2009-10-20 Thread Jeremy Pereira
On 20 Oct 2009, at 11:42, Paul M wrote: On 20/10/2009, at 10:58 PM, XiaoGang Li wrote: Greetings, I have created an document-based cocoa application, now I need to provide a command line interface for my users. for example, users input this into the terminal:

Re: how to make cocoa application run as a command line tool?

2009-10-20 Thread Jeremy Pereira
On 20 Oct 2009, at 12:20, Jeremy Pereira wrote: When I need to do this, I create a switch which puts the app into command line mode. static int commandLine(int argc, const char* argv[]); int main(int argc, char *argv[]) { if (argc 1) { if (strcmp(argv[1

Re: self release

2009-10-06 Thread Jeremy Pereira
On 6 Oct 2009, at 05:00, Dragos Ionel wrote: I have the following scenario: A UIViewController, called BookViewController represents a book. Another UIViewController, ChapterViewController, represents a chapter in the book. BookViewController initializes and displays one

Re: Xcode3.2 build and analyze warning for NSString allocation

2009-09-27 Thread Jeremy Pereira
On 27 Sep 2009, at 10:03, Nick Rogers wrote: Hi, When I alloc and init a NSString the following way, there is warning that: Potential leak of an object allocated on line 526 and stored in sizeDisp. 1. Method returns an Objective-C object with a +1 retain count (owning reference). 2.

Re: Why am I always getting the linker error: 'duplicate symbol'...?

2009-09-23 Thread Jeremy Pereira
On 21 Sep 2009, at 21:19, Frederick C. Lee wrote: I'm trying to replace #define directives with c datatype directives.Example: (1) #define x 123 versus... (2) const unsigned x = 123; I place this at the top of the .h (or .m) file, outside of any class or method as stand alone.

Re: Controlling Spaces and retrieving information about the current Space?

2009-09-23 Thread Jeremy Pereira
On 22 Sep 2009, at 17:19, Eric Schlegel wrote: Secondly, is there any way in any of those environments to programmatically switch Spaces? For example, if Space 3 happens to be visible, is there any Cocoa code I can run which will switch the visibility to, say, Space 2? No, there is no API

Re: XCode Developer issue. Debugger errors since upgrading to Snow Leopard: unable to read unknown load command 0x80000022

2009-09-22 Thread Jeremy Pereira
Sorry about coming to this late - I've been away. As I don't see any other responses to this in the list, I am replying. Apologies if it's already been covered. On 14 Sep 2009, at 17:43, maxwellma...@gmail.com wrote: Hi Folks, running XCode in debug mode shows this error countless times

Re: int to bytes(value in NSString)

2009-08-18 Thread Jeremy Pereira
On 18 Aug 2009, at 03:06, Graham Cox wrote: On 17/08/2009, at 5:07 PM, bosco fdo wrote: I need NSString in binary format how do i print NSString in binary format instead of 0001 obj-c code is uint8 barr[4]; barr[0] =(uint8)num; barr[1] =(uint8)num8; barr[2] =(uint8)num16; barr[3]

Re: [iPhone] networking

2009-08-06 Thread Jeremy Pereira
On 6 Aug 2009, at 09:27, James Lin wrote: Is this my best option given what I want to accomplish? Thanks in advance... Stepping back a little bit. Are you trying to build some sort of real time messaging service? Or does it matter if the second phone doesn't receive the message

Re: which temp dir to use?

2009-05-25 Thread Jeremy Pereira
On 25 May 2009, at 20:23, Michael Ash wrote: On Sun, May 24, 2009 at 7:57 PM, Greg Guerin glgue...@amug.org wrote: Michael Ash wrote: Malevolent process C fails. Or maybe malevolent process C works because it's running with the same uid as unprivileged process A. The sticky-bit on a

Re: #import errors and @class warnings

2009-05-04 Thread Jeremy Pereira
On 30 Apr 2009, at 17:16, Dave DeLong wrote: Hi Andre, #import means that the compiler will only include the file once, thus eliminating re-declaration errors. It does not, however, eliminate the problems introduced by circular dependencies (which is what you've got going here). As a

Re: clarification regarding properties

2009-03-31 Thread Jeremy Pereira
On 27 Mar 2009, at 18:31, WT wrote: First, thanks to all who responded to my question. On Mar 27, 2009, at 6:34 PM, Quincey Morris wrote: The 'foo' in 'self.foo' is a property. The 'foo' in 'just foo' is *not* a property, but an instance variable. It's really important to know that the

Re: Type Declaration With Protocol

2009-03-16 Thread Jeremy Pereira
On 14 Mar 2009, at 04:27, Roland King wrote: As NSObject is also a protocol you could probably also do id NSObject, Protocol to say the object supports NSObject and Protocol methods but I never do, partly because it doesn't seem as clear, partly because I know that I'm always going to

Re: Type Declaration With Protocol

2009-03-16 Thread Jeremy Pereira
On 16 Mar 2009, at 12:10, Jean-Daniel Dupas wrote: No, you can't, else the compiler will complains if you do not override all NSObject protocol methods in classes that conform to the Foo protocol. No it shouldn't. The compiler should only complain if your class does not implement

Re: case-insensitive NSDictionary

2009-03-16 Thread Jeremy Pereira
When I had to solve the exact same problem, I created a new class that wrapped the NSString as an ivar and defined my own hash and isEqual methods (which both used the corresponding methods on a lower case version of the string) and implemented NSCopying (easy because my class was

Re: Moving oneself to /Applications (or ~/Applications)

2009-03-04 Thread Jeremy Pereira
If you really want to test whether an application is running from the distribution dmg, I would have thought the easiest way is to put a hidden file on the dmg in the same directory as the application bundle and merely test for the existence of that hidden file at start up. On 24 Feb

Re: Simple memory problem

2009-02-06 Thread Jeremy Pereira
On 6 Feb 2009, at 06:32, Martin Wierschin wrote: On Feb 5, 2009, at 4:42 PM, Steve Sisak wrote: NSString * newString = [inputString stringByReplacingCharactersInRange:range withString:@]; [inputString release]; // release old inputString inputString = [newString retain];

Re: NSTask Leaking...

2009-01-29 Thread Jeremy Pereira
On 29 Jan 2009, at 19:33, Mr. Gecko wrote: I'm just going to use sscrypto framework for it... If a malicious person can replace an executable with his own, he can probably also replace a framework... Regardless of any other problems, you've introduced a serious weakness - a hacker

Re: Is there a more efficient way to get the first 4 bytes off a NSInputStream to compare

2009-01-28 Thread Jeremy Pereira
On 27 Jan 2009, at 23:07, Graham Cox wrote: On 28 Jan 2009, at 2:24 am, Jeremy Pereira wrote: Yes. That is correct, but since buffer is already a pointer to the first byte of the array and then you are taking a reference to it, key will end up containing the address of the buffer. You

Re: Is there a more efficient way to get the first 4 bytes off a NSInputStream to compare

2009-01-27 Thread Jeremy Pereira
On 27 Jan 2009, at 14:23, Adam Venturella wrote: Leopard is little endian ( at least on the intel chips, but I have read there are other macs that are big-endian, so I am trying to catch and handle that accordingly) The endianness is dependent on the processor architecture, not the

Re: Accessing private members of another object of the same class

2009-01-26 Thread Jeremy Pereira
On 26 Jan 2009, at 14:02, Horst Jäger wrote: First of all: thank you. You solved my problem. There's no real way to enforce privateness, either in Objective-C or C++. Why not in C++? #define private public class Foo { private: int privateVar; } ;

Re: SIGPIPE with sockets

2009-01-19 Thread Jeremy Pereira
On 19 Jan 2009, at 10:51, malcom wrote: Hello guys, I'm using blackhole netsocket class in an app of mine. Today I've received a report regarding this error broken pipe abnormal exit. I've taken a look a mailing list and it seems to be an error related to sockets (cannot write, closed

Re: Enum advice please

2009-01-07 Thread Jeremy Pereira
On 6 Jan 2009, at 19:59, Quincey Morris wrote: I'm sure someone will jump in and correct me if I'm wrong about this, Jumping in but (in answer to the implied why? in Graham's post) my recollection is that: -- 'typedef' was added to C later in its life, so originally 'enum XXX'

Re: Stumped on memory problem :(

2009-01-06 Thread Jeremy Pereira
On 2 Jan 2009, at 01:14, Jacob Rhoden wrote: I have read the memory management documentation over and over but still cannot work out the problem with this code, can anyone see it? I have spent hours on this! +(NSMutableArray*)getStrings { NSMutableDictionary* dict = [[NSMutableDictionary

Re: Enum advice please (resend not sure if it was delivered ?)

2009-01-06 Thread Jeremy Pereira
I pasted your code into a simple C program and it compiled no problem. Is it possible that the error is in the previous declaration to the typedef? Bear in mind it might be a problem in a header file. On 5 Jan 2009, at 10:49, Damien Cooke wrote: Hi all, I have the following code:

Re: More - Safari Download Security Alerts

2008-12-17 Thread Jeremy Pereira
On 17 Dec 2008, at 15:27, Dave wrote: On 17 Dec 2008, at 12:03, Jeremy Pereira wrote: On 17 Dec 2008, at 11:28, Dave wrote: Hi Mark, Thanks a lot, it certainly is a lot easier to use and a lot less flakey, but it still doesn't work. It does not create a folder in /Applications

Re: More - Safari Download Security Alerts

2008-12-17 Thread Jeremy Pereira
On 17 Dec 2008, at 11:28, Dave wrote: Hi Mark, Thanks a lot, it certainly is a lot easier to use and a lot less flakey, but it still doesn't work. It does not create a folder in / Applications it just installs the raw files there instead. I'm giving up on PackageMaker, it just doesn't

Re: Safari Download Security Alerts

2008-12-11 Thread Jeremy Pereira
On 11 Dec 2008, at 10:53, Dave wrote: Hi All, I have an application that is downloaded from the web by Safari. When the user double-clicks on the .dmg file to open the a Warning Dialog is displayed. My question is, is there anyway of stopping the dialog from appearing? My boss doesn't

Re: Asynchronous timers (without a run loop)

2008-12-04 Thread Jeremy Pereira
If I were trying to generate an asynchronous timer event in C I'd probably just run a thread in a tight loop calling poll (man 2 poll for details) each time round with a timeout equal to your timer interval and no other events. And when the poll returns do whatever processing you need on

Re: Not so long filenames

2008-10-27 Thread Jeremy Pereira
On 26 Oct 2008, at 09:55, Gerriet M. Denkmann wrote: On 26 Oct 2008, at 00:30, Postmaster wrote: On 14 Oct 2008, at 21:00, Gerriet M. Denkmann wrote: On 14 Oct 2008, at 18:07, Jason Coco wrote: On Oct 14, 2008, at 11:28 , Gerriet M. Denkmann wrote: HFS+ stores files in decomposed