From 34deb2a47612da45b9766bb06d5c0c29996fb96a Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Wed, 20 May 2015 23:39:06 -0400 Subject: [PATCH] :Thought ordering on papers page --- docs/papers/thoughts/{288c90d => 10_c9a9837} | 0 docs/papers/thoughts/{2ae3e94 => 20_736092b} | 0 docs/papers/thoughts/{3c37140 => 30_288c90d} | 0 docs/papers/thoughts/{3fa69da => 40_2ae3e94} | 0 docs/papers/thoughts/{736092b => 50_3c37140} | 0 docs/papers/thoughts/{c9a9837 => 60_3fa69da} | 0 tools/doclist | 4 ++-- 7 files changed, 2 insertions(+), 2 deletions(-) rename docs/papers/thoughts/{288c90d => 10_c9a9837} (100%) rename docs/papers/thoughts/{2ae3e94 => 20_736092b} (100%) rename docs/papers/thoughts/{3c37140 => 30_288c90d} (100%) rename docs/papers/thoughts/{3fa69da => 40_2ae3e94} (100%) rename docs/papers/thoughts/{736092b => 50_3c37140} (100%) rename docs/papers/thoughts/{c9a9837 => 60_3fa69da} (100%) diff --git a/docs/papers/thoughts/288c90d b/docs/papers/thoughts/10_c9a9837 similarity index 100% rename from docs/papers/thoughts/288c90d rename to docs/papers/thoughts/10_c9a9837 diff --git a/docs/papers/thoughts/2ae3e94 b/docs/papers/thoughts/20_736092b similarity index 100% rename from docs/papers/thoughts/2ae3e94 rename to docs/papers/thoughts/20_736092b diff --git a/docs/papers/thoughts/3c37140 b/docs/papers/thoughts/30_288c90d similarity index 100% rename from docs/papers/thoughts/3c37140 rename to docs/papers/thoughts/30_288c90d diff --git a/docs/papers/thoughts/3fa69da b/docs/papers/thoughts/40_2ae3e94 similarity index 100% rename from docs/papers/thoughts/3fa69da rename to docs/papers/thoughts/40_2ae3e94 diff --git a/docs/papers/thoughts/736092b b/docs/papers/thoughts/50_3c37140 similarity index 100% rename from docs/papers/thoughts/736092b rename to docs/papers/thoughts/50_3c37140 diff --git a/docs/papers/thoughts/c9a9837 b/docs/papers/thoughts/60_3fa69da similarity index 100% rename from docs/papers/thoughts/c9a9837 rename to docs/papers/thoughts/60_3fa69da diff --git a/tools/doclist b/tools/doclist index d94da7f..b24843b 100755 --- a/tools/doclist +++ b/tools/doclist @@ -2,7 +2,7 @@ # # Generates HTML fragment for document list # -# Copyright (C) 2013 Mike Gerwitz +# Copyright (C) 2013, 2015 Mike Gerwitz # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -50,7 +50,7 @@ echo '
    ' # TODO: use hashcache abstraction via repo2html...file format could change # TODO: would be useful to sort on subject for c in docs/papers/thoughts/*; do - grep "^${c##*/}" .hashcache \ + grep "^${c##*/*_}" .hashcache \ | head -n1 \ | { read h u t && printf '
  1. %s
  2. \n' "$u" "$t"; } done