]> git.mxchange.org Git - flightgear.git/blob - utils/xmlgrep/ChangeLog
81cd7801d6275cc1b9a0f6373bbc22370fb19d01
[flightgear.git] / utils / xmlgrep / ChangeLog
1 30-04-2009
2   * Fix an off by one problem.
3
4 28-04-2009
5   * changes to the code to allow walking the xml-tree using "*" as a node name
6   * add printxml, an example utility that walks an xml-tree and prints it
7     contenst
8
9 27-04-2009
10   * add xmlInitBuffer() for processing of a preallocated buffer
11   * add xmlErrorGetColumnNo to get the column number of the syntax error
12   * pass an error at a higher level to lower levels
13   * detect a number of extra syntax errors
14
15 26-04-2009
16   * add support for comments inside xml-tags, e.g.: <test><!-- --></test>
17
18 25-04-2009
19   * add support for self-contained tags like <test/>
20   * fix a problem if a file could not be mmaped
21   * add a few comments which hopefully makes the code easier to understand
22   * code cleanups
23
24 20-04-2009
25   * fix a case where a single-element root path (e.g. "/printer") would not
26     pass xmlNodeGetPath
27   * fix a problem where attributes or elements starting with the same letter
28     sequence could give a false negative result
29   * Add a 'clear' attribute to the xmlErrorGet functions that indicates whether
30     the error should be cleared or not
31   * detect more xml syntax errors
32
33 18-04-2009
34   * Make the code compiler correctly under windows
35   * Introduce a root-node that can hold extra information which is necessary
36     for thread safety under windows
37   * Add xmlErrorGetString, xmlErrorGetLineNo for syntax error detetction
38   * Add xmlErrGetNo for detection of, and clearing the last error
39
40 16-04-2009
41   * Rename xmlGetNode functions to xmlNodeGet for better consistancy
42   * likewise for xmlCopyNode en xmlCompareNode
43   * add xmlAttributeGetDouble, xmlAttributeGetInt, xmlAttributeGetString
44     xmlAttributeCopyString and xmlAttributeCompareString functions
45   * fix some small bugs and problems along the way
46   * add support for filtering on attribute value in xmlgrep
47
48 21-07-2008
49   * change a number of function parameters to const where appropriate
50   * fix a problem where the wrong node-name length was returned
51   * xmlgrep now also works when only the -e options is specified
52   * fix xmlgrep to show the correct node-name (it reported the parent
53     node-name in the previous version)
54
55 20-07-2008
56   * fix __xmlSkipComment to properly find the end of comment tag.
57   * add the xmlGetNodeName and xmlCopyNodeName functions
58   * add the xmlCopyString function
59   * clean up some code
60
61 19-07-2008
62   * rewrite the code to always recursively walk the node tree when searching
63     for a particular node. this is required for cases where a node with a
64     particular name is located deeper in a node with the same name;
65     for example -r /configuration/device/reference/device would fail in the 
66     previous verion
67   * rename xmlGetElement to xmlGetNodeNum and add the possibility to request
68     the nth node with this name
69   * rename xmlGetNumElements to xmlGetNumNodes
70
71 06-07-2008
72   * reorganize the code to be able to skip comment sections
73   * depreciate __xmlFindNextElement and use __xmlGetNode instead
74   * xmlGetNextElement now returns char* instead of void* for furute use
75   * add preliminary support for wildcards in the search path ('*' and '?')
76
77 01-07-2008
78  * fix a problem caused by removing the last unnecessary alloc
79  * strip leading-, and trailing spaces from the string before comparing
80  * fix a problem where trailing spaces weren't removed
81
82 30-06-2008:
83  * some small changes; fix some typo's and fix a small memory leak
84  * update the documentation in README
85  * remove the last unnecessary alloc
86
87 29-06-2008:
88  * rename xmlGet(Int/Double/String) to xmlGetNode(Int/Double/String)
89  * add new xmlGet(Int/Double/String) functions
90  * rename xmlCompareString to xmlCompareNodeString for consistency
91  * rename xmlCompareElement to xmlCompareString for consistency
92  * add a README file with short examples of various functions
93
94 27-06-2008:
95  * removed some memory allocation in xmlGetNode and XMLGetNextElement
96  * use the file-size for mmap and remove the root node from the xml-id
97  * rearrange xmlGetNode to work with complicated xml files
98  * add the xmlMarkId function to save the id before using xmlGetNextElement
99  * speed up xmlGetNextId
100
101 23-06-2008: Initial release