| Configuration parameter |
Default value |
Usage |
| blojsom-users |
|
Comma-separated list of users with blogs for this blojsom installation. This list will be used to initialize the individual blogs. NOTE: You can also list each user on a separate line using the blojsom-users property. |
| blojsom-default-user |
|
This option provides legacy blojsom (i.e. pre 2.0) installations a way of preserving their current installations. Set the name of the default user from one of the blog ids in the blojsom-users property. The default user will not have to enter their blog id in the URL for the blojsom installation to request their blog. For example, http://localhost:8080/blojsom/blog/ would point to the blog of the default user where http://localhost:8080/blojsom/blog/david/ would point to the blog for the user david. |
| blojsom-blog-home |
|
Directory that will be used for storing blogs (categories and entries) for each user. If this property begins with a {, blojsom assumes that a } will follow and uses the contents to retrieve a system property. After that it will append everything after the } and use that as the value for this parameter. For example:
blojsom-blog-home={user.home}/blogs/ would expand the {user.home} property (let's say it resolves to /home/tomcat4) and use /home/tomcat4/blogs/ as the value for this property. |
| blojsom-configuration-base-directory |
/WEB-INF/ |
Directory off the blojsom installation directory where blojsom will look for certain configuration files and blog directories. |
| blojsom-fetcher |
org.blojsom.fetcher.StandardFetcher |
Fully qualified class name of the BlojsomFetcher class responsible for "fetching" blog categories and entries |
| blojsom-templates-directory |
/templates/ |
This parameter will be used by blojsom to generate the proper path from which to retrieve the page templates for the individual blogs. For example, in a default blojsom installation, requesting the default flavor (HTML) for the default blog would cause the dispatcher to look for /WEB-INF/default/templates/html.vm. |
| blojsom-resource-manager |
org.blojsom.util.resources.ResourceBundleResourceManager |
This parameter will be used by blojsom to retrieve resources that are used in localizing parts of the interface such as the administration console. |
| blojsom-resource-manager-bundles |
|
A comma-separated list of resource bundles that the resource manager should load on initialization. |
| blojsom-resource-directory |
/resources/ |
blojsom uses this parameter to create a directory off of the installation directory. Under this directory, a directory will be created for each blog using their blog id, where resources will be stored for individual blogs. This is used in the MetaWeblog API handler and by the File Upload plugin. |
| blojsom-authorization-provider |
org.blojsom.authorization.PropertiesAuthorizationProvider |
Authorization provider used for this blojsom instance. The default loads authorization information from the blog's authorization.properties file. |
| blojsom-broadcaster |
org.blojsom.event.SimpleBlojsomEventBroadcaster |
Event broadcaster to use for this blojsom instance. |