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