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 "new" exists, it is automatically
12 # renamed using the current timestamp.
20 # Then symlink or copy this file (upload.sh); you can track it or add it
21 # to .gitignore, does not matter.
23 # Add a remote "origin" (you might want to track only the appropriate branch
24 # if the repository contains other branches, too), add a background image,
25 # and then set the config variables gitweb.url, blog.title, blog.background
26 # and blog.branch appropriately.
30 # $ git remote add -t blog repo.or.cz:/srv/git/git/dscho.git/
31 # $ git symbolic-ref HEAD refs/heads/blog
32 # $ cp ~/images/background.jpg ./
33 # $ git config gitweb.url http://repo.or.cz/w/git/dscho.git
34 # $ git config blog.title "Dscho's blog"
35 # $ git config blog.background background.jpg
36 # $ git config blog.branch blog
38 # Now you can start writing posts, by creating a file called "new", and
39 # calling ./upload.sh to commit the post together with the images and
42 # Note that no file names may contain spaces.
44 # TODO: document the "syntax" of the source-*.txt files
47 # make sure we're in the correct working directory
50 GITWEBURL
="$(git config gitweb.url)"
51 test -z "$GITWEBURL" && {
52 echo "Please set gitweb.url in the Git config first!" >&2
57 value
=$
(git config blog.
$1)
58 test -z "$value" && value
=$2
62 BACKGROUNDIMG
=$
(get_config background paper.jpg
)
63 TITLE
=$
(get_config title
"Dscho's blog")
64 MAXENTRIES
=$
(get_config maxPostsPerPage
10)
65 BRANCH
=$
(get_config branch blog
)
67 URLPREFIX
="$(dirname "$GITWEBURL")"/
68 REMOTEREPOSITORY
="$(basename "$GITWEBURL")"
70 *'?'*) BLOBPLAIN
="$REMOTEREPOSITORY;a=blob_plain";;
71 */) URLPREFIX
=$GITWEBURL; BLOBPLAIN
="a=blob_plain";;
72 *) BLOBPLAIN
="$REMOTEREPOSITORY?a=blob_plain";;
74 URL
="$BLOBPLAIN;hb=$BRANCH;f="
85 move_new_entry_back
() {
86 test -f source-
$now.txt
&&
87 mv source-
$now.txt
$NEW &&
88 git
rm --cached -f source-
$now.txt
102 strip_prefix
"${1%$3}" "$2"
106 # add illogical suffix
108 *1?|
*[04-9]) echo "$1th";;
115 make_chinese_hour
() {
118 01|
02) echo Buffalo
;;
126 17|
18) echo Rooster
;;
146 make_roman_number
() {
149 ?
) digit_to_roman
$1 I V X
;;
150 ??
) echo $
(digit_to_roman
${1%?} X L C
)$
(make_roman_number
${1#?});;
151 ???
) echo $
(digit_to_roman
${1%??} C D M
)$
(make_roman_number
${1#?});;
152 ????
) echo $
(digit_to_roman
${1%???} M
)$
(make_roman_number
${1#?});;
157 printf "%s, %s of %s, Anno Domini %s, at the hour of the %s\n" \
159 $
(nth $
(date +%e
-d @
$1)) \
161 $
(make_roman_number $
(date +%Y
-d @
$1)) \
162 $
(make_chinese_hour $
(date +%H
-d @
$1))
165 # make an argument for sed, to replace $1..$1 by <$2>..</$2>
166 markup_substitution
() {
168 ?
) echo "s/$1\\([^$1]*\\)$1/<$2>\\\\1<\/$2>/g";;
171 tmp2
="\\|${1%?}[^${1#?}]$tmp"
172 tmp3
="\\($tmp\\($tmp2\\($tmp2\\($tmp2\\)\\)\\)\\)"
173 echo "s/$1$tmp3$1/<$2>\\\\1<\/$2>/g"
179 space80
="$space80$space80$space80$space80$space80$space80$space80$space80"
180 # transform markup in stdin to HTML
183 *invert-bash
*) bash_bg
=white
; bash_fg
=black
;;
184 *) bash_bg
=black
; bash_fg
=white
;;
186 sed -e 's!^$!</p><p>!' \
187 -e "$(markup_substitution "''" i)" \
188 -e "$(markup_substitution "_
" u)" \
189 -e 's!IMHO!in my humble opinion!g' \
190 -e 's!BTW!By the way,!g' \
191 -e 's!repo.or.cz!<a href=http://&>&</a>!g' \
192 -e 's!:-)!\☺!g' \
193 -e "s!\\[\\[\(Image\|SVG\):.*!$THIS handle &!e" \
195 border=1 bgcolor='$bash_bg'>\
196 <tr><td bgcolor=lightblue colspan=3>\
197 <pre>'"$space80"'</pre>\
200 <table cellspacing=5 border=0\
201 style="color:'$bash_fg';">\
204 -e 's!</bash>!</pre>\
212 # output lines containing <timestamp> <filename> <title>
213 get_blog_entries
() {
214 for file in $
(ls -r source-
*.txt
)
216 timestamp
=$
(chomp
$file source- .txt
)
217 title
="$(sed 1q < $file | markup)"
218 echo "$timestamp $file $title"
222 get_last_removed_entry
() {
223 git log
--pretty=format
: --name-only --diff-filter=D HEAD |
227 source-
*.txt
) file=$line;;
228 '') test -z "$file" ||
{
238 test $box_count = 0 ||
echo "<br>"
239 echo "<table width=$toc_width bgcolor=#e0e0e0 border=1>"
240 echo "<tr><th>$1</th></tr>"
245 echo "</td></tr></table>"
246 box_count
=$
(($box_count+1))
251 body_style
="width:800px"
252 body_style
="$body_style;background-image:url($URL$BACKGROUNDIMG)"
253 body_style
="$body_style;background-repeat:repeat-y"
254 body_style
="$body_style;background-attachment:scroll"
255 body_style
="$body_style;padding:0px;"
256 text_style
="width:610px"
257 text_style
="$text_style;margin-left:120px"
258 text_style
="$text_style;margin-top:50px"
259 text_style
="$text_style;align:left"
260 text_style
="$text_style;vertical-align:top;"
264 <title>$TITLE</title>
265 <meta http-equiv="Content-Type"
266 content="text/html; charset=UTF-8"/>
268 <body style="$body_style">
269 <div style="$text_style">
276 toc_style
="position:absolute;top:50px;left:810px;width=$toc_width"
278 echo "<div style=\"$toc_style\">"
279 begin_box
"Table of contents:"
282 while read timestamp filename title
284 date="$(date +"%d
%b
%Y
" -d @$timestamp)"
285 echo "<li><a href=#$timestamp>$date $title</a>"
289 last_removed_entry
=$
(get_last_removed_entry
)
290 test -z "$last_removed_entry" ||
{
291 commit
=$
(git log
--pretty=format
:%H
--diff-filter=AM \
292 -- $last_removed_entry |
294 previous
="$BLOBPLAIN;hb=$commit"
295 echo "<a href=$previous;f=index.html>Older posts</a>"
300 rss_style
="background-color:orange;text-decoration:none"
301 rss_style
="$rss_style;color:white;font-family:sans-serif;"
303 echo '<div style="text-align:right;">'
304 echo "<a href=\"$ORIGURL$RSS\""
305 echo ' title="Subscribe to my RSS feed"'
306 echo ' class="rss" rel="nofollow"'
307 echo " style=\"$rss_style\">RSS</a>"
311 test -f about.html
&& {
312 begin_box
"About this blog:"
318 test -f links.html
&& {
325 test -z "$DRYRUN" && test -f google.adsense
&& {
326 begin_box
"Google Ads:"
332 } |
sed -s "s/^/$indent/"
335 # timestamps will not need padding to sort correctly, for some time...
337 while read timestamp filename title
339 echo "<h6>$(make_date $timestamp)</h6>"
340 echo "<a name=$timestamp>"
341 echo "<h2>$title</h2>"
344 sed 1d
< $filename | markup
347 sed -e "s/^./$indent&/" \
348 -e "/<pre>/,/<\/pre>/s/^$indent//"
358 echo '<?xml version="1.0" encoding="utf-8"?>'
359 echo '<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">'
361 echo "<title>Dscho's blog</title>"
362 echo "<link>$URLPREFIX${URL}index.html</link>"
363 self
="$URLPREFIX$ORIGURL$RSS"
364 selfattribs
='rel="self" type="application/rss+xml"'
365 echo "<atom:link href=\"$self\" $selfattribs/>"
366 echo '<description>A few stories told by Dscho</description>'
367 echo "<lastBuildDate>$(date --rfc-2822)</lastBuildDate>"
368 echo '<language>en-us</language>'
371 while read timestamp filename title
374 title
=$
(echo "$title" |
sed 's/<[^>]*>//g')
376 echo "<title>$title</title>"
377 echo "<link>$URLPREFIX${URL}index.html#$timestamp</link>"
378 echo "<guid>$URLPREFIX${URL}index.html#$timestamp</guid>"
379 echo "<pubDate>$(date --rfc-2822 -d @$timestamp)</pubDate>"
380 description
="$(cat < $filename | markup invert-bash)"
381 echo "<description><![CDATA[$description]]></description>"
391 grep -v '\.\(rss\|html\|gitignore\|in\|sh\|txt\|adsense\)$'
394 remove_old_entries
() {
395 count
=$
(ls source-
*.txt |
wc -l)
396 test $MAXENTRIES -ge $count && return
398 for file in source-
*.txt
400 test $MAXENTRIES -lt $count ||
break
401 git
rm $file > /dev
/null ||
return 1
406 # remove no-longer referenced images
407 image_files
=$
(get_image_files
)
408 referenced_files
="$(cat source-*.txt |
410 sed -ne 's/\[\[\(Image\|SVG\)://p') $BACKGROUNDIMG"
411 for file in $
(echo $image_files $referenced_files $referenced_files |
412 tr ' ' '\n' |
sort |
uniq -u)
414 git
rm $file > /dev
/null ||
return 1
419 # never, ever have spaces in the file names
420 commit_new_images
() {
421 files
="$(remove_old_entries) $RSS $BACKGROUNDIMG" ||
422 die
"Could not remove old entries"
425 generate_rss
> $RSS &&
427 die
"Could not generate $RSS"
429 for image
in $
(cat source-
* |
431 sed -n 's/.*\[\[\(Image\|SVG\)://p' |
435 git add
$image || die
"Could not git add image $image"
436 files
="$files $image"
439 git update-index
--refresh &&
440 git diff-files
--quiet -- $files &&
441 git
diff --cached --quiet HEAD
-- $files ||
442 git commit
-s -m "Housekeeping on $(make_date $now)" $files
446 test ! -z "$DRYRUN" && echo "$1" && return
447 rev=$
(git rev-list
-1 HEAD
-- $1)
448 test -z "$rev" && die
"No revision found for $1"
449 echo "$BLOBPLAIN;hb=$rev;f=$1"
453 # for some reason, Firefox adds scrollbars, so nudge the width a bit
454 width
=$
(sed -ne 's/.* width="\([^"]*\).*/\1/p' -e '/<metadata/q' < "$1")
455 test -z "$width" || width
=" width=$(($width+5))"
456 url
=$
(get_image_url
"$1")
462 <embed type="image/svg+xml"
476 handle_image_file
() {
477 echo "<center><img src=$(get_image_url "${1%% *}") ${1#* }></center>"
482 # parse command line option
484 *dry
*) DRYRUN
=1; export DRYRUN
; shift;;
485 *show
*) firefox
"$(pwd)"/$TEST; exit;;
486 *remote
*) firefox
$URLPREFIX$URL$OUTPUT; exit;;
490 "[[SVG:"*) handle_svg_file
"$(chomp "$
*" '\[\[SVG:' '\]\]')";;
491 "[[Image:"*) handle_image_file
"$(chomp "$
*" '\[\[Image:' '\]\]')";;
496 *) die
"Unknown command: $1";;
500 die
"Usage: $0 [--dry-run]"
502 # make sure we're on the correct branch
503 test refs
/heads
/$BRANCH = $
(git symbolic-ref HEAD
) ||
504 die
"Not on branch $BRANCH"
506 # make sure there are no uncommitted changes
507 git update-index
--refresh &&
508 git diff-files
--quiet ||
509 die
"Have unstaged changes!"
511 # rename the new blog entry if it exists
514 mv -i $NEW source-
$now.txt
&&
515 git add source-
$now.txt
517 die
"Could not rename source.txt"
519 # commit the images that are referenced and not yet committed
520 test ! -z "$DRYRUN" ||
522 die
"Could not commit new images"
524 # to find the images reliably, we have to use the commit name, not the branch
525 # we use the latest commit touching an image file.
526 IMAGEFILES
="$(get_image_files)"
527 REV
=$
(git rev-list
-1 HEAD
-- $IMAGEFILES)
528 test -z "$REV" && REV
=$BRANCH
529 URL
="$BLOBPLAIN;hb=$REV;f="
531 if test ! -z "$DRYRUN"
533 # Output to test.html and have local links into the current directory
538 make_html
> $OUTPUT || die
"Could not write $OUTPUT"
540 test ! -z "$DRYRUN" && {
546 git commit
-s -m "Update $(make_date $now)" &&
547 git push origin
+$BRANCH