Differences between revisions 16 and 17
Revision 16 as of 2015-06-08 02:33:23
Size: 3160
Editor: PaulWise
Comment:
Revision 17 as of 2015-06-08 04:02:03
Size: 3158
Editor: PaulWise
Comment: fixy
Deletions are marked like this. Additions are marked like this.
Line 32: Line 32:
./dpn/scripts/DPNhtml2mail.pl -t news -i 2015/20150426 ./dpn/scripts/DPNhtml2mail.pl -t news -i $year/$date

Workflow for the Publicity/Press announcement

This page describe the current workflow and best practices for the creation and release of announcements.

1. Start to write the draft using the template provided in the publicity subversion repository under publicity/announcements/en/template.wml: it contains all the necessary wml tags

2. add your draft to the repository (all DDs have rw access to it) in publicity/announcement/en/$year/ with this namescheme: YYYY-MM-DD-$title.wml (where YYYY-MM-DD is the expected release date, if you've not decided it yet, just add the file under publicity/announcement/en/drafts/ with a simple title as name).

3. at least 2 days before the expected release date, send a mail to debian-publicity@lists.debian.org (adding in CC debian-l10n-english@lists.debian.org and debian-i18n@lists.debian.org) asking for reviews and translations

4. Press and/or webmasters only! on $expected-release-date publish the announcement in the website: you just need to add it to the webwml CVS repository at webwml/english/News/$year with the namescheme YYYYMMDD.wml). Take care also of all the available translations (usually are just french, spanish and german) commiting also them on the appropriate dirs. Here is a hacky shell loop for moving the files. You will need to adjust the announcement name and also the path to webwml on your system.

#FIXME: read parameters
#FIXME: create missing Makefiles
ann=2015/20150606.wml ; year=2015 ; date=20150606 ; webwml=/home/user/path/to/webwml ; for code in $(ls announcements/*/$ann | cut -d/ -f 2) ; do lang=$(grep -l LANG=$code ~/devel/debian/services/webwml/*/.wmlrc | sed 's/.*webwml.//;s_/.*__') ; mkdir -p $webwml/$lang/News/$year/ ; mv announcements/$code/$ann $webwml/$lang/News/$year/$date.wml ; done ; echo These announcements remain: $(ls announcements/*/$ann)

4.1 Press and/or webmasters only! For stable/oldstable point releases, english/releases/codename/errata.wml and english/template/debian/release_info.wml need to be updated with the version number of the point release.

5. Press and/or webmasters only! run a partial rebuild of the website:

   ssh -tt wolkenstein.debian.org sudo -u debwww /srv/www.debian.org/update-part News

Please note that for new Debian releases the whole website needs rebuilding.

6. now you're ready for creating the mail: the script to create it is the publicity repo under publicity/dpn/scripts/DPNhtml2mail.pl Please note that the script is not perfect: a check and a couple of adjustments by hand are usually required (and a patch to improve it, as well!)

./dpn/scripts/DPNhtml2mail.pl -t news -i $year/$date

7. yay! you can finally send the mail to debian-news@lists.debian.org or debian-announce@lists.debian.org (if you have the super-powers to do it) or ask press team members to do it for you! As a reminder, -news should be the default place to send things. -announce is reserved for special announcements, such as new point releases etc.