You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(42) |
Nov
(368) |
Dec
(248) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(2) |
Feb
(207) |
Mar
(180) |
Apr
(9) |
May
(39) |
Jun
(9) |
Jul
(22) |
Aug
(56) |
Sep
(82) |
Oct
(113) |
Nov
(236) |
Dec
(219) |
2005 |
Jan
(119) |
Feb
(81) |
Mar
(53) |
Apr
(177) |
May
(2) |
Jun
(67) |
Jul
(17) |
Aug
(5) |
Sep
(53) |
Oct
(17) |
Nov
(122) |
Dec
(77) |
2006 |
Jan
(293) |
Feb
(16) |
Mar
(32) |
Apr
(14) |
May
(29) |
Jun
(6) |
Jul
|
Aug
|
Sep
(18) |
Oct
(28) |
Nov
|
Dec
(2) |
2007 |
Jan
(8) |
Feb
(19) |
Mar
(4) |
Apr
(7) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(37) |
Oct
(1) |
Nov
(8) |
Dec
(25) |
2008 |
Jan
(1) |
Feb
(13) |
Mar
(17) |
Apr
(3) |
May
(2) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
(10) |
Nov
(19) |
Dec
(16) |
2009 |
Jan
(6) |
Feb
(9) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Rolf K. <lab...@us...> - 2006-10-25 09:18:35
|
Update of /cvsroot/opengtoolkit/lvzip/source/macbin.llb In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv18087/source/macbin.llb Modified Files: MACBIN Resource File Info Core.vi Log Message: Various modifications for handling of aliases/shortcuts Index: MACBIN Resource File Info Core.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/macbin.llb/MACBIN Resource File Info Core.vi,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 Binary files /tmp/cvsdWXNmL and /tmp/cvs1QEVLw differ |
From: Rolf K. <lab...@us...> - 2006-10-25 08:58:40
|
Update of /cvsroot/opengtoolkit/lvzip/c_source In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv8749/c_source Modified Files: macbin.c macbin.h zlibvc.def zlibvc.dsp Log Message: Various modifications for handling of aliases/shortcuts Index: macbin.c =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/macbin.c,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** macbin.c 23 May 2006 13:18:44 -0000 1.24 --- macbin.c 25 Oct 2006 08:58:37 -0000 1.25 *************** *** 20,53 **** #define MacIsDir(cpb) ((cpb).dirInfo.ioFlAttrib & ioDirMask) #define MacIsStationery(cpb) ((cpb).hFileInfo.ioFlFndrInfo.fdFlags & kIsStationery) #define kFileChanged (1L<<7) static MgErr MakeMacSpec(Path path, FSSpec *fss); ! static OSErr MakeFSpec(int16 vol, int32 dirID, ConstStr255 path, FSSpec *fss); static MgErr OSErrToLVErr(OSErr err); ! static int32 UTCShift(void) { [...1382 lines suppressed...] - return fDiskFull; - case dupFNErr: - return fDupPath; - case tmfoErr: - return fTMFOpen; - case memFullErr: - return mFullErr; - case afpObjectTypeErr: - case afpContainsSharedErr: - case afpInsideSharedErr: - return fNotEnabled; - } - return fIOErr; /* fIOErr generally signifies some unknown file error */ - } - /* - Calculate difference in seconds between local time zone and daylight - savings time settings and Universal Time Coordinate (also called GMT). - */ - #endif --- 1046,1047 ---- Index: macbin.h =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/macbin.h,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** macbin.h 23 May 2006 13:18:44 -0000 1.17 --- macbin.h 25 Oct 2006 08:58:37 -0000 1.18 *************** *** 17,24 **** --- 17,30 ---- #define MacOSX 1 #endif + #define BigEndian 1 #elif defined(__GNUC__) || defined(linux) #define Unix 1 + #define BigEndian 0 #elif defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(_WIN32_WCE) #define Win32 1 + #ifdef _DEBUG + #define DEBUG 1 + #endif + #define BigEndian 0 #endif *************** *** 31,45 **** #define DoDebugger() #endif #else #define DoDebugger() #endif ! typedef char int8; ! typedef unsigned char uInt8; ! typedef uInt8 uChar; ! typedef short int16; ! typedef unsigned short uInt16; ! typedef long int32; ! typedef unsigned long uInt32; #define Private(T) typedef struct T##_t { void *p; } *T --- 37,60 ---- #define DoDebugger() #endif + #define DebugPrintf DbgPrintf #else #define DoDebugger() + + long DebugPrintf(char* fmt, ...); + long DebugPrintf(char* fmt, ...) + { + return 0; + } #endif ! typedef char int8; ! typedef unsigned char uInt8; ! typedef uInt8 uChar; ! typedef short int16; ! typedef unsigned short uInt16; ! typedef long int32; ! typedef unsigned long uInt32; ! typedef float float32; ! typedef double float64; #define Private(T) typedef struct T##_t { void *p; } *T *************** *** 53,56 **** --- 68,83 ---- typedef int16 McErr; + typedef int32 Bool32; + + #define Cat4Chrs(c1,c2,c3,c4) (((int32)(uInt8)(c1)<<24)|((int32)(uInt8)(c2)<<16)|((int32)(uInt8)(c3)<<8)|((int32)(uInt8)(c4))) + #define Cat2Chrs(c1,c2) (((int16)(uInt8)(c1)<<8)|((int16)(uInt8)(c2))) + + #if BigEndian + #define RTToL(c1,c2,c3,c4) Cat4Chrs(c1,c2,c3,c4) + #define RTToW(c1,c2) Cat2Chrs(c1,c2) + #else + #define RTToL(c1,c2,c3,c4) Cat4Chrs(c4,c3,c2,c1) + #define RTToW(c1,c2) Cat2Chrs(c2,c1) + #endif enum { /* Manager Error Codes */ *************** *** 146,150 **** } LVPoint; ! typedef uChar Str255[256], *PStr, *CStr, *UPtr; typedef const uChar *ConstCStr, *ConstPStr, ConstStr255[256]; --- 173,177 ---- } LVPoint; ! typedef uChar Str255[256], *PStr, *CStr, *UPtr, **UHandle; typedef const uChar *ConstCStr, *ConstPStr, ConstStr255[256]; *************** *** 155,158 **** --- 182,187 ---- int32 CToPStr(ConstCStr src, PStr dest); int32 PStrCpy(PStr d, ConstPStr s); + int32 StrCpy(CStr t, const CStr s); + int32 StrNCpy(CStr t, const CStr s, int32 l); typedef struct { *************** *** 177,181 **** uInt32 cDate; uInt32 mDate; ! uInt16 flags; /* Mac only */ LVPoint location; /* Mac only */ uInt16 fId; /* Mac only */ --- 206,210 ---- uInt32 cDate; uInt32 mDate; ! uInt16 flags; LVPoint location; /* Mac only */ uInt16 fId; /* Mac only */ *************** *** 184,192 **** --- 213,232 ---- } LVFileInfo; + #define kUnknownType RTToL('?','?','?','?') + #define kUnknownCreator RTToL('?','?','?','?') + enum { openReadWrite, openReadOnly, openWriteOnly, openWriteOnlyTruncate }; /* open modes */ enum { denyReadWrite, denyWriteOnly, denyNeither}; /* deny modes */ + enum { fAbsPath, fRelPath, fNotAPath, fUNCPath, nPathTypes}; /* path type codes */ + /* LabVIEW exported functions */ MgErr FPathToText(Path path, LStrPtr lstr); + MgErr FPathToPath(Path *p); + MgErr FAppendName(Path path, PStr name); + Bool32 FIsAPathOfType(Path path, int32 ofType); + int32 FDepth(Path path); + MgErr FDisposePath(Path p); + MgErr FNewRefNum(Path path, File fd, LVRefNum* refnum); int32 DbgPrintf(CStr fmt, ...); *************** *** 194,198 **** UPtr DSNewPClr(int32); MgErr DSDisposePtr(UPtr); ! int32 StrNCpy(CStr t, const CStr s, int32 l); #define Min(a, b) ((a) < (b)) ? (a) : (b) --- 234,238 ---- UPtr DSNewPClr(int32); MgErr DSDisposePtr(UPtr); ! MgErr DSSetHandleSize(UHandle, int32); #define Min(a, b) ((a) < (b)) ? (a) : (b) *************** *** 201,217 **** extern void ZEXPORT DLLVersion OF((uChar* Version)); - extern MgErr ZEXPORT LV_HasResourceFork OF((PStr path, int32 *hasResFork)); - extern MgErr ZEXPORT LV_EncodeMacbinary OF((PStr srcFileName, PStr dstFileName)); - extern MgErr ZEXPORT LV_DecodeMacbinary OF((PStr srcFileName, PStr dstFileName)); - extern MgErr ZEXPORT LV_UtilFileInfo OF((PStr path, - uInt8 write, - LVFileInfo *finderInfo, - PStr comment)); - - extern MgErr ZEXPORT LV_OpenResFork OF((File *refnum, - PStr path, - uInt32 openMode, - uInt32 denyMode)); - extern MgErr ZEXPORT LVPath_ToText OF((Path path, CStr str, int32 *len)); extern MgErr ZEXPORT LVPath_HasResourceFork OF((Path path, int32 *hasResFork)); --- 241,244 ---- *************** *** 220,229 **** extern MgErr ZEXPORT LVPath_UtilFileInfo OF((Path path, ! uInt8 write, LVFileInfo *finderInfo, ! PStr comment)); ! extern MgErr ZEXPORT LVPath_OpenResFork OF((LVRefNum *refnum, Path path, uInt32 openMode, uInt32 denyMode)); --- 247,258 ---- extern MgErr ZEXPORT LVPath_UtilFileInfo OF((Path path, ! uInt8 write, ! uInt8 *isDirectory, LVFileInfo *finderInfo, ! LStrHandle comment)); ! extern MgErr ZEXPORT LVPath_OpenFile OF((LVRefNum *refnum, Path path, + uInt8 rsrc, uInt32 openMode, uInt32 denyMode)); Index: zlibvc.def =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/zlibvc.def,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** zlibvc.def 23 May 2006 12:47:29 -0000 1.14 --- zlibvc.def 25 Oct 2006 08:58:37 -0000 1.15 *************** *** 100,110 **** LVPath_ToText @201 LVPath_UtilFileInfo @202 ! LVPath_OpenResFork @203 LVPath_HasResourceFork @204 LVPath_EncodeMacbinary @205 LVPath_DecodeMacbinary @206 - LV_HasResourceFork @210 - LV_OpenResFork @211 - LV_UtilFileInfo @212 - LV_EncodeMacbinary @213 - LV_DecodeMacbinary @214 --- 100,105 ---- LVPath_ToText @201 LVPath_UtilFileInfo @202 ! LVPath_OpenFile @203 LVPath_HasResourceFork @204 LVPath_EncodeMacbinary @205 LVPath_DecodeMacbinary @206 Index: zlibvc.dsp =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/zlibvc.dsp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** zlibvc.dsp 1 Mar 2006 10:17:44 -0000 1.8 --- zlibvc.dsp 25 Oct 2006 08:58:37 -0000 1.9 *************** *** 145,149 **** LINK32=link.exe # ADD BASE LINK32 /nologo /subsystem:windows /dll /debug /machine:I386 ! # ADD LINK32 user32.lib /nologo /subsystem:windows /dll /incremental:no /debug /machine:I386 /out:"zlibvc___Win32_DLL_ASM_Debug\lvzlib.dll" !ELSEIF "$(CFG)" == "zlibvc - Win32 DLL ASM Obj Release" --- 145,150 ---- LINK32=link.exe # ADD BASE LINK32 /nologo /subsystem:windows /dll /debug /machine:I386 ! # ADD LINK32 user32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:"zlibvc___Win32_DLL_ASM_Debug\lvzlib.dll" ! # SUBTRACT LINK32 /incremental:no !ELSEIF "$(CFG)" == "zlibvc - Win32 DLL ASM Obj Release" |
From: Rolf K. <lab...@us...> - 2006-10-25 08:57:52
|
Update of /cvsroot/opengtoolkit/lvzip/tests In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv8179/tests Modified Files: lvzip-test-lg bin files.vi Log Message: Various modifications for handling of aliases/shortcuts Index: lvzip-test-lg bin files.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/tests/lvzip-test-lg bin files.vi,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 Binary files /tmp/cvsSmpgex and /tmp/cvse10VdP differ |
From: Rolf K. <lab...@us...> - 2006-10-25 08:56:44
|
Update of /cvsroot/opengtoolkit/lvzip/source In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv7625/source Modified Files: lvzlib.dll Log Message: Various modifications for handling of aliases/shortcuts Index: lvzlib.dll =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzlib.dll,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 Binary files /tmp/cvsgiDTkK and /tmp/cvscoVywP differ |
Update of /cvsroot/opengtoolkit/lvzip/source/macbin.llb In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv7625/source/macbin.llb Modified Files: DecodemacBinary.vi EncodemacBinary.vi MACBIN Create Header.vi MACBIN Decode MacBinary.vi MACBIN Has Resource Fork.vi MACBIN Read Header.vi MACBIN Resource File Info Core.vi MACBIN Resource File Info.vi MACBIN VI Tree.vi MACBIN Verify Header.vi Added Files: MACBIN Open File Refnum.vi Removed Files: MACBIN Open Resource Fork.vi Log Message: Various modifications for handling of aliases/shortcuts Index: EncodemacBinary.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/macbin.llb/EncodemacBinary.vi,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Binary files /tmp/cvspcNo0c and /tmp/cvstA4KVi differ Index: MACBIN Resource File Info Core.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/macbin.llb/MACBIN Resource File Info Core.vi,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvsuP4pPg and /tmp/cvsNfirOm differ Index: MACBIN Resource File Info.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/macbin.llb/MACBIN Resource File Info.vi,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 Binary files /tmp/cvsneWv4k and /tmp/cvsyvS3ar differ Index: MACBIN VI Tree.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/macbin.llb/MACBIN VI Tree.vi,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 Binary files /tmp/cvszbbtho and /tmp/cvsktHlsu differ Index: MACBIN Verify Header.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/macbin.llb/MACBIN Verify Header.vi,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 Binary files /tmp/cvsohfRAq and /tmp/cvsRm8xQw differ Index: MACBIN Decode MacBinary.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/macbin.llb/MACBIN Decode MacBinary.vi,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 Binary files /tmp/cvsNaZkeq and /tmp/cvsctoSLw differ --- MACBIN Open Resource Fork.vi DELETED --- --- NEW FILE: MACBIN Open File Refnum.vi --- (This appears to be a binary file; contents omitted.) Index: MACBIN Read Header.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/macbin.llb/MACBIN Read Header.vi,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 Binary files /tmp/cvstVMm7t and /tmp/cvsjX8SHA differ Index: MACBIN Has Resource Fork.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/macbin.llb/MACBIN Has Resource Fork.vi,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsVsm78v and /tmp/cvsrw1hMC differ Index: MACBIN Create Header.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/macbin.llb/MACBIN Create Header.vi,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvshENt9u and /tmp/cvsqhBqPB differ Index: DecodemacBinary.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/macbin.llb/DecodemacBinary.vi,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Binary files /tmp/cvszpAkiz and /tmp/cvsviJt0F differ |
From: Rolf K. <lab...@us...> - 2006-10-25 08:56:43
|
Update of /cvsroot/opengtoolkit/lvzip/source/lvzip.llb In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv7625/source/lvzip.llb Modified Files: ZLIB Close Read File.vi ZLIB Compress Directory.vi ZLIB Copy Raw File.vi ZLIB Extract File.vi ZLIB File Information.vi ZLIB Get File CRC32.vi ZLIB Open Unzip Archive.vi ZLIB Store File.vi ZLIB VI Tree.vi ZLIB Write File.vi Log Message: Various modifications for handling of aliases/shortcuts Index: ZLIB Store File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Store File.vi,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 Binary files /tmp/cvs2Q2q5J and /tmp/cvsIWQRgP differ Index: ZLIB Write File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Write File.vi,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 Binary files /tmp/cvscwPZ0Q and /tmp/cvsHRzymW differ Index: ZLIB Open Unzip Archive.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Open Unzip Archive.vi,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 Binary files /tmp/cvsvo8A9X and /tmp/cvs3qaAC3 differ Index: ZLIB File Information.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB File Information.vi,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 Binary files /tmp/cvsI3sFMZ and /tmp/cvsxHFHi5 differ Index: ZLIB Extract File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Extract File.vi,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 Binary files /tmp/cvsTEPtmZ and /tmp/cvsZBCHV4 differ Index: ZLIB Close Read File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Close Read File.vi,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 Binary files /tmp/cvshuBd90 and /tmp/cvs6YmoL6 differ Index: ZLIB Copy Raw File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Copy Raw File.vi,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 Binary files /tmp/cvsozi9a3 and /tmp/cvszhluQ8 differ Index: ZLIB Compress Directory.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Compress Directory.vi,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 Binary files /tmp/cvsIJW5j7 and /tmp/cvsRnEM2c differ Index: ZLIB VI Tree.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB VI Tree.vi,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 Binary files /tmp/cvso6Jeua and /tmp/cvsFmZFng differ Index: ZLIB Get File CRC32.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Get File CRC32.vi,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Binary files /tmp/cvs4ySaDg and /tmp/cvsQ0O4Am differ |
From: Rolf K. <lab...@us...> - 2006-10-24 10:39:25
|
Update of /cvsroot/opengtoolkit/file/source In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv29666/source Modified Files: File Info.vi Log Message: Added extra help information Index: File Info.vi =================================================================== RCS file: /cvsroot/opengtoolkit/file/source/File Info.vi,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 Binary files /tmp/cvshXrltK and /tmp/cvsy4f5GI differ |
From: Rolf K. <lab...@us...> - 2006-10-24 09:50:49
|
Update of /cvsroot/opengtoolkit/file In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv9011 Modified Files: change-log.txt file.ogbld file.spec Log Message: Changed version to 2.8 Index: file.spec =================================================================== RCS file: /cvsroot/opengtoolkit/file/file.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** file.spec 21 Mar 2006 02:10:44 -0000 1.10 --- file.spec 24 Oct 2006 09:50:47 -0000 1.11 *************** *** 3,7 **** Name=oglib_file ! Version=2.7 Release=1 --- 3,7 ---- Name=oglib_file ! Version=2.8 Release=1 Index: change-log.txt =================================================================== RCS file: /cvsroot/opengtoolkit/file/change-log.txt,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** change-log.txt 21 Mar 2006 01:36:16 -0000 1.11 --- change-log.txt 24 Oct 2006 09:50:47 -0000 1.12 *************** *** 1,3 **** ! -= oglib_file-2.7-1.ogp =- Changes from 2.6-1 --> 2.7-1 --- 1,11 ---- ! -= oglib_file-2.8-1.ogp =- ! ! Changes from 2.7-1 --> 2.8-1 ! -------------------------------- ! 2006-10-24 ! [FIX] File Info.vi: Added extra help text information ! [FIX] Compare File Binary.vi: Also compares file modification time and ! adds the file name to the error text message. ! [FIX] Added a bunch of missing VIs to VI Tree-file.vi Changes from 2.6-1 --> 2.7-1 *************** *** 11,15 **** [NEW] "Temporary Filename" added to library [NEW] "Force File Move" added to library ! [FIX] "File Info" owner and group support for Linuxs Changes from 2.3-1 --> 2.4-1 --- 19,23 ---- [NEW] "Temporary Filename" added to library [NEW] "Force File Move" added to library ! [FIX] "File Info" owner and group support for Linux Changes from 2.3-1 --> 2.4-1 Index: file.ogbld =================================================================== RCS file: /cvsroot/opengtoolkit/file/file.ogbld,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** file.ogbld 4 Apr 2005 22:19:23 -0000 1.3 --- file.ogbld 24 Oct 2006 09:50:47 -0000 1.4 *************** *** 30,34 **** # any keyname for Top Level VIs. Keynames for this section="" # are arbitrary.="" ! File Format Version=1.0.0-alpha5 Log Dir=built Log File="" --- 30,34 ---- # any keyname for Top Level VIs. Keynames for this section="" # are arbitrary.="" ! File Format Version=1.0.0 Log Dir=built Log File="" |
Update of /cvsroot/opengtoolkit/file/source In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv8524/source Modified Files: Compare File Binary.vi Copy with Options.vi Delete Recursive.vi Directory Info.vi List Directory Recursive.vi Merge Directories.vi Search and Replace Path String.vi Strip Path, Including Exe - Arrays.vi Strip Path, Including Exe - Traditional.vi Strip Path, Including Exe.vi Temporary Filename.vi VI Tree - file.vi Log Message: Added new functions to VI Tree Index: Temporary Filename.vi =================================================================== RCS file: /cvsroot/opengtoolkit/file/source/Temporary Filename.vi,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 Binary files /tmp/cvs6RQK7b and /tmp/cvsFCGZSq differ Index: VI Tree - file.vi =================================================================== RCS file: /cvsroot/opengtoolkit/file/source/VI Tree - file.vi,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 Binary files /tmp/cvs4KW0Uf and /tmp/cvsB2CiNu differ Index: Delete Recursive.vi =================================================================== RCS file: /cvsroot/opengtoolkit/file/source/Delete Recursive.vi,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 Binary files /tmp/cvsYSoudl and /tmp/cvsxs3YeA differ Index: List Directory Recursive.vi =================================================================== RCS file: /cvsroot/opengtoolkit/file/source/List Directory Recursive.vi,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 Binary files /tmp/cvs2CZcPm and /tmp/cvsAfFiXB differ Index: Merge Directories.vi =================================================================== RCS file: /cvsroot/opengtoolkit/file/source/Merge Directories.vi,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 Binary files /tmp/cvsmDttNu and /tmp/cvsDfvi4J differ Index: Compare File Binary.vi =================================================================== RCS file: /cvsroot/opengtoolkit/file/source/Compare File Binary.vi,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 Binary files /tmp/cvsQM4E3y and /tmp/cvsPCftrO differ Index: Copy with Options.vi =================================================================== RCS file: /cvsroot/opengtoolkit/file/source/Copy with Options.vi,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvsToZeQy and /tmp/cvs9eYntO differ Index: Strip Path, Including Exe.vi =================================================================== RCS file: /cvsroot/opengtoolkit/file/source/Strip Path, Including Exe.vi,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvse4fv5C and /tmp/cvsymZZOS differ Index: Strip Path, Including Exe - Arrays.vi =================================================================== RCS file: /cvsroot/opengtoolkit/file/source/Strip Path, Including Exe - Arrays.vi,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsjXbxRF and /tmp/cvsnMyIFV differ Index: Strip Path, Including Exe - Traditional.vi =================================================================== RCS file: /cvsroot/opengtoolkit/file/source/Strip Path, Including Exe - Traditional.vi,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsPObmeI and /tmp/cvsJfJt6X differ Index: Directory Info.vi =================================================================== RCS file: /cvsroot/opengtoolkit/file/source/Directory Info.vi,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs0MzsIM and /tmp/cvs5zYtI2 differ Index: Search and Replace Path String.vi =================================================================== RCS file: /cvsroot/opengtoolkit/file/source/Search and Replace Path String.vi,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsHREiJU and /tmp/cvsRGflWa differ |
From: Rolf K. <lab...@us...> - 2006-10-24 09:44:45
|
Update of /cvsroot/opengtoolkit/file/source In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv30099/source Modified Files: Compare File Binary.vi Log Message: Added comparison of file modification time to the check and improved error message Index: Compare File Binary.vi =================================================================== RCS file: /cvsroot/opengtoolkit/file/source/Compare File Binary.vi,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvsHxpm24 and /tmp/cvsv8ehCS differ |
From: Rolf K. <lab...@us...> - 2006-10-19 20:31:26
|
Update of /cvsroot/opengtoolkit/lvzip/c_source In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv24653/c_source Modified Files: .cvsignore Log Message: Index: .cvsignore =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** .cvsignore 7 Jan 2006 21:00:48 -0000 1.1 --- .cvsignore 19 Oct 2006 20:31:08 -0000 1.2 *************** *** 3,5 **** .ncb .opt ! .plg \ No newline at end of file --- 3,6 ---- .ncb .opt ! .plg ! .o \ No newline at end of file |
From: Jim K. <jk...@us...> - 2006-10-17 16:48:16
|
Update of /cvsroot/opengtoolkit/lvzip/source In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv31201 Modified Files: lvzlib.framework.sea.bin Log Message: rebuilt Mac OS X shared library Index: lvzlib.framework.sea.bin =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzlib.framework.sea.bin,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsPrzMvH and /tmp/cvsO1911a differ |
From: Jim K. <jk...@us...> - 2006-09-23 21:06:22
|
Update of /cvsroot/opengtoolkit/lvzip/build_support In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv12685 Modified Files: lvzip.rev Log Message: built Index: lvzip.rev =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/build_support/lvzip.rev,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** lvzip.rev 3 Jan 2006 00:26:59 -0000 1.6 --- lvzip.rev 23 Sep 2006 21:06:20 -0000 1.7 *************** *** 1,6 **** [lvzip.ogbld] Version=2.3 ! Build_Number=12 ! Build_Date="1/2/2006 3:57:11 PM" Status=OK Warnings=1 --- 1,6 ---- [lvzip.ogbld] Version=2.3 ! Build_Number=17 ! Build_Date="9/23/2006 11:46:05 AM" Status=OK Warnings=1 |
From: Jim K. <jk...@us...> - 2006-09-23 20:40:37
|
Update of /cvsroot/opengtoolkit/lvzip/build_support In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv2777 Modified Files: Pre-Post Build (testing).vi Log Message: fixed linkage to OpenG Builder typedefs in latest version. Index: Pre-Post Build (testing).vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/build_support/Pre-Post Build (testing).vi,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvsvIbjKI and /tmp/cvsDh1LXb differ |
From: Jim K. <jk...@us...> - 2006-09-23 18:45:18
|
Update of /cvsroot/opengtoolkit/lvzip In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23058 Modified Files: lvzip.ogbld Log Message: Changed build source file from readme2_3.txt to readme.txt to reflect renaming of file Index: lvzip.ogbld =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/lvzip.ogbld,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** lvzip.ogbld 9 Jan 2006 22:43:06 -0000 1.5 --- lvzip.ogbld 23 Sep 2006 18:45:16 -0000 1.6 *************** *** 98,102 **** SourceFile 1=lvzlib.* SourceFile 2=submenus/*.mnu ! SourceFile 3=readme2_3.txt SourceFile 4=PreInstall.vi --- 98,102 ---- SourceFile 1=lvzlib.* SourceFile 2=submenus/*.mnu ! SourceFile 3=readme.txt SourceFile 4=PreInstall.vi |
From: Jim K. <jk...@us...> - 2006-09-23 18:44:03
|
Update of /cvsroot/opengtoolkit/lvzip In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv22287 Modified Files: PreInstall.vi Log Message: updated dialog with text from the readme.txt file Index: PreInstall.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/PreInstall.vi,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvsSBPiY3 and /tmp/cvs0toFEf differ |
From: Rolf K. <lab...@us...> - 2006-09-23 06:09:17
|
Update of /cvsroot/opengtoolkit/lvzip In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv20295 Modified Files: Change-Log.txt Log Message: Index: Change-Log.txt =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/Change-Log.txt,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Change-Log.txt 1 Mar 2006 14:59:47 -0000 1.5 --- Change-Log.txt 23 Sep 2006 06:09:14 -0000 1.6 *************** *** 39,41 **** 2006-03-01 rk ! Added support fro transparent Macintosh resource file handling through MacBinary encoding. \ No newline at end of file --- 39,44 ---- 2006-03-01 rk ! Added support for transparent Macintosh resource file handling through MacBinary encoding. ! ! 2006-09-23 rk ! Fixed error in LabVIEW 8 when extracting read-only files. \ No newline at end of file |
From: Rolf K. <lab...@us...> - 2006-09-23 06:04:40
|
Update of /cvsroot/opengtoolkit/lvzip/source In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv18440/source Modified Files: lvzlib.so Log Message: Updated Linux shared library to most recent source code Index: lvzlib.so =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzlib.so,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Binary files /tmp/cvsKW0rR0 and /tmp/cvsDtfMl7 differ |
From: Rolf K. <lab...@us...> - 2006-09-23 05:13:49
|
Update of /cvsroot/opengtoolkit/lvzip/source/lvzip.llb In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv31069/source/lvzip.llb Modified Files: ZLIB Close Read File.vi ZLIB Copy Raw File.vi ZLIB Extract File.vi ZLIB VI Tree.vi Log Message: Fix the fix for read-only files. Works now really in LabVIEW 8. Index: ZLIB Close Read File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Close Read File.vi,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 Binary files /tmp/cvsNukhAe and /tmp/cvspoypFd differ Index: ZLIB Copy Raw File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Copy Raw File.vi,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 Binary files /tmp/cvsCR5o1j and /tmp/cvsrAz3ej differ Index: ZLIB Extract File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Extract File.vi,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 Binary files /tmp/cvsd7Jvbg and /tmp/cvsOG0Tyf differ Index: ZLIB VI Tree.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB VI Tree.vi,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 Binary files /tmp/cvsGphZUg and /tmp/cvsF2swog differ |
From: Rolf K. <lab...@us...> - 2006-09-23 05:13:47
|
Update of /cvsroot/opengtoolkit/lvzip/source In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv31069/source Added Files: readonly.txt Log Message: Fix the fix for read-only files. Works now really in LabVIEW 8. --- NEW FILE: readonly.txt --- |
From: Rolf K. <lab...@us...> - 2006-09-23 05:02:24
|
Update of /cvsroot/opengtoolkit/lvzip/source In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv26760/source Modified Files: opengdoc.txt Added Files: readme.txt Removed Files: readme2_2.txt readme2_3.txt Log Message: Changed documentation --- readme2_3.txt DELETED --- --- readme2_2.txt DELETED --- Index: opengdoc.txt =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/opengdoc.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** opengdoc.txt 2 Jan 2006 11:21:13 -0000 1.2 --- opengdoc.txt 23 Sep 2006 05:02:22 -0000 1.3 *************** *** 24,28 **** Description ! The core of this libray is an external shared library consisting basically of the version 1.2.2 release of zlib and the version 1.0.1d of the zip library from Gilles Vollant. The current version supports most types of ZIP files with exception of the newest proprietary format created by the latest version of Winzip. It also supports adding files with password, and extracting password protected files. --- 24,28 ---- Description ! The core of this libray is an external shared library consisting basically of the version 1.2.3 release of zlib and the version 1.0.1e of the zip library from Gilles Vollant. The current version supports most types of ZIP files with exception of the newest proprietary format created by the latest version of Winzip. It also supports adding files with password, and extracting password protected files. *************** *** 42,44 **** Copyright (C) 1995-2004 Mark Adler, Jean-loup Gailly Copyright (C) 1998-2004 Gilles Vollant ! Copyright (C) 2002-2005 Rolf Kalbermatter, Jim Kring, Christoph Salzmann --- 42,44 ---- Copyright (C) 1995-2004 Mark Adler, Jean-loup Gailly Copyright (C) 1998-2004 Gilles Vollant ! Copyright (C) 2002-2006 Rolf Kalbermatter, Jim Kring, Christoph Salzmann --- NEW FILE: readme.txt --- LabVIEW ZIP library, version 2.3 -------------------------------- Copyright 2002-2006 Rolf Kalbermatter Please read this document before you upgrade from a version of LVZIP older than 2.2 to this version. The new version since 2.2 of LVZIP has some new features and some modifications. New features in 2.3: -------------------- 1) Transparent MacBinary support on the Macintosh If the compression routine encounters a Macintosh file with a resource fork the file is automatically encoded using the MacBinary algorithme before it is actually compressed. On extraction of such files on the Macintosh the file is restored with its resource fork. On non-Macintosh platforms extracting a MacBinary file will result in the data fork being stored in the original file and the resource fork being stored in the filename extended with the .rsrc file ending. 2) LabVIEW 8 uncovered a problem when unextracting read-only files. The application of the original creation and modification time to such files failed now. This was fixed by always creating the extracted file with write access and only change it to read-only after the original creation and modification time has been applied. New features in 2.2 (never really properly released): ----------------------------------------------------- 1) Password support (limited testing) ZLIB Extract All Files To Dir.vi ZLIB Compress Directory.vi ZLIB Compress Files.vi ZLIB Store File.vi ZLIB Extract File.vi A new string parameter was added to specify a password to use to extract files or to encrypt files. This function is not thouroghly tested at this time. 2) Adding of files into existing ZIP archive supported ZLIB Compress Directory.vi ZLIB Compress Files.vi ZLIB Open Archive.vi The boolean parameter to append or truncate has been replaced by an enumeration to support addition of files into an existing archive. The old append value meant that the ZIP file was tacked to the end of the existing file which might have been useful for a selfextracting executable only. Following table shows the old and new settings old value new value remarks False create new truncates existing file to 0 True append to end appends to end of existing file NA append to archive appends new files into the archive 3) Deleting of files from an existing ZIP archive. ZLIB Delete Files From Archive.vi This function will create a new archive and move all files except the ones to remove into this new archive, replacing the old one with it if the entire transfer was successful. The transfer between the old and new archive happens in "raw mode" which means the data is transfered compressed into the new file, speeding up the whole operation but even more importantly eliminating the need to know the password for any of the files in the archive for mere deleting of a file. Of course the files in the new archive will be password protected just as they have been in the old file. Changes: -------- 1) To support the new append mode the "append" parameter for the compression functions has been modified from a boolean to an enumeration. This could cause bad wires when this function was used in a program and this parameter was wired with a constant or terminal. Since the non-default value was rarely useful, this should not be a big problem for most users as it is unlikely this parameter was ever wired. 2) To support specifying a password when compressing into an archive, the connector pane of a few VIs had to be changed. You will need to relink existing applications if you have used following four functions: ZLIB Extract All Files To Dir.vi ZLIB Compress Directory.vi ZLIB Compress Files.vi ZLIB Store File.vi 3) To simplify the interface of the file info structure the according cluster was modified to be more in LabVIEW style. This caused the change to the connector pane of two VIs, namely: ZLIB Get Current File Info.vi ZLIB Enumerate File Contents.vi and the according strict typedef custom control ZLIB File Info.ctl The old VIs and custom control with the old connector pane are stored under the same name but with the appendix "Old". This is a list of the compatibility functions: ZLIB Get Current File Info Old.vi ZLIB Enumerate File Contents Old.vi ZLIB File Info Old.ctl If you have an older application where you directly used one of the VIs described here from the old lvzip package you can either replace those VIs by the compatibility VIs or rewire your application to work with the new functions. 5) I was successful in making the "File Info.vi" function from the file package work again. In doing so the "ZLIB Time Info.vi" function, which really was a subset implementation of "File Info.vi" is now obsolete and has been removed both from the VI library as well as the shared library. If you should have happened to use this function you should use the according File Info.vi from the file package instead and adapt your cluster wiring. Used libraries: --------------- The lvzip package makes use of the error package, the file package and through the last one also of the array package. Some functions in the file package have been added in comparison to the latest released package and therefore this version of lvzip will only work with the version 2.5 of the file package. Have fun Rolf Kalbermatter |
From: Rolf K. <lab...@us...> - 2006-09-23 04:51:23
|
Update of /cvsroot/opengtoolkit/lvzip/source/lvzip.llb In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv22520/source/lvzip.llb Modified Files: ZLIB Close Read File.vi ZLIB Copy Raw File.vi ZLIB Extract File.vi ZLIB VI Tree.vi Log Message: First attempt to fix extraction error in LabVIEW 8 where apllication of access time to a newly extracted file fails for read only files Index: ZLIB Close Read File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Close Read File.vi,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 Binary files /tmp/cvs5eOYoD and /tmp/cvsIJWZPZ differ Index: ZLIB Copy Raw File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Copy Raw File.vi,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 Binary files /tmp/cvsyDlhVy and /tmp/cvsvvE3qV differ Index: ZLIB Extract File.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB Extract File.vi,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 Binary files /tmp/cvsyJTCEA and /tmp/cvsB7kddX differ Index: ZLIB VI Tree.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/source/lvzip.llb/ZLIB VI Tree.vi,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 Binary files /tmp/cvsJhqRRz and /tmp/cvsAMeKuW differ |
Update of /cvsroot/opengtoolkit/structures/source In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv10636/source Added Files: While Loop Array Index Continue with All Continues In.vi While Loop Array Index Continue with Any Continues In.vi While Loop Array Index Continue with Continue In.vi While Loop Array Index Control.vi While Loop Array Index Stop with All Stops In.vi While Loop Array Index Stop with Any Stops In.vi While Loop Array Index Stop with Stop In.vi Log Message: Initial loading of source code --- NEW FILE: While Loop Array Index Stop with Any Stops In.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: While Loop Array Index Continue with All Continues In.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: While Loop Array Index Continue with Continue In.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: While Loop Array Index Control.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: While Loop Array Index Continue with Any Continues In.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: While Loop Array Index Stop with All Stops In.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: While Loop Array Index Stop with Stop In.vi --- (This appears to be a binary file; contents omitted.) |
From: Doug F. <da...@us...> - 2006-09-02 19:43:35
|
Update of /cvsroot/opengtoolkit/structures/source In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv10248/source Log Message: Directory /cvsroot/opengtoolkit/structures/source added to the repository |
From: Doug F. <da...@us...> - 2006-09-02 19:35:45
|
Update of /cvsroot/opengtoolkit/lvdata/source/lvdata/lvdata.llb In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv7061/source/lvdata/lvdata.llb Modified Files: Get Default Data from TD.vi Added Files: Delete Array Element.vi Insert Array Element.vi Log Message: Added variant-based Delete and Insert Array Element VIs and modified Get Default Data from TD.vi to handle waveform data type. Index: Get Default Data from TD.vi =================================================================== RCS file: /cvsroot/opengtoolkit/lvdata/source/lvdata/lvdata.llb/Get Default Data from TD.vi,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvs33ObNn and /tmp/cvsWEEBQj differ --- NEW FILE: Delete Array Element.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Insert Array Element.vi --- (This appears to be a binary file; contents omitted.) |