aboutsummaryrefslogtreecommitdiff
path: root/doc/tips/Importing_posts_from_Wordpress.mdwn
blob: 64c995e1800406b16097cf9a52f830dcf1895886 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[[!meta date="2007-10-05 06:59:14 +0000"]]

Use case: You want to move away from Wordpress to Ikiwiki as your blogging/website platform, but you want to retain your old posts.

[This](https://chris-lamb.co.uk/projects/ikiwiki-wordpress-import) is a simple tool that generates [git-fast-import](http://www.kernel.org/pub/software/scm/git/docs/git-fast-import.html)-compatible data from a WordPress export XML file.

WordPress categories are mapped onto Ikiwiki tags. The ability to import comments is planned.

The script uses the [BeautifulSoup][] module.

[BeautifulSoup]: http://www.crummy.com/software/BeautifulSoup/

-----

I include a modified version of this script. This version includes the ability to write \[[!tag foo]] directives, which the original intended, but didn't actually do.

-- [[users/simonraven]]

[[ikiwiki-wordpress-import]]

-----

Perhaps slightly insane, but here's an XSLT style sheet that handles my pages.  It's basic, but sufficient to get started.
Note that I had to break up the ikiwiki meta strings to post this.

-- JasonRiedy

	<?xml version="1.0" encoding="UTF-8"?>
	<xsl:stylesheet version="2.0"
	  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	  xmlns:content="http://purl.org/rss/1.0/modules/content/"
	  xmlns:wp="http://wordpress.org/export/1.0/">
	  
	<xsl:output method="text"/>
	<xsl:output method="text" name="txt"/>
	
	<xsl:variable name='newline'><xsl:text>
	</xsl:text></xsl:variable>
	
	<xsl:template match="channel">
	  <xsl:apply-templates select="item[wp:post_type = 'post']"/>
	</xsl:template>
	
	<xsl:template match="item">
	  <xsl:variable name="idnum" select="format-number(wp:post_id,'0000')" />
	  <xsl:variable name="basename"
			select="concat('wp-posts/post-',$idnum)" />
	  <xsl:variable name="filename"
			select="concat($basename, '.html')" />
	  <xsl:text>Creating </xsl:text>
	  <xsl:value-of select="concat($filename, $newline)" />
	  <xsl:result-document href="{$filename}" format="txt">
	    <xsl:text>[[</xsl:text><xsl:text>meta title="</xsl:text>
	    <xsl:value-of select="replace(title, '&quot;', '&amp;ldquo;')"/>
	    <xsl:text>"]]</xsl:text><xsl:value-of select="$newline"/>
	    <xsl:text>[[</xsl:text><xsl:text>meta date="</xsl:text>
	    <xsl:value-of select="pubDate"/>
	    <xsl:text>"]]</xsl:text><xsl:value-of select="$newline"/>
	    <xsl:text>[[</xsl:text><xsl:text>meta updated="</xsl:text>
	    <xsl:value-of select="pubDate"/>
	    <xsl:text>"]]</xsl:text> <xsl:value-of select="$newline"/>
	    <xsl:value-of select="$newline"/>
	    <xsl:value-of select="content:encoded"/>
	    <xsl:text>
	
	</xsl:text>
	    <xsl:apply-templates select="category[@domain='tag' and not(@nicename)]">
	      <xsl:sort select="name()"/>
	    </xsl:apply-templates>
	  </xsl:result-document>
	  <xsl:apply-templates select="wp:comment">
	    <xsl:sort select="date"/>
	    <xsl:with-param name="basename">$basename</xsl:with-param>
	  </xsl:apply-templates>
	</xsl:template>
	
	<xsl:template match="wp:comment">
	  <xsl:param name="basename"/>
	  <xsl:variable name="cnum" select="format-number(wp:comment_id, '000')" />
	  <xsl:variable name="filename" select="concat($basename, '/comment_', $cnum, '._comment')"/>
	  <xsl:variable name="nickname" select="concat(' nickname=&quot;', wp:comment_author, '&quot;')" />
	  <xsl:variable name="username" select="concat(' username=&quot;', wp:comment_author_url, '&quot;')" />
	  <xsl:variable name="ip" select="concat(' ip=&quot;', wp:comment_author_IP, '&quot;')" />
	  <xsl:variable name="date" select="concat(' date=&quot;', wp:comment_date_gmt, '&quot;')" />
	  <xsl:result-document href="{$filename}" format="txt">
	    <xsl:text>[[</xsl:text><xsl:text>comment format=html</xsl:text><xsl:value-of select="$newline"/>
	    <xsl:value-of select="$nickname"/>
	    <xsl:value-of select="$username"/>
	    <xsl:value-of select="$ip"/>
	    <xsl:value-of select="$date"/>
	    <xsl:text>subject=""</xsl:text><xsl:value-of select="$newline"/>
	    <xsl:text>content="""</xsl:text><xsl:value-of select="$newline"/>
	    <xsl:value-of select="wp:comment_content"/>
	    <xsl:value-of select="$newline"/>
	    <xsl:text>"""]]</xsl:text><xsl:value-of select="$newline"/>
	  </xsl:result-document>
	</xsl:template>
	
	<xsl:template match="category">
	  <xsl:text>[</xsl:text><xsl:text>[</xsl:text><xsl:text>!tag "</xsl:text><xsl:value-of select="."/><xsl:text>"]]</xsl:text>
	  <xsl:value-of select="$newline"/>
	</xsl:template>
	
	</xsl:stylesheet>