Recent Changes - Search:

Cookbook

PmWiki

pmwiki.org

AutomaticPageRefresh

Summary: How to create pages that refresh automatically.
Version: 2006-09-26
Prerequisites: pmwiki-2.0 (and possibly earlier)
Status: stable
Maintainer:
Categories: Layout

Description

This recipe makes it possible for a page to refresh at set intervals, or by an interval set in a ?refresh=nn addition to a page URL.

Notes

general automatic page refresh

The following will cause a browser to refresh the page every 30 seconds:

if ($action == 'browse')
    $HTMLHeaderFmt['refresh'] =
       "<meta http-equiv='Refresh' Content='30; URL={\$PageUrl}' />";

It can be done sitewide in local/config.php (probably not recommended, because it will work for all pages), or in a per-page or per-group customization file.

refresh markup

Alternatively, set individual page refresh with markup directive.
Example: page refresh every 20 seconds: (:refresh 20:)

# markup (:refresh nn:)
Markup('refresh', '<include',
  '/\\(:refresh\\s+(.*?):\\)/ei',
  "RefreshMarkup(\$pagename, PSS('$1'))");

function RefreshMarkup($pagename, $secs) {
        global $HTMLHeaderFmt;
            $HTMLHeaderFmt['refresh'] =
               "<meta http-equiv='Refresh' Content='$secs; URL={\$PageUrl}' />";
        return '';
}

refresh url parameter

Or, one could use the following customization to add a '?refresh=nn' option to all pages:

if (@$_GET['refresh']) {
   $r = $_GET['refresh'];
   $HTMLHeaderFmt['refresh'] =
     "<meta http-equiv='Refresh' Content='$r; URL={\$PageUrl}?refresh=$r' />";
 }

As a demonstration, this latter version is enabled at: Test.Refresh.

Release Notes

If the recipe has multiple releases, then release notes can be placed here. Note that it's often easier for people to work with "release dates" instead of "version numbers".

Comments

See Also

Contributors

Edit - History - Print - Recent Changes - Search
Page last modified on August 18, 2008, at 12:38 PM