3 # This is a simple script that will produce my blog on repo.or.cz
5 # The idea is to have source-<timestamp>.txt files as input, having the
6 # stories, and this script turning them into nice HTML, committing
7 # everything, and then pushing it to my repository.
9 # The blog will then be served using gitweb.
11 # To make it easier on me, if a file "source.txt" exists, it is
12 # automatically renamed using the current timestamp.
14 # TODO: generate an RSS feed, too
15 # TODO: have a configurable maximum number of entries per page, and links
18 # make sure we're in the correct working directory
21 GITWEBURL
="$(git config gitweb.url)"
22 test -z "$GITWEBURL" && {
23 echo "Please set gitweb.url in the Git config first!" >&2
27 URLPREFIX
="$(dirname "$GITWEBURL")"/
28 REMOTEREPOSITORY
="$(basename "$GITWEBURL")"
30 URL
="$REMOTEREPOSITORY?a=blob_plain;hb=$BRANCH;f="
39 move_new_entry_back
() {
40 test -f source-
$now.txt
&&
41 mv source-
$now.txt
$NEW &&
42 git
rm --cached -f source-
$now.txt
52 # add illogical suffix
54 *1?|
*[04-9]) echo "$1th";;
61 make_chinese_hour
() {
92 make_roman_number
() {
95 ?
) digit_to_roman
$1 I V X
;;
96 ??
) echo $
(digit_to_roman
${1%?} X L C
)$
(make_roman_number
${1#?});;
97 ???
) echo $
(digit_to_roman
${1%??} C D M
)$
(make_roman_number
${1#?});;
98 ????
) echo $
(digit_to_roman
${1%???} M
)$
(make_roman_number
${1#?});;
103 printf "%s, %s of %s, Anno Domini %s, at the hour of the %s\n" \
105 $
(nth $
(date +%e
-d @
$1)) \
107 $
(make_roman_number $
(date +%Y
-d @
$1)) \
108 $
(make_chinese_hour $
(date +%H
-d @
$1))
111 # make an argument for sed, to replace $1..$1 by <$2>..</$2>
112 markup_substitution
() {
114 ?
) echo "s/$1\\([^$1]*\\)$1/<$2>\\\\1<\/$2>/g";;
117 tmp2
="\\|${1%?}[^${1#?}]$tmp"
118 tmp3
="\\($tmp\\($tmp2\\($tmp2\\($tmp2\\)\\)\\)\\)"
119 echo "s/$1$tmp3$1/<$2>\\\\1<\/$2>/g"
124 # transform markup in stdin to HTML
126 image_pattern
="\\[\\[Image:\([^]]*\)"
127 image_pattern2
="$image_pattern\(\\|[^\]]*\)\?\]\]"
128 sed -e 's!^$!</p><p>!' \
129 -e 's!IMHO!in my humble opinion!g' \
130 -e 's!BTW!By the way,!g' \
131 -e 's!repo.or.cz!<a href=http://&>&</a>!g' \
132 -e 's!:-)!\☺!g' \
133 -e "s!$image_pattern2!<center><img src=$URL\1></center>!g" \
135 border=1 bgcolor=black style="color:#ffffff;">\
136 <tr><td bgcolor=lightblue colspan=3>\
140 <table cellspacing=5 border=0>\
143 -e 's!</bash>! </pre>\
148 -e "$(markup_substitution "''" i)" \
149 -e "$(markup_substitution "_
" u)"
154 body_style
="width:800px"
155 body_style
="$body_style;background-image:url(${URL}paper.jpg)"
156 body_style
="$body_style;background-repeat:repeat-y"
157 body_style
="$body_style;background-attachment:scroll"
158 body_style
="$body_style;padding:0px;"
159 text_style
="width:610px"
160 text_style
="$text_style;margin-left:120px"
161 text_style
="$text_style;align:left"
162 text_style
="$text_style;vertical-align:top;"
166 <title>$TITLE</title>
167 <meta http-equiv="Content-Type"
168 content="text/html; charset=UTF-8"/>
170 <body style="$body_style">
171 <div style="$text_style">
178 toc_style
="position:absolute;top:50px;left:810px;width=$toc_width"
180 echo "<div style=\"$toc_style\">"
181 echo "<table width=$toc_width bgcolor=#e0e0e0 border=1>"
182 echo "<tr><th>Table of contents:</th></tr>"
185 for file in $
(ls -r source-
*.txt
)
187 basename=${file%.txt}
188 timestamp
=${basename#source-}
189 date="$(date +"%d
%b
%Y
" -d @$timestamp)"
190 title
="$(sed 1q < $file | markup)"
191 echo "<li><a href=#$timestamp>$date $title</a>"
194 echo '</td></tr></table>'
195 test -f links.html
&& {
197 echo "<table width=$toc_width bgcolor=#e0e0e0 border=1>"
198 echo "<tr><th>Links:</th></tr>"
201 echo "</td></tr></table>"
204 } |
sed -s "s/^/$indent/"
207 # timestamps will not need padding to sort correctly, for some time...
208 for file in $
(ls -r source-
*.txt
)
210 basename=${file%.txt}
211 timestamp
=${basename#source-}
212 echo "<h6>$(make_date $timestamp)</h6>"
213 echo "<a name=$timestamp>"
214 echo "<h2>$(sed 1q < $file | markup)</h2>"
217 sed 1d
< $file | markup
220 sed -e "s/^./$indent&/" \
221 -e "/<pre>/,/<\/pre>/s/^$indent//"
230 # never, ever have spaces in the file names
231 commit_new_images
() {
233 for image
in $
(cat source-
* |
235 sed -n 's/.*\[\[Image://p' |
239 git add
$image || die
"Could not git add image $image"
240 images
="$images $image"
243 git update-index
--refresh &&
244 git diff-files
--quiet -- $images &&
245 git
diff --cached --quiet HEAD
-- $images ||
246 git commit
-s -m "Commit some images on $(make_date $now)" $images
250 # parse command line option
252 *dry
*) DRYRUN
=1; shift;;
253 *show
*) firefox
"$(pwd)"/$TEST; exit;;
254 *remote
*) firefox
$URLPREFIX$URL$OUTPUT; exit;;
258 die
"Usage: $0 [--dry-run]"
260 # make sure we're on the correct branch
261 test refs
/heads
/$BRANCH = $
(git symbolic-ref HEAD
) ||
262 die
"Not on branch $BRANCH"
264 # make sure there are no uncommitted changes
265 git update-index
--refresh &&
266 git diff-files
--quiet ||
267 die
"Have unstaged changes!"
269 # rename the new blog entry if it exists
272 mv -i $NEW source-
$now.txt
&&
273 git add source-
$now.txt
275 die
"Could not rename source.txt"
277 # commit the images that are referenced and not yet committed
278 test ! -z "$DRYRUN" ||
280 die
"Could not commit new images"
282 # to find the images reliably, we have to use the commit name, not the branch
283 # we use the latest commit touching an image file.
284 IMAGEFILES
="$(git ls-files |
285 grep -v '\.\(html\|gitignore\|in\|sh\|txt\)$')"
286 REV
=$
(git rev-list
-1 HEAD
-- $IMAGEFILES)
287 test -z "$REV" && REV
=$BRANCH
288 URL
="$REMOTEREPOSITORY?a=blob_plain;hb=$REV;f="
290 if test ! -z "$DRYRUN"
292 # Output to test.html and have local links into the current directory
297 make_html
> $OUTPUT || die
"Could not write $OUTPUT"
299 test ! -z "$DRYRUN" && {
305 git commit
-s -m "Update $(make_date $now)" &&
306 git push origin
+$BRANCH