Extension talk:Page Object Model

From MediaWiki.org
Jump to: navigation, search

[edit] Comparison between MediaWiki's DOM Processor

So how is the functionality different between this extension and MediaWiki's built-in DOM preprocessor? —Sledged (talk) 02:23, 10 September 2009 (UTC)

[edit] No extension credits included

Hi Sergey, is there a reason why you have not included extension credits into the php-file? I think you should. Cheers --kgh 20:48, 17 October 2009 (UTC)

[edit] PROBLEM

In Template.php (svn Revision 85115) on line 24, the strpos function needs the "===" (triple) operator to get valid results (see specification of strpos). The whole part should be:

        if (strpos(trim($first_part), "#") === 0) { //it is neccessary to use "===". See specification of strpos
            if (strpos($first_part, ":") !== False) {
                $splitted = explode(':', $first_part, 2);
                if (count($splitted) == 2) {
                    $first_part = $splitted[0];
                    array_unshift($parts, $splitted[1]);
                }
            }
        }
Personal tools
Namespaces

Variants
Actions
Navigation
Support
Download
Development
Communication
Print/export
Toolbox