-
jspwiki.applicationName
-
Specifies the default application name. It affects the HTML titles
and logging, for example. It can be different from the actual web name (http://my.com/mywiki) of the application, but usually it is the same.
-
jspwiki.pageProvider
-
Specifies the provider class to use. For example, the values can be:
-
RCSFileProvider
-
For simple RCS-based file storage.
-
FileSystemProvider
-
For simple pure file storage with no version information.
-
VersioningFileProvider
-
For simple, non-RCS based versioning storage.
By default, this is set to JDBCPageProvider.
-
jspwiki.JDBCPageProvider.url, jspwiki.JDBCPageProvider.username, jspwiki.JDBCPageProvider.password, jspwiki.JDBCPageProvider.driver, and jspwiki.JDBCPageProvider.cachedConnections
-
Specifies the database conncection when using JDBCPageProvider.
-
jspwiki.JDBCPageProvider.continuationEditMinutes
-
Specifies the minutes for editing the page before increasing the version
of the page. Multiple edits by the same user within this interval will not increment
the page version number and will appear as a single edit in the page history.
-
jspwiki.JDBCPageProvider.migrateFrom and jspwiki.JDBCAttachmentProvider.migrateFrom
-
Specifies the path to the properties files of the imported page and
attachment repositories, which are used to build the initial database repository from
default data, or to migrate from old versions of JSPWiki.
-
jspwiki.fileSystemProvider.pageDir
-
Specifies where wiki files are kept for FileSystemProvider and RCSFileProvider.
-
jspwiki.workDir
-
Specifies the JSPWiki working directory. The working directory is
used to cache things like Lucene search results.
-
jspwiki.attachmentProvider
-
Specifies the attachment provider to use. You can specify BasicAttachmentProvider for a simple, flat file versioning provider or leave
the value empty to disable the functionality. By default, this is set to JDBCAttachmentProvider.
-
jspwiki.basicAttachmentProvider.storageDir
-
If you specifies the BasicAttachmentProvider as the attachment provider,
this specifies where to store the files the user has uploaded.
-
jspwiki.baseURL
-
Specifies the BaseURL which can be used to rewrite all of JSPWiki's
internal references.
-
jspwiki.translatorReader.allowHTML
-
Specifies whether raw HTML is allowed as Wiki input. By default, this
is set to true. You can also specify yes or no, or on or off.
-
jspwiki.templateDir
-
Specifies the default template used by the Wiki engine. The templates
live in wiki-webapp-location/templates/template-name directory. JSPWiki will attempt to find two
basic templates (ViewTemplate and EditTemplate)
from that directory. The default JSPWiki template is called default which
is provided as a reference only. The wiki portlet uses templates called wikicommunity and wikiportlet.
-
jspwiki.lockExpiryTime
-
Specifies the number of minutes a person can lock a page while editing
it.
-
log4j.logLevel
-
Specifies the logging level.
-
log4j.appender.FileLog.File
-
Specifies the log file location. The default log location is dynamically
set to PortalServer-DataDir/logs/instance-name/jspwiki.log.