From nobody Sat Nov 29 13:20:23 2003 Received: (qmail 1623 invoked from network); 29 Nov 2003 18:19:50 -0000 Received: from unknown (HELO mta4.srv.hcvlny.cv.net) (167.206.5.70) by mozdev.org with SMTP; 29 Nov 2003 18:19:50 -0000 Received: from mozdev.org (ool-182f72f1.dyn.optonline.net [24.47.114.241]) by mta4.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.16 (built May 14 2003)) with ESMTP id <0HP400M27LA7PE@mta4.srv.hcvlny.cv.net> for fastcomponent@mozdev.org; Sat, 29 Nov 2003 13:13:19 -0500 (EST) Date: Sat, 29 Nov 2003 13:13:18 -0500 From: Pete Collins To: fastcomponent@mozdev.org Message-id: <3FC8E1BE.8090105@mozdev.org> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-us, en User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6a) Gecko/20031029 Subject: [Fastcomponent] Errors on cygwin X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2003 18:19:50 -0000 Brian King wrote: Error 1 -------- "shift: can't shift that many" Don't know what this is about. Error 2 ------- "/cygdrive/c/Program: not found using uuid: []" I do have uuidgen on my system: C:\mozilla\src\1_5_BRANCH\mozilla>which uuidgen /cygdrive/c/Program Files/Microsoft Visual Studio/Common/Tools/uuidgen ... It appears to be a problem with paths with spaces in them. Perhaps the solution is to wrap a "" set of quotes around the path for these instances. Error 3: -------- fast_component.sh: cannot create ~/.cvspass: directory nonexistent It looks like you are querying this file to find guest information so they can log in to grab files. What exactly is going on with the guest stuff? Here is my .cvspass information: C:\mozilla\src\1_5_BRANCH\mozilla>dir \.cvspass /s Volume in drive C is LOCAL DISK Volume Serial Number is 07D0-0608 Directory of C:\tmp 29.11.2003 17:45 177 .cvspass 1 File(s) 177 bytes Directory of C:\mozilla 11.08.2003 14:00 63 .cvspass 1 File(s) 63 bytes Total Files Listed: 2 File(s) 240 bytes 0 Dir(s) 95.535.104 bytes free OTHER ----- To make this cross-platform, we will probably need to do some platform dependent code. How do you do platform switches in these scripts. Perhaps you have some in one of the jslib scripts that you could point me to? -- Pete Collins www.mozdev.org www.mozdevgroup.com From nobody Sat Nov 29 13:30:06 2003 Received: (qmail 2040 invoked from network); 29 Nov 2003 18:29:34 -0000 Received: from unknown (HELO mta8.srv.hcvlny.cv.net) (167.206.5.75) by mozdev.org with SMTP; 29 Nov 2003 18:29:34 -0000 Received: from mozdev.org (ool-182f72f1.dyn.optonline.net [24.47.114.241]) by mta8.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.16 (built May 14 2003)) with ESMTP id <0HP400M5FLQX8W@mta8.srv.hcvlny.cv.net> for fastcomponent@mozdev.org; Sat, 29 Nov 2003 13:23:22 -0500 (EST) Date: Sat, 29 Nov 2003 13:23:29 -0500 From: Pete Collins Subject: Re: [Fastcomponent] Errors on cygwin In-reply-to: <3FC8E1BE.8090105@mozdev.org> To: fastcomponent@mozdev.org Message-id: <3FC8E421.8060708@mozdev.org> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-us, en User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6a) Gecko/20031029 References: <3FC8E1BE.8090105@mozdev.org> X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2003 18:29:34 -0000 Pete Collins wrote: > Brian King wrote: Brian, I got my windows machine working again. So i'll give it a try now. > > Error 1 > -------- > "shift: can't shift that many" > Don't know what this is about. "shif" is used for the shell command line arguments. > > Error 2 > ------- > "/cygdrive/c/Program: not found > using uuid: []" > I do have uuidgen on my system: > C:\mozilla\src\1_5_BRANCH\mozilla>which uuidgen > /cygdrive/c/Program Files/Microsoft Visual Studio/Common/Tools/uuidgen > ... It musn't be in your path. But the script is designed to work w/out uuidgen. > It appears to be a problem with paths with spaces in them. Perhaps the > solution is to wrap a "" set of quotes around the path for these instances. Perhaps, I need to test the script out before I can properly comment. > > Error 3: > -------- > fast_component.sh: cannot create ~/.cvspass: directory nonexistent > It looks like you are querying this file to find guest information so > they can log in to grab files. What exactly is going on with the guest > stuff? We create the cvspass for guest if it isn't there already. The problem w/ cygwin is sometime "~" is not properly set. > > Here is my .cvspass information: > C:\mozilla\src\1_5_BRANCH\mozilla>dir \.cvspass /s > Volume in drive C is LOCAL DISK > Volume Serial Number is 07D0-0608 > > Directory of C:\tmp > > 29.11.2003 17:45 177 .cvspass > 1 File(s) 177 bytes > > Directory of C:\mozilla > > 11.08.2003 14:00 63 .cvspass > 1 File(s) 63 bytes > > Total Files Listed: > 2 File(s) 240 bytes > 0 Dir(s) 95.535.104 bytes free > > OTHER > ----- > To make this cross-platform, we will probably need to do some platform > dependent code. How do you do platform switches in these scripts. > Perhaps you have some in one of the jslib scripts that you could point > me to? I think the c++ code should work on WIN. We need to remove any specific compiler references I may have to gcc. I'm off to test on Win now. --pete -- Pete Collins www.mozdev.org www.mozdevgroup.com From nobody Sat Nov 29 14:10:48 2003 Received: (qmail 3892 invoked from network); 29 Nov 2003 19:10:15 -0000 Received: from unknown (HELO pegasus.siol.net) (193.189.160.25) by mozdev.org with SMTP; 29 Nov 2003 19:10:15 -0000 Received: from kudu.siol.net ([10.10.10.22]) by pegasus.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031129190411.PITG26684.pegasus@kudu.siol.net> for ; Sat, 29 Nov 2003 20:04:11 +0100 Received: from mozdev.org ([212.30.67.59]) by kudu.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031129190410.ENMK7303.kudu@mozdev.org> for ; Sat, 29 Nov 2003 20:04:10 +0100 Message-ID: <3FC8EDC0.7000907@mozdev.org> Date: Sat, 29 Nov 2003 20:04:32 +0100 From: Brian King User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5) Gecko/20031017 X-Accept-Language: en-us, en MIME-Version: 1.0 To: fastcomponent@mozdev.org Subject: Re: [Fastcomponent] Errors on cygwin References: <3FC8E1BE.8090105@mozdev.org> <3FC8E421.8060708@mozdev.org> In-Reply-To: <3FC8E421.8060708@mozdev.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2003 19:10:15 -0000 On 29.11.2003 19:23, Pete Collins wrote: >> Error 2 >> ------- >> "/cygdrive/c/Program: not found >> using uuid: []" >> I do have uuidgen on my system: >> C:\mozilla\src\1_5_BRANCH\mozilla>which uuidgen >> /cygdrive/c/Program Files/Microsoft Visual Studio/Common/Tools/uuidgen >> ... > > It musn't be in your path. But the script is designed to work w/out > uuidgen. It is in my path (verified using 'set'). 'which' (shown above) would not return anything otherwise. >> It appears to be a problem with paths with spaces in them. Perhaps the >> solution is to wrap a "" set of quotes around the path for these >> instances. > > Perhaps, I need to test the script out before I can properly comment. This is a standard way to handle paths with spaces on windows, or else abbreviate them to 8 chatacters, something like: C:\Progra~1\Micro~1\Common\Tools > I think the c++ code should work on WIN. > > We need to remove any specific compiler references I may have to gcc. I was just referring to the shell script, not the templates code which I agree should be cross-platform already. -- Brian King www.mozdev.org www.mozdevgroup.com From nobody Sat Nov 29 14:22:57 2003 Received: (qmail 4356 invoked from network); 29 Nov 2003 19:22:26 -0000 Received: from unknown (HELO mta5.srv.hcvlny.cv.net) (167.206.5.78) by mozdev.org with SMTP; 29 Nov 2003 19:22:26 -0000 Received: from mozdev.org (ool-182f72f1.dyn.optonline.net [24.47.114.241]) by mta5.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.16 (built May 14 2003)) with ESMTP id <0HP40084TO6M81@mta5.srv.hcvlny.cv.net> for fastcomponent@mozdev.org; Sat, 29 Nov 2003 14:15:58 -0500 (EST) Date: Sat, 29 Nov 2003 14:15:57 -0500 From: Pete Collins Subject: Re: [Fastcomponent] Errors on cygwin In-reply-to: <3FC8EDC0.7000907@mozdev.org> To: fastcomponent@mozdev.org Message-id: <3FC8F06D.7000600@mozdev.org> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-us, en User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6a) Gecko/20031029 References: <3FC8E1BE.8090105@mozdev.org> <3FC8E421.8060708@mozdev.org> <3FC8EDC0.7000907@mozdev.org> X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2003 19:22:26 -0000 Ok, I got is working on Windows. Needed to "tweak" a few minor things. I will check in the new code shortly for additional testing. I'll post a heads up in a few. --pete -- Pete Collins www.mozdev.org www.mozdevgroup.com From nobody Sat Nov 29 14:29:53 2003 Received: (qmail 4631 invoked from network); 29 Nov 2003 19:29:20 -0000 Received: from unknown (HELO mta10.srv.hcvlny.cv.net) (167.206.5.85) by mozdev.org with SMTP; 29 Nov 2003 19:29:20 -0000 Received: from mozdev.org (ool-182f72f1.dyn.optonline.net [24.47.114.241]) by mta10.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.16 (built May 14 2003)) with ESMTP id <0HP400DM3OIHSY@mta10.srv.hcvlny.cv.net> for fastcomponent@mozdev.org; Sat, 29 Nov 2003 14:23:06 -0500 (EST) Date: Sat, 29 Nov 2003 14:22:52 -0500 From: Pete Collins Subject: Re: [Fastcomponent] Errors on cygwin In-reply-to: <3FC8F06D.7000600@mozdev.org> To: fastcomponent@mozdev.org Message-id: <3FC8F20C.8020901@mozdev.org> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-us, en User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6a) Gecko/20031029 References: <3FC8E1BE.8090105@mozdev.org> <3FC8E421.8060708@mozdev.org> <3FC8EDC0.7000907@mozdev.org> <3FC8F06D.7000600@mozdev.org> X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2003 19:29:20 -0000 Pete Collins wrote: > Ok, I got is working on Windows. Needed to "tweak" a few minor things. > > I will check in the new code shortly for additional testing. I'll post a > heads up in a few. Ok, Brian it seems to work peachy on WIndows, can you give it a spin? --pete -- Pete Collins www.mozdev.org www.mozdevgroup.com From nobody Sat Nov 29 16:01:52 2003 Received: (qmail 8441 invoked from network); 29 Nov 2003 21:01:15 -0000 Received: from unknown (HELO pegasus.siol.net) (193.189.160.25) by mozdev.org with SMTP; 29 Nov 2003 21:01:15 -0000 Received: from kudu.siol.net ([10.10.10.22]) by pegasus.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031129205508.PSHO26684.pegasus@kudu.siol.net> for ; Sat, 29 Nov 2003 21:55:08 +0100 Received: from mozdev.org ([213.250.9.15]) by kudu.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031129205508.HBAQ7303.kudu@mozdev.org> for ; Sat, 29 Nov 2003 21:55:08 +0100 Message-ID: <3FC907C1.5050506@mozdev.org> Date: Sat, 29 Nov 2003 21:55:29 +0100 From: Brian King User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5) Gecko/20031017 X-Accept-Language: en-us, en MIME-Version: 1.0 To: fastcomponent@mozdev.org Subject: Re: [Fastcomponent] Errors on cygwin References: <3FC8E1BE.8090105@mozdev.org> <3FC8E421.8060708@mozdev.org> <3FC8EDC0.7000907@mozdev.org> <3FC8F06D.7000600@mozdev.org> <3FC8F20C.8020901@mozdev.org> In-Reply-To: <3FC8F20C.8020901@mozdev.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2003 21:01:20 -0000 On 29.11.2003 20:22, Pete Collins wrote: > Ok, Brian it seems to work peachy on WIndows, can you give it a spin? There was still one problem with uuidgen if it is in a path with spaces in it (it is on my env, probably not on yours so you didn't come across it). I was coming up with a blank uuid. So I fixed the script and checked it in. Just wrapped quotes around the path ($uuidbin). Please test it your end on Win and Linux. FYI, here are the details of the change. It works peachy, as you would say, for me now. Nice! Index: fast_component.sh =================================================================== RCS file: /cvs/fastcomponent/www/scripts/fast_component.sh,v retrieving revision 1.20 diff -u -r1.20 fast_component.sh --- fast_component.sh 29 Nov 2003 19:56:16 -0000 1.20 +++ fast_component.sh 29 Nov 2003 20:52:39 -0000 @@ -233,7 +233,7 @@ if [ $? -eq 0 ]; then uuidbin=`which uuidgen`; - uuid=`$uuidbin`; + uuid=`"$uuidbin"`; echo using uuid: [$uuid]; else uuid="7c0c8dae-ce7e-4c31-ba41-c270f604b629"; -- Brian King www.mozdev.org www.mozdevgroup.com From nobody Sat Nov 29 16:06:49 2003 Received: (qmail 8568 invoked from network); 29 Nov 2003 21:06:16 -0000 Received: from unknown (HELO mta6.srv.hcvlny.cv.net) (167.206.5.72) by mozdev.org with SMTP; 29 Nov 2003 21:06:16 -0000 Received: from mozdev.org (ool-182f72f1.dyn.optonline.net [24.47.114.241]) by mta6.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.16 (built May 14 2003)) with ESMTP id <0HP400GD7T0C9C@mta6.srv.hcvlny.cv.net> for fastcomponent@mozdev.org; Sat, 29 Nov 2003 16:00:14 -0500 (EST) Date: Sat, 29 Nov 2003 16:00:06 -0500 From: Pete Collins Subject: Re: [Fastcomponent] Errors on cygwin In-reply-to: <3FC907C1.5050506@mozdev.org> To: fastcomponent@mozdev.org Message-id: <3FC908D6.6020901@mozdev.org> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-us, en User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6a) Gecko/20031029 References: <3FC8E1BE.8090105@mozdev.org> <3FC8E421.8060708@mozdev.org> <3FC8EDC0.7000907@mozdev.org> <3FC8F06D.7000600@mozdev.org> <3FC8F20C.8020901@mozdev.org> <3FC907C1.5050506@mozdev.org> X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2003 21:06:16 -0000 > So I fixed the script and checked it in. Just wrapped quotes around the > path ($uuidbin). Please test it your end on Win and Linux. > > FYI, here are the details of the change. It works peachy, as you would > say, for me now. Nice! Cool. Soon I will add code to make a js component w/ the tool as well. In addition to adding stub xul package/xpi files. It has some real potential. --pete > > Index: fast_component.sh > =================================================================== > RCS file: /cvs/fastcomponent/www/scripts/fast_component.sh,v > retrieving revision 1.20 > diff -u -r1.20 fast_component.sh > --- fast_component.sh 29 Nov 2003 19:56:16 -0000 1.20 > +++ fast_component.sh 29 Nov 2003 20:52:39 -0000 > @@ -233,7 +233,7 @@ > > if [ $? -eq 0 ]; then > uuidbin=`which uuidgen`; > - uuid=`$uuidbin`; > + uuid=`"$uuidbin"`; > echo using uuid: [$uuid]; > else > uuid="7c0c8dae-ce7e-4c31-ba41-c270f604b629"; > -- Pete Collins www.mozdev.org www.mozdevgroup.com From nobody Sat Nov 29 16:10:19 2003 Received: (qmail 8753 invoked from network); 29 Nov 2003 21:09:15 -0000 Received: from unknown (HELO mta3.srv.hcvlny.cv.net) (167.206.5.69) by mozdev.org with SMTP; 29 Nov 2003 21:09:15 -0000 Received: from mozdev.org (ool-182f72f1.dyn.optonline.net [24.47.114.241]) by mta3.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.16 (built May 14 2003)) with ESMTP id <0HP400DWQT5BGZ@mta3.srv.hcvlny.cv.net> for fastcomponent@mozdev.org; Sat, 29 Nov 2003 16:03:11 -0500 (EST) Date: Sat, 29 Nov 2003 16:03:02 -0500 From: Pete Collins Subject: Re: [Fastcomponent] Errors on cygwin In-reply-to: <3FC907C1.5050506@mozdev.org> To: fastcomponent@mozdev.org Message-id: <3FC90986.7040200@mozdev.org> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-us, en User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6a) Gecko/20031029 References: <3FC8E1BE.8090105@mozdev.org> <3FC8E421.8060708@mozdev.org> <3FC8EDC0.7000907@mozdev.org> <3FC8F06D.7000600@mozdev.org> <3FC8F20C.8020901@mozdev.org> <3FC907C1.5050506@mozdev.org> X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2003 21:09:16 -0000 X-List-Received-Date: Sat, 29 Nov 2003 21:09:16 -0000 X-List-Received-Date: Sat, 29 Nov 2003 21:09:16 -0000 > FYI, here are the details of the change. It works peachy, as you would > say, for me now. Nice! BTW: Did you try "-c" (compile) and "-t" (test) options? --pete -- Pete Collins www.mozdev.org www.mozdevgroup.com From nobody Sat Nov 29 16:10:20 2003 Received: (qmail 8762 invoked from network); 29 Nov 2003 21:09:28 -0000 Received: from unknown (HELO pegasus.siol.net) (193.189.160.25) by mozdev.org with SMTP; 29 Nov 2003 21:09:28 -0000 Received: from kudu.siol.net ([10.10.10.22]) by pegasus.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031129210319.PSVW26684.pegasus@kudu.siol.net> for ; Sat, 29 Nov 2003 22:03:19 +0100 Received: from mozdev.org ([213.250.9.15]) by kudu.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031129210319.HHAQ7303.kudu@mozdev.org> for ; Sat, 29 Nov 2003 22:03:19 +0100 Message-ID: <3FC909AD.6090400@mozdev.org> Date: Sat, 29 Nov 2003 22:03:41 +0100 From: Brian King User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5) Gecko/20031017 X-Accept-Language: en-us, en MIME-Version: 1.0 To: fastcomponent@mozdev.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: [Fastcomponent] ucword X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2003 21:09:28 -0000 I create a component called 'snaps': sh fast_component.sh snaps Everything is created nice ... the 'snaps' directory in extensions/, all the right sub-dirs, and so on. However, the files have the 's' at the end cut off e.g. mozISnap.idl instead of mozISnaps.idl Is this intentional? Obviously something to do with this code: # ucword flu (First Letter Upper) fl=`echo $project_name | cut -b1`; flu=`echo $fl | cut -b1 | tr [a-z] [A-Z]`; pn_end=`echo $project_name | sed -e's:'$fl'::g'`; ucword=$flu$pn_end; -- Brian King www.mozdev.org www.mozdevgroup.com From nobody Sat Nov 29 16:16:49 2003 Received: (qmail 9061 invoked from network); 29 Nov 2003 21:16:16 -0000 Received: from unknown (HELO pegasus.siol.net) (193.189.160.25) by mozdev.org with SMTP; 29 Nov 2003 21:16:16 -0000 Received: from kudu.siol.net ([10.10.10.22]) by pegasus.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031129211012.PTJY26684.pegasus@kudu.siol.net> for ; Sat, 29 Nov 2003 22:10:12 +0100 Received: from mozdev.org ([213.250.9.15]) by kudu.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031129211012.HLRS7303.kudu@mozdev.org> for ; Sat, 29 Nov 2003 22:10:12 +0100 Message-ID: <3FC90B49.4080206@mozdev.org> Date: Sat, 29 Nov 2003 22:10:33 +0100 From: Brian King User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5) Gecko/20031017 X-Accept-Language: en-us, en MIME-Version: 1.0 To: fastcomponent@mozdev.org Subject: Re: [Fastcomponent] Errors on cygwin References: <3FC8E1BE.8090105@mozdev.org> <3FC8E421.8060708@mozdev.org> <3FC8EDC0.7000907@mozdev.org> <3FC8F06D.7000600@mozdev.org> <3FC8F20C.8020901@mozdev.org> <3FC907C1.5050506@mozdev.org> <3FC908D6.6020901@mozdev.org> In-Reply-To: <3FC908D6.6020901@mozdev.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2003 21:16:17 -0000 On 29.11.2003 22:00, Pete Collins wrote: > Soon I will add code to make a js component w/ the tool as well. In > addition to adding stub xul package/xpi files. > > It has some real potential. Yes, it has great potential. Perhaps it should have been called something like fastapp :) Rob Ginda has already done something similar with XULKit: http://www.hacksrus.com/~ginda/xulkit/doc/ But this uses Perl scripts. The advantage with fastcomponent is that it is more native to the Mozilla platform. -- Brian King www.mozdev.org www.mozdevgroup.com From nobody Sat Nov 29 16:19:50 2003 Received: (qmail 9150 invoked from network); 29 Nov 2003 21:19:16 -0000 Received: from unknown (HELO mta11.srv.hcvlny.cv.net) (167.206.5.86) by mozdev.org with SMTP; 29 Nov 2003 21:19:16 -0000 Received: from mozdev.org (ool-182f72f1.dyn.optonline.net [24.47.114.241]) by mta11.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.16 (built May 14 2003)) with ESMTP id <0HP40008OTM0DV@mta11.srv.hcvlny.cv.net> for fastcomponent@mozdev.org; Sat, 29 Nov 2003 16:13:12 -0500 (EST) Date: Sat, 29 Nov 2003 16:13:11 -0500 From: Pete Collins Subject: Re: [Fastcomponent] ucword In-reply-to: <3FC909AD.6090400@mozdev.org> To: fastcomponent@mozdev.org Message-id: <3FC90BE7.8060402@mozdev.org> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-us, en User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6a) Gecko/20031029 References: <3FC909AD.6090400@mozdev.org> X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2003 21:19:16 -0000 Brian King wrote: > I create a component called 'snaps': > > sh fast_component.sh snaps > > Everything is created nice ... the 'snaps' directory in extensions/, all > the right sub-dirs, and so on. > > However, the files have the 's' at the end cut off > e.g. > mozISnap.idl instead of mozISnaps.idl > > Is this intentional? Obviously something to do with this code: > > # ucword flu (First Letter Upper) > fl=`echo $project_name | cut -b1`; > flu=`echo $fl | cut -b1 | tr [a-z] [A-Z]`; > pn_end=`echo $project_name | sed -e's:'$fl'::g'`; > ucword=$flu$pn_end; > Interesting. That is a bug. I think if you get rid of the "g" (global) replace command in sed. eg: - pn_end=`echo $project_name | sed -e's:'$fl'::g'`; + pn_end=`echo $project_name | sed -e's:'$fl'::'`; I'll test out now. --pete -- Pete Collins www.mozdev.org www.mozdevgroup.com From nobody Sat Nov 29 16:26:56 2003 Received: (qmail 9666 invoked from network); 29 Nov 2003 21:26:23 -0000 Received: from unknown (HELO mta10.srv.hcvlny.cv.net) (167.206.5.85) by mozdev.org with SMTP; 29 Nov 2003 21:26:23 -0000 Received: from mozdev.org (ool-182f72f1.dyn.optonline.net [24.47.114.241]) by mta10.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.16 (built May 14 2003)) with ESMTP id <0HP400F32TXPRZ@mta10.srv.hcvlny.cv.net> for fastcomponent@mozdev.org; Sat, 29 Nov 2003 16:20:15 -0500 (EST) Date: Sat, 29 Nov 2003 16:20:12 -0500 From: Pete Collins Subject: Re: [Fastcomponent] ucword In-reply-to: <3FC90BE7.8060402@mozdev.org> To: fastcomponent@mozdev.org Message-id: <3FC90D8C.1060403@mozdev.org> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-us, en User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6a) Gecko/20031029 References: <3FC909AD.6090400@mozdev.org> <3FC90BE7.8060402@mozdev.org> X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2003 21:26:23 -0000 > - pn_end=`echo $project_name | sed -e's:'$fl'::g'`; > + pn_end=`echo $project_name | sed -e's:'$fl'::'`; That seemed to do the trick. --pete -- Pete Collins www.mozdev.org www.mozdevgroup.com From nobody Sat Nov 29 16:33:13 2003 Received: (qmail 9940 invoked from network); 29 Nov 2003 21:32:40 -0000 Received: from unknown (HELO pegasus.siol.net) (193.189.160.25) by mozdev.org with SMTP; 29 Nov 2003 21:32:40 -0000 Received: from kudu.siol.net ([10.10.10.22]) by pegasus.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031129212633.PUOQ26684.pegasus@kudu.siol.net> for ; Sat, 29 Nov 2003 22:26:33 +0100 Received: from mozdev.org ([213.250.9.15]) by kudu.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031129212632.HWUX7303.kudu@mozdev.org> for ; Sat, 29 Nov 2003 22:26:32 +0100 Message-ID: <3FC90F1D.30206@mozdev.org> Date: Sat, 29 Nov 2003 22:26:53 +0100 From: Brian King User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5) Gecko/20031017 X-Accept-Language: en-us, en MIME-Version: 1.0 To: fastcomponent@mozdev.org Subject: Re: [Fastcomponent] Errors on cygwin References: <3FC8E1BE.8090105@mozdev.org> <3FC8E421.8060708@mozdev.org> <3FC8EDC0.7000907@mozdev.org> <3FC8F06D.7000600@mozdev.org> <3FC8F20C.8020901@mozdev.org> <3FC907C1.5050506@mozdev.org> <3FC90986.7040200@mozdev.org> In-Reply-To: <3FC90986.7040200@mozdev.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2003 21:32:41 -0000 On 29.11.2003 22:03, Pete Collins wrote: > BTW: Did you try "-c" (compile) and "-t" (test) options? It compiles and tests fine for a component called 'lia'. When testing I get this: C:\mozilla\src\1_5_BRANCH\mozilla>sh fast_component.sh -t lia Starting Fast Component Test for New Project [lia] . . . can't open extensions/Lia.js: No such file or directory Should be extensions/scripts/lia.js, so the path is not constructed correctly. And for the 'snaps' component, there are compile errors (see below). Its probably related to the ucword issue I posted about earlier. ------------------------------------------ mozISnap.idl Creating .deps Creating .deps mozISnap.idl mozSnap.cpp Building deps for mozSnap.cpp mozSnap.cpp c:/mozilla/src/1_5_BRANCH/mozilla/extensions/snaps/base/src/mozSnap.h(16) : erro r C2146: syntax error : missing ';' before identifier 'mozSnap' c:/mozilla/src/1_5_BRANCH/mozilla/extensions/snaps/base/src/mozSnap.h(16) : erro r C2501: 'NS_DECL_MOZISNAPS' : missing storage-class or type specifiers ../../../../dist/include/string\nsAString.h(664) : fatal error C1903: unable to recover from previous error(s); stopping compilation In the directory /cygdrive/c/mozilla/src/1_5_BRANCH/mozilla/extensions/snaps/ba se/src The following command failed to execute properly: /cygdrive/c/mozilla/src/1_5_BRANCH/mozilla/./build/cygwin-wrapper cl -FomozSnap. obj -c -DOSTYPE="WINNT5.0" -DOSARCH="WINNT" -I../../../../dist/include/xpcom -I. ./../../../dist/include/string -I../../../../dist/include/snaps -I../../../../di st/include -I../../../../dist/include/nspr -TP -nologo -W3 -nologo -Gy -Fdsnaps_ s.pdb -DNDEBUG -DTRIMMED -MD -DX_DISPLAY_MISSING=1 -DHAVE_SNPRINTF=1 -D_WINDOWS= 1 -D_WIN32=1 -DWIN32=1 -DXP_WIN=1 -DXP_WIN32=1 -DHW_THREADS=1 -DWINVER=0x400 -DS TDC_HEADERS=1 -DWIN32_LEAN_AND_MEAN=1 -DNO_X11=1 -D_X86_=1 -DD_INO=d_ino -DMOZ_D EFAULT_TOOLKIT="windows" -DOJI=1 -DIBMBIDI=1 -DMOZ_VIEW_SOURCE=1 -DACCESSIBILITY =1 -DMOZ_XPINSTALL=1 -DMOZ_JSLOADER=1 -DMOZ_MATHML=1 -DMOZ_LOGGING=1 -DMOZ_USER_ DIR="Mozilla" -DMOZ_XUL=1 -DMOZ_PROFILESHARING=1 -DMOZ_PROFILELOCKING=1 -DMOZ_DL L_SUFFIX=".dll" -DJS_THREADSAFE=1 -DNS_PRINT_PREVIEW=1 -DNS_PRINTING=1 -DMOZILLA _VERSION="1.5" -D_MOZILLA_CONFIG_H_ -DMOZILLA_CLIENT /cygdrive/c/mozilla/src/1_5 _BRANCH/mozilla/extensions/snaps/base/src/mozSnap.cpp make[3]: *** [mozSnap.obj] Error 1 make[2]: *** [libs] Error 2 make[1]: *** [libs] Error 2 make: *** [all] Error 2 Finished compiling project extensions/snaps -- Brian King www.mozdev.org www.mozdevgroup.com From nobody Sun Nov 30 07:21:13 2003 Received: (qmail 42057 invoked from network); 30 Nov 2003 12:20:41 -0000 Received: from unknown (HELO pegasus.siol.net) (193.189.160.25) by mozdev.org with SMTP; 30 Nov 2003 12:20:41 -0000 Received: from kudu.siol.net ([10.10.10.22]) by pegasus.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031130121429.RSHG26684.pegasus@kudu.siol.net> for ; Sun, 30 Nov 2003 13:14:29 +0100 Received: from mozdev.org ([213.250.4.33]) by kudu.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031130121423.XNXC7303.kudu@mozdev.org> for ; Sun, 30 Nov 2003 13:14:23 +0100 Message-ID: <3FC9DF35.3010209@mozdev.org> Date: Sun, 30 Nov 2003 13:14:45 +0100 From: Brian King User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5) Gecko/20031017 X-Accept-Language: en-us, en MIME-Version: 1.0 To: fastcomponent@mozdev.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: [Fastcomponent] testing patch X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Nov 2003 12:20:41 -0000 I checked in a change to make -t work. Please review: Index: fast_component.sh =================================================================== RCS file: /cvs/fastcomponent/www/scripts/fast_component.sh,v retrieving revision 1.22 diff -u -r1.22 fast_component.sh --- fast_component.sh 29 Nov 2003 21:25:37 -0000 1.22 +++ fast_component.sh 30 Nov 2003 12:09:55 -0000 @@ -37,8 +37,8 @@ PROG=fast_component.sh MOZ_BIN=`pwd`; CODENAME="Fast Component"; -AUTHORS="Pete Collins"; -AUTH_EMAIL=""; +AUTHORS="Pete Collins,Brian King"; +AUTH_EMAIL=","; CONTACT=""; BUG_URL="http://fastcomponent.mozdev.org/bugs.html"; DATE="$Date: 2003/11/29 21:25:37 $"; @@ -208,7 +208,7 @@ if [ -f dist/bin/run-mozilla.sh ]; then dist/bin/run-mozilla.sh dist/bin/xpcshell extensions/$project_name/scripts/$project_name.js; else - dist/bin/xpcshell.exe extensions/$ucword.js; + dist/bin/xpcshell.exe extensions/$project_name/scripts/$project_name.js; fi else echo $project_name component files not found; -- Brian King www.mozdev.org www.mozdevgroup.com From nobody Sun Nov 30 09:12:40 2003 Received: (qmail 46955 invoked from network); 30 Nov 2003 14:12:07 -0000 Received: from unknown (HELO mta10.srv.hcvlny.cv.net) (167.206.5.85) by mozdev.org with SMTP; 30 Nov 2003 14:12:07 -0000 Received: from mozdev.org (ool-182f72f1.dyn.optonline.net [24.47.114.241]) by mta10.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.16 (built May 14 2003)) with ESMTP id <0HP600BY64I2GC@mta10.srv.hcvlny.cv.net> for fastcomponent@mozdev.org; Sun, 30 Nov 2003 09:06:02 -0500 (EST) Date: Sun, 30 Nov 2003 09:06:00 -0500 From: Pete Collins Subject: Re: [Fastcomponent] testing patch In-reply-to: <3FC9DF35.3010209@mozdev.org> To: fastcomponent@mozdev.org Message-id: <3FC9F948.2050103@mozdev.org> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-us, en User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6a) Gecko/20031029 References: <3FC9DF35.3010209@mozdev.org> X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Nov 2003 14:12:07 -0000 Brian King wrote: > I checked in a change to make -t work. else > - dist/bin/xpcshell.exe extensions/$ucword.js; > + dist/bin/xpcshell.exe Yep, looks good. That is an obvious place when I wrote the code that I just winged it for windows. :) Cool. So it all works now for you on Win? --pete -- Pete Collins www.mozdev.org www.mozdevgroup.com From nobody Sun Nov 30 13:23:14 2003 Received: (qmail 58524 invoked from network); 30 Nov 2003 18:22:40 -0000 Received: from unknown (HELO pegasus.siol.net) (193.189.160.25) by mozdev.org with SMTP; 30 Nov 2003 18:22:40 -0000 Received: from kudu.siol.net ([10.10.10.22]) by pegasus.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031130181629.THBV26684.pegasus@kudu.siol.net> for ; Sun, 30 Nov 2003 19:16:29 +0100 Received: from mozdev.org ([193.189.182.6]) by kudu.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031130181629.EYSG7303.kudu@mozdev.org> for ; Sun, 30 Nov 2003 19:16:29 +0100 Message-ID: <3FCA3413.7030201@mozdev.org> Date: Sun, 30 Nov 2003 19:16:51 +0100 From: Brian King User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5) Gecko/20031017 X-Accept-Language: en-us, en MIME-Version: 1.0 To: fastcomponent@mozdev.org Subject: Re: [Fastcomponent] testing patch References: <3FC9DF35.3010209@mozdev.org> <3FC9F948.2050103@mozdev.org> In-Reply-To: <3FC9F948.2050103@mozdev.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Nov 2003 18:22:40 -0000 On 30.11.2003 15:06, Pete Collins wrote: > So it all works now for you on Win? Yes, on my system. I'm sure there will be some edge cases that will come up when people start using it, but we will deal with them as they come up. We should ask cdn to do some testing on Mac OS X. -- Brian King www.mozdev.org www.mozdevgroup.com From nobody Sun Nov 30 13:34:52 2003 Received: (qmail 59109 invoked from network); 30 Nov 2003 18:34:19 -0000 Received: from unknown (HELO mta7.srv.hcvlny.cv.net) (167.206.5.74) by mozdev.org with SMTP; 30 Nov 2003 18:34:19 -0000 Received: from mozdev.org (ool-182f72f1.dyn.optonline.net [24.47.114.241]) by mta7.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.16 (built May 14 2003)) with ESMTP id <0HP600DTQGN2UC@mta7.srv.hcvlny.cv.net>; Sun, 30 Nov 2003 13:28:14 -0500 (EST) Date: Sun, 30 Nov 2003 13:28:11 -0500 From: Pete Collins Subject: Re: [Fastcomponent] testing patch In-reply-to: <3FCA3413.7030201@mozdev.org> To: fastcomponent@mozdev.org Message-id: <3FCA36BB.2050804@mozdev.org> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-us, en User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6a) Gecko/20031029 References: <3FC9DF35.3010209@mozdev.org> <3FC9F948.2050103@mozdev.org> <3FCA3413.7030201@mozdev.org> Cc: Chris Neale X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Nov 2003 18:34:19 -0000 Brian King wrote: > On 30.11.2003 15:06, Pete Collins wrote: > >> So it all works now for you on Win? > > > Yes, on my system. > > I'm sure there will be some edge cases that will come up when people > start using it, but we will deal with them as they come up. > > We should ask cdn to do some testing on Mac OS X. Great idea. Hey Chris, can you give fastcomponent a spin and see how it fairs on MacOSX? Thanks --pete -- Pete Collins www.mozdev.org www.mozdevgroup.com From nobody Sun Nov 30 16:34:24 2003 Received: (qmail 62651 invoked from network); 30 Nov 2003 19:56:08 -0000 Received: from unknown (HELO smtp3.global.net.uk) (80.189.92.91) by mozdev.org with SMTP; 30 Nov 2003 19:56:08 -0000 Received: from 189.28.106.fdial.global.net.uk ([80.189.28.106] helo=emperor.local) by smtp3.global.net.uk with esmtp (Exim 4.20) id 1AQXZx-000IBc-Pt; Sun, 30 Nov 2003 19:50:02 +0000 From: Chris Neale To: Pete Collins , fastcomponent@mozdev.org Subject: Re: [Fastcomponent] testing patch Date: Sun, 30 Nov 2003 19:50:28 +0000 User-Agent: KMail/1.5.3 References: <3FC9DF35.3010209@mozdev.org> <3FCA3413.7030201@mozdev.org> <3FCA36BB.2050804@mozdev.org> In-Reply-To: <3FCA36BB.2050804@mozdev.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200311301950.28819.cdn@mozdev.org> Authenticated-Sender: X-Mailman-Approved-At: Sun, 30 Nov 2003 16:34:22 -0500 Cc: X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Nov 2003 19:56:09 -0000 On Sunday 30 November 2003 18:28, Pete Collins wrote: > > > > We should ask cdn to do some testing on Mac OS X. > > Great idea. > > Hey Chris, can you give fastcomponent a spin and see how it fairs on > MacOSX? > I can try, I have a Firebird tree on my Cube, although my c++ skills are rusty, and never were much cop -- cdn -- Extensions for Mozilla-based Applications [ http://cdn.mozdev.org/ ] get Orbit3+1, Orbit Retro and other Mozilla themes from : http://themes.mozdev.org/ From nobody Sun Nov 30 17:06:00 2003 Received: (qmail 68775 invoked from network); 30 Nov 2003 22:05:28 -0000 Received: from unknown (HELO pegasus.siol.net) (193.189.160.25) by mozdev.org with SMTP; 30 Nov 2003 22:05:28 -0000 Received: from kudu.siol.net ([10.10.10.22]) by pegasus.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031130215917.UORN26684.pegasus@kudu.siol.net>; Sun, 30 Nov 2003 22:59:17 +0100 Received: from mozdev.org ([213.250.5.102]) by kudu.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031130215916.KRZY7303.kudu@mozdev.org>; Sun, 30 Nov 2003 22:59:16 +0100 Message-ID: <3FCA684A.4020205@mozdev.org> Date: Sun, 30 Nov 2003 22:59:38 +0100 From: Brian King User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5) Gecko/20031017 X-Accept-Language: en-us, en MIME-Version: 1.0 To: fastcomponent@mozdev.org Subject: Re: [Fastcomponent] testing patch References: <3FC9DF35.3010209@mozdev.org> <3FCA3413.7030201@mozdev.org> <3FCA36BB.2050804@mozdev.org> <200311301950.28819.cdn@mozdev.org> In-Reply-To: <200311301950.28819.cdn@mozdev.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: cdn@mozdev.org X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Nov 2003 22:05:28 -0000 On 30.11.2003 20:50, Chris Neale wrote: > I can try, I have a Firebird tree on my Cube, although my c++ skills are > rusty, and never were much cop You don't need any skills ... just need to follow the instructions here: http://fastcomponent.mozdev.org/docs/howto.html All we need is error reports, if there are any. -- Brian King www.mozdev.org www.mozdevgroup.com From nobody Mon Dec 1 05:57:35 2003 Received: (qmail 19891 invoked from network); 1 Dec 2003 10:57:02 -0000 Received: from unknown (HELO pegasus.siol.net) (193.189.160.25) by mozdev.org with SMTP; 1 Dec 2003 10:57:02 -0000 Received: from kudu.siol.net ([10.10.10.22]) by pegasus.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031201105042.ZMMA26684.pegasus@kudu.siol.net>; Mon, 1 Dec 2003 11:50:42 +0100 Received: from mozdev.org ([212.30.68.206]) by kudu.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031201105041.DRRL7303.kudu@mozdev.org>; Mon, 1 Dec 2003 11:50:41 +0100 Message-ID: <3FCB1D17.3000602@mozdev.org> Date: Mon, 01 Dec 2003 11:51:03 +0100 From: Brian King User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5) Gecko/20031017 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Chris Neale Subject: Re: [Fastcomponent] testing patch References: <3FC9DF35.3010209@mozdev.org> <200311301950.28819.cdn@mozdev.org> <3FCA684A.4020205@mozdev.org> <200311302329.42400.cdn@mozdev.org> In-Reply-To: <200311302329.42400.cdn@mozdev.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: fastcomponent@mozdev.org X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Dec 2003 10:57:03 -0000 On 1.12.2003 0:29, Chris Neale wrote: >>http://fastcomponent.mozdev.org/docs/howto.html >> >>All we need is error reports, if there are any. > > ld warning Please be more descriptive. -- Brian King www.mozdev.org www.mozdevgroup.com From nobody Mon Dec 1 09:23:58 2003 Received: (qmail 72545 invoked from network); 30 Nov 2003 23:35:20 -0000 Received: from unknown (HELO smtp4.global.net.uk) (80.189.92.92) by mozdev.org with SMTP; 30 Nov 2003 23:35:20 -0000 Received: from 189.25.239.fdial.global.net.uk ([80.189.25.239] helo=emperor.local) by smtp4.global.net.uk with esmtp (Exim 4.20) id 1AQb05-000DtD-7l; Sun, 30 Nov 2003 23:29:13 +0000 From: Chris Neale To: Brian King , fastcomponent@mozdev.org Subject: Re: [Fastcomponent] testing patch Date: Sun, 30 Nov 2003 23:29:42 +0000 User-Agent: KMail/1.5.3 References: <3FC9DF35.3010209@mozdev.org> <200311301950.28819.cdn@mozdev.org> <3FCA684A.4020205@mozdev.org> In-Reply-To: <3FCA684A.4020205@mozdev.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200311302329.42400.cdn@mozdev.org> Authenticated-Sender: X-Mailman-Approved-At: Mon, 01 Dec 2003 09:23:58 -0500 Cc: X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Nov 2003 23:35:21 -0000 On Sunday 30 November 2003 21:59, Brian King wrote: > On 30.11.2003 20:50, Chris Neale wrote: > > I can try, I have a Firebird tree on my Cube, although my c++ skills are > > rusty, and never were much cop > > You don't need any skills ... just need to follow the instructions here: > > http://fastcomponent.mozdev.org/docs/howto.html > > All we need is error reports, if there are any. ld warning -- cdn -- Extensions for Mozilla-based Applications [ http://cdn.mozdev.org/ ] get Orbit3+1, Orbit Retro and other Mozilla themes from : http://themes.mozdev.org/ From nobody Mon Dec 1 09:23:59 2003 Received: (qmail 20470 invoked from network); 1 Dec 2003 11:01:16 -0000 Received: from unknown (HELO smtp3.global.net.uk) (80.189.92.91) by mozdev.org with SMTP; 1 Dec 2003 11:01:16 -0000 Received: from 189.31.185.fdial.global.net.uk ([80.189.31.185] helo=emperor.local) by smtp3.global.net.uk with esmtp (Exim 4.20) id 1AQlhr-0008qV-IA; Mon, 01 Dec 2003 10:55:07 +0000 From: Chris Neale To: Brian King Subject: Re: [Fastcomponent] testing patch Date: Mon, 1 Dec 2003 10:55:38 +0000 User-Agent: KMail/1.5.3 References: <3FC9DF35.3010209@mozdev.org> <200311302329.42400.cdn@mozdev.org> <3FCB1D17.3000602@mozdev.org> In-Reply-To: <3FCB1D17.3000602@mozdev.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200312011055.38817.cdn@mozdev.org> Authenticated-Sender: X-Mailman-Approved-At: Mon, 01 Dec 2003 09:23:58 -0500 Cc: fastcomponent@mozdev.org X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Dec 2003 11:01:16 -0000 On Monday 01 December 2003 10:51, Brian King wrote: > On 1.12.2003 0:29, Chris Neale wrote: > >>http://fastcomponent.mozdev.org/docs/howto.html > >> > >>All we need is error reports, if there are any. > > > > ld warning > > Please be more descriptive. ld: warning dynamic shared library: ../../../../dist/bin/libplds4.dylib not made a weak library in output with MACOS_DEPLOYMENT_TARGET environment variable set to: 10.1 [ repeated three times ] MacOSX 10.2.8 -- cdn -- Extensions for Mozilla-based Applications [ http://cdn.mozdev.org/ ] get Orbit3+1, Orbit Retro and other Mozilla themes from : http://themes.mozdev.org/ From nobody Mon Dec 1 09:26:27 2003 Received: (qmail 39815 invoked from network); 1 Dec 2003 14:25:42 -0000 Received: from unknown (HELO mta11.srv.hcvlny.cv.net) (167.206.5.86) by mozdev.org with SMTP; 1 Dec 2003 14:25:42 -0000 Received: from mozdev.org (ool-182f72f1.dyn.optonline.net [24.47.114.241]) by mta11.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.16 (built May 14 2003)) with ESMTP id <0HP7002XYZSCJM@mta11.srv.hcvlny.cv.net>; Mon, 01 Dec 2003 09:19:25 -0500 (EST) Date: Mon, 01 Dec 2003 09:19:23 -0500 From: Pete Collins Subject: Re: [Fastcomponent] testing patch In-reply-to: <200311302329.42400.cdn@mozdev.org> To: fastcomponent@mozdev.org Message-id: <3FCB4DEB.40609@mozdev.org> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-us, en User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6a) Gecko/20031029 References: <3FC9DF35.3010209@mozdev.org> <200311301950.28819.cdn@mozdev.org> <3FCA684A.4020205@mozdev.org> <200311302329.42400.cdn@mozdev.org> Cc: Chris Neale X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Dec 2003 14:25:54 -0000 >>>I can try, I have a Firebird tree on my Cube, although my c++ skills are >>>rusty, and never were much cop >> >>You don't need any skills ... just need to follow the instructions here: >> >>http://fastcomponent.mozdev.org/docs/howto.html >> >>All we need is error reports, if there are any. > > > ld warning Chris, can you post any warnings you see when you run the script here? Thanks --pete -- Pete Collins www.mozdev.org www.mozdevgroup.com From nobody Mon Dec 1 09:43:13 2003 Received: (qmail 41877 invoked from network); 1 Dec 2003 14:42:40 -0000 Received: from unknown (HELO mta7.srv.hcvlny.cv.net) (167.206.5.74) by mozdev.org with SMTP; 1 Dec 2003 14:42:40 -0000 Received: from mozdev.org (ool-182f72f1.dyn.optonline.net [24.47.114.241]) by mta7.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.16 (built May 14 2003)) with ESMTP id <0HP800IKL0KUO2@mta7.srv.hcvlny.cv.net>; Mon, 01 Dec 2003 09:36:30 -0500 (EST) Date: Mon, 01 Dec 2003 09:36:27 -0500 From: Pete Collins Subject: Re: [Fastcomponent] testing patch In-reply-to: <200312011055.38817.cdn@mozdev.org> To: fastcomponent@mozdev.org Message-id: <3FCB51EB.3010005@mozdev.org> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-us, en User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6a) Gecko/20031029 References: <3FC9DF35.3010209@mozdev.org> <200311302329.42400.cdn@mozdev.org> <3FCB1D17.3000602@mozdev.org> <200312011055.38817.cdn@mozdev.org> Cc: Chris Neale X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Dec 2003 14:42:40 -0000 > ld: warning dynamic shared library: ../../../../dist/bin/libplds4.dylib not > made a weak library in output with MACOS_DEPLOYMENT_TARGET environment > variable set to: 10.1 > > [ repeated three times ] Chris, you get this when you run: $ sh fast_component.sh fubar ? Or when you run: $ sh fast_component.sh -c fubar ?? Thanks -- Pete Collins www.mozdev.org www.mozdevgroup.com From nobody Thu Dec 4 10:58:13 2003 Received: (qmail 6670 invoked from network); 4 Dec 2003 15:57:41 -0000 Received: from unknown (HELO pegasus.siol.net) (193.189.160.25) by mozdev.org with SMTP; 4 Dec 2003 15:57:41 -0000 Received: from kudu.siol.net ([10.10.10.22]) by pegasus.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031204155122.CNYH10254.pegasus@kudu.siol.net> for ; Thu, 4 Dec 2003 16:51:22 +0100 Received: from mozdev.org ([193.189.183.29]) by kudu.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031204155122.RWGL7303.kudu@mozdev.org> for ; Thu, 4 Dec 2003 16:51:22 +0100 Message-ID: <3FCF5811.2050401@mozdev.org> Date: Thu, 04 Dec 2003 16:51:45 +0100 From: Brian King User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5) Gecko/20031017 X-Accept-Language: en-us, en MIME-Version: 1.0 To: fastcomponent@mozdev.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: [Fastcomponent] Some more docs X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Dec 2003 15:57:41 -0000 I'm going to write some more docs, and check them in. Specifically: - requirements.html A list of tools you need on your system for FC to work, and how to set up your environment (perhaps) - output.html Directory structure and files outputted by the script. If there is anything else you would like to see up there, let me know. -- Brian King www.mozdev.org www.mozdevgroup.com From nobody Thu Dec 4 11:07:39 2003 Received: (qmail 7245 invoked from network); 4 Dec 2003 16:07:06 -0000 Received: from unknown (HELO mta3.srv.hcvlny.cv.net) (167.206.5.69) by mozdev.org with SMTP; 4 Dec 2003 16:07:06 -0000 Received: from mozdev.org (ool-182f72f1.dyn.optonline.net [24.47.114.241]) by mta3.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.16 (built May 14 2003)) with ESMTP id <0HPD00J1MOGC5E@mta3.srv.hcvlny.cv.net> for fastcomponent@mozdev.org; Thu, 04 Dec 2003 11:00:13 -0500 (EST) Date: Thu, 04 Dec 2003 11:00:14 -0500 From: Pete Collins Subject: Re: [Fastcomponent] Some more docs In-reply-to: <3FCF5811.2050401@mozdev.org> To: fastcomponent@mozdev.org Message-id: <3FCF5A0E.6080106@mozdev.org> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-us, en User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6a) Gecko/20031029 References: <3FCF5811.2050401@mozdev.org> X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Dec 2003 16:07:06 -0000 Brian King wrote: > I'm going to write some more docs, and check them in. > > Specifically: > - requirements.html > A list of tools you need on your system for FC to work, and how to set > up your environment (perhaps) > > - output.html > Directory structure and files outputted by the script. > > If there is anything else you would like to see up there, let me know. > That's a good start. Maybe listing typical problems or misconceptions you had using the script for the first time. --pete -- Pete Collins www.mozdev.org www.mozdevgroup.com From nobody Mon Dec 8 07:36:33 2003 Received: (qmail 51767 invoked from network); 8 Dec 2003 12:36:00 -0000 Received: from unknown (HELO pegasus.siol.net) (193.189.160.25) by mozdev.org with SMTP; 8 Dec 2003 12:36:00 -0000 Received: from kudu.siol.net ([10.10.10.22]) by pegasus.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031208114123.NGGB17983.pegasus@kudu.siol.net> for ; Mon, 8 Dec 2003 12:41:23 +0100 Received: from mozdev.org ([193.189.182.168]) by kudu.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031208112247.EIDZ7303.kudu@mozdev.org> for ; Mon, 8 Dec 2003 12:22:47 +0100 Message-ID: <3FD45F22.8010900@mozdev.org> Date: Mon, 08 Dec 2003 12:23:14 +0100 From: Brian King User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5) Gecko/20031017 X-Accept-Language: en-us, en MIME-Version: 1.0 To: fastcomponent@mozdev.org Subject: Re: [Fastcomponent] Some more docs References: <3FCF5811.2050401@mozdev.org> In-Reply-To: <3FCF5811.2050401@mozdev.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Dec 2003 12:36:01 -0000 On 4.12.2003 16:51, Brian King wrote: > I'm going to write some more docs, and check them in. > > Specifically: > - requirements.html > A list of tools you need on your system for FC to work, and how to set > up your environment (perhaps) Pete, please review: http://fastcomponent.mozdev.org/docs/requirements.html -- Brian King www.mozdev.org www.mozdevgroup.com From nobody Mon Dec 8 09:34:04 2003 Received: (qmail 58712 invoked from network); 8 Dec 2003 14:33:33 -0000 Received: from unknown (HELO mta4.srv.hcvlny.cv.net) (167.206.5.70) by mozdev.org with SMTP; 8 Dec 2003 14:33:33 -0000 Received: from mozdev.org (ool-182f72f1.dyn.optonline.net [24.47.114.241]) by mta4.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.16 (built May 14 2003)) with ESMTP id <0HPK002XWYSOIK@mta4.srv.hcvlny.cv.net> for fastcomponent@mozdev.org; Mon, 08 Dec 2003 09:26:48 -0500 (EST) Date: Mon, 08 Dec 2003 09:26:48 -0500 From: Pete Collins Subject: Re: [Fastcomponent] Some more docs In-reply-to: <3FD45F22.8010900@mozdev.org> To: fastcomponent@mozdev.org Message-id: <3FD48A28.8000901@mozdev.org> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-us, en User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6a) Gecko/20031029 References: <3FCF5811.2050401@mozdev.org> <3FD45F22.8010900@mozdev.org> X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Dec 2003 14:33:33 -0000 Brian King wrote: > On 4.12.2003 16:51, Brian King wrote: > >> I'm going to write some more docs, and check them in. >> >> Specifically: >> - requirements.html >> A list of tools you need on your system for FC to work, and how to set >> up your environment (perhaps) > > > Pete, please review: > http://fastcomponent.mozdev.org/docs/requirements.html > I just checked in a minor style tweak. The bullet list was way off to the right. Looks good. --pete -- Pete Collins www.mozdev.org www.mozdevgroup.com From nobody Mon Dec 8 10:02:20 2003 Received: (qmail 60513 invoked from network); 8 Dec 2003 15:01:49 -0000 Received: from unknown (HELO pegasus.siol.net) (193.189.160.25) by mozdev.org with SMTP; 8 Dec 2003 15:01:49 -0000 Received: from kudu.siol.net ([10.10.10.22]) by pegasus.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031208145524.BZRE3075.pegasus@kudu.siol.net>; Mon, 8 Dec 2003 15:55:24 +0100 Received: from mozdev.org ([212.30.66.63]) by kudu.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031208145519.MNIH7303.kudu@mozdev.org>; Mon, 8 Dec 2003 15:55:19 +0100 Message-ID: <3FD490ED.8090309@mozdev.org> Date: Mon, 08 Dec 2003 15:55:41 +0100 From: Brian King User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5) Gecko/20031017 X-Accept-Language: en-us, en MIME-Version: 1.0 To: fastcomponent@mozdev.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: cdn@mozdev.org Subject: [Fastcomponent] FC as project of the week X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Dec 2003 15:01:49 -0000 It is for this week! http://www.mozdev.org/featured/index.html I think we need to jazz up the index page a bit, at least put a picture there. Any ideas? -- Brian King www.mozdev.org www.mozdevgroup.com From nobody Mon Dec 8 10:42:24 2003 Received: (qmail 60953 invoked from network); 8 Dec 2003 15:07:08 -0000 Received: from unknown (HELO smtp3.global.net.uk) (80.189.92.91) by mozdev.org with SMTP; 8 Dec 2003 15:07:08 -0000 Received: from 189.28.87.fdial.global.net.uk ([80.189.28.87] helo=emperor.local) by smtp3.global.net.uk with esmtp (Exim 4.20) id 1ATMsL-000FU7-JD; Mon, 08 Dec 2003 15:00:41 +0000 From: Chris Neale To: Brian King , fastcomponent@mozdev.org Date: Mon, 8 Dec 2003 15:00:42 +0000 User-Agent: KMail/1.5.3 References: <3FD490ED.8090309@mozdev.org> In-Reply-To: <3FD490ED.8090309@mozdev.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200312081500.42830.cdn@mozdev.org> Authenticated-Sender: X-Mailman-Approved-At: Mon, 08 Dec 2003 10:42:22 -0500 Cc: Subject: [Fastcomponent] Re: FC as project of the week X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Dec 2003 15:07:09 -0000 On Monday 08 December 2003 14:55, Brian King wrote: > It is for this week! > > http://www.mozdev.org/featured/index.html > > I think we need to jazz up the index page a bit, at least put a picture > there. > > Any ideas? we we're wintery for starters as for fc's index.html to which I just realised you were referring, perhaps a cheetah ? make a jigsaw puzzle piece with those spots, without copying apple too much -- cdn -- Extensions for Mozilla-based Applications [ http://cdn.mozdev.org/ ] get Orbit3+1, Orbit Retro and other Mozilla themes from : http://themes.mozdev.org/ From nobody Mon Dec 8 10:47:30 2003 Received: (qmail 62886 invoked from network); 8 Dec 2003 15:46:58 -0000 Received: from unknown (HELO mta2.srv.hcvlny.cv.net) (167.206.5.68) by mozdev.org with SMTP; 8 Dec 2003 15:46:58 -0000 Received: from mozdev.org (ool-182f72f1.dyn.optonline.net [24.47.114.241]) by mta2.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.16 (built May 14 2003)) with ESMTP id <0HPL00DK2277IN@mta2.srv.hcvlny.cv.net> for fastcomponent@mozdev.org; Mon, 08 Dec 2003 10:40:19 -0500 (EST) Date: Mon, 08 Dec 2003 10:40:22 -0500 From: Pete Collins Subject: Re: [Fastcomponent] Re: FC as project of the week In-reply-to: <200312081500.42830.cdn@mozdev.org> To: fastcomponent@mozdev.org Message-id: <3FD49B66.7050102@mozdev.org> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-us, en User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6a) Gecko/20031029 References: <3FD490ED.8090309@mozdev.org> <200312081500.42830.cdn@mozdev.org> X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Dec 2003 15:46:58 -0000 > as for fc's index.html to which I just realised you were referring, perhaps a > cheetah ? > > make a jigsaw puzzle piece with those spots, without copying apple too much I really don't have too many ideas regards images. I would like to add a ToDo document that will bullet list things we will be adding in the future like a js component template and a template xul package that can be built easily into an xpi. Perhaps even a quick Mozdev project specific xul package template. There are a lot of important things that will be added in the future. --pete -- Pete Collins www.mozdev.org www.mozdevgroup.com From nobody Mon Dec 8 17:40:10 2003 Received: (qmail 93571 invoked from network); 8 Dec 2003 22:39:38 -0000 Received: from unknown (HELO pegasus.siol.net) (193.189.160.25) by mozdev.org with SMTP; 8 Dec 2003 22:39:38 -0000 Received: from kudu.siol.net ([10.10.10.22]) by pegasus.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031208223308.FFPA3075.pegasus@kudu.siol.net>; Mon, 8 Dec 2003 23:33:08 +0100 Received: from mozdev.org ([212.30.69.89]) by kudu.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031208223307.OTZ7303.kudu@mozdev.org>; Mon, 8 Dec 2003 23:33:07 +0100 Message-ID: <3FD4FC3E.80209@mozdev.org> Date: Mon, 08 Dec 2003 23:33:34 +0100 From: Brian King User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5) Gecko/20031017 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Chris Neale , fastcomponent@mozdev.org References: <3FD490ED.8090309@mozdev.org> <200312081500.42830.cdn@mozdev.org> In-Reply-To: <200312081500.42830.cdn@mozdev.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: [Fastcomponent] Re: FC as project of the week X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Dec 2003 22:39:38 -0000 On 8.12.2003 16:00, Chris Neale wrote: > as for fc's index.html to which I just realised you were referring, perhaps a > cheetah ? > > make a jigsaw puzzle piece with those spots, without copying apple too much I like the idea of a jigsaw ... symbolising all the pieces of a Mozilla application. Chris, where do you usually grab your images from? Is there a decent royalty free site out there? -- Brian King www.mozdev.org www.mozdevgroup.com From nobody Mon Dec 8 19:58:36 2003 Received: (qmail 1321 invoked from network); 9 Dec 2003 00:58:04 -0000 Received: from unknown (HELO mta3.srv.hcvlny.cv.net) (167.206.5.69) by mozdev.org with SMTP; 9 Dec 2003 00:58:04 -0000 Received: from mozdev.org (ool-182f72f1.dyn.optonline.net [24.47.114.241]) by mta3.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.16 (built May 14 2003)) with ESMTP id <0HPL0062ORPYJ4@mta3.srv.hcvlny.cv.net> for fastcomponent@mozdev.org; Mon, 08 Dec 2003 19:51:34 -0500 (EST) Date: Mon, 08 Dec 2003 19:51:37 -0500 From: Pete Collins Subject: Re: [Fastcomponent] Re: FC as project of the week In-reply-to: <3FD4FC3E.80209@mozdev.org> To: fastcomponent@mozdev.org Message-id: <3FD51C99.4020301@mozdev.org> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-us, en User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6a) Gecko/20031029 References: <3FD490ED.8090309@mozdev.org> <200312081500.42830.cdn@mozdev.org> <3FD4FC3E.80209@mozdev.org> X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Dec 2003 00:58:05 -0000 >> make a jigsaw puzzle piece with those spots, without copying apple too >> much > > > I like the idea of a jigsaw ... symbolising all the pieces of a Mozilla > application. > > Chris, where do you usually grab your images from? Is there a decent > royalty free site out there? I'm always partial to the mathmatical art of MC Escher http://www.mathacademy.com/pr/minitext/escher/index.asp This one is cool. http://www.worldofescher.com/gallery/jpgs/P32L.jpg Or a little picasso analytical cubism perhaps? http://www.artworld.co.kr/artist/picasso/analytical/cadaques.htm --pete -- Pete Collins www.mozdev.org www.mozdevgroup.com From nobody Wed Dec 10 10:49:40 2003 Received: (qmail 3462 invoked from network); 10 Dec 2003 15:47:59 -0000 Received: from unknown (HELO pegasus.siol.net) (193.189.160.25) by mozdev.org with SMTP; 10 Dec 2003 15:47:59 -0000 Received: from kudu.siol.net ([10.10.10.22]) by pegasus.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031209223059.QRVQ3075.pegasus@kudu.siol.net>; Tue, 9 Dec 2003 23:30:59 +0100 Received: from mozdev.org ([212.30.68.140]) by kudu.siol.net (InterMail vK.4.03.05.03 201-232-132-103 license 1cbf71897a39210db31154c99f0b4628) with ESMTP id <20031209223058.VVRB7303.kudu@mozdev.org>; Tue, 9 Dec 2003 23:30:58 +0100 Message-ID: <3FD64D3D.2060707@mozdev.org> Date: Tue, 09 Dec 2003 23:31:25 +0100 From: Brian King User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5) Gecko/20031017 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Chris Neale References: <3FD490ED.8090309@mozdev.org> <200312081500.42830.cdn@mozdev.org> <3FD4FC3E.80209@mozdev.org> <200312082247.28888.cdn@mozdev.org> In-Reply-To: <200312082247.28888.cdn@mozdev.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: fastcomponent@mozdev.org Subject: [Fastcomponent] Re: FC as project of the week X-BeenThere: fastcomponent@mozdev.org X-Mailman-Version: 2.1.2 Precedence: list Reply-To: fastcomponent@mozdev.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Dec 2003 15:47:59 -0000 On 8.12.2003 23:47, Chris Neale wrote: > quick hack job with The GIMP at present > ... > http://www.sxc.hu/browse.phtml?f=view&id=50649 Let's go with this one for now, because its royalty free. Chris did a nice job to make it into a jigsaw puzzle. Pete, any objections? -- Brian King www.mozdev.org www.mozdevgroup.com