Hello,
i found a bug with nglString::Format :
if the string is initialized, then the method
Format() fail (infinite loop)
code:
nglString ConvertTimeToString(time_t Time)
{
nglString strTime = ""; // converted time
struct tm *pTimeInfo = localtime(&Time);
if(pTimeInfo)
{
strTime.Format("%d-%d-%d-%d-%d-%d", // ! infinite loop !
(pTimeInfo->tm_year)+ 1900,
(pTimeInfo->tm_mon) + 1,
pTimeInfo->tm_mday,
pTimeInfo->tm_hour,
pTimeInfo->tm_min,
pTimeInfo->tm_sec);
}
return strTime;
}
Jerome blondon.
Received: from zerodeux.net ([62.212.104.175])
by usw-sf-list1.sourceforge.net with esmtp (Exim 3.31-VA-mm2 #1
(Debian))
id 17FbZz-0005Vq-00
for <[EMAIL PROTECTED]>; Wed, 05 Jun 2002 07:16:03 -0700
Received: from localhost.localdomain (zerodeux.home [192.168.1.3])
by zerodeux.net (Postfix) with ESMTP id 708D8B3C7
for <[EMAIL PROTECTED]>; Wed, 5 Jun 2002 16:16:01 +0200 (CEST)
Subject: Re: [NGL-devel] bug with nglString.Format ?
From: Vincent Caron <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
In-Reply-To: <[EMAIL PROTECTED]>
References: <[EMAIL PROTECTED]>
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
X-Mailer: Ximian Evolution 1.0.5
Message-Id: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Sender: [EMAIL PROTECTED]
Errors-To: [EMAIL PROTECTED]
X-BeenThere: [EMAIL PROTECTED]
X-Mailman-Version: 2.0.9-sf.net
Precedence: bulk
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <https://lists.sourceforge.net/lists/listinfo/ngl-devel>,
<mailto:[EMAIL PROTECTED]>
List-Id: NGL developers discussion list <ngl-devel.lists.sourceforge.net>
List-Unsubscribe: <https://lists.sourceforge.net/lists/listinfo/ngl-devel>,
<mailto:[EMAIL PROTECTED]>
List-Archive: <http://www.geocrawler.com/redir-sf.php3?list=ngl-devel>
Date: Wed Jun 5 07:17:01 2002
X-Original-Date: 05 Jun 2002 16:15:57 +0200
On Wed, 2002-06-05 at 23:43, Jerome Blondon wrote:
Hello,
i found a bug with nglString::Format :
if the string is initialized, then the method
Format() fail (infinite loop)
Hello,
this should be fixed in CVS now. Thanks for your concise report and
code snippet. Just remember to mention the platform you're using,
Format() happens to have a different implementation for Win32 and Unix
(even if I do know you're Win32 :)).
BTW, I _strongly_ suggest you rely on the portable and fully documented
nglTime::GetLocalTimeStr(). More generally, wonder if you can't replace
a libc call by a NGL portable method.
Received: from descartes.noos.net ([212.198.2.74] helo=smtp.noos.fr)
by usw-sf-list1.sourceforge.net with esmtp
(Cipher TLSv1:DES-CBC3-SHA:168) (Exim 3.31-VA-mm2 #1 (Debian))
id 17Fbkk-0006Ti-00
for <[EMAIL PROTECTED]>; Wed, 05 Jun 2002 07:27:10 -0700
Received: (qmail 30584692 invoked by uid 0); 5 Jun 2002 14:26:32 -0000
Received: from unknown (HELO mailivs.ivs.fr) ([212.198.228.212]) (envelope-sender
<[EMAIL PROTECTED]>)
by 212.198.2.74 (qmail-ldap-1.03) with SMTP
for <[EMAIL PROTECTED]>; 5 Jun 2002 14:26:32 -0000
Received: from harry (unknown [192.168.0.204])
by mailivs.ivs.fr (Postfix) with SMTP
id E9C5D23DC49; Wed, 5 Jun 2002 16:25:07 +0200 (CEST)
Message-ID: <[EMAIL PROTECTED]>
From: "Sebastien Metrot" <[EMAIL PROTECTED]>
To: "Vincent Caron" <[EMAIL PROTECTED]>,
<[EMAIL PROTECTED]>
References: <[EMAIL PROTECTED]> <[EMAIL PROTECTED]>
Subject: Re: [NGL-devel] bug with nglString.Format ?
MIME-Version: 1.0
Content-Type: text/plain;
charset="Windows-1252"
Content-Transfer-Encoding: 7bit
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 6.00.2600.0000
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000
Sender: [EMAIL PROTECTED]
Errors-To: [EMAIL PROTECTED]
X-BeenThere: [EMAIL PROTECTED]
X-Mailman-Version: 2.0.9-sf.net
Precedence: bulk
Reply-To: [EMAIL PROTECTED]
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <https://lists.sourceforge.net/lists/listinfo/ngl-devel>,
<mailto:[EMAIL PROTECTED]>
List-Id: NGL developers discussion list <ngl-devel.lists.sourceforge.net>
List-Unsubscribe: <https://lists.sourceforge.net/lists/listinfo/ngl-devel>,
<mailto:[EMAIL PROTECTED]>
List-Archive: <http://www.geocrawler.com/redir-sf.php3?list=ngl-devel>
Date: Wed Jun 5 07:28:02 2002
X-Original-Date: Wed, 5 Jun 2002 16:26:22 +0200
Hi!
The problem is that we had a hard time getting nglTime/nglTimeInfo to work
on win32 because of its recursive refinition:
class A
{
public:
static const A mA;
}
It seems that the copy constructor screws up the stack quite a bit. We don't
really understand what is happening. May be jerome can send the offending
snippet of code.
Sebastien
----- Original Message -----
From: "Vincent Caron" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, June 05, 2002 4:15 PM
Subject: Re: [NGL-devel] bug with nglString.Format ?
On Wed, 2002-06-05 at 23:43, Jerome Blondon wrote:
> Hello,
> i found a bug with nglString::Format :
> if the string is initialized, then the method
> Format() fail (infinite loop)
Hello,
this should be fixed in CVS now. Thanks for your concise report and
code snippet. Just remember to mention the platform you're using,
Format() happens to have a different implementation for Win32 and Unix
(even if I do know you're Win32 :)).
BTW, I _strongly_ suggest you rely on the portable and fully documented
nglTime::GetLocalTimeStr(). More generally, wonder if you can't replace
a libc call by a NGL portable method.
_______________________________________________________________
Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
_______________________________________________
NGL-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/ngl-devel
Received: from verlaine.noos.net ([212.198.2.73] helo=smtp.noos.fr)
by usw-sf-list1.sourceforge.net with esmtp
(Cipher TLSv1:DES-CBC3-SHA:168) (Exim 3.31-VA-mm2 #1 (Debian))
id 17Fd4Q-0006QG-00
for <[EMAIL PROTECTED]>; Wed, 05 Jun 2002 08:51:34 -0700
Received: (qmail 14198105 invoked by uid 0); 5 Jun 2002 15:49:54 -0000
Received: from unknown (HELO mailivs.ivs.fr) ([212.198.228.212]) (envelope-sender
<[EMAIL PROTECTED]>)
by 212.198.2.73 (qmail-ldap-1.03) with SMTP
for <[EMAIL PROTECTED]>; 5 Jun 2002 15:49:54 -0000
Received: from mailivs.ivs.fr (blondon [192.168.0.23])
by mailivs.ivs.fr (Postfix) with ESMTP id 6252623DC49
for <[EMAIL PROTECTED]>; Wed, 5 Jun 2002 17:48:34 +0200 (CEST)
Message-ID: <[EMAIL PROTECTED]>
From: Jerome Blondon <[EMAIL PROTECTED]>
Organization: IVS
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0rc3)
Gecko/20020523
X-Accept-Language: en-us, en
MIME-Version: 1.0
To: [EMAIL PROTECTED]
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
Subject: [NGL-devel] win32 : nglString with empty buffer
Sender: [EMAIL PROTECTED]
Errors-To: [EMAIL PROTECTED]
X-BeenThere: [EMAIL PROTECTED]
X-Mailman-Version: 2.0.9-sf.net
Precedence: bulk
Reply-To: [EMAIL PROTECTED]
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <https://lists.sourceforge.net/lists/listinfo/ngl-devel>,
<mailto:[EMAIL PROTECTED]>
List-Id: NGL developers discussion list <ngl-devel.lists.sourceforge.net>
List-Unsubscribe: <https://lists.sourceforge.net/lists/listinfo/ngl-devel>,
<mailto:[EMAIL PROTECTED]>
List-Archive: <http://www.geocrawler.com/redir-sf.php3?list=ngl-devel>
Date: Wed Jun 5 08:52:18 2002
X-Original-Date: Wed, 05 Jun 2002 17:53:28 -0700
Hello,
considering the following code snippet :
nglString nothing;
nglString something = _T("something");
something = nothing;
--> execution :
something contains "something" and not ""..
Because of that, the following code (using nui) doesn't work :
nuiEditLine *mpTxtName;
nglString mName;
void myClass::OnTextChanged(nuiEvent *pEvent)
{
name = mpTxtName->GetText();
}
if mpTxtName is blank, name is not reinitialized.
is it a normal behavior ?
Received: from zerodeux.net ([62.212.104.175])
by usw-sf-list1.sourceforge.net with esmtp (Exim 3.31-VA-mm2 #1
(Debian))
id 17Fhzu-0003ls-00
for <[EMAIL PROTECTED]>; Wed, 05 Jun 2002 14:07:15 -0700
Received: from localhost.localdomain (zerodeux.home [192.168.1.3])
by zerodeux.net (Postfix) with ESMTP id 286CAB3C7
for <[EMAIL PROTECTED]>; Wed, 5 Jun 2002 23:07:09 +0200 (CEST)
Subject: Re: [NGL-devel] win32 : nglString with empty buffer
From: Vincent Caron <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
In-Reply-To: <[EMAIL PROTECTED]>
References: <[EMAIL PROTECTED]>
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
X-Mailer: Ximian Evolution 1.0.5
Message-Id: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Sender: [EMAIL PROTECTED]
Errors-To: [EMAIL PROTECTED]
X-BeenThere: [EMAIL PROTECTED]
X-Mailman-Version: 2.0.9-sf.net
Precedence: bulk
Reply-To: [EMAIL PROTECTED]
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <https://lists.sourceforge.net/lists/listinfo/ngl-devel>,
<mailto:[EMAIL PROTECTED]>
List-Id: NGL developers discussion list <ngl-devel.lists.sourceforge.net>
List-Unsubscribe: <https://lists.sourceforge.net/lists/listinfo/ngl-devel>,
<mailto:[EMAIL PROTECTED]>
List-Archive: <http://www.geocrawler.com/redir-sf.php3?list=ngl-devel>
Date: Wed Jun 5 14:08:02 2002
X-Original-Date: 05 Jun 2002 23:07:00 +0200
On Thu, 2002-06-06 at 02:53, Jerome Blondon wrote:
Hello,
considering the following code snippet :
nglString nothing;
nglString something = _T("something");
something = nothing;
--> execution :
something contains "something" and not ""..
is it a normal behavior ?
It's definitely a bug. However since you're talking about behaviour,
I'll try to make some things clear, since nglString is not such a
trivial issue ...
Null and empty strings are not the same beast. The default constructor
nglString() builds a null string. You also have the pre-built
nglString::Null and nglString::Empty objects to play with. A little
table to show the situation :
| IsNull() | IsEmpty()
------------------|----------|----------
nglString::Null | yes | yes
nglString::Empty | no | yes
nglString("test") | no | no
This distinction has been made when looking after several toolkits and
script languages : objects or variables need to have an
'invalid/uninitialized' state. In our case, NGL methods can return a
string where "" (the empty string) is a valid result, thus they need the
null string to report an invalid or unavailable result.
As a side effect, Format() methods replace null string with the text
"null" (this is OS dependent but true for both Unix and Win32).
Now concerning nglString, a policy has been added recently upon Meeloo's
request : a non-null string cannot become null again by 'regular
operations'. All operations will at most reduce the string content to
the "" (empty) string, even if you're deleting more chars than available
for instance.
This said, this operation must nullify the 'text' object :
text = nglString::Null;
because this is an object copy, and text _must_ be a copy of
nglString::Null. This is the reported bug, and will be fixed in CVS in
the following minutes. Now this won't succeed :
text = NULL;
Since it's a buffer copy to the text object, and all nglString methods
will fail on NULL supplied buffers. text will be left untouched.
Received: from zerodeux.net ([62.212.104.175])
by usw-sf-list1.sourceforge.net with esmtp (Exim 3.31-VA-mm2 #1
(Debian))
id 17Jii1-0000OF-00
for <[EMAIL PROTECTED]>; Sun, 16 Jun 2002 15:41:21 -0700
Received: from localhost.localdomain (zerodeux.home [192.168.1.3])
by zerodeux.net (Postfix) with ESMTP id 76FA8AFE3
for <[EMAIL PROTECTED]>; Mon, 17 Jun 2002 00:41:21 +0200 (CEST)
From: Vincent Caron <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
In-Reply-To: <[EMAIL PROTECTED]>
References: <[EMAIL PROTECTED]>
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
X-Mailer: Ximian Evolution 1.0.5
Message-Id: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Subject: [NGL-devel] Re: [ngl-cvs] nglFont: quick fix to support Unicode
charmaps
Sender: [EMAIL PROTECTED]
Errors-To: [EMAIL PROTECTED]
X-BeenThere: [EMAIL PROTECTED]
X-Mailman-Version: 2.0.9-sf.net
Precedence: bulk
Reply-To: [EMAIL PROTECTED]
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <https://lists.sourceforge.net/lists/listinfo/ngl-devel>,
<mailto:[EMAIL PROTECTED]>
List-Id: NGL developers discussion list <ngl-devel.lists.sourceforge.net>
List-Unsubscribe: <https://lists.sourceforge.net/lists/listinfo/ngl-devel>,
<mailto:[EMAIL PROTECTED]>
List-Archive: <http://www.geocrawler.com/redir-sf.php3?list=ngl-devel>
Date: Sun Jun 16 15:42:02 2002
X-Original-Date: 17 Jun 2002 00:41:13 +0200
nglFont now tries to find a Unicode charmap in the font ressources, and
if found, automatically translates strings in the current locale to UCS2
and fetch the glyph indexes thru the Unicode charmap. This is done
automatically at load time, you don't have to play with SelectCharmap()
until you really want to.
Since the nglWindow::OnKey() return a char code using the current locale
(when USE_WCHAR is not defined), the font/metrics demo can finally show
you exactly what you type on your keyboard (at least currently under
Win32).
This is more or less a backport from the nglFont 2nd edition (not yet in
CVS), which will also involve a nglString improvement (encoding
translation will be handled _only_ in nglString).
Received: from meeloo.net ([62.4.18.112])
by usw-sf-list1.sourceforge.net with esmtp (Exim 3.31-VA-mm2 #1
(Debian))
id 17KV0o-0002v5-00
for <[EMAIL PROTECTED]>; Tue, 18 Jun 2002 19:15:58 -0700
Received: from harry ([10.1.1.4])
by meeloo.net with smtp (Exim 3.35 #1 (Debian))
id 17KUXz-00038Z-00
for <[EMAIL PROTECTED]>; Wed, 19 Jun 2002 03:46:11 +0200
Message-ID: <[EMAIL PROTECTED]>
From: "Sebastien Metrot" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
References: <[EMAIL PROTECTED]>
MIME-Version: 1.0
Content-Type: text/plain;
charset="Windows-1252"
Content-Transfer-Encoding: 7bit
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 6.00.2600.0000
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000
Subject: [NGL-devel] Re: [ngl-cvs] - after quite a long struggle i'm quite
pleased: nuiRect now is completely based on floats....
Sender: [EMAIL PROTECTED]
Errors-To: [EMAIL PROTECTED]
X-BeenThere: [EMAIL PROTECTED]
X-Mailman-Version: 2.0.9-sf.net
Precedence: bulk
Reply-To: [EMAIL PROTECTED]
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <https://lists.sourceforge.net/lists/listinfo/ngl-devel>,
<mailto:[EMAIL PROTECTED]>
List-Id: NGL developers discussion list <ngl-devel.lists.sourceforge.net>
List-Unsubscribe: <https://lists.sourceforge.net/lists/listinfo/ngl-devel>,
<mailto:[EMAIL PROTECTED]>
List-Archive: <http://www.geocrawler.com/redir-sf.php3?list=ngl-devel>
Date: Tue Jun 18 19:16:03 2002
X-Original-Date: Wed, 19 Jun 2002 04:15:49 +0200
Still to come: eradication of public access to mLeft/right/top/bottom. You
can start to use the access methods instead as the current implementation is
just plain evil!
Sorry for the mess,
MeeLoo
PS to Jerome: I propose you don't bother playing catch up with this commit &
let me take care of it tomorrow, as soon as I arrive.
----- Original Message -----
From: "Sebastien Metrot" <[EMAIL PROTECTED]>
To: <ngl-cvs@gna.org>
Sent: Wednesday, June 19, 2002 4:10 AM
Subject: [ngl-cvs] - after quite a long struggle i'm quite pleased: nuiRect
now is completely based on floats....
CVS reportCommit from meeloo 2002/06/18 19:10:54
--------------------------------------------------------------------------
------
- after quite a long struggle i'm quite pleased: nuiRect now is completely
based on floats.
- introduced a new type: nuiSize. This type is used anywhere in nui where
you need to handle coordinates.
- BEWARE! This commit MAY totaly screw up your application! Use with care
and BACKUP your current local repository. (you have been warned!!).
- If you happend to have screwed up, Vincent give you this piece of advice
(and CVS magic spell):
cvs -dcvs.ngl.sourceforge.net:/cvsroot/ngl co -r before_nuisize nui
- share and enjoy!
41 files modified
Module File name Version
nui ChangeLog 1.27 >>> 1.28
nui examples/nuitest/nuiGearWin.cpp 1.7 >>> 1.8
nui examples/nuitest/nuiWin.cpp 1.23 >>> 1.24
nui include/nuiButton.h 1.3 >>> 1.4
nui include/nuiDrawContext.h 1.3 >>> 1.4
nui include/nuiEditText.h 1.9 >>> 1.10
nui include/nuiFlags.h 1.3 >>> 1.4
nui include/nuiImage.h 1.9 >>> 1.10
nui include/nuiList.h 1.10 >>> 1.11
nui include/nuiMainWindow.h 1.8 >>> 1.9
nui include/nuiMenu.h 1.4 >>> 1.5
nui include/nuiMenuItem.h 1.2 >>> 1.3
nui include/nuiMouseEvent.h 1.3 >>> 1.4
nui include/nuiObject.h 1.12 >>> 1.13
nui include/nuiRange.h 1.2 >>> 1.3
nui include/nuiRect.h 1.4 >>> 1.5
nui include/nuiScrollBar.h 1.6 >>> 1.7
nui include/nuiSplitter.h 1.7 >>> 1.8
nui include/nuiTable.h 1.9 >>> 1.10
nui include/nuiTheme.h 1.7 >>> 1.8
nui include/nuiUserArea.h 1.2 >>> 1.3
nui include/nuiWidgetBox.h 1.2 >>> 1.3
nui include/nuiWindow.h 1.14 >>> 1.15
nui src/core/nuiDrawContext.cpp 1.2 >>> 1.3
nui src/core/nuiImage.cpp 1.9 >>> 1.10
nui src/core/nuiMainWindow.cpp 1.21 >>> 1.22
nui src/core/nuiObject.cpp 1.23 >>> 1.24
nui src/core/nuiTheme.cpp 1.15 >>> 1.16
nui src/core/nuiWindow.cpp 1.20 >>> 1.21
nui src/widgets/nuiButton.cpp 1.6 >>> 1.7
nui src/widgets/nuiEditLine.cpp 1.1 >>> 1.2
nui src/widgets/nuiEditText.cpp 1.23 >>> 1.24
nui src/widgets/nuiLabel.cpp 1.4 >>> 1.5
nui src/widgets/nuiList.cpp 1.18 >>> 1.19
nui src/widgets/nuiMenuItem.cpp 1.5 >>> 1.6
nui src/widgets/nuiScrollBar.cpp 1.10 >>> 1.11
nui src/widgets/nuiSplitter.cpp 1.11 >>> 1.12
nui src/widgets/nuiTable.cpp 1.11 >>> 1.12
nui src/widgets/nuiUserArea.cpp 1.5 >>> 1.6
nui src/widgets/nuiWidgetBox.cpp 1.3 >>> 1.4
nui src/windows/nuiMenu.cpp 1.8 >>> 1.9
--------------------------------------------------------------------------
--
Bringing you mounds of caffeinated joy
>>> http://thinkgeek.com/sf <<<
Received: from zerodeux.net ([62.212.104.175])
by usw-sf-list1.sourceforge.net with esmtp (Exim 3.31-VA-mm2 #1
(Debian))
id 17Nm5i-0002a3-00
for <[EMAIL PROTECTED]>; Thu, 27 Jun 2002 20:06:34 -0700
Received: from localhost.localdomain (zerodeux.home [192.168.1.3])
by zerodeux.net (Postfix) with ESMTP id 7C8F2B3C7
for <[EMAIL PROTECTED]>; Fri, 28 Jun 2002 05:06:35 +0200 (CEST)
From: Vincent Caron <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
In-Reply-To: <[EMAIL PROTECTED]>
References: <[EMAIL PROTECTED]>
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
X-Mailer: Ximian Evolution 1.0.7
Message-Id: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Subject: [NGL-devel] Re: [ngl-cvs] - splited nuiOBject into nuiObject,
nuiWidget,
nuiContainer and nuiComposite....
Sender: [EMAIL PROTECTED]
Errors-To: [EMAIL PROTECTED]
X-BeenThere: [EMAIL PROTECTED]
X-Mailman-Version: 2.0.9-sf.net
Precedence: bulk
Reply-To: [EMAIL PROTECTED]
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <https://lists.sourceforge.net/lists/listinfo/ngl-devel>,
<mailto:[EMAIL PROTECTED]>
List-Id: NGL developers discussion list <ngl-devel.lists.sourceforge.net>
List-Unsubscribe: <https://lists.sourceforge.net/lists/listinfo/ngl-devel>,
<mailto:[EMAIL PROTECTED]>
List-Archive: <http://www.geocrawler.com/redir-sf.php3?list=ngl-devel>
Date: Thu Jun 27 20:07:03 2002
X-Original-Date: 28 Jun 2002 05:06:22 +0200
Meeloo, you forgot to add the header and implementation files of
nuiContainer and nuiWidget into the CVS tree ... Thanks :)
Received: from zerodeux.net ([62.212.104.175])
by usw-sf-list1.sourceforge.net with esmtp (Exim 3.31-VA-mm2 #1
(Debian))
id 17OSrv-0002dj-00
for <[EMAIL PROTECTED]>; Sat, 29 Jun 2002 17:47:11 -0700
Received: from localhost.localdomain (zerodeux.home [192.168.1.3])
by zerodeux.net (Postfix) with ESMTP id B22FAB3C7
for <[EMAIL PROTECTED]>; Sun, 30 Jun 2002 02:47:12 +0200 (CEST)
From: Vincent Caron <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
In-Reply-To: <[EMAIL PROTECTED]>
References: <[EMAIL PROTECTED]>
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
X-Mailer: Ximian Evolution 1.0.7
Message-Id: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Subject: [NGL-devel] Re: [ngl-cvs] nglString import/export code is brand new
again...
Sender: [EMAIL PROTECTED]
Errors-To: [EMAIL PROTECTED]
X-BeenThere: [EMAIL PROTECTED]
X-Mailman-Version: 2.0.9-sf.net
Precedence: bulk
Reply-To: [EMAIL PROTECTED]
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <https://lists.sourceforge.net/lists/listinfo/ngl-devel>,
<mailto:[EMAIL PROTECTED]>
List-Id: NGL developers discussion list <ngl-devel.lists.sourceforge.net>
List-Unsubscribe: <https://lists.sourceforge.net/lists/listinfo/ngl-devel>,
<mailto:[EMAIL PROTECTED]>
List-Archive: <http://www.geocrawler.com/redir-sf.php3?list=ngl-devel>
Date: Sat Jun 29 17:48:02 2002
X-Original-Date: 30 Jun 2002 02:47:02 +0200
GNU libc has iconv() since 2.1 and a really 100 0.000000unctional
You should read '100% functionnal', Perl has some unexpected intiatives
sometimes :)