i hope this is the right forum...

The "service link" module is great, but it misses two important features:

1) Netscape isn't supported at all

2) For technorati it only has the feature "search on technorati" AND NOT "add to technorati favs"

Quick hack:

Load the service_links.module file and look for "technorati", in the
function service_links_render($node, $nodelink = FALSE)
and replace the appropriate existing technorati section with

---

if (variable_get('service_links_show_technorati', 0)) {
$links['service_links_technorati'] = theme('service_links_build_link', t('Technorati'), "http://technorati.com/faves?add=$url", t('Bookmark this post on Technorati.com.'), 'technorati.png', $nodelink);

---

Note how i changed this so it ADDS a post to technorati favs instead of looking for one on technorati (which is worthless imho)

ADD *** Netscape support: Just add this in the same function:

--

$links['service_links_netscape'] = theme('service_links_build_link', t('Netscape'), "http://www.netscape.com/submit?U=$url&T=$title", t('Add this post to Netscape.com.'), 'netscape1.png', $nodelink);

--

(I downloaded the image from http://my.netscape.com/ from netscape, and i made a 16x16 size PNG with Paintshop and uploaded it to my server in the service_links module folder, named netscape1.png)

Georg