~ubuntu-branches/ubuntu/natty/libxml++2.6/natty

« back to all changes in this revision

Viewing changes to ChangeLog

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-09-18 11:32:24 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20070918113224-7x031mzf1shoozxx
Tags: 2.20.0-0ubuntu1
* New upstream release:
  - Element: Added get_attribute_value(), to get a simple text value for an
    attribute.
  - Added an experimental --enable-api-exceptions configure option, to allow
    libxml++ to build without exceptions.
* debian/libxml++2.6-doc.docs: 2.18 -> 2.20.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
2.20.0:
 
2
 
 
3
2007-08-30  Murray Cumming  <murrayc@murrayc.com>
 
4
 
 
5
        * examples/dom_parser_raw/main.cc: When exceptions are disabled, assume that they are also 
 
6
        disabled in glibmm and then use the extra error parameter to Glib::convert(), to fix the 
 
7
        build when using glibmm with disabled exceptions.
 
8
        * docs/manual/Makefile.am: Use maintainer-clean instead of clean-local to delete the html, 
 
9
        but this still seems to be deleted when building debian packages.
 
10
 
 
11
2.19.2:
 
12
 
 
13
2007-08-29  Murray Cumming  <murrayc@murrayc.com>
 
14
 
 
15
        * scripts/Makefile.am: distcheck fixes.
 
16
 
 
17
2007-08-29  Murray Cumming  <murrayc@murrayc.com>
 
18
 
 
19
        * autogen.sh:
 
20
        * Makefile.am:
 
21
        * configure.in:
 
22
        * scripts/Makefile.am:
 
23
        * scripts/reduced.m4: Added an --enable-api-exceptions 
 
24
        configure option, which defines LIBXMLCPP_EXCEPTIONS_ENABLED 
 
25
        in libxml++config.h.
 
26
        * examples/dom_build/main.cc:
 
27
        * examples/dom_parse_entities/main.cc:
 
28
        * examples/dom_parser/main.cc:
 
29
        * examples/dom_parser_raw/main.cc:
 
30
        * examples/dom_read_write/main.cc:
 
31
        * examples/dom_xpath/main.cc:
 
32
        * examples/dtdvalidation/main.cc:
 
33
        * examples/import_node/main.cc:
 
34
        * examples/sax_exception/main.cc:
 
35
        * examples/sax_exception/myparser.cc:
 
36
        * examples/sax_parser/main.cc:
 
37
        * examples/sax_parser_build_dom/main.cc:
 
38
        * examples/sax_parser_entities/main.cc:
 
39
        * examples/textreader/main.cc:
 
40
        * libxml++/document.cc:
 
41
        * libxml++/exceptions/exception.cc:
 
42
        * libxml++/exceptions/internal_error.cc:
 
43
        * libxml++/exceptions/parse_error.cc:
 
44
        * libxml++/exceptions/validity_error.cc:
 
45
        * libxml++/io/outputbuffer.cc:
 
46
        * libxml++/io/parserinputbuffer.cc:
 
47
        * libxml++/libxml++config.h.in:
 
48
        * libxml++/nodes/contentnode.cc:
 
49
        * libxml++/nodes/element.cc:
 
50
        * libxml++/nodes/node.cc:
 
51
        * libxml++/parsers/domparser.cc:
 
52
        * libxml++/parsers/parser.cc:
 
53
        * libxml++/parsers/saxparser.cc:
 
54
        * libxml++/parsers/textreader.cc:
 
55
        * libxml++/validators/dtdvalidator.cc:
 
56
        * libxml++/validators/validator.cc:
 
57
        Put LIBXMLCPP_EXCEPTIONS_ENABLED ifdefs around uses of 
 
58
        try, catch, and throw, so that libxml++ can build with 
 
59
        CXXFLAGS="-fno-exceptions". However, we might still 
 
60
        need some alternative error checking API.
 
61
 
 
62
2.19.1:
 
63
 
 
64
2007-07-30  Stef Walter  <stef@memberwebs.com>
 
65
 
 
66
        * libxml++/nodes/element.cc:
 
67
        * libxml++/nodes/element.h: Added get_attribute_value(), 
 
68
        to get a simple text value for an attribute, as a 
 
69
        convenience.
 
70
        Patch in bug #373573.
 
71
 
 
72
2007-07-30  Murray Cumming  <murrayc@murrayc.com>
 
73
 
 
74
        * docs/reference/Doxyfile.in: Added newin2p18, 
 
75
        newin2p20, and newin2p22 tags.
 
76
 
 
77
This is the trunk branch for libxml++ 2.19/2.20.
 
78
See also the gnome-2-18 branch.
 
79
 
1
80
2.18.2:
2
81
 
3
82
2007-07-25  Christophe de Vienne  <cdevienne@gmail.com>