########################################################################### # # This is the JSPWiki configuration file. You'll need to edit this # a bit. The first few lines are the most important ones. # # # You can use this to override 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.applicationName = JSPWiki # # Which page provider class to use. Possibilities are: # # RCSFileProvider for simple RCS-based file storage # FileSystemProvider for simple pure file storage with no version information # jspwiki.pageProvider = com.ecyrd.jspwiki.FileSystemProvider # # Determines where wiki files are kept for FileSystemProvider # and RCSFileProvider # jspwiki.fileSystemProvider.pageDir = /p/web/www-data/jspwiki/ ############################################################################ # # Special page references. # # The URL is relative to Wiki.jsp. However, if you use # a full, absolute URL, you can also do that. # # Example to redirect all requests to a page called 'OriginalWiki' # to the original wikiwiki at http://c2.com/cgi/wiki # # jspwiki.specialPage.OriginalWiki = http://c2.com/cgi/wiki # jspwiki.specialPage.RecentChanges = RecentChanges.jsp jspwiki.specialPage.FindPage = Search.jsp jspwiki.specialPage.SystemInfo = SystemInfo.jsp ############################################################################# # # InterWiki links # # The %s is replaced with the page reference (specify # multiple times to get multiple references). Page references should # appear in format : [wiki:wikipage]. # # This is the JSPWiki home. In future, JSPWiki will probably rely on this # for error messages, so I don't recommend that you use it. jspwiki.interWikiRef.JSPWiki = http://www.ecyrd.com/JSPWiki/Wiki.jsp?page=%s # Here's how you can have directly links to the JSPWiki editor. # Now you can put a hyperlink for editing "MainPage" by making # a link [Edit:MainPage]. jspwiki.interWikiRef.Edit = Edit.jsp?page=%s # This is the original WikiWikiWeb jspwiki.interWikiRef.WikiWikiWeb = http://c2.com/cgi/wiki?%s ############################################################################ # # Define which image types are inlined. # These are your standard glob expressions (just like in your # Windows or UNIX shells). Default pattern is to include all PNG # images. If you specify something here, you will override the default. # # Don't forget to increase the number after the dot - duplicate entries # cause problems! # # For example: # Inline all JPG files, PNG files and all files from images.com: # # jspwiki.translatorReader.inlinePattern.1 = *.jpg # jspwiki.translatorReader.inlinePattern.2 = *.png # jspwiki.translatorReader.inlinePattern.3 = http://images.com/* ########################################################################### # # Determine how certain file commands are run. They have been # commented out, since most likely you want to use the defaults. # Be warned, making mistakes with these may well ruin your entire # Wiki collection! # # The command to run diff: #jspwiki.diffCommand = diff -u %s1 %s2 # The command for RCS checkin #jspwiki.rcsFileProvider.checkinCommand = ci -q -mx -l -t-none %s # The command for RCS checkout of the newest version #jspwiki.rcsFileProvider.checkoutCommand = co -l %s # The command for checking out a specific version (%v = version number) #jspwiki.rcsFileProvider.checkoutVersionCommand = co -p -r1.%v %s # The command for RCS log headers #jspwiki.rcsFileProvider.logCommand = rlog -h %s # The command for getting the entire modification history #jspwiki.rcsFileProvider.fullLogCommand = rlog %s ########################################################################### # # Configure logs. See log4j documentation for more information # on how you can configure the logs. # # Log4j is available at http://jakarta.apache.org/log4j # # Send mail to root on all problems containing warnings. # #log4j.appender.mail = org.apache.log4j.net.SMTPAppender #log4j.appender.mail.Threshold = WARN #log4j.appender.mail.To = root@localhost #log4j.appender.mail.From = JSPWiki@localhost #log4j.appender.mail.Subject = Problem with JSPWiki! #log4j.appender.mail.SMTPHost = mail #log4j.appender.mail.layout = org.apache.log4j.PatternLayout #log4j.appender.mail.layout.ConversionPattern =%d [%t] %p %c %x - %m%n # # Log everything into a file, roll it over every 10 MB, keep # only 14 latest ones. # log4j.appender.FileLog = org.apache.log4j.RollingFileAppender log4j.appender.FileLog.MaxFileSize = 10MB log4j.appender.FileLog.MaxBackupIndex = 14 log4j.appender.FileLog.File = /tmp/jspwiki.log log4j.appender.FileLog.layout = org.apache.log4j.PatternLayout log4j.appender.FileLog.layout.ConversionPattern=%d [%t] %p %c %x - %m%n # Enable if you're using mailing, above. #log4j.rootCategory=DEBUG,FileLog,mail log4j.rootCategory=DEBUG,FileLog ### End of configuration file.