Permalink free associations

Dave’s new idea: “It uses the fact that URLs in a weblog have structure.”

A permalink is a permanent URL link to an item. A place where you can find it after it has aged and slipped off of the front page. A permalink should be archival.

Manila puts the date directly into the permalink like this:

http://scriptingnews.userland.com/2003/05/20#todaysNewIdea

So from the permalink URL you can deduce the publish date of the item, and sort results in reverse chronological order.

Movable Type puts the post id into the permalink like this:

http://grumet.net/weblog/archives/000051.html

You cannot deduce the publish date from the permalink URL. But you can sort results in reverse chronological order, because the post ids increase with time.

BlogX puts a globally unique identifier (GUID) into the permalink like this:

http://blogs.gotdotnet.com/saraw/PermaLink.aspx/
49899274-4e74-451f-a29c-414c32e39719

You cannot deduce the publish date nor sort the results from the GUID. Note also that the BlogX permalinks enshrine the ASP.NET suffix, .aspx. Cutting edge today perhaps, but five years from now it will be quaint.

8 thoughts on “Permalink free associations”

  1. Are you sure? How is the GUID generated? (recall the brouhaha about Windows UUIDs in objects in word docs and such being sufficiently decodable to extract the ip address of the creator… and timestamps are often used in pseudo-unique values…

    Sure, it isn’t necessarily obvious by inspection, but it might be in there.

    Like

  2. Actually that’s Movable Type default archiving URL format, but it is pretty flexible. You can see date and post title in the url with MT in kottke.org or my site.
    Perhaps they could make this the default on future versions.

    Like

  3. The date-in-the-permalink isn’t a particularly good idea, IMO. I can pre-date an entry for the 20th of next month, reschedule it three days later for the 18th, and then on the 23rd, bump the already published item back to the top of the rotation for the 24th because of an update.

    The only constant through all of that is the entry ID. Dates change, IDs don’t.

    Like

  4. But pre-scheduling posts for publishing defeats the simple “journalling” that is intended in weblogs. Imho, each weblog entry should have a date ID (and entry ID) that is set when it finally goes “live.” So for an entry, the date and the ID should not change for any reason at all. Just post another entry if you intend to “edit” or go deeper into a topic..

    Like

  5. Yes, thanks, I see now that the URL format customizable. Does changing now have a cost, or is MT smart enough to preserve the old format for old posts (so as not to break the permalinks), while compiling the new URLs with the new format?

    Like

  6. Permalinks should
    [1] be readable with the lowest order of technology – so rep. the date.
    [2] be sortable little-endian.
    [3] span deployment in a unified directory or multiplicity of directories – a permalink should not step on a brother permalink if moved.
    [4] unique ID a hash of the date or hash of signed time from a CA – in case you need confirmable time – like if you were a broker with a blog – talk about a compliance headache.
    [5]the permalink style should have a schema in case you need to change it. not just a format.
    [5b] integrate with vCalendar/iCalendar format – XSLT?

    Like

  7. Andrew, MT will leave all existing pages where they are, and build new ones in the place you tell it to. For instance, I have this in my Monthly Archiving:

    <$MTArchiveDate format=”%Y/%m/index.php”$>

    Any rebuilt pages will know where to link. If you do a rebuild of all the pages, all pages will point to the new pages. The old pages will remain, as MT doesn’t delete pages that it builds. This way incoming links will not die.

    Like

Comments are closed.