Here's how to read the basic jForum URL. The syntax is:
<context url>/<module>/action[/<parameters>..].page
Where:
context URL is the web app context URL, e.g. /jforum
module is a property key that is mapped to a class in the config/modulesMapping.properties file. (Generally in the net.jforum.view package tree).
action is the name of a public void no argument method in that class, e.g. public void list(). Note that some of the no argument methods, may not work as main actions but are called by the main functions...
[/<parameters>...] is a 0..n list of action specific parameters. E.g., a forum id number.
From this, I guess you could get "A list of URLs".
Just to confuse matters as well. There is an optional (older?) format that can be used that calls the common JForum
servlet and redirect the call to actions based on module= and action= parameters. E.g. something like jforum?module=forums&action=show&forumId=4
[originally posted on jforum.net by monroe]