diff options
author | Matthias Benkard <code@mail.matthias.benkard.de> | 2007-05-29 18:44:46 +0200 |
---|---|---|
committer | Matthias Benkard <code@mail.matthias.benkard.de> | 2007-05-29 18:44:46 +0200 |
commit | 44ac478eff87b22cf1c3fb53d4c3a23f79cf73c4 (patch) | |
tree | 12686492ccb7937276f362eeec739991462bef96 | |
parent | 18bcb49be1dca7f9536898cb8a5b8c3725bcbe70 (diff) |
Rotate subtitles randomly.
darcs-hash:d1a8e850f8d05729db7447b7f7313151f3bfb826
-rwxr-xr-x | journal.lisp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/journal.lisp b/journal.lisp index 9afbff4..2b720e2 100755 --- a/journal.lisp +++ b/journal.lisp @@ -445,8 +445,12 @@ after another in any arbitrary order." (<:a :href "journal.cgi?action=index" "Kompottkins Weisheiten")) (<:div :id :main-subtitle (<:as-is - "NEU! Jetzt ohne regelmäßige - Serverabstürze!"))) + (random-elt + '(("Geschwafel eines + libertärsozialistischen Geeks") + ("NEU! Jetzt ohne regelmäßige + Serverabstürze!") + ("NEU! Jetzt mit mehr als 3 % Uptime!")))))) (<:div :id :contents (case *action* ((:index nil) @@ -498,7 +502,8 @@ after another in any arbitrary order." (defun main () - (let ((*journal-entries* (read-journal-entries))) + (let ((*journal-entries* (read-journal-entries)) + (*random-state* (make-random-state t))) (ext:letf ((custom:*terminal-encoding* (ext:make-encoding :charset charset:utf-8))) (case *action* |