|
|
| (86 intermediate revisions by 2 users not shown) |
| Line 1: |
Line 1: |
| − | <?
| + | {{svn|http://svn.wikimedia.org/viewvc/mediawiki/trunk/extensions/Livelets}} |
| − | # LiveletsExtension
| |
| − | # - Allows live articles to be transcluded which update automatically on change in a non-polling, fully event-driven way
| |
| − | # - Version 0.1 (2007-03-30)
| |
| − | # - See http://www.mediawiki.org/wiki/Extension:Livelets for installation and usage details
| |
| − | # - Licenced under LGPL (http://www.gnu.org/copyleft/lesser.html)
| |
| − | # - Author: http://www.organicdesign.co.nz/nad
| |
| | | | |
| − | $wgLiveletsMagic = "live"; # the parser-function name for doing live-transclusions
| + | == Notes == |
| − | $wgExtensionFunctions[] = 'wfSetupLivelets';
| + | Add dev notes here, e.g. regarding the SWF live updates |
| − | $wgHooks['LanguageGetMagic'][] = 'wfLiveletsLanguageGetMagic';
| |
| − | | |
| − | class Livelets {
| |
| − | | |
| − | var $version = '0.1, 2007-03-30';
| |
| − | var $magic;
| |
| − | var $args;
| |
| − | var $id = 0;
| |
| − | | |
| − | # Constructor
| |
| − | function Livelets($magic) {
| |
| − | global $wgParser,$wgHooks;
| |
| − | $this->magic = $magic;
| |
| − | $this->args = array();
| |
| − | $wgParser->setFunctionHook($magic,array($this,'functionHook'));
| |
| − | $wgParser->setHook($magic,array($this,'tagHook'));
| |
| − | }
| |
| − | | |
| − | # Remove live container content, store its parameters and convert it to $magic tags
| |
| − | function functionHook(&$parser) {
| |
| − | $magic = $this->magic;
| |
| − | $id = $this->id++;
| |
| − | $args = array();
| |
| − | foreach (func_get_args() as $arg) if (!is_object($arg)) {
| |
| − | if (preg_match('/^(.+?)=(.+)$/',$arg,$match)) $args[$match[1]] = $match[2]; else $args[] = $arg;
| |
| − | }
| |
| − | $this->args[$id] = $args;
| |
| − | return "<$magic>$id</$magic>";
| |
| − | }
| |
| − | | |
| − | # Convert the $magic tags to client-side javascript request code from its stored parameters
| |
| − | function tagHook($id,$argv,&$parser) {
| |
| − | | |
| − | $args = $this->args[$id];
| |
| − | | |
| − | return "";
| |
| − | }
| |
| − | | |
| − | }
| |
| − | | |
| − | # Called from $wgExtensionFunctions array when initialising extensions
| |
| − | function wfSetupLivelets() {
| |
| − | global $wgLivelets,$wgLiveletsMagic;
| |
| − | $wgLivelets = new Livelets($wgLiveletsMagic);
| |
| − | }
| |
| − | | |
| − | # Needed in MediaWiki >1.8.0 for magic word hooks to work properly
| |
| − | function wfLiveletsLanguageGetMagic(&$magicWords,$langCode = 0) {
| |
| − | global $wgLiveletsMagic;
| |
| − | $magicWords[$wgLiveletsMagic] = array(0,$wgLiveletsMagic);
| |
| − | return true;
| |
| − | }
| |
| − | ?>
| |