From owner-freebsd-libh Sun Aug 11 6: 2: 4 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9803537B400 for ; Sun, 11 Aug 2002 06:01:58 -0700 (PDT) Received: from postal.sdsc.edu (postal.sdsc.edu [132.249.20.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2084343E3B for ; Sun, 11 Aug 2002 06:01:58 -0700 (PDT) (envelope-from okumoto@SDSC.EDU) Received: from multivac.sdsc.edu (IDENT:UH/L82abFs0eguMbSwObwSK/YCuERB2z@multivac.sdsc.edu [132.249.20.57]) by postal.sdsc.edu (8.11.6/8.11.6/server/44) with ESMTP id g7BD1r104413; Sun, 11 Aug 2002 06:01:53 -0700 (PDT) Received: by multivac (8.11.6+Sun/1.11-SolarisClient) id g7BD1pc16089; Sun, 11 Aug 2002 06:01:51 -0700 (PDT) To: The Anarcat Subject: Re: libh changes that I would like to get comments on. References: <20020810165454.GA34549@lenny.anarcat.ath.cx> Cc: freebsd-libh@FreeBSD.ORG From: Max Okumoto In-Reply-To: The Anarcat's message of "Sat, 10 Aug 2002 12:54:56 -0400" X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Date: 11 Aug 2002 06:01:51 -0700 Message-ID: Lines: 187 Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The Anarcat writes: > On Mon Jul 15, 2002 at 01:04:19AM -0700, Max Okumoto wrote: > > > > Hi guys, > > I would like your opinions on some changes that I > > would like to make to libh. I have built a small framework > > with just the UI section which is contained in the appended > > tar file. But, before I spend any more time in this I=20 > > would like people to look over the changes that I am purposing. > > > > o Makefile dependency generator > > I would like to start using 'bm' (build makefile) program > > that I put into the tools directory. This program generates > > a Makefile with all the dependencies. > > > > Note: The generated Makefile is modeled after Peter Miller's paper. > > http://www.canb.auug.org.au/~millerp/rmch/recu-make-cons-harm-old.html > > I'd be very careful with this. I haven't looked at the bm program, so > I don't know if it really works. > > libh Makefile system is really obscure and fragile. Yup, I kept running into problems with the Makefiles. While debuging the UI code, I usually had to delete all the object files, since very few of the dependancies where in the Makefile. This is why I put in the bm (BuildMakefile) program. It creates part of the Makefile and builds the dependancies. The result would replace most of the complex stuff that already exists. > But, as always, if it works, you can go ahead. ;) > > One quick note: the new system doesn't seem to build multiple back > ends as the old one did (none, text, graphics, text+graphics). This is > mandatory. We need a text-only backend for the floppies. I will look into static linking. With swig it shouldn't be that hard. I had assumed that if we used dynamic linking the over all system would be smaller. From my understanding we only need one static binary, and that would be the 'text only' version. (Unless you are building tcl without dynamic loading built in.) If the system running libh has graphic the Qt module can be loaded in dynamically. I think after I finish up with the UI code it really would make sense to move the rest of the modules in libh/lib/* over to swig. > BTW, it would be nice if you could share with us how the heck this bm > thing works. :) I'm quite impressed at the compile time of the demo > you attached to this mail. Of course there's the whole TCL thing > that's skipped and taken care of by SWIG, but still, it's a great > improvement. I really need to write a man page for it :-) If you have a chance please read Peter Miller's paper, it's the basis of my program. I will send a description to the list in a seperate email. > > o Restructure the Hui subsystem into three seperate libraries. > > lib/Hui would be a virtual base hierarchy. > > lib/HuiTv would be the TVision implimentation of Hui > > lib/HuiQt would be the Qt implimentation of Hui > > That looks ok. It is indeed very nice, and the whole thing looks much > more isolated than before. Good work! > > > o Use swig 1.3.13 to build tcl <--> C++ glue code instead of what > > we currently have. > > This supports dyanmic loading of the Hui code. My test > > tcl script uses a vanilla tclsh binary. It first checks > > if the shared lib exists and then loads the code. > > This is very nice. It is an additional dependency, but we didn't need > to re-invent the wheel and it's causing us problems. > > There is however, some problems in that area: I don't know exactly how > the old system worked. The whole principle of getting TCL into libh > was to control the execution of scripts using the safe > interpreters. How will this fit in the new scheme? What exactly is > swig replacing and how? The old system (hsystem) and Swig are equivalent. They both take in a description of the C++ interfaces and create wrappers functions that can be called from the tcl interpreters. libh/bin/HuiTv_shared/HuiTv.ii vs *.cd.cc The swig input file look very similar to a standard C++ header file, in fact it can be but it is usually better to only put in member functions that you really want to export to tcl. (Note: if you have worked with rpcgen it is pretty much the same thing) With the old system, the main function created the interpreter, registered the wrapper functions, and then entered the tcl main loop. The generation of the wrapper functions is the most complex part of the old system. *.cd.cc -> build_systems_*.cc -> tcl_interface_gen_* -> LibTclInterface_*.cc With swig the interface description is converted to wrapper functions. These functions follow the tcl conventions for dynamicly loadable modules, so its easy to load them in. *.ii -> *_warp.o Basicly swig replaces. libh/lib/tcl/* libh/include/tcl/* libh/lib/*/*.cd.cc libh/include/HSystem.* some stuff in libh/lib/common some stuff in libh/include/common > > As long as these questions aren't answered, I won't be comfortable > with SWIG in libh. > > Oh, and a last note.. I think tclh is still needed, even if we can > now load libh modules through tclsh. The problem is that dynamic > linking (ld.elf.so) simply *won't* be available on the floppies, > because of the space restriction. Everything will have to be > statically linked, I think, to obtain optimal space tradeoff. Unless you are building a new libc, tcl uses the dlopen(), so that won't be an issue. You do need a staticly linked tclsh8.3 binary. > I might be wrong here though. :) > > We'll need to run throughout space comparaison between both. > > Oh, and this also means that SWIG will be statically linked into libh > too? This might take up too much space too. We really have to examine > these issues. Only the warppers go into libraries. Nothing else is required. > > > I am still using 4.5-RELEASE as my devel enviorment, but I am using > > swig 1.3.13 from /usr/ports/devel/SWIG-devel. (Note: I modifed the > > Makefile to only build tcl SWIG_LANGUAGES=3Dtcl) > >=20 > > Max Okumoto > >=20 > > % gzcat libh.tar.gz | tar -xf - > [...] > > Whoohoo! This fixes the tvision bug #5!! (see the BUGS file). Oh yea, that didn't work because the refcounting stuff from the old system. the TVision application object needs to be destroied for the cleanup routines to be invoked. > > Wow max, this is really great. Dynamic loading and all, you've done a > great job. > > Now I feel very sorry I didn't check on this earlier. > > Where is that tarball from? Is that particular code from the branch? > How did you generate it? Its in my checked out copy of libh. I just haven't checked in the files since there needs to be alot of repo copies. And I wasn't sure how many files were going to be moved/renamed. I just wrote a script to tar up the stuff I wanted people to look at. > > I totally agree to integrate this into the main branch. I think we'll > have to be really careful though, merging not all at once, but slowly, > incrementally. > > I was thinking of releasing 0.2.3, but I think we'll jump straight to > 0.3, this is just too much. :) > > Yay again! > > A. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Sun Aug 11 6: 5:54 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCE4A37B400 for ; Sun, 11 Aug 2002 06:05:30 -0700 (PDT) Received: from postal.sdsc.edu (postal.sdsc.edu [132.249.20.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 561E943E42 for ; Sun, 11 Aug 2002 06:05:30 -0700 (PDT) (envelope-from okumoto@SDSC.EDU) Received: from multivac.sdsc.edu (IDENT:dIn8WaVvUuu/PuMtxuxlnmS7itaYtkPC@multivac.sdsc.edu [132.249.20.57]) by postal.sdsc.edu (8.11.6/8.11.6/server/44) with ESMTP id g7BD5T104635; Sun, 11 Aug 2002 06:05:29 -0700 (PDT) Received: by multivac (8.11.6+Sun/1.11-SolarisClient) id g7BD5R216109; Sun, 11 Aug 2002 06:05:27 -0700 (PDT) To: The Anarcat Cc: freebsd-libh@FreeBSD.ORG Subject: description of bm References: <20020810165454.GA34549@lenny.anarcat.ath.cx> From: Max Okumoto Date: 11 Aug 2002 06:05:27 -0700 In-Reply-To: Max Okumoto's message of "11 Aug 2002 06:01:51 -0700" Message-ID: Lines: 172 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Max Okumoto writes: > > The Anarcat writes: > > > > BTW, it would be nice if you could share with us how the heck this bm > > thing works. :) I'm quite impressed at the compile time of the demo > > you attached to this mail. Of course there's the whole TCL thing > > that's skipped and taken care of by SWIG, but still, it's a great > > improvement. > > I really need to write a man page for it :-) If you have a chance > please read Peter Miller's paper, it's the basis of my program. > I will send a description to the list in a seperate email. 0. Intro The bm (Build Makefile) program is used to help create a project wide Makefile. Using this project wide Makefile, only one instance of make is invoked, during the whole build process. The good thing about this is that all dependencies are seen by make, which means that file modification results in rebuilt of all dependent objects, and their intermediary files. In addition, since all the dependencies are contained in this file you can safely run make in parallel mode to maximal effect. (note: make -j4 seems to work best on my 2 processor machine) Please read the followin paper to understand the other advantages of a whole project makefile. http://www.canb.auug.org.au/~millerp/rmch/recu-make-cons-harm-old.html 1. Operation The Makefile at the top of the tree, libh/Makefile, drives the entire build process. It includes the makefile fragment generated by bm. 2. Inputs (module.m4 files) The input to bm is a set of module files which describe the contents of a directory, and the dependancies to other modules. Each module can ether be a library or a program. (note: shared libraries have the same features as a program.) %cat libh/lib/HuiTv/module.m4 library(HuiTv) # type of module cflags(-I/usr/local/include) # compiler flags used to comple # src files in this module ldflags(-L/usr/local/lib -ltvision) # linker flags used if any # program uses this module. cfile(HuiTv.cc) # list of src files. cfile(HuiTvApplication.cc) cfile(HuiTvButton.cc) ... % cat libh/bin/HuiTvTest/module.m4 program(HuiTvTest) # type of module ldflags(-L/usr/local/lib -ltcl83) # linker flags uselib(Hui) # depends on library(Hui) uselib(HuiTv) cfile(main.cc) # list of src files. 3. Output Makefile.hack After parsing all the modules files bm creates the file Makefile.hack. This file contains the rules to generate the object files, and depencencies computable from just the files and their respective types. #---------------------------------------- # build rules for lib/HuiTv #---------------------------------------- LIB_HuiTv_T = ${.OBJDIR}/lib/HuiTv/libHuiTv.a LIB_HuiTv_O = ${.OBJDIR}/lib/HuiTv/HuiTv.o [line truncated] LIB_HuiTv_D = ${.OBJDIR}/lib/HuiTv/HuiTv.d [line truncated] LIB_HuiTv_CFLAGS = -I/usr/local/include LIB_HuiTv_LDFLAGS = -L/usr/local/lib -ltvision LIB_HuiTv_CLEAN = ${.OBJDIR}/lib/HuiTv/HuiTv.d: ${.CURDIR}/lib/HuiTv/HuiTv.cc @echo build dependencies for lib/HuiTv/HuiTv.cc @${BUILD_DEP} ${.CURDIR}/ ${.OBJDIR}/ '${.OBJDIR}/lib/HuiTv/HuiTv.d ${.OBJDIR}/lib/HuiTv/HuiTv.o' ${.CURDIR}/lib/HuiTv/HuiTv.cc ${.OBJDIR}/lib/HuiTv/HuiTv.d ${CXX} ${CFLAGS} ${LIB_HuiTv_CFLAGS} ${.OBJDIR}/lib/HuiTv/HuiTv.o: ${.CURDIR}/lib/HuiTv/HuiTv.cc @echo compile lib/HuiTv/HuiTv.cc @${CXX} ${CFLAGS} ${LIB_HuiTv_CFLAGS} -o ${.OBJDIR}/lib/HuiTv/HuiTv.o -c ${.CURDIR}/lib/HuiTv/HuiTv.cc [lots of rules deleted] ${LIB_HuiTv_T}: ${LIB_HuiTv_D} ${LIB_HuiTv_O} ${LIB_HuiTv_T}: @echo archive $@ @rm -f $@ @${AR} cq $@ \ `lorder ${LIB_HuiTv_O} | tsort -q` @${RANLIB} $@ PROG_HuiTv_CLEAN: rm -f ${LIB_HuiTv_T} rm -f ${LIB_HuiTv_O} rm -f ${LIB_HuiTv_CLEAN} PROG_HuiTv_CLEAN_DEP: rm -f ${LIB_HuiTv_D} clean: PROG_HuiTv_CLEAN PROG_HuiTv_CLEAN_DEP clean_dep: PROG_HuiTv_CLEAN_DEP dep: ${LIB_HuiTv_D} .for DFILE in ${LIB_HuiTv_D} .if exists(${DFILE}) .include "${DFILE}" .endif .endfor #---------------------------------------- # build rules for bin/HuiTvTest #---------------------------------------- PROG_HuiTvTest_T = ${.OBJDIR}/bin/HuiTvTest/HuiTvTest PROG_HuiTvTest_O = ${.OBJDIR}/bin/HuiTvTest/main.o PROG_HuiTvTest_D = ${.OBJDIR}/bin/HuiTvTest/main.d PROG_HuiTvTest_CFLAGS = PROG_HuiTvTest_L = ${LIB_Hui_T} ${LIB_HuiTv_T} PROG_HuiTvTest_CLEAN = ${.OBJDIR}/bin/HuiTvTest/main.d: ${.CURDIR}/bin/HuiTvTest/main.cc @echo build dependencies for bin/HuiTvTest/main.cc @${BUILD_DEP} ${.CURDIR}/ ${.OBJDIR}/ '${.OBJDIR}/bin/HuiTvTest/main.d ${.OBJDIR}/bin/HuiTvTest/main.o' ${.CURDIR}/bin/HuiTvTest/main.cc ${.OBJDIR}/bin/HuiTvTest/main.d ${CXX} ${CFLAGS} ${PROG_HuiTvTest_CFLAGS} ${.OBJDIR}/bin/HuiTvTest/main.o: ${.CURDIR}/bin/HuiTvTest/main.cc @echo compile bin/HuiTvTest/main.cc @${CXX} ${CFLAGS} ${PROG_HuiTvTest_CFLAGS} -o ${.OBJDIR}/bin/HuiTvTest/main.o -c ${.CURDIR}/bin/HuiTvTest/main.cc ${PROG_HuiTvTest_T}: ${PROG_HuiTvTest_D} ${PROG_HuiTvTest_O} ${PROG_HuiTvTest_L} ${PROG_HuiTvTest_T}: @echo link $@ @rm -f $@ ${CXX} ${CFLAGS} -o $@ \ ${PROG_HuiTvTest_O} \ `lorder ${PROG_HuiTvTest_L} | tsort -q` \ ${LDFLAGS} -L/usr/local/lib -ltcl83 ${LIB_Hui_LDFLAGS} ${LIB_HuiTv_LDFLAGS} PROG_HuiTvTest_CLEAN: rm -f ${PROG_HuiTvTest_T} rm -f ${PROG_HuiTvTest_O} rm -f ${PROG_HuiTvTest_CLEAN} PROG_HuiTvTest_CLEAN_DEP: rm -f ${PROG_HuiTvTest_D} clean: PROG_HuiTvTest_CLEAN PROG_HuiTvTest_CLEAN_DEP clean_dep: PROG_HuiTvTest_CLEAN_DEP dep: ${PROG_HuiTvTest_D} targets: ${PROG_HuiTvTest_T} .for DFILE in ${PROG_HuiTvTest_D} .if exists(${DFILE}) .include "${DFILE}" .endif .endfor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Mon Aug 12 6: 7:29 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9002637B400 for ; Mon, 12 Aug 2002 06:07:28 -0700 (PDT) Received: from postal.sdsc.edu (postal.sdsc.edu [132.249.20.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2553543E75 for ; Mon, 12 Aug 2002 06:07:28 -0700 (PDT) (envelope-from okumoto@SDSC.EDU) Received: from multivac.sdsc.edu (IDENT:D6CQiXlTI3Eu7mOATHZzWqv/EIk4yZZ1@multivac.sdsc.edu [132.249.20.57]) by postal.sdsc.edu (8.11.6/8.11.6/server/44) with ESMTP id g7CD7N128429; Mon, 12 Aug 2002 06:07:24 -0700 (PDT) Received: by multivac (8.11.6+Sun/1.11-SolarisClient) id g7CD7Me03463; Mon, 12 Aug 2002 06:07:22 -0700 (PDT) To: freebsd-libh@FreeBSD.org Subject: Yea! I have code that allows for per window menus! From: Max Okumoto Date: 12 Aug 2002 06:07:22 -0700 Message-ID: Lines: 6 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi! I have some good news. It is possible to have a menu associated with a particular window. I have this working in the experimental branch that I have proposed a while back. Max Okumoto To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Mon Aug 12 6:17:38 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 526E637B400 for ; Mon, 12 Aug 2002 06:17:35 -0700 (PDT) Received: from mail2.qc.uunet.ca (mail2.qc.uunet.ca [198.168.54.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6278543E4A for ; Mon, 12 Aug 2002 06:17:34 -0700 (PDT) (envelope-from anarcat@anarcat.ath.cx) Received: from xtanbul (IDENT:506@[216.94.147.34]) by mail2.qc.uunet.ca (8.9.3/8.9.3) with ESMTP id JAA07468; Mon, 12 Aug 2002 09:17:28 -0400 Date: Mon, 12 Aug 2002 09:07:46 -0400 Subject: Re: Yea! I have code that allows for per window menus! Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) Cc: freebsd-libh@FreeBSD.org To: Max Okumoto From: Antoine Beaupre In-Reply-To: Message-Id: <7EF8F181-ADF4-11D6-BD85-0050E4A0BB3F@anarcat.ath.cx> Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.482) Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hmmm.. I don't recall that branch. Don't you have HUI_CLEANUP_X already? :) Very good news anyways. A. On Monday, August 12, 2002, at 09:07 AM, Max Okumoto wrote: > > Hi! I have some good news. It is possible to have a menu > associated with a particular window. I have this working > in the experimental branch that I have proposed a while back. > > Max Okumoto > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-libh" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Mon Aug 12 8:11: 8 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9059F37B400 for ; Mon, 12 Aug 2002 08:11:01 -0700 (PDT) Received: from mail2.qc.uunet.ca (mail2.qc.uunet.ca [198.168.54.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D47943E72 for ; Mon, 12 Aug 2002 08:11:00 -0700 (PDT) (envelope-from anarcat@anarcat.ath.cx) Received: from xtanbul (IDENT:506@[216.94.147.34]) by mail2.qc.uunet.ca (8.9.3/8.9.3) with ESMTP id LAA12000; Mon, 12 Aug 2002 11:10:56 -0400 Date: Mon, 12 Aug 2002 11:01:15 -0400 Subject: Re: libh changes that I would like to get comments on. Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) Cc: freebsd-libh@FreeBSD.ORG To: Max Okumoto From: Antoine Beaupre In-Reply-To: Message-Id: <5988A99A-AE04-11D6-BD85-0050E4A0BB3F@anarcat.ath.cx> Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.482) Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sunday, August 11, 2002, at 09:01 AM, Max Okumoto wrote: > The Anarcat writes: >> On Mon Jul 15, 2002 at 01:04:19AM -0700, Max Okumoto wrote: >>> >>> Hi guys, >>> I would like your opinions on some changes that I >>> would like to make to libh. I have built a small framework >>> with just the UI section which is contained in the appended >>> tar file. But, before I spend any more time in this I=20 >>> would like people to look over the changes that I am purposing. >>> >>> o Makefile dependency generator >>> I would like to start using 'bm' (build makefile) program >>> that I put into the tools directory. This program generates >>> a Makefile with all the dependencies. >>> >>> Note: The generated Makefile is modeled after Peter Miller's paper. >>> http://www.canb.auug.org.au/~millerp/rmch/recu-make-cons-harm- >>> old.html >> >> I'd be very careful with this. I haven't looked at the bm program, so >> I don't know if it really works. >> >> libh Makefile system is really obscure and fragile. > > Yup, I kept running into problems with the Makefiles. While > debuging the UI code, I usually had to delete all the object > files, since very few of the dependancies where in the Makefile. > > This is why I put in the bm (BuildMakefile) program. It creates > part of the Makefile and builds the dependancies. The result > would replace most of the complex stuff that already exists. I'm getting used to bm now. It looks ok. >> But, as always, if it works, you can go ahead. ;) >> >> One quick note: the new system doesn't seem to build multiple back >> ends as the old one did (none, text, graphics, text+graphics). This is >> mandatory. We need a text-only backend for the floppies. > > I will look into static linking. With swig it shouldn't > be that hard. I had assumed that if we used dynamic > linking the over all system would be smaller. Yes. But you need to link with pretty big libraries. libc is the first that comes to mind: -r--r--r-- 1 root wheel 579412 Jun 11 00:18 /usr/lib/libc.so.4 That's just too much for a floppy, especially when there's a lot of code in there that is simply not used. > From my understanding we only need one static binary, and that would > be the 'text only' version. (Unless you are building tcl without > dynamic loading built in.) If the system running libh has graphic > the Qt module can be loaded in dynamically. Well, I see it a little differently. I think we should be able to link anything we want statically, simply by setting NOSHARED=yes somewhere. It's a different issue than with *what* (qt, tvision, nothing) to link, IMHO. I really like the idea of choosing what gets compiled in and what doesn't, and the new build system shouldn't loose that. > I think after I finish up with the UI code it really would make sense > to move the rest of the modules in libh/lib/* over to swig. Of course. >> BTW, it would be nice if you could share with us how the heck this bm >> thing works. :) I'm quite impressed at the compile time of the demo >> you attached to this mail. Of course there's the whole TCL thing >> that's skipped and taken care of by SWIG, but still, it's a great >> improvement. > > I really need to write a man page for it :-) If you have a chance > please read Peter Miller's paper, it's the basis of my program. > I will send a description to the list in a seperate email. I think I read that paper. I do agree that recursive make is evil. :) >>> o Restructure the Hui subsystem into three seperate libraries. >>> lib/Hui would be a virtual base hierarchy. >>> lib/HuiTv would be the TVision implimentation of Hui >>> lib/HuiQt would be the Qt implimentation of Hui >> >> That looks ok. It is indeed very nice, and the whole thing looks much >> more isolated than before. Good work! >> >>> o Use swig 1.3.13 to build tcl <--> C++ glue code instead of what >>> we currently have. >>> This supports dyanmic loading of the Hui code. My test >>> tcl script uses a vanilla tclsh binary. It first checks >>> if the shared lib exists and then loads the code. >> >> This is very nice. It is an additional dependency, but we didn't need >> to re-invent the wheel and it's causing us problems. >> >> There is however, some problems in that area: I don't know exactly how >> the old system worked. The whole principle of getting TCL into libh >> was to control the execution of scripts using the safe >> interpreters. How will this fit in the new scheme? What exactly is >> swig replacing and how? > > The old system (hsystem) and Swig are equivalent. They both take > in a description of the C++ interfaces and create wrappers functions > that can be called from the tcl interpreters. > > libh/bin/HuiTv_shared/HuiTv.ii vs *.cd.cc > > The swig input file look very similar to a standard C++ header file, > in fact it can be but it is usually better to only put in member > functions that you really want to export to tcl. (Note: if you have > worked with rpcgen it is pretty much the same thing) > > With the old system, the main function created the interpreter, > registered the wrapper functions, and then entered the tcl main > loop. The generation of the wrapper functions is the most complex > part of the old system. > > *.cd.cc -> build_systems_*.cc -> tcl_interface_gen_* -> > LibTclInterface_*.cc > > With swig the interface description is converted to wrapper functions. > These functions follow the tcl conventions for dynamicly loadable > modules, so its easy to load them in. > > *.ii -> *_warp.o > > Basicly swig replaces. > libh/lib/tcl/* > libh/include/tcl/* > libh/lib/*/*.cd.cc > libh/include/HSystem.* > some stuff in libh/lib/common > some stuff in libh/include/common This is really nice. And I guess it means that libh won't have to be linked with SWIG itself. SWIG is just used in the build, right? >> As long as these questions aren't answered, I won't be comfortable >> with SWIG in libh. >> >> Oh, and a last note.. I think tclh is still needed, even if we can >> now load libh modules through tclsh. The problem is that dynamic >> linking (ld.elf.so) simply *won't* be available on the floppies, >> because of the space restriction. Everything will have to be >> statically linked, I think, to obtain optimal space tradeoff. > > Unless you are building a new libc, tcl uses the dlopen(), so > that won't be an issue. You do need a staticly linked tclsh8.3 > binary. Fine. >> I might be wrong here though. :) >> >> We'll need to run throughout space comparaison between both. >> >> Oh, and this also means that SWIG will be statically linked into libh >> too? This might take up too much space too. We really have to examine >> these issues. > > Only the warppers go into libraries. Nothing else is required. This is really marvelous. >> Wow max, this is really great. Dynamic loading and all, you've done a >> great job. >> >> Now I feel very sorry I didn't check on this earlier. >> >> Where is that tarball from? Is that particular code from the branch? >> How did you generate it? > > Its in my checked out copy of libh. I just haven't checked in the files > since there needs to be alot of repo copies. And I wasn't sure how many > files were going to be moved/renamed. Okay. Please provide a roadmap of how this change will have to go, which files will have to be merge/removed, from which branch, and which repo-copies will have to be done, I'll try to tackle this ASAP. > I just wrote a script to tar up the stuff I wanted people to look at. It would be nice to see it. ;) A. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Mon Aug 12 13: 1:23 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8642A37B405; Mon, 12 Aug 2002 13:01:08 -0700 (PDT) Received: from tomts9-srv.bellnexxia.net (tomts9.bellnexxia.net [209.226.175.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id B43D343E42; Mon, 12 Aug 2002 13:01:05 -0700 (PDT) (envelope-from hottymaria@gosympatico.ca) Received: from [209.226.175.136] by tomts9-srv.bellnexxia.net (InterMail vM.5.01.04.19 201-253-122-122-119-20020516) with SMTP id <20020812200119.KDYI12452.tomts9-srv.bellnexxia.net@[209.226.175.136]>; Mon, 12 Aug 2002 16:01:19 -0400 From: To: Subject: Hey, whats up? Date: Mon, 12 Aug 2002 16:01:51 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Message-Id: <20020812200119.KDYI12452.tomts9-srv.bellnexxia.net@[209.226.175.136]> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG

My buddies and I were average people, just like you...Then we had our great idea...
find young hot girls
and proposition them to fool around on video tape.
Armed with a camera, a smooth tongue, and a couple of bucks we have made quite a few interesting videos!
BEST OF ALL... MY SITE IS 100% FREE!! If this sounds like something of interest to you,
click here You will be glad you did.











If you never want to hear from me again, please click here and I will remove you from all future mailings.

----- Get your free WebMail account from Sympatico-Lycos at www.sympatico.ca ----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Mon Aug 12 13:41: 1 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C60A437B400 for ; Mon, 12 Aug 2002 13:40:58 -0700 (PDT) Received: from postal.sdsc.edu (postal.sdsc.edu [132.249.20.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 372CE43E65 for ; Mon, 12 Aug 2002 13:40:58 -0700 (PDT) (envelope-from okumoto@SDSC.EDU) Received: from multivac.sdsc.edu (IDENT:oDEUStiGjqF8oXMGR/2/fBVgpRTF/vYI@multivac.sdsc.edu [132.249.20.57]) by postal.sdsc.edu (8.11.6/8.11.6/server/44) with ESMTP id g7CKeq120337; Mon, 12 Aug 2002 13:40:52 -0700 (PDT) Received: by multivac (8.11.6+Sun/1.11-SolarisClient) id g7CKeon14134; Mon, 12 Aug 2002 13:40:50 -0700 (PDT) To: Antoine Beaupre Subject: Re: libh changes that I would like to get comments on. References: <5988A99A-AE04-11D6-BD85-0050E4A0BB3F@anarcat.ath.cx> Cc: freebsd-libh@FreeBSD.ORG From: Max Okumoto In-Reply-To: Antoine Beaupre's message of "Mon, 12 Aug 2002 11:01:15 -0400" X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Date: 12 Aug 2002 13:40:50 -0700 Message-ID: Lines: 57 Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Antoine Beaupre writes: > >> One quick note: the new system doesn't seem to build multiple back > >> ends as the old one did (none, text, graphics, text+graphics). This is > >> mandatory. We need a text-only backend for the floppies. > > > > I will look into static linking. With swig it shouldn't > > be that hard. I had assumed that if we used dynamic > > linking the over all system would be smaller. > > Yes. But you need to link with pretty big libraries. libc is the first > that comes to mind: > > -r--r--r-- 1 root wheel 579412 Jun 11 00:18 /usr/lib/libc.so.4 > > That's just too much for a floppy, especially when there's a lot of code > in there that is simply not used. > > > From my understanding we only need one static binary, and that would > > be the 'text only' version. (Unless you are building tcl without > > dynamic loading built in.) If the system running libh has graphic > > the Qt module can be loaded in dynamically. > > Well, I see it a little differently. I think we should be able to link > anything we want statically, simply by setting NOSHARED=yes somewhere. > > It's a different issue than with *what* (qt, tvision, nothing) to link, > IMHO. I really like the idea of choosing what gets compiled in and what > doesn't, and the new build system shouldn't loose that. I've just checked and its not much more effort to build the staticly like stuff. > > The old system (hsystem) and Swig are equivalent. They both take > > in a description of the C++ interfaces and create wrappers functions > > that can be called from the tcl interpreters. [stuff deleted] > This is really nice. And I guess it means that libh won't have to be > linked with SWIG itself. SWIG is just used in the build, right? > Right. There is alot less stuff that gets linked in compared to the old scheme. Alot of the Pointer stuff goes away. > Okay. Please provide a roadmap of how this change will have to go, which > files will have to be merge/removed, from which branch, and which > repo-copies will have to be done, I'll try to tackle this ASAP. I will write up a roadmap in a seperate email. Thanks for taking the time to looking this work. Max Okumoto To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Mon Aug 12 13:53: 8 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DA7B37B400 for ; Mon, 12 Aug 2002 13:53:07 -0700 (PDT) Received: from mail-out1.apple.com (mail-out1.apple.com [17.254.0.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0594C43E42 for ; Mon, 12 Aug 2002 13:53:05 -0700 (PDT) (envelope-from jkh@queasyweasel.com) Received: from mailgate1.apple.com (A17-128-100-225.apple.com [17.128.100.225]) by mail-out1.apple.com (8.11.3/8.11.3) with ESMTP id g7CKr4S17116 for ; Mon, 12 Aug 2002 13:53:04 -0700 (PDT) Received: from scv1.apple.com (scv1.apple.com) by mailgate1.apple.com (Content Technologies SMTPRS 4.2.1) with ESMTP id ; Mon, 12 Aug 2002 13:52:19 -0700 Received: from twogun (twogun.apple.com [17.202.45.118]) by scv1.apple.com (8.11.3/8.11.3) with ESMTP id g7CKqsb10320; Mon, 12 Aug 2002 13:52:56 -0700 (PDT) Date: Mon, 12 Aug 2002 13:53:30 -0700 Subject: Re: libh changes that I would like to get comments on. Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v543) Cc: Antoine Beaupre , freebsd-libh@FreeBSD.ORG To: Max Okumoto From: "Jordan K. Hubbard" In-Reply-To: Message-Id: <8E9C57AC-AE35-11D6-9DD1-000393038CC8@queasyweasel.com> Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.543) Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Monday, Aug 12, 2002, at 13:40 US/Pacific, Max Okumoto wrote: > I've just checked and its not much more effort to build the staticly > like stuff. Just remember that dlopen() doesn't work when you call it from a static binary since the dynamic library loading code isn't present. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Mon Aug 12 13:55:44 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC34937B400 for ; Mon, 12 Aug 2002 13:55:43 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89ECD43E6E for ; Mon, 12 Aug 2002 13:55:43 -0700 (PDT) (envelope-from okumoto@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3030) id D3E5D17404; Mon, 12 Aug 2002 15:55:42 -0500 (CDT) From: Max Okumoto Date: Mon, 12 Aug 2002 15:55:42 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: libh/tools/bm bm.1 Message-Id: <20020812205542.D3E5D17404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG okumoto 2002/08/12 15:55:42 CDT Added files: tools/bm bm.1 Log: Add some docs. It need to be formated as a man page. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Mon Aug 12 13:59: 3 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B10137B401 for ; Mon, 12 Aug 2002 13:58:57 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 288ED43E4A for ; Mon, 12 Aug 2002 13:58:57 -0700 (PDT) (envelope-from okumoto@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3030) id AB55117404; Mon, 12 Aug 2002 15:58:56 -0500 (CDT) From: Max Okumoto Date: Mon, 12 Aug 2002 15:58:56 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: libh/tools/bm Exceptions.hh BuildMake.cc BuildMake.hh Library.cc Library.hh MakeDependency.hh MakeVariable.hh Module.cc Module.hh ObjectCollection.cc ObjectCollection.hh Program.cc Program.hh TODO main.cc Message-Id: <20020812205856.AB55117404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG okumoto 2002/08/12 15:58:56 CDT Modified files: tools/bm BuildMake.cc BuildMake.hh Library.cc Library.hh MakeDependency.hh MakeVariable.hh Module.cc Module.hh ObjectCollection.cc ObjectCollection.hh Program.cc Program.hh TODO main.cc Added files: tools/bm Exceptions.hh Log: Reworked how Exceptions are handled in the code. Revision Changes Path 1.6 +55 -23 libh/tools/bm/BuildMake.cc 1.4 +28 -41 libh/tools/bm/BuildMake.hh 1.6 +28 -12 libh/tools/bm/Library.cc 1.4 +17 -31 libh/tools/bm/Library.hh 1.3 +4 -4 libh/tools/bm/MakeDependency.hh 1.3 +4 -4 libh/tools/bm/MakeVariable.hh 1.7 +24 -3 libh/tools/bm/Module.cc 1.7 +6 -53 libh/tools/bm/Module.hh 1.9 +122 -96 libh/tools/bm/ObjectCollection.cc 1.8 +10 -13 libh/tools/bm/ObjectCollection.hh 1.5 +100 -86 libh/tools/bm/Program.cc 1.6 +17 -28 libh/tools/bm/Program.hh 1.5 +0 -1 libh/tools/bm/TODO 1.5 +18 -13 libh/tools/bm/main.cc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Mon Aug 12 14:26:23 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B92337B400 for ; Mon, 12 Aug 2002 14:26:22 -0700 (PDT) Received: from postal.sdsc.edu (postal.sdsc.edu [132.249.20.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9981F43E4A for ; Mon, 12 Aug 2002 14:26:21 -0700 (PDT) (envelope-from okumoto@SDSC.EDU) Received: from multivac.sdsc.edu (IDENT:uzkoYO1f73W5BvNazCAs+IRnAxqfTswI@multivac.sdsc.edu [132.249.20.57]) by postal.sdsc.edu (8.11.6/8.11.6/server/44) with ESMTP id g7CLQH100392; Mon, 12 Aug 2002 14:26:17 -0700 (PDT) Received: by multivac (8.11.6+Sun/1.11-SolarisClient) id g7CLQFB24034; Mon, 12 Aug 2002 14:26:15 -0700 (PDT) To: "Jordan K. Hubbard" Cc: Antoine Beaupre , freebsd-libh@FreeBSD.ORG Subject: Re: libh changes that I would like to get comments on. References: <8E9C57AC-AE35-11D6-9DD1-000393038CC8@queasyweasel.com> From: Max Okumoto Date: 12 Aug 2002 14:26:15 -0700 In-Reply-To: "Jordan K. Hubbard"'s message of "Mon, 12 Aug 2002 13:53:30 -0700" Message-ID: Lines: 17 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Damn you are right. Just because you can build it doesn't mean you can use it :-( I will just have to build all of the binaries as Antoine wants. Should not be a problem. Thanks for the info. Max Okumoto "Jordan K. Hubbard" writes: > On Monday, Aug 12, 2002, at 13:40 US/Pacific, Max Okumoto wrote: > > I've just checked and its not much more effort to build the staticly > > like stuff. > > Just remember that dlopen() doesn't work when you call it from a static > binary since the dynamic library loading code isn't present. > > - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Mon Aug 12 15:55:35 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBE6237B400 for ; Mon, 12 Aug 2002 15:55:31 -0700 (PDT) Received: from postal.sdsc.edu (postal.sdsc.edu [132.249.20.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 493E543E3B for ; Mon, 12 Aug 2002 15:55:31 -0700 (PDT) (envelope-from okumoto@SDSC.EDU) Received: from multivac.sdsc.edu (IDENT:RI9sNxjBGJjYIHHsczO/7rvzgfIkND8M@multivac.sdsc.edu [132.249.20.57]) by postal.sdsc.edu (8.11.6/8.11.6/server/44) with ESMTP id g7CMtT118523; Mon, 12 Aug 2002 15:55:30 -0700 (PDT) Received: by multivac (8.11.6+Sun/1.11-SolarisClient) id g7CMtSI19073; Mon, 12 Aug 2002 15:55:28 -0700 (PDT) To: Antoine Beaupre Cc: freebsd-libh@FreeBSD.ORG Subject: Re: libh changes that I would like to get comments on. References: <5988A99A-AE04-11D6-BD85-0050E4A0BB3F@anarcat.ath.cx> From: Max Okumoto Date: 12 Aug 2002 15:55:27 -0700 In-Reply-To: Max Okumoto's message of "12 Aug 2002 13:40:50 -0700" Message-ID: Lines: 75 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Max Okumoto writes: > Antoine Beaupre writes: > > Okay. Please provide a roadmap of how this change will have to go, which > > files will have to be merge/removed, from which branch, and which > > repo-copies will have to be done, I'll try to tackle this ASAP. > > I will write up a roadmap in a seperate email. Thanks for taking the > time to looking this work. > > Max Okumoto Note: The following changes will not affect the current build. And only the tvision code is going in. I think a rewrite of the Qt code is really required so I will just re-implment it, instead of trying to force it to the new model. Stage 1: Merge in change to bm that I have done recently. Stage 2: Add Makefile.new and Makefile.bm. Both of which contain the bm related rules. The Makfile.new file will be moved into Makefile after we convert over the libraries. The old one can just call Makefile.new until then. Stage 3: Create the directories for the new lib and binaries libh/lib/Hui libh/lib/HuiTv libh/lib/HuiQt libh/bin/HuiTv_shared libh/bin/HuiTvTest Stage 4: Repo copy the following files into their new locations. cp lib/hui/Hui.cc lib/hui/Hui.cc cp lib/hui/HuiTVision.cc lib/HuiTv/HuiTv.cc cp lib/hui/HuiTVision_ButtonWidget.cc lib/HuiTv/HuiTvButton.cc cp lib/hui/HuiTVision_ButtonsGroupWidget.cc lib/HuiTv/HuiTvButtonsGroup.cc cp lib/hui/HuiTVision_CheckBoxesWidget.cc lib/HuiTv/HuiTvCheckBoxes.cc cp lib/hui/HuiTVision_ContainerWidget.cc lib/HuiTv/HuiTvContainer.cc cp lib/hui/HuiTVision_DialogWidget.cc lib/HuiTv/HuiTvDialog.cc cp lib/hui/HuiTVision_GroupWidget.cc lib/HuiTv/HuiTvGroup.cc cp lib/hui/HuiTVision_InputLineWidget.cc lib/HuiTv/HuiTvInputLine.cc cp lib/hui/HuiTVision_LabelWidget.cc lib/HuiTv/HuiTvLabel.cc cp lib/hui/HuiTVision_ListBoxWidget.cc lib/HuiTv/HuiTvListBox.cc cp lib/hui/HuiTVision_MenuBarWidget.cc lib/HuiTv/HuiTvMenuBar.cc cp lib/hui/HuiTVision_MenuButtonWidget.cc lib/HuiTv/HuiTvMenuButton.cc cp lib/hui/HuiTVision_MenuItemWidget.cc lib/HuiTv/HuiTvMenuItem.cc cp lib/hui/HuiTVision_MenuSeparatorWidget.cc lib/HuiTv/HuiTvMenuSeparator.cc cp lib/hui/HuiTVision_MenuSubmenuWidget.cc lib/HuiTv/HuiTvMenuSubmenu.cc cp lib/hui/HuiTVision_ProgressIndicatorWidget.cc lib/HuiTv/HuiTvProgressIndicator.cc cp lib/hui/HuiTVision_RadioMenuWidget.cc lib/HuiTv/HuiTvRadioMenu.cc cp lib/hui/HuiTVision_TextEditWidget.cc lib/HuiTv/HuiTvTextEdit.cc cp lib/hui/HuiTVision_TitledWidget.cc lib/HuiTv/HuiTvEmbedded.cc cp lib/hui/HuiTVision_ToplevelWidget.cc lib/HuiTv/HuiTvToplevel.cc cp lib/hui/HuiTVision_Widget.cc lib/HuiTv/HuiTvWidget.cc cp lib/hui/HuiTVision_WindowWidget.cc lib/HuiTv/HuiTvWindow.cc cp include/hui/Dim.hh lib/Hui/Dim.hh cp include/hui/Hui.hh lib/Hui/Hui.hh cp include/hui/ProgressIndicatorHui.hh lib/Hui/HuiProgressIndicator.hh cp include/hui/HuiTVision.hh lib/HuiTv/HuiTv.hh Stage: 5 Check in the new files lib/Hui/* and lib/HuiTv/*. Stage: 6 Add the module.m4 files to their respective directories. Stage: 7 Rest. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Mon Aug 12 16:40:42 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F18D37B400 for ; Mon, 12 Aug 2002 16:40:41 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0773743E4A for ; Mon, 12 Aug 2002 16:40:41 -0700 (PDT) (envelope-from okumoto@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3030) id 4A26417404; Mon, 12 Aug 2002 18:40:30 -0500 (CDT) From: Max Okumoto Date: Mon, 12 Aug 2002 18:40:30 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: libh Makefile.bm Makefile.new Message-Id: <20020812234030.4A26417404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG okumoto 2002/08/12 18:40:30 CDT Added files: . Makefile.bm Makefile.new Log: Add bm Makefiles To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Tue Aug 13 3: 6:52 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 72FB237B400 for ; Tue, 13 Aug 2002 03:06:51 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F3E943E6A for ; Tue, 13 Aug 2002 03:06:51 -0700 (PDT) (envelope-from okumoto@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3030) id AF67917404; Tue, 13 Aug 2002 05:06:50 -0500 (CDT) From: Max Okumoto Date: Tue, 13 Aug 2002 05:06:50 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: libh/tools/scripts build_dep Message-Id: <20020813100650.AF67917404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG okumoto 2002/08/13 05:06:50 CDT Modified files: tools/scripts build_dep Log: Update scripts to be compatable with new version of bm. Revision Changes Path 1.5 +29 -22 libh/tools/scripts/build_dep To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Tue Aug 13 3: 8:42 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2133137B4BD for ; Tue, 13 Aug 2002 03:08:40 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id D657243E65 for ; Tue, 13 Aug 2002 03:08:39 -0700 (PDT) (envelope-from okumoto@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3030) id 8135517404; Tue, 13 Aug 2002 05:08:39 -0500 (CDT) From: Max Okumoto Date: Tue, 13 Aug 2002 05:08:39 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: libh module.m4 libh/bin module.m4 libh/bin/HuiTvTest module.m4 libh/bin/HuiTv_shared module.m4 libh/lib module.m4 libh/lib/Hui module.m4 libh/lib/HuiQt module.m4 libh/lib/HuiTv module.m4 Message-Id: <20020813100839.8135517404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG okumoto 2002/08/13 05:08:39 CDT Added files: . module.m4 bin module.m4 bin/HuiTvTest module.m4 bin/HuiTv_shared module.m4 lib module.m4 lib/Hui module.m4 lib/HuiQt module.m4 lib/HuiTv module.m4 Log: Add module.m4 files for bm. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Tue Aug 13 13:53:39 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E7A137B400 for ; Tue, 13 Aug 2002 13:53:35 -0700 (PDT) Received: from postal.sdsc.edu (postal.sdsc.edu [132.249.20.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C1E743E6A for ; Tue, 13 Aug 2002 13:53:35 -0700 (PDT) (envelope-from okumoto@SDSC.EDU) Received: from multivac.sdsc.edu (IDENT:Kfknlhjam7vybwhwxbj7vmehGQuzDH8o@multivac.sdsc.edu [132.249.20.57]) by postal.sdsc.edu (8.11.6/8.11.6/server/44) with ESMTP id g7DKrU110216; Tue, 13 Aug 2002 13:53:30 -0700 (PDT) Received: by multivac (8.11.6+Sun/1.11-SolarisClient) id g7DKrS100724; Tue, 13 Aug 2002 13:53:28 -0700 (PDT) To: Antoine Beaupre Cc: freebsd-libh@FreeBSD.ORG Subject: roadmap of adding Hui code References: <5988A99A-AE04-11D6-BD85-0050E4A0BB3F@anarcat.ath.cx> From: Max Okumoto Date: 13 Aug 2002 13:53:28 -0700 In-Reply-To: Max Okumoto's message of "12 Aug 2002 15:55:27 -0700" Message-ID: Lines: 73 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Max Okumoto writes: > Note: The following changes will not affect the current build. And > only the tvision code is going in. I think a rewrite of the Qt code > is really required so I will just re-implment it, instead of trying > to force it to the new model. > > Stage 1: Merge in change to bm that I have done recently. Done. > > Stage 2: Add Makefile.new and Makefile.bm. Both of which contain the > bm related rules. The Makfile.new file will be moved into > Makefile after we convert over the libraries. The old one > can just call Makefile.new until then. Done. > Stage 3: Create the directories for the new lib and binaries > libh/lib/Hui > libh/lib/HuiTv > libh/lib/HuiQt > > libh/bin/HuiTv_shared > libh/bin/HuiTvTest Done. > Stage: 6 > Add the module.m4 files to their respective directories. Done. > Stage 4: > Repo copy the following files into their new locations. > > cp lib/hui/Hui.cc lib/hui/Hui.cc > > cp lib/hui/HuiTVision.cc lib/HuiTv/HuiTv.cc > cp lib/hui/HuiTVision_ButtonWidget.cc lib/HuiTv/HuiTvButton.cc > cp lib/hui/HuiTVision_ButtonsGroupWidget.cc lib/HuiTv/HuiTvButtonsGroup.cc > cp lib/hui/HuiTVision_CheckBoxesWidget.cc lib/HuiTv/HuiTvCheckBoxes.cc > cp lib/hui/HuiTVision_ContainerWidget.cc lib/HuiTv/HuiTvContainer.cc > cp lib/hui/HuiTVision_DialogWidget.cc lib/HuiTv/HuiTvDialog.cc > cp lib/hui/HuiTVision_GroupWidget.cc lib/HuiTv/HuiTvGroup.cc > cp lib/hui/HuiTVision_InputLineWidget.cc lib/HuiTv/HuiTvInputLine.cc > cp lib/hui/HuiTVision_LabelWidget.cc lib/HuiTv/HuiTvLabel.cc > cp lib/hui/HuiTVision_ListBoxWidget.cc lib/HuiTv/HuiTvListBox.cc > cp lib/hui/HuiTVision_MenuBarWidget.cc lib/HuiTv/HuiTvMenuBar.cc > cp lib/hui/HuiTVision_MenuButtonWidget.cc lib/HuiTv/HuiTvMenuButton.cc > cp lib/hui/HuiTVision_MenuItemWidget.cc lib/HuiTv/HuiTvMenuItem.cc > cp lib/hui/HuiTVision_MenuSeparatorWidget.cc lib/HuiTv/HuiTvMenuSeparator.cc > cp lib/hui/HuiTVision_MenuSubmenuWidget.cc lib/HuiTv/HuiTvMenuSubmenu.cc > cp lib/hui/HuiTVision_ProgressIndicatorWidget.cc lib/HuiTv/HuiTvProgressIndicator.cc > cp lib/hui/HuiTVision_RadioMenuWidget.cc lib/HuiTv/HuiTvRadioMenu.cc > cp lib/hui/HuiTVision_TextEditWidget.cc lib/HuiTv/HuiTvTextEdit.cc > cp lib/hui/HuiTVision_TitledWidget.cc lib/HuiTv/HuiTvEmbedded.cc > cp lib/hui/HuiTVision_ToplevelWidget.cc lib/HuiTv/HuiTvToplevel.cc > cp lib/hui/HuiTVision_Widget.cc lib/HuiTv/HuiTvWidget.cc > cp lib/hui/HuiTVision_WindowWidget.cc lib/HuiTv/HuiTvWindow.cc > > cp include/hui/Dim.hh lib/Hui/Dim.hh > cp include/hui/Hui.hh lib/Hui/Hui.hh > cp include/hui/ProgressIndicatorHui.hh lib/Hui/HuiProgressIndicator.hh > cp include/hui/HuiTVision.hh lib/HuiTv/HuiTv.hh > > > Stage: 5 > Check in the new files lib/Hui/* and lib/HuiTv/*. > > > Stage: 7 > Rest. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Wed Aug 14 13:15:42 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8847037B400 for ; Wed, 14 Aug 2002 13:15:41 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5382043E75 for ; Wed, 14 Aug 2002 13:15:41 -0700 (PDT) (envelope-from okumoto@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3030) id 578F417404; Wed, 14 Aug 2002 15:15:40 -0500 (CDT) From: Max Okumoto Date: Wed, 14 Aug 2002 15:15:40 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: libh Makefile.new libh/tools/bm ObjectCollection.cc Message-Id: <20020814201540.578F417404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG okumoto 2002/08/14 15:15:40 CDT Modified files: . Makefile.new tools/bm ObjectCollection.cc Log: Add SWIG_FLAGS to build system. Revision Changes Path 1.2 +6 -4 libh/Makefile.new 1.10 +2 -2 libh/tools/bm/ObjectCollection.cc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Wed Aug 14 14:42:49 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6EF1D37B400 for ; Wed, 14 Aug 2002 14:42:47 -0700 (PDT) Received: from aeimail.aei.ca (aeimail.aei.ca [206.123.6.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3CD743E65 for ; Wed, 14 Aug 2002 14:42:46 -0700 (PDT) (envelope-from anarcat@anarcat.ath.cx) Received: from shall.anarcat.ath.cx (cya4newc88wrgvut@dsl-59-246.aei.ca [216.221.59.246]) by aeimail.aei.ca (8.11.6/8.10.1) with ESMTP id g7ELgd528674; Wed, 14 Aug 2002 17:42:40 -0400 (EDT) Received: from lenny.anarcat.ath.cx (lenny.anarcat.ath.cx [192.168.0.4]) by shall.anarcat.ath.cx (Postfix) with SMTP id C0D17425; Wed, 14 Aug 2002 17:43:55 -0400 (EDT) Received: by lenny.anarcat.ath.cx (sSMTP sendmail emulation); Wed, 14 Aug 2002 17:39:08 -0400 Date: Wed, 14 Aug 2002 17:39:08 -0400 From: The Anarcat To: Max Okumoto Cc: libh@freebsd.org Subject: headers in a seperate include directory Message-ID: <20020814213908.GA13108@lenny.anarcat.ath.cx> References: <9E88E35A-AFC3-11D6-9750-0050E4A0BB3F@anarcat.ath.cx> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="vkogqOf2sHV7VnPd" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.1i Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --vkogqOf2sHV7VnPd Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable I think the header files were moved by Alexander when he hooked up the multi-target build (text/graphics/text+graphics). It probably eased the way the includes path were hacked.=20 I don't mind putting all this back the usual way, so I'm going to proceed with the repo-copy you requested. Sorry for delaying this again. ;) A --=20 =46rom the age of uniformity, from the age of solitude, from the age of Big Brother, from the age of doublethink - greetings! --vkogqOf2sHV7VnPd Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9Ws37ttcWHAnWiGcRAr/HAJ46CWkutDlxYMUe8gB+hpoNE7CMPgCgmfxu SyFaB9qzwKXDn6pk6Vr785k= =2uMv -----END PGP SIGNATURE----- --vkogqOf2sHV7VnPd-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Wed Aug 14 14:48: 1 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E93C337B400 for ; Wed, 14 Aug 2002 14:47:59 -0700 (PDT) Received: from postal.sdsc.edu (postal.sdsc.edu [132.249.20.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B7C543E42 for ; Wed, 14 Aug 2002 14:47:59 -0700 (PDT) (envelope-from okumoto@SDSC.EDU) Received: from multivac.sdsc.edu (IDENT:WYZwaE7O8LQ8Ihf7o0yXOIrA3H6meWKF@multivac.sdsc.edu [132.249.20.57]) by postal.sdsc.edu (8.11.6/8.11.6/server/44) with ESMTP id g7ELls125842; Wed, 14 Aug 2002 14:47:54 -0700 (PDT) Received: by multivac (8.11.6+Sun/1.11-SolarisClient) id g7ELlqR05848; Wed, 14 Aug 2002 14:47:52 -0700 (PDT) To: The Anarcat Cc: libh@freebsd.org Subject: Re: headers in a seperate include directory References: <9E88E35A-AFC3-11D6-9750-0050E4A0BB3F@anarcat.ath.cx> <20020814213908.GA13108@lenny.anarcat.ath.cx> From: Max Okumoto Date: 14 Aug 2002 14:47:52 -0700 In-Reply-To: The Anarcat's message of "Wed, 14 Aug 2002 17:39:08 -0400" Message-ID: Lines: 21 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Cool! Max Okumoto The Anarcat writes: > --vkogqOf2sHV7VnPd > Content-Type: text/plain; charset=us-ascii > Content-Disposition: inline > Content-Transfer-Encoding: quoted-printable > > I think the header files were moved by Alexander when he hooked up the > multi-target build (text/graphics/text+graphics). It probably eased > the way the includes path were hacked.=20 > > I don't mind putting all this back the usual way, so I'm going to > proceed with the repo-copy you requested. > > Sorry for delaying this again. ;) > > A To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Wed Aug 14 15: 7:58 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6D4A37B400 for ; Wed, 14 Aug 2002 15:07:56 -0700 (PDT) Received: from aeimail.aei.ca (aeimail.aei.ca [206.123.6.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1CBD43E6A for ; Wed, 14 Aug 2002 15:07:55 -0700 (PDT) (envelope-from anarcat@anarcat.ath.cx) Received: from shall.anarcat.ath.cx (0y7roq9o5tbyj5o6@dsl-59-246.aei.ca [216.221.59.246]) by aeimail.aei.ca (8.11.6/8.10.1) with ESMTP id g7EM7t506885 for ; Wed, 14 Aug 2002 18:07:55 -0400 (EDT) Received: from lenny.anarcat.ath.cx (lenny.anarcat.ath.cx [192.168.0.4]) by shall.anarcat.ath.cx (Postfix) with SMTP id 184C91CE for ; Wed, 14 Aug 2002 18:09:12 -0400 (EDT) Received: by lenny.anarcat.ath.cx (sSMTP sendmail emulation); Wed, 14 Aug 2002 18:04:24 -0400 Date: Wed, 14 Aug 2002 18:04:24 -0400 From: The Anarcat To: libh@freebsd.org Subject: HEADS UP: bumpy ride ahead Message-ID: <20020814220424.GB13108@lenny.anarcat.ath.cx> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="lEGEL1/lMxI0MVQ2" Content-Disposition: inline User-Agent: Mutt/1.5.1i Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --lEGEL1/lMxI0MVQ2 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable I'm going to do a few repo copies. This might break the build. This is to allow Max to do his evil cleanups. :) I'll post a reply when I'll be done with the repo copies. A. --=20 =46rom the age of uniformity, from the age of solitude, from the age of Big Brother, from the age of doublethink - greetings! --lEGEL1/lMxI0MVQ2 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9WtPmttcWHAnWiGcRAp4ZAJ9nFSuWoi19JhxkbubENlUfimULMACeNkWb STKn1Cs21h0ChQdNthspcYU= =bbqr -----END PGP SIGNATURE----- --lEGEL1/lMxI0MVQ2-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Wed Aug 14 15:17: 8 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA41637B400 for ; Wed, 14 Aug 2002 15:17:07 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7AF743E70 for ; Wed, 14 Aug 2002 15:17:07 -0700 (PDT) (envelope-from antoine@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3028) id 1E8DC17404; Wed, 14 Aug 2002 17:17:07 -0500 (CDT) From: Antoine Beaupré Date: Wed, 14 Aug 2002 17:17:07 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: CVSROOT access Message-Id: <20020814221707.1E8DC17404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG antoine 2002/08/14 17:17:07 CDT Modified files: . access Log: lock the tree while I do some repo-copy magic Revision Changes Path 1.15 +6 -6 CVSROOT/access To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Wed Aug 14 15:48: 5 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A95E37B400 for ; Wed, 14 Aug 2002 15:48:04 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3843B43E4A for ; Wed, 14 Aug 2002 15:48:04 -0700 (PDT) (envelope-from antoine@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3028) id 91DF717404; Wed, 14 Aug 2002 17:48:03 -0500 (CDT) From: Antoine Beaupré Date: Wed, 14 Aug 2002 17:48:03 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: CVSROOT access Message-Id: <20020814224803.91DF717404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG antoine 2002/08/14 17:48:03 CDT Modified files: . access Log: finished with repo-copies, you're all free to go now Revision Changes Path 1.16 +6 -6 CVSROOT/access To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Wed Aug 14 15:49:25 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 060EE37B400 for ; Wed, 14 Aug 2002 15:49:23 -0700 (PDT) Received: from aeimail.aei.ca (aeimail.aei.ca [206.123.6.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4410543E6E for ; Wed, 14 Aug 2002 15:49:22 -0700 (PDT) (envelope-from anarcat@anarcat.ath.cx) Received: from shall.anarcat.ath.cx (2nl0a2x1801wfj7y@dsl-59-246.aei.ca [216.221.59.246]) by aeimail.aei.ca (8.11.6/8.10.1) with ESMTP id g7EMnL518735; Wed, 14 Aug 2002 18:49:21 -0400 (EDT) Received: from lenny.anarcat.ath.cx (lenny.anarcat.ath.cx [192.168.0.4]) by shall.anarcat.ath.cx (Postfix) with SMTP id 87BFF1CE; Wed, 14 Aug 2002 18:50:38 -0400 (EDT) Received: by lenny.anarcat.ath.cx (sSMTP sendmail emulation); Wed, 14 Aug 2002 18:45:51 -0400 Date: Wed, 14 Aug 2002 18:45:50 -0400 From: The Anarcat To: Max Okumoto Cc: freebsd-libh@FreeBSD.ORG Subject: Re: roadmap of adding Hui code Message-ID: <20020814224550.GE13108@lenny.anarcat.ath.cx> Mail-Followup-To: The Anarcat , Max Okumoto , freebsd-libh@FreeBSD.ORG References: <5988A99A-AE04-11D6-BD85-0050E4A0BB3F@anarcat.ath.cx> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="LSp5EJdfMPwZcMS1" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.1i Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --LSp5EJdfMPwZcMS1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Should I cvs remove the old files or should they co-exist with the new ones? It would be cleaner to remove them, although it will break the build. A. > > Stage 4: > > Repo copy the following files into their new locations. > >=20 > > cp lib/hui/Hui.cc lib/hui/Hui.cc > >=20 > > cp lib/hui/HuiTVision.cc lib/HuiTv/HuiTv.cc > > cp lib/hui/HuiTVision_ButtonWidget.cc lib/HuiTv/HuiTvButton.cc > > cp lib/hui/HuiTVision_ButtonsGroupWidget.cc lib/HuiTv/HuiTvButtonsGroup= .cc > > cp lib/hui/HuiTVision_CheckBoxesWidget.cc lib/HuiTv/HuiTvCheckBoxes.cc > > cp lib/hui/HuiTVision_ContainerWidget.cc lib/HuiTv/HuiTvContainer.cc > > cp lib/hui/HuiTVision_DialogWidget.cc lib/HuiTv/HuiTvDialog.cc > > cp lib/hui/HuiTVision_GroupWidget.cc lib/HuiTv/HuiTvGroup.cc > > cp lib/hui/HuiTVision_InputLineWidget.cc lib/HuiTv/HuiTvInputLine.cc > > cp lib/hui/HuiTVision_LabelWidget.cc lib/HuiTv/HuiTvLabel.cc > > cp lib/hui/HuiTVision_ListBoxWidget.cc lib/HuiTv/HuiTvListBox.cc > > cp lib/hui/HuiTVision_MenuBarWidget.cc lib/HuiTv/HuiTvMenuBar.cc > > cp lib/hui/HuiTVision_MenuButtonWidget.cc lib/HuiTv/HuiTvMenuButton.cc > > cp lib/hui/HuiTVision_MenuItemWidget.cc lib/HuiTv/HuiTvMenuItem.cc > > cp lib/hui/HuiTVision_MenuSeparatorWidget.cc lib/HuiTv/HuiTvMenuSeparat= or.cc > > cp lib/hui/HuiTVision_MenuSubmenuWidget.cc lib/HuiTv/HuiTvMenuSubmenu.cc > > cp lib/hui/HuiTVision_ProgressIndicatorWidget.cc lib/HuiTv/HuiTvProgres= sIndicator.cc > > cp lib/hui/HuiTVision_RadioMenuWidget.cc lib/HuiTv/HuiTvRadioMenu.cc > > cp lib/hui/HuiTVision_TextEditWidget.cc lib/HuiTv/HuiTvTextEdit.cc > > cp lib/hui/HuiTVision_TitledWidget.cc lib/HuiTv/HuiTvEmbedded.cc > > cp lib/hui/HuiTVision_ToplevelWidget.cc lib/HuiTv/HuiTvToplevel.cc > > cp lib/hui/HuiTVision_Widget.cc lib/HuiTv/HuiTvWidget.cc > > cp lib/hui/HuiTVision_WindowWidget.cc lib/HuiTv/HuiTvWindow.cc > >=20 > > cp include/hui/Dim.hh lib/Hui/Dim.hh > > cp include/hui/Hui.hh lib/Hui/Hui.hh > > cp include/hui/ProgressIndicatorHui.hh lib/Hui/HuiProgressIndicator.hh > > cp include/hui/HuiTVision.hh lib/HuiTv/HuiTv.hh --=20 The idea that Bill Gates has appeared like a knight in shining armour to lead all customers out of a mire of technological chaos neatly ignores the fact that it was he who, by peddling second-rate technology, led them into it in the first place. - Douglas Adams (1952-2001) --LSp5EJdfMPwZcMS1 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9Wt2dttcWHAnWiGcRAonuAJ4qlgnIVSgeIUVNZmlNtfELWJod8wCffp9v o8Ec41SqeVv8a3BrAijpI/0= =rEoo -----END PGP SIGNATURE----- --LSp5EJdfMPwZcMS1-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Wed Aug 14 16: 2:35 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3E8E37B400 for ; Wed, 14 Aug 2002 16:02:32 -0700 (PDT) Received: from aeimail.aei.ca (aeimail.aei.ca [206.123.6.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A5B343E6A for ; Wed, 14 Aug 2002 16:02:32 -0700 (PDT) (envelope-from anarcat@anarcat.ath.cx) Received: from shall.anarcat.ath.cx (9ii5sg7gaubyg7ds@dsl-59-246.aei.ca [216.221.59.246]) by aeimail.aei.ca (8.11.6/8.10.1) with ESMTP id g7EN2H522362; Wed, 14 Aug 2002 19:02:18 -0400 (EDT) Received: from lenny.anarcat.ath.cx (lenny.anarcat.ath.cx [192.168.0.4]) by shall.anarcat.ath.cx (Postfix) with SMTP id BC9D91CE; Wed, 14 Aug 2002 19:03:34 -0400 (EDT) Received: by lenny.anarcat.ath.cx (sSMTP sendmail emulation); Wed, 14 Aug 2002 18:58:46 -0400 Date: Wed, 14 Aug 2002 18:58:46 -0400 From: The Anarcat To: libh@freebsd.org Subject: cleanup of CVS repo Message-ID: <20020814225846.GF13108@lenny.anarcat.ath.cx> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="vKFfOv5t3oGVpiF+" Content-Disposition: inline User-Agent: Mutt/1.5.1i Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --vKFfOv5t3oGVpiF+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable I am going to remove the many empty directories, remnants of the many repo-copies that have plagued libh for a while. :) Specifically: common/ database/ disk/ file/ hui/ sysinstall/ tcl/ util/ lib/tclstuff/ release/console/ release/diskedit/ release/pkgtools/ =2E.will be completely removed from the repository in a week or so. All these directories are empty and their attics have non-attic'd counterparts. I have made a backup before the recent repo-copy, so if anyone wants the old repo, it's still available, though I don't see why it would be necessary. I do plan, however, to clean the remaining Attics too. Please protest now, or forever be silent. A. --=20 Premature optimization is the root of all evil - Donald Knuth --vKFfOv5t3oGVpiF+ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9WuCmttcWHAnWiGcRAmA+AJ91PPlplmavJwNCrvCrrp4ql6gxLgCgkNkk PGd7FFndSrAinELJ68ROO1Y= =20+s -----END PGP SIGNATURE----- --vKFfOv5t3oGVpiF+-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Wed Aug 14 16:27:18 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 180AE37B400 for ; Wed, 14 Aug 2002 16:27:17 -0700 (PDT) Received: from aeimail.aei.ca (aeimail.aei.ca [206.123.6.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EA0043E70 for ; Wed, 14 Aug 2002 16:27:16 -0700 (PDT) (envelope-from anarcat@anarcat.ath.cx) Received: from shall.anarcat.ath.cx (118y5ehlok32zx8r@dsl-59-246.aei.ca [216.221.59.246]) by aeimail.aei.ca (8.11.6/8.10.1) with ESMTP id g7ENRF529838 for ; Wed, 14 Aug 2002 19:27:15 -0400 (EDT) Received: from lenny.anarcat.ath.cx (lenny.anarcat.ath.cx [192.168.0.4]) by shall.anarcat.ath.cx (Postfix) with SMTP id 35CF7425 for ; Wed, 14 Aug 2002 19:28:33 -0400 (EDT) Received: by lenny.anarcat.ath.cx (sSMTP sendmail emulation); Wed, 14 Aug 2002 19:23:45 -0400 Date: Wed, 14 Aug 2002 19:23:45 -0400 From: The Anarcat To: libh@freebsd.org Subject: Re: HEADS UP: bumpy ride ahead Message-ID: <20020814232345.GA13644@lenny.anarcat.ath.cx> References: <20020814220424.GB13108@lenny.anarcat.ath.cx> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="PNTmBPCT7hxwcZjr" Content-Disposition: inline In-Reply-To: <20020814220424.GB13108@lenny.anarcat.ath.cx> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --PNTmBPCT7hxwcZjr Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable I have finished with the repo copies, but remember there might still be problems ahead. A. On Wed Aug 14, 2002 at 06:04:24PM -0400, The Anarcat wrote: > I'm going to do a few repo copies. This might break the build. >=20 > This is to allow Max to do his evil cleanups. :) >=20 > I'll post a reply when I'll be done with the repo copies. >=20 > A. > --=20 > From the age of uniformity, from the age of solitude, from the age of > Big Brother, from the age of doublethink - greetings! --=20 =46rom the age of uniformity, from the age of solitude, from the age of Big Brother, from the age of doublethink - greetings! --PNTmBPCT7hxwcZjr Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iD8DBQE9WuaAttcWHAnWiGcRAgrsAJ92RfD/6/2MP9LKLEAonnynLpqrIACdEvXp P/y6nsIvHlkbN8xFV4vJxmg= =6SZI -----END PGP SIGNATURE----- --PNTmBPCT7hxwcZjr-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Wed Aug 14 18:40:19 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C85B337B400 for ; Wed, 14 Aug 2002 18:40:17 -0700 (PDT) Received: from postal.sdsc.edu (postal.sdsc.edu [132.249.20.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A72543E6A for ; Wed, 14 Aug 2002 18:40:17 -0700 (PDT) (envelope-from okumoto@SDSC.EDU) Received: from multivac.sdsc.edu (IDENT:zJikaEBkQL6mi8D2ZuJgBHqQ3rIXtjdE@multivac.sdsc.edu [132.249.20.57]) by postal.sdsc.edu (8.11.6/8.11.6/server/44) with ESMTP id g7F1eC105904; Wed, 14 Aug 2002 18:40:12 -0700 (PDT) Received: by multivac (8.11.6+Sun/1.11-SolarisClient) id g7F1eAM06166; Wed, 14 Aug 2002 18:40:10 -0700 (PDT) To: The Anarcat Cc: freebsd-libh@FreeBSD.ORG Subject: Re: roadmap of adding Hui code References: <5988A99A-AE04-11D6-BD85-0050E4A0BB3F@anarcat.ath.cx> <20020814224550.GE13108@lenny.anarcat.ath.cx> From: Max Okumoto Date: 14 Aug 2002 18:40:10 -0700 In-Reply-To: The Anarcat's message of "Wed, 14 Aug 2002 18:45:50 -0400" Message-ID: Lines: 14 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Could you wait on the removeal? Lots of the code doesn't work yet. And I want to get the same level of functionallity first. Max Okumoto The Anarcat writes: > > Should I cvs remove the old files or should they co-exist with the new > ones? > > It would be cleaner to remove them, although it will break the build. > > A. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 3: 5:14 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEA3137B400 for ; Thu, 15 Aug 2002 03:05:09 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5AC2543E3B for ; Thu, 15 Aug 2002 03:05:09 -0700 (PDT) (envelope-from okumoto@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3030) id 3183317404; Thu, 15 Aug 2002 05:05:08 -0500 (CDT) From: Max Okumoto Date: Thu, 15 Aug 2002 05:05:08 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: libh .cvsignore Makefile.new libh/bin module.m4 libh/bin/HuiTvTest main.cc libh/bin/HuiTv_shared swig.ii module.m4 libh/bin/HuiTv_static module.m4 swig.ii libh/lib module.m4 libh/lib/Hui Hui.ii HuiButton.hh HuiButtonsGroup.hh HuiCallback.cc ... Message-Id: <20020815100508.3183317404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG okumoto 2002/08/15 05:05:08 CDT Modified files: . Makefile.new bin module.m4 bin/HuiTv_shared module.m4 lib module.m4 lib/Hui Dim.hh Hui.cc Hui.hh lib/HuiTv HuiTv.cc HuiTvButton.cc HuiTvButtonsGroup.cc HuiTvCheckBoxes.cc HuiTvContainer.cc HuiTvDialog.cc HuiTvEmbedded.cc HuiTvGroup.cc HuiTvInputLine.cc HuiTvLabel.cc HuiTvListBox.cc HuiTvMenuBar.cc HuiTvMenuButton.cc HuiTvMenuItem.cc HuiTvMenuSeparator.cc HuiTvMenuSubmenu.cc HuiTvProgressIndicator.cc HuiTvRadioMenu.cc HuiTvTextEdit.cc HuiTvToplevel.cc HuiTvWidget.cc HuiTvWindow.cc Added files: . .cvsignore bin/HuiTvTest main.cc bin/HuiTv_shared swig.ii bin/HuiTv_static module.m4 swig.ii lib/Hui Hui.ii HuiButton.hh HuiButtonsGroup.hh HuiCallback.cc HuiCallback.hh HuiCheckBoxes.hh HuiContainer.hh HuiDialog.hh HuiEmbedded.hh HuiGroup.cc HuiGroup.hh HuiInputLine.hh HuiLabel.hh HuiListBox.hh HuiMenuButton.hh HuiMenuItem.hh HuiMenuSeparator.hh HuiMenuSubmenu.cc HuiMenuSubmenu.hh HuiRadioMenu.hh HuiTextEdit.hh HuiToplevel.hh HuiWidget.cc HuiWidget.hh HuiWindow.hh limits lib/HuiTv BUGS HuiTv.hh HuiTv.ii HuiTvApplication.cc HuiTvApplication.hh HuiTvButton.hh HuiTvButtonsGroup.hh HuiTvCheckBoxes.hh HuiTvContainer.hh HuiTvDialog.hh HuiTvEmbedded.hh HuiTvGroup.hh HuiTvInputLine.hh HuiTvLabel.hh HuiTvListBox.hh HuiTvMenuBar.hh HuiTvMenuButton.hh HuiTvMenuItem.hh HuiTvMenuSeparator.hh HuiTvMenuSubmenu.hh HuiTvProgressIndicator.hh HuiTvRadioMenu.hh HuiTvTextEdit.hh HuiTvTitle.hh HuiTvToplevel.hh HuiTvWidget.hh HuiTvWindow.hh Log: Final merge of new Hui Code. Revision Changes Path 1.3 +34 -0 libh/Makefile.new 1.2 +2 -1 libh/bin/module.m4 1.2 +1 -1 libh/bin/HuiTv_shared/module.m4 1.2 +1 -1 libh/lib/module.m4 1.2 +205 -232 libh/lib/Hui/Dim.hh 1.14 +6 -73 libh/lib/Hui/Hui.cc 1.40 +86 -1027 libh/lib/Hui/Hui.hh 1.40 +124 -212 libh/lib/HuiTv/HuiTv.cc 1.38 +69 -140 libh/lib/HuiTv/HuiTvButton.cc 1.36 +50 -92 libh/lib/HuiTv/HuiTvButtonsGroup.cc 1.39 +151 -224 libh/lib/HuiTv/HuiTvCheckBoxes.cc 1.38 +30 -234 libh/lib/HuiTv/HuiTvContainer.cc 1.35 +87 -134 libh/lib/HuiTv/HuiTvDialog.cc 1.37 +76 -115 libh/lib/HuiTv/HuiTvEmbedded.cc 1.38 +373 -387 libh/lib/HuiTv/HuiTvGroup.cc 1.36 +151 -179 libh/lib/HuiTv/HuiTvInputLine.cc 1.37 +40 -94 libh/lib/HuiTv/HuiTvLabel.cc 1.36 +350 -382 libh/lib/HuiTv/HuiTvListBox.cc 1.34 +124 -68 libh/lib/HuiTv/HuiTvMenuBar.cc 1.34 +28 -95 libh/lib/HuiTv/HuiTvMenuButton.cc 1.34 +194 -109 libh/lib/HuiTv/HuiTvMenuItem.cc 1.34 +9 -40 libh/lib/HuiTv/HuiTvMenuSeparator.cc 1.35 +128 -132 libh/lib/HuiTv/HuiTvMenuSubmenu.cc 1.36 +86 -150 libh/lib/HuiTv/HuiTvProgressIndicator.cc 1.37 +138 -210 libh/lib/HuiTv/HuiTvRadioMenu.cc 1.36 +140 -155 libh/lib/HuiTv/HuiTvTextEdit.cc 1.34 +23 -82 libh/lib/HuiTv/HuiTvToplevel.cc 1.35 +90 -194 libh/lib/HuiTv/HuiTvWidget.cc 1.36 +125 -150 libh/lib/HuiTv/HuiTvWindow.cc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 3:18: 8 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CDF237B400 for ; Thu, 15 Aug 2002 03:18:07 -0700 (PDT) Received: from c009.snv.cp.net (h019.c009.snv.cp.net [209.228.34.132]) by mx1.FreeBSD.org (Postfix) with SMTP id 9923243E4A for ; Thu, 15 Aug 2002 03:18:06 -0700 (PDT) (envelope-from candelabrum@canada.com) Received: (cpmta 29618 invoked from network); 15 Aug 2002 03:18:06 -0700 Received: from 209.228.34.118 (HELO mail.canada.com.criticalpath.net) by smtp.canada.com (209.228.34.132) with SMTP; 15 Aug 2002 03:18:06 -0700 X-Sent: 15 Aug 2002 10:18:06 GMT Received: from [80.92.196.3] by mail.canada.com with HTTP; Thu, 15 Aug 2002 03:18:05 -0700 (PDT) Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 To: libh@FreeBSD.org From: candelabrum@canada.com Subject: volunteer X-Sent-From: candelabrum@canada.com Date: Thu, 15 Aug 2002 03:18:05 -0700 (PDT) X-Mailer: Web Mail 5.0.11-9 Message-Id: <20020815031806.20030.h005.c009.wm@mail.canada.com.criticalpath.net> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi libh! Is there a cut of work in libh project for a new volunteer? I hope my programming skills would be a benefit to your project.=20=20 I have been observing this thread of FreeBSD for several months and I consider your team as quite active and doing interest things. Now I=92ve got time and place for joy. kind regards Roman Streltsov =0D __________________________________________________________ Get your FREE personalized e-mail at http://www.canada.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 3:23:46 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AAB8E37B400 for ; Thu, 15 Aug 2002 03:23:44 -0700 (PDT) Received: from postal.sdsc.edu (postal.sdsc.edu [132.249.20.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D4A843E7B for ; Thu, 15 Aug 2002 03:23:44 -0700 (PDT) (envelope-from okumoto@SDSC.EDU) Received: from multivac.sdsc.edu (IDENT:ZGvwsJVVXe9M9FRbGlV4wtbJLbF1EDG0@multivac.sdsc.edu [132.249.20.57]) by postal.sdsc.edu (8.11.6/8.11.6/server/44) with ESMTP id g7FANc111712; Thu, 15 Aug 2002 03:23:38 -0700 (PDT) Received: by multivac (8.11.6+Sun/1.11-SolarisClient) id g7FANa018727; Thu, 15 Aug 2002 03:23:36 -0700 (PDT) To: candelabrum@canada.com Cc: libh@FreeBSD.ORG Subject: Re: volunteer References: <20020815031806.20030.h005.c009.wm@mail.canada.com.criticalpath.net> From: Max Okumoto Date: 15 Aug 2002 03:23:36 -0700 In-Reply-To: candelabrum@canada.com's message of "Thu, 15 Aug 2002 03:18:05 -0700 (PDT)" Message-ID: Lines: 29 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi Roman, Well there is lots to do. Right now I am in the middle of cleaning up the User Interface library. What kind of stuff are you interested in? Max Okumoto candelabrum@canada.com writes: > Hi libh! > > Is there a cut of work in libh project for a new > volunteer? I hope my programming skills would be a > benefit to your project. > > I have been observing this thread of FreeBSD for > several months and I consider your team as quite active > and doing interest things. Now I’ve got time and place > for joy. > > kind regards > Roman Streltsov > > __________________________________________________________ > Get your FREE personalized e-mail at http://www.canada.com > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-libh" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 6:38:43 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58EFE37B400 for ; Thu, 15 Aug 2002 06:38:40 -0700 (PDT) Received: from c009.snv.cp.net (h018.c009.snv.cp.net [209.228.34.131]) by mx1.FreeBSD.org (Postfix) with SMTP id C88C943E6A for ; Thu, 15 Aug 2002 06:38:24 -0700 (PDT) (envelope-from candelabrum@canada.com) Received: (cpmta 3231 invoked from network); 15 Aug 2002 06:35:47 -0700 Received: from 209.228.34.121 (HELO mail.canada.com.criticalpath.net) by smtp.canada.com (209.228.34.131) with SMTP; 15 Aug 2002 06:35:47 -0700 X-Sent: 15 Aug 2002 13:35:47 GMT Received: from [80.92.196.3] by mail.canada.com with HTTP; Thu, 15 Aug 2002 06:35:44 -0700 (PDT) Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 To: libh@FreeBSD.org From: candelabrum@canada.com Subject: Re: volunteer X-Sent-From: candelabrum@canada.com Date: Thu, 15 Aug 2002 06:35:44 -0700 (PDT) X-Mailer: Web Mail 5.0.11-9 Message-Id: <20020815063546.21799.h008.c009.wm@mail.canada.com.criticalpath.net> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, Any direction is acceptable. I think that you know project's priorities better. I am rolling the latest snapshot in my box and after I=92ll can to see the details. Generally I am interested in writing the package engine or the user interface or something else. It would be better if somebody let me know about appropriate directions for beginning work. I can=92t send mail to mail-list direct from my local computer, there isn=92t any error message. I remember there was strong position with reverse DNS, does it matter now? Thanks, Roman Streltsov Max Okumoto wrote: >=20 >=20 > Hi Roman, >=20 > Well there is lots to do. Right now I am in the middle > of cleaning > up the User Interface library. What kind of stuff are > you interested > in? >=20 > Max Okumoto >=20 > candelabrum@canada.com writes: > > Hi libh! > >=20 > > Is there a cut of work in libh project for a new > > volunteer? I hope my programming skills would be a > > benefit to your project.=20=20 > >=20 > > I have been observing this thread of FreeBSD for > > several months and I consider your team as quite > active > > and doing interest things. Now I=92ve got time and place > > for joy. > >=20 > > kind regards > > Roman Streltsov > >=20 > > > __________________________________________________________ > > Get your FREE personalized e-mail at > http://www.cana= da.com > >=20 > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-libh" in the body of the > message =0D __________________________________________________________ Get your FREE personalized e-mail at http://www.canada.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 7: 2:37 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2D7537B400 for ; Thu, 15 Aug 2002 07:02:35 -0700 (PDT) Received: from mail2.qc.uunet.ca (mail2.qc.uunet.ca [198.168.54.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BFCB43E4A for ; Thu, 15 Aug 2002 07:02:34 -0700 (PDT) (envelope-from anarcat@anarcat.ath.cx) Received: from xtanbul (IDENT:506@[216.94.147.34]) by mail2.qc.uunet.ca (8.9.3/8.9.3) with ESMTP id KAA03540; Thu, 15 Aug 2002 10:02:28 -0400 Date: Thu, 15 Aug 2002 09:52:05 -0400 Subject: Re: roadmap of adding Hui code Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) Cc: freebsd-libh@FreeBSD.ORG To: Max Okumoto From: Antoine Beaupre In-Reply-To: Message-Id: <2EA4ABB2-B056-11D6-BD5C-0050E4A0BB3F@anarcat.ath.cx> Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.482) Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG No problem. Just don't forget which ones to remove and which ones to keep because this is getting very messy. A. On Wednesday, August 14, 2002, at 09:40 PM, Max Okumoto wrote: > > Could you wait on the removeal? Lots of the code doesn't work > yet. And I want to get the same level of functionallity first. > > Max Okumoto > > The Anarcat writes: >> >> Should I cvs remove the old files or should they co-exist with the new >> ones? >> >> It would be cleaner to remove them, although it will break the build. >> >> A. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 7:50:14 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0992137B400 for ; Thu, 15 Aug 2002 07:50:07 -0700 (PDT) Received: from mail1.qc.uunet.ca (mail1.qc.uunet.ca [198.168.54.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF60843E6A for ; Thu, 15 Aug 2002 07:50:05 -0700 (PDT) (envelope-from anarcat@anarcat.ath.cx) Received: from xtanbul (IDENT:506@[216.94.147.34]) by mail1.qc.uunet.ca (8.10.2/8.10.2) with ESMTP id g7FEo0N24271; Thu, 15 Aug 2002 10:50:01 -0400 Date: Thu, 15 Aug 2002 10:39:37 -0400 Subject: TODO refresh (was: volunteer) Content-Type: text/plain; charset=WINDOWS-1252; format=flowed Mime-Version: 1.0 (Apple Message framework v482) Cc: libh@FreeBSD.org To: candelabrum@canada.com From: Antoine Beaupre In-Reply-To: <20020815063546.21799.h008.c009.wm@mail.canada.com.criticalpath.net> Message-Id: Content-Transfer-Encoding: quoted-printable X-Mailer: Apple Mail (2.482) Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG BTW: I'll put this up on the web. Each time I re-inspect what needs to=20= be done with libh, I come up with new stuff ;) On Thursday, August 15, 2002, at 09:35 AM, candelabrum@canada.com wrote: > Hi, > Any direction is acceptable. I think that you know > project's priorities better. I am rolling the latest > snapshot in my box and after I=92ll can to see the > details. Generally I am interested in writing the > package engine or the user interface or something else. > It would be better if somebody let me know about > appropriate directions for beginning work. Well, the package engine and the user interface is pretty much all there=20= is to libh. :) Both engines need a rewrite, in part or in full. Hui =3D=3D=3D Max is currently engineering a pretty throughout Hui (libH User=20 Interface) rewrite, and he's going pretty well on this side. I've been thinking about this, and we will need new widgets once this is=20= done. - a tree widget - an image widget (that will show nothing in tvision :) - a general "canvas" scrollable widget that can hold other widgets Also, the listbox widget needs to be able to sort its entries and=20 possibly move its columns around. Max will probably be better than me to instruct you on what there is to=20= do. Package System =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D The package API is at its infancy. You can find it at=20 http://usw4.freebsd.org/~libh/sysinstall2/ . As I said, it is far from=20= complete, and not detailed enough yet. I have tried to make it clearer,=20= but it's an evergoing task. It would be interesting to make this document look more like an API.=20 Right now, it's mostly a libh design document. But it still gives a good=20= idea of how libh is made and what it should be able to do. On the implementation side itself, there is a strong need of finishing=20= the basic implementation that was started. Right now, packages can be=20 generated and installed, but dependencies, uninstalls and plenty of=20 other very interesting libh functions are non-working or = non-implemented. This needs to be done. I don't exactly know what's missing and where. I got interested in the=20= package system only recently, and there's very few documentation. So=20 another task is to analyze the code and the documentation to see where=20= we're at. Gettting a simple list of what works and what doesn't would be=20= really great, and setting up regression tests would be extraordinarly=20 helpful. =46rom what I understand now, the libh package system is really zip and=20= DB3 based. The class hierarchy doesn't allow much flexibility on this=20 side, so it would be a good thing to start isolating the implementation=20= (eg. Zip file) from the concept (eg. Archive or Package) in the code=20 itself. Also, inline class and function documentation is seriously=20 lacking. We now have the tools to extract that documentation (Doxygen),=20= so we need to document the whole thing. So in short, here are the package tasks: - finish package API - figure out what is and what needs to be implemented - implement missing parts to get a viable package system - document the whole package system via Doxygen - isolate the package system formats (database and package format sides)=20= in seperate classes - setup regression tests Choose your task, work on the tree to get accustomed to it and send us=20= patches! I'll be very glad to review those and commit them to the tree=20= if they're ok. :) > I can=92t send mail to mail-list direct from my local > computer, there isn=92t any error message. I remember > there was strong position with reverse DNS, does it > matter now? hub.freebsd.org refuses messages coming from computers without reverse=20= DNS mappings or with reverse mappings not matching the pretended=20 hostname (IIRC). A. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 8:16:30 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DCC737B400 for ; Thu, 15 Aug 2002 08:16:30 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2D2943E65 for ; Thu, 15 Aug 2002 08:16:29 -0700 (PDT) (envelope-from antoine@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3028) id E65E017404; Thu, 15 Aug 2002 10:16:23 -0500 (CDT) From: Antoine Beaupré Date: Thu, 15 Aug 2002 10:16:23 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: www progress.html Message-Id: <20020815151623.E65E017404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG antoine 2002/08/15 10:16:23 CDT Modified files: . progress.html Log: Feature system redesign is finished, remove it. Revision Changes Path 1.23 +1 -27 www/progress.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 8:18:48 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C50137B400 for ; Thu, 15 Aug 2002 08:18:47 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BCA243E75 for ; Thu, 15 Aug 2002 08:18:47 -0700 (PDT) (envelope-from antoine@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3028) id DF1C717404; Thu, 15 Aug 2002 10:18:26 -0500 (CDT) From: Antoine Beaupré Date: Thu, 15 Aug 2002 10:18:26 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: www progress.html Message-Id: <20020815151826.DF1C717404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG antoine 2002/08/15 10:18:26 CDT Modified files: . progress.html Log: I have not heard of Mike for a long time and I really doubt he's working on system configurator. Actually, I don't think I know any mike at all, so if you're reading this, Mike, please manifest yourself. :) Assign System Configuration Utility task to "None". Revision Changes Path 1.24 +2 -2 www/progress.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 8:20: 7 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5F6437B400 for ; Thu, 15 Aug 2002 08:20:05 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id B628A43E70 for ; Thu, 15 Aug 2002 08:20:05 -0700 (PDT) (envelope-from antoine@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3028) id 5FCC017404; Thu, 15 Aug 2002 10:20:05 -0500 (CDT) From: Antoine Beaupré Date: Thu, 15 Aug 2002 10:20:05 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: www progress.html Message-Id: <20020815152005.5FCC017404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG antoine 2002/08/15 10:20:05 CDT Modified files: . progress.html Log: assign the dynamic loading task to Max note that it's almost complete and just needs merging Revision Changes Path 1.25 +3 -3 www/progress.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 8:21:25 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1817437B400 for ; Thu, 15 Aug 2002 08:21:25 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD2AE43E6A for ; Thu, 15 Aug 2002 08:21:24 -0700 (PDT) (envelope-from antoine@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3028) id 8490C17404; Thu, 15 Aug 2002 10:21:24 -0500 (CDT) From: Antoine Beaupré Date: Thu, 15 Aug 2002 10:21:24 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: www progress.html Message-Id: <20020815152124.8490C17404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG antoine 2002/08/15 10:21:24 CDT Modified files: . progress.html Log: register myself to the "finish package library" task, along with alex Revision Changes Path 1.26 +2 -2 www/progress.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 8:25: 6 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2AA8637B400 for ; Thu, 15 Aug 2002 08:25:06 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id D268B43E72 for ; Thu, 15 Aug 2002 08:25:05 -0700 (PDT) (envelope-from antoine@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3028) id 77D2717404; Thu, 15 Aug 2002 10:25:05 -0500 (CDT) From: Antoine Beaupré Date: Thu, 15 Aug 2002 10:25:05 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: www progress.html Message-Id: <20020815152505.77D2717404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG antoine 2002/08/15 10:25:05 CDT Modified files: . progress.html Log: add image and scrollable container widget tasks Revision Changes Path 1.27 +11 -1 www/progress.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 8:26:49 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4264537B400 for ; Thu, 15 Aug 2002 08:26:48 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12A7D43E6E for ; Thu, 15 Aug 2002 08:26:48 -0700 (PDT) (envelope-from antoine@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3028) id 5A1C117404; Thu, 15 Aug 2002 10:26:47 -0500 (CDT) From: Antoine Beaupré Date: Thu, 15 Aug 2002 10:26:47 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: www progress.html Message-Id: <20020815152647.5A1C117404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG antoine 2002/08/15 10:26:47 CDT Modified files: . progress.html Log: create 3 groups of tasks: one unnamed, one "UI", one "Package" and regroup items accordingly Revision Changes Path 1.28 +17 -12 www/progress.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 8:27:57 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8AB737B400 for ; Thu, 15 Aug 2002 08:27:56 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id A97CC43E4A for ; Thu, 15 Aug 2002 08:27:56 -0700 (PDT) (envelope-from antoine@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3028) id 533B717404; Thu, 15 Aug 2002 10:27:46 -0500 (CDT) From: Antoine Beaupré Date: Thu, 15 Aug 2002 10:27:46 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: www progress.html Message-Id: <20020815152746.533B717404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG antoine 2002/08/15 10:27:46 CDT Modified files: . progress.html Log: mark system configuration utility as not started Revision Changes Path 1.29 +2 -2 www/progress.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 8:29: 4 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D7CE37B400 for ; Thu, 15 Aug 2002 08:29:04 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id D24C143E4A for ; Thu, 15 Aug 2002 08:29:03 -0700 (PDT) (envelope-from antoine@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3028) id 84B1217404; Thu, 15 Aug 2002 10:29:03 -0500 (CDT) From: Antoine Beaupré Date: Thu, 15 Aug 2002 10:29:03 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: www progress.html Message-Id: <20020815152903.84B1217404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG antoine 2002/08/15 10:29:03 CDT Modified files: . progress.html Log: note that tasks "should not" instead of "do not" hinder libh "development" instead of "deployment". Revision Changes Path 1.30 +3 -3 www/progress.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 8:31:55 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53E1737B400 for ; Thu, 15 Aug 2002 08:31:54 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24B5D43E70 for ; Thu, 15 Aug 2002 08:31:54 -0700 (PDT) (envelope-from antoine@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3028) id BA52617404; Thu, 15 Aug 2002 10:31:53 -0500 (CDT) From: Antoine Beaupré Date: Thu, 15 Aug 2002 10:31:53 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: www progress.html Message-Id: <20020815153153.BA52617404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG antoine 2002/08/15 10:31:53 CDT Modified files: . progress.html Log: add Doxygen code documentation task Revision Changes Path 1.31 +6 -1 www/progress.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 8:33:33 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4695D37B400 for ; Thu, 15 Aug 2002 08:33:32 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1762143E42 for ; Thu, 15 Aug 2002 08:33:32 -0700 (PDT) (envelope-from antoine@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3028) id B895917404; Thu, 15 Aug 2002 10:33:31 -0500 (CDT) From: Antoine Beaupré Date: Thu, 15 Aug 2002 10:33:31 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: www progress.html Message-Id: <20020815153331.B895917404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG antoine 2002/08/15 10:33:31 CDT Modified files: . progress.html Log: whitespace cleanup Revision Changes Path 1.32 +13 -12 www/progress.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 8:38:51 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1FA037B400 for ; Thu, 15 Aug 2002 08:38:50 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1ECFC43E4A for ; Thu, 15 Aug 2002 08:38:50 -0700 (PDT) (envelope-from antoine@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3028) id 963E217404; Thu, 15 Aug 2002 10:38:49 -0500 (CDT) From: Antoine Beaupré Date: Thu, 15 Aug 2002 10:38:49 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: www progress.html Message-Id: <20020815153849.963E217404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG antoine 2002/08/15 10:38:49 CDT Modified files: . progress.html Log: add 2 new tasks: - db and pkg implementation seperation - regression test implementation Revision Changes Path 1.33 +12 -2 www/progress.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 8:39:19 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07AF137B400 for ; Thu, 15 Aug 2002 08:39:19 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCAB543E77 for ; Thu, 15 Aug 2002 08:39:18 -0700 (PDT) (envelope-from antoine@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3028) id 798E617404; Thu, 15 Aug 2002 10:39:18 -0500 (CDT) From: Antoine Beaupré Date: Thu, 15 Aug 2002 10:39:18 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: www progress.html Message-Id: <20020815153918.798E617404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG antoine 2002/08/15 10:39:18 CDT Modified files: . progress.html Log: s/complete/finish/ VS: ---------------------------------------------------------------------- Revision Changes Path 1.34 +2 -2 www/progress.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 8:56:53 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4733837B400 for ; Thu, 15 Aug 2002 08:56:52 -0700 (PDT) Received: from mail2.qc.uunet.ca (mail2.qc.uunet.ca [198.168.54.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30CC443E65 for ; Thu, 15 Aug 2002 08:56:50 -0700 (PDT) (envelope-from anarcat@anarcat.ath.cx) Received: from xtanbul (IDENT:506@[216.94.147.34]) by mail2.qc.uunet.ca (8.9.3/8.9.3) with ESMTP id LAA11538; Thu, 15 Aug 2002 11:56:40 -0400 Date: Thu, 15 Aug 2002 11:46:17 -0400 Subject: Re: cvs commit: www progress.html Content-Type: text/plain; charset=ISO-8859-1; format=flowed Mime-Version: 1.0 (Apple Message framework v482) Cc: libh@FreeBSD.org To: =?ISO-8859-1?Q?Antoine_Beaupr=E9?= From: Antoine Beaupre In-Reply-To: <20020815153918.798E617404@usw4.freebsd.org> Message-Id: <22D7B9A6-B066-11D6-BD5C-0050E4A0BB3F@anarcat.ath.cx> Content-Transfer-Encoding: quoted-printable X-Mailer: Apple Mail (2.482) Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thursday, August 15, 2002, at 11:39 AM, Antoine Beaupr=E9 wrote: > antoine 2002/08/15 10:39:18 CDT > > Modified files: > . progress.html > Log: > s/complete/finish/ > =20 > VS: = ---------------------------------------------------------------------- > Oops. Sorry. A. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 8:59: 8 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7404137B400 for ; Thu, 15 Aug 2002 08:59:06 -0700 (PDT) Received: from mail2.qc.uunet.ca (mail2.qc.uunet.ca [198.168.54.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C8FF43E3B for ; Thu, 15 Aug 2002 08:58:19 -0700 (PDT) (envelope-from anarcat@anarcat.ath.cx) Received: from xtanbul (IDENT:506@[216.94.147.34]) by mail2.qc.uunet.ca (8.9.3/8.9.3) with ESMTP id LAA11739; Thu, 15 Aug 2002 11:58:03 -0400 Date: Thu, 15 Aug 2002 11:47:40 -0400 Subject: Re: TODO refresh (was: volunteer) Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) Cc: candelabrum@canada.com, libh@FreeBSD.org To: Antoine Beaupre From: Antoine Beaupre In-Reply-To: Message-Id: <546C2AB6-B066-11D6-BD5C-0050E4A0BB3F@anarcat.ath.cx> Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.482) Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thursday, August 15, 2002, at 10:39 AM, Antoine Beaupre wrote: > BTW: I'll put this up on the web. Each time I re-inspect what needs to > be done with libh, I come up with new stuff ;) > For future reference, I have updated the "progress" page on the development page: http://usw4.freebsd.org/~libh/ Please refer to it in the future. There is also work to do there I forgot to mention in my email, so check it out. A. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 9: 8: 7 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71AC637B401 for ; Thu, 15 Aug 2002 09:08:06 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97F0543E88 for ; Thu, 15 Aug 2002 09:07:38 -0700 (PDT) (envelope-from antoine@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3028) id 85F7717404; Thu, 15 Aug 2002 11:07:32 -0500 (CDT) From: Antoine Beaupré Date: Thu, 15 Aug 2002 11:07:32 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: libh TODO Message-Id: <20020815160732.85F7717404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG antoine 2002/08/15 11:07:32 CDT Modified files: . TODO Log: Add simple file description and point to progress.html page for a more global view Revision Changes Path 1.22 +7 -1 libh/TODO To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 9:25:18 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E853337B400 for ; Thu, 15 Aug 2002 09:25:17 -0700 (PDT) Received: from mail1.qc.uunet.ca (mail1.qc.uunet.ca [198.168.54.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4ABC243E6E for ; Thu, 15 Aug 2002 09:25:17 -0700 (PDT) (envelope-from anarcat@anarcat.ath.cx) Received: from xtanbul (IDENT:506@[216.94.147.34]) by mail1.qc.uunet.ca (8.10.2/8.10.2) with ESMTP id g7FGPBN30278 for ; Thu, 15 Aug 2002 12:25:12 -0400 Date: Thu, 15 Aug 2002 12:14:49 -0400 Mime-Version: 1.0 (Apple Message framework v482) Content-Type: text/plain; charset=US-ASCII; format=flowed Subject: updated screenshots page From: Antoine Beaupre To: libh@freebsd.org Content-Transfer-Encoding: 7bit Message-Id: <1F79E0B8-B06A-11D6-BD5C-0050E4A0BB3F@anarcat.ath.cx> X-Mailer: Apple Mail (2.482) Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello! I've uploaded a README to describe what were represented by the screenshots. I also changed the filenames of the screenshots because they were unnecessarly long. A. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 9:35:15 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3AE2837B408 for ; Thu, 15 Aug 2002 09:35:10 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0ACEA43E75 for ; Thu, 15 Aug 2002 09:35:10 -0700 (PDT) (envelope-from antoine@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3028) id 5843517404; Thu, 15 Aug 2002 11:35:04 -0500 (CDT) From: Antoine Beaupré Date: Thu, 15 Aug 2002 11:35:04 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: libh/lib/Hui ProgressIndicatorHui.hh Message-Id: <20020815163504.5843517404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG antoine 2002/08/15 11:35:04 CDT Removed files: lib/Hui ProgressIndicatorHui.hh Log: removed after repo-copy Requested by: okumoto To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 10:28:50 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8142F37B401 for ; Thu, 15 Aug 2002 10:28:48 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5011343E6E for ; Thu, 15 Aug 2002 10:28:48 -0700 (PDT) (envelope-from antoine@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3028) id C351617404; Thu, 15 Aug 2002 12:28:47 -0500 (CDT) From: Antoine Beaupré Date: Thu, 15 Aug 2002 12:28:47 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: libh/doc/sysinstall2 sysinstall2.sgml Message-Id: <20020815172847.C351617404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG antoine 2002/08/15 12:28:47 CDT Modified files: doc/sysinstall2 sysinstall2.sgml Log: change "similar projects" section to "related projects" and a few things there: G.O.B.I.E., Debconf and DLDialog. We should also include a link to the debian package system though I don't exactly know where to link to yet. Revision Changes Path 1.52 +38 -2 libh/doc/sysinstall2/sysinstall2.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 10:44: 2 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8139037B400 for ; Thu, 15 Aug 2002 10:44:01 -0700 (PDT) Received: from mail1.qc.uunet.ca (mail1.qc.uunet.ca [198.168.54.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C84843E75 for ; Thu, 15 Aug 2002 10:44:00 -0700 (PDT) (envelope-from anarcat@anarcat.ath.cx) Received: from xtanbul (IDENT:506@[216.94.147.34]) by mail1.qc.uunet.ca (8.10.2/8.10.2) with ESMTP id g7FHhuN32099; Thu, 15 Aug 2002 13:43:57 -0400 Date: Thu, 15 Aug 2002 13:33:34 -0400 Subject: Re: cvs commit: libh/doc/sysinstall2 sysinstall2.sgml Content-Type: text/plain; charset=ISO-8859-1; format=flowed Mime-Version: 1.0 (Apple Message framework v482) Cc: libh@FreeBSD.org To: =?ISO-8859-1?Q?Antoine_Beaupr=E9?= From: Antoine Beaupre In-Reply-To: <20020815172847.C351617404@usw4.freebsd.org> Message-Id: <1F982166-B075-11D6-BD5C-0050E4A0BB3F@anarcat.ath.cx> Content-Transfer-Encoding: quoted-printable X-Mailer: Apple Mail (2.482) Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Max, check out DLDialog. It's very similar to our Hui layer. And since=20= we're in a re-write, you might want to consider alternative=20 implementations. Debconf is also pretty impressive. A. On Thursday, August 15, 2002, at 01:28 PM, Antoine Beaupr=E9 wrote: > antoine 2002/08/15 12:28:47 CDT > > Modified files: > doc/sysinstall2 sysinstall2.sgml > Log: > change "similar projects" section to "related projects" and a few > things there: G.O.B.I.E., Debconf and DLDialog. > > We should also include a link to the debian package system though I > don't exactly know where to link to yet. > > Revision Changes Path > 1.52 +38 -2 libh/doc/sysinstall2/sysinstall2.sgml > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-libh" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 12:30:53 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A7F8437B400 for ; Thu, 15 Aug 2002 12:30:52 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7684243E6E for ; Thu, 15 Aug 2002 12:30:52 -0700 (PDT) (envelope-from antoine@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3028) id 6E50B17404; Thu, 15 Aug 2002 14:30:46 -0500 (CDT) From: Antoine Beaupré Date: Thu, 15 Aug 2002 14:30:46 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: www/private update_website.sh Message-Id: <20020815193046.6E50B17404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG antoine 2002/08/15 14:30:46 CDT Modified files: private update_website.sh Log: dont run sh with the -x switch Revision Changes Path 1.3 +1 -1 www/private/update_website.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 13:31:29 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3AF3237B400 for ; Thu, 15 Aug 2002 13:31:28 -0700 (PDT) Received: from mail2.qc.uunet.ca (mail2.qc.uunet.ca [198.168.54.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 896E843E75 for ; Thu, 15 Aug 2002 13:31:26 -0700 (PDT) (envelope-from anarcat@anarcat.ath.cx) Received: from xtanbul (IDENT:506@[216.94.147.34]) by mail2.qc.uunet.ca (8.9.3/8.9.3) with ESMTP id QAA21702; Thu, 15 Aug 2002 16:31:15 -0400 Date: Thu, 15 Aug 2002 16:20:54 -0400 Subject: Re: cvs commit: libh/doc/sysinstall2 sysinstall2.sgml Content-Type: text/plain; charset=ISO-8859-1; format=flowed Mime-Version: 1.0 (Apple Message framework v482) Cc: =?ISO-8859-1?Q?Antoine_Beaupr=E9?= , libh@FreeBSD.org To: Antoine Beaupre From: Antoine Beaupre In-Reply-To: <1F982166-B075-11D6-BD5C-0050E4A0BB3F@anarcat.ath.cx> Message-Id: <8049701B-B08C-11D6-BD5C-0050E4A0BB3F@anarcat.ath.cx> Content-Transfer-Encoding: quoted-printable X-Mailer: Apple Mail (2.482) Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Also note that I'll be updating the sysinstall2 document shortly. It is not yet auto-generated on usw4 due to lack of proper software... A. On Thursday, August 15, 2002, at 01:33 PM, Antoine Beaupre wrote: > Max, check out DLDialog. It's very similar to our Hui layer. And since=20= > we're in a re-write, you might want to consider alternative=20 > implementations. > > Debconf is also pretty impressive. > > A. > > On Thursday, August 15, 2002, at 01:28 PM, Antoine Beaupr=E9 wrote: > >> antoine 2002/08/15 12:28:47 CDT >> >> Modified files: >> doc/sysinstall2 sysinstall2.sgml >> Log: >> change "similar projects" section to "related projects" and a few >> things there: G.O.B.I.E., Debconf and DLDialog. >> >> We should also include a link to the debian package system though I >> don't exactly know where to link to yet. >> >> Revision Changes Path >> 1.52 +38 -2 libh/doc/sysinstall2/sysinstall2.sgml >> >> >> To Unsubscribe: send mail to majordomo@FreeBSD.org >> with "unsubscribe freebsd-libh" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-libh" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 15:14:37 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E52C37B400 for ; Thu, 15 Aug 2002 15:14:37 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDE7343E4A for ; Thu, 15 Aug 2002 15:14:36 -0700 (PDT) (envelope-from antoine@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3028) id 535CE17404; Thu, 15 Aug 2002 17:14:36 -0500 (CDT) From: Antoine Beaupré Date: Thu, 15 Aug 2002 17:14:36 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: libh/doc/sysinstall2 sysinstall2.sgml Message-Id: <20020815221436.535CE17404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG antoine 2002/08/15 17:14:36 CDT Modified files: doc/sysinstall2 sysinstall2.sgml Log: remove a typo that crept in Revision Changes Path 1.53 +1 -1 libh/doc/sysinstall2/sysinstall2.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Thu Aug 15 15:15:10 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0FE237B406 for ; Thu, 15 Aug 2002 15:15:09 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCD4843E3B for ; Thu, 15 Aug 2002 15:15:09 -0700 (PDT) (envelope-from antoine@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3028) id 7DDED17404; Thu, 15 Aug 2002 17:15:09 -0500 (CDT) From: Antoine Beaupré Date: Thu, 15 Aug 2002 17:15:09 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: libh/doc/sysinstall2 sysinstall2.sgml Message-Id: <20020815221509.7DDED17404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG antoine 2002/08/15 17:15:09 CDT Modified files: doc/sysinstall2 sysinstall2.sgml Log: indent the latest additions Revision Changes Path 1.54 +15 -15 libh/doc/sysinstall2/sysinstall2.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Fri Aug 16 0:56:12 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EF4F37B400 for ; Fri, 16 Aug 2002 00:56:11 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CCC543E42 for ; Fri, 16 Aug 2002 00:56:11 -0700 (PDT) (envelope-from okumoto@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3030) id C6AF017404; Fri, 16 Aug 2002 02:56:10 -0500 (CDT) From: Max Okumoto Date: Fri, 16 Aug 2002 02:56:10 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: libh/lib/Hui HuiProgressIndicator.hh Message-Id: <20020816075610.C6AF017404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG okumoto 2002/08/16 02:56:10 CDT Modified files: lib/Hui HuiProgressIndicator.hh Log: Add missing file to merge of new UI code. Revision Changes Path 1.9 +12 -60 libh/lib/Hui/HuiProgressIndicator.hh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Fri Aug 16 1: 7:55 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC77137B400 for ; Fri, 16 Aug 2002 01:07:54 -0700 (PDT) Received: from postal.sdsc.edu (postal.sdsc.edu [132.249.20.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3690A43E65 for ; Fri, 16 Aug 2002 01:07:54 -0700 (PDT) (envelope-from okumoto@SDSC.EDU) Received: from multivac.sdsc.edu (multivac.sdsc.edu [132.249.20.57]) by postal.sdsc.edu (8.11.6/8.11.6/server/45) with ESMTP id g7G87nW16981; Fri, 16 Aug 2002 01:07:49 -0700 (PDT) Received: by multivac (8.11.6+Sun/1.11-SolarisClient) id g7G87i717470; Fri, 16 Aug 2002 01:07:44 -0700 (PDT) To: Antoine Beaupre Cc: libh@FreeBSD.ORG Subject: Re: cvs commit: libh/doc/sysinstall2 sysinstall2.sgml References: <1F982166-B075-11D6-BD5C-0050E4A0BB3F@anarcat.ath.cx> From: Max Okumoto Date: 16 Aug 2002 01:07:44 -0700 In-Reply-To: Antoine Beaupre's message of "Thu, 15 Aug 2002 13:33:34 -0400" Message-ID: Lines: 14 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG If only we were a GNU project :-) Yea, I would like libh to be close to DLDialog. Max Okumoto Antoine Beaupre writes: > Max, check out DLDialog. It's very similar to our Hui layer. And since > we're in a re-write, you might want to consider alternative > implementations. > > Debconf is also pretty impressive. > > A. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Fri Aug 16 2:11:51 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CDAD37B400 for ; Fri, 16 Aug 2002 02:11:51 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEA0343E4A for ; Fri, 16 Aug 2002 02:11:50 -0700 (PDT) (envelope-from okumoto@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3030) id 4E97817404; Fri, 16 Aug 2002 04:11:50 -0500 (CDT) From: Max Okumoto Date: Fri, 16 Aug 2002 04:11:50 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: libh/release/scripts Hui.tcl setupNew.tcl startup.sh Message-Id: <20020816091150.4E97817404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG okumoto 2002/08/16 04:11:50 CDT Added files: release/scripts Hui.tcl setupNew.tcl startup.sh Log: Add some simple scripts to demo new UI code To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Fri Aug 16 2:12:26 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39C5237B400 for ; Fri, 16 Aug 2002 02:12:26 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0907F43E3B for ; Fri, 16 Aug 2002 02:12:26 -0700 (PDT) (envelope-from okumoto@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3030) id 8CAE417404; Fri, 16 Aug 2002 04:12:25 -0500 (CDT) From: Max Okumoto Date: Fri, 16 Aug 2002 04:12:25 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: libh/release/scripts Dialog.tcl Message-Id: <20020816091225.8CAE417404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG okumoto 2002/08/16 04:12:25 CDT Added files: release/scripts Dialog.tcl Log: Add some simple scripts to demo new UI code To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Fri Aug 16 2:47:53 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C863237B400 for ; Fri, 16 Aug 2002 02:47:52 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9475443E6A for ; Fri, 16 Aug 2002 02:47:52 -0700 (PDT) (envelope-from okumoto@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3030) id 4E39117404; Fri, 16 Aug 2002 04:47:52 -0500 (CDT) From: Max Okumoto Date: Fri, 16 Aug 2002 04:47:52 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: libh/release/scripts Dialog.tcl Hui.tcl setupNew.tcl Message-Id: <20020816094752.4E39117404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG okumoto 2002/08/16 04:47:52 CDT Modified files: release/scripts Dialog.tcl Hui.tcl setupNew.tcl Log: Move destruction of hui object into Hui package. Revision Changes Path 1.2 +1 -2 libh/release/scripts/Dialog.tcl 1.2 +20 -3 libh/release/scripts/Hui.tcl 1.2 +2 -0 libh/release/scripts/setupNew.tcl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Fri Aug 16 7:19:22 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A8F037B400 for ; Fri, 16 Aug 2002 07:19:21 -0700 (PDT) Received: from mail1.qc.uunet.ca (mail1.qc.uunet.ca [198.168.54.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F07643E6A for ; Fri, 16 Aug 2002 07:19:20 -0700 (PDT) (envelope-from anarcat@anarcat.ath.cx) Received: from xtanbul (IDENT:506@[216.94.147.34]) by mail1.qc.uunet.ca (8.10.2/8.10.2) with ESMTP id g7GEJDN25653; Fri, 16 Aug 2002 10:19:14 -0400 Date: Fri, 16 Aug 2002 10:08:56 -0400 Subject: Re: cvs commit: libh/doc/sysinstall2 sysinstall2.sgml Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) Cc: libh@FreeBSD.ORG To: Max Okumoto From: Antoine Beaupre In-Reply-To: Message-Id: Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.482) Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Friday, August 16, 2002, at 04:07 AM, Max Okumoto wrote: > > If only we were a GNU project :-) What would it change? We could still link to it if it saves us the hassle of maintaining our own UI library. ;) > Yea, I would like libh to be close to DLDialog. It's already pretty close. Things I see are missing: - images - combo box - type-restricted input boxes (dldialog has "password", "numeric" and "ip", apparently, but that's easy to do anyways) apart from that, DLDialog is limited. And I don't think we'll have any problems implementing those widgets on our side. A. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Fri Aug 16 9:56:42 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0ADCD37B400 for ; Fri, 16 Aug 2002 09:56:41 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id C647443E70 for ; Fri, 16 Aug 2002 09:56:40 -0700 (PDT) (envelope-from okumoto@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3030) id 30C8517404; Fri, 16 Aug 2002 11:56:40 -0500 (CDT) From: Max Okumoto Date: Fri, 16 Aug 2002 11:56:40 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: libh/lib/Hui Hui.ii HuiGroup.hh libh/lib/HuiTv HuiTv.ii HuiTvGroup.cc HuiTvGroup.hh HuiTvLabel.cc HuiTvLabel.hh Message-Id: <20020816165640.30C8517404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG okumoto 2002/08/16 11:56:40 CDT Modified files: lib/Hui Hui.ii HuiGroup.hh lib/HuiTv HuiTv.ii HuiTvGroup.cc HuiTvGroup.hh HuiTvLabel.cc HuiTvLabel.hh Log: Working on positioning of labels Revision Changes Path 1.2 +1 -1 libh/lib/Hui/Hui.ii 1.2 +2 -2 libh/lib/Hui/HuiGroup.hh 1.2 +7 -5 libh/lib/HuiTv/HuiTv.ii 1.39 +4 -6 libh/lib/HuiTv/HuiTvGroup.cc 1.2 +2 -2 libh/lib/HuiTv/HuiTvGroup.hh 1.38 +3 -2 libh/lib/HuiTv/HuiTvLabel.cc 1.2 +3 -2 libh/lib/HuiTv/HuiTvLabel.hh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Sat Aug 17 2:33:54 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6066E37B400 for ; Sat, 17 Aug 2002 02:33:51 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCF8F43E72 for ; Sat, 17 Aug 2002 02:33:50 -0700 (PDT) (envelope-from okumoto@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3030) id ED45317404; Sat, 17 Aug 2002 04:33:49 -0500 (CDT) From: Max Okumoto Date: Sat, 17 Aug 2002 04:33:49 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: libh/bin/HuiTvTest main.cc libh/lib/Hui Hui.hh Hui.ii HuiGroup.hh HuiMenuSubmenu.hh HuiWidget.hh libh/lib/HuiTv HuiTv.cc HuiTv.hh HuiTv.ii HuiTvButton.cc HuiTvButton.hh HuiTvButtonsGroup.cc HuiTvButtonsGroup.hh HuiTvCheckBoxes.cc ... Message-Id: <20020817093349.ED45317404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG okumoto 2002/08/17 04:33:49 CDT Modified files: bin/HuiTvTest main.cc lib/Hui Hui.hh Hui.ii HuiGroup.hh HuiMenuSubmenu.hh HuiWidget.hh lib/HuiTv HuiTv.cc HuiTv.hh HuiTv.ii HuiTvButton.cc HuiTvButton.hh HuiTvButtonsGroup.cc HuiTvButtonsGroup.hh HuiTvCheckBoxes.cc HuiTvCheckBoxes.hh HuiTvContainer.cc HuiTvContainer.hh HuiTvDialog.cc HuiTvDialog.hh HuiTvEmbedded.cc HuiTvEmbedded.hh HuiTvGroup.cc HuiTvGroup.hh HuiTvInputLine.cc HuiTvInputLine.hh HuiTvLabel.cc HuiTvLabel.hh HuiTvListBox.cc HuiTvListBox.hh HuiTvMenuBar.cc HuiTvMenuBar.hh HuiTvMenuButton.cc HuiTvMenuButton.hh HuiTvMenuItem.cc HuiTvMenuItem.hh HuiTvMenuSeparator.cc HuiTvMenuSeparator.hh HuiTvMenuSubmenu.cc HuiTvMenuSubmenu.hh HuiTvProgressIndicator.cc HuiTvProgressIndicator.hh HuiTvRadioMenu.cc HuiTvRadioMenu.hh HuiTvTextEdit.cc HuiTvTextEdit.hh HuiTvToplevel.hh HuiTvWidget.cc HuiTvWidget.hh HuiTvWindow.cc HuiTvWindow.hh release/scripts Dialog.tcl Log: Cleanup object name code Revision Changes Path 1.2 +10 -16 libh/bin/HuiTvTest/main.cc 1.41 +1 -13 libh/lib/Hui/Hui.hh 1.3 +0 -34 libh/lib/Hui/Hui.ii 1.3 +1 -10 libh/lib/Hui/HuiGroup.hh 1.2 +1 -4 libh/lib/Hui/HuiMenuSubmenu.hh 1.2 +1 -23 libh/lib/Hui/HuiWidget.hh 1.41 +1 -21 libh/lib/HuiTv/HuiTv.cc 1.2 +1 -6 libh/lib/HuiTv/HuiTv.hh 1.3 +0 -5 libh/lib/HuiTv/HuiTv.ii 1.39 +2 -3 libh/lib/HuiTv/HuiTvButton.cc 1.2 +1 -2 libh/lib/HuiTv/HuiTvButton.hh 1.37 +2 -3 libh/lib/HuiTv/HuiTvButtonsGroup.cc 1.2 +1 -2 libh/lib/HuiTv/HuiTvButtonsGroup.hh 1.40 +1 -3 libh/lib/HuiTv/HuiTvCheckBoxes.cc 1.2 +1 -2 libh/lib/HuiTv/HuiTvCheckBoxes.hh 1.39 +2 -3 libh/lib/HuiTv/HuiTvContainer.cc 1.2 +1 -2 libh/lib/HuiTv/HuiTvContainer.hh 1.36 +2 -3 libh/lib/HuiTv/HuiTvDialog.cc 1.2 +1 -2 libh/lib/HuiTv/HuiTvDialog.hh 1.38 +2 -3 libh/lib/HuiTv/HuiTvEmbedded.cc 1.2 +1 -2 libh/lib/HuiTv/HuiTvEmbedded.hh 1.40 +1 -35 libh/lib/HuiTv/HuiTvGroup.cc 1.3 +3 -15 libh/lib/HuiTv/HuiTvGroup.hh 1.37 +2 -3 libh/lib/HuiTv/HuiTvInputLine.cc 1.2 +1 -2 libh/lib/HuiTv/HuiTvInputLine.hh 1.39 +2 -3 libh/lib/HuiTv/HuiTvLabel.cc 1.3 +1 -2 libh/lib/HuiTv/HuiTvLabel.hh 1.37 +2 -3 libh/lib/HuiTv/HuiTvListBox.cc 1.2 +1 -2 libh/lib/HuiTv/HuiTvListBox.hh 1.35 +5 -3 libh/lib/HuiTv/HuiTvMenuBar.cc 1.2 +2 -2 libh/lib/HuiTv/HuiTvMenuBar.hh 1.35 +2 -3 libh/lib/HuiTv/HuiTvMenuButton.cc 1.2 +1 -2 libh/lib/HuiTv/HuiTvMenuButton.hh 1.35 +2 -3 libh/lib/HuiTv/HuiTvMenuItem.cc 1.2 +1 -2 libh/lib/HuiTv/HuiTvMenuItem.hh 1.35 +2 -3 libh/lib/HuiTv/HuiTvMenuSeparator.cc 1.2 +1 -2 libh/lib/HuiTv/HuiTvMenuSeparator.hh 1.36 +3 -25 libh/lib/HuiTv/HuiTvMenuSubmenu.cc 1.2 +1 -9 libh/lib/HuiTv/HuiTvMenuSubmenu.hh 1.37 +2 -3 libh/lib/HuiTv/HuiTvProgressIndicator.cc 1.2 +1 -2 libh/lib/HuiTv/HuiTvProgressIndicator.hh 1.38 +1 -3 libh/lib/HuiTv/HuiTvRadioMenu.cc 1.2 +1 -2 libh/lib/HuiTv/HuiTvRadioMenu.hh 1.37 +2 -3 libh/lib/HuiTv/HuiTvTextEdit.cc 1.2 +1 -2 libh/lib/HuiTv/HuiTvTextEdit.hh 1.2 +3 -3 libh/lib/HuiTv/HuiTvToplevel.hh 1.36 +3 -5 libh/lib/HuiTv/HuiTvWidget.cc 1.2 +2 -31 libh/lib/HuiTv/HuiTvWidget.hh 1.37 +5 -6 libh/lib/HuiTv/HuiTvWindow.cc 1.2 +1 -2 libh/lib/HuiTv/HuiTvWindow.hh 1.3 +8 -5 libh/release/scripts/Dialog.tcl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Sat Aug 17 2:38:20 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC14937B400 for ; Sat, 17 Aug 2002 02:38:19 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA60543E42 for ; Sat, 17 Aug 2002 02:38:19 -0700 (PDT) (envelope-from okumoto@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3030) id 4957C17404; Sat, 17 Aug 2002 04:38:19 -0500 (CDT) From: Max Okumoto Date: Sat, 17 Aug 2002 04:38:19 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: libh/release/scripts Dialog.tcl Message-Id: <20020817093819.4957C17404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG okumoto 2002/08/17 04:38:19 CDT Modified files: release/scripts Dialog.tcl Log: Cleanup object name code Revision Changes Path 1.4 +21 -21 libh/release/scripts/Dialog.tcl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Sat Aug 17 2:47:29 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2080137B400 for ; Sat, 17 Aug 2002 02:47:26 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CD9543E75 for ; Sat, 17 Aug 2002 02:47:25 -0700 (PDT) (envelope-from okumoto@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3030) id 8177C17404; Sat, 17 Aug 2002 04:47:24 -0500 (CDT) From: Max Okumoto Date: Sat, 17 Aug 2002 04:47:24 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: libh/lib/Hui Dim.hh Hui.hh HuiButton.hh HuiButtonsGroup.hh HuiCallback.hh HuiCheckBoxes.hh HuiContainer.hh HuiDialog.hh HuiEmbedded.hh HuiGroup.hh HuiInputLine.hh HuiLabel.hh HuiListBox.hh HuiMenuButton.hh HuiMenuItem.hh ... Message-Id: <20020817094724.8177C17404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG okumoto 2002/08/17 04:47:24 CDT Modified files: lib/Hui Dim.hh Hui.hh HuiButton.hh HuiButtonsGroup.hh HuiCallback.hh HuiCheckBoxes.hh HuiContainer.hh HuiDialog.hh HuiEmbedded.hh HuiGroup.hh HuiInputLine.hh HuiLabel.hh HuiListBox.hh HuiMenuButton.hh HuiMenuItem.hh HuiMenuSeparator.hh HuiMenuSubmenu.hh HuiProgressIndicator.hh HuiRadioMenu.hh HuiTextEdit.hh HuiToplevel.hh HuiWidget.hh HuiWindow.hh lib/HuiTv HuiTv.hh HuiTvApplication.hh HuiTvButton.hh HuiTvButtonsGroup.hh HuiTvCheckBoxes.hh HuiTvContainer.hh HuiTvDialog.hh HuiTvEmbedded.hh HuiTvGroup.hh HuiTvInputLine.hh HuiTvLabel.hh HuiTvListBox.hh HuiTvMenuBar.hh HuiTvMenuButton.hh HuiTvMenuItem.hh HuiTvMenuSeparator.hh HuiTvMenuSubmenu.hh HuiTvProgressIndicator.hh HuiTvRadioMenu.hh HuiTvTextEdit.hh HuiTvTitle.hh HuiTvToplevel.hh HuiTvWidget.hh HuiTvWindow.hh release/scripts Dialog.tcl tools/bm BuildMake.hh Exceptions.hh Library.hh MakeDependency.hh MakeVariable.hh Module.hh ObjectCollection.hh Program.hh Log: Update header guards Revision Changes Path 1.3 +4 -4 libh/lib/Hui/Dim.hh 1.42 +4 -4 libh/lib/Hui/Hui.hh 1.2 +4 -4 libh/lib/Hui/HuiButton.hh 1.2 +4 -4 libh/lib/Hui/HuiButtonsGroup.hh 1.2 +4 -4 libh/lib/Hui/HuiCallback.hh 1.2 +4 -4 libh/lib/Hui/HuiCheckBoxes.hh 1.2 +4 -4 libh/lib/Hui/HuiContainer.hh 1.2 +4 -4 libh/lib/Hui/HuiDialog.hh 1.2 +4 -4 libh/lib/Hui/HuiEmbedded.hh 1.4 +4 -4 libh/lib/Hui/HuiGroup.hh 1.2 +4 -4 libh/lib/Hui/HuiInputLine.hh 1.2 +4 -4 libh/lib/Hui/HuiLabel.hh 1.2 +4 -4 libh/lib/Hui/HuiListBox.hh 1.2 +4 -4 libh/lib/Hui/HuiMenuButton.hh 1.2 +4 -4 libh/lib/Hui/HuiMenuItem.hh 1.2 +4 -4 libh/lib/Hui/HuiMenuSeparator.hh 1.3 +4 -4 libh/lib/Hui/HuiMenuSubmenu.hh 1.10 +4 -4 libh/lib/Hui/HuiProgressIndicator.hh 1.2 +4 -4 libh/lib/Hui/HuiRadioMenu.hh 1.2 +4 -4 libh/lib/Hui/HuiTextEdit.hh 1.2 +4 -4 libh/lib/Hui/HuiToplevel.hh 1.3 +4 -4 libh/lib/Hui/HuiWidget.hh 1.2 +4 -4 libh/lib/Hui/HuiWindow.hh 1.3 +4 -4 libh/lib/HuiTv/HuiTv.hh 1.2 +4 -4 libh/lib/HuiTv/HuiTvApplication.hh 1.3 +4 -4 libh/lib/HuiTv/HuiTvButton.hh 1.3 +4 -4 libh/lib/HuiTv/HuiTvButtonsGroup.hh 1.3 +4 -4 libh/lib/HuiTv/HuiTvCheckBoxes.hh 1.3 +4 -4 libh/lib/HuiTv/HuiTvContainer.hh 1.3 +4 -4 libh/lib/HuiTv/HuiTvDialog.hh 1.3 +4 -4 libh/lib/HuiTv/HuiTvEmbedded.hh 1.4 +4 -4 libh/lib/HuiTv/HuiTvGroup.hh 1.3 +4 -4 libh/lib/HuiTv/HuiTvInputLine.hh 1.4 +4 -4 libh/lib/HuiTv/HuiTvLabel.hh 1.3 +4 -4 libh/lib/HuiTv/HuiTvListBox.hh 1.3 +4 -4 libh/lib/HuiTv/HuiTvMenuBar.hh 1.3 +4 -4 libh/lib/HuiTv/HuiTvMenuButton.hh 1.3 +4 -4 libh/lib/HuiTv/HuiTvMenuItem.hh 1.3 +4 -4 libh/lib/HuiTv/HuiTvMenuSeparator.hh 1.3 +4 -4 libh/lib/HuiTv/HuiTvMenuSubmenu.hh 1.3 +4 -4 libh/lib/HuiTv/HuiTvProgressIndicator.hh 1.3 +4 -4 libh/lib/HuiTv/HuiTvRadioMenu.hh 1.3 +4 -4 libh/lib/HuiTv/HuiTvTextEdit.hh 1.2 +4 -4 libh/lib/HuiTv/HuiTvTitle.hh 1.3 +4 -4 libh/lib/HuiTv/HuiTvToplevel.hh 1.3 +4 -4 libh/lib/HuiTv/HuiTvWidget.hh 1.3 +4 -4 libh/lib/HuiTv/HuiTvWindow.hh 1.5 +2 -2 libh/release/scripts/Dialog.tcl 1.5 +3 -3 libh/tools/bm/BuildMake.hh 1.2 +3 -3 libh/tools/bm/Exceptions.hh 1.5 +3 -3 libh/tools/bm/Library.hh 1.4 +3 -3 libh/tools/bm/MakeDependency.hh 1.4 +3 -3 libh/tools/bm/MakeVariable.hh 1.8 +3 -3 libh/tools/bm/Module.hh 1.9 +3 -3 libh/tools/bm/ObjectCollection.hh 1.7 +3 -3 libh/tools/bm/Program.hh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Sat Aug 17 3:18:24 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F66137B400 for ; Sat, 17 Aug 2002 03:18:24 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF53643E3B for ; Sat, 17 Aug 2002 03:18:23 -0700 (PDT) (envelope-from okumoto@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3030) id 6BB4117404; Sat, 17 Aug 2002 05:18:23 -0500 (CDT) From: Max Okumoto Date: Sat, 17 Aug 2002 05:18:23 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: libh/lib/HuiTv HuiTvLabel.cc libh/release/scripts Dialog.tcl Message-Id: <20020817101823.6BB4117404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG okumoto 2002/08/17 05:18:23 CDT Modified files: lib/HuiTv HuiTvLabel.cc release/scripts Dialog.tcl Log: Trying to layout the same dialog as on the DLDialog web page. http://parzelle.de/Linux/Applications/dldialog/tv-maxi.gif Revision Changes Path 1.40 +2 -2 libh/lib/HuiTv/HuiTvLabel.cc 1.6 +15 -2 libh/release/scripts/Dialog.tcl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message From owner-freebsd-libh Sat Aug 17 14:59:17 2002 Delivered-To: freebsd-libh@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 387A637B400 for ; Sat, 17 Aug 2002 14:59:13 -0700 (PDT) Received: from usw4.freebsd.org (usw4.freebsd.org [209.180.6.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id D680B43E4A for ; Sat, 17 Aug 2002 14:59:12 -0700 (PDT) (envelope-from okumoto@usw4.freebsd.org) Received: by usw4.freebsd.org (Postfix, from userid 3030) id 234AC17404; Sat, 17 Aug 2002 16:59:02 -0500 (CDT) From: Max Okumoto Date: Sat, 17 Aug 2002 16:59:02 -0500 (CDT) To: libh@FreeBSD.org Subject: cvs commit: libh/lib/Hui Hui.ii HuiGroup.hh module.m4 libh/lib/HuiTv HuiTvGroup.cc HuiTvGroup.hh HuiTvListBox.cc HuiTvListBox.hh libh/release/scripts Dialog.tcl Message-Id: <20020817215902.234AC17404@usw4.freebsd.org> Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG okumoto 2002/08/17 16:59:02 CDT Modified files: lib/Hui Hui.ii HuiGroup.hh module.m4 lib/HuiTv HuiTvGroup.cc HuiTvGroup.hh HuiTvListBox.cc HuiTvListBox.hh release/scripts Dialog.tcl Log: Cleanup up HuiTvListBox object Revision Changes Path 1.4 +17 -4 libh/lib/Hui/Hui.ii 1.5 +4 -3 libh/lib/Hui/HuiGroup.hh 1.2 +1 -0 libh/lib/Hui/module.m4 1.41 +6 -7 libh/lib/HuiTv/HuiTvGroup.cc 1.5 +9 -4 libh/lib/HuiTv/HuiTvGroup.hh 1.38 +17 -13 libh/lib/HuiTv/HuiTvListBox.cc 1.4 +17 -24 libh/lib/HuiTv/HuiTvListBox.hh 1.7 +6 -1 libh/release/scripts/Dialog.tcl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message