Tags:
create new tag
, view all tags

Question

How would I be able to extract data from WebStatistics (only the 'Topic Views' section of the table) using a regex in TWiki?

Environment

TWiki version: TWikiRelease01Dec2001
TWiki plugins: DefaultPlugin, EmptyPlugin, InterwikiPlugin
Server OS: Debian Linux 2.4.18-686-smp
Web server: Apache
Perl version: perl, v5.8.3
Client OS: MS Windows 2K SP4
Web Browser: Internet Explorer, Mozilla Firefox

-- VivekDelhikar - 18 Feb 2004

Answer

Ok... I've figured it out, the regex would look like:

%INCLUDE{"%STATISTICSTOPIC%" pattern=".*?\-\-statTopContributors\-\-\>[^\|]+\|[^\|]+\|[^\|]+\|[^\|]+\|[^\|]+\|[^\|]+(\|[^\|]+\|[^\|]+\|).*"}%

However, how would I be able to exclude topics such as WebHome using the regex I've got above?

-- VivekDelhikar - 19 Feb 2004

Write this to get the all topics:

%INCLUDE{"%STATISTICSTOPIC%" pattern=".*?\-\-statTopContributors\-\-\>[^\r\n]+[\r\n]+\|[^\|]+\|[^\|]+\|[^\|]+\|[^\|]+([^\r\n]+).*"}%

This renders as:

4193 WebHome
2848 SupportForumMaintenance
297 WebSearch
267 LdapAuthenticationHowTo
257 SID-00106
226 AuthenticationWithApacheAndLDAP
221 IncludeVerbatim
211 SupportGuidelines
199 WebNotify
161 InstallDigestSHA1Fails
 26 PeterThoeny
 10 KarthikB
  5 MitchKutzko
  2 EddieBrettingham
  2 AjayYadav
  2 DomenikaStoiser
  1 ArunachalamMallikarjunan
  1 PaoloGallo
  1 TWikiGuest
  1 MarkMortimore

You can skip anything up to and including WebHome. Notice that this regex is kind of flaky, it assumes that the WebHome topic is there and that anything more popular is noise:

|%INCLUDE{"%STATISTICSTOPIC%" pattern=".*?\-\-statTopContributors\-\-\>[^\r\n]+[\r\n]+.*?WebHome[^0-9]*([^\r\n]+).*"}%

This renders as:

2848 SupportForumMaintenance
297 WebSearch
267 LdapAuthenticationHowTo
257 SID-00106
226 AuthenticationWithApacheAndLDAP
221 IncludeVerbatim
211 SupportGuidelines
199 WebNotify
161 InstallDigestSHA1Fails
 26 PeterThoeny
 10 KarthikB
  5 MitchKutzko
  2 EddieBrettingham
  2 AjayYadav
  2 DomenikaStoiser
  1 ArunachalamMallikarjunan
  1 PaoloGallo
  1 TWikiGuest
  1 MarkMortimore

-- PeterThoeny - 05 May 2004

Topic revision: r3 - 2004-05-05 - PeterThoeny
 
Twitter Delicious Facebook Digg Google Bookmarks E-mail LinkedIn Reddit StumbleUpon    
  • Download TWiki
TWiki logo Powered by Perl Hosted by OICcam.com Ideas, requests, problems regarding TWiki? Send feedback. Ask community in the support forum.
Copyright © 1999-2012 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.