Entries Tagged as 'scuttle'

updated scuttle extension for firefox 3.0

find here a updated version for firefox3: download

steps to recreate a version by yourself:
* download official xpi
* unzip
* edit maxVersion in file install.rdf to 3.0.0.*
* zip

firefox extensions ausgetrickst

manchmal möchte man auf eine neue firefox version updaten, stellt aber fest, dass die installierten und vielbenutzten extensions noch nicht kompatibel sind. zumindestens geben sie es vor, häufig funktionieren sie nämlich ganz prächtig. in diesem freesoftwaremagazin-beitrag wird erklärt, wie man mit ein paar simplen änderungen zum ziel kommt: einfach die maxVersion einträge anpassen. nun tun es scuttle und zotero wieder wunderbar bei mir mit ff3.0beta.
via: fsdaily

Experiment: Hack the Flock browser to support Scuttle

Note: this is dangerous. you could loose all your data! and not all features are working!

Flock is a nice browser but only supports del.icio.us and shadows as social bookmarking sites. Since Scuttle offers more or less the same web-api as del.icio.us it should be possible to use it as a replacement when we just hack a different hostname into the Flock. Should. But let’s have a look:

Prepare yourself. Install Scuttle on your webserver or use scuttle.org as your service (not recommended, it’s just a demo of scuttle). Install Flock. Backup all your data. Register at your prefered scuttle-site.

Find the file flockFavoritesWebServiceDelicious.js of your Flock installation. Patch it like this:

centia:/Applications/Flock.app/Contents/MacOS/components sk$ diff flockFavoritesWebServiceDelicious.js flockFavoritesWebServiceDelicious.js.orig
77,80c77,80
< const DELICIOUS_PROT = 'http'
< const DELICIOUS_HOST = 'my.scuttle.url';
< const DELICIOUS_PORT = 80;
< const DELICIOUS_PATH = '/api/';
---
> const DELICIOUS_PROT = 'https'
> const DELICIOUS_HOST = 'api.del.icio.us';
> const DELICIOUS_PORT = 443;
> const DELICIOUS_PATH = '/v1/';
204c204
< zeropad (d.getUTCDate (), 2) + ' ' +
---
> zeropad (d.getUTCDate (), 2) + 'T' +
207c207
< zeropad (d.getUTCSeconds (), 2)
---
> zeropad (d.getUTCSeconds (), 2) + 'Z'

The first code change is for the different URL. The function isoDate needs to be tweaked because scuttle is not API-conform (ISO8601), it just needs a date which goes through php’s strtodate function. so, no „T“ and no „Z“ are allowed.

What works?

  • posting of bookmarks
  • tagging

What doesn’t work:

  • registering within Flock’s Preferences
  • editing of bookmarks (scuttle do not support replaces)
  • adding new tags to existing bookmarks

Comments welcome.

del.icio.us bookmark auf del.icio.us-clone


So sieht es aus, wenn ein von einem Internetkonzern geschluckter Social-Bookmarking-Service von seinen Benutzern benutzt wird, um den Dienst selber überflüssig zu machen. Das ist ungefähr so, als würde man auf dem ungeliebten Haustier zum Viehhändler reiten, wo man sich das neue Lieblingstier abholt. Ungefähr. Man beachte den Ausschlag der Graphen der Tags „opensource“ und „scuttle“. Die Leute schauen sich also nach Alternativen um. Das ist zwar schön, löst aber nicht das Problem, dass die del.icio.us Community fragmentieren wird, ohne dass es bisher umfassende Web 2.0 Mechanismen gibt, die Tags miteinander verlinken. Sozusagen Social-Tagging über die Grenzen der einzelnen Dienstanbieter hinweg. Technorati.com kann da nur ein Anfang sein.
Mal schauen, wohin ich umziehen werde.