# # # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. # # # == WikiCreole Translator Configuration == # # === Signature Configuration === # set the date format for the --~~~~ signatures # to something like 2007-Apr-01 12:15 (UTC-1) # see http://java.sun.com/j2se/1.4.2/docs/api/java/text/SimpleDateFormat.html # for the syntax rules. creole.dateFormat = yyyy-MMM-dd HH:mm (zz) # === Image Configuration === # You can configure, which plugin of jspwiki will be used # to display images. # # {{Image.jpg|My Image}} # # will be translated by default to # # [{Image src='Image.jpg' title='My Image'}]. # # You can change this e.g. to ImageX plugin for advanced # features like server side resize etc. with the imagePlugin.name parameter # e.g. creole.imagePlugin.name = ImageX # # Parameters will be indicated by the third parameter in the # Creole Syntax (the second one is defined as title) # e.g. # # {{Image.jpg|My Image|-X-, M}} # {{Image.jpg|My Image|M, +X+, [-]}} # # Parameters are seperated by comma, characters are case insensitive, however # you have to define them in the property files in Uppercase(!) # creole.imagePlugin.name = ImageX #creole.imagePlugin.src = src #creole.imagePlugin.caption = caption creole.imagePlugin.para.S = width='140' creole.imagePlugin.para.M = width='180' creole.imagePlugin.para.L = width='360' creole.imagePlugin.para.XL = width='540' creole.imagePlugin.para.XXL = width='1024' creole.imagePlugin.para.X- = align='left' creole.imagePlugin.para.-X = align='right' creole.imagePlugin.para.-X- = align='center' creole.imagePlugin.para.X+ = float='left' creole.imagePlugin.para.+X = float='right' creole.imagePlugin.para.+X+ = float='center' creole.imagePlugin.para.[+] = border=true creole.imagePlugin.para.[-] = border=false ### End of configuration file.