You can subscribe to this list here.
2006 |
Jan
|
Feb
(52) |
Mar
(83) |
Apr
(37) |
May
(23) |
Jun
(9) |
Jul
(10) |
Aug
(30) |
Sep
(4) |
Oct
(9) |
Nov
(10) |
Dec
(7) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(3) |
Feb
(20) |
Mar
(3) |
Apr
|
May
(10) |
Jun
(17) |
Jul
(11) |
Aug
(6) |
Sep
(6) |
Oct
|
Nov
(15) |
Dec
(15) |
2008 |
Jan
(12) |
Feb
(1) |
Mar
(13) |
Apr
(7) |
May
(4) |
Jun
(37) |
Jul
(9) |
Aug
(7) |
Sep
|
Oct
|
Nov
|
Dec
(1) |
2009 |
Jan
(1) |
Feb
(11) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
(1) |
Nov
|
Dec
|
2010 |
Jan
(3) |
Feb
(1) |
Mar
|
Apr
|
May
(2) |
Jun
(2) |
Jul
(1) |
Aug
|
Sep
|
Oct
(4) |
Nov
(6) |
Dec
(2) |
2011 |
Jan
(1) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
(4) |
Jul
|
Aug
|
Sep
(3) |
Oct
(3) |
Nov
(6) |
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2014 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Patrick M. <ume...@us...> - 2006-03-20 14:53:36
|
Update of /cvsroot/radmind/radmind In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28575 Modified Files: Tag: radmind-1-6-0-branch command.c ktcheck.c lapply.c lcreate.c lfdiff.c Log Message: Cleaned up and correct calls to print_stats() Index: lcreate.c =================================================================== RCS file: /cvsroot/radmind/radmind/lcreate.c,v retrieving revision 1.84 retrieving revision 1.84.2.1 diff -C2 -d -r1.84 -r1.84.2.1 *** lcreate.c 24 Jan 2006 20:45:22 -0000 1.84 --- lcreate.c 20 Mar 2006 14:53:27 -0000 1.84.2.1 *************** *** 530,534 **** } #ifdef HAVE_ZLIB ! if( verbose && zlib_level > 0 ) print_stats(sn); #endif /* HAVE_ZLIB */ } --- 530,534 ---- } #ifdef HAVE_ZLIB ! if ( verbose && zlib_level > 0 ) print_stats( sn ); #endif /* HAVE_ZLIB */ } Index: lapply.c =================================================================== RCS file: /cvsroot/radmind/radmind/lapply.c,v retrieving revision 1.129.2.1 retrieving revision 1.129.2.2 diff -C2 -d -r1.129.2.1 -r1.129.2.2 *** lapply.c 3 Mar 2006 14:40:02 -0000 1.129.2.1 --- lapply.c 20 Mar 2006 14:53:27 -0000 1.129.2.2 *************** *** 729,733 **** } #ifdef HAVE_ZLIB ! if( verbose && zlib_level < 0 ) print_stats(sn); #endif /* HAVE_ZLIB */ } --- 729,733 ---- } #ifdef HAVE_ZLIB ! if ( verbose && zlib_level > 0 ) print_stats( sn ); #endif /* HAVE_ZLIB */ } Index: lfdiff.c =================================================================== RCS file: /cvsroot/radmind/radmind/lfdiff.c,v retrieving revision 1.55.2.1 retrieving revision 1.55.2.2 diff -C2 -d -r1.55.2.1 -r1.55.2.2 *** lfdiff.c 3 Mar 2006 14:40:02 -0000 1.55.2.1 --- lfdiff.c 20 Mar 2006 14:53:27 -0000 1.55.2.2 *************** *** 408,412 **** } #ifdef HAVE_ZLIB ! if( verbose && zlib_level > 0 ) print_stats(sn); #endif /* HAVE_ZLIB */ --- 408,412 ---- } #ifdef HAVE_ZLIB ! if ( verbose && zlib_level > 0 ) print_stats( sn ); #endif /* HAVE_ZLIB */ Index: command.c =================================================================== RCS file: /cvsroot/radmind/radmind/command.c,v retrieving revision 1.127.2.1 retrieving revision 1.127.2.2 diff -C2 -d -r1.127.2.1 -r1.127.2.2 *** command.c 21 Feb 2006 21:23:03 -0000 1.127.2.1 --- command.c 20 Mar 2006 14:53:26 -0000 1.127.2.2 *************** *** 166,172 **** snet_writef( sn, "%d QUIT OK, closing connection\r\n", 201 ); #ifdef HAVE_ZLIB ! if ( debug && max_zlib_level > 0) { ! print_stats( sn ); ! } #endif /* HAVE_ZLIB */ exit( 0 ); --- 166,170 ---- snet_writef( sn, "%d QUIT OK, closing connection\r\n", 201 ); #ifdef HAVE_ZLIB ! if ( debug && max_zlib_level > 0 ) print_stats( sn ); #endif /* HAVE_ZLIB */ exit( 0 ); Index: ktcheck.c =================================================================== RCS file: /cvsroot/radmind/radmind/ktcheck.c,v retrieving revision 1.109.2.1 retrieving revision 1.109.2.2 diff -C2 -d -r1.109.2.1 -r1.109.2.2 *** ktcheck.c 3 Mar 2006 14:40:02 -0000 1.109.2.1 --- ktcheck.c 20 Mar 2006 14:53:27 -0000 1.109.2.2 *************** *** 862,866 **** } #ifdef HAVE_ZLIB ! if( verbose && zlib_level > 0 ) print_stats(sn); #endif /* HAVE_ZLIB */ --- 862,866 ---- } #ifdef HAVE_ZLIB ! if ( verbose && zlib_level > 0 ) print_stats( sn ); #endif /* HAVE_ZLIB */ |
From: Andrew M. <fit...@us...> - 2006-03-19 01:49:10
|
Update of /cvsroot/radmind/radmind-assistant/rsm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25726 Modified Files: RSMPreferences.m Log Message: Timeout stepper is disabled when rights are defined. Index: RSMPreferences.m =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/rsm/RSMPreferences.m,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** RSMPreferences.m 18 Mar 2006 22:51:52 -0000 1.14 --- RSMPreferences.m 19 Mar 2006 01:49:01 -0000 1.15 *************** *** 343,348 **** if ( pid == -1 ) { ! [ self preferencesError: NSLocalizedString( @"The Radmind server process is not running.", ! @"The Radmind server process is not running." ) ]; return; } --- 343,349 ---- if ( pid == -1 ) { ! [ self preferencesError: NSLocalizedString( ! @"The Radmind server process is not running.", ! @"The Radmind server process is not running." ) ]; return; } *************** *** 585,588 **** --- 586,590 ---- return; } + [ rsmPrefTimeoutStepper setEnabled: YES ]; } else if ( [ sender state ] == NSOnState ) { int timeout = [ rsmPrefTimeoutField intValue ]; *************** *** 607,611 **** --- 609,616 ---- if ( ! setright( RADMIND_RIGHT_GENERIC, timeout )) { NSLog( @"Failed to set right" ); + return; } + + [ rsmPrefTimeoutStepper setEnabled: NO ]; } } *************** *** 639,642 **** --- 644,648 ---- item = [ rsmPrefTabView tabViewItemAtIndex: index ]; + [ self refreshServerStatusDisplay ]; [ rsmPrefTabView selectTabViewItemWithIdentifier: @"DummyTab" ]; [ rsmPrefWindow resizeForContentView: rsmPrefServerPaneBox ]; *************** *** 676,679 **** --- 682,686 ---- [ rsmPrefDefineRightsSwitch setState: NSOffState ]; + [ rsmPrefTimeoutStepper setEnabled: YES ]; if ( getright( RADMIND_RIGHT_GENERIC, &dict )) { *************** *** 689,692 **** --- 696,700 ---- [ rsmPrefTimeoutField setIntValue: timeout ]; [ rsmPrefTimeoutStepper setIntValue: timeout ]; + [ rsmPrefTimeoutStepper setEnabled: NO ]; } } |
From: Andrew M. <fit...@us...> - 2006-03-19 01:48:18
|
Update of /cvsroot/radmind/radmind-assistant/rsm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25355 Modified Files: RASTableView.h RASTableView.m Log Message: Fix for drag image drawing. New accesors allow choice of which column to use. Index: RASTableView.m =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/rsm/RASTableView.m,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** RASTableView.m 5 Apr 2005 19:52:30 -0000 1.3 --- RASTableView.m 19 Mar 2006 01:48:09 -0000 1.4 *************** *** 18,21 **** --- 18,22 ---- _drawsStripes = NO; + _umTableViewDragColumn = -1; for ( i = 0; i < [ columns count ]; i++ ) { *************** *** 37,51 **** { int row = [ self rowAtPoint: imageLoc ]; ! int column = [ self columnAtPoint: imageLoc ]; ! NSRect imageframe = [ self frameOfCellAtColumn: column row: row ]; ! float width = NSWidth( imageframe ); ! float height = NSHeight( [ self bounds ] ); ! NSSize imagesize = NSMakeSize( width, height ); ! NSImage *image = [[ NSImage alloc ] initWithSize: imagesize ]; /* only draw the portion from the filename column */ [ image lockFocus ]; - //[[ NSColor blueColor ] set ]; - //NSRectFill( imageframe ); [ anImage dissolveToPoint: NSZeroPoint fraction: 1.0 ]; [ image unlockFocus ]; --- 38,67 ---- { int row = [ self rowAtPoint: imageLoc ]; ! int column; ! NSRect imageframe; ! float width; ! float height; ! NSSize imagesize; ! NSImage *image; ! NSView *view; ! ! /* make sure the drag image is no larger than the viewable area */ ! if (( view = [[ self superview ] superview ] ) == nil ) { ! view = self; ! } ! ! if (( column = [ self dragColumn ] ) >= 0 ) { ! imageframe = [ self frameOfCellAtColumn: column row: row ]; ! width = NSWidth( imageframe ); ! } else { ! width = NSWidth( [ self frame ] ); ! } ! ! height = NSHeight( [ view frame ] ); ! imagesize = NSMakeSize( width, height ); ! image = [[ NSImage alloc ] initWithSize: imagesize ]; /* only draw the portion from the filename column */ [ image lockFocus ]; [ anImage dissolveToPoint: NSZeroPoint fraction: 1.0 ]; [ image unlockFocus ]; *************** *** 57,60 **** --- 73,86 ---- } + - ( int )dragColumn + { + return( _umTableViewDragColumn ); + } + + - ( void )setDragColumn: ( int )column + { + _umTableViewDragColumn = column; + } + - ( BOOL )drawsStripes { Index: RASTableView.h =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/rsm/RASTableView.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** RASTableView.h 5 Apr 2005 19:52:30 -0000 1.3 --- RASTableView.h 19 Mar 2006 01:48:09 -0000 1.4 *************** *** 12,21 **** --- 12,27 ---- int rClickedRow; BOOL _drawsStripes; + int _umTableViewDragColumn; } - ( BOOL )drawsStripes; - ( void )setDrawsStripes: ( BOOL )stripes; + + - ( int )dragColumn; + - ( void )setDragColumn: ( int )column; + - ( int )rClickedRow; + @end |
From: Andrew M. <fit...@us...> - 2006-03-18 22:52:01
|
Update of /cvsroot/radmind/radmind-assistant/rsm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13028 Modified Files: RSMPreferences.h RSMPreferences.m Log Message: Stepper increases/decreases auth timeout value. Index: RSMPreferences.m =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/rsm/RSMPreferences.m,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** RSMPreferences.m 8 Mar 2006 18:03:11 -0000 1.13 --- RSMPreferences.m 18 Mar 2006 22:51:52 -0000 1.14 *************** *** 611,614 **** --- 611,624 ---- } + - ( IBAction )setAuthorizationTimeout: ( id )sender + { + if ( ! [ sender isKindOfClass: [ NSStepper class ]] ) { + NSBeep(); + return; + } + + [ rsmPrefTimeoutField setIntValue: [ sender intValue ]]; + } + /* misc methods to assist display of prefs */ - ( void )showPreferencesPanel *************** *** 678,681 **** --- 688,692 ---- [ rsmPrefTimeoutField setIntValue: timeout ]; + [ rsmPrefTimeoutStepper setIntValue: timeout ]; } } Index: RSMPreferences.h =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/rsm/RSMPreferences.h,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** RSMPreferences.h 8 Mar 2006 18:03:11 -0000 1.11 --- RSMPreferences.h 18 Mar 2006 22:51:52 -0000 1.12 *************** *** 37,40 **** --- 37,41 ---- IBOutlet NSButton *rsmPrefDefineRightsSwitch; IBOutlet NSTextField *rsmPrefTimeoutField; + IBOutlet NSStepper *rsmPrefTimeoutStepper; @private *************** *** 63,66 **** --- 64,68 ---- - ( IBAction )toggleSessionRights: ( id )sender; + - ( IBAction )setAuthorizationTimeout: ( id )sender; /* authorization handler */ |
From: Andrew M. <fit...@us...> - 2006-03-18 22:52:01
|
Update of /cvsroot/radmind/radmind-assistant/rsm/English.lproj/Preferences.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13028/English.lproj/Preferences.nib Modified Files: classes.nib keyedobjects.nib Log Message: Stepper increases/decreases auth timeout value. Index: classes.nib =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/rsm/English.lproj/Preferences.nib/classes.nib,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** classes.nib 8 Mar 2006 18:03:11 -0000 1.10 --- classes.nib 18 Mar 2006 22:51:52 -0000 1.11 *************** *** 11,14 **** --- 11,15 ---- removeAllowedUser = id; saveAllowedUsers = id; + setAuthorizationTimeout = id; setCaseSensitivity = id; setCompressionLevel = id; *************** *** 47,50 **** --- 48,52 ---- rsmPrefTabView = NSTabView; rsmPrefTimeoutField = NSTextField; + rsmPrefTimeoutStepper = NSStepper; rsmPrefUserAuthenticationSwitch = NSButton; rsmPrefWindow = NSWindow; Index: keyedobjects.nib =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/rsm/English.lproj/Preferences.nib/keyedobjects.nib,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 Binary files /tmp/cvsOxdzqr and /tmp/cvs24hKe3 differ |
From: Andrew M. <fit...@us...> - 2006-03-18 21:53:41
|
Update of /cvsroot/radmind/radmind-assistant/rsm/English.lproj/RSMLogger.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22005/RSMLogger.nib Modified Files: info.nib keyedobjects.nib Log Message: Fix: Server Manager - Log window resize bug [bug #1451971] Index: info.nib =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/rsm/English.lproj/RSMLogger.nib/info.nib,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** info.nib 20 Dec 2004 19:43:34 -0000 1.1 --- info.nib 18 Mar 2006 21:53:32 -0000 1.2 *************** *** 6,10 **** <string>193 113 356 240 0 0 1440 878 </string> <key>IBFramework Version</key> ! <string>349.0</string> <key>IBOpenObjects</key> <array> --- 6,10 ---- <string>193 113 356 240 0 0 1440 878 </string> <key>IBFramework Version</key> ! <string>443.0</string> <key>IBOpenObjects</key> <array> *************** *** 12,16 **** </array> <key>IBSystem Version</key> ! <string>7D24</string> </dict> </plist> --- 12,16 ---- </array> <key>IBSystem Version</key> ! <string>8H14</string> </dict> </plist> Index: keyedobjects.nib =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/rsm/English.lproj/RSMLogger.nib/keyedobjects.nib,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsBR1Afj and /tmp/cvsSC27Zo differ |
From: Andrew M. <fit...@us...> - 2006-03-18 21:39:06
|
Update of /cvsroot/radmind/radmind-assistant/rsm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15528 Modified Files: RSMLoadsetEditor.m Log Message: Fix: Server Manager - display refresh error [bug #Ã1451964 Index: RSMLoadsetEditor.m =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/rsm/RSMLoadsetEditor.m,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** RSMLoadsetEditor.m 14 Dec 2005 18:34:23 -0000 1.16 --- RSMLoadsetEditor.m 18 Mar 2006 21:39:01 -0000 1.17 *************** *** 523,526 **** --- 523,527 ---- break; + case RA_NEWKFILE_CREATE: case RSM_REFRESH_KFILES: case RA_KFILE_DELETE: |
From: Andrew M. <fit...@us...> - 2006-03-17 19:50:20
|
Update of /cvsroot/radmind/radmind In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2911 Modified Files: lcksum.c Log Message: Patch #1448910: lcksum multiple transcript (CLI wildcard) support Index: lcksum.c =================================================================== RCS file: /cvsroot/radmind/radmind/lcksum.c,v retrieving revision 1.71 retrieving revision 1.72 diff -C2 -d -r1.71 -r1.72 *** lcksum.c 1 Mar 2006 04:58:40 -0000 1.71 --- lcksum.c 17 Mar 2006 19:50:16 -0000 1.72 *************** *** 31,41 **** void (*logger)( char * ) = NULL; - int linenum = 0; int cksum = 0; int verbose = 1; int case_sensitive = 1; const EVP_MD *md; ! extern int showprogress; ! extern off_t lsize; extern char *version, *checksumlist; char prepath[ MAXPATHLEN ] = {0}; --- 31,46 ---- void (*logger)( char * ) = NULL; int cksum = 0; int verbose = 1; + int amode = R_OK | W_OK; int case_sensitive = 1; + int checkall = 0; + int checkapplefile = 0; + int updatetran = 1; + char *prefix = NULL; + char *radmind_path = _RADMIND_PATH; const EVP_MD *md; ! extern int showprogress, progress; ! extern off_t lsize, total; extern char *version, *checksumlist; char prepath[ MAXPATHLEN ] = {0}; *************** *** 136,154 **** } ! int ! main( int argc, char **argv ) { ! int fd, ufd, c, err = 0, updatetran = 1, updateline = 0; ! int ucount = 0, len, tac = 0, amode = R_OK | W_OK; int prefixfound = 0; ! int checkall = 0; ! int remove = 0, checkapplefile = 0; int exitval = 0; ssize_t bytes = 0; ! extern int optind; ! char *tpath = NULL, *line = NULL; ! char *prefix = NULL, *d_path = NULL; char **targv; - char *radmind_path = _RADMIND_PATH; char cwd[ MAXPATHLEN ]; char temp[ MAXPATHLEN ]; --- 141,157 ---- } ! static int ! do_lcksum( char *tpath ) { ! int fd, ufd, updateline = 0; ! int ucount = 0, len, tac = 0; int prefixfound = 0; ! int remove = 0; ! int linenum = 0; int exitval = 0; ssize_t bytes = 0; ! char *line = NULL; ! char *d_path = NULL; char **targv; char cwd[ MAXPATHLEN ]; char temp[ MAXPATHLEN ]; *************** *** 164,254 **** off_t cksumsize; - while ( ( c = getopt ( argc, argv, "%Aac:D:iInP:qV" ) ) != EOF ) { - switch( c ) { - case 'a': - checkall = 1; - break; - - case 'A': - checkapplefile = 1; - break; - - case '%': - showprogress = 1; - break; - - case 'c': - OpenSSL_add_all_digests(); - md = EVP_get_digestbyname( optarg ); - if ( !md ) { - fprintf( stderr, "%s: unsupported checksum\n", optarg ); - exit( 2 ); - } - cksum = 1; - break; - - case 'i': - setvbuf( stdout, ( char * )NULL, _IOLBF, 0 ); - break; - - case 'I': - case_sensitive = 0; - break; - - case 'D': - radmind_path = optarg; - break; - - case 'P': - prefix = optarg; - break; - - case 'n': - amode = R_OK; - updatetran = 0; - break; - - case 'q': - verbose = 0; - break; - - case 'V': - printf( "%s\n", version ); - printf( "%s\n", checksumlist ); - exit( 0 ); - - case '?': - err++; - break; - - default: - err++; - break; - } - } - - if ( cksum == 0 ) { - err++; - } - - if ( checkall && updatetran ) { - err++; - } - - tpath = argv[ optind ]; - - if ( err || ( argc - optind != 1 ) ) { - fprintf( stderr, "usage: %s [ -%%AiIqV ] ", argv[ 0 ] ); - fprintf( stderr, "[ -D path ] " ); - fprintf( stderr, "[ -n [ -a ] ] " ); - fprintf( stderr, "[ -P prefix ] " ); - fprintf( stderr, "-c checksum transcript\n" ); - exit( 2 ); - } - if ( getcwd( cwd, MAXPATHLEN ) == NULL ) { perror( "getcwd" ); exit( 2 ); } if ( *tpath == '/' ) { if ( strlen( tpath ) >= MAXPATHLEN ) { --- 167,175 ---- off_t cksumsize; if ( getcwd( cwd, MAXPATHLEN ) == NULL ) { perror( "getcwd" ); exit( 2 ); } + if ( *tpath == '/' ) { if ( strlen( tpath ) >= MAXPATHLEN ) { *************** *** 277,286 **** } ! if ( access( tpath, amode ) !=0 ) { perror( tpath ); exit( 2 ); } ! if ( ( f = fopen( tpath, "r" ) ) == NULL ) { perror( tpath ); exit( 2 ); --- 198,207 ---- } ! if ( access( tpath, amode ) != 0 ) { perror( tpath ); exit( 2 ); } ! if (( f = fopen( tpath, "r" )) == NULL ) { perror( tpath ); exit( 2 ); *************** *** 300,309 **** /* Open file */ ! if ( ( ufd = open( upath, O_WRONLY | O_CREAT | O_EXCL, ! st.st_mode ) ) < 0 ) { perror( upath ); exit( 2 ); } ! if ( ( ufs = fdopen( ufd, "w" ) ) == NULL ) { perror( upath ); cleanup( updatetran, upath ); --- 221,230 ---- /* Open file */ ! if (( ufd = open( upath, O_WRONLY | O_CREAT | O_EXCL, ! st.st_mode )) < 0 ) { perror( upath ); exit( 2 ); } ! if (( ufs = fdopen( ufd, "w" )) == NULL ) { perror( upath ); cleanup( updatetran, upath ); *************** *** 315,320 **** --- 236,247 ---- /* calculate the loadset size */ lsize = lcksum_loadsetsize( f, prefix ); + + /* reset progress variables */ + total = 0; + progress = -1; } + memset( prepath, 0, sizeof( prepath )); + while ( fgets( tline, MAXPATHLEN, f ) != NULL ) { linenum++; *************** *** 553,557 **** } if ( verbose ) printf( "%s: updated\n", tran_name ); ! exit( 1 ); } else { if ( unlink( upath ) != 0 ) { --- 480,484 ---- } if ( verbose ) printf( "%s: updated\n", tran_name ); ! return( 1 ); } else { if ( unlink( upath ) != 0 ) { *************** *** 560,573 **** } if ( verbose ) printf( "%s: verified\n", tran_name ); ! exit( 0 ); } } else { if ( exitval == 0 ) { if ( verbose ) printf( "%s: verified\n", tran_name ); ! exit( 0 ); } else { if ( verbose ) printf( "%s: incorrect\n", tran_name ); ! exit( 1 ); } } } --- 487,599 ---- } if ( verbose ) printf( "%s: verified\n", tran_name ); ! return( 0 ); } } else { if ( exitval == 0 ) { if ( verbose ) printf( "%s: verified\n", tran_name ); ! return( 0 ); } else { if ( verbose ) printf( "%s: incorrect\n", tran_name ); ! return( 1 ); ! } ! } ! } ! ! int ! main( int argc, char **argv ) ! { ! int c, i, err = 0; ! extern int optind; ! char *tpath = NULL; ! ! while (( c = getopt( argc, argv, "%Aac:D:iInP:qV" )) != EOF ) { ! switch( c ) { ! case 'a': ! checkall = 1; ! break; ! ! case 'A': ! checkapplefile = 1; ! break; ! ! case '%': ! showprogress = 1; ! break; ! ! case 'c': ! OpenSSL_add_all_digests(); ! md = EVP_get_digestbyname( optarg ); ! if ( !md ) { ! fprintf( stderr, "%s: unsupported checksum\n", optarg ); ! exit( 2 ); ! } ! cksum = 1; ! break; ! ! case 'i': ! setvbuf( stdout, ( char * )NULL, _IOLBF, 0 ); ! break; ! ! case 'I': ! case_sensitive = 0; ! break; ! ! case 'D': ! radmind_path = optarg; ! break; ! ! case 'P': ! prefix = optarg; ! break; ! ! case 'n': ! amode = R_OK; ! updatetran = 0; ! break; ! ! case 'q': ! verbose = 0; ! break; ! ! case 'V': ! printf( "%s\n", version ); ! printf( "%s\n", checksumlist ); ! exit( 0 ); ! ! case '?': ! err++; ! break; ! ! default: ! err++; ! break; } } + + if ( cksum == 0 ) { + err++; + } + + if ( checkall && updatetran ) { + err++; + } + + if ( err || (( argc - optind ) == 0 )) { + fprintf( stderr, "usage: %s [ -%%AiIqV ] ", argv[ 0 ] ); + fprintf( stderr, "[ -D path ] " ); + fprintf( stderr, "[ -n [ -a ] ] " ); + fprintf( stderr, "[ -P prefix ] " ); + fprintf( stderr, "-c checksum transcript\n" ); + exit( 2 ); + } + + for ( i = optind; i < argc; i++ ) { + tpath = argv[ i ]; + + if ( do_lcksum( tpath ) == 2 ) { + exit( 2 ); + } + } + + return( 0 ); } |
From: Andrew M. <fit...@us...> - 2006-03-17 19:50:19
|
Update of /cvsroot/radmind/radmind/man In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2911/man Modified Files: lcksum.1 Log Message: Patch #1448910: lcksum multiple transcript (CLI wildcard) support Index: lcksum.1 =================================================================== RCS file: /cvsroot/radmind/radmind/man/lcksum.1,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** lcksum.1 17 Jun 2005 12:54:49 -0000 1.11 --- lcksum.1 17 Mar 2006 19:50:16 -0000 1.12 *************** *** 17,27 **** .BI \-c\ checksum .I transcript .sp .SH DESCRIPTION .B lcksum verifies and updates the checksums and file sizes of the ! appliable transcript .I transcript ! line-by-line. .B lcksum compares the checksum and --- 17,30 ---- .BI \-c\ checksum .I transcript + .I ... .sp .SH DESCRIPTION .B lcksum verifies and updates the checksums and file sizes of the ! transcript .I transcript ! line-by-line. If more than one transcript is passed to ! .B lcksum, ! all transcripts will be verified and updated. .B lcksum compares the checksum and |
From: Andrew M. <fit...@us...> - 2006-03-16 16:30:55
|
Update of /cvsroot/radmind/radmind-assistant/rte/RTE.xcodeproj In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15166/RTE.xcodeproj Modified Files: project.pbxproj Log Message: Using correct (localizable) twhich nib. Index: project.pbxproj =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/rte/RTE.xcodeproj/project.pbxproj,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** project.pbxproj 24 Feb 2006 21:43:54 -0000 1.1 --- project.pbxproj 16 Mar 2006 16:30:48 -0000 1.2 *************** *** 31,34 **** --- 31,35 ---- 09A6A939057BD335009E45A5 /* RTESearchField.h in Headers */ = {isa = PBXBuildFile; fileRef = 09E600F205501DBD00B7BA4B /* RTESearchField.h */; }; 09A6A93A057BD336009E45A5 /* RTESearchField.m in Sources */ = {isa = PBXBuildFile; fileRef = 09E600F305501DBD00B7BA4B /* RTESearchField.m */; }; + 09C2FD1309C9C9E900B792E0 /* TwhichResults.nib in Resources */ = {isa = PBXBuildFile; fileRef = 09C2FD1109C9C9E900B792E0 /* TwhichResults.nib */; }; 09D37CDB054DC855009341C4 /* RXTranscript.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A37F4AEFDCFA73011CA2CEA /* RXTranscript.h */; }; 09D37CDC054DC855009341C4 /* argcargv.h in Headers */ = {isa = PBXBuildFile; fileRef = F580DF1A022D437B01D5E771 /* argcargv.h */; }; *************** *** 80,84 **** 09DD166B09AE7925007EA0B4 /* RTETwhichDisplay.h in Headers */ = {isa = PBXBuildFile; fileRef = 09DD166909AE7925007EA0B4 /* RTETwhichDisplay.h */; }; 09DD166C09AE7925007EA0B4 /* RTETwhichDisplay.m in Sources */ = {isa = PBXBuildFile; fileRef = 09DD166A09AE7925007EA0B4 /* RTETwhichDisplay.m */; }; - 09DD169709AF5F88007EA0B4 /* TwhichResults.nib in Resources */ = {isa = PBXBuildFile; fileRef = 09DD169609AF5F88007EA0B4 /* TwhichResults.nib */; }; 09E601A905502D3700B7BA4B /* SearchFieldContent.tiff in Resources */ = {isa = PBXBuildFile; fileRef = 09E601A805502D3700B7BA4B /* SearchFieldContent.tiff */; }; 09E6022F0550545C00B7BA4B /* LeftEndCap.tiff in Resources */ = {isa = PBXBuildFile; fileRef = 09E6022D0550545C00B7BA4B /* LeftEndCap.tiff */; }; --- 81,84 ---- *************** *** 162,170 **** 09A6A852057B8B8F009E45A5 /* comment.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = comment.png; sourceTree = "<group>"; }; 09A6A853057B8B8F009E45A5 /* newcomment.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = newcomment.png; sourceTree = "<group>"; }; 09D37D13054DC855009341C4 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; }; 09D37D14054DC855009341C4 /* Radmind Transcript Editor.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Radmind Transcript Editor.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 09DD166909AE7925007EA0B4 /* RTETwhichDisplay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RTETwhichDisplay.h; sourceTree = "<group>"; }; 09DD166A09AE7925007EA0B4 /* RTETwhichDisplay.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RTETwhichDisplay.m; sourceTree = "<group>"; }; - 09DD169609AF5F88007EA0B4 /* TwhichResults.nib */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; path = TwhichResults.nib; sourceTree = "<group>"; }; 09E600F205501DBD00B7BA4B /* RTESearchField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RTESearchField.h; sourceTree = "<group>"; }; 09E600F305501DBD00B7BA4B /* RTESearchField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RTESearchField.m; sourceTree = "<group>"; }; --- 162,170 ---- 09A6A852057B8B8F009E45A5 /* comment.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = comment.png; sourceTree = "<group>"; }; 09A6A853057B8B8F009E45A5 /* newcomment.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = newcomment.png; sourceTree = "<group>"; }; + 09C2FD1209C9C9E900B792E0 /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/TwhichResults.nib; sourceTree = "<group>"; }; 09D37D13054DC855009341C4 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; }; 09D37D14054DC855009341C4 /* Radmind Transcript Editor.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Radmind Transcript Editor.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 09DD166909AE7925007EA0B4 /* RTETwhichDisplay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RTETwhichDisplay.h; sourceTree = "<group>"; }; 09DD166A09AE7925007EA0B4 /* RTETwhichDisplay.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RTETwhichDisplay.m; sourceTree = "<group>"; }; 09E600F205501DBD00B7BA4B /* RTESearchField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RTESearchField.h; sourceTree = "<group>"; }; 09E600F305501DBD00B7BA4B /* RTESearchField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RTESearchField.m; sourceTree = "<group>"; }; *************** *** 384,388 **** 2A37F4B6FDCFA73011CA2CEA /* MainMenu.nib */, 091EDEF405582A140036F26A /* RXPrefs.nib */, ! 09DD169609AF5F88007EA0B4 /* TwhichResults.nib */, 089C165FFE840EACC02AAC07 /* InfoPlist.strings */, 090F95AF07CE71DD00E8E8B5 /* AuditResults.nib */, --- 384,388 ---- 2A37F4B6FDCFA73011CA2CEA /* MainMenu.nib */, 091EDEF405582A140036F26A /* RXPrefs.nib */, ! 09C2FD1109C9C9E900B792E0 /* TwhichResults.nib */, 089C165FFE840EACC02AAC07 /* InfoPlist.strings */, 090F95AF07CE71DD00E8E8B5 /* AuditResults.nib */, *************** *** 612,616 **** 09659107071EFE3C003B3083 /* editor.icns in Resources */, 090F95B107CE71DD00E8E8B5 /* AuditResults.nib in Resources */, ! 09DD169709AF5F88007EA0B4 /* TwhichResults.nib in Resources */, ); runOnlyForDeploymentPostprocessing = 0; --- 612,616 ---- 09659107071EFE3C003B3083 /* editor.icns in Resources */, 090F95B107CE71DD00E8E8B5 /* AuditResults.nib in Resources */, ! 09C2FD1309C9C9E900B792E0 /* TwhichResults.nib in Resources */, ); runOnlyForDeploymentPostprocessing = 0; *************** *** 709,712 **** --- 709,720 ---- sourceTree = "<group>"; }; + 09C2FD1109C9C9E900B792E0 /* TwhichResults.nib */ = { + isa = PBXVariantGroup; + children = ( + 09C2FD1209C9C9E900B792E0 /* English */, + ); + name = TwhichResults.nib; + sourceTree = "<group>"; + }; 2A37F4B6FDCFA73011CA2CEA /* MainMenu.nib */ = { isa = PBXVariantGroup; |
From: Andrew M. <fit...@us...> - 2006-03-16 16:28:14
|
Update of /cvsroot/radmind/radmind-assistant/rte/TwhichResults.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13730 Removed Files: classes.nib info.nib keyedobjects.nib Log Message: Removing old nib files. --- info.nib DELETED --- --- classes.nib DELETED --- --- keyedobjects.nib DELETED --- |
From: Andrew M. <fit...@us...> - 2006-03-16 16:21:48
|
Update of /cvsroot/radmind/radmind-assistant/rte/English.lproj/TwhichResults.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10554/TwhichResults.nib Added Files: classes.nib info.nib keyedobjects.nib Log Message: Moved twhich interface nib to English.lproj directory. --- 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>110 411 356 240 0 0 1440 878 </string> <key>IBFramework Version</key> <string>443.0</string> <key>IBOpenObjects</key> <array> <integer>5</integer> </array> <key>IBSystem Version</key> <string>8H14</string> </dict> </plist> --- NEW FILE: classes.nib --- { IBClasses = ( {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; }, { CLASS = RTETwhichDisplay; LANGUAGE = ObjC; OUTLETS = { twhichCommandFileField = NSTextField; twhichGroupField = NSTextField; twhichMatchingTranscriptsTable = NSTableView; twhichObjectPathField = NSTextField; twhichObjectTypeField = NSTextField; twhichOwnerField = NSTextField; twhichPermissionsField = NSTextField; twhichResultsPanel = NSPanel; twhichTypeField = NSTextField; }; SUPERCLASS = NSObject; } ); IBVersion = 1; } --- NEW FILE: keyedobjects.nib --- (This appears to be a binary file; contents omitted.) |
From: Andrew M. <fit...@us...> - 2006-03-16 16:20:28
|
Update of /cvsroot/radmind/radmind-assistant/rte/English.lproj/TwhichResults.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10036/TwhichResults.nib Log Message: Directory /cvsroot/radmind/radmind-assistant/rte/English.lproj/TwhichResults.nib added to the repository |
From: Andrew M. <fit...@us...> - 2006-03-14 16:42:54
|
Update of /cvsroot/radmind/radmind-assistant/English.lproj/MainMenu.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27351/English.lproj/MainMenu.nib Modified Files: classes.nib keyedobjects.nib objects.nib Log Message: Fix: Radmind Assistant - About Shows Previous Version [bug #1448087] Index: objects.nib =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/English.lproj/MainMenu.nib/objects.nib,v retrieving revision 1.64 retrieving revision 1.65 diff -C2 -d -r1.64 -r1.65 Binary files /tmp/cvs6Kp8zE and /tmp/cvst66ty2 differ Index: classes.nib =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/English.lproj/MainMenu.nib/classes.nib,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** classes.nib 5 Aug 2004 15:29:14 -0000 1.35 --- classes.nib 14 Mar 2006 16:42:46 -0000 1.36 *************** *** 82,85 **** --- 82,86 ---- openServerManager = id; openTranscriptEditor = id; + showAboutPanel = id; skip = id; storePassword = id; Index: keyedobjects.nib =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/English.lproj/MainMenu.nib/keyedobjects.nib,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 Binary files /tmp/cvsRpaPoO and /tmp/cvsQLvGRl differ |
From: Andrew M. <fit...@us...> - 2006-03-14 16:42:53
|
Update of /cvsroot/radmind/radmind-assistant In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27351 Modified Files: RAVersionCompare.m RCMStepController.h RCMStepController.m Log Message: Fix: Radmind Assistant - About Shows Previous Version [bug #1448087] Index: RCMStepController.m =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/RCMStepController.m,v retrieving revision 1.104 retrieving revision 1.105 diff -C2 -d -r1.104 -r1.105 *** RCMStepController.m 10 Mar 2006 13:35:31 -0000 1.104 --- RCMStepController.m 14 Mar 2006 16:42:46 -0000 1.105 *************** *** 34,41 **** static BOOL firstTimeWalkThrough = NO; ! static char *tools[] = { "/usr/local/bin/fsdiff", "/usr/local/bin/ktcheck", ! "/usr/local/bin/lapply", "/usr/local/bin/lcksum", ! "/usr/local/bin/lcreate", "/usr/local/bin/lfdiff", ! "/usr/local/bin/lmerge", "/usr/local/bin/twhich", "/usr/local/sbin/radmind", NULL }; --- 34,46 ---- static BOOL firstTimeWalkThrough = NO; ! static char *tools[] = { "/usr/local/bin/fsdiff", ! "/usr/local/bin/ktcheck", ! "/usr/local/bin/lapply", ! "/usr/local/bin/lcksum", ! "/usr/local/bin/lcreate", ! "/usr/local/bin/lfdiff", ! "/usr/local/bin/lmerge", ! "/usr/local/bin/lsort", ! "/usr/local/bin/twhich", "/usr/local/sbin/radmind", NULL }; *************** *** 197,203 **** - ( void )versionCheck { FILE *fp; char buf[ MAXPATHLEN ], cmd[ MAXPATHLEN ], **p; ! int cmpdone = 0; for ( p = tools; *p != NULL; p++ ) { --- 202,219 ---- - ( void )versionCheck { + if ( [[ RAVersionCompare sharedComparison ] + compareInstalledVersion ] > 0 ) { + [ self setNeedsToolUpdate: YES ]; + } + } + + /* get version info for all installed tools */ + - ( IBAction )showAboutPanel: ( id )sender + { FILE *fp; char buf[ MAXPATHLEN ], cmd[ MAXPATHLEN ], **p; ! ! [ aboutToolsVersionView setEditable: YES ]; ! [ aboutToolsVersionView setString: @"" ]; for ( p = tools; *p != NULL; p++ ) { *************** *** 206,215 **** if ( access( toolpath, F_OK | X_OK ) < 0 ) { if ( errno == ENOENT ) { - if ( strcmp( toolpath, "/usr/local/bin/fsdiff" ) == 0 ) { - [ self setNeedsToolUpdate: YES ]; - } [ aboutToolsVersionView insertText: ! [ NSString stringWithFormat: @"%s not installed.\n\n", toolpath ]]; ! continue; } else { NSLog( @"Couldn't access %s: %s\n", *p, strerror( errno )); --- 222,228 ---- if ( access( toolpath, F_OK | X_OK ) < 0 ) { if ( errno == ENOENT ) { [ aboutToolsVersionView insertText: ! [ NSString stringWithFormat: ! @"%s not installed.\n\n", toolpath ]]; } else { NSLog( @"Couldn't access %s: %s\n", *p, strerror( errno )); *************** *** 219,223 **** } ! if ( snprintf( cmd, MAXPATHLEN, "%s -V", toolpath ) > ( MAXPATHLEN -1 )) { NSLog( @"%s -V: too long", toolpath ); [ aboutToolsVersionView setEditable: NO ]; --- 232,236 ---- } ! if ( snprintf( cmd, MAXPATHLEN, "%s -V", toolpath ) >= MAXPATHLEN ) { NSLog( @"%s -V: too long", toolpath ); [ aboutToolsVersionView setEditable: NO ]; *************** *** 229,233 **** [ aboutToolsVersionView insertText: [ NSString stringWithFormat: ! @"Couldn't get version for %s.\n\n", toolpath ]]; continue; } --- 242,247 ---- [ aboutToolsVersionView insertText: [ NSString stringWithFormat: ! @"Couldn't get version for %s: %s.\n\n", ! toolpath, strerror( errno ) ]]; continue; } *************** *** 236,248 **** [ NSString stringWithFormat: @"%s:\n\t", toolpath ]]; while ( fgets( buf, MAXPATHLEN, fp ) != NULL ) { ! if ( strcmp( toolpath, "/usr/local/bin/fsdiff" ) == 0 && cmpdone == 0 ) { ! if ( [[ RAVersionCompare sharedComparison ] ! compareInstalledVersion ] > 0 ) { ! [ self setNeedsToolUpdate: YES ]; ! } ! cmpdone++; ! } ! ! [ aboutToolsVersionView insertText: [ NSString stringWithUTF8String: buf ]]; [ aboutToolsVersionView insertText: @"\t" ]; } --- 250,255 ---- [ NSString stringWithFormat: @"%s:\n\t", toolpath ]]; while ( fgets( buf, MAXPATHLEN, fp ) != NULL ) { ! [ aboutToolsVersionView insertText: ! [ NSString stringWithUTF8String: buf ]]; [ aboutToolsVersionView insertText: @"\t" ]; } *************** *** 255,258 **** --- 262,267 ---- [ aboutToolsVersionView setEditable: NO ]; [ aboutToolsVersionView scrollRangeToVisible: NSMakeRange( 0, 0 ) ]; + + [ aboutPanel makeKeyAndOrderFront: nil ]; } Index: RCMStepController.h =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/RCMStepController.h,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -d -r1.42 -r1.43 *** RCMStepController.h 12 Aug 2005 20:20:43 -0000 1.42 --- RCMStepController.h 14 Mar 2006 16:42:46 -0000 1.43 *************** *** 146,149 **** --- 146,150 ---- /* about panel methods */ + - ( IBAction )showAboutPanel: ( id )sender; - ( IBAction )emailAuthors: ( id )sender; - ( IBAction )visitWebsite: ( id )sender; Index: RAVersionCompare.m =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/RAVersionCompare.m,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** RAVersionCompare.m 12 Aug 2005 19:29:10 -0000 1.5 --- RAVersionCompare.m 14 Mar 2006 16:42:46 -0000 1.6 *************** *** 51,54 **** --- 51,59 ---- path = [ fsdiffPath fileSystemRepresentation ]; + /* an install is required if we don't find fsdiff */ + if ( ![[ NSFileManager defaultManager ] fileExistsAtPath: fsdiffPath ] ) { + return( 1 ); + } + if ( snprintf( cmd, MAXPATHLEN, "%s -V", path ) >= MAXPATHLEN ) { NSLog( @"%s -V: too long", path ); |
From: Wes C. <wes...@us...> - 2006-03-14 01:45:38
|
Update of /cvsroot/radmind/radmind In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24348 Modified Files: base64.c Log Message: fixed typo Index: base64.c =================================================================== RCS file: /cvsroot/radmind/radmind/base64.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** base64.c 20 May 2003 22:23:11 -0000 1.5 --- base64.c 14 Mar 2006 01:45:34 -0000 1.6 *************** *** 396,402 **** e[ 4 ] = '\0'; return; ! default : ! e[ 4 ] = '\0'; return; } --- 396,402 ---- e[ 4 ] = '\0'; return; ! default : ! e[ 0 ] = '\0'; return; } |
From: Andrew M. <fit...@us...> - 2006-03-13 15:57:04
|
Update of /cvsroot/radmind/radmind-assistant/rte/English.lproj/RXTranscript.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27631 Modified Files: keyedobjects.nib Log Message: Fix: Transcript Editor - Editing Lines [bug #1448073]. Owner, Group and Mode fields send action on end editing. Index: keyedobjects.nib =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/rte/English.lproj/RXTranscript.nib/keyedobjects.nib,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 Binary files /tmp/cvsP6SASR and /tmp/cvscmoAeu differ |
From: Andrew M. <fit...@us...> - 2006-03-13 15:53:15
|
Update of /cvsroot/radmind/radmind-assistant/rte In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25725 Modified Files: RXTranscript-ConversionAdditions.m Log Message: Fix: Transcript Editor - Convert [bug #1448068] Index: RXTranscript-ConversionAdditions.m =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/rte/RXTranscript-ConversionAdditions.m,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RXTranscript-ConversionAdditions.m 24 Feb 2006 21:50:47 -0000 1.2 --- RXTranscript-ConversionAdditions.m 13 Mar 2006 15:53:10 -0000 1.3 *************** *** 22,31 **** currentbase = [[ item objectForKey: @"path" ] substringToIndex: 1 ]; - if ( [[ item objectForKey: @"path" ] isEqualToString: basepath ] - || [ currentbase isEqualToString: basepath ] ) { - NSLog( @"No conversion necessary" ); - return( 0 ); - } - if ( [[ item objectForKey: @"path" ] isEqualToString: @"." ] || [[ item objectForKey: @"path" ] isEqualToString: @"./" ] --- 22,25 ---- |
From: Andrew M. <fit...@us...> - 2006-03-13 15:44:08
|
Update of /cvsroot/radmind/radmind-assistant/rte In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21085 Modified Files: RXTranscript.m Log Message: Fix: Transcript Editor - Show Info Button & Command [bug #1448063] Index: RXTranscript.m =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/rte/RXTranscript.m,v retrieving revision 1.103 retrieving revision 1.104 diff -C2 -d -r1.103 -r1.104 *** RXTranscript.m 24 Feb 2006 22:00:02 -0000 1.103 --- RXTranscript.m 13 Mar 2006 15:44:02 -0000 1.104 *************** *** 1479,1482 **** --- 1479,1484 ---- //NSArray *curColumnItems; NSDictionary *dict; + NSMenu *menu; + id menuItem; int row; //tcolumn; char type; *************** *** 1498,1501 **** --- 1500,1511 ---- #endif /* HAS_COLUMN_VIEW */ + menu = [ NSApp mainMenu ]; + menu = [[ menu itemWithTitle: NSLocalizedString( @"File", @"File" ) ] submenu ]; + if (( menuItem = [ menu itemWithTitle: + NSLocalizedString( @"Show Info", @"Show Info" ) ] ) != nil ) { + [ menuItem setTitle: NSLocalizedString( @"Hide Info", @"Hide Info" ) ]; + [ menuItem setAction: @selector( hideInfo: ) ]; + } + if ( [ tContentsTableView numberOfSelectedRows ] > 1 ) { [ typeImage setImage: nil ]; *************** *** 1627,1643 **** [ transcriptSplitView expandSubView: infoTabView animate: NO ]; - - if ( [ sender isKindOfClass: [ NSMenuItem class ]] ) { - [ sender setTitle: NSLocalizedString( @"Hide Info", @"Hide Info" ) ]; - [ sender setAction: @selector( hideInfo: ) ]; - } } - ( IBAction )hideInfo: ( id )sender { [ transcriptSplitView collapseSubView: infoTabView animate: NO ]; ! if ( [ sender isKindOfClass: [ NSMenuItem class ]] ) { ! [ sender setTitle: NSLocalizedString( @"Show Info", @"Show Info" ) ]; ! [ sender setAction: @selector( showInfo: ) ]; } } --- 1637,1655 ---- [ transcriptSplitView expandSubView: infoTabView animate: NO ]; } - ( IBAction )hideInfo: ( id )sender { + NSMenu *menu; + id menuItem; + [ transcriptSplitView collapseSubView: infoTabView animate: NO ]; ! ! menu = [ NSApp mainMenu ]; ! menu = [[ menu itemWithTitle: NSLocalizedString( @"File", @"File" ) ] submenu ]; ! if (( menuItem = [ menu itemWithTitle: ! NSLocalizedString( @"Hide Info", @"Hide Info" ) ] ) != nil ) { ! [ menuItem setTitle: NSLocalizedString( @"Show Info", @"Show Info" ) ]; ! [ menuItem setAction: @selector( showInfo: ) ]; } } |
From: Andrew M. <fit...@us...> - 2006-03-10 17:10:47
|
Update of /cvsroot/radmind/radmind-assistant/English.lproj/MainMenu.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1350/MainMenu.nib Modified Files: keyedobjects.nib objects.nib Log Message: Updated version. Index: objects.nib =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/English.lproj/MainMenu.nib/objects.nib,v retrieving revision 1.63 retrieving revision 1.64 diff -C2 -d -r1.63 -r1.64 Binary files /tmp/cvspthD61 and /tmp/cvswYLiaA differ Index: keyedobjects.nib =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/English.lproj/MainMenu.nib/keyedobjects.nib,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 Binary files /tmp/cvsVD3hY3 and /tmp/cvsShdN6B differ |
From: Andrew M. <fit...@us...> - 2006-03-10 17:10:47
|
Update of /cvsroot/radmind/radmind-assistant/English.lproj In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1350 Modified Files: InfoPlist.strings Log Message: Updated version. Index: InfoPlist.strings =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/English.lproj/InfoPlist.strings,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 Binary files /tmp/cvsfdWWCc and /tmp/cvs3pInbI differ |
From: Andrew M. <fit...@us...> - 2006-03-10 17:10:27
|
Update of /cvsroot/radmind/radmind-assistant In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1230 Added Files: VERSION Log Message: Version file. --- NEW FILE: VERSION --- 1.0.0rc3 |
From: Andrew M. <fit...@us...> - 2006-03-10 17:09:29
|
Update of /cvsroot/radmind/radmind-assistant In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv519 Modified Files: Info.plist Log Message: Updated version. Index: Info.plist =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/Info.plist,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** Info.plist 8 Mar 2006 18:35:58 -0000 1.10 --- Info.plist 10 Mar 2006 17:09:26 -0000 1.11 *************** *** 8,12 **** <string>Radmind Assistant</string> <key>CFBundleGetInfoString</key> ! <string>Radmind Assistant 1.0.0rc2</string> <key>CFBundleIconFile</key> <string>radassist</string> --- 8,12 ---- <string>Radmind Assistant</string> <key>CFBundleGetInfoString</key> ! <string>Radmind Assistant 1.0.0rc3</string> <key>CFBundleIconFile</key> <string>radassist</string> *************** *** 20,28 **** <string>APPL</string> <key>CFBundleShortVersionString</key> ! <string>1.0.0rc2</string> <key>CFBundleSignature</key> <string>????</string> <key>CFBundleVersion</key> ! <string>1.0.0rc2</string> <key>NSMainNibFile</key> <string>MainMenu</string> --- 20,28 ---- <string>APPL</string> <key>CFBundleShortVersionString</key> ! <string>1.0.0rc3</string> <key>CFBundleSignature</key> <string>????</string> <key>CFBundleVersion</key> ! <string>1.0.0rc3</string> <key>NSMainNibFile</key> <string>MainMenu</string> |
From: Andrew M. <fit...@us...> - 2006-03-10 17:08:54
|
Update of /cvsroot/radmind/radmind-assistant/Radmind Assistant.xcodeproj In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32477/Radmind Assistant.xcodeproj Modified Files: project.pbxproj Log Message: Script no longer copies an extra RUM. Index: project.pbxproj =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/Radmind Assistant.xcodeproj/project.pbxproj,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** project.pbxproj 24 Feb 2006 22:24:31 -0000 1.5 --- project.pbxproj 10 Mar 2006 17:08:50 -0000 1.6 *************** *** 1005,1009 **** runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; ! shellScript = "#! /bin/sh\n\nPATH=/bin:/usr/bin:/sbin:/usr/sbin; export PATH\n\ntoolname=\"RadmindUpdateMonitor.app\"\ntoolpath=\"${BUILT_PRODUCTS_DIR}/${toolname}\"\nrsrcdir=\"${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\n\nif [ x\"${ACTION}\" != x\"build\" ]; then\n\texit 0\nfi\n\nif [ -e \"${rsrcdir}/${toolname}\" ]; then\n\tif [ \"${toolpath}\" -nt \"${rsrcdir}/${toolname}\" ]; then\n\t\trm -r \"${rsrcdir}/${toolname}\"\n\tfi\nfi\n\nif [ ! -f \"${rsrcdir}/${toolname}\" ]; then\n\techo Copying ${toolpath} to ${rsrcdir}...\n\tcp -Rf \"${toolpath}\" \"${rsrcdir}/${toolname}\"\n\tif [ $? -ne 0 ]; then\n\t\techo Copy failed.\n\t\texit 2\n\tfi\nfi\n\nexit 0"; }; 09EFC3C5099D176500A7D599 /* ShellScript */ = { --- 1005,1009 ---- runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; ! shellScript = "#! /bin/sh\n\nPATH=/bin:/usr/bin:/sbin:/usr/sbin; export PATH\n\ntoolname=\"RadmindUpdateMonitor.app\"\ntoolpath=\"${BUILT_PRODUCTS_DIR}/${toolname}\"\nrsrcdir=\"${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\n\nif [ x\"${ACTION}\" != x\"build\" ]; then\n\texit 0\nfi\n\nif [ -e \"${rsrcdir}/${toolname}\" ]; then\n\tif [ \"${toolpath}\" -nt \"${rsrcdir}/${toolname}\" ]; then\n\t\trm -r \"${rsrcdir}/${toolname}\"\n\tfi\nfi\n\nif [ ! -e \"${rsrcdir}/${toolname}\" ]; then\n\techo Copying ${toolpath} to ${rsrcdir}...\n\tcp -Rf \"${toolpath}\" \"${rsrcdir}/${toolname}\"\n\tif [ $? -ne 0 ]; then\n\t\techo Copy failed.\n\t\texit 2\n\tfi\nfi\n\nexit 0"; }; 09EFC3C5099D176500A7D599 /* ShellScript */ = { |
From: Andrew M. <fit...@us...> - 2006-03-10 17:08:10
|
Update of /cvsroot/radmind/radmind-assistant/rsm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30914/rsm Modified Files: Makefile Log Message: RA Makefile: tmpval no longer appended to volname; clean uses correct configuration. RTE Makefile: clean uses correct configuration. RSM Makefile: clean uses correct configuration. Index: Makefile =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/rsm/Makefile,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** Makefile 10 Mar 2006 13:46:09 -0000 1.9 --- Makefile 10 Mar 2006 17:08:03 -0000 1.10 *************** *** 20,24 **** clean : rm -f *.o a.out core ! xcodebuild clean distclean: clean --- 20,24 ---- clean : rm -f *.o a.out core ! xcodebuild -configuration ${CONFIGURATION} clean distclean: clean |