Authentication vs. Access ControlAuthentication: Identifies who a user is based on a login procedure. See TWikiUserAuthentication. Access control: Restrict access to content based on users and groups once a user is identified.Users and GroupsAccess control is based on the familiar concept of Users and Groups. Users are defined by their WikiNames. They can then be organized in unlimited combinations by inclusion in one or more user Groups. For convenience, Groups can also be included in other Groups.Managing UsersA user can create an account in TWikiRegistration. The following actions are performed:
Managing GroupsGroups are defined by group topics located in theUser web, such as the TWikiAdminGroup. To create a new group, visit TWikiGroups and enter the name of the new group ending in Group into the "new group" form field. This will create a new group topic with two important settings:
The Super Admin GroupBy mistyping a user or group name in the settings, it's possible to lock a topic so that no-one can edit it from a browser. To avoid this, add the WikiNames of registered administrators to the super admin group topic calledTWikiAdminGroup. The name of this topic is defined by the {SuperAdminGroup} configure setting. Example group setting:
Restricting AccessYou can define who is allowed to read or write to a web or a topic. Note that some plugins may not respect access permissions.
Controlling access to a WebYou can define restrictions of who is allowed to view a TWiki web. You can restrict access to certain webs to selected Users and Groups, by:
Controlling access to a Topic
Controlling access to AttachmentsAttachments are referred to directly, and are not normally indirected via TWiki scripts. This means that the above instructions for access control will not apply to attachments. It is possible that someone may inadvertently publicise a URL that they expected to be access-controlled. The easiest way to apply the same access control rules for attachments as apply to topics is to use the Apachemod_rewrite module, and configure your webserver to redirect accesses to attachments to the TWiki viewfile script. For example,
ScriptAlias /twiki/bin/ /filesystem/path/to/twiki/bin/
Alias /twiki/pub/ /filesystem/path/to/twiki/pub/
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/+twiki/+pub/+TWiki/+.+
RewriteRule ^/+twiki/+pub/+([^/]+)/+((([^/]+)/+)+)(.+) /twiki/bin/viewfile/$1/$4?filename=$5 [L,PT]
</verbatim
That way all the controls that apply to the topic also apply to attachments to the topic. Other types of webserver have similar support.
__Note:__ Images embedded in topics will load much slower since each image will be delivered by the =viewfile= script.
---+++ How TWiki evaluates ALLOW/DENY settings
When deciding whether to grant access, TWiki evaluates the following rules in order (read from the top of the list; if the logic arrives at *PERMITTED* or *DENIED* that applies immediately and no more rules are applied). You need to read the rules bearing in mind that VIEW, CHANGE and RENAME access may be granted/denied separately.
1 If the user is a [[#SuperAdminGroup][super-user]]
* access is *PERMITTED*.
1 If DENYTOPIC is set to a list of wikinames
* people in the list will be *DENIED*.
1 If DENYTOPIC is set to _empty_ ( i.e. <tt>Set DENYTOPIC =</tt> )
* access is *PERMITTED* _i.e_ no-one is denied access to this topic
1 If ALLOWTOPIC is set
1 people in the list are *PERMITTED*
1 everyone else is *DENIED*
* Note that this means that setting ALLOWTOPIC to empty _denies access to everyone except admins_ (unless DENYTOPIC is also set to empty, as described above)
1 If DENYWEB is set to a list of wikiname
* people in the list are *DENIED* access
1 If ALLOWWEB is set to a list of wikinames
* people in the list will be *PERMITTED*
* everyone else will be *DENIED*
* Note that setting ALLOWWEB to empty _denies access to everyone except admins_
1 If you got this far, access is *PERMITTED*
---++ Access Control quick recipes
---+++ Obfuscating Webs
Another way of hiding webs is to keep them hidden by not publishing the URL and by preventing the ==all webs== search option from accessing obfuscated webs. Do so by enabling the ==NOSEARCHALL== variable in %WEBPREFSTOPIC%:
* ==Set <nop>NOSEARCHALL = on==
This setup can be useful to hide a new web until content its ready for deployment, or to hide view access restricted webs.
__%X% Note:__ Obfuscating a web without view access control is *very* insecure, as anyone who knows the URL can access the web.
---+++ Authenticate all Webs and Restrict Selected Webs
Use the following setup to authenticate users for topic viewing in all webs and to restrict access to selected webs. Requires TWikiUserAuthentication to be enabled.
1. *Restrict* view access to selected Users and Groups. Set one or both of these variables in its %WEBPREFSTOPIC% topic:
* ==Set <nop>DENYWEBVIEW = < list of Users and Groups >==
* ==Set <nop>ALLOWWEBVIEW = < list of Users and Groups >==
* __Note:__ =DENYWEBVIEW= is evaluated before =ALLOWWEBVIEW=. Access is denied if the authenticated person is in the =DENYWEBVIEW= list, or not in the =ALLOWWEBVIEW= list. Access is granted in case =DENYWEBVIEW= and =ALLOWWEBVIEW= is not defined.
---+++ Authenticate and Restrict Selected Webs Only
Use the following setup to provide unrestricted viewing access to open webs, with authentication only on selected webs. Requires TWikiUserAuthentication to be enabled.
1. *Restrict* view access to selected Users and Groups. Set one or both of these variables in its %WEBPREFSTOPIC% topic:
* ==Set <nop>DENYWEBVIEW = < list of Users and Groups >==
* ==Set <nop>ALLOWWEBVIEW = < list of Users and Groups >==
* __Note:__ =DENYWEBVIEW= is evaluated before =ALLOWWEBVIEW=. Access is denied if the authenticated person is in the =DENYWEBVIEW= list, or not in the =ALLOWWEBVIEW= list. Access is granted in case =DENYWEBVIEW= and =ALLOWWEBVIEW= is not defined.
---+++ Hide Control Settings
__%T% Tip:__ To hide access control settings from normal browser viewing, place them in HTML comment markers.
<blockquote>
==<!--== <br />
== * Set <nop>DENYTOPICCHANGE = %MAINWEB%.<nop>SomeGroup== <br />
==-->==
</blockquote>
TWiki Text FormattingWorking in TWiki is as easy as typing in text. You don't need to know HTML, though you can use it if you prefer. Links to topics are created automatically when you enter WikiWords. And TWiki shorthand gives you all the power of HTML with a simple coding system that takes no time to learn. It's all laid out below.TWiki Editing Shorthand
Using HTMLYou can use just about any HTML tag without a problem. You can add HTML if there is no TWiki equivalent, for example, write<strike>deleted text</strike> to get
Script tagsYou can use HTML<script> tags for your TWiki applications. However note that your TWiki administrator can disable <script> in topics, and may have chosen to do so for security considerations. TWiki markup and TWikiVariables are not expanded inside script tags.
HyperlinksBeing able to create links without any special formatting is a core TWiki feature, made possible with WikiWords and inline URLs.Internal Links
External Links
TWiki VariablesTWiki Variables are names that are enclosed in percent signs% that are expanded on the fly. Some variables take arguments, such as %INCLUDE%. For those variables, the arguments are included in curly braces ({ and }).
%ICON{"help"}%, %ICON{"tip"|%, and %icon{"warning"}% to get: !%SOMEVARIABLE% to get: %SOMEVARIABLE%.
TWikiPlugin Formatting ExtensionsPlugins can extend the functionality of TWiki into many other areas. There are a huge number of TWiki plugins available from the Plugins web on TWiki.org. Currently enabled plugins on this TWiki installation, as listed by%PLUGINDESCRIPTIONS%:
Common Editing ErrorsTWiki formatting rules are fairly simple to use and quick to type. However, there are some things to watch out for, taken from the TextFormattingFAQ:
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||