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...> - 2005-12-16 14:02:31
|
Update of /cvsroot/opengtoolkit/pipe/build_support In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5277/build_support Added Files: pipes.rev Log Message: Minor cleanups and making sure all VIs run in LabVIEW 6.0 and higher --- NEW FILE: pipes.rev --- [ogpipe.ogbld] Version=0.0.0 Build_Number=3 Build_Date="6/12/2005 22:46:15" Status=OK Warnings=1 Log_File=/D/Projects/OpenG/opengtoolkit/pipe/built/ogpipe.log |
From: Rolf K. <lab...@us...> - 2005-12-16 14:02:30
|
Update of /cvsroot/opengtoolkit/pipe/c_source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5277/c_source Added Files: .cvsignore configure Log Message: Minor cleanups and making sure all VIs run in LabVIEW 6.0 and higher --- NEW FILE: .cvsignore --- Debug Release cvsgui.c *.ncb *.opt *.plg --- NEW FILE: configure --- #!/bin/sh # configure script for ogpipes. This script is needed only if # you wish to build a shared library and your system supports them, # of if you need special compiler, flags or install directory. # Otherwise, you can just use directly "make test; make install" # # To create a shared library, use "configure --shared"; If the primitive # shared library support provided here does not work, use # ftp://prep.ai.mit.edu/pub/gnu/libtool-*.tar.gz # # To impose specific compiler or flags or install directory, use for example: # prefix=$HOME CC=cc CFLAGS="-O4" ./configure # or for csh/tcsh users: # (setenv prefix $HOME; setenv CC cc; setenv CFLAGS "-O4"; ./configure) # LDSHARED is the command to be used to create a shared library # Incorrect settings of CC or CFLAGS may prevent creating a shared library. # If you have problems, try without defining CC and CFLAGS before reporting # an error. LIBS=ogpipes.a LDFLAGS="-L. ${LIBS}" VER=0 VER2=1 VER1=8 AR=${AR-"ar rc"} RANLIB=${RANLIB-"ranlib"} prefix=${prefix-/usr/local} exec_prefix=${exec_prefix-'${prefix}'} libdir=${libdir-'${exec_prefix}/lib'} includedir=${includedir-'${prefix}/include'} mandir=${mandir-'${prefix}/share/man'} shared_ext='.so' shared=0 gcc=0 old_cc="$CC" old_cflags="$CFLAGS" while test $# -ge 1 do case "$1" in -h* | --h*) echo 'usage:' echo ' configure [--shared] [--prefix=PREFIX] [--exec_prefix=EXPREFIX]' echo ' [--libdir=LIBDIR] [--includedir=INCLUDEDIR]' exit 0;; -p*=* | --p*=*) prefix=`echo $1 | sed 's/[-a-z_]*=//'`; shift;; -e*=* | --e*=*) exec_prefix=`echo $1 | sed 's/[-a-z_]*=//'`; shift;; -l*=* | --libdir=*) libdir=`echo $1 | sed 's/[-a-z_]*=//'`; shift;; -i*=* | --includedir=*) includedir=`echo $1 | sed 's/[-a-z_]*=//'`;shift;; -p* | --p*) prefix="$2"; shift; shift;; -e* | --e*) exec_prefix="$2"; shift; shift;; -l* | --l*) libdir="$2"; shift; shift;; -i* | --i*) includedir="$2"; shift; shift;; -s* | --s*) shared=1; shift;; *) echo "unknown option: $1"; echo "$0 --help for help"; exit 1;; esac done test=ztest$$ cat > $test.c <<EOF extern int getchar(); int hello() {return getchar();} EOF test -z "$CC" && echo Checking for gcc... cc=${CC-gcc} cflags=${CFLAGS-"-O3"} # to force the asm version use: CFLAGS="-O3 -DASMV" ./configure case "$cc" in *gcc*) gcc=1;; esac if test "$gcc" -eq 1 && ($cc -c $cflags $test.c) 2>/dev/null; then CC="$cc" SFLAGS=${CFLAGS-"-fPIC -O3"} CFLAGS="$cflags" case `(uname -s || echo unknown) 2>/dev/null` in Linux | linux | GNU | GNU/*) LDSHARED=${LDSHARED-"$cc -shared -Wl,-soname,ogpipes.so"};; CYGWIN* | Cygwin* | cygwin* | OS/2* ) EXE='.exe';; QNX*) # This is for QNX6. I suppose that the QNX rule below is for QNX2,QNX4 # (ala...@ic...) LDSHARED=${LDSHARED-"$cc -shared -Wl,-hogpipes.so"};; HP-UX*) LDSHARED=${LDSHARED-"$cc -shared $SFLAGS"} shared_ext='.sl' SHAREDLIB='ogpipes.sl';; Darwin*) shared_ext='.dylib' SHAREDLIB=ogpipes$shared_ext SHAREDLIBV=ogpipes.$VER$shared_ext SHAREDLIBM=ogpipes.$VER1$shared_ext LDSHARED=${LDSHARED-"$cc -dynamiclib -install_name $libdir/$SHAREDLIBV -compatibility_version $VER2 -current_version $VER"};; *) LDSHARED=${LDSHARED-"$cc -shared"};; esac else # find system name and corresponding cc options CC=${CC-cc} case `(uname -sr || echo unknown) 2>/dev/null` in HP-UX*) SFLAGS=${CFLAGS-"-O +z"} CFLAGS=${CFLAGS-"-O"} # LDSHARED=${LDSHARED-"ld -b +vnocompatwarnings"} LDSHARED=${LDSHARED-"ld -b"} shared_ext='.sl' SHAREDLIB='ogpipes.sl';; IRIX*) SFLAGS=${CFLAGS-"-ansi -O2 -rpath ."} CFLAGS=${CFLAGS-"-ansi -O2"} LDSHARED=${LDSHARED-"cc -shared"};; OSF1\ V4*) SFLAGS=${CFLAGS-"-O -std1"} CFLAGS=${CFLAGS-"-O -std1"} LDSHARED=${LDSHARED-"cc -shared -Wl,-soname,ogpipes.so -Wl,-msym -Wl,-rpath,$(libdir) -Wl,-set_version,${VER}:1.0"};; OSF1*) SFLAGS=${CFLAGS-"-O -std1"} CFLAGS=${CFLAGS-"-O -std1"} LDSHARED=${LDSHARED-"cc -shared"};; QNX*) SFLAGS=${CFLAGS-"-4 -O"} CFLAGS=${CFLAGS-"-4 -O"} LDSHARED=${LDSHARED-"cc"} RANLIB=${RANLIB-"true"} AR="cc -A";; SCO_SV\ 3.2*) SFLAGS=${CFLAGS-"-O3 -dy -KPIC "} CFLAGS=${CFLAGS-"-O3"} LDSHARED=${LDSHARED-"cc -dy -KPIC -G"};; SunOS\ 5*) SFLAGS=${CFLAGS-"-fast -xcg89 -KPIC -R."} CFLAGS=${CFLAGS-"-fast -xcg89"} LDSHARED=${LDSHARED-"cc -G"};; SunOS\ 4*) SFLAGS=${CFLAGS-"-O2 -PIC"} CFLAGS=${CFLAGS-"-O2"} LDSHARED=${LDSHARED-"ld"};; UNIX_System_V\ 4.2.0) SFLAGS=${CFLAGS-"-KPIC -O"} CFLAGS=${CFLAGS-"-O"} LDSHARED=${LDSHARED-"cc -G"};; UNIX_SV\ 4.2MP) SFLAGS=${CFLAGS-"-Kconform_pic -O"} CFLAGS=${CFLAGS-"-O"} LDSHARED=${LDSHARED-"cc -G"};; OpenUNIX\ 5) SFLAGS=${CFLAGS-"-KPIC -O"} CFLAGS=${CFLAGS-"-O"} LDSHARED=${LDSHARED-"cc -G"};; AIX*) # Courtesy of db...@ar... SFLAGS=${CFLAGS-"-O -qmaxmem=8192"} CFLAGS=${CFLAGS-"-O -qmaxmem=8192"} LDSHARED=${LDSHARED-"xlc -G"};; # send working options for other systems to su...@op... *) SFLAGS=${CFLAGS-"-O"} CFLAGS=${CFLAGS-"-O"} LDSHARED=${LDSHARED-"cc -shared"};; esac fi SHAREDLIB=${SHAREDLIB-"ogpipes$shared_ext"} SHAREDLIBV=${SHAREDLIBV-"ogpipes$shared_ext.$VER"} SHAREDLIBM=${SHAREDLIBM-"ogpipes$shared_ext.$VER1"} if test $shared -eq 1; then echo Checking for shared library support... # we must test in two steps (cc then ld), required at least on SunOS 4.x if test "`($CC -c $SFLAGS $test.c) 2>&1`" = "" && test "`($LDSHARED -o $test$shared_ext $test.o) 2>&1`" = ""; then CFLAGS="$SFLAGS" LIBS="$SHAREDLIBV" echo Building shared library $SHAREDLIBV with $CC. elif test -z "$old_cc" -a -z "$old_cflags"; then echo No shared library support. shared=0; else echo 'No shared library support; try without defining CC and CFLAGS' shared=0; fi fi if test $shared -eq 0; then LDSHARED="$CC" echo Building static library $LIBS version $VER with $CC. else LDFLAGS="-L. ${SHAREDLIBV}" fi cat > $test.c <<EOF #include <unistd.h> int main() { return 0; } EOF if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then sed < zconf.in.h "/HAVE_UNISTD_H/s%0%1%" > zconf.h echo "Checking for unistd.h... Yes." else cp -p zconf.in.h zconf.h echo "Checking for unistd.h... No." fi cat >$test.c <<EOF #include <errno.h> int main() { return 0; } EOF if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then echo "Checking for errno.h... Yes." else echo "Checking for errno.h... No." CFLAGS="$CFLAGS -DNO_ERRNO_H" fi rm -f $test.[co] $test $test$shared_ext # udpate Makefile sed < Makefile.in " /^CC *=/s#=.*#=$CC# /^CFLAGS *=/s#=.*#=$CFLAGS# /^CPP *=/s#=.*#=$CPP# /^LDSHARED *=/s#=.*#=$LDSHARED# /^LIBS *=/s#=.*#=$LIBS# /^SHAREDLIB *=/s#=.*#=$SHAREDLIB# /^SHAREDLIBV *=/s#=.*#=$SHAREDLIBV# /^SHAREDLIBM *=/s#=.*#=$SHAREDLIBM# /^AR *=/s#=.*#=$AR# /^RANLIB *=/s#=.*#=$RANLIB# /^EXE *=/s#=.*#=$EXE# /^prefix *=/s#=.*#=$prefix# /^exec_prefix *=/s#=.*#=$exec_prefix# /^libdir *=/s#=.*#=$libdir# /^includedir *=/s#=.*#=$includedir# /^mandir *=/s#=.*#=$mandir# /^LDFLAGS *=/s#=.*#=$LDFLAGS# " > Makefile |
From: Rolf K. <lab...@us...> - 2005-12-16 14:02:29
|
Update of /cvsroot/opengtoolkit/pipe In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5277 Modified Files: ogpipe.spec Added Files: .cvsignore Log Message: Minor cleanups and making sure all VIs run in LabVIEW 6.0 and higher --- NEW FILE: .cvsignore --- built *.ogp Index: ogpipe.spec =================================================================== RCS file: /cvsroot/opengtoolkit/pipe/ogpipe.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ogpipe.spec 28 Jun 2005 00:27:37 -0000 1.5 --- ogpipe.spec 16 Dec 2005 14:02:15 -0000 1.6 *************** *** 60,65 **** Num Files=8 ! File 0=ogpipes.dll ! File 1=ogpipe.llb/OGPIPE - VI TREE__ogtk.vi File 2=ogpipe.llb/OGPIPE Close Pipe__ogtk.vi File 3=ogpipe.llb/OGPIPE Open Pipe__ogtk.vi --- 60,65 ---- Num Files=8 ! File 0=pipes.dll ! File 1=ogpipe.llb/OGPIPE - VI Tree__ogtk.vi File 2=ogpipe.llb/OGPIPE Close Pipe__ogtk.vi File 3=ogpipe.llb/OGPIPE Open Pipe__ogtk.vi |
From: Rolf K. <lab...@us...> - 2005-12-16 13:56:16
|
Update of /cvsroot/opengtoolkit/portIO/build_support In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3856/build_support Modified Files: portio.rev Log Message: Minor cleanups and making sure all VIs run in LabVIEW 6.0 and higher Index: portio.rev =================================================================== RCS file: /cvsroot/opengtoolkit/portIO/build_support/portio.rev,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** portio.rev 16 Apr 2005 19:55:26 -0000 1.3 --- portio.rev 16 Dec 2005 13:55:59 -0000 1.4 *************** *** 1,24 **** - [lvzip.deab] - Version=1.0 - Build_Number=1 - Build_Date="05.04.2005 00:20:59" - Status=OK - Warnings=1 - Log_File=/D/Projects/OpenG/opengtoolkit/CVS_Folders/portio/built/portio.log - [portio.oglib] Version=0.0.0 ! Build_Number=9 ! Build_Date="05.04.2005 23:56:59" Status=OK Warnings=0 ! Log_File=/D/Projects/OpenG/opengtoolkit/CVS_Folders/portIO/built/portio.log ! ! [portio.ogbld] ! Version=0.0.0 ! Build_Number=1 ! Build_Date="4/16/2005 12:45:16 PM" ! Status=OK ! Warnings=1 ! Log_File=/D/Projects/OpenG/opengtoolkit/CVS_Folders/portIO/built/portio.log ! --- 1,7 ---- [portio.oglib] Version=0.0.0 ! Build_Number=13 ! Build_Date="07.04.2005 19:11:07" Status=OK Warnings=0 ! Log_File=/D/Projects/OpenG/opengtoolkit/portIO/built/portio.log |
From: Rolf K. <lab...@us...> - 2005-12-16 13:56:16
|
Update of /cvsroot/opengtoolkit/portIO/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3856/tests Modified Files: PORT IO Test.vi Log Message: Minor cleanups and making sure all VIs run in LabVIEW 6.0 and higher Index: PORT IO Test.vi =================================================================== RCS file: /cvsroot/opengtoolkit/portIO/tests/PORT IO Test.vi,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvsTWLLsn and /tmp/cvsJxHTXk differ |
From: Rolf K. <lab...@us...> - 2005-12-16 13:56:11
|
Update of /cvsroot/opengtoolkit/portIO In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3856 Modified Files: .cvsignore portio.spec Log Message: Minor cleanups and making sure all VIs run in LabVIEW 6.0 and higher Index: .cvsignore =================================================================== RCS file: /cvsroot/opengtoolkit/portIO/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** .cvsignore 5 Apr 2005 20:41:46 -0000 1.1 --- .cvsignore 16 Dec 2005 13:55:59 -0000 1.2 *************** *** 1,2 **** built ! *.ogb \ No newline at end of file --- 1,2 ---- built ! *.ogp \ No newline at end of file Index: portio.spec =================================================================== RCS file: /cvsroot/opengtoolkit/portIO/portio.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** portio.spec 8 Apr 2005 23:38:51 -0000 1.4 --- portio.spec 16 Dec 2005 13:55:59 -0000 1.5 *************** *** 38,42 **** [Platform] ! Exclusive_LabVIEW_Version= >=6.1 Exclusive_LabVIEW_System=All --- 38,42 ---- [Platform] ! Exclusive_LabVIEW_Version= >=6.0 Exclusive_LabVIEW_System=All |
From: Rolf K. <lab...@us...> - 2005-12-16 13:56:11
|
Update of /cvsroot/opengtoolkit/portIO/example In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3856/example Modified Files: BEEP Test Example.llb Log Message: Minor cleanups and making sure all VIs run in LabVIEW 6.0 and higher Index: BEEP Test Example.llb =================================================================== RCS file: /cvsroot/opengtoolkit/portIO/example/BEEP Test Example.llb,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsDD13Bq and /tmp/cvsCmdCti differ |
From: Rolf K. <lab...@us...> - 2005-12-16 13:47:03
|
Update of /cvsroot/opengtoolkit/picture/build_support In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2210/build_support Modified Files: picture.rev Log Message: Index: picture.rev =================================================================== RCS file: /cvsroot/opengtoolkit/picture/build_support/picture.rev,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** picture.rev 16 Dec 2005 13:40:27 -0000 1.1 --- picture.rev 16 Dec 2005 13:46:42 -0000 1.2 *************** *** 5,8 **** Status=OK Warnings=0 ! Log_File=/D/Projects/OpenG/opengtoolkit/CVS_Folders/picture/built/picture.log --- 5,8 ---- Status=OK Warnings=0 ! Log_File=/D/Projects/OpenG/opengtoolkit/picture/built/picture.log |
From: Rolf K. <lab...@us...> - 2005-12-16 13:46:17
|
Update of /cvsroot/opengtoolkit/picture In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2064 Modified Files: oglib_picture.spec Log Message: Index: oglib_picture.spec =================================================================== RCS file: /cvsroot/opengtoolkit/picture/oglib_picture.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** oglib_picture.spec 16 Dec 2005 13:40:27 -0000 1.2 --- oglib_picture.spec 16 Dec 2005 13:45:43 -0000 1.3 *************** *** 58,94 **** Replace Mode=Always ! Num Files=31 ! File 0=dir.mnu ! File 1=picture.llb/Draw Image from File__ogtk.vi ! File 2=picture.llb/VI Tree - picture__ogtk.vi ! File 3=clipbrd.llb/CLIP Close Clipboard__ogtk.vi ! File 4=clipbrd.llb/CLIP Copy Control Image__ogtk.vi ! File 5=clipbrd.llb/CLIP Copy Panel Image__ogtk.vi ! File 6=clipbrd.llb/CLIP Data Formats__ogtk.ctl ! File 7=clipbrd.llb/CLIP Empty Clipboard__ogtk.vi ! File 8=clipbrd.llb/CLIP Enum Formats__ogtk.vi ! File 9=clipbrd.llb/CLIP Get Available Formats__ogtk.vi ! File 10=clipbrd.llb/CLIP Handle Text__ogtk.vi ! File 11=clipbrd.llb/CLIP Open Clipboard__ogtk.vi ! File 12=clipbrd.llb/CLIP Read Data Handle__ogtk.vi ! File 13=clipbrd.llb/CLIP Read DIB__ogtk.vi ! File 14=clipbrd.llb/CLIP Read Text__ogtk.vi ! File 15=clipbrd.llb/CLIP Refnum__ogtk.ctl ! File 16=clipbrd.llb/CLIP Write Bitmap__ogtk.vi ! File 17=clipbrd.llb/CLIP Write Data Handle__ogtk.vi ! File 18=clipbrd.llb/CLIP Write DIB__ogtk.vi ! File 19=clipbrd.llb/CLIP Write Palette__ogtk.vi ! File 20=clipbrd.llb/CLIP Write Text__ogtk.vi ! File 21=clipbrd.llb/Clipboard Example__ogtk.vi ! File 22=clipbrd.llb/Clipboard Viewer__ogtk.vi ! File 23=clipbrd.llb/VI Tree - Clipboard__ogtk.vi ! File 24=bitmap.llb/BMP Attributes__ogtk.ctl ! File 25=bitmap.llb/BMP BitmapInfo__ogtk.ctl ! File 26=bitmap.llb/BMP Create DIB__ogtk.vi ! File 27=bitmap.llb/BMP Create Logical Palette__ogtk.vi ! File 28=bitmap.llb/BMP Flip and Pad for Picture Control__ogtk.vi ! File 29=bitmap.llb/BMP Get Header Info__ogtk.vi ! File 30=bitmap.llb/BMP Mask Shift Factor__ogtk.vi --- 58,93 ---- Replace Mode=Always ! Num Files=30 ! File 0=picture.llb/Draw Image from File__ogtk.vi ! File 1=picture.llb/VI Tree - picture__ogtk.vi ! File 2=clipbrd.llb/CLIP Close Clipboard__ogtk.vi ! File 3=clipbrd.llb/CLIP Copy Control Image__ogtk.vi ! File 4=clipbrd.llb/CLIP Copy Panel Image__ogtk.vi ! File 5=clipbrd.llb/CLIP Data Formats__ogtk.ctl ! File 6=clipbrd.llb/CLIP Empty Clipboard__ogtk.vi ! File 7=clipbrd.llb/CLIP Enum Formats__ogtk.vi ! File 8=clipbrd.llb/CLIP Get Available Formats__ogtk.vi ! File 9=clipbrd.llb/CLIP Handle Text__ogtk.vi ! File 10=clipbrd.llb/CLIP Open Clipboard__ogtk.vi ! File 11=clipbrd.llb/CLIP Read Data Handle__ogtk.vi ! File 12=clipbrd.llb/CLIP Read DIB__ogtk.vi ! File 13=clipbrd.llb/CLIP Read Text__ogtk.vi ! File 14=clipbrd.llb/CLIP Refnum__ogtk.ctl ! File 15=clipbrd.llb/CLIP Write Bitmap__ogtk.vi ! File 16=clipbrd.llb/CLIP Write Data Handle__ogtk.vi ! File 17=clipbrd.llb/CLIP Write DIB__ogtk.vi ! File 18=clipbrd.llb/CLIP Write Palette__ogtk.vi ! File 19=clipbrd.llb/CLIP Write Text__ogtk.vi ! File 20=clipbrd.llb/Clipboard Example__ogtk.vi ! File 21=clipbrd.llb/Clipboard Viewer__ogtk.vi ! File 22=clipbrd.llb/VI Tree - Clipboard__ogtk.vi ! File 23=bitmap.llb/BMP Attributes__ogtk.ctl ! File 24=bitmap.llb/BMP BitmapInfo__ogtk.ctl ! File 25=bitmap.llb/BMP Create DIB__ogtk.vi ! File 26=bitmap.llb/BMP Create Logical Palette__ogtk.vi ! File 27=bitmap.llb/BMP Flip and Pad for Picture Control__ogtk.vi ! File 28=bitmap.llb/BMP Get Header Info__ogtk.vi ! File 29=bitmap.llb/BMP Mask Shift Factor__ogtk.vi |
From: Rolf K. <lab...@us...> - 2005-12-16 13:42:33
|
Update of /cvsroot/opengtoolkit/picture/built/picture/picture.llb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv861/built/picture/picture.llb Removed Files: Draw Image from File__ogtk.vi VI Tree - picture__ogtk.vi Log Message: Removed built folder from CVS --- Draw Image from File__ogtk.vi DELETED --- --- VI Tree - picture__ogtk.vi DELETED --- |
From: Rolf K. <lab...@us...> - 2005-12-16 13:42:32
|
Update of /cvsroot/opengtoolkit/picture/built/picture In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv861/built/picture Removed Files: dir.mnu Log Message: Removed built folder from CVS --- dir.mnu DELETED --- |
From: Rolf K. <lab...@us...> - 2005-12-16 13:40:41
|
Update of /cvsroot/opengtoolkit/picture/build_support In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv381/build_support Added Files: Build Package (Proxy).vi Build SPEC file List from Dir.vi Call-Back VI - Rem namespace from Window Title.vi Update File Info in File Group Section.vi Update Spec File List (Proxy).vi Update Spec File List.vi picture.rev Log Message: Added package build infrastructure --- NEW FILE: Build SPEC file List from Dir.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Update Spec File List (Proxy).vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Build Package (Proxy).vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Update File Info in File Group Section.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: picture.rev --- [picture.oglib] Version=2.0.0 Build_Number=2 Build_Date="07.04.2005 19:11:07" Status=OK Warnings=0 Log_File=/D/Projects/OpenG/opengtoolkit/CVS_Folders/picture/built/picture.log --- NEW FILE: Call-Back VI - Rem namespace from Window Title.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Update Spec File List.vi --- (This appears to be a binary file; contents omitted.) |
From: Rolf K. <lab...@us...> - 2005-12-16 13:40:41
|
Update of /cvsroot/opengtoolkit/picture In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv381 Modified Files: .cvsignore oglib_picture.spec Added Files: build oglib_picture.vi oglib_picture.ogbld Log Message: Added package build infrastructure Index: .cvsignore =================================================================== RCS file: /cvsroot/opengtoolkit/picture/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** .cvsignore 14 Jul 2003 18:42:29 -0000 1.1 --- .cvsignore 16 Dec 2005 13:40:27 -0000 1.2 *************** *** 1 **** ! packaged \ No newline at end of file --- 1,2 ---- ! built ! *.ogp \ No newline at end of file Index: oglib_picture.spec =================================================================== RCS file: /cvsroot/opengtoolkit/picture/oglib_picture.spec,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** oglib_picture.spec 17 Jan 2005 07:27:35 -0000 1.1 --- oglib_picture.spec 16 Dec 2005 13:40:27 -0000 1.2 *************** *** 16,20 **** License=LGPL ! Copyright="2002 Rolf Kalbermatter, Jim Kring" Distribution="OpenG Toolkit" --- 16,20 ---- License=LGPL ! Copyright="2002-2005 Rolf Kalbermatter, Jim Kring" Distribution="OpenG Toolkit" *************** *** 31,35 **** [Dependencies] ! Requires="palette >= 2.0, file >= 2.0" AutoReqProv=FALSE --- 31,35 ---- [Dependencies] ! Requires="palette >= 2.0, file >= 2.0, error >= 2.0" AutoReqProv=FALSE *************** *** 38,42 **** [Platform] ! Exclusive_LabVIEW_Version= >=6.1 Exclusive_LabVIEW_System=All --- 38,42 ---- [Platform] ! Exclusive_LabVIEW_Version= >=6.0 Exclusive_LabVIEW_System=All *************** *** 58,65 **** Replace Mode=Always ! Num Files=2 File 0=dir.mnu ! File 1="picture.llb/Draw Image from File__ogtk.vi" --- 58,94 ---- Replace Mode=Always ! Num Files=31 File 0=dir.mnu ! File 1=picture.llb/Draw Image from File__ogtk.vi ! File 2=picture.llb/VI Tree - picture__ogtk.vi ! File 3=clipbrd.llb/CLIP Close Clipboard__ogtk.vi ! File 4=clipbrd.llb/CLIP Copy Control Image__ogtk.vi ! File 5=clipbrd.llb/CLIP Copy Panel Image__ogtk.vi ! File 6=clipbrd.llb/CLIP Data Formats__ogtk.ctl ! File 7=clipbrd.llb/CLIP Empty Clipboard__ogtk.vi ! File 8=clipbrd.llb/CLIP Enum Formats__ogtk.vi ! File 9=clipbrd.llb/CLIP Get Available Formats__ogtk.vi ! File 10=clipbrd.llb/CLIP Handle Text__ogtk.vi ! File 11=clipbrd.llb/CLIP Open Clipboard__ogtk.vi ! File 12=clipbrd.llb/CLIP Read Data Handle__ogtk.vi ! File 13=clipbrd.llb/CLIP Read DIB__ogtk.vi ! File 14=clipbrd.llb/CLIP Read Text__ogtk.vi ! File 15=clipbrd.llb/CLIP Refnum__ogtk.ctl ! File 16=clipbrd.llb/CLIP Write Bitmap__ogtk.vi ! File 17=clipbrd.llb/CLIP Write Data Handle__ogtk.vi ! File 18=clipbrd.llb/CLIP Write DIB__ogtk.vi ! File 19=clipbrd.llb/CLIP Write Palette__ogtk.vi ! File 20=clipbrd.llb/CLIP Write Text__ogtk.vi ! File 21=clipbrd.llb/Clipboard Example__ogtk.vi ! File 22=clipbrd.llb/Clipboard Viewer__ogtk.vi ! File 23=clipbrd.llb/VI Tree - Clipboard__ogtk.vi ! File 24=bitmap.llb/BMP Attributes__ogtk.ctl ! File 25=bitmap.llb/BMP BitmapInfo__ogtk.ctl ! File 26=bitmap.llb/BMP Create DIB__ogtk.vi ! File 27=bitmap.llb/BMP Create Logical Palette__ogtk.vi ! File 28=bitmap.llb/BMP Flip and Pad for Picture Control__ogtk.vi ! File 29=bitmap.llb/BMP Get Header Info__ogtk.vi ! File 30=bitmap.llb/BMP Mask Shift Factor__ogtk.vi *************** *** 74,76 **** Num Files=1 ! File 0=oglib_picture.mnu --- 103,105 ---- Num Files=1 ! File 0=oglib_picture.mnu \ No newline at end of file --- NEW FILE: oglib_picture.ogbld --- [General] # Project Root is optional. If it is not specified, it is="" # assumed to be the .deab file's parent directory="" Project Root="" # Build Root is optional. If it is not specified, it is="" # assumed to be the Project Root. Build Root may be either="" # an absolute path, or a path relative to the Project Root="" Build Root=built/picture # Source Root is optional. If it is not specified, it is="" # assumed to be the Project Root. Source Root may be either="" # an absolute path, or a path relative to the Project Root="" Source Root=source # Overwrite Existing Files specifies whether to overwrite="" # files in the build location. This is an optional. If it="" # is not specified, it is assumed to be FALSE="" Overwrite Existing Files=TRUE # If a Namespace is specified, all VIs and CTLs will be="" # "name magled" with the Namespace as a suffix. For="" # example, "MyVI.vi" with a Namespace of "MyApp" becomes="" # "MyVI__MyApp.vi" in the built software product.="" Namespace=ogtk ###########################################################="" # Top Level VIs specifies VIs whose hierarchies are to be="" # included in the build. Additionally, Top Level VIs will="" # be set as "Top-Level" in destination LLBs if the its="" # Destination is converted to an LLB or EXE. You can use="" # any keyname for Top Level VIs. Keynames for this section="" # are arbitrary.="" File Format Version=2.0.0 Log Dir="built" Log File="" Log File Suffix="" Include Help Files=FALSE Help File Dir="" Include Shared Libs=TRUE Shared Lib Dir="" Include External Subrs=FALSE External Subr Dir="" Include Hidden VIs=FALSE EXE Icon File="" New Build Root=FALSE Unsaved Changes MsgBox=FALSE Ambiguous VIs Dest Dir="" Call Pre-Build VI="" Call Post-Build VI="" Revision File=build_support/picture.rev Version VI Name="" Version Ctrl Name="" Apply New Password="" RemovePolyVIsAndTypedefs=FALSE Allow CBVI & Build Hierarchy Overlap=FALSE Call-Back VI 1="build_support/Call-Back VI - Rem namespace from Window Title.vi" [Top Level VIs] ###########################################################="" # Dynamic VIs specifies VIs whose hierarchies are to be="" # included in the build. Keynames for this section are="" # arbitrary="" VI 1="picture.llb/VI Tree - picture.vi" VI 2="clipbrd.llb/VI Tree - Clipboard.vi" [Dynamic VIs] ###########################################################="" # Destination sections should be named "Destination N", where="" # "N" is an integer. This allows you to specify multiple="" # Destination sections.="" [Exclude Lib Dirs from Build] LibDir 1=<application> [Destination 1] Source Dir=picture.llb Target Dir=picture.llb Convert Target to LLB=FALSE Convert Target to EXE=FALSE Remove Diagrams=FALSE Default Destination=FALSE Apply New Password="" Namespace="" [Destination 2] Source Dir=bitmap.llb Target Dir=bitmap.llb Convert Target to LLB=FALSE Convert Target to EXE=FALSE Remove Diagrams=FALSE Default Destination=FALSE Apply New Password="" Namespace="" [Destination 3] Source Dir=clipbrd.llb Target Dir=clipbrd.llb Convert Target to LLB=FALSE Convert Target to EXE=FALSE Remove Diagrams=FALSE Default Destination=FALSE Apply New Password="" Namespace="" --- NEW FILE: build oglib_picture.vi --- (This appears to be a binary file; contents omitted.) |
From: Rolf K. <lab...@us...> - 2005-12-16 13:40:41
|
Update of /cvsroot/opengtoolkit/picture/source/clipbrd.llb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv381/source/clipbrd.llb Modified Files: CLIP Get Available Formats.vi VI Tree - Clipboard.vi Log Message: Added package build infrastructure Index: CLIP Get Available Formats.vi =================================================================== RCS file: /cvsroot/opengtoolkit/picture/source/clipbrd.llb/CLIP Get Available Formats.vi,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsc9HxtR and /tmp/cvsLyUKSK differ Index: VI Tree - Clipboard.vi =================================================================== RCS file: /cvsroot/opengtoolkit/picture/source/clipbrd.llb/VI Tree - Clipboard.vi,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvspEDQCT and /tmp/cvsQwxJ7M differ |
From: Rolf K. <lab...@us...> - 2005-12-16 13:40:40
|
Update of /cvsroot/opengtoolkit/picture/built/picture/picture.llb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv381/built/picture/picture.llb Modified Files: Draw Image from File__ogtk.vi VI Tree - picture__ogtk.vi Log Message: Added package build infrastructure Index: Draw Image from File__ogtk.vi =================================================================== RCS file: /cvsroot/opengtoolkit/picture/built/picture/picture.llb/Draw Image from File__ogtk.vi,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs0HZRRN and /tmp/cvsQ4Gt2G differ Index: VI Tree - picture__ogtk.vi =================================================================== RCS file: /cvsroot/opengtoolkit/picture/built/picture/picture.llb/VI Tree - picture__ogtk.vi,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvszaL1hQ and /tmp/cvs9EWhyJ differ |
From: Rolf K. <lab...@us...> - 2005-12-16 13:38:18
|
Update of /cvsroot/opengtoolkit/picture/build_support In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32243/build_support Log Message: Directory /cvsroot/opengtoolkit/picture/build_support added to the repository |
From: Rolf K. <lab...@us...> - 2005-12-16 13:17:34
|
Update of /cvsroot/opengtoolkit/picture/RECT.llb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27573/RECT.llb Removed Files: RECT Get Control Screen Rect.vi RECT Get Pos+Bounds.vi RECT Move.vi RECT Set Rect.vi RECT Set bounds.vi RECT Set position.vi RECT bounds.ctl RECT position.ctl RECT rectangle.ctl Log Message: Moved rect library inside the source folder --- RECT Move.vi DELETED --- --- RECT bounds.ctl DELETED --- --- RECT Set bounds.vi DELETED --- --- RECT Set Rect.vi DELETED --- --- RECT position.ctl DELETED --- --- RECT Get Pos+Bounds.vi DELETED --- --- RECT Get Control Screen Rect.vi DELETED --- --- RECT Set position.vi DELETED --- --- RECT rectangle.ctl DELETED --- |
From: Rolf K. <lab...@us...> - 2005-12-16 13:17:21
|
Update of /cvsroot/opengtoolkit/picture/source/Bitmap.llb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27378/source/Bitmap.llb Added Files: BMP Attributes.ctl BMP BitmapInfo.ctl BMP Create DIB.vi BMP Create Logical Palette.vi BMP Flip and Pad for Picture Control.vi BMP Get Header Info.vi BMP Mask Shift Factor.vi Log Message: Added clipboard functions. Maybe we should create a new package instead for this but for the time being it is safely stored in the source code repository. --- NEW FILE: BMP Attributes.ctl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: BMP Create Logical Palette.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: BMP Create DIB.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: BMP Get Header Info.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: BMP Mask Shift Factor.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: BMP Flip and Pad for Picture Control.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: BMP BitmapInfo.ctl --- (This appears to be a binary file; contents omitted.) |
From: Rolf K. <lab...@us...> - 2005-12-16 13:17:19
|
Update of /cvsroot/opengtoolkit/picture/source/RECT.llb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27378/source/RECT.llb Added Files: RECT Get Control Screen Rect.vi RECT Get Pos+Bounds.vi RECT Move.vi RECT Set Rect.vi RECT Set bounds.vi RECT Set position.vi RECT bounds.ctl RECT position.ctl RECT rectangle.ctl Log Message: Added clipboard functions. Maybe we should create a new package instead for this but for the time being it is safely stored in the source code repository. --- NEW FILE: RECT Move.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: RECT bounds.ctl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: RECT Set bounds.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: RECT Set Rect.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: RECT position.ctl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: RECT Get Pos+Bounds.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: RECT Get Control Screen Rect.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: RECT Set position.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: RECT rectangle.ctl --- (This appears to be a binary file; contents omitted.) |
Update of /cvsroot/opengtoolkit/picture/source/clipbrd.llb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27378/source/clipbrd.llb Added Files: CLIP Close Clipboard.vi CLIP Copy Control Image.vi CLIP Copy Panel Image.vi CLIP Data Formats.ctl CLIP Empty Clipboard.vi CLIP Enum Formats.vi CLIP Get Available Formats.vi CLIP Handle Text.vi CLIP Open Clipboard.vi CLIP Read DIB.vi CLIP Read Data Handle.vi CLIP Read Text.vi CLIP Refnum.ctl CLIP Write Bitmap.vi CLIP Write DIB.vi CLIP Write Data Handle.vi CLIP Write Palette.vi CLIP Write Text.vi Clipboard Example.vi Clipboard Viewer.vi VI Tree - Clipboard.vi Log Message: Added clipboard functions. Maybe we should create a new package instead for this but for the time being it is safely stored in the source code repository. --- NEW FILE: CLIP Copy Panel Image.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: CLIP Enum Formats.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: CLIP Read Text.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: CLIP Close Clipboard.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: CLIP Get Available Formats.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: CLIP Read Data Handle.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: CLIP Data Formats.ctl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: CLIP Write Bitmap.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: CLIP Write Palette.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: CLIP Empty Clipboard.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: CLIP Refnum.ctl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: CLIP Write DIB.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: CLIP Open Clipboard.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: CLIP Copy Control Image.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Clipboard Viewer.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: CLIP Handle Text.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Clipboard Example.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: CLIP Write Data Handle.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: CLIP Read DIB.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: VI Tree - Clipboard.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: CLIP Write Text.vi --- (This appears to be a binary file; contents omitted.) |
From: Rolf K. <lab...@us...> - 2005-12-16 13:17:19
|
Update of /cvsroot/opengtoolkit/picture/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27378/source Removed Files: Draw Image from File.vi VI Tree - picture.vi Log Message: Added clipboard functions. Maybe we should create a new package instead for this but for the time being it is safely stored in the source code repository. --- Draw Image from File.vi DELETED --- --- VI Tree - picture.vi DELETED --- |
From: Rolf K. <lab...@us...> - 2005-12-16 13:17:18
|
Update of /cvsroot/opengtoolkit/picture/source/picture.llb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27378/source/picture.llb Added Files: Draw Image from File.vi VI Tree - picture.vi Log Message: Added clipboard functions. Maybe we should create a new package instead for this but for the time being it is safely stored in the source code repository. --- NEW FILE: Draw Image from File.vi --- (This appears to be a binary file; contents omitted.) --- NEW FILE: VI Tree - picture.vi --- (This appears to be a binary file; contents omitted.) |
From: Rolf K. <lab...@us...> - 2005-12-16 13:13:36
|
Update of /cvsroot/opengtoolkit/picture/source/RECT.llb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26639/RECT.llb Log Message: Directory /cvsroot/opengtoolkit/picture/source/RECT.llb added to the repository |
From: Rolf K. <lab...@us...> - 2005-12-16 13:13:19
|
Update of /cvsroot/opengtoolkit/picture/source/picture.llb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26592/picture.llb Log Message: Directory /cvsroot/opengtoolkit/picture/source/picture.llb added to the repository |
From: Rolf K. <lab...@us...> - 2005-12-16 13:12:59
|
Update of /cvsroot/opengtoolkit/picture/source/clipbrd.llb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26514/clipbrd.llb Log Message: Directory /cvsroot/opengtoolkit/picture/source/clipbrd.llb added to the repository |