You can subscribe to this list here.
| 2005 |
Jan
(13) |
Feb
(37) |
Mar
(12) |
Apr
(15) |
May
(46) |
Jun
(40) |
Jul
(27) |
Aug
|
Sep
(35) |
Oct
(15) |
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(6) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Gfive <gf...@us...> - 2005-06-12 15:24:58
|
Update of /cvsroot/macattrick/macattrick/English.lproj/HistoryView.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30172/English.lproj/HistoryView.nib Modified Files: info.nib keyedobjects.nib Log Message: History Interface update Index: info.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/HistoryView.nib/info.nib,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** info.nib 12 Jun 2005 15:12:39 -0000 1.3 --- info.nib 12 Jun 2005 15:24:49 -0000 1.4 *************** *** 4,12 **** <dict> <key>IBDocumentLocation</key> ! <string>416 80 356 240 0 0 1280 832 </string> <key>IBEditorPositions</key> <dict> <key>10</key> ! <string>299 395 334 342 0 0 1280 832 </string> </dict> <key>IBFramework Version</key> --- 4,12 ---- <dict> <key>IBDocumentLocation</key> ! <string>560 103 356 240 0 0 1600 1002 </string> <key>IBEditorPositions</key> <dict> <key>10</key> ! <string>244 502 540 351 0 0 1600 1002 </string> </dict> <key>IBFramework Version</key> Index: keyedobjects.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/HistoryView.nib/keyedobjects.nib,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Binary files /tmp/cvsopjcXr and /tmp/cvsNrHFpR differ |
|
From: Geisschaes <gei...@us...> - 2005-06-12 15:14:08
|
Update of /cvsroot/macattrick/macattrick In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24760 Added Files: HistoryController.h HistoryController.m Log Message: history management added --- NEW FILE: HistoryController.h --- //---- license ---------------------------------------------------------------// // // // Macattrick: a Manager Assistant Tool for the online Game Hattrick.org // // Copyright (C) 2004 Roman Bertolami // // // // this file is part of Macattrick application // // http://sourceforge.net/macattrick // // // // Macattrick is free software; you can redistribute it and/or // // modify it under the terms of the GNU General Public License // // as published by the Free Software Foundation; either version 2 // // of the License, or (at your option) any later version. // // // // Macattrick is distributed in the hope that it will be useful, // // but WITHOUT ANY WARRANTY; without even the implied warranty of // // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // // GNU General Public License for more details. // // // // You should have received a copy of the GNU General Public License // // along with this program; if not, write to the Free Software // // Foundation, Inc., 59 Temple Place - Suite 330, // // Boston, MA 02111-1307, USA. // // // // Macattrick, Copyright (C) 2004 Roman Bertolami // // Macattrick comes with ABSOLUTELY NO WARRANTY! // // // //---- eo licence ------------------------------------------------------------// #import <Cocoa/Cocoa.h> #import "HistoryManager.h" #import "DateStringTransformer.h" @interface HistoryController : NSObject { IBOutlet NSView *historyView; IBOutlet NSTableView *tableView; IBOutlet NSPopUpButton *choice; NSMutableArray *toRemove; HistoryManager *historyManager; NSMutableArray *dates; DateStringTransformer *transformer; } - (NSView *) historyView; - (IBAction) removeSelected: (id) sender; - (IBAction) changeChoice: (id) sender; // Data source protocoll - (int)numberOfRowsInTableView:(NSTableView *)aTableView; - (void)tableView:(NSTableView *)aTableView setObjectValue:(id)anObject forTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex; - (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex; @end --- NEW FILE: HistoryController.m --- //---- license ---------------------------------------------------------------// // // // Macattrick: a Manager Assistant Tool for the online Game Hattrick.org // // Copyright (C) 2004 Roman Bertolami // // // // this file is part of Macattrick application // // http://sourceforge.net/macattrick // // // // Macattrick is free software; you can redistribute it and/or // // modify it under the terms of the GNU General Public License // // as published by the Free Software Foundation; either version 2 // // of the License, or (at your option) any later version. // // // // Macattrick is distributed in the hope that it will be useful, // // but WITHOUT ANY WARRANTY; without even the implied warranty of // // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // // GNU General Public License for more details. // // // // You should have received a copy of the GNU General Public License // // along with this program; if not, write to the Free Software // // Foundation, Inc., 59 Temple Place - Suite 330, // // Boston, MA 02111-1307, USA. // // // // Macattrick, Copyright (C) 2004 Roman Bertolami // // Macattrick comes with ABSOLUTELY NO WARRANTY! // // // //---- eo licence ------------------------------------------------------------// #import "HistoryController.h" @interface HistoryController (Private) - (void) reload; @end @implementation HistoryController - (id) init { self = [super init]; if(self) { historyManager = [[HistoryManager alloc] init]; transformer = [[DateStringTransformer alloc] init]; [NSBundle loadNibNamed:@"HistoryView" owner: self]; [self reload]; } return self; } - (void) reload { if(dates) {[dates release];} if(toRemove) {[toRemove release];} dates = [[NSMutableArray alloc] initWithArray: [historyManager historyDates]]; toRemove = [[NSMutableArray alloc] initWithCapacity: [dates count]]; int i; for(i=0;i<[dates count];i++) { NSNumber *no = [[NSNumber alloc] initWithInt:0]; [toRemove addObject:no]; [no release]; } [tableView reloadData]; } - (IBAction) removeSelected: (id) sender { int i=0; NSMutableArray *toRemoveDirs = [[NSMutableArray alloc] init]; for (i=0; i<[dates count]; i++) { if([[toRemove objectAtIndex:i] intValue]) { [toRemoveDirs addObject: [dates objectAtIndex:i]]; } } if([toRemoveDirs count]) { NSString *question = NSLocalizedString(@"Are you shure to remove the selected dates?", @"Are you shure to remove the selected dates?"); NSString *yes =NSLocalizedString(@"Yes", @"Yes"); NSString *no =NSLocalizedString(@"No", @"No"); int questionResult = NSRunAlertPanel(@"", question, yes, no, nil); if(questionResult) { NSEnumerator *en = [toRemoveDirs objectEnumerator]; NSString *current = nil; while(current = [en nextObject]) { [historyManager removeDate:current]; } } } [self reload]; } - (NSView *) historyView { return historyView; } - (IBAction) changeChoice: (id) sender { int selected = [choice indexOfSelectedItem]; int count = [toRemove count]; int i=0; if(selected == 1) { //select all for(i=0; i<count; i++) { NSNumber *yes = [[NSNumber alloc] initWithInt:1]; [toRemove replaceObjectAtIndex:i withObject:yes]; [yes release]; } } else if(selected == 2) { // deselect all for(i=0; i<count; i++) { NSNumber *no = [[NSNumber alloc] initWithInt:0]; [toRemove replaceObjectAtIndex:i withObject:no]; [no release]; } } [tableView reloadData]; } // Data source protocoll - (int)numberOfRowsInTableView:(NSTableView *)aTableView { return [dates count]; } - (void)tableView:(NSTableView *)aTableView setObjectValue:(id)anObject forTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex { if( [[aTableColumn identifier] isEqualToString: @"ToRemove"]) { [toRemove replaceObjectAtIndex:rowIndex withObject:anObject]; } } - (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex{ if ([[aTableColumn identifier] isEqualToString: @"Date"]) { NSString *transformed = [transformer transformedValue:[dates objectAtIndex:rowIndex] ]; return transformed; } else if( [[aTableColumn identifier] isEqualToString: @"ToRemove"]) { return [toRemove objectAtIndex:rowIndex]; } else return 0; } @end |
|
From: Geisschaes <gei...@us...> - 2005-06-12 15:13:20
|
Update of /cvsroot/macattrick/macattrick/English.lproj/HistoryView.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23353/English.lproj/HistoryView.nib Modified Files: classes.nib info.nib keyedobjects.nib Log Message: history management added Index: info.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/HistoryView.nib/info.nib,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** info.nib 10 Jun 2005 15:49:20 -0000 1.2 --- info.nib 12 Jun 2005 15:12:39 -0000 1.3 *************** *** 4,12 **** <dict> <key>IBDocumentLocation</key> ! <string>51 93 356 240 0 0 1280 832 </string> <key>IBEditorPositions</key> <dict> <key>10</key> ! <string>468 334 334 365 0 0 1280 832 </string> </dict> <key>IBFramework Version</key> --- 4,12 ---- <dict> <key>IBDocumentLocation</key> ! <string>416 80 356 240 0 0 1280 832 </string> <key>IBEditorPositions</key> <dict> <key>10</key> ! <string>299 395 334 342 0 0 1280 832 </string> </dict> <key>IBFramework Version</key> Index: classes.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/HistoryView.nib/classes.nib,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** classes.nib 8 Jun 2005 14:26:52 -0000 1.1 --- classes.nib 12 Jun 2005 15:12:39 -0000 1.2 *************** *** 1,4 **** { ! IBClasses = ({CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; }); IBVersion = 1; } \ No newline at end of file --- 1,13 ---- { ! IBClasses = ( ! {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; }, ! { ! ACTIONS = {changeChoice = id; removeSelected = id; }; ! CLASS = HistoryController; ! LANGUAGE = ObjC; ! OUTLETS = {choice = NSPopUpButton; historyView = NSView; tableView = NSTableView; }; ! SUPERCLASS = NSObject; ! } ! ); IBVersion = 1; } \ No newline at end of file Index: keyedobjects.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/HistoryView.nib/keyedobjects.nib,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsyICCL2 and /tmp/cvs8IBCZR differ |
|
From: Geisschaes <gei...@us...> - 2005-06-12 15:13:20
|
Update of /cvsroot/macattrick/macattrick In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23353 Modified Files: HistoryManager.m PreferencesController.h PreferencesController.m Log Message: history management added Index: PreferencesController.h =================================================================== RCS file: /cvsroot/macattrick/macattrick/PreferencesController.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PreferencesController.h 20 Jan 2005 20:46:01 -0000 1.3 --- PreferencesController.h 12 Jun 2005 15:12:39 -0000 1.4 *************** *** 29,32 **** --- 29,33 ---- #import <Cocoa/Cocoa.h> #import "FormulasViewController.h" + #import "HistoryController.h" @interface PreferencesController : NSWindowController *************** *** 34,37 **** --- 35,39 ---- IBOutlet NSUserDefaultsController *userDefaultsController; FormulasViewController *formulasViewController; + HistoryController *historyController; IBOutlet NSTabView *tabView; Index: HistoryManager.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/HistoryManager.m,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** HistoryManager.m 10 Jun 2005 15:49:20 -0000 1.1 --- HistoryManager.m 12 Jun 2005 15:12:39 -0000 1.2 *************** *** 32,36 **** - (NSArray*) historyDates { ! return [Properties formerDatesPathes]; } --- 32,43 ---- - (NSArray*) historyDates { ! NSArray *pathes = [Properties formerDatesPathes]; ! NSMutableArray *result = [[NSMutableArray alloc] initWithCapacity:[pathes count]]; ! NSEnumerator *en = [pathes objectEnumerator]; ! NSString *current = nil; ! while(current = [en nextObject]) { ! [result addObject: [current lastPathComponent]]; ! } ! return result; } Index: PreferencesController.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/PreferencesController.m,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** PreferencesController.m 6 Feb 2005 19:36:19 -0000 1.4 --- PreferencesController.m 12 Jun 2005 15:12:39 -0000 1.5 *************** *** 46,50 **** --- 46,54 ---- formulasViewController = [[FormulasViewController alloc] init]; } + if(!historyController) { + historyController = [[HistoryController alloc] init]; + } [[tabView tabViewItemAtIndex:2] setView:[formulasViewController formulasView]]; + [[tabView tabViewItemAtIndex:3] setView:[historyController historyView]]; } *************** *** 54,57 **** --- 58,62 ---- [userDefaultsController release]; [formulasViewController release]; + [historyController release]; [super dealloc]; } |
|
From: Geisschaes <gei...@us...> - 2005-06-12 15:13:20
|
Update of /cvsroot/macattrick/macattrick/English.lproj/PreferencesPanel.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23353/English.lproj/PreferencesPanel.nib Modified Files: info.nib keyedobjects.nib Log Message: history management added Index: info.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/PreferencesPanel.nib/info.nib,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** info.nib 10 Jun 2005 15:49:20 -0000 1.13 --- info.nib 12 Jun 2005 15:12:39 -0000 1.14 *************** *** 7,10 **** --- 7,14 ---- <key>IBFramework Version</key> <string>437.0</string> + <key>IBOpenObjects</key> + <array> + <integer>6</integer> + </array> <key>IBSystem Version</key> <string>8B15</string> Index: keyedobjects.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/PreferencesPanel.nib/keyedobjects.nib,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 Binary files /tmp/cvsz4wceX and /tmp/cvs9bsCoM differ |
|
From: Geisschaes <gei...@us...> - 2005-06-12 15:13:07
|
Update of /cvsroot/macattrick/macattrick/Test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23353/Test Modified Files: HistoryManagerTest.h HistoryManagerTest.m Log Message: history management added Index: HistoryManagerTest.h =================================================================== RCS file: /cvsroot/macattrick/macattrick/Test/HistoryManagerTest.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** HistoryManagerTest.h 10 Jun 2005 15:49:24 -0000 1.1 --- HistoryManagerTest.h 12 Jun 2005 15:12:50 -0000 1.2 *************** *** 34,36 **** --- 34,37 ---- } + @end Index: HistoryManagerTest.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/Test/HistoryManagerTest.m,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** HistoryManagerTest.m 10 Jun 2005 15:49:24 -0000 1.1 --- HistoryManagerTest.m 12 Jun 2005 15:12:50 -0000 1.2 *************** *** 28,32 **** #import "HistoryManagerTest.h" ! @implementation HistoryManagerTest --- 28,32 ---- #import "HistoryManagerTest.h" ! #import "Properties.h" @implementation HistoryManagerTest *************** *** 45,48 **** --- 45,67 ---- } + -(void) testRemoveDate { + NSFileManager *manager = [NSFileManager defaultManager]; + NSString *date = [[NSString alloc] initWithString: @"19990203"]; + NSString *dir = [[NSString alloc] initWithFormat:@"%@/%@", [Properties libraryPath], date]; + [manager createDirectoryAtPath:dir attributes:nil]; + NSString *file = [[NSString alloc] initWithFormat:@"%@/%@", dir, @"testfile"]; + NSData *contents = [[NSData alloc] init]; + [manager createFileAtPath: file contents: contents attributes:nil]; + UKTrue([manager fileExistsAtPath:file]); + UKTrue([manager fileExistsAtPath:dir]); + [historyManager removeDate:date]; + UKFalse([manager fileExistsAtPath:file]); + UKFalse([manager fileExistsAtPath:dir]); + + [dir release]; + [date release]; + [file release]; + [contents release]; + } |
|
From: Geisschaes <gei...@us...> - 2005-06-12 15:13:07
|
Update of /cvsroot/macattrick/macattrick/Macattrick.xcode In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23353/Macattrick.xcode Modified Files: project.pbxproj roman.mode1 roman.pbxuser Log Message: history management added Index: project.pbxproj =================================================================== RCS file: /cvsroot/macattrick/macattrick/Macattrick.xcode/project.pbxproj,v retrieving revision 1.80 retrieving revision 1.81 diff -C2 -d -r1.80 -r1.81 *** project.pbxproj 10 Jun 2005 15:49:21 -0000 1.80 --- project.pbxproj 12 Jun 2005 15:12:40 -0000 1.81 *************** *** 1119,1122 **** --- 1119,1162 ---- }; }; + 304A29EB085B373D0097D886 = { + fileEncoding = 4; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + path = HistoryController.h; + refType = 4; + sourceTree = "<group>"; + }; + 304A29EC085B373D0097D886 = { + fileEncoding = 4; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.objc; + path = HistoryController.m; + refType = 4; + sourceTree = "<group>"; + }; + 304A29ED085B373D0097D886 = { + fileRef = 304A29EB085B373D0097D886; + isa = PBXBuildFile; + settings = { + }; + }; + 304A29EE085B373D0097D886 = { + fileRef = 304A29EC085B373D0097D886; + isa = PBXBuildFile; + settings = { + }; + }; + 304A29EF085B373D0097D886 = { + fileRef = 304A29EB085B373D0097D886; + isa = PBXBuildFile; + settings = { + }; + }; + 304A29F0085B373D0097D886 = { + fileRef = 304A29EC085B373D0097D886; + isa = PBXBuildFile; + settings = { + }; + }; 3053D56F07008A6D004019F7 = { fileEncoding = 4; *************** *** 1717,1720 **** --- 1757,1761 ---- 30F2F9CA0851AB5F009A965F, 303BC5FC0859E7FB00B57320, + 304A29ED085B373D0097D886, ); isa = PBXHeadersBuildPhase; *************** *** 1942,1945 **** --- 1983,1987 ---- 30F2F9CB0851AB5F009A965F, 303BC5FD0859E7FB00B57320, + 304A29EE085B373D0097D886, ); isa = PBXSourcesBuildPhase; *************** *** 3014,3017 **** --- 3056,3060 ---- 30F2F9CE0851AB5F009A965F, 303BC5F80859E7FB00B57320, + 304A29EF085B373D0097D886, ); isa = PBXHeadersBuildPhase; *************** *** 3220,3223 **** --- 3263,3267 ---- 30F2F9CF0851AB5F009A965F, 303BC5F90859E7FB00B57320, + 304A29F0085B373D0097D886, ); isa = PBXSourcesBuildPhase; *************** *** 5172,5175 **** --- 5216,5221 ---- 30D78B780849D44300112C09 = { children = ( + 304A29EB085B373D0097D886, + 304A29EC085B373D0097D886, 3031CB0807A043B0006539CD, 3031CB0907A043B0006539CD, Index: roman.mode1 =================================================================== RCS file: /cvsroot/macattrick/macattrick/Macattrick.xcode/roman.mode1,v retrieving revision 1.44 retrieving revision 1.45 diff -C2 -d -r1.44 -r1.45 *** roman.mode1 10 Jun 2005 15:49:21 -0000 1.44 --- roman.mode1 12 Jun 2005 15:12:40 -0000 1.45 *************** *** 191,197 **** <dict> <key>PBXProjectModuleGUID</key> ! <string>303BC6040859E8EE00B57320</string> <key>PBXProjectModuleLabel</key> ! <string>HistoryManagerTest.m</string> <key>PBXSplitModuleInNavigatorKey</key> <dict> --- 191,197 ---- <dict> <key>PBXProjectModuleGUID</key> ! <string>3083EF4D085C84620006D9C5</string> <key>PBXProjectModuleLabel</key> ! <string>HistoryController.m</string> <key>PBXSplitModuleInNavigatorKey</key> <dict> *************** *** 199,224 **** <dict> <key>PBXProjectModuleGUID</key> ! <string>303BC65B0859ED9A00B57320</string> <key>PBXProjectModuleLabel</key> ! <string>HistoryManagerTest.m</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>303BC6660859ED9A00B57320</string> <key>history</key> <array> ! <string>303BC65C0859ED9A00B57320</string> ! <string>303BC65D0859ED9A00B57320</string> ! <string>303BC65E0859ED9A00B57320</string> ! <string>303BC65F0859ED9A00B57320</string> ! <string>303BC6600859ED9A00B57320</string> </array> <key>prevStack</key> <array> ! <string>303BC6610859ED9A00B57320</string> ! <string>303BC6620859ED9A00B57320</string> ! <string>303BC6630859ED9A00B57320</string> ! <string>303BC6640859ED9A00B57320</string> ! <string>303BC6650859ED9A00B57320</string> </array> </dict> --- 199,218 ---- <dict> <key>PBXProjectModuleGUID</key> ! <string>3083EF53085C85900006D9C5</string> <key>PBXProjectModuleLabel</key> ! <string>HistoryController.m</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>3083EF5D085C85B30006D9C5</string> <key>history</key> <array> ! <string>3083EF5B085C85B30006D9C5</string> ! <string>3083EF54085C85900006D9C5</string> </array> <key>prevStack</key> <array> ! <string>3083EF56085C85900006D9C5</string> ! <string>3083EF5C085C85B30006D9C5</string> </array> </dict> *************** *** 232,240 **** <dict> <key>Frame</key> ! <string>{{0, 20}, {921, 583}}</string> <key>PBXModuleWindowStatusBarHidden2</key> <false/> <key>RubberWindowFrame</key> ! <string>176 208 921 624 0 0 1280 832 </string> </dict> </dict> --- 226,234 ---- <dict> <key>Frame</key> ! <string>{{0, 20}, {750, 469}}</string> <key>PBXModuleWindowStatusBarHidden2</key> <false/> <key>RubberWindowFrame</key> ! <string>237 231 750 510 0 0 1280 832 </string> </dict> </dict> *************** *** 309,316 **** <array> <string>29B97314FDCFA39411CA2CEA</string> ! <string>080E96DDFE201D6D7F000001</string> ! <string>30D78B680849D3E400112C09</string> ! <string>307D956A063D9208008E2586</string> ! <string>30D78C0E0849E4A300112C09</string> <string>1C37FBAC04509CD000000102</string> <string>1C37FAAC04509CD000000102</string> --- 303,309 ---- <array> <string>29B97314FDCFA39411CA2CEA</string> ! <string>30BB2140067DC1CA00B1C71A</string> ! <string>30D78B7A0849D47B00112C09</string> ! <string>30D78B780849D44300112C09</string> <string>1C37FBAC04509CD000000102</string> <string>1C37FAAC04509CD000000102</string> *************** *** 320,331 **** <array> <array> ! <integer>17</integer> <integer>3</integer> - <integer>2</integer> <integer>0</integer> </array> </array> <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key> ! <string>{{0, 34}, {186, 669}}</string> </dict> <key>PBXTopSmartGroupGIDs</key> --- 313,324 ---- <array> <array> ! <integer>15</integer> ! <integer>13</integer> <integer>3</integer> <integer>0</integer> </array> </array> <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key> ! <string>{{0, 0}, {186, 616}}</string> </dict> <key>PBXTopSmartGroupGIDs</key> *************** *** 339,343 **** <dict> <key>Frame</key> ! <string>{{0, 0}, {203, 687}}</string> <key>GroupTreeTableConfiguration</key> <array> --- 332,336 ---- <dict> <key>Frame</key> ! <string>{{0, 0}, {203, 634}}</string> <key>GroupTreeTableConfiguration</key> <array> *************** *** 346,350 **** </array> <key>RubberWindowFrame</key> ! <string>1 101 1280 728 0 0 1280 832 </string> </dict> <key>Module</key> --- 339,343 ---- </array> <key>RubberWindowFrame</key> ! <string>50 157 1041 675 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 364,368 **** <string>1CE0B20306471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>HistoryManagerTest.m</string> <key>PBXSplitModuleInNavigatorKey</key> <dict> --- 357,361 ---- <string>1CE0B20306471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>HistoryController.m</string> <key>PBXSplitModuleInNavigatorKey</key> <dict> *************** *** 372,380 **** <string>1CE0B20406471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>HistoryManagerTest.m</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>303BC6580859ED9A00B57320</string> <key>history</key> <array> --- 365,373 ---- <string>1CE0B20406471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>HistoryController.m</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>3083EF5A085C85B30006D9C5</string> <key>history</key> <array> *************** *** 382,386 **** <string>30BE47FB082FED0200826659</string> <string>30BE4841082FF1B600826659</string> - <string>304255850837E2BB00DDF612</string> <string>3067AFF10838D3E00063180D</string> <string>30D0C99C083915F700AFB5E5</string> --- 375,378 ---- *************** *** 391,399 **** <string>30D78B880849D50F00112C09</string> <string>30D78B890849D50F00112C09</string> - <string>30D78B8C0849D50F00112C09</string> <string>30D78B8F0849D50F00112C09</string> - <string>30D78B910849D50F00112C09</string> - <string>30D78B920849D50F00112C09</string> - <string>30D78BC50849E09D00112C09</string> <string>30D78C100849E51200112C09</string> <string>30D78C110849E51200112C09</string> --- 383,387 ---- *************** *** 456,464 **** <string>30F495310854E797000B37FA</string> <string>303BC6450859ED9A00B57320</string> - <string>303BC6460859ED9A00B57320</string> <string>303BC6470859ED9A00B57320</string> ! <string>303BC6480859ED9A00B57320</string> ! <string>303BC6490859ED9A00B57320</string> ! <string>303BC64A0859ED9A00B57320</string> </array> <key>prevStack</key> --- 444,460 ---- <string>30F495310854E797000B37FA</string> <string>303BC6450859ED9A00B57320</string> <string>303BC6470859ED9A00B57320</string> ! <string>304A29C8085B30700097D886</string> ! <string>304A2A0A085B39FE0097D886</string> ! <string>304A2A0C085B39FE0097D886</string> ! <string>304A2A0D085B39FE0097D886</string> ! <string>304A2A10085B39FE0097D886</string> ! <string>304131AA085B69B300E5F9C0</string> ! <string>304131AE085B69B300E5F9C0</string> ! <string>304131D8085B750300E5F9C0</string> ! <string>304131F2085B752100E5F9C0</string> ! <string>3083EF22085C81F30006D9C5</string> ! <string>3083EF23085C81F30006D9C5</string> ! <string>3083EF24085C81F30006D9C5</string> </array> <key>prevStack</key> *************** *** 542,558 **** <string>30F2FA3E0851B8E9009A965F</string> <string>30F2FA400851B8E9009A965F</string> - <string>303BC64B0859ED9A00B57320</string> <string>303BC64C0859ED9A00B57320</string> - <string>303BC64D0859ED9A00B57320</string> - <string>303BC64E0859ED9A00B57320</string> <string>303BC64F0859ED9A00B57320</string> - <string>303BC6500859ED9A00B57320</string> - <string>303BC6510859ED9A00B57320</string> - <string>303BC6520859ED9A00B57320</string> <string>303BC6530859ED9A00B57320</string> ! <string>303BC6540859ED9A00B57320</string> ! <string>303BC6550859ED9A00B57320</string> ! <string>303BC6560859ED9A00B57320</string> ! <string>303BC6570859ED9A00B57320</string> </array> </dict> --- 538,550 ---- <string>30F2FA3E0851B8E9009A965F</string> <string>30F2FA400851B8E9009A965F</string> <string>303BC64C0859ED9A00B57320</string> <string>303BC64F0859ED9A00B57320</string> <string>303BC6530859ED9A00B57320</string> ! <string>304A2A12085B39FE0097D886</string> ! <string>304A2A14085B39FE0097D886</string> ! <string>304A2A17085B39FE0097D886</string> ! <string>304131B1085B69B300E5F9C0</string> ! <string>3083EF25085C81F30006D9C5</string> ! <string>3083EF26085C81F30006D9C5</string> </array> </dict> *************** *** 566,577 **** <dict> <key>Frame</key> ! <string>{{0, 0}, {1072, 433}}</string> <key>RubberWindowFrame</key> ! <string>1 101 1280 728 0 0 1280 832 </string> </dict> <key>Module</key> <string>PBXNavigatorGroup</string> <key>Proportion</key> ! <string>433pt</string> </dict> <dict> --- 558,569 ---- <dict> <key>Frame</key> ! <string>{{0, 0}, {833, 380}}</string> <key>RubberWindowFrame</key> ! <string>50 157 1041 675 0 0 1280 832 </string> </dict> <key>Module</key> <string>PBXNavigatorGroup</string> <key>Proportion</key> ! <string>380pt</string> </dict> <dict> *************** *** 586,592 **** <dict> <key>Frame</key> ! <string>{{0, 438}, {1072, 249}}</string> <key>RubberWindowFrame</key> ! <string>1 101 1280 728 0 0 1280 832 </string> </dict> <key>Module</key> --- 578,584 ---- <dict> <key>Frame</key> ! <string>{{0, 385}, {833, 249}}</string> <key>RubberWindowFrame</key> ! <string>50 157 1041 675 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 597,601 **** </array> <key>Proportion</key> ! <string>1072pt</string> </dict> </array> --- 589,593 ---- </array> <key>Proportion</key> ! <string>833pt</string> </dict> </array> *************** *** 612,618 **** <key>TableOfContents</key> <array> ! <string>303BC6590859ED9A00B57320</string> <string>1CE0B1FE06471DED0097A5F4</string> ! <string>303BC65A0859ED9A00B57320</string> <string>1CE0B20306471E060097A5F4</string> <string>1CE0B20506471E060097A5F4</string> --- 604,610 ---- <key>TableOfContents</key> <array> ! <string>3083EEE0085C6CCF0006D9C5</string> <string>1CE0B1FE06471DED0097A5F4</string> ! <string>3083EEE1085C6CCF0006D9C5</string> <string>1CE0B20306471E060097A5F4</string> <string>1CE0B20506471E060097A5F4</string> *************** *** 727,731 **** <false/> <key>PinnedNavigatorIdentifier</key> ! <string>303BC6040859E8EE00B57320</string> <key>ShelfIsVisible</key> <false/> --- 719,723 ---- <false/> <key>PinnedNavigatorIdentifier</key> ! <string>3083EF4D085C84620006D9C5</string> <key>ShelfIsVisible</key> <false/> *************** *** 751,764 **** <array> <string>30A82A48082E9E83003C97DB</string> - <string>303BC63B0859ED9400B57320</string> <string>1C0AD2AF069F1E9B00FABCE6</string> - <string>1CD10A99069EF8BA00B06720</string> - <string>1C530D57069F1CE1000CFCEE</string> - <string>303BC6040859E8EE00B57320</string> <string>1C0AD2B3069F1EA900FABCE6</string> <string>/Users/roman/Documents/dev/macattrick/Macattrick.xcode</string> </array> <key>WindowString</key> ! <string>1 101 1280 728 0 0 1280 832 </string> <key>WindowTools</key> <array> --- 743,753 ---- <array> <string>30A82A48082E9E83003C97DB</string> <string>1C0AD2AF069F1E9B00FABCE6</string> <string>1C0AD2B3069F1EA900FABCE6</string> <string>/Users/roman/Documents/dev/macattrick/Macattrick.xcode</string> + <string>3083EF4D085C84620006D9C5</string> </array> <key>WindowString</key> ! <string>50 157 1041 675 0 0 1280 832 </string> <key>WindowTools</key> <array> *************** *** 776,779 **** --- 765,770 ---- <array> <dict> + <key>BecomeActive</key> + <true/> <key>ContentConfiguration</key> <dict> *************** *** 781,785 **** <string>1CD0528F0623707200166675</string> <key>PBXProjectModuleLabel</key> ! <string></string> <key>StatusBarVisibility</key> <true/> --- 772,776 ---- <string>1CD0528F0623707200166675</string> <key>PBXProjectModuleLabel</key> ! <string>HistoryController.m</string> <key>StatusBarVisibility</key> <true/> *************** *** 798,807 **** </dict> <dict> - <key>BecomeActive</key> - <true/> <key>ContentConfiguration</key> <dict> <key>PBXBuildLogShowsTranscriptDefaultKey</key> ! <string>{{0, 180}, {787, 183}}</string> <key>PBXProjectModuleGUID</key> <string>XCMainBuildResultsModuleGUID</string> --- 789,796 ---- </dict> <dict> <key>ContentConfiguration</key> <dict> <key>PBXBuildLogShowsTranscriptDefaultKey</key> ! <string>{{0, 164}, {787, 199}}</string> <key>PBXProjectModuleGUID</key> <string>XCMainBuildResultsModuleGUID</string> *************** *** 841,845 **** <array> <string>30A82A48082E9E83003C97DB</string> ! <string>303BC6340859ED9400B57320</string> <string>1CD0528F0623707200166675</string> <string>XCMainBuildResultsModuleGUID</string> --- 830,834 ---- <array> <string>30A82A48082E9E83003C97DB</string> ! <string>3083EF35085C81F30006D9C5</string> <string>1CD0528F0623707200166675</string> <string>XCMainBuildResultsModuleGUID</string> *************** *** 883,888 **** <key>sizes</key> <array> ! <string>{{0, 0}, {138, 132}}</string> ! <string>{{138, 0}, {556, 132}}</string> </array> </dict> --- 872,877 ---- <key>sizes</key> <array> ! <string>{{0, 0}, {111, 127}}</string> ! <string>{{111, 0}, {583, 127}}</string> </array> </dict> *************** *** 899,904 **** <key>sizes</key> <array> ! <string>{{0, 0}, {694, 132}}</string> ! <string>{{0, 132}, {694, 249}}</string> </array> </dict> --- 888,893 ---- <key>sizes</key> <array> ! <string>{{0, 0}, {694, 127}}</string> ! <string>{{0, 127}, {694, 254}}</string> </array> </dict> *************** *** 924,928 **** <string>{{0, 0}, {694, 381}}</string> <key>RubberWindowFrame</key> ! <string>558 290 694 422 0 0 1280 832 </string> </dict> <key>Module</key> --- 913,917 ---- <string>{{0, 0}, {694, 381}}</string> <key>RubberWindowFrame</key> ! <string>124 298 694 422 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 947,967 **** <array> <string>1CD10A99069EF8BA00B06720</string> ! <string>303BC6350859ED9400B57320</string> <string>1C162984064C10D400B95A72</string> ! <string>303BC6360859ED9400B57320</string> ! <string>303BC6370859ED9400B57320</string> ! <string>303BC6380859ED9400B57320</string> ! <string>303BC6390859ED9400B57320</string> ! <string>303BC63A0859ED9400B57320</string> ! <string>303BC63B0859ED9400B57320</string> </array> <key>ToolbarConfiguration</key> <string>xcode.toolbar.config.debug</string> <key>WindowString</key> ! <string>558 290 694 422 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1CD10A99069EF8BA00B06720</string> <key>WindowToolIsVisible</key> ! <true/> </dict> <dict> --- 936,956 ---- <array> <string>1CD10A99069EF8BA00B06720</string> ! <string>30413192085B680900E5F9C0</string> <string>1C162984064C10D400B95A72</string> ! <string>30413193085B680900E5F9C0</string> ! <string>30413194085B680900E5F9C0</string> ! <string>30413195085B680900E5F9C0</string> ! <string>30413196085B680900E5F9C0</string> ! <string>30413197085B680900E5F9C0</string> ! <string>30413198085B680900E5F9C0</string> </array> <key>ToolbarConfiguration</key> <string>xcode.toolbar.config.debug</string> <key>WindowString</key> ! <string>124 298 694 422 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1CD10A99069EF8BA00B06720</string> <key>WindowToolIsVisible</key> ! <false/> </dict> <dict> *************** *** 986,990 **** <string>1CDD528C0622207200134675</string> <key>PBXProjectModuleLabel</key> ! <string>Properties.m</string> <key>StatusBarVisibility</key> <true/> --- 975,979 ---- <string>1CDD528C0622207200134675</string> <key>PBXProjectModuleLabel</key> ! <string></string> <key>StatusBarVisibility</key> <true/> *************** *** 1007,1012 **** </dict> <dict> - <key>BecomeActive</key> - <true/> <key>ContentConfiguration</key> <dict> --- 996,999 ---- *************** *** 1044,1049 **** <array> <string>1C530D57069F1CE1000CFCEE</string> ! <string>303BC63E0859ED9400B57320</string> ! <string>303BC63F0859ED9400B57320</string> <string>1CDD528C0622207200134675</string> <string>1CD0528E0623707200166675</string> --- 1031,1036 ---- <array> <string>1C530D57069F1CE1000CFCEE</string> ! <string>304A2A36085B3A9A0097D886</string> ! <string>304A2A37085B3A9A0097D886</string> <string>1CDD528C0622207200134675</string> <string>1CD0528E0623707200166675</string> *************** *** 1073,1076 **** --- 1060,1065 ---- <array> <dict> + <key>BecomeActive</key> + <true/> <key>ContentConfiguration</key> <dict> *************** *** 1108,1112 **** <array> <string>30BE4823082FED6F00826659</string> ! <string>30F2FA7B0851B8E9009A965F</string> <string>1C78EAAC065D492600B07095</string> </array> --- 1097,1101 ---- <array> <string>30BE4823082FED6F00826659</string> ! <string>304131D7085B750200E5F9C0</string> <string>1C78EAAC065D492600B07095</string> </array> *************** *** 1116,1120 **** <string>30BE4823082FED6F00826659</string> <key>WindowToolIsVisible</key> ! <false/> </dict> <dict> --- 1105,1109 ---- <string>30BE4823082FED6F00826659</string> <key>WindowToolIsVisible</key> ! <true/> </dict> <dict> *************** *** 1180,1184 **** <string>{{0, 0}, {1095, 323}}</string> <key>RubberWindowFrame</key> ! <string>184 368 1095 364 0 0 1280 832 </string> </dict> <key>Module</key> --- 1169,1173 ---- <string>{{0, 0}, {1095, 323}}</string> <key>RubberWindowFrame</key> ! <string>849 281 1095 364 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 1203,1214 **** <array> <string>1C0AD2B3069F1EA900FABCE6</string> ! <string>303BC6400859ED9400B57320</string> <string>1CD0528B0623707200166675</string> ! <string>303BC6410859ED9400B57320</string> </array> <key>ToolbarConfiguration</key> <string>xcode.toolbar.config.run</string> <key>WindowString</key> ! <string>184 368 1095 364 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1C0AD2B3069F1EA900FABCE6</string> --- 1192,1203 ---- <array> <string>1C0AD2B3069F1EA900FABCE6</string> ! <string>3083EEFB085C727D0006D9C5</string> <string>1CD0528B0623707200166675</string> ! <string>3083EEFC085C727D0006D9C5</string> </array> <key>ToolbarConfiguration</key> <string>xcode.toolbar.config.run</string> <key>WindowString</key> ! <string>849 281 1095 364 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1C0AD2B3069F1EA900FABCE6</string> *************** *** 1481,1485 **** <array> <string>1C0AD2AF069F1E9B00FABCE6</string> ! <string>303BC6420859ED9400B57320</string> <string>1CA6456E063B45B4001379D8</string> </array> --- 1470,1474 ---- <array> <string>1C0AD2AF069F1E9B00FABCE6</string> ! <string>3083EEE2085C6CCF0006D9C5</string> <string>1CA6456E063B45B4001379D8</string> </array> Index: roman.pbxuser =================================================================== RCS file: /cvsroot/macattrick/macattrick/Macattrick.xcode/roman.pbxuser,v retrieving revision 1.109 retrieving revision 1.110 diff -C2 -d -r1.109 -r1.110 *** roman.pbxuser 10 Jun 2005 15:49:21 -0000 1.109 --- roman.pbxuser 12 Jun 2005 15:12:40 -0000 1.110 *************** *** 40,47 **** activeBuildStyle = 4A9504CCFFE6A4B311CA0CBA; activeExecutable = 30744BA6069560A70039B82A; ! activeTarget = 30DFA496082018F2000CE74D; addToTargets = ( ! 309914160820019C00FBF240, ! 30DFA496082018F2000CE74D, ); breakpoints = ( --- 40,47 ---- activeBuildStyle = 4A9504CCFFE6A4B311CA0CBA; [...1608 lines suppressed...] 30FA04D6084A03320005E57E = { fRef = 30C8623C064681A00016E5B3; --- 5552,5555 ---- *************** *** 5298,5311 **** vrLoc = 3150; }; - 30FA0677084A3FFF0005E57E = { - fRef = 301CEB8F06746643001C1E37; - isa = PBXTextBookmark; - name = "Properties.m: 45"; - rLen = 0; - rLoc = 2639; - rType = 0; - vrLen = 1130; - vrLoc = 2149; - }; 30FA067A084A3FFF0005E57E = { fRef = 30EC0BED06425140008B3F6B; --- 5682,5685 ---- |
|
From: Geisschaes <gei...@us...> - 2005-06-10 15:50:02
|
Update of /cvsroot/macattrick/macattrick/English.lproj/PreferencesPanel.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25890/English.lproj/PreferencesPanel.nib Modified Files: info.nib keyedobjects.nib Log Message: started implementing history manager Index: info.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/PreferencesPanel.nib/info.nib,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** info.nib 14 May 2005 10:23:10 -0000 1.12 --- info.nib 10 Jun 2005 15:49:20 -0000 1.13 *************** *** 4,12 **** <dict> <key>IBDocumentLocation</key> ! <string>93 129 356 240 0 0 1600 1002 </string> <key>IBFramework Version</key> <string>437.0</string> <key>IBSystem Version</key> ! <string>8A428</string> </dict> </plist> --- 4,12 ---- <dict> <key>IBDocumentLocation</key> ! <string>69 100 356 240 0 0 1280 832 </string> <key>IBFramework Version</key> <string>437.0</string> <key>IBSystem Version</key> ! <string>8B15</string> </dict> </plist> Index: keyedobjects.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/PreferencesPanel.nib/keyedobjects.nib,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 Binary files /tmp/cvsC1ERjq and /tmp/cvsfuzgn0 differ |
|
From: Geisschaes <gei...@us...> - 2005-06-10 15:50:02
|
Update of /cvsroot/macattrick/macattrick/English.lproj/PlayerTableView.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25890/English.lproj/PlayerTableView.nib Modified Files: info.nib keyedobjects.nib Log Message: started implementing history manager Index: info.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/PlayerTableView.nib/info.nib,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** info.nib 4 Jun 2005 10:26:27 -0000 1.9 --- info.nib 10 Jun 2005 15:49:20 -0000 1.10 *************** *** 4,8 **** <dict> <key>IBDocumentLocation</key> ! <string>241 216 497 319 0 0 1280 832 </string> <key>IBEditorPositions</key> <dict> --- 4,8 ---- <dict> <key>IBDocumentLocation</key> ! <string>27 411 497 319 0 0 1280 832 </string> <key>IBEditorPositions</key> <dict> Index: keyedobjects.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/PlayerTableView.nib/keyedobjects.nib,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 Binary files /tmp/cvse6VZac and /tmp/cvsJ7Ge5L differ |
|
From: Geisschaes <gei...@us...> - 2005-06-10 15:50:00
|
Update of /cvsroot/macattrick/macattrick/English.lproj/HistoryView.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25890/English.lproj/HistoryView.nib Modified Files: info.nib keyedobjects.nib Log Message: started implementing history manager Index: info.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/HistoryView.nib/info.nib,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** info.nib 8 Jun 2005 14:26:52 -0000 1.1 --- info.nib 10 Jun 2005 15:49:20 -0000 1.2 *************** *** 4,12 **** <dict> <key>IBDocumentLocation</key> ! <string>69 62 356 240 0 0 1600 1002 </string> <key>IBEditorPositions</key> <dict> <key>10</key> ! <string>453 403 334 365 0 0 1600 1002 </string> </dict> <key>IBFramework Version</key> --- 4,12 ---- <dict> <key>IBDocumentLocation</key> ! <string>51 93 356 240 0 0 1280 832 </string> <key>IBEditorPositions</key> <dict> <key>10</key> ! <string>468 334 334 365 0 0 1280 832 </string> </dict> <key>IBFramework Version</key> Index: keyedobjects.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/HistoryView.nib/keyedobjects.nib,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsV8bFZJ and /tmp/cvsG5TUCj differ |
|
From: Geisschaes <gei...@us...> - 2005-06-10 15:49:39
|
Update of /cvsroot/macattrick/macattrick/Test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25890/Test Added Files: HistoryManagerTest.h HistoryManagerTest.m Log Message: started implementing history manager --- NEW FILE: HistoryManagerTest.h --- //---- license ---------------------------------------------------------------// // // // Macattrick: a Manager Assistant Tool for the online Game Hattrick.org // // Copyright (C) 2004 Roman Bertolami // // // // this file is part of Macattrick application // // http://sourceforge.net/macattrick // // // // Macattrick is free software; you can redistribute it and/or // // modify it under the terms of the GNU General Public License // // as published by the Free Software Foundation; either version 2 // // of the License, or (at your option) any later version. // // // // Macattrick is distributed in the hope that it will be useful, // // but WITHOUT ANY WARRANTY; without even the implied warranty of // // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // // GNU General Public License for more details. // // // // You should have received a copy of the GNU General Public License // // along with this program; if not, write to the Free Software // // Foundation, Inc., 59 Temple Place - Suite 330, // // Boston, MA 02111-1307, USA. // // // // Macattrick, Copyright (C) 2004 Roman Bertolami // // Macattrick comes with ABSOLUTELY NO WARRANTY! // // // //---- eo licence ------------------------------------------------------------// #import <Foundation/Foundation.h> #import <UnitKit/UnitKit.h> #import "HistoryManager.h" @interface HistoryManagerTest : NSObject <UKTest> { HistoryManager* historyManager; } @end --- NEW FILE: HistoryManagerTest.m --- //---- license ---------------------------------------------------------------// // // // Macattrick: a Manager Assistant Tool for the online Game Hattrick.org // // Copyright (C) 2004 Roman Bertolami // // // // this file is part of Macattrick application // // http://sourceforge.net/macattrick // // // // Macattrick is free software; you can redistribute it and/or // // modify it under the terms of the GNU General Public License // // as published by the Free Software Foundation; either version 2 // // of the License, or (at your option) any later version. // // // // Macattrick is distributed in the hope that it will be useful, // // but WITHOUT ANY WARRANTY; without even the implied warranty of // // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // // GNU General Public License for more details. // // // // You should have received a copy of the GNU General Public License // // along with this program; if not, write to the Free Software // // Foundation, Inc., 59 Temple Place - Suite 330, // // Boston, MA 02111-1307, USA. // // // // Macattrick, Copyright (C) 2004 Roman Bertolami // // Macattrick comes with ABSOLUTELY NO WARRANTY! // // // //---- eo licence ------------------------------------------------------------// #import "HistoryManagerTest.h" @implementation HistoryManagerTest - (id) init { self = [super init]; if(self) { historyManager = [[HistoryManager alloc] init]; } return self; } - (void) testHistoryDates { NSArray *dates = [historyManager historyDates]; UKNotNil(dates); UKTrue ([dates count] > 2); } - (void) dealloc { [historyManager release]; [super dealloc]; } @end |
|
From: Geisschaes <gei...@us...> - 2005-06-10 15:49:39
|
Update of /cvsroot/macattrick/macattrick/Macattrick.xcode In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25890/Macattrick.xcode Modified Files: project.pbxproj roman.mode1 roman.pbxuser Log Message: started implementing history manager Index: project.pbxproj =================================================================== RCS file: /cvsroot/macattrick/macattrick/Macattrick.xcode/project.pbxproj,v retrieving revision 1.79 retrieving revision 1.80 diff -C2 -d -r1.79 -r1.80 *** project.pbxproj 8 Jun 2005 14:27:48 -0000 1.79 --- project.pbxproj 10 Jun 2005 15:49:21 -0000 1.80 *************** *** 888,891 **** --- 888,995 ---- }; }; + 303BC5F40859E7FA00B57320 = { + fileEncoding = 4; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + path = HistoryManager.h; + refType = 4; + sourceTree = "<group>"; + }; + 303BC5F50859E7FA00B57320 = { + fileEncoding = 4; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.objc; + path = HistoryManager.m; + refType = 4; + sourceTree = "<group>"; + }; + 303BC5F60859E7FB00B57320 = { + fileRef = 303BC5F40859E7FA00B57320; + isa = PBXBuildFile; + settings = { + }; + }; + 303BC5F70859E7FB00B57320 = { + fileRef = 303BC5F50859E7FA00B57320; + isa = PBXBuildFile; + settings = { + }; + }; + 303BC5F80859E7FB00B57320 = { + fileRef = 303BC5F40859E7FA00B57320; + isa = PBXBuildFile; + settings = { + }; + }; + 303BC5F90859E7FB00B57320 = { + fileRef = 303BC5F50859E7FA00B57320; + isa = PBXBuildFile; + settings = { + }; + }; + 303BC5FA0859E7FB00B57320 = { + fileRef = 303BC5F40859E7FA00B57320; + isa = PBXBuildFile; + settings = { + }; + }; + 303BC5FB0859E7FB00B57320 = { + fileRef = 303BC5F50859E7FA00B57320; + isa = PBXBuildFile; + settings = { + }; + }; + 303BC5FC0859E7FB00B57320 = { + fileRef = 303BC5F40859E7FA00B57320; + isa = PBXBuildFile; + settings = { + }; + }; + 303BC5FD0859E7FB00B57320 = { + fileRef = 303BC5F50859E7FA00B57320; + isa = PBXBuildFile; + settings = { + }; + }; + 303BC6180859EB6600B57320 = { + fileEncoding = 4; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + path = HistoryManagerTest.h; + refType = 4; + sourceTree = "<group>"; + }; + 303BC6190859EB6600B57320 = { + fileEncoding = 4; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.objc; + path = HistoryManagerTest.m; + refType = 4; + sourceTree = "<group>"; + }; + 303BC61A0859EB6600B57320 = { + fileRef = 303BC6180859EB6600B57320; + isa = PBXBuildFile; + settings = { + }; + }; + 303BC61B0859EB6600B57320 = { + fileRef = 303BC6190859EB6600B57320; + isa = PBXBuildFile; + settings = { + }; + }; + 303BC61C0859EB6600B57320 = { + fileRef = 303BC6180859EB6600B57320; + isa = PBXBuildFile; + settings = { + }; + }; + 303BC61D0859EB6600B57320 = { + fileRef = 303BC6190859EB6600B57320; + isa = PBXBuildFile; + settings = { + }; + }; 303E6CFF070708480091C7D3 = { fileEncoding = 4; *************** *** 1612,1615 **** --- 1716,1720 ---- 309D5550084E2C8E0035A2BA, 30F2F9CA0851AB5F009A965F, + 303BC5FC0859E7FB00B57320, ); isa = PBXHeadersBuildPhase; *************** *** 1836,1839 **** --- 1941,1945 ---- 309D5551084E2C8E0035A2BA, 30F2F9CB0851AB5F009A965F, + 303BC5FD0859E7FB00B57320, ); isa = PBXSourcesBuildPhase; *************** *** 2907,2910 **** --- 3013,3017 ---- 309D5552084E2C8E0035A2BA, 30F2F9CE0851AB5F009A965F, + 303BC5F80859E7FB00B57320, ); isa = PBXHeadersBuildPhase; *************** *** 3112,3115 **** --- 3219,3223 ---- 309D5553084E2C8E0035A2BA, 30F2F9CF0851AB5F009A965F, + 303BC5F90859E7FB00B57320, ); isa = PBXSourcesBuildPhase; *************** *** 3475,3478 **** --- 3583,3588 ---- 309D5556084E2C8E0035A2BA, 30F2F9CC0851AB5F009A965F, + 303BC5F60859E7FB00B57320, + 303BC61A0859EB6600B57320, ); isa = PBXHeadersBuildPhase; *************** *** 3532,3535 **** --- 3642,3647 ---- 309D5557084E2C8E0035A2BA, 30F2F9CD0851AB5F009A965F, + 303BC5F70859E7FB00B57320, + 303BC61B0859EB6600B57320, ); isa = PBXSourcesBuildPhase; *************** *** 5032,5035 **** --- 5144,5149 ---- 301CEB8E06746643001C1E37, 301CEB8F06746643001C1E37, + 303BC5F40859E7FA00B57320, + 303BC5F50859E7FA00B57320, ); isa = PBXGroup; *************** *** 5212,5215 **** --- 5326,5331 ---- 306796E406BED27F00161E78, 306796E506BED27F00161E78, + 303BC6180859EB6600B57320, + 303BC6190859EB6600B57320, ); isa = PBXGroup; *************** *** 5361,5364 **** --- 5477,5482 ---- 309D5554084E2C8E0035A2BA, 30F2F9D00851AB5F009A965F, + 303BC5FA0859E7FB00B57320, + 303BC61C0859EB6600B57320, ); isa = PBXHeadersBuildPhase; *************** *** 5416,5419 **** --- 5534,5539 ---- 309D5555084E2C8E0035A2BA, 30F2F9D10851AB5F009A965F, + 303BC5FB0859E7FB00B57320, + 303BC61D0859EB6600B57320, ); isa = PBXSourcesBuildPhase; Index: roman.mode1 =================================================================== RCS file: /cvsroot/macattrick/macattrick/Macattrick.xcode/roman.mode1,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** roman.mode1 4 Jun 2005 10:26:28 -0000 1.43 --- roman.mode1 10 Jun 2005 15:49:21 -0000 1.44 *************** *** 191,197 **** <dict> <key>PBXProjectModuleGUID</key> ! <string>30FA06CB084A4BD40005E57E</string> <key>PBXProjectModuleLabel</key> ! <string>Properties.m</string> <key>PBXSplitModuleInNavigatorKey</key> <dict> --- 191,197 ---- <dict> <key>PBXProjectModuleGUID</key> ! <string>303BC6040859E8EE00B57320</string> <key>PBXProjectModuleLabel</key> ! <string>HistoryManagerTest.m</string> <key>PBXSplitModuleInNavigatorKey</key> <dict> *************** *** 199,261 **** <dict> <key>PBXProjectModuleGUID</key> ! <string>30FA06CF084A4C2F0005E57E</string> <key>PBXProjectModuleLabel</key> ! <string>Properties.m</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>30F2FA700851B8E9009A965F</string> <key>history</key> <array> ! <string>30F01D8B084B887D009C068B</string> ! <string>30F01DB1084B9EE6009C068B</string> ! <string>30F01DB5084B9EE6009C068B</string> ! <string>30F01DB6084B9EE6009C068B</string> ! <string>309D54FD084E21980035A2BA</string> ! <string>309D559D084E512B0035A2BA</string> ! <string>309D559E084E512B0035A2BA</string> ! <string>309D55A1084E512B0035A2BA</string> ! <string>309D55A2084E512B0035A2BA</string> ! <string>30F2FA590851B8E9009A965F</string> ! <string>30F2FA5A0851B8E9009A965F</string> ! <string>30F2FA5B0851B8E9009A965F</string> ! <string>30F2FA5C0851B8E9009A965F</string> ! <string>30F2FA5D0851B8E9009A965F</string> ! <string>30F2FA5E0851B8E9009A965F</string> ! <string>30F2FA5F0851B8E9009A965F</string> ! <string>30F01D8C084B887D009C068B</string> </array> <key>prevStack</key> <array> ! <string>30F01D8E084B887D009C068B</string> ! <string>30F01D8F084B887D009C068B</string> ! <string>30F01D91084B887D009C068B</string> ! <string>30F01D92084B887D009C068B</string> ! <string>30F01D94084B887D009C068B</string> ! <string>30F01DB8084B9EE6009C068B</string> ! <string>30F01DB9084B9EE6009C068B</string> ! <string>30F01DBA084B9EE6009C068B</string> ! <string>30F01DBC084B9EE6009C068B</string> ! <string>30F01DBE084B9EE6009C068B</string> ! <string>30F01DBF084B9EE6009C068B</string> ! <string>309D5501084E21980035A2BA</string> ! <string>309D55A9084E512B0035A2BA</string> ! <string>309D55AA084E512B0035A2BA</string> ! <string>30F2FA600851B8E9009A965F</string> ! <string>30F2FA610851B8E9009A965F</string> ! <string>30F2FA620851B8E9009A965F</string> ! <string>30F2FA630851B8E9009A965F</string> ! <string>30F2FA640851B8E9009A965F</string> ! <string>30F2FA650851B8E9009A965F</string> ! <string>30F2FA660851B8E9009A965F</string> ! <string>30F2FA670851B8E9009A965F</string> ! <string>30F2FA680851B8E9009A965F</string> ! <string>30F2FA690851B8E9009A965F</string> ! <string>30F2FA6A0851B8E9009A965F</string> ! <string>30F2FA6B0851B8E9009A965F</string> ! <string>30F2FA6C0851B8E9009A965F</string> ! <string>30F2FA6D0851B8E9009A965F</string> ! <string>30F2FA6E0851B8E9009A965F</string> ! <string>30F2FA6F0851B8E9009A965F</string> </array> </dict> --- 199,224 ---- <dict> <key>PBXProjectModuleGUID</key> ! <string>303BC65B0859ED9A00B57320</string> <key>PBXProjectModuleLabel</key> ! <string>HistoryManagerTest.m</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>303BC6660859ED9A00B57320</string> <key>history</key> <array> ! <string>303BC65C0859ED9A00B57320</string> ! <string>303BC65D0859ED9A00B57320</string> ! <string>303BC65E0859ED9A00B57320</string> ! <string>303BC65F0859ED9A00B57320</string> ! <string>303BC6600859ED9A00B57320</string> </array> <key>prevStack</key> <array> ! <string>303BC6610859ED9A00B57320</string> ! <string>303BC6620859ED9A00B57320</string> ! <string>303BC6630859ED9A00B57320</string> ! <string>303BC6640859ED9A00B57320</string> ! <string>303BC6650859ED9A00B57320</string> </array> </dict> *************** *** 273,277 **** <false/> <key>RubberWindowFrame</key> ! <string>636 125 921 624 0 0 1280 832 </string> </dict> </dict> --- 236,240 ---- <false/> <key>RubberWindowFrame</key> ! <string>176 208 921 624 0 0 1280 832 </string> </dict> </dict> *************** *** 346,354 **** <array> <string>29B97314FDCFA39411CA2CEA</string> - <string>30E284D3077EFCA900DB648A</string> <string>080E96DDFE201D6D7F000001</string> ! <string>30BB2140067DC1CA00B1C71A</string> ! <string>29B97323FDCFA39411CA2CEA</string> ! <string>30A438AD068C2923001BFB41</string> <string>1C37FBAC04509CD000000102</string> <string>1C37FAAC04509CD000000102</string> --- 309,316 ---- <array> <string>29B97314FDCFA39411CA2CEA</string> <string>080E96DDFE201D6D7F000001</string> ! <string>30D78B680849D3E400112C09</string> ! <string>307D956A063D9208008E2586</string> ! <string>30D78C0E0849E4A300112C09</string> <string>1C37FBAC04509CD000000102</string> <string>1C37FAAC04509CD000000102</string> *************** *** 358,368 **** <array> <array> ! <integer>34</integer> ! <integer>30</integer> <integer>0</integer> </array> </array> <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key> ! <string>{{0, 0}, {186, 669}}</string> </dict> <key>PBXTopSmartGroupGIDs</key> --- 320,331 ---- <array> <array> ! <integer>17</integer> ! <integer>3</integer> ! <integer>2</integer> <integer>0</integer> </array> </array> <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key> ! <string>{{0, 34}, {186, 669}}</string> </dict> <key>PBXTopSmartGroupGIDs</key> *************** *** 383,387 **** </array> <key>RubberWindowFrame</key> ! <string>21 104 1280 728 0 0 1280 832 </string> </dict> <key>Module</key> --- 346,350 ---- </array> <key>RubberWindowFrame</key> ! <string>1 101 1280 728 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 401,405 **** <string>1CE0B20306471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerList.m</string> <key>PBXSplitModuleInNavigatorKey</key> <dict> --- 364,368 ---- <string>1CE0B20306471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>HistoryManagerTest.m</string> <key>PBXSplitModuleInNavigatorKey</key> <dict> *************** *** 409,417 **** <string>1CE0B20406471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerList.m</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>30F2FA560851B8E9009A965F</string> <key>history</key> <array> --- 372,380 ---- <string>1CE0B20406471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>HistoryManagerTest.m</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>303BC6580859ED9A00B57320</string> <key>history</key> <array> *************** *** 468,472 **** <string>30FA0622084A20E50005E57E</string> <string>30FA0676084A3FFF0005E57E</string> - <string>30FA0677084A3FFF0005E57E</string> <string>30FA0694084A45A40005E57E</string> <string>30FA06B9084A49F80005E57E</string> --- 431,434 ---- *************** *** 490,497 **** <string>30F2FA2D0851B8E9009A965F</string> <string>30F2FA2E0851B8E9009A965F</string> - <string>30F2FA2F0851B8E9009A965F</string> <string>30F2FA300851B8E9009A965F</string> <string>30F2FA310851B8E9009A965F</string> ! <string>30F2FA320851B8E9009A965F</string> </array> <key>prevStack</key> --- 452,464 ---- <string>30F2FA2D0851B8E9009A965F</string> <string>30F2FA2E0851B8E9009A965F</string> <string>30F2FA300851B8E9009A965F</string> <string>30F2FA310851B8E9009A965F</string> ! <string>30F495310854E797000B37FA</string> ! <string>303BC6450859ED9A00B57320</string> ! <string>303BC6460859ED9A00B57320</string> ! <string>303BC6470859ED9A00B57320</string> ! <string>303BC6480859ED9A00B57320</string> ! <string>303BC6490859ED9A00B57320</string> ! <string>303BC64A0859ED9A00B57320</string> </array> <key>prevStack</key> *************** *** 571,609 **** <string>309D558E084E512B0035A2BA</string> <string>309D5592084E512B0035A2BA</string> - <string>30F2FA330851B8E9009A965F</string> <string>30F2FA340851B8E9009A965F</string> - <string>30F2FA350851B8E9009A965F</string> - <string>30F2FA360851B8E9009A965F</string> - <string>30F2FA370851B8E9009A965F</string> <string>30F2FA380851B8E9009A965F</string> - <string>30F2FA390851B8E9009A965F</string> - <string>30F2FA3A0851B8E9009A965F</string> - <string>30F2FA3B0851B8E9009A965F</string> - <string>30F2FA3C0851B8E9009A965F</string> - <string>30F2FA3D0851B8E9009A965F</string> <string>30F2FA3E0851B8E9009A965F</string> - <string>30F2FA3F0851B8E9009A965F</string> <string>30F2FA400851B8E9009A965F</string> ! <string>30F2FA410851B8E9009A965F</string> ! <string>30F2FA420851B8E9009A965F</string> ! <string>30F2FA430851B8E9009A965F</string> ! <string>30F2FA440851B8E9009A965F</string> ! <string>30F2FA450851B8E9009A965F</string> ! <string>30F2FA460851B8E9009A965F</string> ! <string>30F2FA470851B8E9009A965F</string> ! <string>30F2FA480851B8E9009A965F</string> ! <string>30F2FA490851B8E9009A965F</string> ! <string>30F2FA4A0851B8E9009A965F</string> ! <string>30F2FA4B0851B8E9009A965F</string> ! <string>30F2FA4C0851B8E9009A965F</string> ! <string>30F2FA4D0851B8E9009A965F</string> ! <string>30F2FA4E0851B8E9009A965F</string> ! <string>30F2FA4F0851B8E9009A965F</string> ! <string>30F2FA500851B8E9009A965F</string> ! <string>30F2FA510851B8E9009A965F</string> ! <string>30F2FA520851B8E9009A965F</string> ! <string>30F2FA530851B8E9009A965F</string> ! <string>30F2FA540851B8E9009A965F</string> ! <string>30F2FA550851B8E9009A965F</string> </array> </dict> --- 538,558 ---- <string>309D558E084E512B0035A2BA</string> <string>309D5592084E512B0035A2BA</string> <string>30F2FA340851B8E9009A965F</string> <string>30F2FA380851B8E9009A965F</string> <string>30F2FA3E0851B8E9009A965F</string> <string>30F2FA400851B8E9009A965F</string> ! <string>303BC64B0859ED9A00B57320</string> ! <string>303BC64C0859ED9A00B57320</string> ! <string>303BC64D0859ED9A00B57320</string> ! <string>303BC64E0859ED9A00B57320</string> ! <string>303BC64F0859ED9A00B57320</string> ! <string>303BC6500859ED9A00B57320</string> ! <string>303BC6510859ED9A00B57320</string> ! <string>303BC6520859ED9A00B57320</string> ! <string>303BC6530859ED9A00B57320</string> ! <string>303BC6540859ED9A00B57320</string> ! <string>303BC6550859ED9A00B57320</string> ! <string>303BC6560859ED9A00B57320</string> ! <string>303BC6570859ED9A00B57320</string> </array> </dict> *************** *** 619,623 **** <string>{{0, 0}, {1072, 433}}</string> <key>RubberWindowFrame</key> ! <string>21 104 1280 728 0 0 1280 832 </string> </dict> <key>Module</key> --- 568,572 ---- <string>{{0, 0}, {1072, 433}}</string> <key>RubberWindowFrame</key> ! <string>1 101 1280 728 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 639,643 **** <string>{{0, 438}, {1072, 249}}</string> <key>RubberWindowFrame</key> ! <string>21 104 1280 728 0 0 1280 832 </string> </dict> <key>Module</key> --- 588,592 ---- <string>{{0, 438}, {1072, 249}}</string> <key>RubberWindowFrame</key> ! <string>1 101 1280 728 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 663,669 **** <key>TableOfContents</key> <array> ! <string>30F2FA570851B8E9009A965F</string> <string>1CE0B1FE06471DED0097A5F4</string> ! <string>30F2FA580851B8E9009A965F</string> <string>1CE0B20306471E060097A5F4</string> <string>1CE0B20506471E060097A5F4</string> --- 612,618 ---- <key>TableOfContents</key> <array> ! <string>303BC6590859ED9A00B57320</string> <string>1CE0B1FE06471DED0097A5F4</string> ! <string>303BC65A0859ED9A00B57320</string> <string>1CE0B20306471E060097A5F4</string> <string>1CE0B20506471E060097A5F4</string> *************** *** 778,782 **** <false/> <key>PinnedNavigatorIdentifier</key> ! <string>30FA06CB084A4BD40005E57E</string> <key>ShelfIsVisible</key> <false/> --- 727,731 ---- <false/> <key>PinnedNavigatorIdentifier</key> ! <string>303BC6040859E8EE00B57320</string> <key>ShelfIsVisible</key> <false/> *************** *** 801,818 **** <key>WindowOrderList</key> <array> - <string>30F2FA7F0851B8E9009A965F</string> - <string>30F2FA800851B8E9009A965F</string> - <string>30BE4823082FED6F00826659</string> - <string>30F2FA780851B8E9009A965F</string> - <string>1C0AD2AF069F1E9B00FABCE6</string> <string>30A82A48082E9E83003C97DB</string> <string>1CD10A99069EF8BA00B06720</string> <string>1C530D57069F1CE1000CFCEE</string> ! <string>30FA06CB084A4BD40005E57E</string> ! <string>/Users/roman/Documents/dev/macattrick/Macattrick.xcode</string> <string>1C0AD2B3069F1EA900FABCE6</string> </array> <key>WindowString</key> ! <string>21 104 1280 728 0 0 1280 832 </string> <key>WindowTools</key> <array> --- 750,764 ---- <key>WindowOrderList</key> <array> <string>30A82A48082E9E83003C97DB</string> + <string>303BC63B0859ED9400B57320</string> + <string>1C0AD2AF069F1E9B00FABCE6</string> <string>1CD10A99069EF8BA00B06720</string> <string>1C530D57069F1CE1000CFCEE</string> ! <string>303BC6040859E8EE00B57320</string> <string>1C0AD2B3069F1EA900FABCE6</string> + <string>/Users/roman/Documents/dev/macattrick/Macattrick.xcode</string> </array> <key>WindowString</key> ! <string>1 101 1280 728 0 0 1280 832 </string> <key>WindowTools</key> <array> *************** *** 835,839 **** <string>1CD0528F0623707200166675</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerTableController.m</string> <key>StatusBarVisibility</key> <true/> --- 781,785 ---- <string>1CD0528F0623707200166675</string> <key>PBXProjectModuleLabel</key> ! <string></string> <key>StatusBarVisibility</key> <true/> *************** *** 844,848 **** <string>{{0, 0}, {787, 290}}</string> <key>RubberWindowFrame</key> ! <string>558 133 787 699 0 0 1280 832 </string> </dict> <key>Module</key> --- 790,794 ---- <string>{{0, 0}, {787, 290}}</string> <key>RubberWindowFrame</key> ! <string>270 133 787 699 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 857,861 **** <dict> <key>PBXBuildLogShowsTranscriptDefaultKey</key> ! <string>{{0, 187}, {787, 176}}</string> <key>PBXProjectModuleGUID</key> <string>XCMainBuildResultsModuleGUID</string> --- 803,807 ---- <dict> <key>PBXBuildLogShowsTranscriptDefaultKey</key> ! <string>{{0, 180}, {787, 183}}</string> <key>PBXProjectModuleGUID</key> <string>XCMainBuildResultsModuleGUID</string> *************** *** 872,876 **** <string>{{0, 295}, {787, 363}}</string> <key>RubberWindowFrame</key> ! <string>558 133 787 699 0 0 1280 832 </string> </dict> <key>Module</key> --- 818,822 ---- <string>{{0, 295}, {787, 363}}</string> <key>RubberWindowFrame</key> ! <string>270 133 787 699 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 895,899 **** <array> <string>30A82A48082E9E83003C97DB</string> ! <string>30F2FA710851B8E9009A965F</string> <string>1CD0528F0623707200166675</string> <string>XCMainBuildResultsModuleGUID</string> --- 841,845 ---- <array> <string>30A82A48082E9E83003C97DB</string> ! <string>303BC6340859ED9400B57320</string> <string>1CD0528F0623707200166675</string> <string>XCMainBuildResultsModuleGUID</string> *************** *** 902,910 **** <string>xcode.toolbar.config.build</string> <key>WindowString</key> ! <string>558 133 787 699 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>30A82A48082E9E83003C97DB</string> <key>WindowToolIsVisible</key> ! <true/> </dict> <dict> --- 848,856 ---- <string>xcode.toolbar.config.build</string> <key>WindowString</key> ! <string>270 133 787 699 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>30A82A48082E9E83003C97DB</string> <key>WindowToolIsVisible</key> ! <false/> </dict> <dict> *************** *** 937,942 **** <key>sizes</key> <array> ! <string>{{0, 0}, {180, 139}}</string> ! <string>{{180, 0}, {514, 139}}</string> </array> </dict> --- 883,888 ---- <key>sizes</key> <array> ! <string>{{0, 0}, {138, 132}}</string> ! <string>{{138, 0}, {556, 132}}</string> </array> </dict> *************** *** 953,958 **** <key>sizes</key> <array> ! <string>{{0, 0}, {694, 139}}</string> ! <string>{{0, 139}, {694, 242}}</string> </array> </dict> --- 899,904 ---- <key>sizes</key> <array> ! <string>{{0, 0}, {694, 132}}</string> ! <string>{{0, 132}, {694, 249}}</string> </array> </dict> *************** *** 1001,1012 **** <array> <string>1CD10A99069EF8BA00B06720</string> ! <string>30F2FA720851B8E9009A965F</string> <string>1C162984064C10D400B95A72</string> ! <string>30F2FA730851B8E9009A965F</string> ! <string>30F2FA740851B8E9009A965F</string> ! <string>30F2FA750851B8E9009A965F</string> ! <string>30F2FA760851B8E9009A965F</string> ! <string>30F2FA770851B8E9009A965F</string> ! <string>30F2FA780851B8E9009A965F</string> </array> <key>ToolbarConfiguration</key> --- 947,958 ---- <array> <string>1CD10A99069EF8BA00B06720</string> ! <string>303BC6350859ED9400B57320</string> <string>1C162984064C10D400B95A72</string> ! <string>303BC6360859ED9400B57320</string> ! <string>303BC6370859ED9400B57320</string> ! <string>303BC6380859ED9400B57320</string> ! <string>303BC6390859ED9400B57320</string> ! <string>303BC63A0859ED9400B57320</string> ! <string>303BC63B0859ED9400B57320</string> </array> <key>ToolbarConfiguration</key> *************** *** 1035,1040 **** <array> <dict> - <key>BecomeActive</key> - <true/> <key>ContentConfiguration</key> <dict> --- 981,984 ---- *************** *** 1042,1046 **** <string>1CDD528C0622207200134675</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerTableController.m</string> <key>StatusBarVisibility</key> <true/> --- 986,990 ---- <string>1CDD528C0622207200134675</string> <key>PBXProjectModuleLabel</key> ! <string>Properties.m</string> <key>StatusBarVisibility</key> <true/> *************** *** 1051,1055 **** <string>{{0, 0}, {781, 212}}</string> <key>RubberWindowFrame</key> ! <string>160 313 781 470 0 0 1280 832 </string> </dict> <key>Module</key> --- 995,999 ---- <string>{{0, 0}, {781, 212}}</string> <key>RubberWindowFrame</key> ! <string>556 321 781 470 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 1063,1066 **** --- 1007,1012 ---- </dict> <dict> + <key>BecomeActive</key> + <true/> <key>ContentConfiguration</key> <dict> *************** *** 1075,1079 **** <string>{{0, 217}, {781, 212}}</string> <key>RubberWindowFrame</key> ! <string>160 313 781 470 0 0 1280 832 </string> </dict> <key>Module</key> --- 1021,1025 ---- <string>{{0, 217}, {781, 212}}</string> <key>RubberWindowFrame</key> ! <string>556 321 781 470 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 1098,1108 **** <array> <string>1C530D57069F1CE1000CFCEE</string> ! <string>30F2FA790851B8E9009A965F</string> ! <string>30F2FA7A0851B8E9009A965F</string> <string>1CDD528C0622207200134675</string> <string>1CD0528E0623707200166675</string> </array> <key>WindowString</key> ! <string>160 313 781 470 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1C530D57069F1CE1000CFCEE</string> --- 1044,1054 ---- <array> <string>1C530D57069F1CE1000CFCEE</string> ! <string>303BC63E0859ED9400B57320</string> ! <string>303BC63F0859ED9400B57320</string> <string>1CDD528C0622207200134675</string> <string>1CD0528E0623707200166675</string> </array> <key>WindowString</key> ! <string>556 321 781 470 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1C530D57069F1CE1000CFCEE</string> *************** *** 1234,1238 **** <string>{{0, 0}, {1095, 323}}</string> <key>RubberWindowFrame</key> ! <string>184 424 1095 364 0 0 1280 832 </string> </dict> <key>Module</key> --- 1180,1184 ---- <string>{{0, 0}, {1095, 323}}</string> <key>RubberWindowFrame</key> ! <string>184 368 1095 364 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 1257,1268 **** <array> <string>1C0AD2B3069F1EA900FABCE6</string> ! <string>30F2FA7C0851B8E9009A965F</string> <string>1CD0528B0623707200166675</string> ! <string>30F2FA7D0851B8E9009A965F</string> </array> <key>ToolbarConfiguration</key> <string>xcode.toolbar.config.run</string> <key>WindowString</key> ! <string>184 424 1095 364 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1C0AD2B3069F1EA900FABCE6</string> --- 1203,1214 ---- <array> <string>1C0AD2B3069F1EA900FABCE6</string> ! <string>303BC6400859ED9400B57320</string> <string>1CD0528B0623707200166675</string> ! <string>303BC6410859ED9400B57320</string> </array> <key>ToolbarConfiguration</key> <string>xcode.toolbar.config.run</string> <key>WindowString</key> ! <string>184 368 1095 364 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1C0AD2B3069F1EA900FABCE6</string> *************** *** 1535,1539 **** <array> <string>1C0AD2AF069F1E9B00FABCE6</string> ! <string>30F2FA7E0851B8E9009A965F</string> <string>1CA6456E063B45B4001379D8</string> </array> --- 1481,1485 ---- <array> <string>1C0AD2AF069F1E9B00FABCE6</string> ! <string>303BC6420859ED9400B57320</string> <string>1CA6456E063B45B4001379D8</string> </array> Index: roman.pbxuser =================================================================== RCS file: /cvsroot/macattrick/macattrick/Macattrick.xcode/roman.pbxuser,v retrieving revision 1.108 retrieving revision 1.109 diff -C2 -d -r1.108 -r1.109 *** roman.pbxuser 4 Jun 2005 10:26:28 -0000 1.108 --- roman.pbxuser 10 Jun 2005 15:49:21 -0000 1.109 *************** *** 40,48 **** activeBuildStyle = 4A9504CCFFE6A4B311CA0CBA; activeExecutable = 30744BA6069560A70039B82A; ! activeTarget = 30744BA4069560A70039B82A; addToTargets = ( - 30744BA4069560A70039B82A, 309914160820019C00FBF240, - 30950682067C4D100077C270, 30DFA496082018F2000CE74D, ); --- 40,46 ---- [...1534 lines suppressed...] isa = PBXTextBookmark; ! name = ";"; rLen = 1; ! rLoc = 2681; rType = 0; ! vrLen = 1126; ! vrLoc = 2450; }; ! 30F495340854E797000B37FA = { fRef = 308426AA0643ABD200173CCD; isa = PBXTextBookmark; ! name = "PlayerTableController.h: 17"; ! rLen = 81; ! rLoc = 1312; rType = 0; ! vrLen = 2172; vrLoc = 0; }; 30FA04D6084A03320005E57E = { fRef = 30C8623C064681A00016E5B3; |
|
From: Geisschaes <gei...@us...> - 2005-06-10 15:49:28
|
Update of /cvsroot/macattrick/macattrick In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25890 Added Files: HistoryManager.h HistoryManager.m Log Message: started implementing history manager --- NEW FILE: HistoryManager.h --- //---- license ---------------------------------------------------------------// // // // Macattrick: a Manager Assistant Tool for the online Game Hattrick.org // // Copyright (C) 2004 Roman Bertolami // // // // this file is part of Macattrick application // // http://sourceforge.net/macattrick // // // // Macattrick is free software; you can redistribute it and/or // // modify it under the terms of the GNU General Public License // // as published by the Free Software Foundation; either version 2 // // of the License, or (at your option) any later version. // // // // Macattrick is distributed in the hope that it will be useful, // // but WITHOUT ANY WARRANTY; without even the implied warranty of // // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // // GNU General Public License for more details. // // // // You should have received a copy of the GNU General Public License // // along with this program; if not, write to the Free Software // // Foundation, Inc., 59 Temple Place - Suite 330, // // Boston, MA 02111-1307, USA. // // // // Macattrick, Copyright (C) 2004 Roman Bertolami // // Macattrick comes with ABSOLUTELY NO WARRANTY! // // // //---- eo licence ------------------------------------------------------------// #import <Cocoa/Cocoa.h> @interface HistoryManager : NSObject { } - (NSArray*) historyDates; - (int) removeDate: (NSString*) date; @end --- NEW FILE: HistoryManager.m --- //---- license ---------------------------------------------------------------// // // // Macattrick: a Manager Assistant Tool for the online Game Hattrick.org // // Copyright (C) 2004 Roman Bertolami // // // // this file is part of Macattrick application // // http://sourceforge.net/macattrick // // // // Macattrick is free software; you can redistribute it and/or // // modify it under the terms of the GNU General Public License // // as published by the Free Software Foundation; either version 2 // // of the License, or (at your option) any later version. // // // // Macattrick is distributed in the hope that it will be useful, // // but WITHOUT ANY WARRANTY; without even the implied warranty of // // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // // GNU General Public License for more details. // // // // You should have received a copy of the GNU General Public License // // along with this program; if not, write to the Free Software // // Foundation, Inc., 59 Temple Place - Suite 330, // // Boston, MA 02111-1307, USA. // // // // Macattrick, Copyright (C) 2004 Roman Bertolami // // Macattrick comes with ABSOLUTELY NO WARRANTY! // // // //---- eo licence ------------------------------------------------------------// #import "HistoryManager.h" #import "Properties.h" @implementation HistoryManager - (NSArray*) historyDates { return [Properties formerDatesPathes]; } - (int) removeDate: (NSString*) date { int success = 0; NSString *path = [[NSString alloc] initWithFormat: @"%@/%@", [Properties libraryPath], date]; NSFileManager *manager = [NSFileManager defaultManager]; BOOL isDir = TRUE; if([manager fileExistsAtPath:path isDirectory:&isDir]) { BOOL succ = [manager removeFileAtPath:path handler: nil]; if(!succ) { success = -1; } } else { success = -2; } return success; } @end |
|
From: Gfive <gf...@us...> - 2005-06-08 15:05:16
|
Update of /cvsroot/macattrick/macattrick/English.lproj/TryPlayer.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21716/English.lproj/TryPlayer.nib Modified Files: info.nib keyedobjects.nib Log Message: Try Player Interface update Index: info.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/TryPlayer.nib/info.nib,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** info.nib 18 Feb 2005 15:40:53 -0000 1.5 --- info.nib 8 Jun 2005 15:05:05 -0000 1.6 *************** *** 6,10 **** <string>941 133 356 240 0 0 1600 1002 </string> <key>IBFramework Version</key> ! <string>364.0</string> <key>IBOpenObjects</key> <array> --- 6,10 ---- <string>941 133 356 240 0 0 1600 1002 </string> <key>IBFramework Version</key> ! <string>437.0</string> <key>IBOpenObjects</key> <array> *************** *** 12,16 **** </array> <key>IBSystem Version</key> ! <string>7U16</string> </dict> </plist> --- 12,16 ---- </array> <key>IBSystem Version</key> ! <string>8B15</string> </dict> </plist> Index: keyedobjects.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/TryPlayer.nib/keyedobjects.nib,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 Binary files /tmp/cvso3rpMu and /tmp/cvsL1jXxO differ |
|
From: Gfive <gf...@us...> - 2005-06-08 15:05:16
|
Update of /cvsroot/macattrick/macattrick/English.lproj/PlayerDetails.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21716/English.lproj/PlayerDetails.nib Modified Files: info.nib keyedobjects.nib Log Message: Try Player Interface update Index: info.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/PlayerDetails.nib/info.nib,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** info.nib 30 May 2005 20:00:00 -0000 1.10 --- info.nib 8 Jun 2005 15:05:04 -0000 1.11 *************** *** 4,8 **** <dict> <key>IBDocumentLocation</key> ! <string>32 110 356 240 0 0 1280 832 </string> <key>IBFramework Version</key> <string>437.0</string> --- 4,8 ---- <dict> <key>IBDocumentLocation</key> ! <string>43 142 356 240 0 0 1600 1002 </string> <key>IBFramework Version</key> <string>437.0</string> Index: keyedobjects.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/PlayerDetails.nib/keyedobjects.nib,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 Binary files /tmp/cvsdc5Yq9 and /tmp/cvsviOwRs differ |
|
From: Gfive <gf...@us...> - 2005-06-08 14:28:00
|
Update of /cvsroot/macattrick/macattrick/Macattrick.xcode In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv363/Macattrick.xcode Modified Files: project.pbxproj Log Message: HistoryView screen added Index: project.pbxproj =================================================================== RCS file: /cvsroot/macattrick/macattrick/Macattrick.xcode/project.pbxproj,v retrieving revision 1.78 retrieving revision 1.79 diff -C2 -d -r1.78 -r1.79 *** project.pbxproj 4 Jun 2005 10:26:28 -0000 1.78 --- project.pbxproj 8 Jun 2005 14:27:48 -0000 1.79 *************** *** 47,50 **** --- 47,80 ---- //103 //104 + 10079FFB085730D700ECDC11 = { + children = ( + 10079FFC085730D700ECDC11, + ); + isa = PBXVariantGroup; + name = HistoryView.nib; + path = ""; + refType = 4; + sourceTree = "<group>"; + }; + 10079FFC085730D700ECDC11 = { + isa = PBXFileReference; + lastKnownFileType = wrapper.nib; + name = English; + path = English.lproj/HistoryView.nib; + refType = 4; + sourceTree = "<group>"; + }; + 10079FFD085730D700ECDC11 = { + fileRef = 10079FFB085730D700ECDC11; + isa = PBXBuildFile; + settings = { + }; + }; + 10079FFE085730D700ECDC11 = { + fileRef = 10079FFB085730D700ECDC11; + isa = PBXBuildFile; + settings = { + }; + }; 101AED790712C2CF004F6558 = { children = ( *************** *** 1731,1734 **** --- 1761,1765 ---- 3063E946079AE6FC003DF28B, 30DE3F8D07C3F00700342677, + 10079FFE085730D700ECDC11, ); isa = PBXResourcesBuildPhase; *************** *** 3025,3028 **** --- 3056,3060 ---- 102B65750796B99C00CE6B91, 30DE3F8E07C3F00800342677, + 10079FFD085730D700ECDC11, ); isa = PBXResourcesBuildPhase; *************** *** 5097,5100 **** --- 5129,5133 ---- 30D78B7E0849D4EF00112C09 = { children = ( + 10079FFB085730D700ECDC11, 30BB20B6067DB6F100B1C71A, 3095070A067C4F400077C270, |
|
From: Gfive <gf...@us...> - 2005-06-08 14:27:24
|
Update of /cvsroot/macattrick/macattrick/English.lproj/HistoryView.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32268 Added Files: classes.nib info.nib keyedobjects.nib Log Message: HistoryView screen added --- NEW FILE: info.nib --- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>IBDocumentLocation</key> <string>69 62 356 240 0 0 1600 1002 </string> <key>IBEditorPositions</key> <dict> <key>10</key> <string>453 403 334 365 0 0 1600 1002 </string> </dict> <key>IBFramework Version</key> <string>437.0</string> <key>IBOpenObjects</key> <array> <integer>10</integer> </array> <key>IBSystem Version</key> <string>8B15</string> </dict> </plist> --- NEW FILE: classes.nib --- { IBClasses = ({CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; }); IBVersion = 1; } --- NEW FILE: keyedobjects.nib --- (This appears to be a binary file; contents omitted.) |
|
From: Gfive <gf...@us...> - 2005-06-08 14:26:06
|
Update of /cvsroot/macattrick/macattrick/English.lproj/HistoryView.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31696/HistoryView.nib Log Message: Directory /cvsroot/macattrick/macattrick/English.lproj/HistoryView.nib added to the repository |
|
From: Geisschaes <gei...@us...> - 2005-06-02 12:26:03
|
Update of /cvsroot/macattrick/macattrick/English.lproj/PlayerTableView.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30568/English.lproj/PlayerTableView.nib Modified Files: info.nib keyedobjects.nib Log Message: table cell changed to non editable Index: info.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/PlayerTableView.nib/info.nib,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** info.nib 2 Jun 2005 07:33:27 -0000 1.7 --- info.nib 2 Jun 2005 12:25:52 -0000 1.8 *************** *** 4,12 **** <dict> <key>IBDocumentLocation</key> ! <string>73 74 497 319 0 0 1280 832 </string> <key>IBEditorPositions</key> <dict> <key>5</key> ! <string>89 385 827 517 0 0 1280 1002 </string> </dict> <key>IBFramework Version</key> --- 4,12 ---- <dict> <key>IBDocumentLocation</key> ! <string>538 97 497 319 0 0 1280 1002 </string> <key>IBEditorPositions</key> <dict> <key>5</key> ! <string>21 428 827 517 0 0 1280 1002 </string> </dict> <key>IBFramework Version</key> Index: keyedobjects.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/PlayerTableView.nib/keyedobjects.nib,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 Binary files /tmp/cvshukMOC and /tmp/cvsLTUlhN differ |
|
From: Geisschaes <gei...@us...> - 2005-06-02 07:33:38
|
Update of /cvsroot/macattrick/macattrick/English.lproj/PlayerTableView.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14419/English.lproj/PlayerTableView.nib Modified Files: info.nib keyedobjects.nib Log Message: tsi added to playertable Index: info.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/PlayerTableView.nib/info.nib,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** info.nib 1 Jun 2005 18:13:35 -0000 1.6 --- info.nib 2 Jun 2005 07:33:27 -0000 1.7 *************** *** 8,12 **** <dict> <key>5</key> ! <string>152 246 827 517 0 0 1280 832 </string> </dict> <key>IBFramework Version</key> --- 8,12 ---- <dict> <key>5</key> ! <string>89 385 827 517 0 0 1280 1002 </string> </dict> <key>IBFramework Version</key> Index: keyedobjects.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/PlayerTableView.nib/keyedobjects.nib,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 Binary files /tmp/cvsufM1HM and /tmp/cvss4Dsvu differ |
|
From: Geisschaes <gei...@us...> - 2005-06-01 18:14:30
|
Update of /cvsroot/macattrick/macattrick In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22790 Modified Files: MainController.m Player.h Player.m PlayerList.m PlayerTableController.h PlayerTableController.m Added Files: DateStringTransformer.h DateStringTransformer.m IgnoreZeroTransformer.h IgnoreZeroTransformer.m Log Message: player changes are now displayed (alpha state) --- NEW FILE: IgnoreZeroTransformer.h --- //---- license ---------------------------------------------------------------// // // // Macattrick: a Manager Assistant Tool for the online Game Hattrick.org // // Copyright (C) 2004 Roman Bertolami // // // // this file is part of Macattrick application // // http://sourceforge.net/macattrick // // // // Macattrick is free software; you can redistribute it and/or // // modify it under the terms of the GNU General Public License // // as published by the Free Software Foundation; either version 2 // // of the License, or (at your option) any later version. // // // // Macattrick is distributed in the hope that it will be useful, // // but WITHOUT ANY WARRANTY; without even the implied warranty of // // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // // GNU General Public License for more details. // // // // You should have received a copy of the GNU General Public License // // along with this program; if not, write to the Free Software // // Foundation, Inc., 59 Temple Place - Suite 330, // // Boston, MA 02111-1307, USA. // // // // Macattrick, Copyright (C) 2004 Roman Bertolami // // Macattrick comes with ABSOLUTELY NO WARRANTY! // // // //---- eo licence ------------------------------------------------------------// #import <Cocoa/Cocoa.h> @interface IgnoreZeroTransformer : NSObject { } + (Class)transformedValueClass; + (BOOL)allowsReverseTransformation; - (id)transformedValue:(id)value; @end Index: MainController.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/MainController.m,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** MainController.m 6 Feb 2005 19:36:18 -0000 1.14 --- MainController.m 1 Jun 2005 18:13:35 -0000 1.15 *************** *** 39,43 **** #import "SkillToListIndexTransformer.h" #import "PercentageTransformer.h" ! static MainController *mainController; --- 39,45 ---- #import "SkillToListIndexTransformer.h" #import "PercentageTransformer.h" ! #import "IgnoreZeroTransformer.h" ! #import "DateStringTransformer.h" ! static MainController *mainController; *************** *** 167,170 **** --- 169,175 ---- [NSValueTransformer setValueTransformer:[[[SkillToListIndexTransformer alloc] init] autorelease] forName:@"SkillToListIndexTransformer"]; [NSValueTransformer setValueTransformer:[[[PercentageTransformer alloc] init] autorelease] forName:@"PercentageTransformer"]; + [NSValueTransformer setValueTransformer:[[[IgnoreZeroTransformer alloc] init] autorelease] forName:@"IgnoreZeroTransformer"]; + [NSValueTransformer setValueTransformer:[[[DateStringTransformer alloc] init] autorelease] forName:@"DateStringTransformer"]; + } Index: Player.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/Player.m,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** Player.m 30 May 2005 17:46:31 -0000 1.25 --- Player.m 1 Jun 2005 18:13:35 -0000 1.26 *************** *** 69,72 **** --- 69,74 ---- currentState = [[PlayerState alloc] init]; formerStates = [[NSMutableDictionary alloc] init]; + selectedDate = nil; + differenceToSelectedDate = [[PlayerState alloc] init]; } return self; *************** *** 84,92 **** } ! - (PlayerState*) stateChangeToDate: (NSString*)date { PlayerState *former = [self stateAtDate:date]; ! return [[PlayerState alloc] initWithChangesFrom: former to: currentState]; } // NSCopying Protocal --- 86,96 ---- } ! - (PlayerState*) differenceToDate: (NSString*)date { PlayerState *former = [self stateAtDate:date]; ! PlayerState *difference = [[PlayerState alloc] initWithChangesFrom: former to: currentState]; ! return difference; } + // NSCopying Protocal *************** *** 123,126 **** --- 127,151 ---- + - (PlayerState *) differenceToSelectedDate { return differenceToSelectedDate; } + - (void) setDifferenceToSelectedDate: (PlayerState *) newDifferenceToSelectedDate { + [newDifferenceToSelectedDate retain]; + [differenceToSelectedDate release]; + differenceToSelectedDate = newDifferenceToSelectedDate; + } + + + - (NSString *) selectedDate { return selectedDate; } + - (void) setSelectedDate: (NSString *) newSelectedDate { + [newSelectedDate retain]; + [selectedDate release]; + selectedDate = newSelectedDate; + // updating differences + PlayerState *newDifference = [self differenceToDate: selectedDate]; + [self setDifferenceToSelectedDate:newDifference]; + [newDifference release]; + } + + + - (int)playerID { return playerID;} *************** *** 387,390 **** --- 412,417 ---- [currentState release]; [formerStates release]; + [differenceToSelectedDate release]; + [selectedDate release]; [playerName release]; [super dealloc]; --- NEW FILE: IgnoreZeroTransformer.m --- //---- license ---------------------------------------------------------------// // // // Macattrick: a Manager Assistant Tool for the online Game Hattrick.org // // Copyright (C) 2004 Roman Bertolami // // // // this file is part of Macattrick application // // http://sourceforge.net/macattrick // // // // Macattrick is free software; you can redistribute it and/or // // modify it under the terms of the GNU General Public License // // as published by the Free Software Foundation; either version 2 // // of the License, or (at your option) any later version. // // // // Macattrick is distributed in the hope that it will be useful, // // but WITHOUT ANY WARRANTY; without even the implied warranty of // // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // // GNU General Public License for more details. // // // // You should have received a copy of the GNU General Public License // // along with this program; if not, write to the Free Software // // Foundation, Inc., 59 Temple Place - Suite 330, // // Boston, MA 02111-1307, USA. // // // // Macattrick, Copyright (C) 2004 Roman Bertolami // // Macattrick comes with ABSOLUTELY NO WARRANTY! // // // //---- eo licence ------------------------------------------------------------// #import "IgnoreZeroTransformer.h" @implementation IgnoreZeroTransformer + (Class)transformedValueClass { return [NSString class]; } + (BOOL)allowsReverseTransformation { return YES; } - (id)transformedValue:(id)value { if (value == nil) return nil; int inputValue = [value intValue]; if(inputValue) { return [NSString stringWithFormat:@"%d", inputValue];} else return @""; } -(id)reverseTransformedValue:(id)value { if (value == nil) return nil; if([value isEqualToString:@""]) { return [NSNumber numberWithInt:0];} return [NSNumber numberWithInt:[value intValue]]; } @end Index: Player.h =================================================================== RCS file: /cvsroot/macattrick/macattrick/Player.h,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** Player.h 30 May 2005 17:46:31 -0000 1.21 --- Player.h 1 Jun 2005 18:13:35 -0000 1.22 *************** *** 37,40 **** --- 37,42 ---- PlayerState *currentState; NSMutableDictionary *formerStates; + PlayerState *differenceToSelectedDate; + NSString *selectedDate; int countryID; int leadership; *************** *** 124,127 **** --- 126,135 ---- - (PlayerState*) differenceToDate: (NSString*)date; + - (PlayerState *) differenceToSelectedDate; + - (void) setDifferenceToSelectedDate: (PlayerState *) newDifferenceToSelectedDate; + - (NSString *) selectedDate; + - (void) setSelectedDate: (NSString *) newSelectedDate; + + -(NSArray*) possiblePlayerSkillsAbilities; -(NSArray*) possiblePlayerStaminaAbilities; Index: PlayerTableController.h =================================================================== RCS file: /cvsroot/macattrick/macattrick/PlayerTableController.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PlayerTableController.h 30 May 2005 19:59:59 -0000 1.3 --- PlayerTableController.h 1 Jun 2005 18:13:35 -0000 1.4 *************** *** 36,39 **** --- 36,40 ---- IBOutlet NSTableView *playerTable; IBOutlet NSArrayController *playerListController; + NSColor *positiveDifferenceColor; } - (NSView *) playerTableView; *************** *** 43,46 **** --- 44,49 ---- - (NSString *) selectedDate; + -(NSColor*) positiveDifferenceColor; + @end --- NEW FILE: DateStringTransformer.m --- //---- license ---------------------------------------------------------------// // // // Macattrick: a Manager Assistant Tool for the online Game Hattrick.org // // Copyright (C) 2004 Roman Bertolami // // // // this file is part of Macattrick application // // http://sourceforge.net/macattrick // // // // Macattrick is free software; you can redistribute it and/or // // modify it under the terms of the GNU General Public License // // as published by the Free Software Foundation; either version 2 // // of the License, or (at your option) any later version. // // // // Macattrick is distributed in the hope that it will be useful, // // but WITHOUT ANY WARRANTY; without even the implied warranty of // // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // // GNU General Public License for more details. // // // // You should have received a copy of the GNU General Public License // // along with this program; if not, write to the Free Software // // Foundation, Inc., 59 Temple Place - Suite 330, // // Boston, MA 02111-1307, USA. // // // // Macattrick, Copyright (C) 2004 Roman Bertolami // // Macattrick comes with ABSOLUTELY NO WARRANTY! // // // //---- eo licence ------------------------------------------------------------// #import "DateStringTransformer.h" #import "Properties.h" @implementation DateStringTransformer + (Class)transformedValueClass { return [NSString class]; } + (BOOL)allowsReverseTransformation { return YES; } - (id)transformedValue:(id)value { if (value == nil) return nil; NSCalendarDate *date = [NSCalendarDate dateWithString:value calendarFormat:[Properties dateFormat]]; return [date description]; } -(id)reverseTransformedValue:(id)value { if (value == nil) return nil; NSCalendarDate *date = [NSCalendarDate dateWithString:value]; return [date descriptionWithCalendarFormat:[Properties dateFormat]]; } @end Index: PlayerList.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/PlayerList.m,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** PlayerList.m 30 May 2005 19:59:59 -0000 1.7 --- PlayerList.m 1 Jun 2005 18:13:35 -0000 1.8 *************** *** 63,67 **** NSString *date = [currentPath lastPathComponent]; [formerDates addObject:date]; ! PlayerList *formerPlayerList = [[PlayerList alloc] initFromXML:[NSURL URLWithString:filename]]; if(formerPlayerList) { [self loadStatesFromFormerPlayerList:formerPlayerList date:date]; --- 63,69 ---- NSString *date = [currentPath lastPathComponent]; [formerDates addObject:date]; ! NSURL *url = [[NSURL alloc] initFileURLWithPath:filename]; ! PlayerList *formerPlayerList = [[PlayerList alloc] initFromXML:url]; ! [url release]; if(formerPlayerList) { [self loadStatesFromFormerPlayerList:formerPlayerList date:date]; *************** *** 76,85 **** - (void) loadStatesFromFormerPlayerList: (PlayerList*) formerPlayerList date: (NSString*) date{ NSEnumerator *en = [[self playerList] objectEnumerator]; ! Player *currentPlayer = nil; ! while(currentPlayer = [en nextObject]) { ! int playerID = [currentPlayer playerID]; Player *formerPlayer = [formerPlayerList playerWithID:playerID]; if(formerPlayer) { ! [currentPlayer addState:[formerPlayer currentState] forDate:date]; } } --- 78,87 ---- - (void) loadStatesFromFormerPlayerList: (PlayerList*) formerPlayerList date: (NSString*) date{ NSEnumerator *en = [[self playerList] objectEnumerator]; ! Player *current = nil; ! while(current = [en nextObject]) { ! int playerID = [current playerID]; Player *formerPlayer = [formerPlayerList playerWithID:playerID]; if(formerPlayer) { ! [current addState:[formerPlayer currentState] forDate:date]; } } Index: PlayerTableController.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/PlayerTableController.m,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** PlayerTableController.m 30 May 2005 19:59:59 -0000 1.4 --- PlayerTableController.m 1 Jun 2005 18:13:35 -0000 1.5 *************** *** 45,48 **** --- 45,49 ---- [playerTable setTarget:self]; [playerTable setDoubleAction:@selector(doubleClicked)]; + positiveDifferenceColor = [NSColor greenColor]; } return self; *************** *** 68,74 **** [selectedDate release]; selectedDate = newSelectedDate; } ! -(void) doubleClicked { --- 69,84 ---- [selectedDate release]; selectedDate = newSelectedDate; + // update all the dates of the players + NSArray *playerList = [[[self team] playerList] playerList]; + NSEnumerator *en = [playerList objectEnumerator]; + Player *current = nil; + while(current = [en nextObject]) { + [current setSelectedDate:[self selectedDate]]; + } } ! -(NSColor*) positiveDifferenceColor { ! return positiveDifferenceColor; ! } -(void) doubleClicked { --- NEW FILE: DateStringTransformer.h --- //---- license ---------------------------------------------------------------// // // // Macattrick: a Manager Assistant Tool for the online Game Hattrick.org // // Copyright (C) 2004 Roman Bertolami // // // // this file is part of Macattrick application // // http://sourceforge.net/macattrick // // // // Macattrick is free software; you can redistribute it and/or // // modify it under the terms of the GNU General Public License // // as published by the Free Software Foundation; either version 2 // // of the License, or (at your option) any later version. // // // // Macattrick is distributed in the hope that it will be useful, // // but WITHOUT ANY WARRANTY; without even the implied warranty of // // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // // GNU General Public License for more details. // // // // You should have received a copy of the GNU General Public License // // along with this program; if not, write to the Free Software // // Foundation, Inc., 59 Temple Place - Suite 330, // // Boston, MA 02111-1307, USA. // // // // Macattrick, Copyright (C) 2004 Roman Bertolami // // Macattrick comes with ABSOLUTELY NO WARRANTY! // // // //---- eo licence ------------------------------------------------------------// #import <Cocoa/Cocoa.h> @interface DateStringTransformer : NSObject { } + (Class)transformedValueClass; + (BOOL)allowsReverseTransformation; - (id)transformedValue:(id)value; @end |
|
From: Geisschaes <gei...@us...> - 2005-06-01 18:13:46
|
Update of /cvsroot/macattrick/macattrick/Macattrick.xcode In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22790/Macattrick.xcode Modified Files: project.pbxproj roman.mode1 roman.pbxuser Log Message: player changes are now displayed (alpha state) Index: project.pbxproj =================================================================== RCS file: /cvsroot/macattrick/macattrick/Macattrick.xcode/project.pbxproj,v retrieving revision 1.76 retrieving revision 1.77 diff -C2 -d -r1.76 -r1.77 *** project.pbxproj 29 May 2005 19:15:59 -0000 1.76 --- project.pbxproj 1 Jun 2005 18:13:35 -0000 1.77 *************** *** 1579,1582 **** --- 1579,1584 ---- 302FC30507E617EE00334603, 30D78B570849D0AF00112C09, + 309D5538084E299A0035A2BA, + 309D5550084E2C8E0035A2BA, ); isa = PBXHeadersBuildPhase; *************** *** 1799,1802 **** --- 1801,1806 ---- 302FC30407E617EC00334603, 30D78B580849D0AF00112C09, + 309D5539084E299A0035A2BA, + 309D5551084E2C8E0035A2BA, ); isa = PBXSourcesBuildPhase; *************** *** 2867,2870 **** --- 2871,2876 ---- 303411A007B7FDB000B92C57, 30D78B550849D0AF00112C09, + 309D553A084E299A0035A2BA, + 309D5552084E2C8E0035A2BA, ); isa = PBXHeadersBuildPhase; *************** *** 3068,3071 **** --- 3074,3079 ---- 303411A107B7FDB000B92C57, 30D78B560849D0AF00112C09, + 309D553B084E299A0035A2BA, + 309D5553084E2C8E0035A2BA, ); isa = PBXSourcesBuildPhase; *************** *** 3428,3431 **** --- 3436,3441 ---- 30D78C3C0849E53C00112C09, 30FA0658084A3CC50005E57E, + 309D553E084E299A0035A2BA, + 309D5556084E2C8E0035A2BA, ); isa = PBXHeadersBuildPhase; *************** *** 3482,3485 **** --- 3492,3497 ---- 30D78C3D0849E53C00112C09, 30FA0657084A3CC40005E57E, + 309D553F084E299A0035A2BA, + 309D5557084E2C8E0035A2BA, ); isa = PBXSourcesBuildPhase; *************** *** 4061,4064 **** --- 4073,4204 ---- sourceTree = "<group>"; }; + 309D5536084E299A0035A2BA = { + fileEncoding = 4; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + path = IgnoreZeroTransformer.h; + refType = 4; + sourceTree = "<group>"; + }; + 309D5537084E299A0035A2BA = { + fileEncoding = 4; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.objc; + path = IgnoreZeroTransformer.m; + refType = 4; + sourceTree = "<group>"; + }; + 309D5538084E299A0035A2BA = { + fileRef = 309D5536084E299A0035A2BA; + isa = PBXBuildFile; + settings = { + }; + }; + 309D5539084E299A0035A2BA = { + fileRef = 309D5537084E299A0035A2BA; + isa = PBXBuildFile; + settings = { + }; + }; + 309D553A084E299A0035A2BA = { + fileRef = 309D5536084E299A0035A2BA; + isa = PBXBuildFile; + settings = { + }; + }; + 309D553B084E299A0035A2BA = { + fileRef = 309D5537084E299A0035A2BA; + isa = PBXBuildFile; + settings = { + }; + }; + 309D553C084E299A0035A2BA = { + fileRef = 309D5536084E299A0035A2BA; + isa = PBXBuildFile; + settings = { + }; + }; + 309D553D084E299A0035A2BA = { + fileRef = 309D5537084E299A0035A2BA; + isa = PBXBuildFile; + settings = { + }; + }; + 309D553E084E299A0035A2BA = { + fileRef = 309D5536084E299A0035A2BA; + isa = PBXBuildFile; + settings = { + }; + }; + 309D553F084E299A0035A2BA = { + fileRef = 309D5537084E299A0035A2BA; + isa = PBXBuildFile; + settings = { + }; + }; + 309D554E084E2C8E0035A2BA = { + fileEncoding = 4; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + path = DateStringTransformer.h; + refType = 4; + sourceTree = "<group>"; + }; + 309D554F084E2C8E0035A2BA = { + fileEncoding = 4; + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.objc; + path = DateStringTransformer.m; + refType = 4; + sourceTree = "<group>"; + }; + 309D5550084E2C8E0035A2BA = { + fileRef = 309D554E084E2C8E0035A2BA; + isa = PBXBuildFile; + settings = { + }; + }; + 309D5551084E2C8E0035A2BA = { + fileRef = 309D554F084E2C8E0035A2BA; + isa = PBXBuildFile; + settings = { + }; + }; + 309D5552084E2C8E0035A2BA = { + fileRef = 309D554E084E2C8E0035A2BA; + isa = PBXBuildFile; + settings = { + }; + }; + 309D5553084E2C8E0035A2BA = { + fileRef = 309D554F084E2C8E0035A2BA; + isa = PBXBuildFile; + settings = { + }; + }; + 309D5554084E2C8E0035A2BA = { + fileRef = 309D554E084E2C8E0035A2BA; + isa = PBXBuildFile; + settings = { + }; + }; + 309D5555084E2C8E0035A2BA = { + fileRef = 309D554F084E2C8E0035A2BA; + isa = PBXBuildFile; + settings = { + }; + }; + 309D5556084E2C8E0035A2BA = { + fileRef = 309D554E084E2C8E0035A2BA; + isa = PBXBuildFile; + settings = { + }; + }; + 309D5557084E2C8E0035A2BA = { + fileRef = 309D554F084E2C8E0035A2BA; + isa = PBXBuildFile; + settings = { + }; + }; 30A1800D0640E5C300D2836F = { fileEncoding = 30; *************** *** 5179,5182 **** --- 5319,5324 ---- 30D78B530849D0AF00112C09, 30D78C3A0849E53C00112C09, + 309D553C084E299A0035A2BA, + 309D5554084E2C8E0035A2BA, ); isa = PBXHeadersBuildPhase; *************** *** 5231,5234 **** --- 5373,5378 ---- 30D78B540849D0AF00112C09, 30D78C3B0849E53C00112C09, + 309D553D084E299A0035A2BA, + 309D5555084E2C8E0035A2BA, ); isa = PBXSourcesBuildPhase; *************** *** 5814,5817 **** --- 5958,5965 ---- 30A18A3B071080D4009B55FF, 30A18A3A071080D4009B55FF, + 309D5536084E299A0035A2BA, + 309D5537084E299A0035A2BA, + 309D554E084E2C8E0035A2BA, + 309D554F084E2C8E0035A2BA, ); isa = PBXGroup; Index: roman.mode1 =================================================================== RCS file: /cvsroot/macattrick/macattrick/Macattrick.xcode/roman.mode1,v retrieving revision 1.41 retrieving revision 1.42 diff -C2 -d -r1.41 -r1.42 *** roman.mode1 30 May 2005 20:00:02 -0000 1.41 --- roman.mode1 1 Jun 2005 18:13:36 -0000 1.42 *************** *** 193,197 **** <string>30FA06CB084A4BD40005E57E</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerTableController.m</string> <key>PBXSplitModuleInNavigatorKey</key> <dict> --- 193,197 ---- <string>30FA06CB084A4BD40005E57E</string> <key>PBXProjectModuleLabel</key> ! <string>Player.m</string> <key>PBXSplitModuleInNavigatorKey</key> <dict> *************** *** 201,214 **** <string>30FA06CF084A4C2F0005E57E</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerTableController.m</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>30F01E07084BA78B009C068B</string> <key>history</key> <array> - <string>30F01D88084B887D009C068B</string> - <string>30F01D89084B887D009C068B</string> - <string>30F01D8A084B887D009C068B</string> <string>30F01D8B084B887D009C068B</string> <string>30F01D8C084B887D009C068B</string> --- 201,211 ---- <string>30FA06CF084A4C2F0005E57E</string> <key>PBXProjectModuleLabel</key> ! <string>Player.m</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>309D550C084E21EE0035A2BA</string> <key>history</key> <array> <string>30F01D8B084B887D009C068B</string> <string>30F01D8C084B887D009C068B</string> *************** *** 218,223 **** <string>30F01DB6084B9EE6009C068B</string> <string>30F01DE3084BA032009C068B</string> ! <string>30F01DFA084BA15D009C068B</string> ! <string>30F01DFB084BA15D009C068B</string> </array> <key>prevStack</key> --- 215,223 ---- <string>30F01DB6084B9EE6009C068B</string> <string>30F01DE3084BA032009C068B</string> ! <string>309D54D4084E1FB80035A2BA</string> ! <string>309D54D5084E1FB80035A2BA</string> ! <string>309D54FC084E21980035A2BA</string> ! <string>309D54FD084E21980035A2BA</string> ! <string>309D54FE084E21980035A2BA</string> </array> <key>prevStack</key> *************** *** 225,253 **** <string>30F01D8E084B887D009C068B</string> <string>30F01D8F084B887D009C068B</string> - <string>30F01D90084B887D009C068B</string> <string>30F01D91084B887D009C068B</string> <string>30F01D92084B887D009C068B</string> - <string>30F01D93084B887D009C068B</string> <string>30F01D94084B887D009C068B</string> - <string>30F01D95084B887D009C068B</string> - <string>30F01D96084B887D009C068B</string> - <string>30F01D97084B887D009C068B</string> - <string>30F01D98084B887D009C068B</string> - <string>30F01D99084B887D009C068B</string> - <string>30F01D9A084B887D009C068B</string> - <string>30F01D9B084B887D009C068B</string> <string>30F01DB8084B9EE6009C068B</string> <string>30F01DB9084B9EE6009C068B</string> <string>30F01DBA084B9EE6009C068B</string> - <string>30F01DBB084B9EE6009C068B</string> <string>30F01DBC084B9EE6009C068B</string> - <string>30F01DBD084B9EE6009C068B</string> <string>30F01DBE084B9EE6009C068B</string> <string>30F01DBF084B9EE6009C068B</string> ! <string>30F01DC0084B9EE6009C068B</string> ! <string>30F01DE4084BA032009C068B</string> ! <string>30F01DEF084BA0B0009C068B</string> ! <string>30F01DFC084BA15D009C068B</string> ! <string>30F01DFD084BA15D009C068B</string> </array> </dict> --- 225,251 ---- <string>30F01D8E084B887D009C068B</string> <string>30F01D8F084B887D009C068B</string> <string>30F01D91084B887D009C068B</string> <string>30F01D92084B887D009C068B</string> <string>30F01D94084B887D009C068B</string> <string>30F01DB8084B9EE6009C068B</string> <string>30F01DB9084B9EE6009C068B</string> <string>30F01DBA084B9EE6009C068B</string> <string>30F01DBC084B9EE6009C068B</string> <string>30F01DBE084B9EE6009C068B</string> <string>30F01DBF084B9EE6009C068B</string> ! <string>309D54D8084E1FB80035A2BA</string> ! <string>309D54DA084E1FB80035A2BA</string> ! <string>309D54DC084E1FB80035A2BA</string> ! <string>309D54DD084E1FB80035A2BA</string> ! <string>309D54DE084E1FB80035A2BA</string> ! <string>309D54DF084E1FB80035A2BA</string> ! <string>309D54E0084E1FB80035A2BA</string> ! <string>309D54E1084E1FB80035A2BA</string> ! <string>309D54E3084E1FB80035A2BA</string> ! <string>309D54FF084E21980035A2BA</string> ! <string>309D5500084E21980035A2BA</string> ! <string>309D5501084E21980035A2BA</string> ! <string>309D5502084E21980035A2BA</string> ! <string>309D5503084E21980035A2BA</string> </array> </dict> *************** *** 265,269 **** <false/> <key>RubberWindowFrame</key> ! <string>347 132 921 624 0 0 1280 832 </string> </dict> </dict> --- 263,267 ---- <false/> <key>RubberWindowFrame</key> ! <string>93 196 921 624 0 0 1280 832 </string> </dict> </dict> *************** *** 338,341 **** --- 336,340 ---- <array> <string>29B97314FDCFA39411CA2CEA</string> + <string>080E96DDFE201D6D7F000001</string> <string>29B97323FDCFA39411CA2CEA</string> <string>30A438AD068C2923001BFB41</string> *************** *** 347,351 **** <array> <array> ! <integer>9</integer> <integer>0</integer> </array> --- 346,350 ---- <array> <array> ! <integer>10</integer> <integer>0</integer> </array> *************** *** 371,375 **** </array> <key>RubberWindowFrame</key> ! <string>3 104 1280 728 0 0 1280 832 </string> </dict> <key>Module</key> --- 370,374 ---- </array> <key>RubberWindowFrame</key> ! <string>4 104 1280 728 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 387,391 **** <string>1CE0B20306471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerDetailsController.h</string> <key>PBXSplitModuleInNavigatorKey</key> <dict> --- 386,390 ---- <string>1CE0B20306471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerStateTest.m</string> <key>PBXSplitModuleInNavigatorKey</key> <dict> *************** *** 395,403 **** <string>1CE0B20406471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerDetailsController.h</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>30F01E06084BA78B009C068B</string> <key>history</key> <array> --- 394,402 ---- <string>1CE0B20406471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerStateTest.m</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>309D550B084E21EE0035A2BA</string> <key>history</key> <array> *************** *** 460,471 **** <string>30FA0694084A45A40005E57E</string> <string>30FA06B9084A49F80005E57E</string> - <string>30F01D7F084B887D009C068B</string> - <string>30F01D80084B887D009C068B</string> - <string>30F01DD7084BA032009C068B</string> - <string>30F01DD8084BA032009C068B</string> <string>30F01DD9084BA032009C068B</string> <string>30F01DE9084BA0B0009C068B</string> <string>30F01DEA084BA0B0009C068B</string> ! <string>30F01DDA084BA032009C068B</string> </array> <key>prevStack</key> --- 459,470 ---- <string>30FA0694084A45A40005E57E</string> <string>30FA06B9084A49F80005E57E</string> <string>30F01DD9084BA032009C068B</string> <string>30F01DE9084BA0B0009C068B</string> <string>30F01DEA084BA0B0009C068B</string> ! <string>309D54C9084E1FB80035A2BA</string> ! <string>309D54CA084E1FB80035A2BA</string> ! <string>309D54CB084E1FB80035A2BA</string> ! <string>309D54F8084E21970035A2BA</string> ! <string>309D54F9084E21970035A2BA</string> </array> <key>prevStack</key> *************** *** 535,549 **** <string>30FA067C084A3FFF0005E57E</string> <string>30FA0695084A45A40005E57E</string> - <string>30F01D82084B887D009C068B</string> - <string>30F01D83084B887D009C068B</string> - <string>30F01D84084B887D009C068B</string> - <string>30F01D85084B887D009C068B</string> - <string>30F01DDD084BA032009C068B</string> - <string>30F01DDE084BA032009C068B</string> <string>30F01DDF084BA032009C068B</string> - <string>30F01DE0084BA032009C068B</string> - <string>30F01DE1084BA032009C068B</string> <string>30F01DEB084BA0B0009C068B</string> ! <string>30F01DEC084BA0B0009C068B</string> </array> </dict> --- 534,544 ---- <string>30FA067C084A3FFF0005E57E</string> <string>30FA0695084A45A40005E57E</string> <string>30F01DDF084BA032009C068B</string> <string>30F01DEB084BA0B0009C068B</string> ! <string>309D54CD084E1FB80035A2BA</string> ! <string>309D54CE084E1FB80035A2BA</string> ! <string>309D54CF084E1FB80035A2BA</string> ! <string>309D54D0084E1FB80035A2BA</string> ! <string>309D54FA084E21970035A2BA</string> </array> </dict> *************** *** 559,563 **** <string>{{0, 0}, {1072, 433}}</string> <key>RubberWindowFrame</key> ! <string>3 104 1280 728 0 0 1280 832 </string> </dict> <key>Module</key> --- 554,558 ---- <string>{{0, 0}, {1072, 433}}</string> <key>RubberWindowFrame</key> ! <string>4 104 1280 728 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 581,585 **** <string>{{0, 438}, {1072, 249}}</string> <key>RubberWindowFrame</key> ! <string>3 104 1280 728 0 0 1280 832 </string> </dict> <key>Module</key> --- 576,580 ---- <string>{{0, 438}, {1072, 249}}</string> <key>RubberWindowFrame</key> ! <string>4 104 1280 728 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 605,611 **** <key>TableOfContents</key> <array> ! <string>30F01D2C084B7ED3009C068B</string> <string>1CE0B1FE06471DED0097A5F4</string> ! <string>30F01D2D084B7ED3009C068B</string> <string>1CE0B20306471E060097A5F4</string> <string>1CE0B20506471E060097A5F4</string> --- 600,606 ---- <key>TableOfContents</key> <array> ! <string>309D54D2084E1FB80035A2BA</string> <string>1CE0B1FE06471DED0097A5F4</string> ! <string>309D54D3084E1FB80035A2BA</string> <string>1CE0B20306471E060097A5F4</string> <string>1CE0B20506471E060097A5F4</string> *************** *** 743,756 **** <key>WindowOrderList</key> <array> ! <string>1C530D57069F1CE1000CFCEE</string> ! <string>30F01D35084B7ED3009C068B</string> <string>1CD10A99069EF8BA00B06720</string> ! <string>30A82A48082E9E83003C97DB</string> ! <string>30FA06CB084A4BD40005E57E</string> <string>1C0AD2B3069F1EA900FABCE6</string> <string>/Users/roman/Documents/dev/macattrick/Macattrick.xcode</string> </array> <key>WindowString</key> ! <string>3 104 1280 728 0 0 1280 832 </string> <key>WindowTools</key> <array> --- 738,750 ---- <key>WindowOrderList</key> <array> ! <string>309D54EB084E1FB80035A2BA</string> <string>1CD10A99069EF8BA00B06720</string> ! <string>1C530D57069F1CE1000CFCEE</string> <string>1C0AD2B3069F1EA900FABCE6</string> <string>/Users/roman/Documents/dev/macattrick/Macattrick.xcode</string> + <string>30FA06CB084A4BD40005E57E</string> </array> <key>WindowString</key> ! <string>4 104 1280 728 0 0 1280 832 </string> <key>WindowTools</key> <array> *************** *** 875,880 **** <key>sizes</key> <array> ! <string>{{0, 0}, {208, 144}}</string> ! <string>{{208, 0}, {486, 144}}</string> </array> </dict> --- 869,874 ---- <key>sizes</key> <array> ! <string>{{0, 0}, {194, 142}}</string> ! <string>{{194, 0}, {500, 142}}</string> </array> </dict> *************** *** 891,896 **** <key>sizes</key> <array> ! <string>{{0, 0}, {694, 144}}</string> ! <string>{{0, 144}, {694, 237}}</string> </array> </dict> --- 885,890 ---- <key>sizes</key> <array> ! <string>{{0, 0}, {694, 142}}</string> ! <string>{{0, 142}, {694, 239}}</string> </array> </dict> *************** *** 939,950 **** <array> <string>1CD10A99069EF8BA00B06720</string> ! <string>30F01D2F084B7ED3009C068B</string> <string>1C162984064C10D400B95A72</string> ! <string>30F01D30084B7ED3009C068B</string> ! <string>30F01D31084B7ED3009C068B</string> ! <string>30F01D32084B7ED3009C068B</string> ! <string>30F01D33084B7ED3009C068B</string> ! <string>30F01D34084B7ED3009C068B</string> ! <string>30F01D35084B7ED3009C068B</string> </array> <key>ToolbarConfiguration</key> --- 933,944 ---- <array> <string>1CD10A99069EF8BA00B06720</string> ! <string>309D54E5084E1FB80035A2BA</string> <string>1C162984064C10D400B95A72</string> ! <string>309D54E6084E1FB80035A2BA</string> ! <string>309D54E7084E1FB80035A2BA</string> ! <string>309D54E8084E1FB80035A2BA</string> ! <string>309D54E9084E1FB80035A2BA</string> ! <string>309D54EA084E1FB80035A2BA</string> ! <string>309D54EB084E1FB80035A2BA</string> </array> <key>ToolbarConfiguration</key> *************** *** 973,978 **** <array> <dict> - <key>BecomeActive</key> - <true/> <key>ContentConfiguration</key> <dict> --- 967,970 ---- *************** *** 980,984 **** <string>1CDD528C0622207200134675</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerState.m</string> <key>StatusBarVisibility</key> <true/> --- 972,976 ---- <string>1CDD528C0622207200134675</string> <key>PBXProjectModuleLabel</key> ! <string>Player.m</string> <key>StatusBarVisibility</key> <true/> *************** *** 1001,1004 **** --- 993,998 ---- </dict> <dict> + <key>BecomeActive</key> + <true/> <key>ContentConfiguration</key> <dict> *************** *** 1036,1041 **** <array> <string>1C530D57069F1CE1000CFCEE</string> ! <string>30F01D7B084B87F0009C068B</string> ! <string>30F01D7C084B87F0009C068B</string> <string>1CDD528C0622207200134675</string> <string>1CD0528E0623707200166675</string> --- 1030,1035 ---- <array> <string>1C530D57069F1CE1000CFCEE</string> ! <string>309D54EC084E1FB80035A2BA</string> ! <string>309D54ED084E1FB80035A2BA</string> <string>1CDD528C0622207200134675</string> <string>1CD0528E0623707200166675</string> *************** *** 1046,1050 **** <string>1C530D57069F1CE1000CFCEE</string> <key>WindowToolIsVisible</key> ! <false/> </dict> <dict> --- 1040,1044 ---- <string>1C530D57069F1CE1000CFCEE</string> <key>WindowToolIsVisible</key> ! <true/> </dict> <dict> *************** *** 1147,1152 **** <key>sizes</key> <array> ! <string>{{0, 0}, {491, 168}}</string> ! <string>{{0, 173}, {491, 270}}</string> </array> </dict> --- 1141,1146 ---- <key>sizes</key> <array> ! <string>{{0, 0}, {367, 168}}</string> ! <string>{{0, 173}, {367, 270}}</string> </array> </dict> *************** *** 1174,1178 **** <string>{{0, 0}, {1095, 323}}</string> <key>RubberWindowFrame</key> ! <string>230 193 1095 364 0 0 1280 832 </string> </dict> <key>Module</key> --- 1168,1172 ---- <string>{{0, 0}, {1095, 323}}</string> <key>RubberWindowFrame</key> ! <string>118 138 1095 364 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 1197,1208 **** <array> <string>1C0AD2B3069F1EA900FABCE6</string> ! <string>30F01D36084B7ED3009C068B</string> <string>1CD0528B0623707200166675</string> ! <string>30F01D37084B7ED3009C068B</string> </array> <key>ToolbarConfiguration</key> <string>xcode.toolbar.config.run</string> <key>WindowString</key> ! <string>230 193 1095 364 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1C0AD2B3069F1EA900FABCE6</string> --- 1191,1202 ---- <array> <string>1C0AD2B3069F1EA900FABCE6</string> ! <string>309D54EE084E1FB80035A2BA</string> <string>1CD0528B0623707200166675</string> ! <string>309D54EF084E1FB80035A2BA</string> </array> <key>ToolbarConfiguration</key> <string>xcode.toolbar.config.run</string> <key>WindowString</key> ! <string>118 138 1095 364 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1C0AD2B3069F1EA900FABCE6</string> Index: roman.pbxuser =================================================================== RCS file: /cvsroot/macattrick/macattrick/Macattrick.xcode/roman.pbxuser,v retrieving revision 1.106 retrieving revision 1.107 diff -C2 -d -r1.106 -r1.107 *** roman.pbxuser 30 May 2005 20:00:02 -0000 1.106 --- roman.pbxuser 1 Jun 2005 18:13:36 -0000 1.107 *************** *** 42,45 **** --- 42,47 ---- activeTarget = 30744BA4069560A70039B82A; addToTargets = ( + 30744BA4069560A70039B82A, + 30950682067C4D100077C270, 30DFA496082018F2000CE74D, 309914160820019C00FBF240, *************** *** 196,200 **** ); [...1104 lines suppressed...] vrLen = 808; --- 5529,5533 ---- name = "PlayerList.m: 145"; rLen = 61; ! rLoc = 6701; rType = 0; vrLen = 808; *************** *** 5067,5071 **** name = "PlayerList.m: 145"; rLen = 61; ! rLoc = 6672; rType = 0; vrLen = 808; --- 5589,5593 ---- name = "PlayerList.m: 145"; rLen = 61; ! rLoc = 6701; rType = 0; vrLen = 808; |
|
From: Geisschaes <gei...@us...> - 2005-06-01 18:13:45
|
Update of /cvsroot/macattrick/macattrick/English.lproj/PlayerTableView.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22790/English.lproj/PlayerTableView.nib Modified Files: info.nib keyedobjects.nib Log Message: player changes are now displayed (alpha state) Index: info.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/PlayerTableView.nib/info.nib,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** info.nib 30 May 2005 20:00:01 -0000 1.5 --- info.nib 1 Jun 2005 18:13:35 -0000 1.6 *************** *** 8,12 **** <dict> <key>5</key> ! <string>361 307 827 517 0 0 1280 832 </string> </dict> <key>IBFramework Version</key> --- 8,12 ---- <dict> <key>5</key> ! <string>152 246 827 517 0 0 1280 832 </string> </dict> <key>IBFramework Version</key> Index: keyedobjects.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/PlayerTableView.nib/keyedobjects.nib,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 Binary files /tmp/cvsSAyaBs and /tmp/cvsN94WHI differ |
|
From: Geisschaes <gei...@us...> - 2005-05-30 20:00:46
|
Update of /cvsroot/macattrick/macattrick/English.lproj/PlayerDetails.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31105/English.lproj/PlayerDetails.nib Modified Files: info.nib keyedobjects.nib Log Message: combo box added to player table view Index: info.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/PlayerDetails.nib/info.nib,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** info.nib 27 Feb 2005 15:14:44 -0000 1.9 --- info.nib 30 May 2005 20:00:00 -0000 1.10 *************** *** 6,10 **** <string>32 110 356 240 0 0 1280 832 </string> <key>IBFramework Version</key> ! <string>364.0</string> <key>IBLockedObjects</key> <array/> --- 6,10 ---- <string>32 110 356 240 0 0 1280 832 </string> <key>IBFramework Version</key> ! <string>437.0</string> <key>IBLockedObjects</key> <array/> *************** *** 14,18 **** </array> <key>IBSystem Version</key> ! <string>7U16</string> </dict> </plist> --- 14,18 ---- </array> <key>IBSystem Version</key> ! <string>8B15</string> </dict> </plist> Index: keyedobjects.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/PlayerDetails.nib/keyedobjects.nib,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 Binary files /tmp/cvsEvSnZX and /tmp/cvsiTFxEP differ |
|
From: Geisschaes <gei...@us...> - 2005-05-30 20:00:46
|
Update of /cvsroot/macattrick/macattrick/English.lproj/PlayerTableView.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31105/English.lproj/PlayerTableView.nib Modified Files: info.nib keyedobjects.nib Log Message: combo box added to player table view Index: info.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/PlayerTableView.nib/info.nib,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** info.nib 18 Feb 2005 15:40:51 -0000 1.4 --- info.nib 30 May 2005 20:00:01 -0000 1.5 *************** *** 4,15 **** <dict> <key>IBDocumentLocation</key> ! <string>106 198 356 240 0 0 1600 1002 </string> <key>IBEditorPositions</key> <dict> <key>5</key> ! <string>35 466 827 517 0 0 1600 1002 </string> </dict> <key>IBFramework Version</key> ! <string>364.0</string> <key>IBOpenObjects</key> <array> --- 4,15 ---- <dict> <key>IBDocumentLocation</key> ! <string>73 74 497 319 0 0 1280 832 </string> <key>IBEditorPositions</key> <dict> <key>5</key> ! <string>361 307 827 517 0 0 1280 832 </string> </dict> <key>IBFramework Version</key> ! <string>437.0</string> <key>IBOpenObjects</key> <array> *************** *** 17,21 **** </array> <key>IBSystem Version</key> ! <string>7U16</string> </dict> </plist> --- 17,21 ---- </array> <key>IBSystem Version</key> ! <string>8B15</string> </dict> </plist> Index: keyedobjects.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/PlayerTableView.nib/keyedobjects.nib,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvsYTNJ6V and /tmp/cvselAULN differ |