[rfc][icedtea-web] Removing applications tab in jawas-about
Omair Majid
omajid at redhat.com
Wed Jul 10 09:58:41 PDT 2013
On 07/10/2013 10:15 AM, Andrew Azores wrote:
> Everything all together in one big patch file as per request.
One suggestion:
> + (cd $$NETX_SRCDIR/..; \
> + mkdir -p html-gen; \
> + cp AUTHORS NEWS COPYING ChangeLog html-gen/; \
> + cd html-gen/; \
> + for FILE in NEWS AUTHORS COPYING ChangeLog; \
> + do \
> + sed -r \
> + -e "s/\t/ /g" $(: Convert tabs into four spaces) \
> + -e "s/\&/\&/g" $(: "&" -> "&") \
> + -e "s/ /\ \ /g" $(: Double-spaces into HTML whitespace for formatting) \
> + -e "s/</\</g" $(: "<" -> "<") \
> + -e "s/>/\>/g" $(: ">" -> ">") \
> + -e 's/(\<)?(https?:\/\/[^ ]*)(\>| |$$)/\1<a href="\2">\2<\/a>\3/i' $(: Creates hyperlinks from http/https URLs) \
> + -e 's/\<(.*@.*)\>/\<<a href="mailto:\1\?subject=IcedTea-Web">\1<\/a>\>/i' $(: Create mailto links from email addresses formatted as <email at example.com>) \
> + -e "s/$$/<br>/g" $(: "\n" -> "<br>") \
> + "./$$FILE" > "./$$FILE.html"; \
> + done; \
> + sed -i '4i <center>' AUTHORS.html; \
> + sed -i '5i <br><img src="jamIcon.jpg" alt="Jam Icon" width="87" height="84"><br><br>' AUTHORS.html; $(: Insert jamIcon into AUTHORS.html and center the authors list)\
> + echo "</center>" >> AUTHORS.html; \
> + for FILE in NEWS.html ChangeLog.html; \
> + do \
> + mv $$FILE "$$FILE.old"; \
> + COUNTER=0; \
> + while read LINE; \
> + do \
> + BOLD=1; \
> + if [[ $$FILE == "NEWS.html" ]]; \
> + then \
> + if [[ $$LINE =~ New\ in\ release* ]]; \
> + then \
> + BOLD=0; \
> + COUNTER=$$(( $$COUNTER + 1 )); \
> + fi; \
> + if [[ $$COUNTER -gt 2 ]]; $(: Cut to two releases)\
> + then \
> + break; \
> + fi; \
> + else \
> + if [[ $$LINE =~ .*\<\;.*\@.*\>\; ]]; $(: Matches eg <aazores at redhat.com>, after HTML-escaping)\
> + then \
> + BOLD=0; \
> + fi; \
> + if [[ $$LINE =~ [0-9]{4}-[0-9]{2}-[0-9]{2}* ]]; $(: Matches eg 2013-07-01)\
> + then \
> + COUNTER=$$(( $$COUNTER + 1 )); \
> + fi; \
> + if [[ $$COUNTER -gt 10 ]]; $(: Cut to ten changesets)\
> + then \
> + break; \
> + fi; \
> + fi; \
> + if [[ $$BOLD -eq 0 ]]; $(: Highlight "New In Release" in News, and author name lines in ChangeLog) \
> + then \
> + echo "<b>$$LINE</b>" >> $$FILE; \
> + else \
> + echo "$$LINE" >> $$FILE; \
> + fi; \
> + done < "$$FILE.old"; \
> + rm $$FILE.old; \
> + done)
At some point, it might be a good idea to make this a stand-alone script
and invoke it from make. Keeping all this included in the Makefile (with
all the line-continuations) looks rather painful.
Cheers,
Omair
More information about the distro-pkg-dev
mailing list