kellan / revcanonical
- Source
- Commits
- Network (3)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
kellan (author)
Wed Apr 15 09:40:49 -0700 2009
| name | age | message | |
|---|---|---|---|
| |
README | ||
| |
app.yaml | ||
| |
index.html | ||
| |
index.yaml | ||
| |
main.py |
README
Huh?
RevCanonical is url shortening with a twist. Instead of creating its own super short versions of links, it checks to see
if the link owner has published a shortened version of the given page using HTML link element. If not, we just return
the original URL. And you should bug the link owner about providing a better alternative.
Why?
URL shorteners are as problematic as they are useful. They create SPOFs, that over any meaningful timeframe are
guaranteed to create data loss, eroding the historical record. And then there are the privacy concerns. And the
usability ones. See also on url shorteners and Solving the TinyUrl centralization problem.
Details?
RevCanonical searches the referenced resource for:
* <link rev="canonical" href="..."> (i.e. "I am the canonical URL of that page over there")
* <link rel="alternate shorter" href="..."> (or truth be told any link rel including the string "alternate short*")
There is also an API version, which returns just the resulting URL.
See also the blog: http://revcanonical.wordpress.com/
!! This code is on github, so it's implicitly somewhat open. Unfortunately it's rediculously unclear what terms you can
use/modify this under. An explicit license and COPYING file should be applied.

