dynarex-blog 0.1.11 → 0.1.12

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.
Files changed (2) hide show
  1. data/lib/dynarex-blog.rb +5 -5
  2. metadata +2 -2
@@ -140,15 +140,15 @@ class DynarexBlog
140
140
  doc = Document.new File.open(@file_path + lookup,'r').read
141
141
  x1 = (number - 1) * 10
142
142
  x2 = x1 + 9
143
- p x1, x2
144
143
 
145
- a = XPath.match(doc.root,'records/entry').reverse[x1..x2]
146
- xpath_ids = "entry[%s]" % a.map{|x| x.attribute('id').value}.map{|x| "@id='%s'" % x}.join(' or ')
144
+ a = XPath.match(doc.root,'records/entry')[x1..x2]
145
+
146
+ xpath_ids = "entry[%s]" % a.map{|x| x.text('id').to_s}.map{|x| "@id='%s'" % x}.join(' or ')
147
147
 
148
148
  temp_doc = Document.new '<root/>'
149
149
  a.map{|x| x.text('file').to_s}.uniq.each do |file|
150
- doc = Document.new File.open(file,'r').read
151
- XPath.each(doc.root,'records/entry') do |entry|
150
+ doc_entryx = Document.new File.open(file,'r').read
151
+ XPath.each(doc_entryx.root,'records/entry') do |entry|
152
152
  temp_doc.root.add entry
153
153
  end
154
154
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dynarex-blog
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.11
4
+ version: 0.1.12
5
5
  platform: ruby
6
6
  authors: []
7
7
 
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-06-23 00:00:00 +01:00
12
+ date: 2010-06-24 00:00:00 +01:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency