Thread: [Gambas-devel-svn] SF.net SVN: gambas:[4652] gambas/trunk/gb.xml/src
Brought to you by:
gambas
From: <pr...@us...> - 2012-04-21 21:46:23
|
Revision: 4652 http://gambas.svn.sourceforge.net/gambas/?rev=4652&view=rev Author: prokopy Date: 2012-04-21 21:46:17 +0000 (Sat, 21 Apr 2012) Log Message: ----------- [GB.XML] * BUG: The '_' special char is now supported in tag names and attribute names. * BUG: Problems with line count when displaying errors are now solved. * BUG: Local projects configuration files have been removed. Modified Paths: -------------- gambas/trunk/gb.xml/src/document.cpp gambas/trunk/gb.xml/src/element.cpp Removed Paths: ------------- gambas/trunk/gb.xml/src/gb.xml/.settings gambas/trunk/gb.xml/src/html/html.pro.user gambas/trunk/gb.xml/src/src.pro.user gambas/trunk/gb.xml/src/xslt/xslt.pro.user This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pr...@us...> - 2012-04-21 22:32:22
|
Revision: 4653 http://gambas.svn.sourceforge.net/gambas/?rev=4653&view=rev Author: prokopy Date: 2012-04-21 22:32:11 +0000 (Sat, 21 Apr 2012) Log Message: ----------- [GB.XML] * BUG: removes not useful C++ flags. Modified Paths: -------------- gambas/trunk/gb.xml/src/Makefile.am gambas/trunk/gb.xml/src/html/Makefile.am gambas/trunk/gb.xml/src/xslt/Makefile.am This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pr...@us...> - 2012-04-22 02:51:59
|
Revision: 4654 http://gambas.svn.sourceforge.net/gambas/?rev=4654&view=rev Author: prokopy Date: 2012-04-22 02:51:53 +0000 (Sun, 22 Apr 2012) Log Message: ----------- [GB.XML] * BUG: the parser now correctly supports UTF-8 * BUG: the parser now allows all special characters in tag names and attribute names, including the UTF-8 ones, as defined in http://www.w3.org/TR/REC-xml/#NT-NameChar Modified Paths: -------------- gambas/trunk/gb.xml/src/element.cpp gambas/trunk/gb.xml/src/main.cpp gambas/trunk/gb.xml/src/main.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pr...@us...> - 2012-04-22 18:51:30
|
Revision: 4657 http://gambas.svn.sourceforge.net/gambas/?rev=4657&view=rev Author: prokopy Date: 2012-04-22 18:51:24 +0000 (Sun, 22 Apr 2012) Log Message: ----------- [GB.XML] * BUG: the parser now supports white spaces (http://www.w3.org/TR/REC-xml/#NT-S Modified Paths: -------------- gambas/trunk/gb.xml/src/element.cpp gambas/trunk/gb.xml/src/main.cpp gambas/trunk/gb.xml/src/main.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pr...@us...> - 2012-04-24 23:47:21
|
Revision: 4669 http://gambas.svn.sourceforge.net/gambas/?rev=4669&view=rev Author: prokopy Date: 2012-04-24 23:47:14 +0000 (Tue, 24 Apr 2012) Log Message: ----------- [GB.XML] * NEW : Added a new property "State" to XmlExplorer and XmlReader, that allows to know the reader state, without knowing Read() return value. * NEW : When enumerating XmlReader.Node.Attributes, XmlReader.Node represents the current attribute. * NEW : Added an new method Open() that loads an HtmlDocument from a file and defines it as the document to read. * NEW : The Attributes property has now moved from XmlElement to XmlNode. XmlNode.Attributes returns Null if the node isn't an element. * NEW : Then enumeration of XmlNode.Attributes now returns an .XmlElementAttribute instead of a string. * NEW : The XmlNode.Attribute constant is not obsolete anymore. * NEW : Two consecutives whitespaces are now ignored (only one is preserved). * NEW : When parsing a file, line-breaks and tabulations are replaced by spaces. * BUG : XmlExplorer flags are now correctly initialized. * BUG : Added an Eof property on XmlExplorer, that was missing. * BUG : Calling XmlExplorer.Read() after Eof just returns XmlReaderNodeType.Eof, not more. * BUG : Calling XmlNode.Next() when the node hasn't got any brother after him doesn't crash anymore, it just returns Null. * BUG : Calling XmlElement.NextSibling() when the node hasn't got any element brother after him doesn't crash anymore, it just returns Null. * BUG : By default, XmlReader correctly stops when reading the end of an element. * BUG : XmlExplorer now correctly initializes and releases itself. * BUG : XmlExplorer now correctly supports its read flags. * OPT : Solved a memory leak when releasing a XmlReader. * OPT : When setting text content to a XmlNode, the string is not duplicated anymore. * OPT : When testing if characters are whitespaces or names characters while parsing texts, puts the temporary variable into registers instead of memory. Modified Paths: -------------- gambas/trunk/gb.xml/src/CElement.cpp gambas/trunk/gb.xml/src/CElement.h gambas/trunk/gb.xml/src/CExplorer.cpp gambas/trunk/gb.xml/src/CNode.cpp gambas/trunk/gb.xml/src/CNode.h gambas/trunk/gb.xml/src/CReader.cpp gambas/trunk/gb.xml/src/element.cpp gambas/trunk/gb.xml/src/element.h gambas/trunk/gb.xml/src/explorer.cpp gambas/trunk/gb.xml/src/explorer.h gambas/trunk/gb.xml/src/gb.xml/.src/XmlReader.class gambas/trunk/gb.xml/src/main.cpp gambas/trunk/gb.xml/src/main.h gambas/trunk/gb.xml/src/node.cpp gambas/trunk/gb.xml/src/node.h gambas/trunk/gb.xml/src/reader.cpp gambas/trunk/gb.xml/src/reader.h gambas/trunk/gb.xml/src/textnode.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pr...@us...> - 2012-04-25 10:29:12
|
Revision: 4672 http://gambas.svn.sourceforge.net/gambas/?rev=4672&view=rev Author: prokopy Date: 2012-04-25 10:29:06 +0000 (Wed, 25 Apr 2012) Log Message: ----------- [GB.XML] * BUG : solved a segmentation fault when releasing a reader. [GB.XML.XSLT] * NEW : when output document is invalid, shows the error message in the standard error output. Modified Paths: -------------- gambas/trunk/gb.xml/src/reader.cpp gambas/trunk/gb.xml/src/xslt/CXSLT.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pr...@us...> - 2012-04-29 23:51:45
|
Revision: 4692 http://gambas.svn.sourceforge.net/gambas/?rev=4692&view=rev Author: prokopy Date: 2012-04-29 23:51:39 +0000 (Sun, 29 Apr 2012) Log Message: ----------- [GB.XML] * NEW : Two consecutives whitespaces (spaces, line-breaks ans tabulations) are now ignored. * OPT : Parser now proceeds faster, and so parsing raw text is very faster. * OPT : For input text, does not uses std::string anymore. * OPT : For object instanciation, does not uses GB.FindClass() anymore (keeps results at component initialization). Modified Paths: -------------- gambas/trunk/gb.xml/src/CDocument.cpp gambas/trunk/gb.xml/src/CElement.cpp gambas/trunk/gb.xml/src/CExplorer.cpp gambas/trunk/gb.xml/src/CNode.cpp gambas/trunk/gb.xml/src/document.cpp gambas/trunk/gb.xml/src/document.h gambas/trunk/gb.xml/src/element.cpp gambas/trunk/gb.xml/src/element.h gambas/trunk/gb.xml/src/gb.xml/.info gambas/trunk/gb.xml/src/gb.xml/.project gambas/trunk/gb.xml/src/gbi.cpp gambas/trunk/gb.xml/src/gbi.h gambas/trunk/gb.xml/src/html/main.cpp gambas/trunk/gb.xml/src/main.cpp gambas/trunk/gb.xml/src/main.h gambas/trunk/gb.xml/src/node.cpp gambas/trunk/gb.xml/src/node.h gambas/trunk/gb.xml/src/reader.cpp gambas/trunk/gb.xml/src/textnode.cpp gambas/trunk/gb.xml/src/textnode.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pr...@us...> - 2012-04-30 14:01:09
|
Revision: 4699 http://gambas.svn.sourceforge.net/gambas/?rev=4699&view=rev Author: prokopy Date: 2012-04-30 14:01:03 +0000 (Mon, 30 Apr 2012) Log Message: ----------- [GB.XML.HTML] * BUG : XmlElement inherited methods and properties now works correctly. Modified Paths: -------------- gambas/trunk/gb.xml/src/document.cpp gambas/trunk/gb.xml/src/gbi.cpp gambas/trunk/gb.xml/src/gbi.h gambas/trunk/gb.xml/src/html/document.cpp gambas/trunk/gb.xml/src/html/document.h gambas/trunk/gb.xml/src/html/main.cpp gambas/trunk/gb.xml/src/main.cpp gambas/trunk/gb.xml/src/main.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pr...@us...> - 2012-05-02 14:08:42
|
Revision: 4709 http://gambas.svn.sourceforge.net/gambas/?rev=4709&view=rev Author: prokopy Date: 2012-05-02 14:08:31 +0000 (Wed, 02 May 2012) Log Message: ----------- [GB.XML.HTML] BUG : the output parser now takes into account HTML tags that must be self-closed (<br />, <meta />, <base />, <link /> ...). Modified Paths: -------------- gambas/trunk/gb.xml/src/element.cpp gambas/trunk/gb.xml/src/element.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pr...@us...> - 2012-05-17 20:50:01
|
Revision: 4737 http://gambas.svn.sourceforge.net/gambas/?rev=4737&view=rev Author: prokopy Date: 2012-05-17 20:49:54 +0000 (Thu, 17 May 2012) Log Message: ----------- [GB.XML] OPT : A few compilation optimizations in headers inclusions. OPT : Use of separated internal classes of gambas objects. This might prevent from a lot of problems. OPT : Strings are not stored as wchar_t* anymore, but as simple char*, and are converted only when necessary (like UTF8 characters verification). OPT : Does not use STL classes anymore. They are too slow. Uses now handmade classes. OPT : Nodes are now internally linked to their brothers, so it makes find them really fasters, and allows no longer use of external linked list. OPT : When creating new nodes, linked Gambas objects are created only when necessary, so it makes internals instanciations very faster (such as the parser). OPT : Handmade string/memory classes and functions are now separated from the main.cpp component file. OPT : Use specialized memory management functions (like memcpy, memchr ...) into the parser. They are really faster than C loops, and speeds up the parser for documents that have a lot of plain text. OPT : Internally, the stream parser (XmlReader) takes only one char, not a unuseful wole string object. OPT : Does not updates debugging data when parsing a file. They will be generated only if an error is raised (not implemented yet). It will allow a speedier parser and more precise informations. BUG : When loading a document from a file, now correctly releases the file data. BUG : Solved a few XmlReader uninitialized variables, that could make the stream parser crash or returns strange results. Modified Paths: -------------- gambas/trunk/gb.xml/src/CDocument.cpp gambas/trunk/gb.xml/src/CDocument.h gambas/trunk/gb.xml/src/CElement.cpp gambas/trunk/gb.xml/src/CElement.h gambas/trunk/gb.xml/src/CExplorer.cpp gambas/trunk/gb.xml/src/CExplorer.h gambas/trunk/gb.xml/src/CNode.cpp gambas/trunk/gb.xml/src/CNode.h gambas/trunk/gb.xml/src/CReader.cpp gambas/trunk/gb.xml/src/CReader.h gambas/trunk/gb.xml/src/CTextNode.cpp gambas/trunk/gb.xml/src/CTextNode.h gambas/trunk/gb.xml/src/Makefile.am gambas/trunk/gb.xml/src/document.cpp gambas/trunk/gb.xml/src/document.h gambas/trunk/gb.xml/src/element.cpp gambas/trunk/gb.xml/src/element.h gambas/trunk/gb.xml/src/explorer.cpp gambas/trunk/gb.xml/src/explorer.h gambas/trunk/gb.xml/src/gb.xml/.project gambas/trunk/gb.xml/src/gbi.cpp gambas/trunk/gb.xml/src/gbi.h gambas/trunk/gb.xml/src/html/CDocument.cpp gambas/trunk/gb.xml/src/html/CDocument.h gambas/trunk/gb.xml/src/html/CElement.cpp gambas/trunk/gb.xml/src/html/CElement.h gambas/trunk/gb.xml/src/html/document.cpp gambas/trunk/gb.xml/src/html/document.h gambas/trunk/gb.xml/src/html/element.cpp gambas/trunk/gb.xml/src/html/element.h gambas/trunk/gb.xml/src/html/main.cpp gambas/trunk/gb.xml/src/main.cpp gambas/trunk/gb.xml/src/main.h gambas/trunk/gb.xml/src/node.cpp gambas/trunk/gb.xml/src/node.h gambas/trunk/gb.xml/src/reader.cpp gambas/trunk/gb.xml/src/reader.h gambas/trunk/gb.xml/src/src.pro gambas/trunk/gb.xml/src/textnode.cpp gambas/trunk/gb.xml/src/textnode.h gambas/trunk/gb.xml/src/xslt/CXSLT.cpp Added Paths: ----------- gambas/trunk/gb.xml/src/utils.cpp gambas/trunk/gb.xml/src/utils.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pr...@us...> - 2012-05-30 21:18:23
|
Revision: 4794 http://gambas.svn.sourceforge.net/gambas/?rev=4794&view=rev Author: prokopy Date: 2012-05-30 21:18:16 +0000 (Wed, 30 May 2012) Log Message: ----------- [GB.XML.HTML] BUG : Html elements which must have self-closing tags are now correctly rendered. BUG : Sylesheet paths are now correctly supported. BUG : Setting the base URL of a document works fine now. BUG : HtmlDocument now can correctly detect the document type. Modified Paths: -------------- gambas/trunk/gb.xml/src/element.cpp gambas/trunk/gb.xml/src/element.h gambas/trunk/gb.xml/src/html/CDocument.cpp gambas/trunk/gb.xml/src/html/hdocument.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pr...@us...> - 2012-05-31 00:52:12
|
Revision: 4795 http://gambas.svn.sourceforge.net/gambas/?rev=4795&view=rev Author: prokopy Date: 2012-05-31 00:52:06 +0000 (Thu, 31 May 2012) Log Message: ----------- [GB.XML] * BUG : Attributes.Count correctly works now * BUG : XmlReader.Read only returns Eof if nothing has been found * OPT : XmlReader now always adds read attributes instead of looking if it is already set Modified Paths: -------------- gambas/trunk/gb.xml/src/element.cpp gambas/trunk/gb.xml/src/gb.xml/.src/XmlReader.class gambas/trunk/gb.xml/src/reader.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pr...@us...> - 2012-06-06 16:38:27
|
Revision: 4813 http://gambas.svn.sourceforge.net/gambas/?rev=4813&view=rev Author: prokopy Date: 2012-06-06 16:38:18 +0000 (Wed, 06 Jun 2012) Log Message: ----------- [GB.XML] * BUG: Fixed XmlExplorer document loading. * BUG: Fixed the XmlElement.LastChildElement property. Modified Paths: -------------- gambas/trunk/gb.xml/src/CDocument.cpp gambas/trunk/gb.xml/src/CExplorer.cpp gambas/trunk/gb.xml/src/element.cpp gambas/trunk/gb.xml/src/explorer.cpp gambas/trunk/gb.xml/src/explorer.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pr...@us...> - 2012-06-09 00:06:44
|
Revision: 4814 http://gambas.svn.sourceforge.net/gambas/?rev=4814&view=rev Author: prokopy Date: 2012-06-09 00:06:38 +0000 (Sat, 09 Jun 2012) Log Message: ----------- [GB.XML] * BUG: XmlReader now correctly reads comments. * BUG: XmlReader now correctly reads self-closed elements. Modified Paths: -------------- gambas/trunk/gb.xml/src/CReader.cpp gambas/trunk/gb.xml/src/reader.cpp gambas/trunk/gb.xml/src/reader.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pr...@us...> - 2012-06-12 18:17:21
|
Revision: 4824 http://gambas.svn.sourceforge.net/gambas/?rev=4824&view=rev Author: prokopy Date: 2012-06-12 18:17:10 +0000 (Tue, 12 Jun 2012) Log Message: ----------- [GB.XML] * BUG: Comments are now correctly supported. * BUG: Fix a 32-bits compilation warning. Modified Paths: -------------- gambas/trunk/gb.xml/src/reader.cpp gambas/trunk/gb.xml/src/reader.h gambas/trunk/gb.xml/src/textnode.cpp gambas/trunk/gb.xml/src/utils.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pr...@us...> - 2012-06-12 21:13:04
|
Revision: 4826 http://gambas.svn.sourceforge.net/gambas/?rev=4826&view=rev Author: prokopy Date: 2012-06-12 21:12:56 +0000 (Tue, 12 Jun 2012) Log Message: ----------- [GB.XML.XSLT] * BUG: No more excessive line-breaks and spaces added to the output document. [GB.XML] * NEW: Text nodes that only contains white characters (\n \r \t and space) are now deleted when parsing. * BUG: (non-)indentation now correctly works on text nodes. Modified Paths: -------------- gambas/trunk/gb.xml/src/document.h gambas/trunk/gb.xml/src/element.cpp gambas/trunk/gb.xml/src/textnode.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pr...@us...> - 2012-06-16 17:49:32
|
Revision: 4838 http://gambas.svn.sourceforge.net/gambas/?rev=4838&view=rev Author: prokopy Date: 2012-06-16 17:49:25 +0000 (Sat, 16 Jun 2012) Log Message: ----------- [GB.XML] * BUG: XMLReader.Node.Type now correctly returns the state of the reader instead of the type of the node. (No, there isn't any error in this sentence) Modified Paths: -------------- gambas/trunk/gb.xml/src/CReader.cpp gambas/trunk/gb.xml/src/reader.cpp gambas/trunk/gb.xml/src/reader.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pr...@us...> - 2012-06-23 19:43:49
|
Revision: 4855 http://gambas.svn.sourceforge.net/gambas/?rev=4855&view=rev Author: prokopy Date: 2012-06-23 19:43:43 +0000 (Sat, 23 Jun 2012) Log Message: ----------- [GB.XML] * BUG: XmlReader.Node.Type now correctly shows the XmlReaderNodeType.Element value. * BUG: Updated test module, so that it is compatible with gb.libxml. Modified Paths: -------------- gambas/trunk/gb.xml/src/gb.xml/.src/MTest2.module gambas/trunk/gb.xml/src/gb.xml/text.xml gambas/trunk/gb.xml/src/reader.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pr...@us...> - 2012-06-25 12:44:22
|
Revision: 4858 http://gambas.svn.sourceforge.net/gambas/?rev=4858&view=rev Author: prokopy Date: 2012-06-25 12:44:15 +0000 (Mon, 25 Jun 2012) Log Message: ----------- [GB.XML] * NEW: The GetAttribute(), GetChildrenByTagName(), GetChildrenByAttributeValue() andGetElementsByTagName() methods now take an new Mode argument, specifying the comparison method. It can be GB.Binary, GB.IgnoreCase or GB.Like. * BUG: The XmlElement.ChildElements does not contains Null fields anymore. * BUG: Removed some debugging messages. Modified Paths: -------------- gambas/trunk/gb.xml/src/CDocument.cpp gambas/trunk/gb.xml/src/CElement.cpp gambas/trunk/gb.xml/src/CReader.cpp gambas/trunk/gb.xml/src/document.cpp gambas/trunk/gb.xml/src/document.h gambas/trunk/gb.xml/src/element.cpp gambas/trunk/gb.xml/src/element.h gambas/trunk/gb.xml/src/explorer.cpp gambas/trunk/gb.xml/src/main.h gambas/trunk/gb.xml/src/node.cpp gambas/trunk/gb.xml/src/reader.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pr...@us...> - 2012-06-25 16:33:24
|
Revision: 4859 http://gambas.svn.sourceforge.net/gambas/?rev=4859&view=rev Author: prokopy Date: 2012-06-25 16:33:14 +0000 (Mon, 25 Jun 2012) Log Message: ----------- [GB.XML] * NEW: XmlElement now fully supports namespace prefixes in its tag name. See the Prefix property, and the GetChildrenByNameSpace and GetElementsByNameSpace methods. Modified Paths: -------------- gambas/trunk/gb.xml/src/CDocument.cpp gambas/trunk/gb.xml/src/CElement.cpp gambas/trunk/gb.xml/src/document.cpp gambas/trunk/gb.xml/src/document.h gambas/trunk/gb.xml/src/element.cpp gambas/trunk/gb.xml/src/element.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pr...@us...> - 2012-06-26 17:46:04
|
Revision: 4861 http://gambas.svn.sourceforge.net/gambas/?rev=4861&view=rev Author: prokopy Date: 2012-06-26 17:45:57 +0000 (Tue, 26 Jun 2012) Log Message: ----------- [GB.XML] * BUG: Non-prefixed elements does not crashes anymore * BUG: Parsing errors are now correctly catched when calling XmlElement.AppendFromText() Modified Paths: -------------- gambas/trunk/gb.xml/src/CElement.cpp gambas/trunk/gb.xml/src/element.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pr...@us...> - 2012-06-27 12:17:57
|
Revision: 4864 http://gambas.svn.sourceforge.net/gambas/?rev=4864&view=rev Author: prokopy Date: 2012-06-27 12:17:47 +0000 (Wed, 27 Jun 2012) Log Message: ----------- [GB.XML] * BUG: The XmlReader.Close() method is back. * BUG: XmlReader node values don't have extra spaces anymore. Modified Paths: -------------- gambas/trunk/gb.xml/src/CReader.cpp gambas/trunk/gb.xml/src/gb.xml/.info gambas/trunk/gb.xml/src/gb.xml/.src/MTest2.module gambas/trunk/gb.xml/src/gb.xml/.src/XmlReader.class gambas/trunk/gb.xml/src/reader.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pr...@us...> - 2012-06-29 22:02:49
|
Revision: 4872 http://gambas.svn.sourceforge.net/gambas/?rev=4872&view=rev Author: prokopy Date: 2012-06-29 22:02:43 +0000 (Fri, 29 Jun 2012) Log Message: ----------- [GB.XML] * BUG: Solved a few memory leaks. Modified Paths: -------------- gambas/trunk/gb.xml/src/CDocument.cpp gambas/trunk/gb.xml/src/CElement.cpp gambas/trunk/gb.xml/src/element.cpp gambas/trunk/gb.xml/src/html/CDocument.cpp gambas/trunk/gb.xml/src/html/CElement.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pr...@us...> - 2012-06-29 22:40:30
|
Revision: 4873 http://gambas.svn.sourceforge.net/gambas/?rev=4873&view=rev Author: prokopy Date: 2012-06-29 22:40:23 +0000 (Fri, 29 Jun 2012) Log Message: ----------- [GB.XML] * BUG: Solved a XmlElement instanciation problem. Modified Paths: -------------- gambas/trunk/gb.xml/src/CElement.cpp gambas/trunk/gb.xml/src/html/CElement.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pr...@us...> - 2012-07-09 22:22:17
|
Revision: 4927 http://gambas.svn.sourceforge.net/gambas/?rev=4927&view=rev Author: prokopy Date: 2012-07-09 22:22:11 +0000 (Mon, 09 Jul 2012) Log Message: ----------- [GB.XML] * BUG: Getting an attribute that doesn't exist doesn't crashes anymore, it returns a null string instead. * BUG: The string comparison mode argument is now correctly handled by XmlElement.GetAttribute(). Modified Paths: -------------- gambas/trunk/gb.xml/src/CElement.cpp gambas/trunk/gb.xml/src/CNode.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |