cosmocode/qc

Will break with DokuWiki Index refactoring

Closed this issue · 2 comments

The upcoming refactoring of DokuWiki's index handling in dokuwiki/dokuwiki#2943 will break this plugin.

That being said, what breaks this plugin is requiring inc/fulltext.php directly. This isn't the right way to do things for some time now and refactoring it to use autoloading might allow this plugin to work both with the current stable version of DokuWiki and the upcoming master.

qc/renderer.php

Lines 5 to 6 in f392d45

require_once DOKU_INC.'inc/parser/renderer.php';
require_once DOKU_INC.'inc/fulltext.php';

I saw the location of the renderer changed too, I saw. I made a pull request that updates that ( #42 ) however the fulltext issue will need to be fixed still before this plugin can work again.

The plugin is still broken. How do we add autoloading?