1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 15:45:25 +02:00

Rename interim update site -> milestones update site

This commit is contained in:
Martin Oberhuber 2007-02-02 14:17:01 +00:00
parent 1c056d5cb4
commit 1b57bdfa37
3 changed files with 10 additions and 9 deletions

View file

@ -23,8 +23,8 @@
</table>
<table><tbody><tr><td>
<ul>
<li>Added an <b>interim update site</b> for RSE 2.0 milestone builds at
<a href="http://download.eclipse.org/dsdp/tm/updates/interim">http://download.eclipse.org/dsdp/tm/updates/interim</a>.
<li>Added a <b>milestone update site</b> for RSE 2.0 milestone builds at
<a href="http://download.eclipse.org/dsdp/tm/updates/milestones">http://download.eclipse.org/dsdp/tm/updates/milestones</a>.
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
<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=168594">168594</a>

View file

@ -1,4 +1,5 @@
features
plugins
interim
milestones
digest.zip

View file

@ -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 '\,</h1>,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