Ticket #4577 (closed defect: fixed)

Opened 1 year ago

Last modified 1 year ago

Update Incoming Links URI API (Technorati Feeds)

Reported by: g30rg3x Assigned to: markjaquith
Priority: normal Milestone: 2.3
Component: General Version: 2.3
Severity: normal Keywords: has-patch
Cc:

Description

As seen in...
http://sigt.net/archivo/fix-for-incoming-links-from-technorati-in-wordpress.xhtml

Adding diff for branches 2.0, 2.2 and trunk (2.3)...
Propos Armonth

Attachments

2.0.patch (0.5 kB) - added by g30rg3x on 07/03/07 01:24:07.
2.2.patch (0.8 kB) - added by g30rg3x on 07/03/07 01:24:17.
trunk(2.3).patch (0.9 kB) - added by g30rg3x on 07/03/07 01:24:26.
4577-google-trunk.diff (1.4 kB) - added by Otto42 on 07/26/07 22:43:07.
Patch for trunk to use Google instead of Technorati for Incoming Links display

Change History

07/03/07 01:24:07 changed by g30rg3x

  • attachment 2.0.patch added.

07/03/07 01:24:17 changed by g30rg3x

  • attachment 2.2.patch added.

07/03/07 01:24:26 changed by g30rg3x

  • attachment trunk(2.3).patch added.

07/03/07 01:25:13 changed by g30rg3x

  • summary changed from Update Incoming Links URI API (Techonorati Feeds) to Update Incoming Links URI API (Technorati Feeds).

07/03/07 15:07:27 changed by foolswisdom

  • version set to 2.3.
  • milestone set to 2.3 (trunk).

07/04/07 08:05:13 changed by matt

Maybe just switch to Google? (We did this on WP.com about a year ago.)

07/04/07 13:00:40 changed by markjaquith

Using Google on b5media blogs too.

07/04/07 14:20:43 changed by Otto42

I had a patch to do just that (switch to Google) on #4154, but it got -1'd and eventually filters were put in place so a plugin could do it instead.

I still think that using Google Blogsearch is a better solution though. I changed my own site to use it instead of Technorati and the search results it gets are faster and, IMO, better.

07/05/07 06:19:55 changed by g30rg3x

+1 switch to google please :), i prefer google blogsearch rather than techonarati

07/05/07 07:53:20 changed by JeremyVisser

+1 for switching to Google as well.

07/05/07 16:17:13 changed by Otto42

FWIW, this will do switch the incoming links to google blogsearch with a plugin, using the trunk code. The needed filters are in trunk, but not in 2.2.1.

function google_incoming_feed($notused) {
return "http://blogsearch.google.com/blogsearch_feeds?hl=en&scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:".trailingslashit(get_option('home')); 
}
function google_incoming_link($notused) {
return "http://blogsearch.google.com/blogsearch?hl=en&scoring=d&partner=wordpress&q=link:".trailingslashit(get_option('home'));
}
add_filter('dashboard_incoming_links_feed','google_incoming_feed');
add_filter('dashboard_incoming_links_link','google_incoming_link');

07/26/07 22:43:07 changed by Otto42

  • attachment 4577-google-trunk.diff added.

Patch for trunk to use Google instead of Technorati for Incoming Links display

07/26/07 22:44:05 changed by Otto42

Added patch to use Google Blogsearch instead of Technorati for Incoming Links feed, as per matt's suggestion.

Oh, this still gets a +1 from me too. :)

07/30/07 16:29:27 changed by markjaquith

  • owner changed from anonymous to markjaquith.
  • status changed from new to assigned.

Looks like the tide has turned on this. Only considering it for Trunk (2.3) to minimize confusion. Speak now if you have objections (but realize that you can switch it back with a simple plugin).

08/16/07 19:50:10 changed by ryan

I'll throw in my +1.

08/16/07 20:01:16 changed by markjaquith

Re: 4577-google-trunk.diff

Will need to entity-encode ampersands in that second part of the patch.

08/17/07 11:08:00 changed by matt

  • status changed from assigned to closed.
  • resolution set to fixed.

(In [5893]) Switch incoming links to use Google, fixes #4577