2
Slowly, slowly... Ok, this is ugly and very very crude, but I can't do better (yet?)... hopefully someone with the skills will get interested

In the XooPSHeadline .sql file, I added Quote:
headline_arch mediumtext NOT NULL default '',
FULLTEXT KEY `search` (`headline_arch`)
Inside class XoopsheadlineHeadline, function XoopsheadlineHeadline() Quote:
$this->initVar('headline_arch', XOBJ_DTYPE_SOURCE, null, false);
Added a "var $_arch;" in class XoopsHeadlineRenderer and a "$this->_arch = $items;" in it's function renderFeed. Down there, I added a Quote:
function &getArch()
{
return $this->_arch;
}
to retrieve just the items for a channel. Now I'll try to figure out how to get $_arch appended to the "headline_arch" field, then what is needed to make it searchable, then... hmmm... parsing headline_arch to display. Oh, and I have to figure out when or where getArch() is called. What a mess