~ubuntu-branches/debian/sid/redland-bindings/sid

« back to all changes in this revision

Viewing changes to ChangeLog.11

  • Committer: Package Import Robot
  • Author(s): Dave Beckett
  • Date: 2013-01-22 16:03:44 UTC
  • mfrom: (0.1.10)
  • Revision ID: package-import@ubuntu.com-20130122160344-vxrnfl0xynfzbze7
Tags: 1.0.16.1-1
* New upstream release
* Add dpkg-buildflags to configure for hardening

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
2010-12-02  Dave Beckett <dave@dajobe.org>
 
2
 
 
3
        * python/RDF.py: Allow querystring parameter to Query objects to
 
4
        be unicode
 
5
 
 
6
        (Query.__init__): Check querystring is not None and convert
 
7
        unicode to string (UTF-8 bytes)
 
8
 
 
9
        Fixes Issue #0000403
 
10
        http://bugs.librdf.org/mantis/view.php?id=403
 
11
 
 
12
2010-12-01  Dave Beckett <dave@dajobe.org>
 
13
 
 
14
        * python/RDF.py: In constructors, set all attributes to None
 
15
        before any exceptions can be thrown
 
16
 
 
17
        * python/RDF.py: Protect World and Iterator destructors from use
 
18
        of maybe undefined attribute.
 
19
 
 
20
        * python/RDF.py: typo
 
21
 
 
22
        * python/RDF.py: Node class __str__ and __unicode__ methods return
 
23
        simple results
 
24
 
 
25
        (Node.__str__): Just calls __unicode__ and converts
 
26
 
 
27
        (Node.__unicode__): No longer returns a formatted result (in
 
28
        N-Triples) but grabs a simple string value for literal, blank and
 
29
        uri.
 
30
 
 
31
        * python/RDF.py: Node class gains a blank property
 
32
 
 
33
        (Node.__get_blank_): Return a unicode ID
 
34
 
 
35
        (Node.blank): Added property with shorter name than
 
36
        blank_identifier.
 
37
 
 
38
        * python/RDF.py: Node class gains literal property returning a
 
39
        tuple of str, lang, dt
 
40
 
 
41
        (Node._get_literal): Added to return a tuple-valued property which
 
42
        is shorter and nicer to deal with than a dictionary.
 
43
 
 
44
        (Node.literal): Added property that uses above internal function.
 
45
 
 
46
2010-11-14  Dave Beckett <dave@dajobe.org>
 
47
 
 
48
        * python/RDF.py:
 
49
        (QueryResults.to_string): Return bindings results with base URI
 
50
 
 
51
        Only returns bindings results in cases when the base_uri was None
 
52
        due to indenting the return statement.
 
53
 
 
54
2010-10-16  Nicholas J Humfrey <njh@aelius.com>
 
55
 
 
56
        * ruby/test/test_query.rb, ruby/test/test_serializer.rb: Improved
 
57
        Ruby serialiser tests by checking output using regular expressions
 
58
        instead of stream lengths.
 
59
 
 
60
2010-10-15  Dave Beckett <dave@dajobe.org>
 
61
 
 
62
        * ruby/test/Makefile.am, ruby/test/one.nt,
 
63
        ruby/test/test_store.rb: Make test_store.rb work
 
64
 
 
65
        * ruby/lib/rdf/redland/node.rb: Fixed a number of Ruby tests by
 
66
        restoring Redland::Node#to_s to it's old behavior of returning
 
67
        string values without quotes.
 
68
 
 
69
        * ruby/lib/rdf/redland.rb, ruby/lib/rdf/redland/model.rb,
 
70
        ruby/lib/rdf/redland/parser.rb, ruby/lib/rdf/redland/resource.rb,
 
71
        ruby/test/test_model.rb, ruby/test/test_node.rb,
 
72
        ruby/test/test_parser.rb, ruby/test/test_query.rb,
 
73
        ruby/test/test_rdfs_resource.rb, ruby/test/test_resource.rb,
 
74
        ruby/test/test_statement.rb, ruby/test/test_store.rb,
 
75
        ruby/test/test_uri.rb: Cleaned up inconsistent whitespace in the
 
76
        Ruby code and tests.
 
77
 
 
78
        Made the Ruby tests less noisy by commenting out a number of
 
79
        'puts' debug statements.
 
80
 
 
81
2010-10-10  Dave Beckett <dave@dajobe.org>
 
82
 
 
83
        * configure.ac: Compare versions in decimal
 
84
 
 
85
        * configure.ac: Just warn if system redland is newer than our
 
86
        version.  Error out if it is older.
 
87
 
 
88
2010-09-27  Dave Beckett <dave@dajobe.org>
 
89
 
 
90
        * Snapshotted redland-bindings_1_0_11_1 for 1.0.11.1 release (GIT
 
91
        46c21d201277766c7d6afe9c8e5c3876ab7c5571)
 
92
 
 
93
2010-09-26  Dave Beckett <dave@dajobe.org>
 
94
 
 
95
        * python/Makefile.am: Add redland-pre.i
 
96
 
 
97
        * php/Makefile.am: Added -d enable_dl=On to test to maybe help
 
98
        reduce warnings See http://us2.php.net/dl
 
99
 
 
100
        * RELEASE.html, bindings.rdf.in, configure.ac,
 
101
        redland-bindings.spec.in:
 
102
        #words - Redland librdf language bindings
 
103
 
 
104
        * lua/Makefile.am:
 
105
         lua_$(LUA_PACKAGE).h is not an output of swig for lua
 
106
 
 
107
        * AUTHORS: C# gone
 
108
 
 
109
        * autogen.sh: Use latest autogen.sh - automake 1.11 required, uses
 
110
        silent rules etc.
 
111
 
 
112
        * perl/Makefile.am, php/Makefile.am, python/Makefile.am: Remove
 
113
        junk for obsolete dmalloc configuration
 
114
 
 
115
        * .gitignore, acinclude.m4, build/.gitignore: Update config for
 
116
        build/ dir.  remove unused acinclude.m4
 
117
 
 
118
        * configure.ac: Automake 1.11 and use build/ dir for aux and
 
119
        macros like rest of Redland
 
120
 
 
121
        * LICENSE.html: Use 'or any newer versions' in titles too. Link to
 
122
        specific LGPL 2.1
 
123
 
 
124
2010-09-20  Dave Beckett <dave@dajobe.org>
 
125
 
 
126
        * lua/Makefile.am, lua/test.lua: Add test.lua and make 'make
 
127
        check' work
 
128
 
 
129
        * Makefile.am, configure.ac, lua/Makefile.am: Add skeleton config
 
130
        for LUA bindings
 
131
 
 
132
2010-08-09  Dave Beckett <dave@dajobe.org>
 
133
 
 
134
        * python/redland-post.i:
 
135
        Revert raptor_locator_uri_string to
 
136
        raptor_locator_uri
 
137
 
 
138
        * python/Makefile.am, python/redland-post.i, python/redland-pre.i:
 
139
        Update for raptor2 API
 
140
 
 
141
        * configure.ac: Check if Redland uses Raptor2 API and set/define
 
142
        REDLAND_HAVE_RAPTOR2_API
 
143
 
 
144
2010-08-07  Dave Beckett <dave@dajobe.org>
 
145
 
 
146
        * configure.ac: 1.0.11
 
147
 
 
148
2010-08-05  Dave Beckett <dave@dajobe.org>
 
149
 
 
150
        * python/example.py: Turn raised exceptions into objects
 
151
 
 
152
        * configure.ac: For OSX Python, add -F$fpath to set framework path
 
153
        for the given python
 
154
 
 
155
        * python/redland-post.i:
 
156
        (librdf_python_unicode_to_bytes): Throw exceptions with better
 
157
        runtime error types
 
158
 
 
159
        * python/redland-post.i:
 
160
        (librdf_python_unicode_to_bytes): Fix calculation of input string
 
161
        length and output buffer size.  Set exceptions on errors - using a
 
162
        bogus type for now
 
163
 
 
164
2010-02-04  Dave Beckett <dave@dajobe.org>
 
165
 
 
166
        * ruby/lib/rdf/redland/node.rb:
 
167
        (node_from_hash): removed unused var h
 
168
 
 
169
2010-01-02  Dave Beckett <dave@dajobe.org>
 
170
 
 
171
        * .gitignore, perl/.gitignore, php/.gitignore, python/.gitignore,
 
172
        ruby/.gitignore:
 
173
        Add .gitignore to replace SVN prop svn:ignore