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