EOF uses many components of the underlying OPENSTEP or NeXTSTEP system. In order to ensure that EOF is year 2000 compliant, you must install the appropriate OPENSTEP, OPENSTEP Enterprise, NeXTSTEP, or PDO patch on your system, following the install order given in the patch overview document.
EOF 2.0 has not been tested for year 2000 problems; current EOF 2.0 users will be provided with an upgrade to EOF 2.1 at no charge. For more information, please see Apple Enterprise Software's Year 2000 page at http://www.apple.com/enterprise/y2k/ For year 2000 information on EOF 1.X, please see TIL article 70084.
For more information on Apple's year 2000 program and the year 2000 status of Apple software products, please visit the Year 2000 Information Page at http://www.apple.com/about/year2000/
Customers can edit the source for this example and rebuild it if a four-digit year format is desired. In $NEXT_ROOT/NextDeveloper/Examples/EnterpriseObjects/ModelerBundle/CustomeColumns.m, change the date format on line 67 from %y to %Y:
67c67
< formatter = [[NSDateFormatter alloc]
initWithDateFormat:@"%m/%d/%y: %H:%M" allowNaturalLanguage:NO];
---
> formatter = [[NSDateFormatter alloc]
initWithDateFormat:@"%m/%d/%Y: %H:%M" allowNaturalLanguage:NO];
Rebuild the example according to the instructions in the EnterpriseObjects directory.