Wiki source code of Configuration

Version 41.5 by Vincent Massol on 2009/04/03

Hide last authors
Vincent Massol 1.1 1 1 Configuration
2
3 One you have XWiki [installed>Installation] you'll want to configure it. Configuration can be done in 2 ways:
Vincent Massol 1.12 4
Vincent Massol 29.2 5 * by stopping the XWiki instance and editing the <tt>xwiki/WEB-INF/xwiki.cfg</tt> file, and then restarting XWiki
6 * by logging in as a user with admin rights and going to the Administration page (when using the XWiki 1.0 skin, there's a an "Administration" link in the top right corner of the screen - You can also go directly to <tt>http://localhost:8080/xwiki/bin/admin/XWiki/XWikiPreferences</tt>). This allows to keep the Server running while making the changes.
Vincent Massol 1.1 7
Vincent Massol 29.2 8 Note that some configurations are only accessible from the <tt>xwiki.cfg</tt> file and have no equivalent on the Administration page.
Vincent Massol 1.1 9
10 There are various things you can configure:
Vincent Massol 1.12 11
Vincent Massol 1.1 12 #toc("" "" "")
Vincent Massol 1.29 13
14 1.1 Enable superadmin account
15
16 Edit the <tt>xwiki.cfg</tt> file and enable the <tt>xwiki.superadminpassword</tt> property. For example:
17
18 {code:none}
19 # Enable to allow superadmin. It is disabled by default as this could be a security breach if
20 # it were set and you forgot about it.
21 xwiki.superadminpassword=system
22 {code}
23
Vincent Massol 4.1 24 When logging in, the username will be "superadmin" and the password will be the one you set in the <tt>xwiki.superadminpassword</tt> property.
25
Vincent Massol 12.2 26 1.1 Language settings
Vincent Massol 12.1 27
28 To define the default language for your wiki go to the Administration page and in the Preferences tag locate the "Default Language" field and enter the language code for the language you wish to use. For example: "en" for English, "fr" for French, "de" for German, etc.
29
Vincent Massol 12.2 30 In addition you can configure you wiki to be multilingual. See the [I18 user page>Features.I18N] for more information.
31
Jean-Vincent Drean 36.1 32 1.1 Date format
33
34 To define the date format used in the interfaces, go to ~~Administration~~ / ~~General~~, locate the "Date format" field and enter the date format you wish to use. Examples:
35
36 {table}
37 Format | Result
38 MMMM dd, HH:mm | January 27, 12:27
39 yyyy/MM/dd, HH:mm | 2009/01/27, 12:27
40 dd/MM/yyyy, HH:mm | 27/01/2009, 12:27
41 {table}
42
Jean-Vincent Drean 36.2 43 [More information about date formatting>http://java.sun.com/j2se/1.5.0/docs/api/java/text/SimpleDateFormat.html].
44
45
Vincent Massol 1.12 46 1.1 Wiki Access Configuration
47
48 The first thing you will want to do is configure a policy access for your wiki. Depending on what you intend to use your wiki for, you have several options:
49
Vincent Massol 1.17 50 * [Open Wiki>#HOpenWiki]: anyone can edit pages (including non registered users)
Sergiu Dumitriu 6.3 51 * [Public Wiki>#HPublicWiki]: only registered users can edit pages but registration is open to anyone. This is the default configuration of the default wiki (the wiki provided as a XAR on the [download page>xwiki:Main.Download]).
Vincent Massol 1.17 52 * [Private Wiki with password>#HPrivateWikiwithpassword]: registration is closed
53 * [Private Wiki with token for registering>#HPrivateWikiwithtoken]: registration is closed but users knowing the token can register
Vincent Massol 1.12 54
55 1.1.1 Open Wiki
56
57 TODO
58
59 1.1.1 Public Wiki
60
henning 40.1 61 Nothing to do. This is the default Way.
62 If you want that only people with a verified Email Address can edit pages, you have to set
Vincent Massol 40.2 63 "Use email verification" AND "Check Active fields for user authentication" to "Yes" in Administration/Registration.
Vincent Massol 1.12 64
65 1.1.1 Private Wiki with password
TimL 1.20 66 1.1.1.1 Global rights
Vincent Massol 1.12 67
TimL 1.21 68 In [Global rights>http://localhost:8080/xwiki/bin/admin/XWiki/XWikiPreferences?editor=globalrights&global=1] set *User:XWikiGuest, Groups:, Level:register, Allow-Deny:Allow*.
TimL 1.20 69
70 1.1.1.1 Registration
71
TimL 1.21 72 In [Preferences>http://localhost:8080/xwiki/bin/admin/XWiki/XWikiPreferences] under *Registration* set *Use email verification:yes*. fill the other fields appropriately.
TimL 1.20 73
Vincent Massol 1.12 74 1.1.1 Private Wiki with token
75
76 TODO
77
Guillaume Lerouge 41.1 78 * *[Find out more about XWiki access rights here>Access Rights]*
TimL 1.20 79
Vincent Massol 1.1 80 1.1 Enabling/Disabling Statistics
81
Vincent Massol 6.1 82 To disable [the Statistics feature>code:Applications.StatisticsApplication], edit your ~~xwiki.cfg~~ file and replace the following properties as shown here:
Vincent Massol 1.12 83 {code:xml}
Vincent Massol 1.1 84 xwiki.stats=0
85 xwiki.stats.default=0
86 {code}
87
Vincent Massol 1.10 88 where:
Vincent Massol 1.12 89
Vincent Massol 1.10 90 * ~~xwiki.stats~~ controls whether Statistics are on or off
91 * ~~xwiki.stats.default~~ controls whether Statistics are on or off by default for the current Wiki. This is useful in [Virtual Wiki mode>AdminGuide.Virtualization]. A wiki can decide whether Statistics is on/off by setting the "statistics" field in XWiki.XWikiPreferences. If no such field is defined the the default value ~~xwiki.stats.default~~ is used.
Vincent Massol 1.1 92
Vincent Massol 1.10 93 To enable Statistics, change "0" to "1".
94
Artem Melentyev 12.3 95 1.1 Optional Store Features
96
Artem Melentyev 12.4 97 XWiki stores all document attachment versions by default. This is very memory consuming (both RAM and HDD).
98 If you need only latest versions of attachments, you can disable attachment version control by editing your ~~xwiki.cfg~~ and adding:
Artem Melentyev 12.3 99 {code:xml}
100 xwiki.store.attachment.versioning=0
101 {code}
102
Artem Melentyev 12.4 103
Vincent Massol 1.4 104 1.1 Customizing the Skin
Vincent Massol 1.3 105
106 See the [Skin Guide>AdminGuide.Skins].
107
Vincent Massol 1.4 108 1.1 Security configuration
Vincent Massol 1.3 109
110 See the [Security Guide>AdminGuide.Security].
111
Vincent Massol 1.4 112 1.1 Customizing Menus
Vincent Massol 1.3 113
Vincent Massol 6.2 114 The first thing to understand is that menus depend on the skin you're using. If you're using the 1.0 skin it's likely you're using the [Panels Application>code:Applications.PanelsApplication] to provide the different menu panels you see on the left or right of your wikis. Check the [Panels Application>code:Applications.PanelsApplication] to know more on how to configure/modify them.
Vincent Massol 1.3 115
slauriere 1.5 116 1.1 Encoding
Vincent Massol 1.3 117
slauriere 1.5 118 See the [Encoding Guide>AdminGuide.Encoding].
119
Vincent Massol 1.6 120 1.1 User Authentication
slauriere 1.5 121
Vincent Massol 1.9 122 See the [Authentication Guide>AdminGuide.Authentication].
TimL 1.18 123
Vincent Massol 1.30 124 1.1 Customizing the registration page
125
126 The default registration page is defined as a template on the file system (named <tt>registerinline.vm</tt>). However it's possible to easily override it by creating a page named <tt>XWiki.Registration</tt>.
127
Sergiu Dumitriu 29.1 128 See [more details about configuring the registration page>AdminGuide.User Management#HCustomizingtheRegistrationpage].
Vincent Massol 1.23 129 1.1 Logging
130
131 See the [Logging page>Logging].
132
Vincent Massol 1.24 133 1.1 Configuring Interwiki links
134
135 [Interwiki linking>http://en.wikipedia.org/wiki/InterWiki] is a short hand syntax for linking to pages on other websites. For example, you could link to http://en.wikipedia.org/wiki/InterWiki just by typing \[InterWiki@WikiPedia\].
136
137 Since XWiki renders wiki syntax using the [Radeox>http://radeox.org] engine, it supports Interwiki links in [much the same way as SnipSnap>http://snipsnap.org/space/InterWiki+HowTo].
138
139 To configure Interwiki links on your wiki:
140
141 * Create a file named <tt>\[location from where you start your container\]/conf/*intermap.txt*</tt>
142 * Fill <tt>intermap.txt</tt> with content like:
143 {code}
144 IMDB http://us.imdb.com/Title?
145 OpenWiki http://openwiki.com/?
146 SourceForge http://sourceforge.net/
147 TWiki http://twiki.org/cgi-bin/view/
148 Why http://clublet.com/c/c/why?
149 Wiki http://c2.com/cgi/wiki?
150 WikiPedia http://www.wikipedia.com/wiki/
151 {code}
152
153 You can of course add your own entries.
154
155 * Note that Radeox's parser for intermap.txt is [very fragile>http://snipforge.org/jira/browse/RADEOX-49]. A blank line at the bottom of the file is enough to make it fall over.
156 * Restart XWiki (you'll need to restart XWiki every time you change <tt>intermap.txt</tt>) and try out an Interwiki link.
157 * If it does not work, check your <tt>xwiki.log</tt> file. You'll see if <tt>conf/intermap.txt</tt> could not be found, or if there was an error parsing it.
158
Vincent Massol 1.26 159 1.1 Setting the default editor to use (Wiki or WYSIWYG)
160
Jean-Vincent Drean 20.1 161 Go the Administration screen, then click on the "General" icon and select the default editor to use, as shown on the following screenshot:
Vincent Massol 1.26 162
Vincent Massol 1.28 163 {image:defaulteditor.png}
Vincent Massol 1.26 164
Vincent Massol 7.1 165 1.1 Short URLs
166
Vincent Massol 7.2 167 It's possible to [configure XWiki so that is uses shorter URLs>Main.ShortURLs].
Vincent Massol 7.1 168
Asiri Rathnayake 31.1 169 1.1 Configure the names of database schemas (since 1.6M1)
rssh 8.1 170
171 Sometimes, especially in enterprise environment, we need control names of database schemes, other than default.
172
173 * xwiki.db -- name of database scheme of main wiki.
Thomas Mortagne 17.1 174 * xwiki.db.prefix -- usefull mainly for [virtual wikies>Virtualization], where we have database scheme for each virtual wiki. This prefix is added to database scheme name after usual mapping between wiki names and schemes.
rssh 8.1 175
Vincent Massol 9.1 176 1.1 Turning off comments or attachments
177
178 You need to change the XWiki.XWikiPreferences class like this:
179
Vincent Massol 9.2 180 * Go to <tt>\<server\>/xwiki/bin/edit/XWiki/XWikiPreferences?editor=class</tt>
Vincent Massol 9.1 181 * Add a new property called <tt>showcomments</tt> (or <tt>showattachments</tt> for turning off attachments) of type String Class
Vincent Massol 9.2 182 * Go to <tt>\<server\>/xwiki/bin/edit/XWiki/XWikiPreferences?editor=object&classname=XWiki.XWikiPreferences</tt> and write no in the <tt>showcomments</tt> (or <tt>showattachments</tt>) field
Vincent Massol 9.1 183
184 That's it, the comments (or attachments) are gone. If you want to re-enable them, replace the "no" value with "yes".
185
Artem Melentyev 16.1 186 1.1 Configure edit comment behavior
187
188 When page editing you can add a comment of changes in special comment field by default (Look at [Features.PageEditing#HCommoneditactions]).
189 You can disable this feature by set ~~xwiki.editcomment=0~~ in ~~xwiki.cfg~~.
190
191 When edit comment feature is enabled, you also can set edit comment mandatory by set ~~xwiki.editcomment.mandatory=1~~ in ~~xwiki.cfg~~. This will show popup window with the request to set edit comment if there is no comment entered. It doesn't allow to set empty comment.
192 If you want a popup, but want to be able to set empty edit comment, set ~~xwiki.editcomment.suggested=1~~ in ~~xwiki.cfg~~
193
194 If you set edit comment as mandatory or suggested, you can also remove comment field from page editing form and use only popup window for set edit comment. Set ~~xwiki.editcomment.hidden=0~~ in ~~xwiki.cfg~~ to do this.
195
196 You can use the special fields in ~~XWikiPreferences~~ object instead of edit ~~xwiki.cfg~~.
197 These fields are: ~~editcomment~~, ~~editcomment_mandatory~~, ~~editcomment_suggested~~ and ~~editcomment_hidden~~.
198
Vincent Massol 10.1 199 1.1 Configuring the SMTP server
200
201 If you're planning to use XWiki's feature that send emails you'll need to configure the SMTP server used and the email address under which XWiki will send emails.
202
Jean-Vincent Drean 20.1 203 To configure these go to the Administration page (<tt>http://\<server\>/xwiki/bin/admin/XWiki/XWikiPreferences</tt>), click on the "general" icon and modify the <tt>Admin email</tt> field to set the email under which XWiki emails will be sent and modify the <tt>Outgoing SMTP Server</tt> field to set the SMTP server to use, as shown on the figure below.
Vincent Massol 10.1 204
205 {image:emailconfiguration.png}
206
daning 14.1 207 #warning("Now xwiki can't configure password for SMTP user. Hence, you should use a SMTP server without password Authentication.")
208
Asiri Rathnayake 31.1 209 1.1 Configuring WebDAV (since 1.7)
210
Asiri Rathnayake 33.1 211 WebDAV support has been added to XWiki beginning from XWiki Enterprise 1.7. It is very important to note that WebDAV is enabled by default.
Asiri Rathnayake 32.1 212
Asiri Rathnayake 34.1 213 1.1.1 Securing WebDAV Server
Asiri Rathnayake 32.1 214
Asiri Rathnayake 33.1 215 XWiki's WebDAV implementation only supports [Basic Access Authentication>http://en.wikipedia.org/wiki/Basic_access_authentication] scheme for authenticating WebDAV clients. Because of this reason it is highly recommended that you employ a transport level security mechanism like SSL to protect your clients. You may consult your web application container's documentation to see how this can be achieved.
216
217 1.1.1 Disabling WebDAV
218
Asiri Rathnayake 35.1 219 To disable WebDAV support in your XWiki server, simply edit your web.xml file and remove the url-mapping element for mapping webdav requests. The url-mapping element for WebDAV looks something like:
Asiri Rathnayake 33.1 220
221 {code}
222 <servlet-mapping>
223 <servlet-name>webdav</servlet-name>
224 <url-pattern>/webdav/*</url-pattern>
225 </servlet-mapping>
226 {code}
227
Asiri Rathnayake 34.1 228
Asiri Rathnayake 35.1 229
Vincent Massol 13.1 230 1.1 Redirections
231
232 XWiki supports defining redirections for incoming requests. To activate this feature modify your <tt>xwiki.cfg</tt> file and set the following property:
233 {code:none}
234 xwiki.preferences.redirect=1
235 {code}
236
237 Then for each redirection you want to add, add a <tt>XWiki.GlobalRedirect</tt> object to your main wiki's <tt>XWiki.XWikiPreferences</tt> document. The <tt>XWiki.GlobalRedirect</tt> object has 2 fields: <tt>pattern</tt> and <tt>destination</tt>. The URL received is matched on <tt>pattern</tt> and if there's a match it's replaced with the value from <tt>destination</tt>. XWiki then redirects to the new URL.
238
Vincent Massol 15.2 239 1.1 Customizing the PDF export Look & Feel
Vincent Massol 15.1 240
Vincent Massol 30.2 241 #info("A new rendering subsystem is on its way, so things could change in the following few months. You may want keep an eye on [the new rendering architecture page>http://dev.xwiki.org/xwiki/bin/view/Design/NewRenderingArchitecture>new].")
Ricardo Rodríguez 24.1 242
Vincent Massol 30.2 243 Here's how the PDF and RTF exports currently work:
Ricardo Rodríguez 28.1 244
Vincent Massol 30.2 245 {image:XWikiExport200805192259.png}
246
247 As shown in the diagram you can customize 3 parts:
248 * The CSS used to render the content as PDF/RTF
249 * The XHTML2FO XSL transformation
250 * The FOP XSL transformation
251
252 In order to provide your own customization you need to start by creating a new [XWiki Class>platform:DevGuide.DataModel]. To do that simply create a new page and edit it in Class mode (for ex: <tt>http:/yourserver.com/xwiki/bin/edit/XWiki/PDFClass?editor=class</tt>). Add the following Text Area properties as needed (they are all optional so you only need to define the ones you need to use):
253 * <tt>style</tt>: contains the CSS information that will be overriding the default <tt>pdf.css</tt> values.
254 * <tt>xhtmlxsl</tt>: contains the XHTML to FO XSL overriding the default one.
255 * <tt>fopxsl</tt>: contains the FOP to PDF/RTF XSL overriding the default one.
256
257 Then create a new page (say <tt>XWiki.PDFTemplate</tt>) and add the <tt>XWiki.PDFClass</tt> object to it.
258
259 Last use that page when calling the PDF/RTF export using the <tt>pdftemplate</tt> parameter as in <tt>http://yourserver/xwiki/bin/export/Space/Page?format=pdf&language=en&pdftemplate=XWiki.PDFTemplate</tt>.
260
261 #warning("As mentioned the <tt>style</tt> property stores CSS code. Don't add blank line between the rules. The field is parsed and rendered, so a blank line causes a paragraph to appear there, which breaks the CSS. You must use this... {code}
Ricardo Rodríguez 28.1 262 h2 {
263 margin-left: 2cm;
264 margin-bottom: 1cm;
265 color: red;
266 }
267 h3 {
268 margin: 3cm;
269 color: yellow;
270 }
Vincent Massol 30.2 271 {code} And not... {code}
Ricardo Rodríguez 28.1 272 h2 {
273 margin-left: 2cm;
274 margin-bottom: 1cm;
275 color: red;
276 }
277
278 h3 {
279 margin: 3cm;
280 color: yellow;
281 }
Vincent Massol 30.2 282 {code}")
Ricardo Rodríguez 28.1 283
Vincent Massol 30.2 284 #info("Even though RTF export is expected to work the same way, there are still some isues to be solved affecting how CSS properties control the final layout.")
Ricardo Rodríguez 28.1 285
Vincent Massol 41.2 286 1.1 Configuring Wiki Syntaxes and default Syntax
Ricardo Rodríguez 23.1 287
Vincent Massol 41.4 288 Starting with XWiki Enterprise 1.6 it's possible to configure the [Wiki syntaxes>platform:Main.XWikiSyntax] that are available to the user. To do so edit the *<tt>WEB-INF/xwiki.cfg</tt>* file and configure the <tt>xwiki.rendering.syntaxes</tt> property. It's a comma-separated list of syntax ids. For example:
Ricardo Rodríguez 24.1 289
Vincent Massol 41.3 290 {code:none}
Vincent Massol 30.1 291 xwiki.rendering.syntaxes = xwiki/1.0, xwiki/2.0, confluence/1.0, jspwiki/1.0, creole/1.0, mediawiki/1.0, xhtml/1.0, twiki/1.0
292 {code}
Ricardo Rodríguez 25.1 293
Vincent Massol 41.4 294 In addition starting with XWiki Enterprise 1.8 it's possible to set the default syntax to be used when creating new documents. To do so edit the *<tt>WEB-INF/xwiki.properties</tt>* file and configure the <tt>core.defaultDocumentSyntax</tt> property. For example to use XWiki Syntax 2.0 by default:
Vincent Massol 41.2 295
Vincent Massol 41.3 296 {code:none}
Vincent Massol 41.2 297 #-# Specifies the default syntax to use when creating new documents.
298 #-# Default value is xwiki/1.0.
299 core.defaultDocumentSyntax = xwiki/2.0
300 {code}
301
Vincent Massol 41.5 302 #warning("Hint: If it doesn't work check that you've edited the correct configuration file.")
303
TimL 1.18 304 1.1 Sample xwiki.cfg
305
Vincent Massol 1.22 306 {code}
307 xwiki.base=../../
Vincent Massol 30.1 308
Vincent Massol 1.22 309 xwiki.store.class=com.xpn.xwiki.store.XWikiHibernateStore
310 xwiki.store.hibernate.path=/WEB-INF/hibernate.cfg.xml
311 xwiki.store.hibernate.updateschema=1
312 xwiki.store.hibernate.custommapping=1
313 xwiki.store.cache=1
314 xwiki.store.cache.capacity=100
Vincent Massol 30.1 315 xwiki.store.migration=1
316
Vincent Massol 1.22 317 xwiki.monitor=1
318
Vincent Massol 30.1 319 # List of active plugins.
320 xwiki.plugins=\
321 com.xpn.xwiki.monitor.api.MonitorPlugin,\
322 com.xpn.xwiki.plugin.calendar.CalendarPlugin,\
323 com.xpn.xwiki.plugin.skinx.JsSkinExtensionPlugin,\
324 com.xpn.xwiki.plugin.skinx.CssSkinExtensionPlugin,\
325 com.xpn.xwiki.plugin.feed.FeedPlugin,\
326 com.xpn.xwiki.plugin.ldap.LDAPPlugin,\
327 com.xpn.xwiki.plugin.google.GooglePlugin,\
328 com.xpn.xwiki.plugin.flickr.FlickrPlugin,\
329 com.xpn.xwiki.plugin.mail.MailPlugin,\
330 com.xpn.xwiki.plugin.packaging.PackagePlugin,\
331 com.xpn.xwiki.plugin.query.QueryPlugin,\
332 com.xpn.xwiki.plugin.svg.SVGPlugin,\
333 com.xpn.xwiki.plugin.charts.ChartingPlugin,\
334 com.xpn.xwiki.plugin.fileupload.FileUploadPlugin,\
335 com.xpn.xwiki.plugin.image.ImagePlugin,\
336 com.xpn.xwiki.plugin.captcha.CaptchaPlugin,\
337 com.xpn.xwiki.plugin.userdirectory.UserDirectoryPlugin,\
338 com.xpn.xwiki.plugin.usertools.XWikiUserManagementToolsImpl,\
339 com.xpn.xwiki.plugin.zipexplorer.ZipExplorerPlugin,\
340 com.xpn.xwiki.plugin.autotag.AutoTagPlugin,\
341 com.xpn.xwiki.plugin.lucene.LucenePlugin,\
342 com.xpn.xwiki.plugin.diff.DiffPlugin,\
343 com.xpn.xwiki.plugin.rightsmanager.RightsManagerPlugin,\
344 com.xpn.xwiki.plugin.jodatime.JodaTimePlugin,\
345 com.xpn.xwiki.plugin.scheduler.SchedulerPlugin,\
346 com.xpn.xwiki.plugin.mailsender.MailSenderPlugin,\
347 com.xpn.xwiki.plugin.watchlist.WatchListPlugin, \
348 com.xpn.xwiki.wysiwyg.server.plugin.WysiwygPlugin
Vincent Massol 1.22 349
Vincent Massol 30.1 350 # [Since 1.6RC1] Defines the list of supported syntaxes
351 # Available syntaxes are:
352 # xwiki/1.0, xwiki/2.0, confluence/1.0, jspwiki/1.0, creole/1.0,
353 # mediawiki/1.0, xhtml/1.0, twiki/1.0
354 xwiki.rendering.syntaxes = xwiki/1.0, xwiki/2.0, confluence/1.0, jspwiki/1.0, creole/1.0, mediawiki/1.0, xhtml/1.0, twiki/1.0
355
356 # This parameter allows XWiki to operate in Hosting mode allowing to create
357 # multiple wikis having their own database and responding to different URLs
Vincent Massol 1.22 358 xwiki.virtual=0
Vincent Massol 30.1 359
Vincent Massol 1.22 360 xwiki.virtual.redirect=http://127.0.0.1:9080/xwiki/bin/Main/ThisWikiDoesNotExist
361
Vincent Massol 30.1 362 # This parameter will activate the eXo Platform integration
Vincent Massol 1.22 363 xwiki.exo=0
364
365 xwiki.authentication=form
366 xwiki.authentication.validationKey=totototototototototototototototo
367 xwiki.authentication.encryptionKey=titititititititititititititititi
368 xwiki.authentication.cookiedomains=xwiki.com,wiki.fr
369
Vincent Massol 30.1 370 # This allows logout to happen for any page going through the /logout/ action, regardless of the document or the servlet.
371 # Comment-out if you want to enable logout only for /bin/logout/XWiki/XWikiLogout
372 xwiki.authentication.logoutpage=(/[^/]+/|/)logout/*
373
374 # Stats configuration allows to globally activate/deactivate stats module (launch storage thread, register events...)
375 xwiki.stats=1
376 # When statistics are globally enabled, storage can be enabled/disabled by wiki using the XWikiPreference property "statistics".
377 # Note: Statistics are disabled by default for improved performances/space.
378 xwiki.stats.default=0
379 # It is also possible to choose a different stats service to record statistics separately from XWiki.
Vincent Massol 1.22 380 xwiki.stats.class=com.xpn.xwiki.stats.impl.XWikiStatsServiceImpl
381
382 xwiki.encoding=ISO-8859-1
Vincent Massol 30.1 383
Vincent Massol 1.22 384 xwiki.backlinks=1
Vincent Massol 30.1 385
Vincent Massol 1.22 386 xwiki.tags=1
387
Vincent Massol 30.1 388 # Use edit comments
Vincent Massol 1.22 389 xwiki.editcomment=1
Vincent Massol 30.1 390
391 # Hide editcomment field and only use Javascript
Vincent Massol 1.22 392 xwiki.editcomment.hidden=0
Vincent Massol 30.1 393
394 # Make edit comment mandatory
Vincent Massol 1.22 395 xwiki.editcomment.mandatory=0
Vincent Massol 30.1 396
397 # Make edit comment suggested (asks 1 time if the comment is empty.
398 # 1 shows one popup if comment is empty.
399 # 0 means there is no popup.
400 # This setting is ignored if mandatory is set
Vincent Massol 1.22 401 xwiki.editcomment.suggested=0
402
Vincent Massol 30.1 403 # GraphViz plugin configuration. The GraphViz plugin is not configured by default.
404 # To enable it, add "com.xpn.xwiki.plugin.graphviz.GraphVizPlugin" to the list of plugins
405 # in the xwiki.plugins property.
406 # Uncomment and set the locations of the Dot and Neato executables
407 #xwiki.plugin.graphviz.dotpath=c:/Program Files/ATT/GraphViz/bin/dot.exe
408 #xwiki.plugin.graphviz.neatopath=c:/Program Files/ATT/GraphViz/bin/neato.exe
Vincent Massol 1.22 409
410 xwiki.plugin.laszlo.baseurl=/openlaszlo/xwiki/
411 xwiki.plugin.laszlo.path=c:/Program Files/Apache Software Foundation/Tomcat 5.0/webapps/openlaszlo/xwiki/
412
413 xwiki.plugin.image.cache.capacity=30
414
Vincent Massol 30.1 415 xwiki.plugin.captcha=0
Vincent Massol 1.22 416
417
Vincent Massol 30.1 418 # Enable to allow superadmin. It is disabled by default as this could be a security breach if
419 # it were set and you forgot about it.
420 #xwiki.superadminpassword=system
Vincent Massol 1.22 421
Vincent Massol 30.1 422 #-------------------------------------------------------------------------------------
423 # LDAP
424 #-------------------------------------------------------------------------------------
425
426 #-# new LDAP authentication service
427 # xwiki.authentication.authclass=com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl
428
429 #-# Turn LDAP authentication on - otherwise only XWiki authentication
430 #-# 0: disable
431 #-# 1: enable
432 # xwiki.authentication.ldap=1
433
434 #-# LDAP Server (Active Directory, eDirectory, OpenLDAP, etc.)
435 xwiki.authentication.ldap.server=127.0.0.1
Vincent Massol 1.22 436 xwiki.authentication.ldap.port=389
Vincent Massol 30.1 437
438 #-# LDAP login, empty = anonymous access, otherwise specify full dn
439 #-# {0} is replaced with the username, {1} with the password
440 xwiki.authentication.ldap.bind_DN=cn={0},department=USER,department=INFORMATIK,department=1230,o=MP
Vincent Massol 1.22 441 xwiki.authentication.ldap.bind_pass={1}
442
Vincent Massol 30.1 443 #-# Force to check password after LDAP connection
444 #-# 0: disable
445 #-# 1: enable
446 xwiki.authentication.ldap.validate_password=0
447
448 #-# only members of the following group will be verified in the LDAP
449 #-# otherwise only users that are found after searching starting from the base_DN
450 # xwiki.authentication.ldap.user_group=cn=developers,ou=groups,o=MegaNova,c=US
451
452 #-# [Since 1.5RC1, XWikiLDAPAuthServiceImpl]
453 #-# only users not member of the following group can autheticate
454 # xwiki.authentication.ldap.exclude_group=cn=admin,ou=groups,o=MegaNova,c=US
455
456 #-# base DN for searches
457 xwiki.authentication.ldap.base_DN=
458
459 #-# Specifies the LDAP attribute containing the identifier to be used as the XWiki name (default=cn)
460 # xwiki.authentication.ldap.UID_attr=cn
461
462 #-# [Since 1.5M1, XWikiLDAPAuthServiceImpl]
463 #-# Specifies the LDAP attribute containing the password to be used "when xwiki.authentication.ldap.validate_password" is set to 1
464 # xwiki.authentication.ldap.password_field=userPassword
465
466 #-# [Since 1.5M1, XWikiLDAPAuthServiceImpl]
467 #-# The potential LDAP groups classes. Separated by commas.
468 # xwiki.authentication.ldap.group_classes=group,groupOfNames,groupOfUniqueNames,dynamicGroup,dynamicGroupAux,groupWiseDistributionList
469
470 #-# [Since 1.5M1, XWikiLDAPAuthServiceImpl]
471 #-# The potential names of the LDAP groups fields containings the members. Separated by commas.
472 # xwiki.authentication.ldap.group_memberfields=member,uniqueMember
473
474 #-# retrieve the following fields from LDAP and store them in the XWiki user object (xwiki-attribute=ldap-attribute)
475 #-# ldap_dn=dn -- dn is set by class, caches dn in XWiki.user object for faster access
476 xwiki.authentication.ldap.fields_mapping=last_name=sn,first_name=givenName,fullname=fullName,email=mail,ldap_dn=dn
477
478 #-# [Since 1.3M2, XWikiLDAPAuthServiceImpl]
479 #-# on every login update the mapped attributes from LDAP to XWiki otherwise this happens only once when the XWiki account is created.
480 xwiki.authentication.ldap.update_user=1
481
482 #-# [Since 1.3M2, XWikiLDAPAuthServiceImpl]
483 #-# mapps XWiki groups to LDAP groups, separator is "|"
484 # xwiki.authentication.ldap.group_mapping=XWiki.XWikiAdminGroup=cn=AdminRole,ou=groups,o=MegaNova,c=US|\
485 # XWiki.Organisation=cn=testers,ou=groups,o=MegaNova,c=US
486
487 #-# [Since 1.3M2, XWikiLDAPAuthServiceImpl]
488 #-# time in s after which the list of members in a group is refreshed from LDAP (default=3600*6)
489 # xwiki.authentication.ldap.groupcache_expiration=21800
490
491 #-# [Since 1.3M2, XWikiLDAPAuthServiceImpl]
492 #-# - create : synchronize group membership only when the user is first created
493 #-# - always: synchronize on every login
494 # xwiki.authentication.ldap.mode_group_sync=always
495
496 #-# [Since 1.3M2, XWikiLDAPAuthServiceImpl]
497 #-# if ldap authentication fails for any reason, try XWiki DB authentication with the same credentials
498 xwiki.authentication.ldap.trylocal=1
499
500 #-# [Since 1.3M2, XWikiLDAPAuthServiceImpl]
501 #-# SSL connection to LDAP server
502 #-# 0: normal
503 #-# 1: SSL
504 # xwiki.authentication.ldap.ssl=0
505
506 #-# [Since 1.3M2, XWikiLDAPAuthServiceImpl]
507 #-# The keystore file to use in SSL connection
508 # xwiki.authentication.ldap.ssl.keystore=
509
510 #-# [Since 1.5M1, XWikiLDAPAuthServiceImpl]
511 #-# The java secure provider used in SSL connection
512 # xwiki.authentication.ldap.ssl.secure_provider=com.sun.net.ssl.internal.ssl.Provider
513
514 #-------------------------------------------------------------------------------------
515 # Cache
516 #-------------------------------------------------------------------------------------
517
518 #-# [Since 1.5M2]
519 #-# The cache component implementation to use as "normal" (can be local or distributed depending on the implementation)
520 #-# cache component.
521 # xwiki.cache.cachefactory.hint=jbosscache
522
523 #-# [Since 1.5M2]
524 #-# The cache component to use as local cache component.
525 # xwiki.cache.cachefactory.local.hint=jbosscache/local
526
527 #-------------------------------------------------------------------------------------
528
529
Vincent Massol 1.22 530 xwiki.authentication.unauthorized_code=200
531
Vincent Massol 30.1 532 # This parameter will activate the sectional editing
Vincent Massol 1.22 533 xwiki.section.edit=1
534
Vincent Massol 30.1 535 # Uncomment if you want to ignore requests for unmapped actions, and simply display the document
536 # xwiki.unknownActionResponse=view
Vincent Massol 1.22 537
538
Vincent Massol 30.1 539 # You can configure the toolbars you wish to see in the WYSIWYG editor by defining the
540 # xwiki.wysiwyg.toolbars property.
541 # When not defined it defaults to:
542 # xwiki.wysiwyg.toolbars=texttoolbar, listtoolbar, indenttoolbar, undotoolbar, titletoolbar, \
543 # styletoolbar, horizontaltoolbar, attachmenttoolbar, macrostoolbar, \
544 # tabletoolbar, tablerowtoolbar, tablecoltoolbar, linktoolbar
545 # The full list of toolbars includes the one defined above and the following ones:
546 # subtoolbar, findtoolbar, symboltoolbar
Vincent Massol 1.22 547
548
Vincent Massol 30.1 549 xwiki.defaultskin=toucan
Vincent Massol 1.22 550 xwiki.defaultbaseskin=albatross
551
Vincent Massol 30.1 552 # Calendar Prev/Next Month bounds.
553 # The calendar generates links to the previous/next months for a limited range, by default 6 months back and 12 months after.
554 # A value of 0 means that there is no limit in that direction.
555 # xwiki.calendar.bound.prev=6
556 # xwiki.calendar.bound.next=12
557
558 # xwiki.temp.dir=/tmp/xwiki
559 # xwiki.work.dir=/usr/local/xwiki
560
561 # xwiki.plugins.lucene.indexdir=/usr/local/xwiki/lucene
562 # xwiki.plugins.lucene.analyzer=org.apache.lucene.analysis.standard.StandardAnalyzer
563 # xwiki.plugins.lucene.indexinterval=20
564
565 #-# [Since 1.6M1]
566 #-# Force the database name for the main wiki in virtual mode and for the wiki itself in non virtual mode
567 # xwiki.db=xwiki
568
569 #-# [Since 1.6M1]
570 #-# Add a prefix to all databases names of the wikis in virtual mode and to the wiki name in non virtual mode
571 # xwiki.db.prefix=
572
573 xwiki.work.dir=work
Vincent Massol 1.22 574 {code}
575

Get Connected