diff options
author | ken restivo <ken@restivo.org> | 2015-11-03 21:19:16 -0800 |
---|---|---|
committer | ken restivo <ken@restivo.org> | 2015-11-03 21:19:16 -0800 |
commit | 4bd0e083d16d622c9ed36c810a7fd729830dcdd6 (patch) | |
tree | 34705cd34dde3995bbf827030dc4f7bfcabea23f /util/generate-hooks-index | |
parent | d9c7b39b884511b38ca339d032f4688b86472af1 (diff) | |
download | volse-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.clj | 4 |
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 |