forked from AKSW/OntoWiki
-
Notifications
You must be signed in to change notification settings - Fork 0
Sebastian Tramp edited this page Apr 5, 2012
·
3 revisions
OntoWiki is organized in terms of controllers which provide actions.
The news feed is provided by the action news
from the controller index
.
You can change the start screen by configuring a new action/controller in config.ini
by adding the following section:
index.default.controller = "[controllername]"
index.default.action = "[actionname]"
You can add any controller/action you want here but if you want to create a simple custom start screen, you can use the page extension.
This extensions provides a generic page
controller, which can be used to display pages (= actions) which are created in its subdirectory page
.
After installation only an example page exists so you can test the extension with:
index.default.controller = "page"
index.default.action = "example"