matflores-jekyll 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. data/History.txt +113 -0
  2. data/README.textile +508 -0
  3. data/VERSION.yml +4 -0
  4. data/bin/jekyll +136 -0
  5. data/lib/jekyll.rb +69 -0
  6. data/lib/jekyll/albino.rb +120 -0
  7. data/lib/jekyll/archive.rb +25 -0
  8. data/lib/jekyll/converters/csv.rb +26 -0
  9. data/lib/jekyll/converters/mephisto.rb +79 -0
  10. data/lib/jekyll/converters/mt.rb +59 -0
  11. data/lib/jekyll/converters/textpattern.rb +50 -0
  12. data/lib/jekyll/converters/typo.rb +49 -0
  13. data/lib/jekyll/converters/wordpress.rb +55 -0
  14. data/lib/jekyll/convertible.rb +71 -0
  15. data/lib/jekyll/core_ext.rb +22 -0
  16. data/lib/jekyll/filters.rb +50 -0
  17. data/lib/jekyll/layout.rb +33 -0
  18. data/lib/jekyll/page.rb +64 -0
  19. data/lib/jekyll/post.rb +201 -0
  20. data/lib/jekyll/site.rb +241 -0
  21. data/lib/jekyll/tags/highlight.rb +53 -0
  22. data/lib/jekyll/tags/include.rb +31 -0
  23. data/test/helper.rb +14 -0
  24. data/test/source/_includes/sig.markdown +3 -0
  25. data/test/source/_layouts/default.html +27 -0
  26. data/test/source/_layouts/simple.html +1 -0
  27. data/test/source/_posts/2008-10-18-foo-bar.textile +8 -0
  28. data/test/source/_posts/2008-11-21-complex.textile +8 -0
  29. data/test/source/_posts/2008-12-03-permalinked-post.textile +9 -0
  30. data/test/source/_posts/2008-12-13-include.markdown +8 -0
  31. data/test/source/category/_posts/2008-9-23-categories.textile +6 -0
  32. data/test/source/css/screen.css +76 -0
  33. data/test/source/foo/_posts/bar/2008-12-12-topical-post.textile +8 -0
  34. data/test/source/index.html +22 -0
  35. data/test/source/z_category/_posts/2008-9-23-categories.textile +6 -0
  36. data/test/suite.rb +9 -0
  37. data/test/test_filters.rb +41 -0
  38. data/test/test_generated_site.rb +60 -0
  39. data/test/test_jekyll.rb +0 -0
  40. data/test/test_post.rb +141 -0
  41. data/test/test_site.rb +45 -0
  42. data/test/test_tags.rb +31 -0
  43. metadata +170 -0
data/History.txt ADDED
@@ -0,0 +1,113 @@
1
+ ==
2
+ * Minor Enhancements
3
+ * Ability to set post categories via YAML [github.com/qrush]
4
+ * Ability to set prevent a post from publishing via YAML [github.com/qrush]
5
+ * Add textilize filter [github.com/willcodeforfoo]
6
+ * Add 'pretty' permalink style for wordpress-like urls [github.com/dysinger]
7
+ * Made it possible to enter categories from YAML as an array [github.com/Chrononaut]
8
+ * Ignore Emacs autosave files [github.com/Chrononaut]
9
+ * Bug Fixes
10
+ * Use block syntax of popen4 to ensure that subprocesses are properly disposed [github.com/jqr]
11
+ * Close open4 streams to prevent zombies [github.com/rtomayko]
12
+ * Only query required fields from the WP Database [github.com/ariejan]
13
+ * Prevent _posts from being copied to the destination directory [github.com/bdimcheff]
14
+ * Refactors
15
+ * Factored the filtering code into a method [github.com/Chrononaut]
16
+
17
+ == 0.4.1
18
+ * Minor Enhancements
19
+ * Changed date format on wordpress converter (zeropadding) [github.com/dysinger]
20
+ * Bug Fixes
21
+ * Add jekyll binary as executable to gemspec [github.com/dysinger]
22
+
23
+ == 0.4.0 / 2009-02-03
24
+ * Major Enhancements
25
+ * Switch to Jeweler for packaging tasks
26
+ * Minor Enhancements
27
+ * Type importer [github.com/codeslinger]
28
+ * site.topics accessor [github.com/baz]
29
+ * Add array_to_sentence_string filter [github.com/mchung]
30
+ * Add a converter for textpattern [github.com/PerfectlyNormal]
31
+ * Add a working Mephisto / MySQL converter [github.com/ivey]
32
+ * Allowing .htaccess files to be copied over into the generated site [github.com/briandoll]
33
+ * Add option to not put file date in permalink URL [github.com/mreid]
34
+ * Add line number capabilities to highlight blocks [github.com/jcon]
35
+ * Bug Fixes
36
+ * Fix permalink behavior [github.com/cavalle]
37
+ * Fixed an issue with pygments, markdown, and newlines [github.com/zpinter]
38
+ * Ampersands need to be escaped [github.com/pufuwozu, github.com/ap]
39
+ * Test and fix the site.categories hash [github.com/zzot]
40
+ * Fix site payload available to files [github.com/matrix9180]
41
+
42
+ == 0.3.0 / 2008-12-24
43
+ * Major Enhancements
44
+ * Added --server option to start a simple WEBrick server on destination directory [github.com/johnreilly and github.com/mchung]
45
+ * Minor Enhancements
46
+ * Added post categories based on directories containing _posts [github.com/mreid]
47
+ * Added post topics based on directories underneath _posts
48
+ * Added new date filter that shows the full month name [github.com/mreid]
49
+ * Merge Post's YAML front matter into its to_liquid payload [github.com/remi]
50
+ * Restrict includes to regular files underneath _includes
51
+ * Bug Fixes
52
+ * Change YAML delimiter matcher so as to not chew up 2nd level markdown headers [github.com/mreid]
53
+ * Fix bug that meant page data (such as the date) was not available in templates [github.com/mreid]
54
+ * Properly reject directories in _layouts
55
+
56
+ == 0.2.1 / 2008-12-15
57
+ * Major Changes
58
+ * Use Maruku (pure Ruby) for Markdown by default [github.com/mreid]
59
+ * Allow use of RDiscount with --rdiscount flag
60
+ * Minor Enhancements
61
+ * Don't load directory_watcher unless it's needed [github.com/pjhyett]
62
+
63
+ == 0.2.0 / 2008-12-14
64
+ * Major Changes
65
+ * related_posts is now found in site.related_posts
66
+
67
+ == 0.1.6 / 2008-12-13
68
+ * Major Features
69
+ * Include files in _includes with {% include x.textile %}
70
+
71
+ == 0.1.5 / 2008-12-12
72
+ * Major Features
73
+ * Code highlighting with Pygments if --pygments is specified
74
+ * Disable true LSI by default, enable with --lsi
75
+ * Minor Enhancements
76
+ * Output informative message if RDiscount is not available [github.com/JackDanger]
77
+ * Bug Fixes
78
+ * Prevent Jekyll from picking up the output directory as a source [github.com/JackDanger]
79
+ * Skip related_posts when there is only one post [github.com/JackDanger]
80
+
81
+ == 0.1.4 / 2008-12-08
82
+ * Bug Fixes
83
+ * DATA does not work properly with rubygems
84
+
85
+ == 0.1.3 / 2008-12-06
86
+ * Major Features
87
+ * Markdown support [github.com/vanpelt]
88
+ * Mephisto and CSV converters [github.com/vanpelt]
89
+ * Code hilighting [github.com/vanpelt]
90
+ * Autobuild
91
+ * Bug Fixes
92
+ * Accept both \r\n and \n in YAML header [github.com/vanpelt]
93
+
94
+ == 0.1.2 / 2008-11-22
95
+ * Major Features
96
+ * Add a real "related posts" implementation using Classifier
97
+ * Command Line Changes
98
+ * Allow cli to be called with 0, 1, or 2 args intuiting dir paths
99
+ if they are omitted
100
+
101
+ == 0.1.1 / 2008-11-22
102
+ * Minor Additions
103
+ * Posts now support introspectional data e.g. {{ page.url }}
104
+
105
+ == 0.1.0 / 2008-11-05
106
+ * First release
107
+ * Converts posts written in Textile
108
+ * Converts regular site pages
109
+ * Simple copy of binary files
110
+
111
+ == 0.0.0 / 2008-10-19
112
+ * Birthday!
113
+
data/README.textile ADDED
@@ -0,0 +1,508 @@
1
+ h1. Jekyll
2
+
3
+ Jekyll is a simple, blog aware, static site generator. It takes a template
4
+ directory (representing the raw form of a website), runs it through Textile or
5
+ Markdown and Liquid converters, and spits out a complete, static website
6
+ suitable for serving with Apache or your favorite web server. Visit
7
+ "http://tom.preston-werner.com":http://tom.preston-werner.com to see an
8
+ example of a Jekyll generated blog.
9
+
10
+ To understand how this all works, open up my
11
+ "TPW":http://github.com/mojombo/tpw repo in a new browser window. I'll be
12
+ referencing the code there.
13
+
14
+ Take a look at
15
+ "index.html":http://github.com/mojombo/tpw/tree/master/index.html. This file
16
+ represents the homepage of the site. At the top of the file is a chunk of YAML
17
+ that contains metadata about the file. This data tells Jekyll what layout to
18
+ give the file, what the page's title should be, etc. In this case, I specify
19
+ that the "default" template should be used. You can find the layout files in
20
+ the "_layouts":http://github.com/mojombo/tpw/tree/master/_layouts directory.
21
+ If you open
22
+ "default.html":http://github.com/mojombo/tpw/tree/master/_layouts/default.html
23
+ you can see that the homepage is constructed by wrapping index.html with this
24
+ layout.
25
+
26
+ You'll also notice Liquid templating code in these files.
27
+ "Liquid":http://www.liquidmarkup.org/ is a simple, extensible templating
28
+ language that makes it easy to embed data in your templates. For my homepage I
29
+ wanted to have a list of all my blog posts. Jekyll hands me a Hash containing
30
+ various data about my site. A reverse chronological list of all my blog posts
31
+ can be found in <code>site.posts</code>. Each post, in turn, contains various
32
+ fields such as <code>title</code> and <code>date</code>.
33
+
34
+ Jekyll gets the list of blog posts by parsing the files in any
35
+ "_posts":http://github.com/mojombo/tpw/tree/master/_posts directory found in
36
+ subdirectories below the root.
37
+ Each post's filename contains (by default) the publishing date and slug (what shows up in the
38
+ URL) that the final HTML file should have. Open up the file corresponding to a
39
+ blog post:
40
+ "2008-11-17-blogging-like-a-hacker.textile":http://github.com/mojombo/tpw/tree/master/_posts/2008-11-17-blogging-like-a-hacker.textile.
41
+ GitHub renders textile files by default, so to better understand the file,
42
+ click on the
43
+ "raw":http://github.com/mojombo/tpw/tree/master/_posts/2008-11-17-blogging-like-a-hacker.textile?raw=true
44
+ view to see the original file. Here I've specified the <code>post</code>
45
+ layout. If you look at that file you'll see an example of a nested layout.
46
+ Layouts can contain other layouts allowing you a great deal of flexibility in
47
+ how pages are assembled. In my case I use a nested layout in order to show
48
+ related posts for each blog entry. The YAML also specifies the post's title
49
+ which is then embedded in the post's body via Liquid.
50
+
51
+ Posts are handled in a special way by Jekyll. The date you specify in the
52
+ filename is used to construct the URL in the generated site. The example post,
53
+ for instance, ends up at
54
+ <code>http://tom.preston-werner.com/2008/11/17/blogging-like-a-hacker.html</code>.
55
+
56
+ Categories for posts are derived from the directory structure the posts were
57
+ found within. A post that appears in the directory foo/bar/_posts is placed in
58
+ the categories 'foo' and 'bar'. By selecting posts from particular categories
59
+ in your Liquid templates, you will be able to host multiple blogs within a
60
+ site.
61
+
62
+ Files that do not reside in directories prefixed with an underscore are
63
+ mirrored into a corresponding directory structure in the generated site. If a
64
+ file does not have a YAML preface, it is not run through the Liquid
65
+ interpreter. Binary files are copied over unmodified.
66
+
67
+ Jekyll is still a very young project. I've only developed the exact
68
+ functionality that I've needed. As time goes on I'd like to see the project
69
+ mature and support additional features. If you end up using Jekyll for your
70
+ own blog, drop me a line and let me know what you'd like to see in future
71
+ versions. Better yet, fork the project over at GitHub and hack in the features
72
+ yourself!
73
+
74
+ h2. Example Proto-Site
75
+
76
+ My own personal site/blog is generated with Jekyll.
77
+
78
+ The proto-site repo
79
+ ("http://github.com/mojombo/tpw":http://github.com/mojombo/tpw) is converted
80
+ into the actual site
81
+ ("http://tom.preston-werner.com/":http://tom.preston-werner.com)
82
+
83
+ h2. Install
84
+
85
+ The best way to install Jekyll is via RubyGems:
86
+
87
+ $ sudo gem install mojombo-jekyll -s http://gems.github.com/
88
+
89
+ Jekyll requires the gems `directory_watcher`, `liquid`, `open4`,
90
+ and `maruku` (for markdown support). These are automatically
91
+ installed by the gem install command.
92
+
93
+ Maruku comes with optional support for LaTeX to PNG rendering via
94
+ "blahtex":http://gva.noekeon.org/blahtexml/ (Version 0.6) which must be in
95
+ your $PATH along with `dvips`.
96
+
97
+ (NOTE: the version of maruku I am using is `remi-maruku` on GitHub as it
98
+ does not assume a fixed location for `dvips`.)
99
+
100
+ h2. Run
101
+
102
+ $ cd /path/to/proto/site
103
+ $ jekyll
104
+
105
+ This will generate the site and place it in /path/to/proto/site/_site. If
106
+ you'd like the generated site placed somewhere else:
107
+
108
+ $ jekyll /path/to/place/generated/site
109
+
110
+ And if you don't want to be in the proto site root to run Jekyll:
111
+
112
+ $ jekyll /path/to/proto/site /path/to/place/generated/site
113
+
114
+ h2. Run Options
115
+
116
+ h3. Autobuild
117
+
118
+ There is an autobuild feature that will regenerate your site if any of the
119
+ files change. The autobuild feature can be used on any of the invocations:
120
+
121
+ $ jekyll --auto
122
+
123
+ h3. Related Posts
124
+
125
+ By default, the "related posts" functionality will produce crappy results.
126
+ In order to get high quality results with a true LSI algorithm, you must
127
+ enable it (it may take some time to run if you have many posts):
128
+
129
+ $ jekyll --lsi
130
+
131
+ h3. Code Highlighting
132
+
133
+ For static code highlighting, you can install Pygments (see below) and then
134
+ use that to make your code blocks look pretty. To activate Pygments support
135
+ during the conversion:
136
+
137
+ $ jekyll --pygments
138
+
139
+ h3. Markdown Processor
140
+
141
+ By default, Jekyll uses "Maruku":http://maruku.rubyforge.org (pure Ruby) for
142
+ Markdown support. If you'd like to use RDiscount (faster, but requires
143
+ compilation), you must install it (gem install rdiscount) and then you can
144
+ have it used instead:
145
+
146
+ $ jekyll --rdiscount
147
+
148
+ h3. Local Server
149
+
150
+ When previewing complex sites locally, simply opening the site in a web
151
+ browser (using file://) can cause problems with links that are relative to
152
+ the site root (e.g., "/stylesheets/style.css"). To get around this, Jekyll
153
+ can launch a simple WEBrick server (works well in conjunction with --auto).
154
+ Default port is 4000:
155
+
156
+ $ jekyll --server [PORT]
157
+
158
+ h3. Permalink Style
159
+
160
+ By default, the permalink for each post begins with its date in 'YYYY/MM/DD'
161
+ format.
162
+
163
+ If you do not wish to have the date appear in the URL of each post,
164
+ you can change the permalink style to 'none' so that only the 'slug' part of
165
+ the filename is used. For example, with the permalink style set to 'none' the
166
+ file '2009-01-01-happy-new-year.markdown' will have a permalink like
167
+ 'http://yoursite.com/happy-new-year.html'. The date of the post will still be
168
+ read from the filename (and is required!) to be used elsewhere in Jekyll.
169
+
170
+ If you want WordPress-style pretty URLs that leave off the .html, you can
171
+ change the permalink style to 'pretty' and directories corresponding to the
172
+ date parts and post name will be made and an index.html will be placed in the
173
+ leaf directory resulting in URLs like 2008/11/17/blogging-like-a-hacker/.
174
+
175
+ $ jekyll --permalink [date|none|pretty]
176
+
177
+ h2. Data
178
+
179
+ Jekyll traverses your site looking for files to process. Any files with YAML
180
+ front matter (see below) are subject to processing. For each of these files,
181
+ Jekyll makes a variety of data available to the pages via the Liquid
182
+ templating system. The following is a reference of the available data.
183
+
184
+ h3. Global
185
+
186
+ site
187
+ Sitewide information.
188
+
189
+ page
190
+ For Posts, this is the union of the data in the YAML front matter and the
191
+ computed data (such as URL and date). For regular pages, this is just the
192
+ YAML front matter.
193
+
194
+ content
195
+ In layout files, this contains the content of the subview(s). In Posts or
196
+ Pages, this is undefined.
197
+
198
+ h3. Site
199
+
200
+ site.time
201
+ The current Time (when you run the jekyll command).
202
+
203
+ site.posts
204
+ A reverse chronological list of all Posts.
205
+
206
+ site.related_posts
207
+ If the page being processed is a Post, this contains a list of up to ten
208
+ related Posts. By default, these are low quality but fast to compute. For
209
+ high quality but slow to compute results, run the jekyll command with the
210
+ --lsi (latent semantic indexing) option.
211
+
212
+ site.categories.CATEGORY
213
+ The list of all Posts in category CATEGORY.
214
+
215
+ h3. Post
216
+
217
+ post.title
218
+ The title of the Post.
219
+
220
+ post.url
221
+ The URL of the Post without the domain.
222
+ e.g. /2008/12/14/my-post.html
223
+
224
+ post.date
225
+ The Date assigned to the Post.
226
+
227
+ post.id
228
+ An identifier unique to the Post (useful in RSS feeds).
229
+ e.g. /2008/12/14/my-post
230
+
231
+ post.categories
232
+ The list of categories to which this post belongs. Categories are
233
+ derived from the directory structure above the _posts directory. For
234
+ example, a post at /work/code/_posts/2008-12-24-closures.textile
235
+ would have this field set to ['work', 'code'].
236
+
237
+ post.topics
238
+ The list of topics for this Post. Topics are derived from the directory
239
+ structure beneath the _posts directory. For example, a post at
240
+ /_posts/music/metal/2008-12-24-metalocalypse.textile would have this field
241
+ set to ['music', 'metal'].
242
+
243
+ post.content
244
+ The content of the Post.
245
+
246
+ h2. YAML Front Matter
247
+
248
+ Any files that contain a YAML front matter block will be processed by Jekyll
249
+ as special files. The front matter must be the first thing in the file and
250
+ takes the form of:
251
+
252
+ <pre>
253
+ ---
254
+ layout: post
255
+ title: Blogging Like a Hacker
256
+ ---
257
+ </pre>
258
+
259
+ Between the triple-dashed lines, you can set predefined variables (see below
260
+ for a reference) or custom data of your own.
261
+
262
+ h3. Predefined Global Variables
263
+
264
+ layout
265
+ If set, this specifies the layout file to use. Use the layout file
266
+ name without file extension. Layout files must be placed in the
267
+ <code>_layouts</code> directory.
268
+
269
+ h3. Predefined Post Variables
270
+
271
+ permalink
272
+ If you need your processed URLs to be something other than the default
273
+ /year/month/day/title.html then you can set this variable and it will
274
+ be used as the final URL.
275
+
276
+ published
277
+ Set to false if you don't want a post to show up when the site is
278
+ generated.
279
+
280
+ category/categories
281
+ Instead of placing posts inside of folders, you can specify one or more
282
+ categories that the post belongs to. When the site is generated the post
283
+ will act as though it had been set with these categories normally.
284
+
285
+ h3. Custom Variables
286
+
287
+ Any variables in the front matter that are not predefined are mixed into the
288
+ data that is sent to the Liquid templating engine during the conversion. For
289
+ instance, if you set a <code>title</code>, you can use that in your layout to
290
+ set the page title:
291
+
292
+ <pre>
293
+ <title>{{ page.title }}</title>
294
+ </pre>
295
+
296
+ h2. Filters, Tags, and Blocks
297
+
298
+ In addition to the built-in Liquid filters, tags, and blocks, Jekyll provides
299
+ some additional items that you can use in your site.
300
+
301
+ h3. Date to XML Schema (Filter)
302
+
303
+ Convert a Time into XML Schema format.
304
+
305
+ {{ site.time | date_to_xmlschema }}
306
+
307
+ becomes
308
+
309
+ 2008-11-17T13:07:54-08:00
310
+
311
+ h3. XML Escape (Filter)
312
+
313
+ Escape some text for use in XML.
314
+
315
+ {{ post.content | xml_escape }}
316
+
317
+ h3. Number of Words (Filter)
318
+
319
+ Count the number of words in some text.
320
+
321
+ {{ post.content | number_of_words }}
322
+
323
+ becomes
324
+
325
+ 1337
326
+
327
+ h3. Array to Sentence String
328
+
329
+ Convert an array into a sentence.
330
+
331
+ {{ page.tags | array_to_sentence_string }}
332
+
333
+ becomes
334
+
335
+ foo, bar, and baz
336
+
337
+ h3. Textilize
338
+
339
+ Convert a Textile-formatted string into HTML, formatted via RedCloth
340
+
341
+ {{ page.excerpt | textilize }}
342
+
343
+ h3. Include (Tag)
344
+
345
+ If you have small page fragments that you wish to include in multiple places
346
+ on your site, you can use the <code>include</code> tag.
347
+
348
+ <pre>{% include sig.textile %}</pre>
349
+
350
+ Jekyll expects all include files to be placed in an <code>_includes</code>
351
+ directory at the root of your source dir. So this will embed the contents of
352
+ <code>/path/to/proto/site/_includes/sig.textile</code> into the calling file.
353
+
354
+ h3. Code Highlighting (Block)
355
+
356
+ Jekyll has built in support for syntax highlighting of over "100
357
+ languages":http://pygments.org/languages/ via "Pygments":http://pygments.org/.
358
+ In order to take advantage of this you'll need to have Pygments installed, and
359
+ the pygmentize binary must be in your path. When you run Jekyll, make sure you
360
+ run it with Pygments support:
361
+
362
+ $ jekyll --pygments
363
+
364
+ To denote a code block that should be highlighted:
365
+
366
+ <pre>
367
+ {% highlight ruby %}
368
+ def foo
369
+ puts 'foo'
370
+ end
371
+ {% endhighlight %}
372
+ </pre>
373
+
374
+ The argument to <code>highlight</code> is the language identifier. To find the
375
+ appropriate identifier to use for your favorite language, look for the "short
376
+ name" on the "Lexers":http://pygments.org/docs/lexers/ page.
377
+
378
+ There is a second argument to <code>highlight</code> called
379
+ <code>linenos</code> that is optional. Including the <code>linenos</code>
380
+ argument will force the highlighted code to include line numbers. For
381
+ instance, the following code block would include line numbers next to each
382
+ line:
383
+
384
+ <pre>
385
+ {% highlight ruby linenos %}
386
+ def foo
387
+ puts 'foo'
388
+ end
389
+ {% endhighlight %}
390
+ </pre>
391
+
392
+ In order for the highlighting to show up, you'll need to include a
393
+ highlighting stylesheet. For an example stylesheet you can look at
394
+ "syntax.css":http://github.com/mojombo/tpw/tree/master/css/syntax.css. These
395
+ are the same styles as used by GitHub and you are free to use them for your
396
+ own site. If you use linenos, you might want to include an additional CSS
397
+ class definition for <code>lineno</code> in syntax.css to distinguish the line
398
+ numbers from the highlighted code.
399
+
400
+ h2. Categories
401
+
402
+ Posts are placed into categories based on the directory structure they are
403
+ found within (see above for an example). The categories can be accessed from
404
+ within a Liquid template as follows:
405
+
406
+ <pre>
407
+ {% for post in site.categories.foo %}
408
+ <li><span>{{ post.date | date_to_string }}</span> - {{ post.title }}</li>
409
+ {% endfor %}
410
+ </pre>
411
+
412
+ This would list all the posts in the category 'foo' by date and title.
413
+
414
+ The posts within each category are sorted in reverse chronological order.
415
+
416
+ h2. Blog migrations
417
+
418
+ h3. Movable Type
419
+
420
+ To migrate your MT blog into Jekyll, you'll need read access to the database.
421
+ The lib/jekyll/converters/mt.rb module provides a simple convert to create
422
+ .markdown files in a _posts directory based on the entries contained therein.
423
+
424
+ $ export DB=my_mtdb
425
+ $ export USER=dbuser
426
+ $ export PASS=dbpass
427
+ $ ruby -r './lib/jekyll/converters/mt' -e 'Jekyll::MT.process( \
428
+ "#{ENV["DB"]}", "#{ENV["USER"]}", "#{ENV["PASS"]}")'
429
+
430
+ You may need to adjust the SQL query used to retrieve MT entries. Left alone,
431
+ it will attempt to pull all entries across all blogs regardless of status.
432
+ Please check the results and verify the posts before publishing.
433
+
434
+ h3. Typo 4+
435
+
436
+ To migrate your Typo blog into Jekyll, you'll need read access to the MySQL
437
+ database. The lib/jekyll/converters/typo.rb module provides a simple convert
438
+ to create .html, .textile, or .markdown files in a _posts directory based on
439
+ the entries contained therein.
440
+
441
+ $ export DB=my_typo_db
442
+ $ export USER=dbuser
443
+ $ export PASS=dbpass
444
+ $ ruby -r './lib/jekyll/converters/typo' -e 'Jekyll::Typo.process( \
445
+ "#{ENV["DB"]}", "#{ENV["USER"]}", "#{ENV["PASS"]}")'
446
+
447
+ You may need to adjust the code used to filter Typo entries. Left alone,
448
+ it will attempt to pull all entries across all blogs that were published.
449
+ This code also has only been tested with Typo version 4+. Previous versions
450
+ of Typo may not convert correctly. Please check the results and verify the
451
+ posts before publishing.
452
+
453
+ h3. TextPattern 4
454
+
455
+ To migrate your TextPattern blog into Jekyll, you'll need read access to the MySQL
456
+ database. The lib/jekyll/converters/textpattern.rb module provides a simple convert to create .textile files in a _posts directory based on
457
+ the entries contained therein.
458
+
459
+ $ ruby -r './lib/jekyll/converters/textpattern' -e 'Jekyll::TextPattern.process( \
460
+ "database_name", "username", "password", "hostname")'
461
+
462
+ The hostname defaults to _localhost_, all other variables are needed
463
+ You may need to adjust the code used to filter entries. Left alone,
464
+ it will attempt to pull all entries that are live or sticky.
465
+
466
+ h2. Contribute
467
+
468
+ If you'd like to hack on Jekyll, start by forking my repo on GitHub:
469
+
470
+ http://github.com/mojombo/jekyll
471
+
472
+ To get all of the dependencies, install the gem first. The best way to get
473
+ your changes merged back into core is as follows:
474
+
475
+ # Clone down your fork
476
+ # Create a topic branch to contain your change
477
+ # Hack away
478
+ # Add tests and make sure everything still passes by running `rake`
479
+ # If you are adding new functionality, document it in README.textile
480
+ # Do not change the version number, I will do that on my end
481
+ # If necessary, rebase your commits into logical chunks, without errors
482
+ # Push the branch up to GitHub
483
+ # Send me (mojombo) a pull request for your branch
484
+
485
+ h2. License
486
+
487
+ (The MIT License)
488
+
489
+ Copyright (c) 2008 Tom Preston-Werner
490
+
491
+ Permission is hereby granted, free of charge, to any person obtaining
492
+ a copy of this software and associated documentation files (the
493
+ 'Software'), to deal in the Software without restriction, including
494
+ without limitation the rights to use, copy, modify, merge, publish,
495
+ distribute, sublicense, and/or sell copies of the Software, and to
496
+ permit persons to whom the Software is furnished to do so, subject to
497
+ the following conditions:
498
+
499
+ The above copyright notice and this permission notice shall be
500
+ included in all copies or substantial portions of the Software.
501
+
502
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
503
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
504
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
505
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
506
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
507
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
508
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.