Merge branch 'master' of git://git.tails.boum.org/tails
[tails/tchou.git] / ikiwiki.setup
blob2c9eb1690c1c0d4ec9a8ebba5c91b78a4668e5b1
1 # -*- mode: yaml; -*-
2 # IkiWiki::Setup::Yaml - YAML formatted setup file
4 # Setup file for ikiwiki.
5
6 # Passing this to ikiwiki --setup will make ikiwiki generate
7 # wrappers and build the wiki.
8
9 # Remember to re-run ikiwiki --setup any time you edit this file.
11 # name of the wiki
12 wikiname: The Amnesic Incognito Live System
13 # contact email for wiki
14 adminemail: tails@boum.org
15 # users who are wiki admins
16 adminuser: []
17 # users who are banned from the wiki
18 banned_users: []
19 # where the source of the wiki is located
20 srcdir: wiki/src
21 # where to build the wiki
22 destdir: config/chroot_local-includes/usr/share/doc/tails/website
23 # base url to the wiki
24 url: file:///usr/share/doc/tails/website
25 # url to the ikiwiki.cgi
26 cgiurl: ''
27 # filename of cgi wrapper to generate
28 cgi_wrapper: ''
29 # mode for cgi_wrapper (can safely be made suid)
30 cgi_wrappermode: 06755
31 # rcs backend to use
32 rcs: ''
33 # plugins to add to the default configuration
34 add_plugins:
35   - favicon
36   - html
37   - map
38   - mirrorlist
39   - po
40   - shortcut
41   - sidebar
42   - tag
43   - toc
44   - typography
45   - meta
46   - img
47   - pagestats
48   - toggle
49   - trail
50 # plugins to disable
51 disable_plugins:
52   - comments
53   - openid
54   - httpauth
55   - lockedit
56   - signinedit
57   - passwordauth
58   - editpage
59   - recentchanges
60 # additional directory to search for template files
61 # templatedir: /usr/share/ikiwiki/templates
62 # base wiki source location
63 # underlaydir: /usr/share/ikiwiki/basewiki
64 # display verbose messages?
65 verbose: 1
66 # log to syslog?
67 #syslog: 1
68 # create output files named page/index.html?
69 usedirs: 0
70 # use '!'-prefixed preprocessor directives?
71 prefix_directives: 1
72 # use page/index.mdwn source files
73 indexpages: 0
74 # enable Discussion pages?
75 discussion: 0
76 # name of Discussion pages
77 discussionpage: Discussion
78 # generate HTML5? (experimental)
79 html5: 0
80 # only send cookies over SSL connections?
81 sslcookie: 0
82 # extension to use for new pages
83 default_pageext: mdwn
84 # extension to use for html files
85 htmlext: html
86 # strftime format string to display date
87 timeformat: '%c'
88 # UTF-8 locale to use
89 locale: en_US.UTF-8
90 # put user pages below specified page
91 userdir: ''
92 # how many backlinks to show before hiding excess (0 to show all)
93 numbacklinks: 10
94 # attempt to hardlink source files? (optimisation for large files)
95 hardlink: 0
96 # force ikiwiki to use a particular umask
97 #umask: 022
98 # group for wrappers to run in
99 #wrappergroup: ikiwiki
100 # extra library and plugin directory
101 libdir: ''
102 # environment variables
103 ENV: {}
104 # regexp of normally excluded files to include
105 include: '^\.htaccess$'
106 # regexp of files that should be skipped
107 exclude: '(^blueprint\/.*|^promote\/slides\/.*|\/discussion\..*|\/Discussion\..*)'
108 # specifies the characters that are allowed in source filenames
109 wiki_file_chars: '-[:alnum:]+/._~'
110 # allow symlinks in the path leading to the srcdir (potentially insecure)
111 allow_symlinks_before_srcdir: 1
113 ######################################################################
114 # core plugins
115 #   (editpage, htmlscrubber, inline, link, meta, parentlinks)
116 ######################################################################
118 # htmlscrubber plugin
119 # PageSpec specifying pages not to scrub
120 htmlscrubber_skip: '!/misc/unsafe_browser_warning'
122 # inline plugin
123 # enable rss feeds by default?
124 rss: 0
125 # enable atom feeds by default?
126 atom: 0
127 # allow rss feeds to be used?
128 #allowrss: 0
129 # allow atom feeds to be used?
130 #allowatom: 0
131 # urls to ping (using XML-RPC) on feed update
132 pingurl: []
134 ######################################################################
135 # auth plugins
136 #   (anonok, blogspam, httpauth, lockedit, moderatedcomments,
137 #    opendiscussion, openid, passwordauth, signinedit)
138 ######################################################################
140 # anonok plugin
141 # PageSpec to limit which pages anonymous users can edit
142 #anonok_pagespec: '*/discussion'
144 # blogspam plugin
145 # PageSpec of pages to check for spam
146 #blogspam_pagespec: postcomment(*)
147 # options to send to blogspam server
148 #blogspam_options: 'blacklist=1.2.3.4,blacklist=8.7.6.5,max-links=10'
149 # blogspam server XML-RPC url
150 #blogspam_server: ''
152 # httpauth plugin
153 # url to redirect to when authentication is needed
154 #cgiauthurl: http://example.com/wiki/auth/ikiwiki.cgi
155 # PageSpec of pages where only httpauth will be used for authentication
156 #httpauth_pagespec: '!*/Discussion'
158 # lockedit plugin
159 # PageSpec controlling which pages are locked
160 #locked_pages:
162 # moderatedcomments plugin
163 # PageSpec matching users or comment locations to moderate
164 #moderate_pagespec: '*'
166 # openid plugin
167 # url pattern of openid realm (default is cgiurl)
168 #openid_realm: ''
169 # url to ikiwiki cgi to use for openid authentication (default is cgiurl)
170 #openid_cgiurl: ''
172 # passwordauth plugin
173 # a password that must be entered when signing up for an account
174 #account_creation_password: s3cr1t
175 # cost of generating a password using Authen::Passphrase::BlowfishCrypt
176 #password_cost: 8
178 ######################################################################
179 # format plugins
180 #   (creole, highlight, hnb, html, mdwn, otl, po, rawhtml, textile, txt)
181 ######################################################################
183 # highlight plugin
184 # types of source files to syntax highlight
185 #tohighlight: .c .h .cpp .pl .py Makefile:make
186 # location of highlight's filetypes.conf
187 #filetypes_conf: /etc/highlight/filetypes.conf
188 # location of highlight's langDefs directory
189 #langdefdir: /usr/share/highlight/langDefs
191 # mdwn plugin
192 # enable multimarkdown features?
193 #multimarkdown: 0
195 # po plugin
196 # master language (non-PO files)
197 po_master_language: en|English
198 # slave languages (translated via PO files) format: ll|Langname
199 po_slave_languages:
200   - de|Deutsch
201   - fr|Français
202   - pt|Português
203 # PageSpec controlling which pages are translatable
204 po_translatable_pages: '!security/audits and !security/audits/* and (about or bugs or chat or contribute or contribute/how/donate or doc or doc/* or download or getting_started or inc/stable_i386_date or inc/stable_i386_release_notes or index or news or news/* or press or press/* or security or security/* or sidebar or support or support/* or todo or torrents or wishlist or misc or misc/*)'
205 # internal linking behavior (default/current/negotiated)
206 po_link_to: current
208 ######################################################################
209 # misc plugins
210 #   (filecheck)
211 ######################################################################
213 ######################################################################
214 # web plugins
215 #   (404, attachment, comments, editdiff, edittemplate, getsource, google,
216 #    goto, mirrorlist, remove, rename, repolist, search, theme, websetup,
217 #    wmd)
218 ######################################################################
220 # attachment plugin
221 # enhanced PageSpec specifying what attachments are allowed
222 #allowed_attachments: virusfree() and mimetype(image/*) and maxsize(50kb)
223 # virus checker program (reads STDIN, returns nonzero if virus found)
224 #virus_checker: clamdscan -
226 # comments plugin
227 # PageSpec of pages where comments are allowed
228 #comments_pagespec: forum/*
229 # PageSpec of pages where posting new comments is not allowed
230 #comments_closed_pagespec: ''
231 # Base name for comments, e.g. "comment_" for pages like "sandbox/comment_12"
232 #comments_pagename: comment_
233 # Interpret directives in comments?
234 #comments_allowdirectives: 0
235 # Allow anonymous commenters to set an author name?
236 #comments_allowauthor: 0
237 # commit comments to the VCS
238 #comments_commit: 1
240 # getsource plugin
241 # Mime type for returned source.
242 #getsource_mimetype: text/plain; charset=utf-8
244 # mirrorlist plugin
245 # list of mirrors
246 mirrorlist:
247   tails.boum.org: https://tails.boum.org/ikiwiki.cgi
248 # generate links that point to the mirrors' ikiwiki CGI
249 mirrorlist_use_cgi: 1
251 # repolist plugin
252 # URIs of repositories containing the wiki's source
253 #repositories:
254 #  - svn://svn.example.org/wiki/trunk
256 # search plugin
257 # path to the omega cgi program
258 #omega_cgi: /usr/lib/cgi-bin/omega/omega
260 # theme plugin
261 # name of theme to enable
262 #theme: actiontabs
264 # websetup plugin
265 # list of plugins that cannot be enabled/disabled via the web interface
266 #websetup_force_plugins: []
267 # list of additional setup field keys to treat as unsafe
268 #websetup_unsafe: []
269 # show unsafe settings, read-only, in web interface?
270 #websetup_show_unsafe: 1
272 ######################################################################
273 # widget plugins
274 #   (calendar, color, conditional, cutpaste, date, format, fortune,
275 #    graphviz, haiku, img, linkmap, listdirectives, map, more, orphans,
276 #    pagecount, pagestats, poll, polygen, postsparkline, progress,
277 #    shortcut, sparkline, table, template, teximg, toc, toggle, version)
278 ######################################################################
280 # calendar plugin
281 # base of the archives hierarchy
282 #archivebase: archives
283 # PageSpec of pages to include in the archives; used by ikiwiki-calendar command
284 #archive_pagespec: page(posts/*) and !*/Discussion
286 # listdirectives plugin
287 # directory in srcdir that contains directive descriptions
288 #directive_description_dir: ikiwiki/directive
290 # teximg plugin
291 # Should teximg use dvipng to render, or dvips and convert?
292 #teximg_dvipng: ''
293 # LaTeX prefix for teximg plugin
294 #teximg_prefix: |
295 #  \documentclass{article}
296 #  \usepackage[utf8]{inputenc}
297 #  \usepackage{amsmath}
298 #  \usepackage{amsfonts}
299 #  \usepackage{amssymb}
300 #  \pagestyle{empty}
301 #  \begin{document}
302 # LaTeX postfix for teximg plugin
303 #teximg_postfix: '\end{document}'
305 ######################################################################
306 # other plugins
307 #   (aggregate, autoindex, brokenlinks, camelcase, ddate, embed, favicon,
308 #    flattr, goodstuff, htmlbalance, localstyle, pagetemplate, pandoc,
309 #    pingee, pinger, prettydate, recentchanges, recentchangesdiff,
310 #    relativedate, rsync, sidebar, smiley, sortnaturally, tag,
311 #    testpagespec, transient, underlay)
312 ######################################################################
314 # aggregate plugin
315 # enable aggregation to internal pages?
316 #aggregateinternal: 1
317 # allow aggregation to be triggered via the web?
318 #aggregate_webtrigger: 0
319 # cookie control
320 #cookiejar:
321 #  file: /home/user/.ikiwiki/cookies
323 # autoindex plugin
324 # commit autocreated index pages
325 #autoindex_commit: 1
327 # camelcase plugin
328 # list of words to not turn into links
329 #camelcase_ignore: []
331 # flattr plugin
332 # userid or user name to use by default for Flattr buttons
333 #flattr_userid: joeyh
335 # pandoc plugin
336 # Path to pandoc executable
337 #pandoc_command: /usr/bin/pandoc
338 # File extension for Markdown files
339 #pandoc_markdown_ext: mdwn
340 # Enable Pandoc processing of LaTeX documents
341 #pandoc_latex: 0
342 # Enable Pandoc processing of reStructuredText documents
343 #pandoc_rst: 0
344 # Use smart quotes, dashes, and ellipses
345 #pandoc_smart: 1
346 # Output format (html, markdown or latex)
347 #pandoc_output_format: html
348 # Path depth of which LaTeX parts roots (e.g.: bla/part1 = depth 2)
349 #pandoc_parts_at_depth: 1
350 # Shift headers level depending on page depth (default: enabled for LaTeX output, disabled else)
351 #pandoc_shift_headers: 1
353 # pinger plugin
354 # how many seconds to try pinging before timing out
355 #pinger_timeout: 15
357 # prettydate plugin
358 # format to use to display date
359 #prettydateformat: '%X, %B %o, %Y'
361 # recentchanges plugin
362 # name of the recentchanges page
363 #recentchangespage: recentchanges
364 # number of changes to track
365 #recentchangesnum: 100
367 # rsync plugin
368 # command to run to sync updated pages
369 #rsync_command: rsync -qa --delete . user@host:/path/to/docroot/
371 # sidebar plugin
372 # show sidebar page on all pages?
373 #global_sidebars: 1
375 # tag plugin
376 # parent page tags are located under
377 tagbase: tags
378 # autocreate new tag pages?
379 #tag_autocreate: 1
380 # commit autocreated tag pages
381 tag_autocreate_commit: 1
383 # underlay plugin
384 # extra underlay directories to add
385 #add_underlays:
386 #  - /home/user/wiki.underlay