/hg/icedtea-web: html-gen made more idiomatic and removed some b...

aazores at icedtea.classpath.org aazores at icedtea.classpath.org
Thu Jan 9 09:54:29 PST 2014


changeset 6d8b0bd9402f in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=6d8b0bd9402f
author: Andrew Azores <aazores at redhat.com>
date: Thu Jan 09 12:54:00 2014 -0500

	html-gen made more idiomatic and removed some bashisms


diffstat:

 ChangeLog   |   8 ++++++--
 html-gen.sh |  32 ++++++++++++++++----------------
 2 files changed, 22 insertions(+), 18 deletions(-)

diffs (112 lines):

diff -r 5667ac193cb6 -r 6d8b0bd9402f ChangeLog
--- a/ChangeLog	Mon Jan 06 10:51:06 2014 +0100
+++ b/ChangeLog	Thu Jan 09 12:54:00 2014 -0500
@@ -1,4 +1,8 @@
-2014-01-06 Jiri Vanek <jvanek at redhat.com>
+2014-01-09  Andrew Azores  <aazores at redhat.com>
+
+	* html-gen.sh: made more idiomatic and removed some bashisms
+
+2014-01-06  Jiri Vanek  <jvanek at redhat.com>
 
 	Copy all button in console controls sorts by date by default.
 	* netx/net/sourceforge/jnlp/util/logging/ConsoleOutputPane.java: added
@@ -9,7 +13,7 @@
 	* netx/net/sourceforge/jnlp/util/logging/ConsoleOutputPaneModel.java:
 	added abstraction for (importList)  to allow sorting via parameter 
 
-2014-01-06 Jiri Vanek <jvanek at redhat.com>
+2014-01-06  Jiri Vanek  <jvanek at redhat.com>
 
 	Removed dependence on  sun.misc.BASE64Decoder
 	* configure.ac: removed check for sun.misc.BASE64Decoder
diff -r 5667ac193cb6 -r 6d8b0bd9402f html-gen.sh
--- a/html-gen.sh	Mon Jan 06 10:51:06 2014 +0100
+++ b/html-gen.sh	Thu Jan 09 12:54:00 2014 -0500
@@ -69,7 +69,7 @@
 NEWS_ITEMS=2
 REPO_URL="$(hg paths default | sed -r 's/.*icedtea.classpath.org\/(.*)/\1/')"
 
-start_time=$(date +%s.%N)
+start_time="$(date +%s.%N)"
 
 cd html-gen
 
@@ -99,54 +99,54 @@
 sed -i '5i <br><img src="jamIcon.jpg" alt="Jam Icon" width="87" height="84"><br><br>' AUTHORS.html
 echo "</center>" >> AUTHORS.html
 
-REVS=(`hg log -l$CHANGESETS | grep 'changeset:' | cut -d: -f3 | tr '\n' ' '`)
+REVS=(`hg log -l"$CHANGESETS" | grep 'changeset:' | cut -d: -f3 | tr '\n' ' '`)
 
 print_debug "Done. Starting formatting (bolding, mailto and hyperlink creation)"
 
 for FILE in NEWS.html ChangeLog.html
 do
     print_debug "Processing $FILE..."
-    mv $FILE "$FILE.old"
+    mv "$FILE" "$FILE.old"
     COUNTER=0
     while read LINE
     do
         BOLD=1
-        if [[ $FILE == "NEWS.html" ]]
+        if [ "$FILE" = "NEWS.html" ]
         then
-            if [[ $LINE =~ New\ in\ release* ]]
+            if [[ "$LINE" =~ New\ in\ release* ]]
             then
                 BOLD=0
-                COUNTER=$(( $COUNTER + 1 ))
+                COUNTER="$(( COUNTER + 1 ))"
             fi
-            if [[ $COUNTER -gt $NEWS_ITEMS ]] # Cut to two releases
+            if [ "$COUNTER" -gt "$NEWS_ITEMS" ] # Cut to two releases
             then
                 break
             fi
         else
             email_regex=".*\&lt;.*\@.*\&gt;"
-            if [[ $LINE =~ $email_regex ]] # Matches eg <aazores at redhat.com>, after HTML-escaping
+            if [[ "$LINE" =~ $email_regex ]] # Matches eg <aazores at redhat.com>, after HTML-escaping
             then
                 BOLD=0
             fi
-            date_regex="[0-9]{4}-[0-9]{2}-[0-9]{2}"
-            if [[ $LINE =~ $date_regex* ]] # Matches line starting with eg 2013-07-01
+            date_regex=[0-9]{4}-[0-9]{2}-[0-9]{2}
+            if [[ "$LINE" =~ $date_regex* ]] # Matches line starting with eg 2013-07-01
             then
                 html_space="\&ensp;\&ensp;"
-                REV=${REVS[$COUNTER]}
+                REV="${REVS["$COUNTER"]}"
                 # Turn the date into a hyperlink for the revision this changelog entry describes
                 LINE=$(echo "$LINE" | sed -r "s|($date_regex)($html_space.*$html_space.*)|<a href=http://icedtea.classpath.org/$REPO_URL/rev/$REV>\1</a>\2|")
-                COUNTER=$(( $COUNTER + 1 ))
+                COUNTER="$(( COUNTER + 1 ))"
             fi
-            if [[ $COUNTER -gt $CHANGESETS ]] # Cut to ten changesets
+            if [ "$COUNTER" -gt "$CHANGESETS" ] # Cut to ten changesets
             then
                 break
             fi
         fi
-        if [[ $BOLD -eq 0 ]] # Highlight "New In Release" in News, and author name lines in ChangeLog
+        if [ "$BOLD" -eq 0 ] # Highlight "New In Release" in News, and author name lines in ChangeLog
         then
             LINE="<b>$LINE</b>"
         fi
-        echo "$LINE" >> $FILE
+        echo "$LINE" >> "$FILE"
     done < "$FILE.old"
     rm "$FILE.old"
     print_debug "$FILE finished"
@@ -154,7 +154,7 @@
 
 sed -i -r 's|(\*\ .*):|<u>\1</u>:|' ChangeLog.html # Underline changed files in ChangeLog, eg "* Makefile.am:"
 
-end_time=$(date +%s.%N)
+end_time="$(date +%s.%N)"
 
 print_debug "HTML generation complete"
 print_debug "Total elapsed time: $(echo "$end_time - $start_time" | bc )"


More information about the distro-pkg-dev mailing list