-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocpad.coffee
171 lines (139 loc) · 4.94 KB
/
docpad.coffee
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# The DocPad Configuration File
# It is simply a CoffeeScript Object which is parsed by CSON
docpadConfig = {
environments:
static:
plugins:
cleanurls:
enabled: false
# =================================
# Template Data
# These are variables that will be accessible via our templates
# To access one of these within our templates, refer to the FAQ:
# https://github.com/bevry/docpad/wiki/FAQ
templateData:
# Specify some site properties
site:
# The production url of our website
url: "http://blog.mattblair.co"
# Here are some old site urls that you would like to redirect from
oldUrls: [
'codetype.wordpress.com',
'duereg.github.io'
]
# The default title of our website
title: "A Place for Poor Examples"
# The website description (for SEO)
description: """
What I've learned about software development. Don't expect too much.
"""
# The website keywords (for SEO) separated by commas
keywords: """
JavaScript, HTML, software, development, blog, examples, derby,
cracking, coding, interview, CoffeeScript, node, express,
.NET, C#, ASP.NET, Ember, Knockout, Angular, algorithms, analysis, analytics
"""
# The website author's name
author: "Matt Blair"
# Styles
styles: [
"/styles/twitter-bootstrap.css"
"/styles/style.css"
"/styles/mono-blue.css"
]
# Scripts
scripts: [
"//cdnjs.cloudflare.com/ajax/libs/jquery/1.10.2/jquery.min.js"
"//cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"
"/vendor/twitter-bootstrap/dist/js/bootstrap.min.js"
"/scripts/script.js"
"/scripts/analytics.js"
]
# -----------------------------
# Helper Functions
# Get the prepared site/document title
# Often we would like to specify particular formatting to our page's title
# we can apply that formatting here
getPreparedTitle: ->
# if we have a document title, then we should use that and suffix the site's title onto it
if @document.title
"#{@document.title} | #{@site.title}"
# if our document does not have it's own title, then we should just use the site's title
else
@site.title
# Get the prepared site/document description
getPreparedDescription: ->
# if we have a document description, then we should use that, otherwise use the site's description
@document.description or @site.description
# Get the prepared site/document keywords
getPreparedKeywords: ->
# Merge the document keywords with the site keywords
@site.keywords.concat(@document.keywords or []).join(', ')
# =================================
# Collections
# These are special collections that our website makes available to us
collections:
pages: (database) ->
database.findAllLive({pageOrder: $exists: true}, [pageOrder:1,title:1])
posts: (database) ->
database.findAllLive({status: 'publish'}, [created:-1]) #tags:$has:'post'
hockey: (database) ->
database.findAllLive({status: 'hockey'}, [created:-1])
# =================================
# Plugins
plugins:
ghpages:
deployRemote: 'target'
deployBranch: 'master'
downloader:
downloads: [
{
name: 'Twitter Bootstrap'
path: 'src/files/vendor/twitter-bootstrap'
url: 'https://codeload.github.com/twbs/bootstrap/tar.gz/master'
tarExtractClean: true
}
]
highlightjs:
aliases:
sh: 'bash'
# =================================
# DocPad Events
# Here we can define handlers for events that DocPad fires
# You can find a full listing of events on the DocPad Wiki
events:
# Used to minify our assets with gulp
writeAfter: (opts, next) ->
# Prepare
safeps = require('safeps')
pathUtil = require('path')
docpad = @docpad
# Perform the uglify js min task
minify = ['gulp', 'minify']
# Execute
safeps.spawn(minify, {safe:false,output:true},next)
# Chain
@
# Server Extend
# Used to add our own custom routes to the server before the docpad routes are added
serverExtend: (opts) ->
# Extract the server from the options
{server} = opts
docpad = @docpad
# As we are now running in an event,
# ensure we are using the latest copy of the docpad configuraiton
# and fetch our urls from it
latestConfig = docpad.getConfig()
oldUrls = latestConfig.templateData.site.oldUrls or []
newUrl = latestConfig.templateData.site.url
# Redirect any requests accessing one of our sites oldUrls to the new site url
server.use (req,res,next) ->
if req.headers.host in oldUrls
res.redirect(newUrl+req.url, 301)
else
next()
# Chain
@
}
# Export our DocPad Configuration
module.exports = docpadConfig