Visualizza post

Questa sezione ti permette di visualizzare tutti i post inviati da questo utente. N.B: puoi vedere solo i post relativi alle aree dove hai l'accesso.


Post - Prokopy

Pagine: 1 [2]
16
Segnalazione bug / Re: Errore con i tag XmlWriter in gb.xml
« il: 16 Giugno 2012, 20:26:45 »
Sotema,
no, the two component are not fully equivalent. New properties and methods were added. But the component should behaves as libxml with the same code.

This is the reason why these changes were commited on the development version. So you may expect bugs until the stable version is released.

The State/NodeType problem has been solved in the last revision.

It seems there are other problems, with XmlWriter, but I need more precisions !

Citazione
Faccio notare che anche XmlWriter funziona piuttosto male, aggiunge spazi indesiderati, interpreta male i tag, gli elementi e le properties.
Citazione
I note that XmlWriter works pretty bad, adds unwanted spaces, misread tags, elements and properties.

This is not enough for understanding where is a bug.

17
Segnalazione bug / Re: Errore con i tag XmlWriter in gb.xml
« il: 16 Giugno 2012, 18:53:35 »
I haven't finished my analysis, but I noticed one error in your code :

(PgXmlDocument.class, line 79)

Codice: gambas [Seleziona]
Select Case oXml.Node.Type
      '[...]
Case XmlReaderNodeType.EndElement


EndElement is not a node type, but a state, so Node.Type will never return this. You should use the State property instead :

Codice: gambas [Seleziona]
Select Case oXml.State
      '[...]
Case XmlReaderNodeType.EndElement'Ok


And, another question, are all your files encoded in UTF-8 ?

18
Segnalazione bug / Re: Errore con i tag XmlWriter in gb.xml
« il: 16 Giugno 2012, 15:09:15 »
Hi sotema,

yes, there were some changes in XmlReader, but normally, it should not be any difference in behavior between gb.libxml and gb.xml, so it is a bug.
Maybe with the full project, I can find where is the problem.

19
Segnalazione bug / Re: Errore con i tag XmlWriter in gb.xml
« il: 16 Giugno 2012, 14:38:45 »
Hi all.
It's me, Adrien. It's faster to reply directly here.

Citazione
Scherzi a parte, dalla risposta sembra che all'amico và tutto bene, come del resto dimostrano i risultati che ha postato. A questo punto non capisco perchè a me non funziona...

Have you got the lastest revision ? I have the #4837.
Or maybe there are errors during the compilation. Can you send here the output ?

Citazione
Ad ogni modo, come indicato da sotema, se è un problema il passaggio posso scavalcarti vuott, e passare direttamente alla comunicazione con Adrien, anche se comunque devo necessariamente utilizzare il traduttore di google... ;D

I use it too. That's very helpful.  :)
Moreover, often Italian sounds like French, so it helps me understanding.
Does anyone speak French here ? No ? Never mind... ;D

Pagine: 1 [2]