From 1b57bdfa37a206e9cac72234e32442d44914865e Mon Sep 17 00:00:00 2001 From: Martin Oberhuber < martin.oberhuber@windriver.com> Date: Fri, 2 Feb 2007 14:17:01 +0000 Subject: [PATCH] Rename interim update site -> milestones update site --- .../org.eclipse.rse.build/template/buildNotes.php | 4 ++-- releng/org.eclipse.rse.updatesite/.cvsignore | 1 + .../bin/mkTestUpdates.sh | 14 +++++++------- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/releng/org.eclipse.rse.build/template/buildNotes.php b/releng/org.eclipse.rse.build/template/buildNotes.php index 12afa788f1b..4b03ffe8337 100755 --- a/releng/org.eclipse.rse.build/template/buildNotes.php +++ b/releng/org.eclipse.rse.build/template/buildNotes.php @@ -23,8 +23,8 @@
    -
  • Added an interim update site for RSE 2.0 milestone builds at - http://download.eclipse.org/dsdp/tm/updates/interim. +
  • Added a milestone update site for RSE 2.0 milestone builds at + http://download.eclipse.org/dsdp/tm/updates/milestones. Builds on this site are tested against the latest Eclipse Platform 3.3 Milestones only. Update jars are currently packed but unsigned, until the fix for Platform bug 168594 diff --git a/releng/org.eclipse.rse.updatesite/.cvsignore b/releng/org.eclipse.rse.updatesite/.cvsignore index 0fa54a067de..95d574df4f0 100644 --- a/releng/org.eclipse.rse.updatesite/.cvsignore +++ b/releng/org.eclipse.rse.updatesite/.cvsignore @@ -1,4 +1,5 @@ features plugins interim +milestones digest.zip diff --git a/releng/org.eclipse.rse.updatesite/bin/mkTestUpdates.sh b/releng/org.eclipse.rse.updatesite/bin/mkTestUpdates.sh index 80ad56dce13..5e5524195a1 100755 --- a/releng/org.eclipse.rse.updatesite/bin/mkTestUpdates.sh +++ b/releng/org.eclipse.rse.updatesite/bin/mkTestUpdates.sh @@ -182,24 +182,24 @@ elif [ `basename $SITE` = signedUpdates ]; then sed -e 's,Project Update,Project Signed Test Update,g' \ web/site.xsl > web/site.xsl.new mv -f web/site.xsl.new web/site.xsl -elif [ `basename $SITE` = interim ]; then - echo "Working on interim update site" +elif [ `basename $SITE` = milestones ]; then + echo "Working on milestone update site" echo "Expect that you copied your features and plugins yourself" stamp=`date +'%Y%m%d-%H%M'` rm index.html site.xml web/site.xsl cvs -q update -dPR - sed -e 's,/dsdp/tm/updates,/dsdp/tm/updates/interim,g' \ - -e 's,Project Update,Project Interim Update,g' \ + sed -e 's,/dsdp/tm/updates,/dsdp/tm/updates/milestones,g' \ + -e 's,Project Update,Project Milestone Update,g' \ -e '\,,a\ This site contains Target Management Milestones (I-, S- and M- builds) which are \ being contributed to the Europa coordinated release train (Eclipse 3.3).' \ index.html > index.html.new mv -f index.html.new index.html - sed -e 's,/dsdp/tm/updates,/dsdp/tm/updates/interim,g' \ - -e 's,Project Update,Project Interim Update,g' \ + sed -e 's,/dsdp/tm/updates,/dsdp/tm/updates/milestones,g' \ + -e 's,Project Update,Project Milestone Update,g' \ site.xml > site.xml.new mv -f site.xml.new site.xml - sed -e 's,Project Update,Project Interim Update,g' \ + sed -e 's,Project Update,Project Milestone Update,g' \ web/site.xsl > web/site.xsl.new mv -f web/site.xsl.new web/site.xsl else