Makefile: Correctly exclude htmlize-hack.el from byte-compilation.
[muse-el.git] / contrib / pyblosxom / make-blog
blobebdcd21ca4d45090871e43f4bf732c1792ef1208
1 #!/bin/sh
3 # Author: Michael Olson <http://www.mwolson.org>
5 # License: This file may be used, distributed, and modified without
6 # restriction.
8 # This is a sample script that shows how to update the timestamps
9 # file. Note that you have to run the getstamps.py program in your
10 # source directory, and then move the generated timestamps file to the
11 # directory where your published entries are kept.
13 # Blog entries in Muse format
14 SRC_DIR=/stuff/proj/wiki/blog
16 # Published blog entries
17 DEST_DIR=$PWD/site/blog
19 # Path to the getstamps.py script
20 GETSTAMPS=$PWD/scripts/getstamps.py
22 # Update timestamps for blog
23 (cd $SRC_DIR && python $GETSTAMPS && mv timestamps $DEST_DIR/timestamps)