> > | RecentVisitorPlugin
<--
Contributions to this plugin are appreciated. Please update the plugin page at
http://twiki.org/cgi-bin/view/Plugins/RecentVisitorPlugin or provide feedback at
http://twiki.org/cgi-bin/view/Plugins/RecentVisitorPluginDev .
If you are a TWiki contributor please update the plugin in the SVN repository.
-->
This plugin is sponsored by:

Show statistics of recent visitors to the TWiki site
Introduction
This plugin shows statistics of recent visitors to a TWiki site. The time of last visit and the IP address used can be shown of individual users. The recent report shows latest visitors in chronological order.
Syntax Rules
Recent visit of an individual
%RECENTVISITOR{ action="user" ... }%
Parameter |
Description |
Default |
"user" or action="user" |
Show statistics of individual user. |
(none) |
name="..." |
WikiName of person |
(current user) |
format="..." |
Format of report. Supported tokens: • $date - date of last visit • $time - time of last visit (GMT) • $ago - how long ago • $ip - IP address (only shown to non-administrators if enabled in configure) • $n , $nop , $quot , $percnt , $dollar - standard FormatTokens |
"Last seen $ago ago" |
notfound="..." |
Message shown if user is not found. |
"Never seen" |
Report of recent visitors
%RECENTVISITOR{ action="recent" ... }%
Parameter |
Description |
Default |
"recent" or action="recent" |
Show statistics of most recent visitors. |
(none) |
format="..." |
Format of each line of the report. Supported tokens: • $username - login name of user • $wikiname - WikiName of user • $wikusername - WikiName prefixed with Public web name • $date - date of last visit • $time - time of last visit (GMT) • $ago - how long ago • $ip - IP address (only shown to non-administrators if enabled in configure) • $n , $nop , $quot , $percnt , $dollar - standard FormatTokens |
" * $wikiusername last seen $ago ago" |
separator="..." |
Separator between lines. Standard FormatTokens are expanded. |
"$n" (newline) |
limit="..." |
Limit the number of lines. |
"10" |
See also VarRECENTVISITOR documentation for TWikiVariables.
Examples
Example: Show most recent visit of TWikiAdminUser
You type |
You get (if installed) |
Simulated example |
%RECENTVISITOR{
action="user"
name="TWikiAdminUser"
format="Last seen $ago ago ($date
$time)"
}%
|
Never seen
|
Last seen 3 weeks ago (2011-02-03 06:22)
|
Example: Show recent visitors, default bullet list report
You type |
You get (if installed) |
Simulated example |
%RECENTVISITOR{
action="recent"
limit="5"
}%
|
|
|
Example: Show recent visitors, table report
You type |
You get (if installed) |
Simulated example |
%RECENTVISITOR{
action="recent"
format="| $wikiusername | $date |"
limit="5"
}%
|
|
|
Example: Show recent visitors with geolocation
This example uses the TWiki:Plugins.GeoLookupPlugin to resolve IP addresses to geolocations .
You type |
You get (if installed) |
Simulated example |
| *Name* | *Last seen* | *Where* |
%RECENTVISITOR{
action="recent"
limit="5"
format="| $wikiusername | $ago ago
| $percntGEOLOOKUP{$ip}$percnt |"
}%
|
|
Name |
Last seen |
Where |
NielsBohr |
moments ago |
Oak Ridge, TN, USA |
KlausFuchs |
3 hours ago |
Cupertino, CA, USA |
AlbertEinstein |
1 day ago |
Oak Ridge, TN, USA |
EnricoFermi |
15 days ago |
Los Alamos, TN, USA |
DavidBohm |
2 month ago |
Los Alamos, NM, USA |
|
Plugin Installation & Configuration
Note: You do not need to install anything on the browser to use this plugin. The following instructions are for the administrator who installs the plugin on the TWiki server.
- For an automated installation, run the configure script and follow "Find More Extensions" in the in the Extensions section.
- Or, follow these manual installation steps:
- Download the ZIP file from the Plugins home (see below).
- Unzip
RecentVisitorPlugin.zip in your twiki installation directory. Content: File: | Description: | data/TWiki/RecentVisitorPlugin.txt | Plugin topic | lib/TWiki/Plugins/RecentVisitorPlugin.pm | Plugin Perl module |
- Set the ownership of the extracted directories and files to the webserver user.
- Install the dependencies (if any).
- Plugin configuration and testing:
- Run the configure script and enable the plugin in the Plugins section.
- Configure additional plugin settings in the Extensions section if needed:
$TWiki::cfg{Plugins}{RecentVisitorPlugin}{Debug} = 0; # debug flag, 0 or 1 $TWiki::cfg{Plugins}{RecentVisitorPlugin}{ShowIP} = 0; # show IP address, 0 or 1 $TWiki::cfg{Plugins}{RecentVisitorPlugin}{OnlyAdmins} = 0; # show reports to administrators only, 0 or 1
- Test if the installation was successful: See example above.
Plugin Info
- One line description, is shown in the TextFormattingRules topic:
- Set SHORTDESCRIPTION = Show statistics of recent visitors to the TWiki site
Related Topics: VarRECENTVISITOR, TWikiPlugins, DeveloperDocumentationCategory, AdminDocumentationCategory, TWikiPreferences
META FILEATTACHMENT |
attachment="twiki-logo-80x40-t.gif" attr="h" comment="" date="1296756257" name="twiki-logo-80x40-t.gif" path="twiki-logo-80x40-t.gif" size="1999" user="TWikiContributor" version="1" |
|