aboutsummaryrefslogtreecommitdiffstats
path: root/util/generate-hooks-index
diff options
context:
space:
mode:
authorken restivo <ken@restivo.org>2015-11-03 21:19:16 -0800
committerken restivo <ken@restivo.org>2015-11-03 21:19:16 -0800
commit4bd0e083d16d622c9ed36c810a7fd729830dcdd6 (patch)
tree34705cd34dde3995bbf827030dc4f7bfcabea23f /util/generate-hooks-index
parentd9c7b39b884511b38ca339d032f4688b86472af1 (diff)
downloadvolse-hubzilla-4bd0e083d16d622c9ed36c810a7fd729830dcdd6.tar.gz
volse-hubzilla-4bd0e083d16d622c9ed36c810a7fd729830dcdd6.tar.bz2
volse-hubzilla-4bd0e083d16d622c9ed36c810a7fd729830dcdd6.zip
Put generated date at end of data.
Diffstat (limited to 'util/generate-hooks-index')
-rw-r--r--util/generate-hooks-index/src/generate_hooks_index/core.clj4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/generate-hooks-index/src/generate_hooks_index/core.clj b/util/generate-hooks-index/src/generate_hooks_index/core.clj
index ac9e72f90..2112647b0 100644
--- a/util/generate-hooks-index/src/generate_hooks_index/core.clj
+++ b/util/generate-hooks-index/src/generate_hooks_index/core.clj
@@ -53,14 +53,14 @@
[path]
[:div
[:h3 "Hooks"]
- [:p "Generated " (-> (java.util.Date.) str)]
[:table
[:tr (map #(vector :td %) ["Function" "Source File" "Arg"])]
(for [{:keys [function arg file]}
(->> path
show-hooks
(sort-by :function))]
- [:tr (map #(vector :td (h/h %)) [function file arg])])]])
+ [:tr (map #(vector :td (h/h %)) [function file arg])])]
+ [:p "Generated " (-> (java.util.Date.) str)]])
(defn make-hook-docs