Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9b5629a

Browse files
committedJul 7, 2015
Improved support for post formats.
1 parent a334aa3 commit 9b5629a

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed
 

‎nikola/plugins/command/import_wordpress.py

+15-4
Original file line numberDiff line numberDiff line change
@@ -439,9 +439,12 @@ def transform_content(self, content, post_format):
439439
content = self.transform_caption(content)
440440
content = self.transform_multiple_newlines(content)
441441
return content, 'md'
442-
else:
443-
# FIXME ???
442+
elif post_format == 'markdown':
444443
return content, 'md'
444+
elif post_format == 'none':
445+
return content, 'html'
446+
else:
447+
return None
445448

446449
def _create_metadata(self, status, excerpt, tags, categories):
447450
other_meta = {'wp-status': status}
@@ -547,6 +550,8 @@ def import_item(self, item, wordpress_namespace, out_folder=None):
547550
format_tag = [x for x in item.findall('*//{%s}meta_key' % wordpress_namespace) if x.text == '_tc_post_format']
548551
if format_tag:
549552
post_format = format_tag[0].getparent().find('{%s}meta_value' % wordpress_namespace).text
553+
if post_format == 'wpautop':
554+
post_format = 'wp'
550555

551556
if is_draft and self.exclude_drafts:
552557
LOGGER.notice('Draft "{0}" will not be imported.'.format(title))
@@ -566,7 +571,12 @@ def import_item(self, item, wordpress_namespace, out_folder=None):
566571
content_translations = {"": content}
567572
default_language = self.context["DEFAULT_LANG"]
568573
for lang, content in content_translations.items():
569-
content, extension = self.transform_content(content, post_format)
574+
try:
575+
content, extension = self.transform_content(content, post_format)
576+
except:
577+
LOGGER.error('Cannot interpret post "{0}" (language {1}) with post ' +
578+
'format {2}!'.format(os.path.join(out_folder, slug), lang, post_format))
579+
return False
570580
if lang:
571581
out_meta_filename = slug + '.meta'
572582
if lang == default_language:
@@ -639,7 +649,8 @@ def import_posts(self, channel):
639649
self.posts_pages[post_id][2] + ".attachments.json")
640650
self.write_attachments_info(destination, self.attachments[post_id])
641651
else:
642-
LOGGER.warn("Found attachments for post or page #{0}, but didn't find post or page. (Attachments: {1})".format(post_id, [e[0] for _, e in self.attachments[post_id].items()]))
652+
LOGGER.warn("Found attachments for post or page #{0}, but didn't find post or page. " +
653+
"(Attachments: {1})".format(post_id, [e[0] for _, e in self.attachments[post_id].items()]))
643654

644655

645656
def get_text_tag(tag, name, default):

0 commit comments

Comments
 (0)
Please sign in to comment.