History.rdoc in rdf_context-0.5.9.1 vs History.rdoc in rdf_context-0.5.10
- old
+ new
@@ -1,5 +1,26 @@
+=== 0.5.10
+* N3 Parser
+ * Allow mixed case literal languages.
+ * Unescape literals
+* Rspec 2.1.0
+* Added Resource class, a common super-class of BNode, Graph, Literal and URIRef.
+* Implemented Resource.parse and variations for sub-classes to parse N3-coded resources.
+* Literal#typed
+ * Namespaces option now is {prefix => href} rather than {prefix => Namespace}.
+ * Add all in-scope namespaces, not just those that seem to be used.
+* RDFa Parser
+ * Upgrade for changes to RDFa 1.1 test suite
+ * For non-XHTML, allow use of xml:base for non-HTML languages
+ * XHTML has no default vocabulary.
+ * No longer pass vocabularies, prefixes or terms when creating XMLLiterals. Only namespaces derived via xmlns are passed to Literal#typed.
+* SQLite3Store
+ * Basic support for using with ActiveRecord: #initialize _configuration_ can take a _connection_ option, using ActiveRecord::Base.connection.raw_connection
+ * If result set is returned as a hash, change back to an array (needed, as rails sets results_as_hash attribute on DB)
+* Added ActiveRecordStore
+ * Uses ActiveRecord connection to store graph information, not an ActiveRecord::Base model
+
=== 0.5.9.1
* Fix minor graph property caching bug relating to manipulation of sequences.
=== 0.5.9
* Update to 2010-10-26 LC version of RDFa Core 1.1
@@ -8,11 +29,11 @@
* Updated processor graph vocabulary
=== 0.5.8.2
* Don't create unnecessary namespaces when serializing RDF/XML.
* Don't use regexp to substitute base URI in URI serialization.
-* Added :profile_graph option to RdfaParser#parse. This MUST be a ConjunctiveGraph and will be used to save profiles that are encountered.
+* Added profile_graph option to RdfaParser#parse. This MUST be a ConjunctiveGraph and will be used to save profiles that are encountered.
* Fixme, for now, retrieval should include HTTP headers and perform appropriate HTTP cache control and check for potential updates.
* Added ConjunctiveGraph#add_quad. Adds a quad from the intended subject, predicate, object, and context.
@example
g = Graph.new
cg = ConjunctiveGraph.new
@@ -135,10 +156,10 @@
* Fix XML Comparison matcher
* Add --store option to bin/rdf_context. Let Parser#detect_format intuit file type.
* Add Graph#contents as alias to store
* Add ConjunctiveGraph#triples to return all triples from store, not just default context
* Add Graph#nsbinding to retreive Store#nsbinding
-* Fix numerious SQLite3Store and AbstractSQLStore bugs. Add round-trip tests to Graph spec.
+* Fix numerous SQLite3Store and AbstractSQLStore bugs. Add round-trip tests to Graph spec.
=== 0.4.4
* Namespace usage cleanup
* When serializing graph to RDF/XML, create namespaces as necessary.
* rename bin/reddy to bin/rdf_context