]> rtime.felk.cvut.cz Git - ert_linux_web.git/blob - ikiwiki.setup
Test
[ert_linux_web.git] / ikiwiki.setup
1 # IkiWiki::Setup::Yaml - YAML formatted setup file
2 #
3 # Setup file for ikiwiki.
4
5 # Passing this to ikiwiki --setup will make ikiwiki generate
6 # wrappers and build the wiki.
7
8 # Remember to re-run ikiwiki --setup any time you edit this file.
9 #
10 # name of the wiki
11 wikiname: LinTarget
12 # contact email for wiki
13 adminemail: sojkam1@fel.cvut.cz
14 # users who are wiki admins
15 adminuser: []
16 # users who are banned from the wiki
17 banned_users: []
18 # where the source of the wiki is located
19 srcdir: /home/ocera/ert_linux_web
20 # where to build the wiki
21 destdir: /home/ocera/public_html/lintarget
22 # base url to the wiki
23 url: http://lintarget.sourceforge.net/
24 # url to the ikiwiki.cgi
25 cgiurl: ''
26 # filename of cgi wrapper to generate
27 cgi_wrapper: ''
28 # mode for cgi_wrapper (can safely be made suid)
29 cgi_wrappermode: 06755
30 # rcs backend to use
31 rcs: git
32 # plugins to add to the default configuration
33 add_plugins:
34 - html
35 - toc
36 - rsync
37 # plugins to disable
38 disable_plugins:
39 - recentchanges
40 # additional directory to search for template files
41 templatedir: /usr/share/ikiwiki/templates
42 # base wiki source location
43 underlaydir: /usr/share/ikiwiki/basewiki
44 # display verbose messages?
45 #verbose: 1
46 # log to syslog?
47 #syslog: 1
48 # create output files named page/index.html?
49 usedirs: 1
50 # use '!'-prefixed preprocessor directives?
51 prefix_directives: 1
52 # use page/index.mdwn source files
53 indexpages: 1
54 # enable Discussion pages?
55 discussion: 1
56 # name of Discussion pages
57 discussionpage: Discussion
58 # generate HTML5?
59 html5: 0
60 # only send cookies over SSL connections?
61 sslcookie: 0
62 # extension to use for new pages
63 default_pageext: mdwn
64 # extension to use for html files
65 htmlext: html
66 # strftime format string to display date
67 timeformat: '%c'
68 # UTF-8 locale to use
69 #locale: en_US.UTF-8
70 # put user pages below specified page
71 userdir: ''
72 # how many backlinks to show before hiding excess (0 to show all)
73 numbacklinks: 10
74 # attempt to hardlink source files? (optimisation for large files)
75 hardlink: 0
76 # force ikiwiki to use a particular umask (keywords public, group or private, or a number)
77 #umask: public
78 # group for wrappers to run in
79 #wrappergroup: ikiwiki
80 # extra library and plugin directory
81 libdir: /home/ocera/ert_linux_web/libdir
82 # environment variables
83 ENV: {}
84 # time zone name
85 #timezone: US/Eastern
86 # regexp of normally excluded files to include
87 #include: ^\.htaccess$
88 # regexp of files that should be skipped
89 exclude: ^(.*\.private|Makefile|ikiwiki.setup)$
90 # specifies the characters that are allowed in source filenames
91 wiki_file_chars: -[:alnum:]+/.:_
92 # allow symlinks in the path leading to the srcdir (potentially insecure)
93 allow_symlinks_before_srcdir: 0
94
95 ######################################################################
96 # core plugins
97 #   (editpage, git, htmlscrubber, inline, link, meta, parentlinks)
98 ######################################################################
99
100 # git plugin
101 # git hook to generate
102 git_wrapper:
103 # shell command for git_wrapper to run, in the background
104 #git_wrapper_background_command: git push github
105 # mode for git_wrapper (can safely be made suid)
106 #git_wrappermode: 06755
107 # git pre-receive hook to generate
108 #git_test_receive_wrapper: /git/wiki.git/hooks/pre-receive
109 # unix users whose commits should be checked by the pre-receive hook
110 #untrusted_committers: []
111 # gitweb url to show file history ([[file]] substituted)
112 #historyurl: http://git.example.com/gitweb.cgi?p=wiki.git;a=history;f=[[file]];hb=HEAD
113 # gitweb url to show a diff ([[file]], [[sha1_to]], [[sha1_from]], [[sha1_commit]], and [[sha1_parent]] substituted)
114 #diffurl: http://git.example.com/gitweb.cgi?p=wiki.git;a=blobdiff;f=[[file]];h=[[sha1_to]];hp=[[sha1_from]];hb=[[sha1_commit]];hpb=[[sha1_parent]]
115 # where to pull and push changes (set to empty string to disable)
116 gitorigin_branch: origin
117 # branch that the wiki is stored in
118 gitmaster_branch: master
119
120 # htmlscrubber plugin
121 # PageSpec specifying pages not to scrub
122 #htmlscrubber_skip: '!*/Discussion'
123
124 # inline plugin
125 # enable rss feeds by default?
126 #rss: 0
127 # enable atom feeds by default?
128 #atom: 0
129 # allow rss feeds to be used?
130 #allowrss: 0
131 # allow atom feeds to be used?
132 #allowatom: 0
133 # urls to ping (using XML-RPC) on feed update
134 pingurl: []
135
136 ######################################################################
137 # auth plugins
138 #   (anonok, blogspam, httpauth, lockedit, moderatedcomments,
139 #    opendiscussion, openid, passwordauth, signinedit)
140 ######################################################################
141
142 # anonok plugin
143 # PageSpec to limit which pages anonymous users can edit
144 #anonok_pagespec: '*/discussion'
145
146 # blogspam plugin
147 # PageSpec of pages to check for spam
148 #blogspam_pagespec: postcomment(*)
149 # options to send to blogspam server
150 #blogspam_options: blacklist=1.2.3.4,blacklist=8.7.6.5,max-links=10
151 # blogspam server XML-RPC url
152 #blogspam_server: ''
153
154 # httpauth plugin
155 # url to redirect to when authentication is needed
156 #cgiauthurl: http://example.com/wiki/auth/ikiwiki.cgi
157 # PageSpec of pages where only httpauth will be used for authentication
158 #httpauth_pagespec: '!*/Discussion'
159
160 # lockedit plugin
161 # PageSpec controlling which pages are locked
162 #locked_pages: '!*/Discussion'
163
164 # moderatedcomments plugin
165 # PageSpec matching users or comment locations to moderate
166 #moderate_pagespec: '*'
167
168 # openid plugin
169 # url pattern of openid realm (default is cgiurl)
170 #openid_realm: ''
171 # url to ikiwiki cgi to use for openid authentication (default is cgiurl)
172 #openid_cgiurl: ''
173
174 # passwordauth plugin
175 # a password that must be entered when signing up for an account
176 #account_creation_password: s3cr1t
177 # cost of generating a password using Authen::Passphrase::BlowfishCrypt
178 #password_cost: 8
179
180 ######################################################################
181 # format plugins
182 #   (creole, highlight, hnb, html, mdwn, otl, po, rawhtml, rst, textile,
183 #    txt)
184 ######################################################################
185
186 # highlight plugin
187 # types of source files to syntax highlight
188 #tohighlight: .c .h .cpp .pl .py Makefile:make
189 # location of highlight's filetypes.conf
190 #filetypes_conf: /etc/highlight/filetypes.conf
191 # location of highlight's langDefs directory
192 #langdefdir: /usr/share/highlight/langDefs
193
194 # mdwn plugin
195 # enable multimarkdown features?
196 #multimarkdown: 0
197 # disable use of markdown discount?
198 #nodiscount: 0
199
200 # po plugin
201 # master language (non-PO files)
202 #po_master_language: en|English
203 # slave languages (translated via PO files) format: ll|Langname
204 #po_slave_languages:
205 #- fr|Français
206 #- es|Español
207 #- de|Deutsch
208 # PageSpec controlling which pages are translatable
209 #po_translatable_pages: '* and !*/Discussion'
210 # internal linking behavior (default/current/negotiated)
211 #po_link_to: current
212
213 ######################################################################
214 # special-purpose plugins
215 #   (osm)
216 ######################################################################
217
218 # osm plugin
219 # the default zoom when you click on the map link
220 #osm_default_zoom: 15
221 # the icon shown on links and on the main map
222 #osm_default_icon: ikiwiki/images/osm.png
223 # the alt tag of links, defaults to empty
224 #osm_alt: ''
225 # the output format for waypoints, can be KML, GeoJSON or CSV (one or many, comma-separated)
226 #osm_format: KML
227 # the icon attached to a tag, displayed on the map for tagged pages
228 #osm_tag_default_icon: icon.png
229
230 ######################################################################
231 # web plugins
232 #   (404, attachment, comments, editdiff, edittemplate, getsource, google,
233 #    goto, mirrorlist, remove, rename, repolist, search, theme, userlist,
234 #    websetup, wmd)
235 ######################################################################
236
237 # attachment plugin
238 # enhanced PageSpec specifying what attachments are allowed
239 #allowed_attachments: virusfree() and mimetype(image/*) and maxsize(50kb)
240 # virus checker program (reads STDIN, returns nonzero if virus found)
241 #virus_checker: clamdscan -
242
243 # comments plugin
244 # PageSpec of pages where comments are allowed
245 #comments_pagespec: blog/* and !*/Discussion
246 # PageSpec of pages where posting new comments is not allowed
247 #comments_closed_pagespec: blog/controversial or blog/flamewar
248 # Base name for comments, e.g. "comment_" for pages like "sandbox/comment_12"
249 #comments_pagename: ''
250 # Interpret directives in comments?
251 #comments_allowdirectives: 0
252 # Allow anonymous commenters to set an author name?
253 #comments_allowauthor: 0
254 # commit comments to the VCS
255 #comments_commit: 1
256 # Restrict formats for comments to (no restriction if empty)
257 #comments_allowformats: mdwn txt
258
259 # getsource plugin
260 # Mime type for returned source.
261 #getsource_mimetype: text/plain; charset=utf-8
262
263 # mirrorlist plugin
264 # list of mirrors
265 #mirrorlist: {}
266 # generate links that point to the mirrors' ikiwiki CGI
267 #mirrorlist_use_cgi: 1
268
269 # repolist plugin
270 # URIs of repositories containing the wiki's source
271 #repositories:
272 #- svn://svn.example.org/wiki/trunk
273
274 # search plugin
275 # path to the omega cgi program
276 #omega_cgi: /usr/lib/cgi-bin/omega/omega
277
278 # theme plugin
279 # name of theme to enable
280 #theme: actiontabs
281
282 # websetup plugin
283 # list of plugins that cannot be enabled/disabled via the web interface
284 #websetup_force_plugins: []
285 # list of additional setup field keys to treat as unsafe
286 #websetup_unsafe: []
287 # show unsafe settings, read-only, in web interface?
288 #websetup_show_unsafe: 1
289
290 ######################################################################
291 # widget plugins
292 #   (calendar, color, conditional, cutpaste, date, format, fortune,
293 #    graphviz, haiku, headinganchors, img, linkmap, listdirectives, map,
294 #    more, orphans, pagecount, pagestats, poll, polygen, postsparkline,
295 #    progress, shortcut, sparkline, table, template, teximg, toc, toggle,
296 #    version)
297 ######################################################################
298
299 # calendar plugin
300 # base of the archives hierarchy
301 #archivebase: archives
302 # PageSpec of pages to include in the archives; used by ikiwiki-calendar command
303 #archive_pagespec: page(posts/*) and !*/Discussion
304
305 # listdirectives plugin
306 # directory in srcdir that contains directive descriptions
307 #directive_description_dir: ikiwiki/directive
308
309 # teximg plugin
310 # Should teximg use dvipng to render, or dvips and convert?
311 #teximg_dvipng: ''
312 # LaTeX prefix for teximg plugin
313 #teximg_prefix: '\documentclass{article}
314 #
315 #  \usepackage[utf8]{inputenc}
316 #
317 #  \usepackage{amsmath}
318 #
319 #  \usepackage{amsfonts}
320 #
321 #  \usepackage{amssymb}
322 #
323 #  \pagestyle{empty}
324 #
325 #  \begin{document}
326 #
327 #'
328 # LaTeX postfix for teximg plugin
329 #teximg_postfix: \end{document}
330
331 ######################################################################
332 # other plugins
333 #   (aggregate, autoindex, brokenlinks, camelcase, ddate, embed, favicon,
334 #    filecheck, flattr, goodstuff, htmlbalance, localstyle, notifyemail,
335 #    pagetemplate, pingee, pinger, prettydate, recentchanges,
336 #    recentchangesdiff, relativedate, rsync, sidebar, smiley,
337 #    sortnaturally, tag, testpagespec, trail, transient, typography,
338 #    underlay)
339 ######################################################################
340
341 # aggregate plugin
342 # enable aggregation to internal pages?
343 #aggregateinternal: 1
344 # allow aggregation to be triggered via the web?
345 #aggregate_webtrigger: 0
346 # cookie control
347 cookiejar:
348   file: /home/wsh/.ikiwiki/cookies
349
350 # autoindex plugin
351 # commit autocreated index pages
352 #autoindex_commit: 1
353
354 # camelcase plugin
355 # list of words to not turn into links
356 #camelcase_ignore: []
357
358 # flattr plugin
359 # userid or user name to use by default for Flattr buttons
360 #flattr_userid: joeyh
361
362 # pinger plugin
363 # how many seconds to try pinging before timing out
364 #pinger_timeout: 15
365
366 # prettydate plugin
367 # format to use to display date
368 #prettydateformat: '%X, %B %o, %Y'
369
370 # recentchanges plugin
371 # name of the recentchanges page
372 recentchangespage: recentchanges
373 # number of changes to track
374 recentchangesnum: 100
375
376 # rsync plugin
377 # command to run to sync updated pages
378 #rsync_command: rsync -qa --delete . user@host:/path/to/docroot/
379 rsync_command: rsync -qa --delete . ocerabot2,lintarget@web.sourceforge.net:htdocs/
380
381 # sidebar plugin
382 # show sidebar page on all pages?
383 #global_sidebars: 1
384
385 # tag plugin
386 # parent page tags are located under
387 #tagbase: tag
388 # autocreate new tag pages?
389 #tag_autocreate: 1
390 # commit autocreated tag pages
391 #tag_autocreate_commit: 1
392
393 # typography plugin
394 # Text::Typography attributes value
395 #typographyattributes: 3
396
397 # underlay plugin
398 # extra underlay directories to add
399 #add_underlays:
400 #- /home/ocera/wiki.underlay