rdfa 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +5 -1
- data/lib/rdfa/base.rb +1 -1
- data/lib/rdfa/version.rb +1 -1
- metadata +1 -1
data/History.txt
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
|
+
+++ 0.0.3 2007-05-29
|
|
2
|
+
+ 1 tiny change:
|
|
3
|
+
+ fixed a bug in rdfa_write_block
|
|
4
|
+
|
|
1
5
|
+++ 0.0.2 2007-05-29
|
|
2
|
-
+ 1
|
|
6
|
+
+ 1 tiny change:
|
|
3
7
|
+ changed "rel" to "property" according to the RDFa primer. It seems rel is only used for anchors.
|
|
4
8
|
|
|
5
9
|
+++ 0.0.1 2007-05-24
|
data/lib/rdfa/base.rb
CHANGED
|
@@ -12,7 +12,7 @@ end
|
|
|
12
12
|
|
|
13
13
|
def rdfa_write_block tag, rdfa_options = {} , &block
|
|
14
14
|
content = capture(&block)
|
|
15
|
-
concat(
|
|
15
|
+
concat(rdfa_write(tag, content, rdfa_options), block.binding)
|
|
16
16
|
end
|
|
17
17
|
|
|
18
18
|
def rdfa_write tag, body, rdfa_options = {}
|
data/lib/rdfa/version.rb
CHANGED