mirror of
https://github.com/wezm/wezm.net.git
synced 2024-11-10 01:42:32 +00:00
Add attributes required by the blogging helper
This commit is contained in:
parent
e83ae7064a
commit
c93cb90268
1 changed files with 6 additions and 8 deletions
|
@ -71,7 +71,7 @@ module Importer
|
|||
end
|
||||
|
||||
def process_post(post)
|
||||
puts "Processing post: #{post.css('title').first.text}"
|
||||
puts "Processing post: #{post.at_css('title').text}"
|
||||
content = get(post, 'content:encoded')
|
||||
|
||||
tags = []
|
||||
|
@ -102,9 +102,10 @@ module Importer
|
|||
:status => get(post, 'wp:status'),
|
||||
:slug => get(post, 'wp:post_name'),
|
||||
:post_id => get(post, 'wp:post_id').to_i,
|
||||
:post_date => get(post, 'wp:post_date_gmt'),
|
||||
:section => find_topmost_category(@categories[categories.first])[:slug],
|
||||
:title => get(post, 'title'),
|
||||
:created_at => get(post, 'wp:post_date_gmt'),
|
||||
:kind => 'article',
|
||||
}
|
||||
|
||||
if attributes[:slug].empty?
|
||||
|
@ -121,15 +122,12 @@ module Importer
|
|||
end
|
||||
|
||||
def process_page(page)
|
||||
puts "Processing page: #{page.css('title').first.text}"
|
||||
puts "WARNING: Skipping page: #{page.at_css('title').text}"
|
||||
end
|
||||
|
||||
def process_attachment(attachment)
|
||||
puts "Processing attachment"
|
||||
|
||||
url = get(attachment, 'guid')
|
||||
|
||||
|
||||
# puts "Processing attachment"
|
||||
# Don't need these for now
|
||||
end
|
||||
|
||||
def add_item(content, attributes, identifier)
|
||||
|
|
Loading…
Reference in a new issue