tristandunn-jekyll 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt ADDED
@@ -0,0 +1,77 @@
1
+ ==
2
+ * Minor Enhancements
3
+ * Type importer [github.com/codeslinger]
4
+ * site.topics accessor [github.com/baz]
5
+ * Add array_to_sentence_string filter [github.com/mchung]
6
+
7
+ == 0.3.0 / 2008-12-24
8
+ * Major Enhancements
9
+ * Added --server option to start a simple WEBrick server on destination directory [github.com/johnreilly and github.com/mchung]
10
+ * Minor Enhancements
11
+ * Added post categories based on directories containing _posts [github.com/mreid]
12
+ * Added post topics based on directories underneath _posts
13
+ * Added new date filter that shows the full month name [github.com/mreid]
14
+ * Merge Post's YAML front matter into its to_liquid payload [github.com/remi]
15
+ * Restrict includes to regular files underneath _includes
16
+ * Bug Fixes
17
+ * Change YAML delimiter matcher so as to not chew up 2nd level markdown headers [github.com/mreid]
18
+ * Fix bug that meant page data (such as the date) was not available in templates [github.com/mreid]
19
+ * Properly reject directories in _layouts
20
+
21
+ == 0.2.1 / 2008-12-15
22
+ * Major Changes
23
+ * Use Maruku (pure Ruby) for Markdown by default [github.com/mreid]
24
+ * Allow use of RDiscount with --rdiscount flag
25
+ * Minor Enhancements
26
+ * Don't load directory_watcher unless it's needed [github.com/pjhyett]
27
+
28
+ == 0.2.0 / 2008-12-14
29
+ * Major Changes
30
+ * related_posts is now found in site.related_posts
31
+
32
+ == 0.1.6 / 2008-12-13
33
+ * Major Features
34
+ * Include files in _includes with {% include x.textile %}
35
+
36
+ == 0.1.5 / 2008-12-12
37
+ * Major Features
38
+ * Code highlighting with Pygments if --pygments is specified
39
+ * Disable true LSI by default, enable with --lsi
40
+ * Minor Enhancements
41
+ * Output informative message if RDiscount is not available [github.com/JackDanger]
42
+ * Bug Fixes
43
+ * Prevent Jekyll from picking up the output directory as a source [github.com/JackDanger]
44
+ * Skip related_posts when there is only one post [github.com/JackDanger]
45
+
46
+ == 0.1.4 / 2008-12-08
47
+ * Bug Fixes
48
+ * DATA does not work properly with rubygems
49
+
50
+ == 0.1.3 / 2008-12-06
51
+ * Major Features
52
+ * Markdown support [github.com/vanpelt]
53
+ * Mephisto and CSV converters [github.com/vanpelt]
54
+ * Code hilighting [github.com/vanpelt]
55
+ * Autobuild
56
+ * Bug Fixes
57
+ * Accept both \r\n and \n in YAML header [github.com/vanpelt]
58
+
59
+ == 0.1.2 / 2008-11-22
60
+ * Major Features
61
+ * Add a real "related posts" implementation using Classifier
62
+ * Command Line Changes
63
+ * Allow cli to be called with 0, 1, or 2 args intuiting dir paths
64
+ if they are omitted
65
+
66
+ == 0.1.1 / 2008-11-22
67
+ * Minor Additions
68
+ * Posts now support introspectional data e.g. {{ page.url }}
69
+
70
+ == 0.1.0 / 2008-11-05
71
+ * First release
72
+ * Converts posts written in Textile
73
+ * Converts regular site pages
74
+ * Simple copy of binary files
75
+
76
+ == 0.0.0 / 2008-10-19
77
+ * Birthday!
data/Manifest.txt ADDED
@@ -0,0 +1,38 @@
1
+ History.txt
2
+ Manifest.txt
3
+ README.textile
4
+ Rakefile
5
+ bin/jekyll
6
+ jekyll.gemspec
7
+ lib/jekyll.rb
8
+ lib/jekyll/albino.rb
9
+ lib/jekyll/converters/csv.rb
10
+ lib/jekyll/converters/mephisto.rb
11
+ lib/jekyll/converters/mt.rb
12
+ lib/jekyll/converters/typo.rb
13
+ lib/jekyll/converters/wordpress.rb
14
+ lib/jekyll/convertible.rb
15
+ lib/jekyll/core_ext.rb
16
+ lib/jekyll/filters.rb
17
+ lib/jekyll/layout.rb
18
+ lib/jekyll/page.rb
19
+ lib/jekyll/post.rb
20
+ lib/jekyll/site.rb
21
+ lib/jekyll/tags/highlight.rb
22
+ lib/jekyll/tags/include.rb
23
+ test/helper.rb
24
+ test/source/_includes/sig.markdown
25
+ test/source/_layouts/default.html
26
+ test/source/_layouts/simple.html
27
+ test/source/_posts/2008-10-18-foo-bar.textile
28
+ test/source/_posts/2008-11-21-complex.textile
29
+ test/source/_posts/2008-12-03-permalinked-post.textile
30
+ test/source/_posts/2008-12-13-include.markdown
31
+ test/source/css/screen.css
32
+ test/source/index.html
33
+ test/suite.rb
34
+ test/test_filters.rb
35
+ test/test_generated_site.rb
36
+ test/test_jekyll.rb
37
+ test/test_post.rb
38
+ test/test_site.rb
data/README.textile ADDED
@@ -0,0 +1,435 @@
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 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
+ There is an autobuild feature that will regenerate your site if any of the
117
+ files change. The autobuild feature can be used on any of the invocations:
118
+
119
+ $ jekyll --auto
120
+
121
+ By default, the "related posts" functionality will produce crappy results.
122
+ In order to get high quality results with a true LSI algorithm, you must
123
+ enable it (it may take some time to run if you have many posts):
124
+
125
+ $ jekyll --lsi
126
+
127
+ For static code highlighting, you can install Pygments (see below) and then
128
+ use that to make your code blocks look pretty. To activate Pygments support
129
+ during the conversion:
130
+
131
+ $ jekyll --pygments
132
+
133
+ By default, Jekyll uses "Maruku":http://maruku.rubyforge.org (pure Ruby) for
134
+ Markdown support. If you'd like to use RDiscount (faster, but requires
135
+ compilation), you must install it (gem install rdiscount) and then you can
136
+ have it used instead:
137
+
138
+ $ jekyll --rdiscount
139
+
140
+ When previewing complex sites locally, simply opening the site in a web
141
+ browser (using file://) can cause problems with links that are relative to
142
+ the site root (e.g., "/stylesheets/style.css"). To get around this, Jekyll
143
+ can launch a simple WEBrick server (works well in conjunction with --auto).
144
+ Default port is 4000:
145
+
146
+ $ jekyll --server [PORT]
147
+
148
+ h2. Data
149
+
150
+ Jekyll traverses your site looking for files to process. Any files with YAML
151
+ front matter (see below) are subject to processing. For each of these files,
152
+ Jekyll makes a variety of data available to the pages via the Liquid
153
+ templating system. The following is a reference of the available data.
154
+
155
+ h3. Global
156
+
157
+ site
158
+ Sitewide information.
159
+
160
+ page
161
+ For Posts, this is the union of the data in the YAML front matter and the
162
+ computed data (such as URL and date). For regular pages, this is just the
163
+ YAML front matter.
164
+
165
+ content
166
+ In layout files, this contains the content of the subview(s). In Posts or
167
+ Pages, this is undefined.
168
+
169
+ h3. Site
170
+
171
+ site.time
172
+ The current Time (when you run the jekyll command).
173
+
174
+ site.posts
175
+ A reverse chronological list of all Posts.
176
+
177
+ site.related_posts
178
+ If the page being processed is a Post, this contains a list of up to ten
179
+ related Posts. By default, these are low quality but fast to compute. For
180
+ high quality but slow to compute results, run the jekyll command with the
181
+ --lsi (latent semantic indexing) option.
182
+
183
+ site.categories.CATEGORY
184
+ The list of all Posts in category CATEGORY.
185
+
186
+ h3. Post
187
+
188
+ post.title
189
+ The title of the Post.
190
+
191
+ post.url
192
+ The URL of the Post without the domain.
193
+ e.g. /2008/12/14/my-post.html
194
+
195
+ post.date
196
+ The Date assigned to the Post.
197
+
198
+ post.id
199
+ An identifier unique to the Post (useful in RSS feeds).
200
+ e.g. /2008/12/14/my-post
201
+
202
+ post.categories
203
+ The list of categories to which this post belongs. Categories are
204
+ derived from the directory structure above the _posts directory. For
205
+ example, a post at /work/code/_posts/2008-12-24-closures.textile
206
+ would have this field set to ['work', 'code'].
207
+
208
+ post.topics
209
+ The list of topics for this Post. Topics are derived from the directory
210
+ structure beneath the _posts directory. For example, a post at
211
+ /_posts/music/metal/2008-12-24-metalocalypse.textile would have this field
212
+ set to ['music', 'metal'].
213
+
214
+ post.content
215
+ The content of the Post.
216
+
217
+ h2. YAML Front Matter
218
+
219
+ Any files that contain a YAML front matter block will be processed by Jekyll
220
+ as special files. The front matter must be the first thing in the file and
221
+ takes the form of:
222
+
223
+ <pre>
224
+ ---
225
+ layout: post
226
+ title: Blogging Like a Hacker
227
+ ---
228
+ </pre>
229
+
230
+ Between the triple-dashed lines, you can set predefined variables (see below
231
+ for a reference) or custom data of your own.
232
+
233
+ h3. Predefined Global Variables
234
+
235
+ layout
236
+ If set, this specifies the layout file to use. Use the layout file
237
+ name without file extension. Layout files must be placed in the
238
+ <code>_layouts</code> directory.
239
+
240
+ h3. Predefined Post Variables
241
+
242
+ permalink
243
+ If you need your processed URLs to be something other than the default
244
+ /year/month/day/title.html then you can set this variable and it will
245
+ be used as the final URL.
246
+
247
+ h3. Custom Variables
248
+
249
+ Any variables in the front matter that are not predefined are mixed into the
250
+ data that is sent to the Liquid templating engine during the conversion. For
251
+ instance, if you set a <code>title</code>, you can use that in your layout to
252
+ set the page title:
253
+
254
+ <pre>
255
+ <title>{{ page.title }}</title>
256
+ </pre>
257
+
258
+ h2. Filters, Tags, and Blocks
259
+
260
+ In addition to the built-in Liquid filters, tags, and blocks, Jekyll provides
261
+ some additional items that you can use in your site.
262
+
263
+ h3. Date to XML Schema (Filter)
264
+
265
+ Convert a Time into XML Schema format.
266
+
267
+ {{ site.time | date_to_xmlschema }}
268
+
269
+ becomes
270
+
271
+ 2008-11-17T13:07:54-08:00
272
+
273
+ h3. XML Escape (Filter)
274
+
275
+ Escape some text for use in XML.
276
+
277
+ {{ post.content | xml_escape }}
278
+
279
+ h3. Number of Words (Filter)
280
+
281
+ Count the number of words in some text.
282
+
283
+ {{ post.content | number_of_words }}
284
+
285
+ becomes
286
+
287
+ 1337
288
+
289
+ h3. Array to Sentence String
290
+
291
+ Convert an array into a sentence.
292
+
293
+ {{ page.tags | array_to_sentence_string }}
294
+
295
+ becomes
296
+
297
+ foo, bar, and baz
298
+
299
+ h3. Include (Tag)
300
+
301
+ If you have small page fragments that you wish to include in multiple places
302
+ on your site, you can use the <code>include</code> tag.
303
+
304
+ <pre>{% include sig.textile %}</pre>
305
+
306
+ Jekyll expects all include files to be placed in an <code>_includes</code>
307
+ directory at the root of your source dir. So this will embed the contents of
308
+ <code>/path/to/proto/site/_includes/sig.textile</code> into the calling file.
309
+
310
+ h3. Code Highlighting (Block)
311
+
312
+ Jekyll has built in support for syntax highlighting of over "100
313
+ languages":http://pygments.org/languages/ via "Pygments":http://pygments.org/.
314
+ In order to take advantage of this you'll need to have Pygments installed, and
315
+ the pygmentize binary must be in your path. When you run Jekyll, make sure you
316
+ run it with Pygments support:
317
+
318
+ $ jekyll --pygments
319
+
320
+ To denote a code block that should be highlighted:
321
+
322
+ <pre>
323
+ {% highlight ruby %}
324
+ def foo
325
+ puts 'foo'
326
+ end
327
+ {% endhighlight %}
328
+ </pre>
329
+
330
+ The argument to <code>highlight</code> is the language identifier. To find the
331
+ appropriate identifier to use for your favorite language, look for the "short
332
+ name" on the "Lexers":http://pygments.org/docs/lexers/ page.
333
+
334
+ In order for the highlighting to show up, you'll need to include a
335
+ highlighting stylesheet. For an example stylesheet you can look at
336
+ "syntax.css":http://github.com/mojombo/tpw/tree/master/css/syntax.css. These
337
+ are the same styles as used by GitHub and you are free to use them for your
338
+ own site.
339
+
340
+ h2. Categories
341
+
342
+ Posts are placed into categories based on the directory structure they are found
343
+ within (see above for an example). The categories can be accessed from within
344
+ a Liquid template as follows:
345
+
346
+ <pre>
347
+ {% for post in site.categories.foo %}
348
+ <li><span>{{ post.date | date_to_string }}</span> - {{ post.title }}</li>
349
+ {% endfor %}
350
+ </pre>
351
+
352
+ This would list all the posts in the category 'foo' by date and title.
353
+
354
+ The posts within each category are sorted in reverse chronological order.
355
+
356
+ h2. Contribute
357
+
358
+ If you'd like to hack on Jekyll, grab the source from GitHub. To get
359
+ all of the dependencies, install the gem first.
360
+
361
+ $ git clone git://github.com/mojombo/jekyll
362
+
363
+ The best way to get your changes merged back into core is as follows:
364
+
365
+ # Fork mojombo/jekyll on GitHub
366
+ # Clone down your fork
367
+ # Create a topic branch to contain your change
368
+ # Hack away
369
+ # If you are adding new functionality, document it in README.textile
370
+ # Do not change the version number, I will do that on my end
371
+ # If necessary, rebase your commits into logical chunks, without errors
372
+ # Push the branch up to GitHub
373
+ # Send me (mojombo) a pull request for your branch
374
+
375
+ h2. Blog migrations
376
+
377
+ h3. Movable Type
378
+
379
+ To migrate your MT blog into Jekyll, you'll need read access to the database.
380
+ The lib/jekyll/converters/mt.rb module provides a simple convert to create
381
+ .markdown files in a _posts directory based on the entries contained therein.
382
+
383
+ $ export DB=my_mtdb
384
+ $ export USER=dbuser
385
+ $ export PASS=dbpass
386
+ $ ruby -r './lib/jekyll/converters/mt' -e 'Jekyll::MT.process( \
387
+ "#{ENV["DB"]}", "#{ENV["USER"]}", "#{ENV["PASS"]}")'
388
+
389
+ You may need to adjust the SQL query used to retrieve MT entries. Left alone,
390
+ it will attempt to pull all entries across all blogs regardless of status.
391
+ Please check the results and verify the posts before publishing.
392
+
393
+ h3. Typo 4+
394
+
395
+ To migrate your Typo blog into Jekyll, you'll need read access to the MySQL
396
+ database. The lib/jekyll/converters/typo.rb module provides a simple convert
397
+ to create .html, .textile, or .markdown files in a _posts directory based on
398
+ the entries contained therein.
399
+
400
+ $ export DB=my_typo_db
401
+ $ export USER=dbuser
402
+ $ export PASS=dbpass
403
+ $ ruby -r './lib/jekyll/converters/typo' -e 'Jekyll::Typo.process( \
404
+ "#{ENV["DB"]}", "#{ENV["USER"]}", "#{ENV["PASS"]}")'
405
+
406
+ You may need to adjust the code used to filter Typo entries. Left alone,
407
+ it will attempt to pull all entries across all blogs that were published.
408
+ This code also has only been tested with Typo version 4+. Previous versions
409
+ of Typo may not convert correctly. Please check the results and verify the
410
+ posts before publishing.
411
+
412
+ h2. License
413
+
414
+ (The MIT License)
415
+
416
+ Copyright (c) 2008 Tom Preston-Werner
417
+
418
+ Permission is hereby granted, free of charge, to any person obtaining
419
+ a copy of this software and associated documentation files (the
420
+ 'Software'), to deal in the Software without restriction, including
421
+ without limitation the rights to use, copy, modify, merge, publish,
422
+ distribute, sublicense, and/or sell copies of the Software, and to
423
+ permit persons to whom the Software is furnished to do so, subject to
424
+ the following conditions:
425
+
426
+ The above copyright notice and this permission notice shall be
427
+ included in all copies or substantial portions of the Software.
428
+
429
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
430
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
431
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
432
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
433
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
434
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
435
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.