Module: nagvis Branch: master Commit: 9175263794dd010d4c566574f195a050b58671fd URL: http://nagvis.git.sourceforge.net/git/gitweb.cgi?p=nagvis/nagvis;a=commit;h=9175263794dd010d4c566574f195a050b58671fd
Author: LaMi <[email protected]> Date: Tue Mar 9 21:27:21 2010 +0100 Fixed wrong var naming --- docs/en_US/header_templates.html | 20 ++++++++++---------- 1 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/en_US/header_templates.html b/docs/en_US/header_templates.html index ac5dbaf..cb73ed5 100644 --- a/docs/en_US/header_templates.html +++ b/docs/en_US/header_templates.html @@ -32,34 +32,34 @@ <td>{$currentUser}</td><td>Name of the current user <font color="#ff0000">(New in 1.5)</font>.</td> </tr> <tr> - <td>${mod}</td><td>The current Module (Map, AutoMap, Overview, Welcome, ...) <font color="#ff0000">(New in 1.5)</font>.</td> + <td>{$mod}</td><td>The current Module (Map, AutoMap, Overview, Welcome, ...) <font color="#ff0000">(New in 1.5)</font>.</td> </tr> <tr> - <td>${act}</td><td>The current Action (view, edit, ...) <font color="#ff0000">(New in 1.5)</font>.</td> + <td>{$act}</td><td>The current Action (view, edit, ...) <font color="#ff0000">(New in 1.5)</font>.</td> </tr> <tr> - <td>${bRotation}</td><td>Is true when currently viewing a rotation. Otherwise it is False. <font color="#ff0000">(New in 1.5)</font>.</td> + <td>{$bRotation}</td><td>Is true when currently viewing a rotation. Otherwise it is False. <font color="#ff0000">(New in 1.5)</font>.</td> </tr> <tr> - <td>${permittedEdit}</td><td>Is true when the user is permitted to edit the current map. Otherwise it is False. <font color="#ff0000">(New in 1.5)</font>.</td> + <td>{$permittedEdit}</td><td>Is true when the user is permitted to edit the current map. Otherwise it is False. <font color="#ff0000">(New in 1.5)</font>.</td> </tr> <tr> - <td>${permittedEditAnyMap}</td><td>Is true when the user is allowed to edit at least one map. Otherwise it is False. <font color="#ff0000">(New in 1.5)</font>.</td> + <td>{$permittedEditAnyMap}</td><td>Is true when the user is allowed to edit at least one map. Otherwise it is False. <font color="#ff0000">(New in 1.5)</font>.</td> </tr> <tr> - <td>${permittedChangePassword}</td><td>Is true when the user is permitted to change the own password. Otherwise it is False. <font color="#ff0000">(New in 1.5)</font>.</td> + <td>{$permittedChangePassword}</td><td>Is true when the user is permitted to change the own password. Otherwise it is False. <font color="#ff0000">(New in 1.5)</font>.</td> </tr> <tr> - <td>${permittedUserMgmt}</td><td>Is true when the user is permitted to manage user accounts. Otherwise it is False. <font color="#ff0000">(New in 1.5)</font>.</td> + <td>{$permittedUserMgmt}</td><td>Is true when the user is permitted to manage user accounts. Otherwise it is False. <font color="#ff0000">(New in 1.5)</font>.</td> </tr> <tr> - <td>${permittedRoleMgmt}</td><td>Is true when the user is permitted to manage roles. Otherwise it is False. <font color="#ff0000">(New in 1.5)</font>.</td> + <td>{$permittedRoleMgmt}</td><td>Is true when the user is permitted to manage roles. Otherwise it is False. <font color="#ff0000">(New in 1.5)</font>.</td> </tr> <tr> - <td>${permittedLogout}</td><td>Is true when the user is permitted to log out. Otherwise it is False. <font color="#ff0000">(New in 1.5)</font>.</td> + <td>{$permittedLogout}</td><td>Is true when the user is permitted to log out. Otherwise it is False. <font color="#ff0000">(New in 1.5)</font>.</td> </tr> <tr> - <td>${supportedChangePassword}</td><td>Is true when the current auth module supports changing passwords. Otherwise it is False. <font color="#ff0000">(New in 1.5)</font>.</td> + <td>{$supportedChangePassword}</td><td>Is true when the current auth module supports changing passwords. Otherwise it is False. <font color="#ff0000">(New in 1.5)</font>.</td> </tr> <tr> <td valign="top"> {foreach $maps map} <br>{$map.mapName}<br>{/foreach}</td> ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ Nagvis-checkins mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nagvis-checkins
