Re: [Gambas-user] rev. 4651 and new gb.xml

2012-04-25 Thread Adrien Prokopowicz
Le lundi 23 avril 2012 01:14:25 Caveat a écrit :
> I'm now on 4659...
> 
> =
> Is FromString available in the new gb.xml or not?
> =
> 

Yes it is, since the rev #4673.

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] rev. 4651 and new gb.xml

2012-04-25 Thread Adrien Prokopowicz
Le lundi 23 avril 2012 18:47:10 Charlie Reinl a écrit :
> Am Montag, den 23.04.2012, 00:39 +0200 schrieb Adrien Prokopowicz:
> > Le dimanche 22 avril 2012 23:39:27 Charlie Reinl a écrit :
> > > Salut Adrien,
> > > 
> > > works better since rev #4657.
> > > 
> > > but I get a signal 6 at the seconde Out = XSLT.Transform(Xml, Xsl)
> > > 
> > > here I attached a demo where you can see it.
> > > 
> > > This (the FromXML_old is the working version before you changes) is the
> > > original sub I use.
> > 
> > You got this signal because the resulting document of XSLT.Transform(Xml,
> > Xsl) was empty, and hadn't any root element.
> > 
> > I solved the problem in the rev #4659, but you should check if your
> > resulting documents are all valid, in all cases, otherwise the parser may
> > crash and/or return an empty document.
> 
> Salut Adrien,
> 
> the attached test.tar.gz is the same project newXML as yesterday I only
> activated the FromXML_old branch.
> And I packed also the 2 temporary files, to show you the output.
> I used gambas 3.1 r4638 for.
> 
> What I understood till now, whether the new gb.xml is stricter then the
> old one and my 2 xlst are not well done xlst-files or your
> XLST.Transform does not working right yet.

Yes, the new xslt.Transform is stricter that the old one, as the output 
document is parsed into memory via the XmlDocument parser, so it must be XML-
valid.
When I look at the temporary document, for me it is not an XML file, just 
because there isn't any root element. The W3C validator (validator.w3.org) and 
my parser (that shows errors in console since rev #4672) says the same thing 
as me.
So, you'll have to add a root element (like ) to your stylesheets, for 
the output document to be valid, and do not raise errors when parsing.

Moreover, you should put your text datas into CDATAs section, if you don't 
want to be annoyed by the special characters (like < > etc...).

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] rev. 4651 and new gb.xml

2012-04-23 Thread Charlie Reinl
Am Montag, den 23.04.2012, 00:39 +0200 schrieb Adrien Prokopowicz: 
> Le dimanche 22 avril 2012 23:39:27 Charlie Reinl a écrit :
> > Salut Adrien,
> > 
> > works better since rev #4657.
> > 
> > but I get a signal 6 at the seconde Out = XSLT.Transform(Xml, Xsl)
> > 
> > here I attached a demo where you can see it.
> > 
> > This (the FromXML_old is the working version before you changes) is the
> > original sub I use.
> 
> You got this signal because the resulting document of XSLT.Transform(Xml, 
> Xsl) 
> was empty, and hadn't any root element.
> 
> I solved the problem in the rev #4659, but you should check if your resulting 
> documents are all valid, in all cases, otherwise the parser may crash and/or 
> return an empty document.

Salut Adrien,

the attached test.tar.gz is the same project newXML as yesterday I only
activated the FromXML_old branch.
And I packed also the 2 temporary files, to show you the output.
I used gambas 3.1 r4638 for.

What I understood till now, whether the new gb.xml is stricter then the
old one and my 2 xlst are not well done xlst-files or your
XLST.Transform does not working right yet.


-- 
Amicalement
Charlie


test.tar.gz
Description: application/compressed-tar
--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] rev. 4651 and new gb.xml

2012-04-22 Thread Caveat
I'm now on 4659...

URL: https://gambas.svn.sourceforge.net/svnroot/gambas/gambas/trunk
Repository Root: https://gambas.svn.sourceforge.net/svnroot/gambas
Repository UUID: 96304659-1d19-0410-acd0-aead272a8bd5
Revision: 4659
Node Kind: directory
Schedule: normal
Last Changed Author: prokopy
Last Changed Rev: 4659
Last Changed Date: 2012-04-23 00:29:42 +0200 (Mon, 23 Apr 2012)

I don't follow what's the problem here.  I still get an error
specifically pointing to FromString...

Error when trying create a reader from String: 20101120123rubber
duck20101120123sponge:
Unknown symbol 'FromString' in class 'XmlReader' @
XMLParserToModel.parseInputString.60

=
Is FromString available in the new gb.xml or not?
=

Regards,
Caveat

On Mon, 2012-04-23 at 00:39 +0200, Adrien Prokopowicz wrote:
> Le dimanche 22 avril 2012 23:39:27 Charlie Reinl a écrit :
> > Salut Adrien,
> > 
> > works better since rev #4657.
> > 
> > but I get a signal 6 at the seconde Out = XSLT.Transform(Xml, Xsl)
> > 
> > here I attached a demo where you can see it.
> > 
> > This (the FromXML_old is the working version before you changes) is the
> > original sub I use.
> 
> You got this signal because the resulting document of XSLT.Transform(Xml, 
> Xsl) 
> was empty, and hadn't any root element.
> 
> I solved the problem in the rev #4659, but you should check if your resulting 
> documents are all valid, in all cases, otherwise the parser may crash and/or 
> return an empty document.
> 
> --
> For Developers, A Lot Can Happen In A Second.
> Boundary is the first to Know...and Tell You.
> Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
> http://p.sf.net/sfu/Boundary-d2dvs2
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user



--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] rev. 4651 and new gb.xml

2012-04-22 Thread Adrien Prokopowicz
Le dimanche 22 avril 2012 23:39:27 Charlie Reinl a écrit :
> Salut Adrien,
> 
> works better since rev #4657.
> 
> but I get a signal 6 at the seconde Out = XSLT.Transform(Xml, Xsl)
> 
> here I attached a demo where you can see it.
> 
> This (the FromXML_old is the working version before you changes) is the
> original sub I use.

You got this signal because the resulting document of XSLT.Transform(Xml, Xsl) 
was empty, and hadn't any root element.

I solved the problem in the rev #4659, but you should check if your resulting 
documents are all valid, in all cases, otherwise the parser may crash and/or 
return an empty document.

--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] rev. 4651 and new gb.xml

2012-04-22 Thread Charlie Reinl
Salut Adrien,

works better since rev #4657.

but I get a signal 6 at the seconde Out = XSLT.Transform(Xml, Xsl)

here I attached a demo where you can see it.

This (the FromXML_old is the working version before you changes) is the
original sub I use.

-- 
Amicalement
Charlie


newXML-0.0.1.tar.gz
Description: application/compressed-tar
--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] rev. 4651 and new gb.xml

2012-04-22 Thread Adrien Prokopowicz
Le dimanche 22 avril 2012 19:45:07 Charlie Reinl a écrit :
> Salut Adrien,
> 
> Dim Xml as New XmlDocument
> Xml.FromString("path to 'US-presidents-3.xml'")
> 
> that works now. Ran actually rev.4656
> 
> But loading xml2file.xslt like that
> 
> Dim Xsl as New XmlDocument
>   Xsl.FromString("path to 'xml2file.xslt'")
> 
> raise an error .
> 
> next file which will be loaded is xml2macro.xslt
> 
> both will pass by a
>   Outfile = XSLT.Transform(Xml, Xsl)
> 
> Hope that's useful for getting further

Solved in rev #4657.

--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] rev. 4651 and new gb.xml

2012-04-22 Thread Charlie Reinl
Salut Adrien,

Dim Xml as New XmlDocument
Xml.FromString("path to 'US-presidents-3.xml'")

that works now. Ran actually rev.4656

But loading xml2file.xslt like that

Dim Xsl as New XmlDocument
Xsl.FromString("path to 'xml2file.xslt'")

raise an error .

next file which will be loaded is xml2macro.xslt

both will pass by a 
Outfile = XSLT.Transform(Xml, Xsl)

Hope that's useful for getting further

-- 
Amicalement
Charlie



xml2file.xslt
Description: application/xslt


xml2macro.xslt
Description: application/xslt


US-presidents-3.xml
Description: XML document
--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] rev. 4651 and new gb.xml

2012-04-21 Thread Adrien Prokopowicz
Le samedi 21 avril 2012 23:54:55 Charlie Reinl a écrit :
> Am Samstag, den 21.04.2012, 23:47 +0200 schrieb Adrien Prokopowicz:
> > Le samedi 21 avril 2012 23:18:27 Charlie Reinl a écrit :
> > > Am Samstag, den 21.04.2012, 21:19 +0200 schrieb Adrien Prokopowicz:
> > > > Le samedi 21 avril 2012 21:34:55 Karl Reinl a écrit :
> > > > > Salut Benoît,
> > > > > 
> > > > > the new gb.xml broke my project which used before gb.xml and
> > > > > gb.xml.xslt.
> > > > > As I can see, you wrote a gambas component also called gb.xml, which
> > > > > replaced the old.
> > > > > Now I struggle at xml.FromString() where xml is a XmlDocument, while
> > > > > you
> > > > > forgot  FromString, hope ther are not others.
> > > > 
> > > > Hi Karl,
> > > > 
> > > > I don't really understand your problem with XmlDocument.FromString().
> > > > Could
> > > > you be more precise please ?
> > > > 
> > > > Have you got an error message ?
> > > 
> > > Salut,
> > > 
> > > I found out, the new parser have problems with special chars.
> > > 
> > > Try it with the attached  xml.
> > > 
> > > Dim Xml as New XmlDocument
> > > 
> > >   Xml.FromString("path to 'US-presidents-3.xml'")
> > > 
> > > raise an error on special chars, or my box turne crazy.
> > 
> > Problems should be solved in revision #4652.
> 
> --8<-
> Salut Adrien,
> 
> dit you solve only the underline = _ or also other special chars like .-
> etc ?

Since the revision #4654, all special chars are supported (including the UTF-8 
ones). 

--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] rev. 4651 and new gb.xml

2012-04-21 Thread Charlie Reinl
Am Samstag, den 21.04.2012, 23:47 +0200 schrieb Adrien Prokopowicz:
> Le samedi 21 avril 2012 23:18:27 Charlie Reinl a écrit :
> > Am Samstag, den 21.04.2012, 21:19 +0200 schrieb Adrien Prokopowicz:
> > > Le samedi 21 avril 2012 21:34:55 Karl Reinl a écrit :
> > > > Salut Benoît,
> > > > 
> > > > the new gb.xml broke my project which used before gb.xml and
> > > > gb.xml.xslt.
> > > > As I can see, you wrote a gambas component also called gb.xml, which
> > > > replaced the old.
> > > > Now I struggle at xml.FromString() where xml is a XmlDocument, while you
> > > > forgot  FromString, hope ther are not others.
> > > 
> > > Hi Karl,
> > > 
> > > I don't really understand your problem with XmlDocument.FromString().
> > > Could
> > > you be more precise please ?
> > > 
> > > Have you got an error message ?
> > 
> > Salut,
> > 
> > I found out, the new parser have problems with special chars.
> > 
> > Try it with the attached  xml.
> > 
> > Dim Xml as New XmlDocument
> > Xml.FromString("path to 'US-presidents-3.xml'")
> > 
> > raise an error on special chars, or my box turne crazy.
> 
> Problems should be solved in revision #4652.
--8<-
Salut Adrien,

dit you solve only the underline = _ or also other special chars like .-
etc ?



-- 
Amicalement
Charlie


--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] rev. 4651 and new gb.xml

2012-04-21 Thread Adrien Prokopowicz
Le samedi 21 avril 2012 23:18:27 Charlie Reinl a écrit :
> Am Samstag, den 21.04.2012, 21:19 +0200 schrieb Adrien Prokopowicz:
> > Le samedi 21 avril 2012 21:34:55 Karl Reinl a écrit :
> > > Salut Benoît,
> > > 
> > > the new gb.xml broke my project which used before gb.xml and
> > > gb.xml.xslt.
> > > As I can see, you wrote a gambas component also called gb.xml, which
> > > replaced the old.
> > > Now I struggle at xml.FromString() where xml is a XmlDocument, while you
> > > forgot  FromString, hope ther are not others.
> > 
> > Hi Karl,
> > 
> > I don't really understand your problem with XmlDocument.FromString().
> > Could
> > you be more precise please ?
> > 
> > Have you got an error message ?
> 
> Salut,
> 
> I found out, the new parser have problems with special chars.
> 
> Try it with the attached  xml.
> 
> Dim Xml as New XmlDocument
>   Xml.FromString("path to 'US-presidents-3.xml'")
> 
> raise an error on special chars, or my box turne crazy.

Problems should be solved in revision #4652.

--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] rev. 4651 and new gb.xml

2012-04-21 Thread Charlie Reinl
Am Samstag, den 21.04.2012, 21:19 +0200 schrieb Adrien Prokopowicz:
> Le samedi 21 avril 2012 21:34:55 Karl Reinl a écrit :
> > Salut Benoît,
> > 
> > the new gb.xml broke my project which used before gb.xml and
> > gb.xml.xslt.
> > As I can see, you wrote a gambas component also called gb.xml, which
> > replaced the old.
> > Now I struggle at xml.FromString() where xml is a XmlDocument, while you
> > forgot  FromString, hope ther are not others.
> 
> Hi Karl,
> 
> I don't really understand your problem with XmlDocument.FromString(). Could 
> you be more precise please ?
> 
> Have you got an error message ?

Salut,

I found out, the new parser have problems with special chars.

Try it with the attached  xml.

Dim Xml as New XmlDocument
Xml.FromString("path to 'US-presidents-3.xml'")

raise an error on special chars, or my box turne crazy.

 


-- 
Amicalement
Charlie


US-presidents-3.xml
Description: XML document
--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] rev. 4651 and new gb.xml

2012-04-21 Thread Charlie Reinl
Am Samstag, den 21.04.2012, 22:18 +0200 schrieb tobi:
> On Sat, 21 Apr 2012, Charlie Reinl wrote:
> > Am Samstag, den 21.04.2012, 21:35 +0200 schrieb tobi:
> > > On Sat, 21 Apr 2012, Karl Reinl wrote:
> > > > Salut Benoît,
> > > > 
> > > > the new gb.xml broke my project which used before gb.xml and
> > > > gb.xml.xslt.
> > > > As I can see, you wrote a gambas component also called gb.xml, which
> > > > replaced the old.
> > > > Now I struggle at xml.FromString() where xml is a XmlDocument, while you
> > > > forgot  FromString, hope ther are not others.
> > > > 
> > > > -- 
> > > > Amicalement
> > > > Charlie
> > > > 
> > > > 
> > > > --
> > > > For Developers, A Lot Can Happen In A Second.
> > > > Boundary is the first to Know...and Tell You.
> > > > Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
> > > > http://p.sf.net/sfu/Boundary-d2dvs2
> > > > ___
> > > > Gambas-user mailing list
> > > > Gambas-user@lists.sourceforge.net
> > > > https://lists.sourceforge.net/lists/listinfo/gambas-user
> > > 
> > > If I am correct, the component gb.libxml is what you used before and kept 
> > > for compatibility.
> > 
> > Salut,
> > 
> > no, sorry for that, Iv to investigate that, and it is not
> > xml.FromString().
> > 
> > No, Tobi I always used gb.xml and gb.xml.xslt. I used it in gambas1 and
> > gambas2 and gambas3.
> > In gambas3, yesterday at about 03:01:49 with Revision: 4640 gb.libxml
> > came up by replacing gb.xml for making place to gb.xml 22h later.
> > 
> > 
> > 
> > -- 
> > Amicalement
> > Charlie
> > 
> > 
> > --
> > For Developers, A Lot Can Happen In A Second.
> > Boundary is the first to Know...and Tell You.
> > Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
> > http://p.sf.net/sfu/Boundary-d2dvs2
> > ___
> > Gambas-user mailing list
> > Gambas-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/gambas-user
> 
> I can clearly see in gb.libxml/src/CXMLDocument.c that there is a 
> FromString() routine.
> I personally never used that component and I'm sorry if I'm mistaken or 
> misunderstood you.
> (As for gb.libxml.xslt and gb.libxml.rpc they seem to be removed, as 
> indicated by the revision
> logs).
> 
> Regards,
> Tobi
> 
Salut Tobi ,Adrien,

@Tobi
as I said, in last posting, it is NOT FromString().
The  Error message resumed say "bad formed XML-Document" and that raises
at FromString().

Now I have to find out who made/have the parse error the new gb.xml or
the old gb.xml.

A saw the new one deals with DTD (maybe to strict), I haven't, so that's
could be reason. 

@Adrien : j'ai crié trop vite / I screamed too fast

-- 
Amicalement
Charlie


--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] rev. 4651 and new gb.xml

2012-04-21 Thread tobi
On Sat, 21 Apr 2012, Charlie Reinl wrote:
> Am Samstag, den 21.04.2012, 21:35 +0200 schrieb tobi:
> > On Sat, 21 Apr 2012, Karl Reinl wrote:
> > > Salut Benoît,
> > > 
> > > the new gb.xml broke my project which used before gb.xml and
> > > gb.xml.xslt.
> > > As I can see, you wrote a gambas component also called gb.xml, which
> > > replaced the old.
> > > Now I struggle at xml.FromString() where xml is a XmlDocument, while you
> > > forgot  FromString, hope ther are not others.
> > > 
> > > -- 
> > > Amicalement
> > > Charlie
> > > 
> > > 
> > > --
> > > For Developers, A Lot Can Happen In A Second.
> > > Boundary is the first to Know...and Tell You.
> > > Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
> > > http://p.sf.net/sfu/Boundary-d2dvs2
> > > ___
> > > Gambas-user mailing list
> > > Gambas-user@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/gambas-user
> > 
> > If I am correct, the component gb.libxml is what you used before and kept 
> > for compatibility.
> 
> Salut,
> 
> no, sorry for that, Iv to investigate that, and it is not
> xml.FromString().
> 
> No, Tobi I always used gb.xml and gb.xml.xslt. I used it in gambas1 and
> gambas2 and gambas3.
> In gambas3, yesterday at about 03:01:49 with Revision: 4640 gb.libxml
> came up by replacing gb.xml for making place to gb.xml 22h later.
> 
> 
> 
> -- 
> Amicalement
> Charlie
> 
> 
> --
> For Developers, A Lot Can Happen In A Second.
> Boundary is the first to Know...and Tell You.
> Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
> http://p.sf.net/sfu/Boundary-d2dvs2
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user

I can clearly see in gb.libxml/src/CXMLDocument.c that there is a FromString() 
routine.
I personally never used that component and I'm sorry if I'm mistaken or 
misunderstood you.
(As for gb.libxml.xslt and gb.libxml.rpc they seem to be removed, as indicated 
by the revision
logs).

Regards,
Tobi

--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] rev. 4651 and new gb.xml

2012-04-21 Thread Adrien Prokopowicz
Le samedi 21 avril 2012 21:34:55 Karl Reinl a écrit :
> Salut Benoît,
> 
> the new gb.xml broke my project which used before gb.xml and
> gb.xml.xslt.
> As I can see, you wrote a gambas component also called gb.xml, which
> replaced the old.
> Now I struggle at xml.FromString() where xml is a XmlDocument, while you
> forgot  FromString, hope ther are not others.

Hi Karl,

I don't really understand your problem with XmlDocument.FromString(). Could 
you be more precise please ?

Have you got an error message ?

--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] rev. 4651 and new gb.xml

2012-04-21 Thread Charlie Reinl
Am Samstag, den 21.04.2012, 21:35 +0200 schrieb tobi:
> On Sat, 21 Apr 2012, Karl Reinl wrote:
> > Salut Benoît,
> > 
> > the new gb.xml broke my project which used before gb.xml and
> > gb.xml.xslt.
> > As I can see, you wrote a gambas component also called gb.xml, which
> > replaced the old.
> > Now I struggle at xml.FromString() where xml is a XmlDocument, while you
> > forgot  FromString, hope ther are not others.
> > 
> > -- 
> > Amicalement
> > Charlie
> > 
> > 
> > --
> > For Developers, A Lot Can Happen In A Second.
> > Boundary is the first to Know...and Tell You.
> > Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
> > http://p.sf.net/sfu/Boundary-d2dvs2
> > ___
> > Gambas-user mailing list
> > Gambas-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/gambas-user
> 
> If I am correct, the component gb.libxml is what you used before and kept for 
> compatibility.

Salut,

no, sorry for that, Iv to investigate that, and it is not
xml.FromString().

No, Tobi I always used gb.xml and gb.xml.xslt. I used it in gambas1 and
gambas2 and gambas3.
In gambas3, yesterday at about 03:01:49 with Revision: 4640 gb.libxml
came up by replacing gb.xml for making place to gb.xml 22h later.



-- 
Amicalement
Charlie


--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] rev. 4651 and new gb.xml

2012-04-21 Thread tobi
On Sat, 21 Apr 2012, Karl Reinl wrote:
> Salut Benoît,
> 
> the new gb.xml broke my project which used before gb.xml and
> gb.xml.xslt.
> As I can see, you wrote a gambas component also called gb.xml, which
> replaced the old.
> Now I struggle at xml.FromString() where xml is a XmlDocument, while you
> forgot  FromString, hope ther are not others.
> 
> -- 
> Amicalement
> Charlie
> 
> 
> --
> For Developers, A Lot Can Happen In A Second.
> Boundary is the first to Know...and Tell You.
> Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
> http://p.sf.net/sfu/Boundary-d2dvs2
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user

If I am correct, the component gb.libxml is what you used before and kept for 
compatibility.

--
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user