Updates the script to generate the content of https://wiki.eclipse.org/Platform_UI/Plan/4.5/Milestones to Eclipse 4.5
diff --git a/org.eclipse.e4.builder/scripts/wiki-from-csv.sh b/org.eclipse.e4.builder/scripts/wiki-from-csv.sh
index ceb41fb..45c43b6 100755
--- a/org.eclipse.e4.builder/scripts/wiki-from-csv.sh
+++ b/org.eclipse.e4.builder/scripts/wiki-from-csv.sh
@@ -1,12 +1,16 @@
 #!/bin/bash
 
+create_wiki_header() {
+echo "Overview page of the work done for the Eclipse 4.4 service and 4.5 release"
+echo "Our planning bugs for the Eclipse 4.5 release can be found on [[Platform UI/Plan/4.5/Planning Bugs]]. It is the backlog of Mars that we review selecting the bugs for the particular milestone of the release. The list will be refreshed in order to better adjust the priorities of the bugs during the release."
+}
 
 create_wiki_section () {
 F_TARGET="$1" ; shift
 F_SEARCH="$1" ; shift
 
 NUM=1
-curl -o search.csv 'https://bugs.eclipse.org/bugs/buglist.cgi?classification=Eclipse&component=Runtime&component=IDE&component=User%20Assistance&component=UI&list_id=5935738&product=Platform&query_format=advanced&target_milestone='$F_SEARCH'&query_based_on=&columnlist=bug_id%2Ctarget_milestone%2Cassigned_to%2Cbug_status%2Cresolution%2Cshort_desc%2Cbug_severity%2Cqa_contact&ctype=csv'
+curl -o search.csv 'https://bugs.eclipse.org/bugs/buglist.cgi?classification=Eclipse&component=Runtime&component=IDE&component=User%20Assistance&component=UI&order=Importance&list_id=5935738&product=Platform&query_format=advanced&target_milestone='$F_SEARCH'&query_based_on=&columnlist=bug_id%2Ctarget_milestone%2Cassigned_to%2Cbug_status%2Cresolution%2Cshort_desc%2Cbug_severity%2Cqa_contact&ctype=csv'
 grep -v target_milestone search.csv >t1 ; mv t1 search.csv
 
 
@@ -21,7 +25,7 @@
 	TARGET=$( echo $line | csvtool col 2 - )
 	ASSIGNED_TO=$( echo $line | csvtool col 3 - )
 	STATUS=$( echo $line | csvtool col 4 - )
-	if [ RESOLVED = "$STATUS" -o VERIFIED = "$STATUS" ]; then
+	if [ CLOSED = "$STATUS" -o RESOLVED = "$STATUS" -o VERIFIED = "$STATUS" ]; then
 		STATUS=$( echo $line | csvtool col 5 - )
 		PRE="<strike>"
 		POST="</strike>"
@@ -32,6 +36,9 @@
 	if [ "platform-ui-triaged" = "$ASSIGNED_TO" -a ! -z "$QA" ]; then
 		ASSIGNED_TO="$QA"
 	fi
+        if [ "$TITLE -lt 100" ]; then
+		TITLE="${TITLE:0:100}..."
+	fi
 
 	echo '|-'
 	echo "| $NUM || $PRE{{bug|$BUG}}$POST || $TARGET || $SEV || $ASSIGNED_TO || $STATUS || $PRE$TITLE$POST"
@@ -54,23 +61,30 @@
 
 }
 
-create_wiki_section "4.4 RC4" 4.4%20RC4
+create_wiki_header
+
+echo "= Work targeting Eclipse 4.4.1 and 4.4.2 ="
+
+create_wiki_section "4.4.1" 4.4.1
+create_wiki_section "4.4.2" 4.4.2
 create_wiki_section "4.4 - unscheduled" 4.4
 
-echo "= Completed milestones ="
+
+echo "= Work targeting Eclipse 4.5 ="
 
 echo ""
 
-create_wiki_section 4.3.1 4.3.1
-create_wiki_section 4.3.2 4.3.2
-create_wiki_section "4.4 M1" 4.4%20M1
-create_wiki_section "4.4 M2" 4.4%20M2
-create_wiki_section "4.4 M3" 4.4%20M3
-create_wiki_section "4.4 M4" 4.4%20M4
-create_wiki_section "4.4 M5" 4.4%20M5
-create_wiki_section "4.4 M6" 4.4%20M6
-create_wiki_section "4.4 M7" 4.4%20M7
-create_wiki_section "4.4 RC1" 4.4%20RC1
-create_wiki_section "4.4 RC2" 4.4%20RC2
-create_wiki_section "4.4 RC3" 4.4%20RC3
+create_wiki_section "4.5 M1" 4.5%20M1
+create_wiki_section "4.5 M2" 4.5%20M2
+create_wiki_section "4.5 M3" 4.5%20M3
+create_wiki_section "4.5 M4" 4.5%20M4
+create_wiki_section "4.5 M5" 4.5%20M5
+create_wiki_section "4.5 M6" 4.5%20M6
+create_wiki_section "4.5 M7" 4.5%20M7
+create_wiki_section "4.5 RC1" 4.5%20RC1
+create_wiki_section "4.5 RC2" 4.5%20RC2
+create_wiki_section "4.5 RC3" 4.5%20RC3
+
+
+