summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2012-06-14 08:22:54 -0600
committerBrian Paul <brianp@vmware.com>2012-06-14 08:22:54 -0600
commit51c9c67a2ff2ec5963680fe5733691a6a991eab5 (patch)
treebe507af79573c58a162ca491ed6e38c85b29d60d /bin
parent5234b8902c8865e6547cd24145732a1f2f4760b6 (diff)
mesa: added Ian's shortlog_mesa.sh script in bin/
Diffstat (limited to 'bin')
-rwxr-xr-xbin/shortlog_mesa.sh23
1 files changed, 23 insertions, 0 deletions
diff --git a/bin/shortlog_mesa.sh b/bin/shortlog_mesa.sh
new file mode 100755
index 00000000000..1e1ef26e266
--- /dev/null
+++ b/bin/shortlog_mesa.sh
@@ -0,0 +1,23 @@
+#!/bin/sh
+
+# This script is used to generate the list of changes that
+# appears in the release notes files, with HTML formatting.
+
+
+typeset -i in_log=0
+
+git shortlog $* | while read l
+do
+ if [ $in_log -eq 0 ]; then
+ echo '<p>'$l
+ echo '<ul>'
+ in_log=1
+ elif echo "$l" | egrep -q '^$' ; then
+ echo '</ul></p>'
+ echo
+ in_log=0
+ else
+ mesg=$(echo $l | sed 's/ (cherry picked from commit [0-9a-f]\+)//;s/\&/&amp;/g;s/</\&lt/g;s/>/\&gt;/g')
+ echo ' <li>'${mesg}'</li>'
+ fi
+done