'[pagename]', // just for a single page. 'withlinks' => 0, 'noheader' => false, 'exclude_from' => _("PgsrcTranslation").','._("InterWikiMap"), 'limit' => '100', 'paging' => 'auto')); } // info arg allows multiple columns // info=mtime,hits,summary,version,author,locked,minor,markup or all // exclude arg allows multiple pagenames exclude=HomePage,RecentChanges function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); if (!empty($args['exclude_from'])) $args['exclude_from'] = is_string($args['exclude_from']) ? explodePageList($args['exclude_from']) : $args['exclude_from']; // extract($args); if ($page == _("WantedPages")) $page = ""; // There's probably a more memory-efficient way to do this (eg // a tailored SQL query via the backend, but this gets the job // done. // TODO: Move this to backend/dumb/WantedPagesIter.php if (!$page and $withlinks) { $GLOBALS['WikiTheme']->addPageListColumn( array('wanted' => array('_PageList_Column_WantedPages_wanted', 'custom:wanted', _("Wanted From"), 'left'))); $info = "pagename,wanted"; } elseif ($page) { //only get WantedPages links for one page $info = ""; } else { // just link to links $GLOBALS['WikiTheme']->addPageListColumn( array('links' => array('_PageList_Column_WantedPages_links', 'custom:links', _("Links"), 'left'))); $info = "pagename,links"; } $pagelist = new PageList($info, $exclude, $args); // search button? $pagelist->_wpagelist = array(); if (!$page) { list($offset, $maxcount) = $pagelist->limit($limit); $wanted_iter = $dbi->wantedPages($exclude_from, $exclude, $sortby, $limit); while ($row = $wanted_iter->next()) { $wanted = $row['pagename']; $wantedfrom = $row['wantedfrom']; // ignore duplicates: if (empty($pagelist->_wpagelist[$wanted])) $pagelist->addPage($wanted); if (!isset($pagelist->_wpagelist[$wanted])) $pagelist->_wpagelist[$wanted][] = $wantedfrom; elseif (!in_array($wantedfrom, $pagelist->_wpagelist[$wanted])) $pagelist->_wpagelist[$wanted][] = $wantedfrom; } $wanted_iter->free(); unset($wanted_iter); // update limit, but it's still a hack. $pagelist->_options['limit'] = "$offset," . min($pagelist->getTotal(), $maxcount); } elseif ($dbi->isWikiPage($page)) { //only get WantedPages links for one page $page_handle = $dbi->getPage($page); $links = $page_handle->getPageLinks(true); // include_empty while ($link_handle = $links->next()) { if (! $dbi->isWikiPage($linkname = $link_handle->getName())) { $pagelist->addPage($linkname); //if (!array_key_exists($linkname, $this->_wpagelist)) $pagelist->_wpagelist[$linkname][] = 1; } } } /* if ($sortby) { ksort($this->_wpagelist); arsort($this->_wpagelist); }*/ if (!$noheader) { if ($page) $pagelist->setCaption(sprintf(_("Wanted Pages for %s:"), $page)); else $pagelist->setCaption(sprintf(_("Wanted Pages in this wiki:"))); } // reference obviously doesn't work, so force an update to add _wpagelist to parentobj if (isset($pagelist->_columns[1]) and in_array($pagelist->_columns[1]->_field, array('wanted','links'))) $pagelist->_columns[1]->parentobj =& $pagelist; return $pagelist; } }; // which links to the missing page class _PageList_Column_WantedPages_wanted extends _PageList_Column { function _PageList_Column_WantedPages_wanted (&$params) { $this->parentobj =& $params[3]; $this->_PageList_Column($params[0],$params[1],$params[2]); } function _getValue(&$page, $revision_handle) { $html = false; $pagename = $page->getName(); foreach ($this->parentobj->_wpagelist[$pagename] as $page) { if ($html) $html->pushContent(', ', WikiLink($page)); else $html = HTML(WikiLink($page)); } return $html; } } /* * List of Links and link to ListLinks */ class _PageList_Column_WantedPages_links extends _PageList_Column { function _PageList_Column_WantedPages_links (&$params) { $this->parentobj =& $params[3]; $this->_PageList_Column($params[0],$params[1],$params[2]); } function _getValue(&$page, $revision_handle) { $html = false; $pagename = $page->getName(); $count = count($this->parentobj->_wpagelist[$pagename]); return LinkURL(WikiURL($page, array('action' => 'BackLinks'), false), fmt("(%d Links)", $count)); } } // $Log: not supported by cvs2svn $ // Revision 1.16 2004/11/23 15:17:19 rurban // better support for case_exact search (not caseexact for consistency), // plugin args simplification: // handle and explode exclude and pages argument in WikiPlugin::getArgs // and exclude in advance (at the sql level if possible) // handle sortby and limit from request override in WikiPlugin::getArgs // ListSubpages: renamed pages to maxpages // // Revision 1.15 2004/11/23 13:35:49 rurban // add case_exact search // // Revision 1.14 2004/11/20 17:35:58 rurban // improved WantedPages SQL backends // PageList::sortby new 3rd arg valid_fields (override db fields) // WantedPages sql pager inexact for performance reasons: // assume 3 wantedfrom per page, to be correct, no getTotal() // support exclude argument for get_all_pages, new _sql_set() // // Revision 1.13 2004/11/20 11:28:49 rurban // fix a yet unused PageList customPageListColumns bug (merge class not decl to _types) // change WantedPages to use PageList // change WantedPages to print the list of referenced pages, not just the count. // the old version was renamed to WantedPagesOld // fix and add handling of most standard PageList arguments (limit, exclude, ...) // TODO: pagename sorting, dumb/WantedPagesIter and SQL optimization // // Revision 1.12 2004/10/04 23:39:34 rurban // just aesthetics // // Revision 1.11 2004/04/20 00:56:00 rurban // more paging support and paging fix for shorter lists // // Revision 1.10 2004/04/18 01:44:02 rurban // more sortby+limit support // // Revision 1.9 2004/04/10 04:15:06 rurban // sf.net 927122 Suggestion // // Revision 1.8 2004/02/17 12:11:36 rurban // added missing 4th basepage arg at plugin->run() to almost all plugins. This caused no harm so far, because it was silently dropped on normal usage. However on plugin internal ->run invocations it failed. (InterWikiSearch, IncludeSiteMap, ...) // // Revision 1.7 2003/12/19 06:57:49 carstenklapp // Bugfix: Enclose FullTextSearch query with quotes when the [Wiki Word] // contains spaces. // // Revision 1.6 2003/11/19 17:08:23 carstenklapp // New feature: Clicking on the number of citations in the links column // now does a FullTextSearch for the WantedPage link! // // Revision 1.5 2003/03/25 21:05:27 dairiki // Ensure pagenames are strings. // // Revision 1.4 2003/01/18 22:14:24 carstenklapp // Code cleanup: // Reformatting & tabs to spaces; // Added copyleft, getVersion, getDescription, rcs_id. // // Local Variables: // mode: php // tab-width: 8 // c-basic-offset: 4 // c-hanging-comment-ender-p: nil // indent-tabs-mode: nil // End: ?>