Namespaces
Available since Tiki10. By default, the namespace separator is set to :_: (colon, underscore, colon), but this can be changed in the "Admin Wizard: Set up Namespace" or in the Workspace admin panel.
You can also have multiple levels of namespaces.
1.1. Activating name spaces
You can do so since Tiki12 in one of the last screens of the Admin Wizard (see "Set up some advanced options" ), and you can set it up in the next screen ("Set up Namespace"). Or if you search for "Namespace" in tiki-admin.php (activate experimental preferences, as of Tiki12 )
1.2. How to use
1.2.1. Easiest: through Workspaces UI
The easiest way to take advantage of the Namespaces feature is to use it through the Workspaces UI feature, which will peform the hard work for you (objects, categories, permissions, perspectives, namespaces...).
Alternatively, you can create your wiki pages following common namespaces by hand (see below).
1.2.2. Custom: hand-made
Create 2 pages with the following names and they will both be in the same abc namespace:
- abc:_:123
- abc:_:456
1.3. User pages
In Tiki, user pages follow the convention
User:JohnSmith
1.4. Categories
Similar but different to namespaces, you can categorize pages in any number of categories. Whereas a page can only be in one namespace.
The easiest way to take advantage of the Namespaces feature is to use it through the Workspaces UI feature, which will peform the hard work for you, setting also the categories and perspectives that comply with the namespaces you chose for them.
1.5. Best Practice
The default ":_:" namespace separator will be urlencoded to "%3A_%3A" which is not really human readable. According to https://stackoverflow.com/questions/1856785/characters-allowed-in-a-ur
1.6. Related