By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 750
Collapse All | Expand All

(-)akregator_part.cpp (-4 / +28 lines)
Lines 362-371 Link Here
362
    mainFolder.setAttribute("text","TDE");
362
    mainFolder.setAttribute("text","TDE");
363
    body.appendChild(mainFolder);
363
    body.appendChild(mainFolder);
364
364
365
    TQDomElement ak = doc.createElement( "outline" );
365
    TQDomElement tde = doc.createElement( "outline" );
366
    ak.setAttribute("text",i18n("Trinity Desktop News"));
366
    tde.setAttribute("text",i18n("Trinity Desktop News"));
367
    ak.setAttribute("xmlUrl","http://trinitydesktop.org/rss.php");
367
    tde.setAttribute("xmlUrl","http://trinitydesktop.org/rss.php");
368
    mainFolder.appendChild(ak);
368
    mainFolder.appendChild(tde);
369
370
    TQDomElement mainFolder = doc.createElement( "outline" );
371
    mainFolder.setAttribute("text","Free/Libre Software News");
372
    body.appendChild(mainFolder);
373
374
    TQDomElement lxer = doc.createElement( "outline" );
375
    lxer.setAttribute("text",i18n("LXer Linux News"));
376
    lxer.setAttribute("xmlUrl","http://lxer.com/module/newswire/headlines.rss");
377
    mainFolder.appendChild(lxer);
378
379
    TQDomElement tux = doc.createElement( "outline" );
380
    tux.setAttribute("text",i18n("Tuxmachines"));
381
    tux.setAttribute("xmlUrl","http://www.tuxmachines.org/node/feed");
382
    mainFolder.appendChild(tux);
383
384
    TQDomElement lwn = doc.createElement( "outline" );
385
    lwn.setAttribute("text",i18n("lwn.net"));
386
    lwn.setAttribute("xmlUrl","http://lwn.net/headlines/rss");
387
    mainFolder.appendChild(lwn);
388
389
    TQDomElement hlin = doc.createElement( "outline" );
390
    hlin.setAttribute("text",i18n("H-Online"));
391
    hlin.setAttribute("xmlUrl","http://www.h-online.com/grand-atom.xml");
392
    mainFolder.appendChild(hlin);
369
393
370
    return doc;
394
    return doc;
371
}
395
}

Return to bug 750